/* ==========================================================================
   TRADE CAR - VENDAS E REPASSE (VAGNER MIYAHIRA)
   SISTEMA DE DESIGN CORPORATIVO & IDENTIDADE VISUAL OFICIAL
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    /* Paleta Corporativa Principal Trade Car - Dark Theme */
    --bg-primary: #070a11;
    --bg-secondary: #0d121c;
    --bg-tertiary: #131a29;
    --bg-card: rgba(13, 18, 28, 0.88);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-input: #090e17;
    
    /* Cores de Identidade Visual Oficial Trade Car */
    --brand-orange: #ff6b00;
    --brand-orange-light: #ff851b;
    --brand-orange-dark: #d95300;
    --brand-orange-gradient: linear-gradient(135deg, #ff8a00 0%, #ff6b00 50%, #ea580c 100%);
    --brand-orange-glow: rgba(255, 107, 0, 0.3);
    
    /* Pulso de Telemetria / Verde Trade Car */
    --brand-green: #22c55e;
    --brand-green-light: #4ade80;
    --brand-green-dark: #16a34a;
    --brand-green-gradient: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
    --brand-green-glow: rgba(34, 197, 94, 0.25);
    
    /* Cores de Ação & Suporte */
    --accent-whatsapp: #25d366;
    --accent-whatsapp-hover: #20ba59;
    --accent-blue: #3b82f6;
    --accent-red: #ef4444;

    /* Textos & Bordas */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 107, 0, 0.45);
    --border-green: rgba(34, 197, 94, 0.4);

    /* Dimensões & Sombras */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.65);
    --shadow-orange: 0 10px 30px -5px rgba(255, 107, 0, 0.3);
    --shadow-green: 0 10px 25px -5px rgba(34, 197, 94, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Tipografia */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

[data-theme="light"] {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.96);
    --bg-glass: rgba(0, 0, 0, 0.02);
    --bg-input: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: rgba(0, 0, 0, 0.09);
    --border-hover: rgba(255, 107, 0, 0.6);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    outline: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   TIPOGRAFIA & TÍTULOS
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.orange-gradient-text {
    background: var(--brand-orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.green-gradient-text {
    background: var(--brand-green-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-hover);
    color: var(--brand-orange-light);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-badge-green {
    border-color: var(--border-green);
    color: var(--brand-green-light);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   BOTÕES & ELEMENTOS INTERATIVOS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--brand-orange-gradient);
    color: #ffffff;
    box-shadow: var(--shadow-orange);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(255, 107, 0, 0.45);
    filter: brightness(1.08);
}

.btn-green {
    background: var(--brand-green-gradient);
    color: #070a11;
    box-shadow: var(--shadow-green);
    font-weight: 700;
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(34, 197, 94, 0.4);
    filter: brightness(1.08);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--brand-orange);
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange-light);
    background: rgba(255, 107, 0, 0.06);
}

.btn-whatsapp {
    background-color: var(--accent-whatsapp);
    color: #ffffff;
    box-shadow: 0 8px 20px -4px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background-color: var(--accent-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -4px rgba(37, 211, 102, 0.5);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* ==========================================================================
   TOP BAR & HEADER NAVBAR
   ========================================================================== */
.top-announcement-bar {
    background: linear-gradient(90deg, #070a11 0%, #101622 50%, #070a11 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item i {
    color: var(--brand-orange);
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-green-light);
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 10, 17, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

[data-theme="light"] .main-header {
    background: rgba(255, 255, 255, 0.95);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-header-img {
    height: 48px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.brand-logo:hover .logo-header-img {
    transform: scale(1.03);
}

.logo-footer-img {
    height: 52px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    margin-bottom: 18px;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-orange-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--brand-orange-gradient);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.theme-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--brand-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle-btn:hover {
    border-color: var(--brand-orange);
    transform: rotate(15deg);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    color: var(--text-primary);
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 85px 0 95px 0;
    background: radial-gradient(circle at 75% 30%, rgba(255, 107, 0, 0.12) 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
                var(--bg-primary);
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 45px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.35);
    border-radius: var(--radius-full);
    color: var(--brand-orange-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.12rem;
    color: var(--text-secondary);
    margin-bottom: 34px;
    max-width: 580px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid var(--border-color);
}

.highlight-item {
    display: flex;
    flex-direction: column;
}

.highlight-item .number {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--brand-orange-light);
}

.highlight-item .label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-card-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.hero-card-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-card-main:hover img {
    transform: scale(1.03);
}

.hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(7, 10, 17, 0.95) 0%, rgba(7, 10, 17, 0.6) 60%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.overlay-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--brand-orange-gradient);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
}

.hero-floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(13, 18, 28, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-green);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-floating-badge i {
    font-size: 1.4rem;
    color: var(--brand-green);
}

.hero-floating-badge strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.hero-floating-badge span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   ESTOQUE & REPASSE SECTION
   ========================================================================== */
.inventory-section {
    padding: 90px 0;
    background-color: var(--bg-secondary);
    position: relative;
}

.inventory-toolbar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.filter-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    color: var(--text-primary);
    border-color: var(--brand-orange);
}

.filter-btn.active {
    background: var(--brand-orange-gradient);
    color: #ffffff;
    border-color: transparent;
    font-weight: 700;
}

.search-sort-box {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    max-width: 460px;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
}

.search-input-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-input-wrapper input {
    width: 100%;
    padding: 10px 14px 10px 40px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.search-input-wrapper input:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.18);
}

.sort-select {
    padding: 10px 14px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
}

.inventory-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

/* ==========================================================================
   CAR CARD COMPONENT
   ========================================================================== */
.car-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.car-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-orange);
}

