/* ═══════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black:   #0d0e13;
    --dark:    #161820;
    --grey:    #f4f4f6;
    --grey2:   #e8e8ec;
    --text:    #1a1b23;
    --muted:   #6b7280;
    --white:   #ffffff;
    --primary: #1a56db;
    --primary-h:#1e40af;
    --gold:    #c9a84c;
    --gold-h:  #a87e2f;
    --radius:  14px;
    --r-lg:    22px;
    --shadow:  0 2px 24px rgba(0,0,0,.09);
    --shadow-h:0 8px 40px rgba(0,0,0,.16);
    --font:    "Inter", "Segoe UI", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
    width: min(1160px, 92vw);
    margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════════ */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.95);
    /* needed so mobile-menu positions relative to header */
    isolation: isolate;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--grey2);
    box-shadow: 0 1px 0 rgba(0,0,0,.04);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    height: 64px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

@media (max-width: 480px) {
    .brand-logo {
        height: 48px;
        max-width: 160px;
    }
}

.brand em {
    font-style: normal;
    color: var(--primary);
}

nav {
    display: none;
    align-items: center;
    gap: 28px;
}

nav a {
    font-size: .875rem;
    font-weight: 500;
    color: var(--muted);
    transition: color .2s;
}

nav a:hover { color: var(--text); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .875rem;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
}

.btn:active { transform: scale(.97); }

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover { background: var(--primary-h); }

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--grey2);
    color: var(--text);
}

.btn-outline:hover { border-color: #bbb; }

.btn-cart {
    position: relative;
    background: var(--grey);
    padding: 9px 14px;
    border-radius: 12px;
    color: var(--text);
    font-size: .85rem;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════════════════ */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 580px;
    background: var(--black);
}

@media (max-width: 767px) {
    .hero-slider { height: 480px; }
}

.slides-track {
    display: flex;
    height: 100%;
    transition: transform .65s cubic-bezier(.77,0,.175,1);
    will-change: transform;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(10,10,20,.78) 0%,
        rgba(10,10,20,.5) 50%,
        rgba(10,10,20,.15) 100%
    );
}

.slide-content {
    position: relative;
    z-index: 12;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 40px;
    max-width: 600px;
    padding-bottom: 100px;
    box-sizing: border-box;
}

.slide-tag {
    display: inline-block;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
    width: fit-content;
}

.slide-content h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
    letter-spacing: -.5px;
    margin-bottom: 16px;
}

.slide-content h1 em {
    font-style: normal;
    color: #ffd585;
}

.slide-content p {
    font-size: 1rem;
    color: rgba(255,255,255,.75);
    line-height: 1.65;
    max-width: 460px;
    margin-bottom: 28px;
}

.slide-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-slide-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    transition: background .2s, transform .15s;
}

.btn-slide-primary:hover { background: var(--primary-h); transform: translateY(-2px); }

.btn-slide-ghost {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    border: 1.5px solid rgba(255,255,255,.4);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    transition: border-color .2s, background .2s;
}

.btn-slide-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.25);
    backdrop-filter: blur(8px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-bottom: 60px;
}

.slider-arrow:hover { background: rgba(255,255,255,.28); }
/* Setas na “gutter” fora da coluna do .container (evita cobrir o texto) */
.hero-slider .slider-arrow.prev {
    left: max(10px, calc((100% - min(1160px, 92vw)) / 2 - 58px));
}
.hero-slider .slider-arrow.next {
    right: max(10px, calc((100% - min(1160px, 92vw)) / 2 - 58px));
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 52px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.slider-dots--hidden {
    display: none;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    transition: background .25s, width .25s;
}

.dot.active {
    background: #fff;
    width: 26px;
}

/* Slide 4 — Proteção digital (copy à esquerda, rosto à direita) */
.slide--digital {
    background-size: cover;
    background-position: 70% center;
    isolation: isolate;
}

/* Brilho do monitor (reflexo azul no rosto/óculos) — sob o overlay escuro */
.slide-digital-hero-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 14% 11% at 71% 35%, rgba(255, 255, 255, 0.28) 0%, transparent 70%),
        radial-gradient(ellipse 46% 42% at 79% 43%, rgba(147, 197, 253, 0.45) 0%, rgba(37, 99, 235, 0.22) 45%, transparent 70%);
}

