/* ═══════════════════════════════════════════
   Vero+ Design System — CSS
   Fonte: vero-plus-design-system.md
   ═══════════════════════════════════════════ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores */
    --cream: #FAF8F5;
    --black: #0A0A0A;
    --white: #FFFFFF;
    --gray-100: #F5F3F0;
    --gray-200: #E8E5E1;
    --gray-400: #A8A5A0;
    --gray-600: #6B6966;
    --gray-800: #2A2928;

    /* Tipografia — Outfit é a única fonte */
    --font-family: 'Outfit', -apple-system, sans-serif;

    /* Escala tipográfica (do DS) */
    --type-title: 500 48px/100% var(--font-family);
    --type-product-name: 600 18px/100% var(--font-family);
    --type-product-description: 400 14px/100% var(--font-family);
    --type-filter: 300 18px/100% var(--font-family);
    --type-action-label: 400 14px/100% var(--font-family);
    --type-button: 500 16px/100% var(--font-family);
    --type-greeting: 400 14px/140% var(--font-family);
    --type-username: 600 16px/140% var(--font-family);
    --type-link: 400 14px/100% var(--font-family);

    /* Border-radius */
    --radius-card: 16px;
    --radius-pill: 100px;
    --radius-input: 10px;
    --radius-modal: 24px;

    /* Espacamento */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    color: var(--black);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ═══════════════ NAV ═══════════════ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px var(--space-2xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.scrolled {
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    padding: 14px var(--space-2xl);
}

.nav-logo img {
    height: 28px;
    width: auto;
    transition: height 0.4s ease;
}

nav.scrolled .nav-logo img {
    height: 22px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font: var(--type-link);
    color: var(--gray-600);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--black);
}

.nav-cta {
    font-family: var(--font-family) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--white) !important;
    background: var(--black);
    padding: 8px 22px;
    border-radius: var(--radius-pill);
    text-transform: none !important;
    transition: opacity 0.3s ease !important;
}

.nav-cta:hover {
    opacity: 0.85;
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
}

.nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--black);
    position: absolute;
    left: 4px;
    transition: all 0.3s ease;
}

.nav-mobile-toggle span:nth-child(1) { top: 10px; }
.nav-mobile-toggle span:nth-child(2) { top: 20px; }

/* ── Mobile Menu Panel (oculto por padrao; ativado em <=900px) ── */

.nav-mobile-menu {
    display: none;
}

/* ═══════════════ HERO ═══════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px var(--space-2xl) 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

/* ── Section Label (componente reutilizavel) ── */

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-xl);
}

.section-label-icon {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--black);
    flex-shrink: 0;
}

.section-label span {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Variante escura (secoes com fundo preto) */
.section-label--dark .section-label-icon {
    background: var(--gray-400);
}

.section-label--dark span {
    color: var(--gray-400);
}

.hero h1 {
    font-family: var(--font-family);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: var(--space-lg);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.hero h1 strong {
    font-weight: 600;
}

.hero-sub {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--gray-600);
    max-width: 440px;
    margin-bottom: var(--space-2xl);
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

/* ── Store Buttons (App Store / Google Play) ── */

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    color: var(--black);
    border: 1px solid var(--gray-200);
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    min-width: 190px;
    transition: border-color 0.3s ease;
}

.store-btn:hover {
    border-color: var(--gray-400);
}

.store-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
}

.store-btn-icon svg {
    width: 28px;
    height: 28px;
    color: var(--black);
    fill: currentColor;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
}

.store-btn-text small {
    font-family: var(--font-family);
    font-size: 10px;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1;
}

.store-btn-text strong {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.3;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero-phone {
    width: 300px;
    border-radius: 36px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
}

.hero-phone-secondary {
    position: absolute;
    width: 260px;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    right: -20px;
    top: 60px;
    z-index: -1;
    opacity: 0.6;
    transform: rotate(4deg);
}

/* ═══════════════ PROBLEM ═══════════════ */

.problem {
    padding: 120px var(--space-2xl);
    background: var(--black);
    color: var(--white);
    position: relative;
}

.problem-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.problem h2 {
    font-family: var(--font-family);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 500;
    line-height: 1.3;
    color: var(--gray-200);
    margin-bottom: var(--space-lg);
}

.problem p {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.problem-line {
    width: 40px;
    height: 1px;
    background: var(--gray-600);
    margin: 0 auto var(--space-xl);
}

/* ═══════════════ LIFESTYLE IMAGE ═══════════════ */

.lifestyle-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.lifestyle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.lifestyle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(10,10,10,0.6));
    display: flex;
    align-items: flex-end;
    padding: 80px var(--space-2xl);
}

.lifestyle-text {
    font-family: var(--font-family);
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 500;
    color: var(--white);
    max-width: 500px;
    line-height: 1.35;
}

/* ═══════════════ FEATURES ═══════════════ */

