:root {
    /* Paleta Raff Car - Baseada no amarelo #fdf106 */
    --brand-yellow: #fdf106;
    --brand-yellow-dark: #e6db00;
    --brand-yellow-light: #fff566;
    --brand-dark: #1a1a1a;
    --brand-dark-soft: #2d2d2d;
    --brand-gray: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-cream: #fffef5;
    --whatsapp-green: #25D366;
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --shadow-yellow: 0 4px 20px rgba(253, 241, 6, 0.3);
    --transition: all 0.3s ease;
}

* {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* ═══════════════════════════════════════════
   NAVBAR - Refined Automotive
   ═══════════════════════════════════════════ */
.navbar {
    background: var(--brand-dark) !important;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
    transition: padding 0.4s cubic-bezier(0.16,1,0.3,1),
                background 0.4s ease,
                box-shadow 0.4s ease,
                backdrop-filter 0.4s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
    background: rgba(26,26,26,0.92) !important;
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    box-shadow: 0 1px 0 rgba(253,241,6,0.08), 0 8px 32px rgba(0,0,0,0.3);
    border-bottom-color: rgba(253,241,6,0.06);
}

/* Logo */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand-yellow) !important;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.03);
}

.navbar.scrolled .navbar-brand img {
    transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
    max-height: 38px !important;
}

/* Centralização do menu no navbar (desktop) */
@media (min-width: 992px) {
    #mainNavbar .container {
        display: flex;
        align-items: center;
    }

    .navbar .navbar-collapse {
        flex: 1 1 auto;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .navbar .navbar-nav.mx-auto {
        margin: 0 !important;
        flex: 0 0 auto;
    }

    .navbar .navbar-right {
        flex: 0 0 auto;
        margin-left: 0;
    }
}

/* ── Nav Links ── */
.navbar .nav-link {
    font-weight: 500;
    padding: 0.5rem 0.75rem !important;
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

/* Compactar navbar em telas lg (992-1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .navbar-brand img {
        max-height: 38px !important;
    }

    .navbar .nav-link {
        padding: 0.5rem 0.45rem !important;
        font-size: 0.75rem;
        letter-spacing: 0.02em;
    }

    .navbar .input-group {
        width: 130px !important;
    }

    .navbar .input-group .search-input {
        font-size: 0.75rem;
        height: 34px;
        padding: 0 10px;
    }

    .navbar .input-group .btn {
        height: 34px;
        padding: 0 8px;
    }

    .navbar .btn-primary-custom {
        height: 34px;
        font-size: 0.75rem;
        padding: 0 12px;
    }
}

/* Underline animada */
.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--brand-yellow);
    transition: width 0.3s cubic-bezier(0.16,1,0.3,1), left 0.3s cubic-bezier(0.16,1,0.3,1);
    border-radius: 1px;
}

.navbar .nav-link:hover {
    color: #fff !important;
}

.navbar .nav-link:hover::after {
    width: 60%;
    left: 20%;
}

.navbar .nav-link.active {
    color: var(--brand-yellow) !important;
}

.navbar .nav-link.active::after {
    width: 100%;
    left: 0;
    background: var(--brand-yellow);
}

/* ── Search Input ── */
.search-input {
    border-radius: 8px;
    padding-left: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.06);
    color: #fff;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
    letter-spacing: 0.03em;
}

.search-input:focus {
    border-color: rgba(253,241,6,0.4);
    box-shadow: 0 0 0 3px rgba(253,241,6,0.08), inset 0 1px 3px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.navbar .btn-outline-secondary {
    color: rgba(255,255,255,0.45);
    border: none;
    transition: color 0.2s ease;
}

.navbar .btn-outline-secondary:hover {
    color: var(--brand-yellow);
    background: transparent;
}

/* Navbar search form */
.navbar .input-group {
    width: 160px;
    transition: width 0.3s ease;
}

.navbar .input-group:focus-within {
    width: 200px;
}

@media (min-width: 1200px) {
    .navbar .input-group {
        width: 190px;
    }
    .navbar .input-group:focus-within {
        width: 240px;
    }
}

.navbar .input-group .search-input {
    font-size: 0.82rem;
    padding: 0 14px;
    height: 36px;
    line-height: 24px;
    margin: 0;
    box-sizing: border-box;
    display: block;
    position: relative;
}

.navbar .input-group .btn {
    padding: 0 10px;
    height: 36px;
    display: flex;
    align-items: center;
}

/* ── WhatsApp CTA ── */
.navbar .btn-primary-custom {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0 16px;
    height: 36px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    border: 0;
    white-space: nowrap;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    box-shadow: 0 0 0 0 rgba(253,241,6,0);
}

.navbar .btn-primary-custom:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(253,241,6,0.3);
}