.slide--digital .slide-overlay--digital {
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(4, 8, 22, .92) 0%,
        rgba(4, 8, 22, .82) 34%,
        rgba(4, 8, 22, .45) 50%,
        rgba(4, 8, 22, .12) 68%,
        transparent 88%
    );
}

/* Coluna do slide 4 = mesma caixa do header (.container), conteúdo por dentro */
.slide--digital .slide-digital-hero-wrap {
    position: relative;
    z-index: 12;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-width: 0;
    box-sizing: border-box;
    overflow: visible;
}

.slide-tag.slide-tag--digital {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    /* evita bug de empilhamento com blur herdado de .slide-tag */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(4, 8, 22, 0.94);
    border: 2px solid #e8c547;
    color: #f8e9b0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: clamp(0.65rem, 1.1vw, 0.72rem);
    padding: 6px 12px;
    margin: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.slide-content--digital h1 .slide-digital-h1-line {
    color: #fff;
    font-style: normal;
}

.slide-content--digital h1 .slide-em-digital {
    color: #f4d03f;
    font-style: normal;
}

/* Título slide 4 */
.slide-content.slide-content--digital h1 {
    font-size: clamp(1.55rem, 3.65vw, 2.2rem);
    line-height: 1.12;
    margin: 0;
    letter-spacing: -0.03em;
}

.slide-content.slide-content--digital {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    max-width: none;
    width: 100%;
    flex: 1;
    min-height: 0;
    padding-top: clamp(34px, 9vw, 72px);
    padding-bottom: clamp(120px, 22vh, 150px);
    gap: clamp(16px, 2.8vw, 26px);
    box-sizing: border-box;
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
    overflow-x: visible;
    overflow-y: visible;
}

.slide-digital-main {
    max-width: min(560px, 100%);
    width: 100%;
    margin: 0;
    padding-right: 0;
    text-align: left;
    min-width: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(12px, 2.2vw, 20px);
}

.slide-content.slide-content--digital .slide-digital-main > p {
    margin: 0;
    max-width: 100%;
    font-size: clamp(0.9rem, 2.05vw, 1.02rem);
    line-height: 1.62;
}

.slide-actions--digital {
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 2px;
}

@media (min-width: 480px) {
    .slide-actions--digital {
        flex-wrap: nowrap;
    }
}

.slide-actions--digital .btn-slide-gold,
.slide-actions--digital .btn-slide-ghost-digital {
    font-size: clamp(0.94rem, 1.9vw, 1.05rem);
}

.slide-digital-features {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: clamp(12px, 2.4vw, 22px);
    margin: clamp(6px, 1.2vw, 14px) 0 0;
    padding: 0;
    width: 100%;
    max-width: min(560px, 100%);
    min-width: 0;
    flex-shrink: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.slide-digital-features::-webkit-scrollbar {
    height: 4px;
}

.slide-digital-features::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
}

.slide-digital-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    flex: 0 1 auto;
    min-width: 0;
    font-size: clamp(0.7rem, 1.25vw, 0.84rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    white-space: normal;
    line-height: 1.32;
}

.sdf-ico {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sdf-ico svg {
    display: block;
    width: 22px;
    height: 22px;
}

/* Cards + badges: evita recorte por flex/overflow */
.slide-digital-bottom {
    margin-top: clamp(8px, 1.5vw, 16px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: min(900px, 100%);
    flex-shrink: 0;
    overflow: visible;
}

.slide-digital-cards-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
}

@media (min-width: 768px) {
    .slide-digital-cards-wrap {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 12px;
    }

    .slide-digital-card--lente {
        flex: 1 1 34%;
        max-width: 320px;
        min-width: 168px;
    }

    .slide-digital-benefits {
        flex: 1 1 auto;
        min-width: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 6px 14px;
        overflow-x: visible;
    }
}

/* Painel unificado — mesma “caixinha” da referência (fundo + borda + cantos) */
.slide-digital-panel {
    background: rgba(30, 40, 68, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.slide-digital-card--lente.slide-digital-panel {
    /* Referência: fundo azul bem escuro, borda dourada fina */
    background: linear-gradient(165deg, rgba(14, 20, 40, 0.98) 0%, rgba(6, 10, 22, 0.98) 100%);
    border: 1px solid rgba(232, 197, 71, 0.55);
    border-radius: 12px;
    max-width: min(320px, 100%);
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.slide-digital-card--lente {
    display: flex;
    gap: 10px;
    align-items: center;
    text-align: left;
    width: 100%;
    padding: 10px 12px;
}

/* Área da foto: fundo igual ao card + blend para “sumir” com branco do JPG */
.slide-digital-lente-photo-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(48px, 13vw, 62px);
    height: clamp(46px, 12.5vw, 58px);
    border-radius: 10px;
    background: #060a16;
    isolation: isolate;
    overflow: hidden;
}

.slide-digital-lente-photo {
    width: 88%;
    height: 88%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: multiply;
    filter:
        drop-shadow(0 0 12px rgba(232, 197, 71, 0.45))
        saturate(1.12)
        brightness(1.04);
}

.slide-digital-lente-copy {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.slide-digital-lente-title {
    display: block;
    color: #f4d03f;
    font-size: clamp(0.82rem, 1.6vw, 0.95rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
}

.slide-digital-lente-desc {
    margin: 0;
    font-size: clamp(0.66rem, 1.35vw, 0.76rem);
    line-height: 1.38;
    color: rgba(255, 255, 255, 0.93);
    font-weight: 400;
}

/* Benefícios ao lado: sem caixinhas, ícone colado ao texto */
.slide-digital-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    column-gap: 12px;
    row-gap: 6px;
    width: 100%;
    min-width: 0;
}

.slide-digital-benefit {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    font-size: clamp(0.62rem, 1.1vw, 0.72rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.94);
}

.slide-digital-benefit-label {
    line-height: 1.2;
    white-space: nowrap;
}

@media (max-width: 479px) {
    .slide-digital-benefit-label {
        white-space: normal;
    }
}

.sdp-ico {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.sdp-ico--round {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.96);
}

.sdp-ico--round svg {
    display: block;
}

.sdp-ico--round.sdp-ico--blue {
    background: linear-gradient(145deg, #3b82f6, #1d4ed8);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.45);
}

.sdp-ico--round.sdp-ico--purple {
    background: linear-gradient(145deg, #a855f7, #6d28d9);
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.45);
}

.sdp-ico--round.sdp-ico--orange {
    background: linear-gradient(145deg, #fb923c, #ea580c);
    box-shadow: 0 2px 10px rgba(234, 88, 12, 0.45);
}

@media (max-width: 767px) {
    .slide--digital {
        background-position: center center;
    }

    .slide-digital-hero-glow {
        background:
            radial-gradient(ellipse 20% 15% at 56% 33%, rgba(255, 255, 255, 0.24) 0%, transparent 72%),
            radial-gradient(ellipse 58% 50% at 58% 44%, rgba(147, 197, 253, 0.4) 0%, rgba(37, 99, 235, 0.2) 46%, transparent 70%);
    }

    .slide--digital .slide-overlay--digital {
        background: linear-gradient(
            180deg,
            rgba(4, 8, 22, .9) 0%,
            rgba(4, 8, 22, .82) 50%,
            rgba(4, 8, 22, .75) 100%
        );
    }

    .slide-content.slide-content--digital {
        align-items: stretch;
        text-align: left;
        padding-top: clamp(24px, 8vw, 48px);
        padding-bottom: clamp(118px, 24vh, 145px);
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }

    .slide-digital-main {
        max-width: 100%;
        padding-right: 0;
    }

    .slide-digital-benefits {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        column-gap: 10px;
        row-gap: 6px;
    }
}

.btn-slide-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 14px 28px;
    background: #e8c547;
    color: #0d0e13;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    transition: background .2s, transform .15s;
    border: none;
    cursor: pointer;
}

.btn-slide-gold:hover {
    background: #d4b03d;
    color: #0d0e13;
    transform: translateY(-2px);
}

.btn-slide-ghost-digital {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 13px 24px;
    border: 2px solid rgba(255, 255, 255, .55);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    background: transparent;
    font-family: var(--font);
    cursor: pointer;
    transition: border-color .2s, background .2s;
}

.btn-slide-ghost-digital:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
}

/* Gaveta lateral — por que usar óculos */
.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 280;
    background: rgba(5, 8, 18, .55);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease;
}

.drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.drawer-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 281;
    width: min(460px, 100vw);
    height: 100%;
    max-height: 100dvh;
    background: linear-gradient(180deg, #0c1426 0%, #0f172a 40%, #111c33 100%);
    color: #e2e8f0;
    box-shadow: -12px 0 48px rgba(0, 0, 0, .35);
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.22, 1, .36, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.drawer-panel.is-open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 22px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.drawer-header h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -.02em;
    margin: 0;
}

.drawer-close {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background .2s;
}

.drawer-close:hover {
    background: rgba(255, 255, 255, .18);
}

.drawer-body {
    padding: 20px 22px 32px;
    overflow-y: auto;
    flex: 1;
}

.drawer-intro {
    font-size: .92rem;
    line-height: 1.65;
    color: rgba(226, 232, 240, .88);
    margin-bottom: 22px;
}

.drawer-subtitle {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #e8c547;
    margin-bottom: 14px;
}

.drawer-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 14px;
}

.drawer-benefits li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: .88rem;
    line-height: 1.55;
    color: rgba(226, 232, 240, .92);
}

.db-icon {
    flex-shrink: 0;
    width: 28px;
    text-align: center;
    font-size: 1rem;
}

.btn-slide-ghost-digital--info {
    gap: 10px;
}

.btn-slide-info-icon {
    flex-shrink: 0;
}

/* Bloco citação + foto óculos amarelos (mockup) */
.drawer-showcase {
    margin: 8px 0 24px;
    padding: 20px 18px 18px;
    border-radius: var(--r-lg);
    background: rgba(232, 197, 71, .1);
    border: 1px solid rgba(232, 197, 71, .28);
}

.drawer-quote-mark {
    display: block;
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 0.9;
    color: #e8c547;
    font-family: Georgia, 'Times New Roman', serif;
    margin-bottom: 8px;
}

.drawer-showcase-row {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.drawer-quote--showcase {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    font-style: italic;
    color: #fff;
    line-height: 1.5;
    padding: 0;
    border: none;
}

.drawer-showcase-photo {
    min-width: 0;
}

.drawer-showcase-img {
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .4);
    display: block;
}

.drawer-showcase-placeholder {
    font-size: .82rem;
    color: rgba(226, 232, 240, .7);
    line-height: 1.55;
    margin: 0;
}

.drawer-showcase-placeholder code {
    font-size: .78rem;
    color: #e8c547;
    word-break: break-all;
}

@media (min-width: 380px) {
    .drawer-showcase-row {
        flex-direction: row;
        align-items: center;
        gap: 18px;
    }

    .drawer-quote--showcase {
        flex: 1;
    }

    .drawer-showcase-photo {
        flex: 1.1;
        max-width: 52%;
    }
}

.drawer-quote-block {
    margin: 0 0 20px;
    padding: 16px;
    border-radius: var(--radius);
    background: rgba(232, 197, 71, .08);
    border: 1px solid rgba(232, 197, 71, .22);
}

.drawer-quote {
    margin: 0 0 14px;
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
    color: #fff;
    line-height: 1.45;
}

.drawer-quote-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.drawer-foot-badges {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.drawer-foot-badges li {
    font-size: .72rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(226, 232, 240, .9);
}

body.drawer-open {
    overflow: hidden;
}

/* Trust bar */
.trust-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--grey2);
}

.trust-inner {
    display: flex;
    justify-content: center;
    gap: 0;
    overflow: hidden;
}

.trust-inner span {
    padding: 11px 22px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: .2px;
    border-right: 1px solid var(--grey2);
    white-space: nowrap;
}

.trust-inner span:last-child { border-right: none; }


/* ═══════════════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════════════ */
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }

