:root {
    /* Nova paleta: Azul com transição para verde/turquesa */
    --primary-blue: #1a5fb4;
    --primary-blue-dark: #0d3b7a;
    --accent-teal: #00b4a0;
    --accent-turquoise: #00d4c8;
    --accent-glow: rgba(0, 180, 160, 0.25);
    --dark: #0a1520;
    --light: #f5f9fc;
    --gray: #5a6b7a;
    --gold: #c9a227;
    --gradient-premium: linear-gradient(135deg, #1a5fb4 0%, #00b4a0 50%, #00d4c8 100%);
    --gradient-hero: linear-gradient(135deg, #0d3b7a 0%, #1a5fb4 100%);
    --gradient-soft: linear-gradient(180deg, rgba(26, 95, 180, 0.05) 0%, transparent 100%);
}

/* Credit styling */
.footer-credit {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-credit a {
    color: var(--accent-turquoise);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: white;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
}

/* ========================================
   ANIMAÇÕES
======================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes carDrive {
    0% { transform: translateX(-30px) translateY(0); }
    25% { transform: translateX(0) translateY(-5px); }
    50% { transform: translateX(10px) translateY(0); }
    75% { transform: translateX(0) translateY(-3px); }
    100% { transform: translateX(-30px) translateY(0); }
}

@keyframes wheelSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { opacity: 0.1; }
    50% { opacity: 0.3; }
    100% { opacity: 0.1; }
}

@keyframes pulse-glow {
    0%, 100% { 
        filter: drop-shadow(0 20px 40px rgba(26, 95, 180, 0.2));
    }
    50% { 
        filter: drop-shadow(0 25px 50px rgba(0, 180, 160, 0.35));
    }
}

@keyframes eco-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* ========================================
   HEADER
======================================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.8rem 5%;
    background: rgba(245, 249, 252, 0.97);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(26, 95, 180, 0.1);
    animation: fadeInUp 0.8s ease;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.cta-header {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-premium);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 95, 180, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(26, 95, 180, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-ghost:hover {
    background: var(--primary-blue);
    color: white;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 7rem 5% 3rem;
    position: relative;
    overflow: hidden;
    background: var(--gradient-soft);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 100%;
}

.hero-text h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--primary-blue-dark);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-text h1 .highlight {
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Premium Badge */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 1px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease both;
}

/* ========================================
   CAR ILLUSTRATION
======================================== */
.hero-image {
    position: relative;
    animation: slideInRight 1s ease 0.3s both;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.car-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    animation: carDrive 6s ease-in-out infinite;
}

.car-illustration {
    width: 100%;
    height: auto;
    animation: pulse-glow 4s ease-in-out infinite;
}

.car-illustration .wheel {
    transform-origin: center;
    animation: wheelSpin 2s linear infinite;
}

.car-illustration .eco-icon {
    animation: eco-pulse 2s ease-in-out infinite;
}

.car-illustration .car-shine {
    animation: shimmer 3s ease-in-out infinite;
}

/* Road effect */
.road-effect {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gray), transparent);
    opacity: 0.3;
    border-radius: 50%;
}

/* ========================================
   STATS
======================================== */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 0 5%;
    width: 100%;
    max-width: 1400px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(26, 95, 180, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid rgba(26, 95, 180, 0.05);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.stat-label {
    color: var(--gray);
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
}

/* ========================================
   SECTIONS COMMON
======================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(26, 95, 180, 0.1) 0%, rgba(0, 180, 160, 0.1) 100%);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.3rem);
    font-weight: 700;
    color: var(--primary-blue-dark);
    margin-bottom: 0.8rem;
}

.section-header p {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: var(--gray);
}

/* ========================================
   PREMIUM SECTION
======================================== */
.premium {
    padding: 5rem 5%;
    background: linear-gradient(180deg, white 0%, var(--light) 100%);
    overflow: hidden;
}

.premium-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.premium-card {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(26, 95, 180, 0.1);
    border: 1px solid rgba(26, 95, 180, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-premium);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.premium-card:hover::before {
    transform: scaleX(1);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 95, 180, 0.15);
}

.premium-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-premium);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.2rem;
}

.premium-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-blue-dark);
    margin-bottom: 0.7rem;
}

.premium-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   FEATURES SECTION
======================================== */
.features {
    padding: 5rem 5%;
    background: white;
    overflow: hidden;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background: var(--gradient-soft);
    border: 1px solid rgba(26, 95, 180, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-premium);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 95, 180, 0.12);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-premium);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.feature-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue-dark);
    margin-bottom: 0.7rem;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
    padding: 5rem 5%;
    background: var(--gradient-hero);
    color: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 180, 160, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.92;
}

.about-values {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image svg {
    width: 100%;
    max-width: 300px;
    border-radius: 24px;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    padding: 5rem 5%;
    background: var(--light);
    text-align: center;
    overflow: hidden;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--gradient-premium);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(26, 95, 180, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-box h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.btn-whatsapp {
    background: white;
    color: var(--primary-blue-dark);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* ========================================
   FOOTER
======================================== */
footer {
    padding: 3rem 5% 1.5rem;
    background: var(--dark);
    color: white;
    overflow: hidden;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 0.8rem;
    filter: brightness(1.2);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-links h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--accent-turquoise);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--gradient-premium);
    transform: translateY(-3px);
}

/* ========================================
   MODALS
======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 21, 32, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal {
    background: white;
    border-radius: 20px;
    max-width: 650px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(26, 95, 180, 0.1);
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
    padding-right: 2rem;
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(26, 95, 180, 0.1);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary-blue);
}

.modal-close:hover {
    background: var(--primary-blue);
    color: white;
}

.modal-content {
    padding: 1.5rem;
}

.modal-content h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue-dark);
    margin: 1.2rem 0 0.6rem;
}

.modal-content h3:first-child {
    margin-top: 0;
}

.modal-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.modal-content ul {
    color: var(--gray);
    margin-left: 1.2rem;
    margin-bottom: 0.8rem;
}

.modal-content li {
    margin-bottom: 0.4rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.modal-content .update-date {
    font-size: 0.8rem;
    color: rgba(90, 107, 122, 0.7);
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(26, 95, 180, 0.1);
}

/* ========================================
   RESPONSIVE - TABLET
======================================== */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
        min-height: 250px;
    }

    .car-container {
        max-width: 400px;
    }

    .hero-cta {
        justify-content: center;
    }

    .premium-badge {
        margin: 0 auto 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-values {
        justify-content: center;
    }

    .about-image {
        order: -1;
    }

    .about-image svg {
        max-width: 250px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
======================================== */
@media (max-width: 768px) {
    header {
        padding: 0.6rem 4%;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .cta-header {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding: 2rem;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .cta-header.active {
        right: 0;
    }

    .cta-header .btn {
        width: 100%;
        text-align: center;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 4%;
    }

    .premium,
    .features,
    .about,
    .cta-section {
        padding: 4rem 4%;
    }

    .premium-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-brand {
        grid-column: 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .modal {
        width: 94%;
        max-height: 90vh;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE
======================================== */
@media (max-width: 480px) {
    .hero {
        padding: 5.5rem 4% 2rem;
        min-height: auto;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .logo-img {
        height: 40px;
    }

    .car-container {
        max-width: 300px;
    }

    .hero-image {
        min-height: 200px;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .value-item {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }

    .stat-item {
        padding: 1.2rem 0.8rem;
    }

    .premium-card,
    .feature-card {
        padding: 1.5rem 1.2rem;
    }
}