/* Glow pulse sutil no CTA */
@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(253,241,6,0); }
    50% { box-shadow: 0 0 16px 2px rgba(253,241,6,0.2); }
}

.navbar .btn-primary-custom {
    animation: ctaGlow 4s ease-in-out infinite;
}

.navbar .btn-primary-custom:hover {
    animation: none;
    box-shadow: 0 4px 20px rgba(253,241,6,0.3);
}

/* ── Toggler mobile ── */
.navbar-toggler {
    padding: 0.4rem 0.6rem;
    transition: transform 0.2s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(253,241,6,0.3);
}

.navbar-toggler:active {
    transform: scale(0.92);
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 76px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
}

.hero-title span {
    color: var(--brand-yellow);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
}

/* Buttons */
.btn-primary-custom {
    background: var(--brand-yellow);
    border: none;
    border-radius: var(--radius);
    padding: 0.875rem 2rem;
    font-weight: 600;
    color: var(--brand-dark);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-custom:hover {
    background: var(--brand-yellow-dark);
    color: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-yellow);
}

.btn-dark-custom {
    background: var(--brand-dark);
    border: 2px solid var(--brand-yellow);
    border-radius: var(--radius);
    padding: 0.875rem 2rem;
    font-weight: 600;
    color: var(--brand-yellow);
    transition: var(--transition);
}

.btn-dark-custom:hover {
    background: var(--brand-yellow);
    color: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-yellow);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    border: none;
    border-radius: var(--radius);
    padding: 0.875rem 2rem;
    font-weight: 600;
    color: #fff;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-outline-custom {
    border: 2px solid var(--brand-yellow);
    border-radius: var(--radius);
    padding: 0.875rem 2rem;
    font-weight: 600;
    color: var(--brand-yellow);
    background: transparent;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-custom:hover {
    background: var(--brand-yellow);
    color: var(--brand-dark);
}

.btn-outline-custom i,
.btn-primary-custom i {
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
}

/* Sections */
.section-padding {
    padding: 4rem 0;
}

.section-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--brand-dark);
}

.section-title-light {
    color: #fff;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.section-dark {
    background: var(--brand-dark);
}

.section-cream {
    background: var(--bg-cream);
}

/* Yellow accent line */
.accent-line {
    width: 60px;
    height: 4px;
    background: var(--brand-yellow);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

/* Cards */
.car-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}

.car-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-yellow);
}

.car-card-img {
    aspect-ratio: 16/10;
    object-fit: cover;
    object-position: center 60%;
    width: 100%;
}

.car-card-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.car-card-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--brand-dark);
}

.car-card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

.car-card-price span {
    background: var(--brand-yellow);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
}

.car-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.car-spec-badge {
    background: var(--bg-light);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--brand-gray);
}

.badge-seminovo {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-financiamento {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--brand-dark);
    color: var(--brand-yellow);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.car-card-img-wrapper {
    position: relative;
}

.car-card-actions {
    margin-top: auto;
    display: flex;
    gap: 0.5rem;
}

.car-card-actions .btn {
    flex: 1;
    border-radius: var(--radius);
    padding: 0.625rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.car-card-actions .btn-primary {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
}

.car-card-actions .btn-primary:hover {
    background: var(--brand-yellow);
    border-color: var(--brand-yellow);
    color: var(--brand-dark);
}

.car-card-actions .btn-outline-success {
    border-color: var(--whatsapp-green);
    color: var(--whatsapp-green);
}

.car-card-actions .btn-outline-success:hover {
    background: var(--whatsapp-green);
    color: #fff;
}

/* About Section */
.about-section {
    background: #fff;
}

.about-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--brand-yellow);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark);
    font-size: 1.25rem;
}