.feature-section {
    padding: 120px var(--space-2xl);
    background: var(--cream);
    position: relative;
}

.feature-section.alt-bg {
    background: var(--white);
}

.feature-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-inner.reverse {
    direction: rtl;
}

.feature-inner.reverse > * {
    direction: ltr;
}

.feature-label {
    margin-bottom: var(--space-md);
}

.feature-title {
    font-family: var(--font-family);
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: var(--space-lg);
}

.feature-desc {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--gray-600);
    max-width: 440px;
}

.feature-details {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    font: var(--type-product-description);
    color: var(--gray-800);
}

.feature-detail-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-detail-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--black);
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-phone {
    width: 280px;
    border-radius: 32px;
    /* DS: sombra apenas quando ha sobreposicao real */
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* ═══════════════ CONSULTA ═══════════════ */

.consulta-section {
    padding: 120px var(--space-2xl);
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.consulta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    row-gap: 40px;
    align-items: center;
}

.consulta-text {
    grid-column: 1;
    grid-row: 1;
}

.consulta-visual {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.consulta-cta {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
}

.consulta-label {
    margin-bottom: var(--space-md);
}

.consulta-title {
    font-family: var(--font-family);
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--gray-200);
    margin-bottom: var(--space-lg);
}

.consulta-desc {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--gray-400);
    max-width: 440px;
}

.consulta-cta {
    display: inline-block;
    font: var(--type-button);
    color: var(--black);
    background: var(--white);
    padding: 16px 40px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all 0.3s ease;
}

.consulta-cta:hover {
    background: var(--gray-200);
}

.consulta-visual {
    display: flex;
    justify-content: center;
}

.consulta-phone {
    width: 280px;
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

/* ═══════════════ SEGURANCA ═══════════════ */

.seguranca {
    padding: 120px var(--space-2xl);
    text-align: center;
}

.seguranca-inner {
    max-width: 700px;
    margin: 0 auto;
}

.seguranca h2 {
    font-family: var(--font-family);
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: var(--space-lg);
}

.seguranca p {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--gray-600);
    max-width: 520px;
    margin: 0 auto;
}

.seguranca-icons {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 64px;
}

.seguranca-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.seguranca-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
}

.seguranca-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--black);
}

.seguranca-item span {
    font: var(--type-product-description);
    color: var(--gray-600);
}

/* ═══════════════ PLANOS ═══════════════ */

.planos {
    padding: 120px var(--space-2xl);
    background: var(--white);
}

.planos-inner {
    max-width: 900px;
    margin: 0 auto;
}

.planos-header {
    text-align: center;
    margin-bottom: 72px;
}

.planos-header h2 {
    font-family: var(--font-family);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 500;
    color: var(--black);
    margin-bottom: var(--space-md);
}

.planos-header p {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-600);
}

.planos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.plano-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-card);
    padding: var(--space-2xl) 40px;
    transition: border-color 0.3s ease;
}

.plano-card:hover {
    border-color: var(--gray-400);
}

.plano-card.premium {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.plano-name {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.plano-card.premium .plano-name {
    color: var(--gray-400);
}

.plano-title {
    font: var(--type-product-name);
    font-size: 24px;
    margin-bottom: var(--space-xl);
}

.plano-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.plano-features li {
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 400;
    color: var(--gray-600);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.plano-card.premium .plano-features li {
    color: var(--gray-400);
}

.plano-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.plano-card.premium .plano-check {
    stroke: var(--white);
}

/* ═══════════════ CTA FINAL ═══════════════ */

.cta-final {
    padding: 120px var(--space-2xl);
    text-align: center;
    position: relative;
}

.cta-final-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-final h2 {
    font-family: var(--font-family);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 20px;
}

.cta-final h2 strong {
    font-weight: 600;
}

.cta-final p {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-600);
    margin-bottom: var(--space-2xl);
}

.cta-final-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

/* ═══════════════ FOOTER ═══════════════ */

footer {
    padding: var(--space-2xl);
    border-top: 1px solid var(--gray-200);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img {
    height: 20px;
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-links a {
    font: var(--type-link);
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--black);
}

.footer-copy {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 400;
    color: var(--gray-400);
}

.footer-info {
    max-width: 1200px;
    margin: var(--space-lg) auto 0;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.footer-info span {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 400;
    color: var(--gray-400);
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    align-self: center;
    gap: var(--space-sm);
}

.footer-credit-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gray-400);
    flex-shrink: 0;
}

.footer-credit a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--black);
}

/* ═══════════════ ANIMATIONS ═══════════════ */

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════ RESPONSIVE — 900px ═══════════════ */