.car-media {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: #0b0f19;
}

.car-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.car-card:hover .car-media img {
    transform: scale(1.06);
}

.category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
}

.category-repasse {
    background: rgba(255, 107, 0, 0.92);
    color: #ffffff;
}

.category-seminovos {
    background: rgba(37, 99, 235, 0.9);
    color: #ffffff;
}

.category-utilitarios {
    background: rgba(34, 197, 94, 0.9);
    color: #070a11;
}

.economy-tag {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(34, 197, 94, 0.95);
    color: #070a11;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.car-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.car-brand {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-orange-light);
    font-weight: 700;
}

.car-title {
    font-size: 1.25rem;
    margin: 4px 0 16px 0;
    color: var(--text-primary);
}

.car-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-item i {
    color: var(--brand-orange);
    width: 16px;
}

.fipe-comparison {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-bottom: 18px;
}

.fipe-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.fipe-val {
    text-decoration: line-through;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.main-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-orange-light);
}

.car-actions {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 10px;
    margin-top: auto;
}

/* ==========================================================================
   PATIO REAL SHOWCASE GALLERY
   ========================================================================== */
.patio-showcase-section {
    padding: 90px 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.patio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.patio-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.patio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.patio-card:hover img {
    transform: scale(1.05);
}

.patio-card-1 {
    grid-column: span 7;
    height: 380px;
}

.patio-card-2 {
    grid-column: span 5;
    height: 380px;
}

.patio-card-3 {
    grid-column: span 6;
    height: 320px;
}

.patio-card-4 {
    grid-column: span 6;
    height: 320px;
}

.patio-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 10, 17, 0.9) 0%, rgba(7, 10, 17, 0.2) 60%, transparent 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.patio-card-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: #ffffff;
}

.patio-card-overlay p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   AUTO PEÇAS SECTION
   ========================================================================== */
.parts-section {
    padding: 90px 0;
    background-color: var(--bg-secondary);
}

.parts-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}

.parts-filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.parts-filter-btn.active {
    background: var(--brand-orange-gradient);
    color: #ffffff;
    font-weight: 700;
}

.parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 28px;
}

.part-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.part-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-orange);
}

.part-media {
    position: relative;
    height: 180px;
}

.part-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.part-category-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(13, 18, 28, 0.9);
    border: 1px solid var(--brand-orange);
    color: var(--brand-orange-light);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
}

.part-code-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-secondary);
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
}

.part-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.part-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.part-compatibility {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.part-warranty {
    font-size: 0.82rem;
    color: var(--brand-green-light);
    margin-bottom: 12px;
    font-weight: 600;
}

.part-specs-list {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.part-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.part-price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.part-price {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--brand-orange-light);
}

.custom-parts-cta-wrapper {
    margin-top: 40px;
    text-align: center;
    width: 100%;
}

.custom-parts-cta-card {
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 700px;
    width: 100%;
    box-sizing: border-box;
}

.custom-parts-cta-card h3 {
    font-size: 1.3rem;
}

.custom-parts-cta-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==========================================================================
   SIMULADOR DE FINANCIAMENTO
   ========================================================================== */
.financing-section {
    padding: 90px 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
                var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.simulator-card-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 50px;
}

.simulator-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

.simulator-controls {
    padding: 40px;
}

.sim-group {
    margin-bottom: 28px;
}

.sim-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.sim-group-header label {
    font-weight: 600;
    font-size: 0.95rem;
}

.sim-input-box {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    color: var(--brand-orange-light);
    font-weight: 700;
}

.sim-input-box input {
    background: transparent;
    width: 110px;
    text-align: right;
    font-size: 1rem;
    color: inherit;
    font-weight: inherit;
}

.custom-range-slider {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--bg-tertiary);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.custom-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--brand-orange);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.8);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.custom-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.months-selector {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.month-btn {
    padding: 10px 0;
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.month-btn:hover {
    border-color: var(--brand-orange);
}

.month-btn.active {
    background: var(--brand-orange-gradient);
    color: #ffffff;
    border-color: transparent;
}

.simulator-result-panel {
    background: linear-gradient(145deg, #121826 0%, #090d16 100%);
    border-left: 1px solid var(--border-color);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.result-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: var(--brand-green-light);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.installment-display-box {
    margin-bottom: 24px;
}

.installment-display-box .label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.installment-display-box .installment-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--brand-orange-light);
    line-height: 1.1;
}

.installment-display-box .subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.sim-details-list {
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
}

.sim-detail-row {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
}

.sim-detail-row strong {
    color: var(--text-primary);
}

/* BANCOS GRID */
.banks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.bank-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.bank-card:hover {
    border-color: var(--brand-orange);
    transform: translateY(-4px);
}

.bank-badge-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.bank-card h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.bank-tag {
    font-size: 0.75rem;
    color: var(--brand-orange-light);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.bank-speed {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.bank-highlight {
    font-size: 0.72rem;
    color: var(--text-secondary);
    display: block;
}

/* ==========================================================================
   SOBRE VAGNER MIYAHIRA (FOUNDER PROFILE)
   ========================================================================== */
.about-founder-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    position: relative;
    border-top: 1px solid var(--border-color);
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
}

.founder-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--brand-orange);
    box-shadow: var(--shadow-orange);
}

.founder-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.founder-badge-floating {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-hover);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
}