/* Testimonials */
.testimonials-section {
    background: var(--brand-dark);
}

.testimonial-card {
    background: var(--brand-dark-soft);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(253, 241, 6, 0.1);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--brand-yellow);
}

.testimonial-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 3px solid var(--brand-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-dark-soft);
    color: var(--brand-yellow);
    font-size: 3rem;
}

.testimonial-text {
    font-style: italic;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #fff;
}

.testimonial-car {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.testimonial-date {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.testimonial-stars {
    color: var(--brand-yellow);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--brand-yellow);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Galeria Veículo - Detalhe */
.galeria-veiculo {
    background: #fff;
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.galeria-principal {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #f0f0f0;
    aspect-ratio: 4/3;
}

.galeria-principal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.15s ease;
}

.galeria-img-wrap {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.galeria-zoom-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.galeria-principal:hover .galeria-zoom-icon {
    opacity: 1;
}

.galeria-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.45);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s ease;
    z-index: 2;
}

.galeria-principal:hover .galeria-nav {
    opacity: 1;
}

.galeria-nav:hover {
    background: var(--brand-yellow);
    color: var(--brand-dark);
}

.galeria-prev { left: 10px; }
.galeria-next { right: 10px; }

.galeria-counter {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.galeria-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-yellow) transparent;
}

.galeria-thumbs::-webkit-scrollbar {
    height: 4px;
}

.galeria-thumbs::-webkit-scrollbar-thumb {
    background: var(--brand-yellow);
    border-radius: 2px;
}

.galeria-thumb {
    flex: 0 0 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.galeria-thumb:hover {
    opacity: 0.9;
    border-color: var(--brand-gray);
}

.galeria-thumb.active {
    opacity: 1;
    border-color: var(--brand-yellow);
    box-shadow: 0 0 0 1px var(--brand-yellow);
}

.galeria-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .galeria-principal {
        aspect-ratio: 16/10;
    }
    .galeria-nav {
        opacity: 1;
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }
    .galeria-thumb {
        flex: 0 0 65px;
        height: 48px;
    }
}

/* ═══════════════════════════════════════════
   VEÍCULO HERO - Banner de detalhe
   ═══════════════════════════════════════════ */
.veiculo-hero {
    position: relative;
    padding-top: 76px;
    background: var(--brand-dark);
    overflow: hidden;
}

.veiculo-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(253,241,6,0.06) 0%, transparent 50%),
        linear-gradient(215deg, rgba(253,241,6,0.03) 0%, transparent 40%);
    pointer-events: none;
}

.veiculo-hero-bg::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253,241,6,0.05) 0%, transparent 70%);
}

.veiculo-hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--brand-yellow) 50%, transparent 100%);
    opacity: 0.4;
}

.veiculo-hero .container {
    position: relative;
    z-index: 1;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
}

/* Breadcrumb */
.veiculo-hero-breadcrumb {
    margin-bottom: 0.75rem;
}

.veiculo-hero-breadcrumb .breadcrumb {
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.veiculo-hero-breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.veiculo-hero-breadcrumb .breadcrumb-item a:hover {
    color: var(--brand-yellow);
}

.veiculo-hero-breadcrumb .breadcrumb-item.active {
    color: rgba(255,255,255,0.6);
}

.veiculo-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.25);
}

/* Content layout */
.veiculo-hero-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Info lado esquerdo */
.veiculo-hero-info {
    flex: 1;
    min-width: 0;
}

.veiculo-hero-nome {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.6rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* Badges de specs */
.veiculo-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.veiculo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.veiculo-badge i {
    color: var(--brand-yellow);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Bloco de preço lado direito */
.veiculo-hero-preco-wrap {
    flex-shrink: 0;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.veiculo-hero-preco-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.15rem;
}

.veiculo-hero-preco {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--brand-dark);
    background: var(--brand-yellow);
    padding: 0.35rem 1rem;
    border-radius: 8px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    white-space: nowrap;
    box-shadow: 0 4px 24px rgba(253,241,6,0.25);
}

/* Mobile */
@media (max-width: 767px) {
    .veiculo-hero .container {
        padding-top: 0.75rem;
        padding-bottom: 1.25rem;
    }

    .veiculo-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .veiculo-hero-preco-wrap {
        align-items: flex-start;
        text-align: left;
    }

    .veiculo-hero-nome {
        font-size: 1.35rem;
    }

    .veiculo-hero-preco {
        font-size: 1.4rem;
    }
}

/* ═══════════════════════════════════════════
   DETALHE SEÇÃO - Conteúdo
   ═══════════════════════════════════════════ */
.detalhe-section {
    padding: 1.5rem 0 3rem;
    background: var(--bg-cream);
}

/* Detalhe Anúncio - Cards internos */
.detalhe-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.detalhe-card-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: var(--brand-dark);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--brand-yellow);
}