.section-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--black);
    letter-spacing: -.4px;
}

.section-header h2 strong { font-weight: 800; }


/* ═══════════════════════════════════════════════════════
   PROFILES
═══════════════════════════════════════════════════════ */
.section-profiles {
    padding: 80px 0;
    background: var(--grey);
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card base */
.profile-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    display: block;
    box-shadow: var(--shadow);
    transition: transform .3s, box-shadow .3s;
}

.profile-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-h); }

.profile-img-wrap {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.profile-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.profile-card:hover .profile-img-wrap img { transform: scale(1.04); }

/* Card estilo limpo (novo) */
.profile-card--clean {
    background: #fff;
    border: 1px solid var(--grey2);
}

.profile-card--clean .profile-img-wrap {
    height: 340px;
    background: #f0f0f2;
}

.profile-card--clean .profile-img-wrap img {
    object-position: top center;
}

.profile-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 20px 20px;
    background: #fff;
    border-top: 1px solid var(--grey2);
}

.profile-label-tag {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
}

.profile-label strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--black);
}

.profile-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted);
    margin-top: 2px;
    transition: color .2s;
}

.profile-card:hover .profile-cta { color: var(--primary); }

/* Gradiente (mantido para uso legado) */
.profile-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,10,20,.82) 100%);
}