.founder-badge-floating i {
    font-size: 2rem;
    color: var(--brand-orange-light);
}

.founder-content h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.founder-title-role {
    font-size: 1.1rem;
    color: var(--brand-orange-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    display: block;
}

.founder-bio {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.8;
}

.founder-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 36px;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pillar-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.12);
    color: var(--brand-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.pillar-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.pillar-text span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ==========================================================================
   VENDA SEU CARRO / AVALIAÇÃO SECTION
   ========================================================================== */
.sell-car-section {
    padding: 90px 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.sell-car-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.sell-car-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.18);
}

.sell-benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.sell-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--brand-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ==========================================================================
   DEPOIMENTOS & FAQ
   ========================================================================== */
.testimonials-section {
    padding: 90px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.testimonial-card .stars {
    color: var(--brand-orange-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.testimonial-card .quote {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.author-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-meta .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--brand-orange);
    color: var(--brand-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-meta strong {
    display: block;
    font-size: 0.95rem;
}

.author-meta span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.faq-section {
    padding: 90px 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.faq-accordion {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--border-hover);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

.faq-question i {
    color: var(--brand-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: #04070d;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.logo-footer-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 16px 0 24px 0;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--brand-orange);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--brand-orange-light);
    padding-left: 6px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-list i {
    color: var(--brand-orange);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   MODAL DE VEÍCULOS & DETALHES
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 1050px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from { transform: scale(0.94) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--text-primary);
    transition: var(--transition);
}

.modal-close-btn:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange-light);
}

.modal-vehicle-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 30px;
    padding: 36px;
}

.main-modal-img {
    height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 12px;
    background: #000;
}

.main-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-list {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.thumb {
    width: 70px;
    height: 50px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: var(--transition);
}

.thumb.active, .thumb:hover {
    border-color: var(--brand-orange);
    opacity: 1;
}

.laudo-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: var(--radius-md);
}

.laudo-box h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--brand-orange-light);
}

.laudo-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.85rem;
}

.status-ok {
    color: var(--brand-green-light);
    font-weight: 700;
}

.modal-price-box {
    background: var(--bg-tertiary);
    padding: 16px;
    border-radius: var(--radius-md);
    margin: 16px 0;
}

.price-big {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--brand-orange-light);
}

.economy-alert {
    font-size: 0.85rem;
    color: var(--brand-green-light);
    font-weight: 700;
    margin-top: 4px;
}

.modal-specs-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    font-size: 0.85rem;
    padding: 14px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin: 10px 0 24px 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.features-list i {
    color: var(--brand-green-light);
}

.modal-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ==========================================================================
   WIDGET FLUTUANTE WHATSAPP
   ========================================================================== */
.whatsapp-floating-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
}

.whatsapp-floating-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1);
}

.whatsapp-ping-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pingRing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pingRing {
    0% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.whatsapp-popup-header h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.popup-close {
    background: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
}

.whatsapp-quick-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-opt-btn {
    padding: 10px 14px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-align: left;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.quick-opt-btn:hover {
    border-color: var(--accent-whatsapp);
    background: rgba(37, 211, 102, 0.08);
}

/* TOAST */
#toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-message {
    background: var(--bg-secondary);
    border: 1px solid var(--brand-orange);
    color: var(--text-primary);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    transform: translateX(120%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-message.visible {
    transform: translateX(0);
}

.toast-message i {
    color: var(--brand-orange-light);
    font-size: 1.1rem;
}