@media (max-width: 900px) {
    nav {
        padding: var(--space-md) var(--space-lg);
    }

    nav.scrolled {
        padding: 12px var(--space-lg);
    }

    .nav-links {
        display: none;
    }

    .nav-mobile-toggle {
        display: block;
    }

    .nav-mobile-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--cream);
        padding: 100px var(--space-lg) calc(var(--space-2xl) + env(safe-area-inset-bottom, 0px));
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease;
        z-index: 90;
        overflow-y: auto;
    }

    body.menu-open .nav-mobile-menu {
        opacity: 1;
        visibility: visible;
    }

    .nav-mobile-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding-top: var(--space-lg);
    }

    .nav-mobile-links a {
        font-family: var(--font-family);
        font-size: 28px;
        font-weight: 500;
        color: var(--black);
        text-decoration: none;
        line-height: 1;
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    body.menu-open .nav-mobile-links a {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    body.menu-open .nav-mobile-links a:nth-child(1) { transition-delay: 0.1s; }
    body.menu-open .nav-mobile-links a:nth-child(2) { transition-delay: 0.15s; }
    body.menu-open .nav-mobile-links a:nth-child(3) { transition-delay: 0.2s; }
    body.menu-open .nav-mobile-links a:nth-child(4) { transition-delay: 0.25s; }

    .nav-mobile-cta {
        align-self: stretch;
        background: var(--black);
        color: var(--white);
        font-family: var(--font-family);
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
        text-align: center;
        padding: 18px var(--space-lg);
        border-radius: var(--radius-pill);
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 0.25s ease, transform 0.25s ease, background 0.3s ease;
    }

    body.menu-open .nav-mobile-cta {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
                    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
                    background 0.3s ease;
    }

    nav.open .nav-mobile-toggle span:nth-child(1) {
        top: 15px;
        transform: rotate(45deg);
    }

    nav.open .nav-mobile-toggle span:nth-child(2) {
        top: 15px;
        transform: rotate(-45deg);
    }

    nav.open {
        background: var(--cream);
        border-bottom-color: transparent;
    }

    body.menu-open {
        overflow: hidden;
    }

    .section-label {
        justify-content: center;
    }

    .hero {
        padding: 120px var(--space-lg) 60px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .hero-sub {
        margin: 0 auto var(--space-xl);
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-visual {
        display: block;
        position: relative;
        width: 290px;
        margin: 0 auto;
    }

    .hero-phone {
        display: block;
        width: 220px;
    }

    .hero-phone-secondary {
        display: block;
        position: absolute;
        top: 50px;
        right: 0;
        width: 180px;
    }

    .problem {
        padding: 80px var(--space-lg);
    }

    .feature-section {
        padding: 80px var(--space-lg);
    }

    .feature-inner,
    .feature-inner.reverse {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        direction: ltr;
        text-align: center;
    }

    .feature-inner > * {
        direction: ltr;
    }

    .feature-desc {
        margin: 0 auto;
    }

    .feature-details {
        align-items: center;
    }

    .feature-phone {
        width: 220px;
    }

    .feature-visual {
        order: 1;
    }

    .consulta-section {
        padding: 80px var(--space-lg);
    }

    .consulta-inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .consulta-text,
    .consulta-visual,
    .consulta-cta {
        grid-column: 1;
        grid-row: auto;
    }

    .consulta-cta {
        justify-self: center;
    }

    .consulta-desc {
        margin: 0 auto;
    }

    .consulta-phone {
        width: 220px;
    }

    .seguranca {
        padding: 80px var(--space-lg);
    }

    .seguranca-icons {
        gap: var(--space-xl);
    }

    .planos {
        padding: 80px var(--space-lg);
    }

    .planos-grid {
        grid-template-columns: 1fr;
    }

    .cta-final {
        padding: 80px var(--space-lg);
    }

    .lifestyle-section {
        height: 50vh;
    }

    .lifestyle-overlay {
        padding: 40px var(--space-lg);
    }

    footer {
        padding: var(--space-xl) var(--space-lg);
    }

    .footer-inner {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }

    .footer-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-info {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

/* ═══════════════ RESPONSIVE — 768px (tablet) ═══════════════ */

@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(28px, 6vw, 40px);
    }

    .seguranca-icons {
        gap: var(--space-lg);
    }

    .plano-card {
        padding: var(--space-xl) var(--space-lg);
    }
}

/* ═══════════════ RESPONSIVE — 480px ═══════════════ */

@media (max-width: 480px) {
    .hero-visual {
        width: 260px;
    }

    .hero-phone {
        width: 200px;
    }

    .hero-phone-secondary {
        top: 40px;
        width: 150px;
    }

    .hero-ctas,
    .cta-final-badges {
        gap: 12px;
        width: 100%;
    }

    .cta-final-badges {
        padding: 0 var(--space-md);
    }

    .store-btn {
        flex: 1;
        min-width: 0;
        padding: 12px 18px;
        gap: 10px;
        justify-content: center;
    }

    .seguranca-icons {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }
}