.profile-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    color: #fff;
}

.profile-info h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.profile-info p  { font-size: .85rem; color: rgba(255,255,255,.75); line-height: 1.5; margin-bottom: 14px; }


/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════ */
.section-how {
    padding: 80px 0;
    background: var(--white);
}

.how-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.how-step {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    text-align: center;
    padding: 0 12px;
}

.how-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.how-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.how-step p {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.55;
}

.how-divider {
    width: 32px;
    height: 2px;
    background: var(--grey2);
    align-self: center;
    flex-shrink: 0;
    margin-top: -30px;
}

.how-cta {
    text-align: center;
}

.btn-primary-light {
    display: inline-flex;
    align-items: center;
    padding: 15px 38px;
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    transition: background .2s, transform .15s;
}

.btn-primary-light:hover { background: var(--primary-h); transform: translateY(-2px); }


/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.section-testimonials {
    padding: 80px 0;
    background: var(--grey);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tcard {
    background: var(--white);
    border: 1px solid var(--grey2);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow .2s;
}

.tcard:hover { box-shadow: var(--shadow-h); }

.tcard-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 1px; }

.tcard p {
    font-size: .92rem;
    color: #374151;
    line-height: 1.65;
    flex: 1;
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--grey2);
}

.tcard-author img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.tcard-author strong { display: block; font-size: .9rem; color: var(--black); }
.tcard-author span  { font-size: .78rem; color: var(--muted); }