/* Ficha Técnica */
.ficha-item {
    padding: 1rem 0.5rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.ficha-item i {
    font-size: 1.5rem;
    color: var(--brand-yellow);
}

.ficha-item strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--brand-gray);
}

.ficha-item span {
    font-weight: 600;
    color: var(--brand-dark);
}

/* Opcionais */
.opcionais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.opcional-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--brand-dark);
}

.opcional-item i {
    color: var(--whatsapp-green);
    font-size: 0.9rem;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .opcionais-grid {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Contato/Conversão */
.sidebar-contato {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 90px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.sidebar-contato:hover {
    border-color: var(--brand-yellow);
}

.sidebar-preco {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.sidebar-preco-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.sidebar-preco-valor {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-dark);
    background: var(--brand-yellow);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}

.sidebar-diferenciais {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: 1rem;
}

.sidebar-diferencial {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--brand-gray);
}

.sidebar-diferencial i {
    color: var(--brand-yellow);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Contact Section */
.contact-section {
    background: #fff;
}

.contact-form {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-form .form-control {
    border-radius: var(--radius);
    padding: 0.875rem 1rem;
    border: 1px solid #dee2e6;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--brand-yellow);
    box-shadow: 0 0 0 3px rgba(253, 241, 6, 0.2);
}

.contact-info-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 0.75rem;
    border-left: 4px solid var(--brand-yellow);
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--brand-yellow);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark);
    font-size: 1rem;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid var(--brand-yellow);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* Footer */
.footer {
    background: var(--brand-dark);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-brand {
    color: var(--brand-yellow);
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--brand-yellow);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--brand-yellow);
    padding-left: 5px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(253, 241, 6, 0.1);
    border-radius: var(--radius);
    color: var(--brand-yellow);
    margin-right: 0.5rem;
    transition: var(--transition);
    border: 1px solid rgba(253, 241, 6, 0.2);
}

.footer-social a:hover {
    background: var(--brand-yellow);
    color: var(--brand-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(253, 241, 6, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--brand-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    white-space: nowrap;
    font-size: 0.875rem;
    color: var(--brand-yellow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid var(--brand-yellow);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Newsletter Popup */
.newsletter-popup {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 320px;
    background: var(--brand-dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    z-index: 999;
    padding: 1.5rem;
    display: none;
    border: 2px solid var(--brand-yellow);
}

.newsletter-popup h3 {
    color: var(--brand-yellow);
}

.newsletter-popup p {
    color: rgba(255,255,255,0.7);
}

.newsletter-popup.show {
    display: block;
    animation: slideUp 0.3s ease;
}

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

.newsletter-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: rgba(255,255,255,0.5);
}

.newsletter-close:hover {
    color: var(--brand-yellow);
}

.newsletter-popup .form-control {
    background: var(--brand-dark-soft);
    border: 1px solid rgba(253, 241, 6, 0.3);
    color: #fff;
}

.newsletter-popup .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-popup .form-control:focus {
    border-color: var(--brand-yellow);
    box-shadow: none;
    background: var(--brand-dark-soft);
}

/* Highlight text */
.text-brand {
    color: var(--brand-yellow) !important;
}

.bg-brand {
    background-color: var(--brand-yellow) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .section-padding {
        padding: 2.5rem 0;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 60vh;
        text-align: center;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .hero-section .container {
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero-section .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .car-card-actions {
        flex-direction: column;
    }
    
    .navbar-toggler {
        border-color: var(--brand-yellow);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fdf106' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}