/* ═══════════════════════════════════════════════════════
   HELP SECTION
═══════════════════════════════════════════════════════ */
.section-help {
    padding: 80px 0;
    background: var(--white);
}

.help-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.help-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin: 10px 0 16px;
    letter-spacing: -.3px;
}

.help-text h2 strong { font-weight: 800; }

.help-text p {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.help-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-wpp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: #22c55e;
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: .92rem;
    transition: background .2s, transform .15s;
}

.btn-wpp:hover { background: #16a34a; transform: translateY(-2px); }

.btn-help-outline {
    display: inline-flex;
    align-items: center;
    padding: 13px 24px;
    border: 1.5px solid var(--grey2);
    color: var(--text);
    border-radius: 999px;
    font-weight: 600;
    font-size: .92rem;
    transition: border-color .2s;
}

.btn-help-outline:hover { border-color: #aaa; }

.help-visual img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-h);
}


/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
    background: var(--black);
    color: rgba(255,255,255,.72);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand-logo-wrap {
    display: inline-block;
    margin-bottom: 14px;
}

.footer-brand-logo {
    height: 52px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    padding: 6px 12px;
    display: block;
}

.footer-brand-desc {
    font-size: .85rem;
    line-height: 1.7;
    color: rgba(255,255,255,.5);
    max-width: 280px;
    margin-bottom: 22px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, opacity .2s;
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.footer-social-icon:hover { transform: translateY(-3px); opacity: .85; }

/* Instagram — gradiente oficial */
.footer-social-icon[title="Instagram"] {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
}

/* YouTube — vermelho oficial */
.footer-social-icon[title="YouTube"] {
    background: #FF0000;
    color: #fff;
}

/* TikTok — preto com detalhe */
.footer-social-icon[title="TikTok"] {
    background: #010101;
    color: #fff;
    border: 1px solid rgba(255,255,255,.15);
}

.footer-col h5,
.footer-map-row h5 {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
}

.footer-map-row {
    grid-column: 1 / -1;
    margin-top: 8px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.footer-map-desc {
    font-size: .8125rem;
    line-height: 1.55;
    color: rgba(255,255,255,.45);
    margin: -8px 0 16px;
    max-width: 40rem;
}

.footer-map-frame-wrap {
    position: relative;
    width: 100%;
    max-width: min(100%, 420px);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    aspect-ratio: 16 / 9;
    min-height: 132px;
    background: rgba(255,255,255,.04);
}

.footer-map-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-map-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 16px;
    padding: 0 22px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, .45);
    border-radius: 10px;
    transition: background .2s, color .2s, border-color .2s;
}

.footer-map-cta:hover {
    background: rgba(201, 168, 76, .12);
    color: #e4cf8a;
    border-color: rgba(201, 168, 76, .65);
}

.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col ul li a {
    font-size: .875rem;
    color: rgba(255,255,255,.6);
    transition: color .2s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-col address {
    font-style: normal;
    font-size: .875rem;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: .78rem;
    color: rgba(255,255,255,.3);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: .78rem;
    color: rgba(255,255,255,.35);
    transition: color .2s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }


/* ═══════════════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 200;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(34,197,94,.5);
    transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(34,197,94,.65); }

.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }


/* ═══════════════════════════════════════════════════════
   INNER PAGES (auth, cart, checkout, dashboard, wizard)
═══════════════════════════════════════════════════════ */
.page-section {
    padding: 56px 0 80px;
    min-height: 60vh;
}

.page-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -.3px;
    margin-bottom: 6px;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 36px;
}

/* Termos de uso (ícones + títulos em azul) */
.terms-page {
    width: 100%;
    max-width: 800px;
}

.terms-page > .page-title,
.terms-page > .page-subtitle {
    text-align: center;
}

.terms-page > .page-subtitle {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.terms-block {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
    row-gap: 0.35rem;
    margin-top: 1.5rem;
    align-items: start;
}

.terms-block:first-of-type {
    margin-top: 1.25rem;
}

.terms-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 86, 219, 0.07);
    flex-shrink: 0;
}

.terms-block > .terms-icon {
    grid-column: 1;
    grid-row: 1;
}

.terms-icon svg {
    display: block;
}

.terms-block-title {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    align-self: center;
    font-size: clamp(0.9rem, 2.4vw, 1.02rem);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.02em;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.terms-num {
    font-weight: 800;
    margin-right: 0.2em;
}

.terms-block-body {
    grid-column: 2;
    grid-row: 2;
}

.terms-legal a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.terms-legal a:hover {
    text-decoration-thickness: 2px;
}

.terms-legal p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0 0 0.35rem;
}

.terms-intro {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0 0 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--grey2);
}

.terms-list {
    margin: 0.35rem 0 0;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text);
}

.terms-list li {
    margin-bottom: 0.25rem;
}

@media (max-width: 480px) {
    .terms-block {
        grid-template-columns: 42px 1fr;
        column-gap: 10px;
        margin-top: 1.35rem;
    }

    .terms-icon {
        width: 42px;
        height: 42px;
    }

    .terms-icon svg {
        width: 19px;
        height: 19px;
    }
}

/* Card/Panel */
.card {
    background: var(--white);
    border: 1px solid var(--grey2);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}

/* Forms */
.form-group { display: grid; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }

input, select, textarea {
    width: 100%;
    background: var(--white);
    border: 1.5px solid var(--grey2);
    color: var(--text);
    border-radius: 12px;
    padding: 13px 16px;
    font-size: .92rem;
    font-family: var(--font);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}

.btn-form {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    margin-top: 6px;
}

.btn-form:hover { background: var(--primary-h); }

/* Auth */
.auth-wrap { max-width: 480px; }
.auth-link { font-size: .85rem; color: var(--muted); text-align: center; margin-top: 14px; }
.auth-link a { color: var(--primary); font-weight: 600; }
.error-msg { background: #fee2e2; border: 1px solid #fca5a5; color: #dc2626; border-radius: 10px; padding: 12px 16px; font-size: .875rem; margin-bottom: 14px; }

/* Wizard */
.wizard-wrap {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start;
}

.wizard-sidebar {
    background: var(--white);
    border: 1px solid var(--grey2);
    border-radius: var(--r-lg);
    padding: 24px;
    position: sticky;
    top: 80px;
}

.wizard-sidebar h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 16px; }

.wizard-steps-list {
    list-style: none;
    display: grid;
    gap: 4px;
}

.wizard-steps-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: .875rem;
    color: var(--muted);
    transition: background .2s;
}

.wizard-steps-list li.active {
    background: #eff6ff;
    color: var(--primary);
    font-weight: 600;
}

.wizard-steps-list li span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--grey2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.wizard-steps-list li.active span {
    background: var(--primary);
    color: #fff;
}

.wizard-main { display: grid; gap: 20px; }

/* Cart */
.cart-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--grey2);
}

.cart-row:last-child { border-bottom: none; }

/* Dashboard */
.dashboard-wrap {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    align-items: start;
}

.order-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--grey2);
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    background: #dbeafe;
    color: var(--primary);
}


/* ═══════════════════════════════════════════════════════
   EM CONSTRUÇÃO / MANUTENÇÃO
═══════════════════════════════════════════════════════ */
.construcao-wrap {
    max-width: 520px;
    margin: 60px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.construcao-icon {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 8px;
}

.construcao-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--black);
    letter-spacing: -.3px;
}

.construcao-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 8px;
}


/* ═══════════════════════════════════════════════════════
   HAMBURGER & MOBILE MENU
═══════════════════════════════════════════════════════ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    transition: background .2s;
}

.hamburger:hover { background: var(--grey); }

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 70px;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--grey2);
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    z-index: 99;
}

.mobile-menu.open { display: block; }

.mobile-nav {
    display: flex !important;
    flex-direction: column;
    padding: 12px 0 20px;
}

.mobile-nav a {
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--grey2);
    transition: background .15s;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { background: var(--grey); }

.mobile-cta {
    margin: 12px 20px 0;
    background: var(--primary);
    color: #fff !important;
    border-radius: 12px;
    text-align: center;
    border-bottom: none !important;
}

.mobile-cta:hover { background: var(--primary-h) !important; }


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */

/* Touch target mínimo para botões */
.btn, .btn-cart, .btn-form,
.btn-slide-primary, .btn-slide-ghost, .btn-slide-gold, .btn-slide-ghost-digital,
.btn-primary-light, .btn-wpp, .btn-help-outline {
    min-height: 44px;
}

@media (min-width: 768px) {
    nav { display: flex; }
}

/* Tablet */
@media (max-width: 900px) {
    /* Em viewports estreitas a seta ainda invade a coluna 92vw — dots bastam */
    .hero-slider .slider-arrow {
        display: none;
    }
    .profiles-grid { grid-template-columns: repeat(2, 1fr); }
    .profile-card--clean .profile-img-wrap { height: 260px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .help-inner { grid-template-columns: 1fr; }
    .help-visual img { height: auto; max-height: 280px; }
    .wizard-wrap { grid-template-columns: 1fr; }
    .wizard-sidebar { position: static; }
    .dashboard-wrap { grid-template-columns: 1fr; }
    .trust-inner { overflow-x: auto; justify-content: flex-start; -webkit-overflow-scrolling: touch; }
    .how-steps { gap: 12px; }
    .how-divider { display: none; }
    .how-step { min-width: 120px; }
}

/* Mobile */
@media (max-width: 767px) {
    .hamburger { display: flex; }
    .nav-hide-mobile { display: none; }
    .topbar { position: sticky; }

    .nav-wrap { padding: 12px 0; gap: 12px; }
    .hero-slider { height: 440px; }
    .slide-content { padding-bottom: 72px; max-width: 100%; }
    .slide-content h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .slide-content p { font-size: .9rem; }

    .section-profiles,
    .section-how,
    .section-testimonials,
    .section-help { padding: 56px 0; }

    .profiles-grid { grid-template-columns: 1fr; }
    .profile-img-wrap { height: 280px; }
    .profile-card--clean .profile-img-wrap { height: 300px; }

    .how-step { min-width: 100px; max-width: 100%; flex: 0 0 calc(50% - 12px); }

    .testimonials-grid { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand-desc { max-width: 100%; }

    .page-title { font-size: 1.5rem; }
    .page-subtitle { font-size: .9rem; }
    .card { padding: 20px; }

    .wizard-wrap { grid-template-columns: 1fr; }
    .dashboard-wrap { grid-template-columns: 1fr; }

    .cart-row { flex-direction: column; align-items: flex-start; gap: 10px; }
    .order-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Small mobile */
@media (max-width: 480px) {
    .trust-inner span { padding: 10px 14px; font-size: .72rem; }
    .slider-arrow { display: none; }
    .slide-content { padding-bottom: 60px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .nav-actions { gap: 6px; }
    .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
}
