/* =====================================================================
   BEAUTY SKIN — Design System
   Paleta sage + dourado · Cormorant Garamond + Inter
   Arquivo único compartilhado por todas as páginas do e-commerce.
   ===================================================================== */

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

:root {
    /* ----- Cores (paleta sage + dourado) ----- */
    --bg: #EBF1E5;
    --bg-elevated: #F4F8F0;
    --bg-card: #FFFFFF;
    --bg-hover: #E0E8D7;
    --green: #5E7E50;
    --green-light: #7A9E6D;
    --green-muted: #4A6340;
    --gold: #C9A86C;
    --gold-light: #E5DCC0;
    --gold-muted: #8A7A55;
    --text: #1E2A18;
    --text-secondary: #4A6340;
    --text-dim: #5E7150;
    --border: rgba(74,99,64,0.20);
    --border-light: rgba(74,99,64,0.10);
    --shadow-soft: 0 4px 24px rgba(46,64,40,0.10);
    --shadow-medium: 0 8px 40px rgba(46,64,40,0.14);
    --shadow-gold: 0 12px 40px rgba(201,168,108,0.16);

    /* ----- Tipografia ----- */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: -0.01em;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--text);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: 0.01em;
}

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

/* ----- Containers ----- */
.bs-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.bs-narrow { max-width: 820px; margin: 0 auto; padding: 0 40px; }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
em { font-style: italic; }

.label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-muted);
    padding: 6px 16px;
    border-radius: 100px;
}

.section-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--green-muted), var(--gold));
    margin: 0 auto;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 300; margin-top: 16px; }
.section-head p { margin-top: 14px; color: var(--text-secondary); font-weight: 300; }
.section-head .section-divider { margin-top: 18px; }

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
    color: #1E2A18;
    box-shadow: 0 4px 20px rgba(201,168,108,0.25);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,108,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--gold-muted);
}
.btn-outline:hover { background: var(--bg-hover); border-color: var(--gold); }
.btn-lg { padding: 18px 44px; font-size: 15px; }
.btn-sm { padding: 10px 22px; font-size: 12px; }
.btn-block { width: 100%; }
.btn-arrow::after { content: '→'; font-size: 1.05em; transition: transform 0.3s; margin-left: 2px; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ===== BARRA DE PROMOÇÃO (topo, acima do menu) ===== */
.promo-bar {
    position: relative;
    z-index: 110;
    background: linear-gradient(135deg, var(--green-muted) 0%, var(--green) 100%);
    color: #F4F8F0;
    text-align: center;
    font-size: 12.5px;
    font-weight: 400;
    letter-spacing: 0.02em;
    padding: 9px 16px;
}
.promo-bar strong { font-weight: 600; color: var(--gold-light); }
.promo-bar .promo-code {
    display: inline-block;
    border: 1px dashed var(--gold-light);
    border-radius: 6px;
    padding: 1px 8px;
    margin-left: 4px;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
}

/* ===== NAVEGAÇÃO ===== */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(244,248,240,0.86);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.nav.scrolled {
    padding: 12px 0;
    background: rgba(244,248,240,0.95);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu a.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: var(--transition);
}
.nav-menu a.nav-link:hover { color: var(--gold); }
.nav-cta-wrap { display: flex; align-items: center; gap: 20px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 24px; color: var(--text); }

/* ===== HERO / BANNER FLUTUANTE (texto por cima da imagem) ===== */
.hero { padding: 22px 22px 4px; background: var(--bg); }
.hero-banner {
    position: relative;
    isolation: isolate;
    max-width: 1280px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: clamp(440px, 60vh, 620px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 70px rgba(46,64,40,0.22);
}
.hero-banner .hero-bg {
    position: absolute; inset: 0; z-index: -2;
    width: 100%; height: 100%;
    object-fit: cover; object-position: 62% center;
}
/* Véu para o texto ler bem sobre a imagem clara (tom verde da marca) */
.hero-banner::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(180deg, rgba(30,42,24,0.34) 0%, rgba(30,42,24,0.12) 38%, rgba(30,42,24,0.60) 100%),
        radial-gradient(ellipse at 50% 52%, rgba(30,42,24,0.34) 0%, transparent 66%);
}
/* Moldura dourada interna sutil */
.hero-banner::after {
    content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    border-radius: var(--radius-xl);
    box-shadow: inset 0 0 0 1px rgba(229,220,192,0.45);
}
.hero-banner-content {
    position: relative; z-index: 1; text-align: center;
    max-width: 760px; padding: 64px 32px; color: #F7F4EC;
}
.hero-banner-content .label {
    color: var(--gold-light);
    border-color: rgba(229,220,192,0.65);
    background: rgba(30,42,24,0.28);
    backdrop-filter: blur(4px);
}
.hero-banner-content h1 {
    color: #FFFFFF;
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 300; line-height: 1.02; letter-spacing: -0.02em;
    margin: 22px 0 16px;
    text-shadow: 0 2px 34px rgba(0,0,0,0.45);
}
.hero-banner-content h1 em { color: var(--gold-light); font-style: italic; }
.hero-banner-content p {
    font-size: 16.5px; color: #F1EFE6; font-weight: 300;
    max-width: 520px; margin: 0 auto 32px;
    text-shadow: 0 1px 18px rgba(0,0,0,0.55);
}
.hero-banner-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-banner .btn-outline {
    color: #fff; border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08); backdrop-filter: blur(4px);
}
.hero-banner .btn-outline:hover { background: rgba(255,255,255,0.18); border-color: #fff; }
.hero-badge {
    position: absolute; bottom: 18px; right: 18px; z-index: 2;
    background: rgba(244,248,240,0.92);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 15px;
    display: flex; align-items: center; gap: 10px;
}
.hero-badge .stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; }
.hero-badge strong { font-size: 13px; font-weight: 600; color: var(--text); }
.hero-badge span { font-size: 11px; color: var(--text-dim); display: block; }

/* ===== TRUST BAR ===== */
.trust-bar {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 36px;
    padding: 30px 40px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon {
    width: 42px; height: 42px; border-radius: 11px;
    background: var(--bg-card); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.trust-text strong { display: block; font-size: 13px; font-weight: 600; letter-spacing: -0.01em; }
.trust-text span { font-size: 11px; color: var(--text-dim); font-weight: 300; }

/* ===== SEÇÕES GENÉRICAS ===== */
section.block { padding: 84px 0; }
section.block.alt { background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ===== COMO FUNCIONA (steps) ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 32px 26px; position: relative;
}
.step-num {
    font-family: var(--font-display); font-size: 40px; color: var(--gold);
    font-weight: 300; line-height: 1; margin-bottom: 10px;
}
.step-card h3 { font-size: 21px; margin-bottom: 8px; }
.step-card p { font-size: 13.5px; color: var(--text-dim); font-weight: 300; }

/* ===== BENEFÍCIOS ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.benefit-card { text-align: center; padding: 28px 22px; }
.benefit-icon {
    width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 16px;
    background: var(--bg-card); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.benefit-card h3 { font-size: 20px; margin-bottom: 8px; }
.benefit-card p { font-size: 13.5px; color: var(--text-dim); font-weight: 300; max-width: 300px; margin: 0 auto; }

/* ===== KITS (cards de produto / e-commerce) ===== */
.kits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    align-items: stretch;
}
.kit-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: var(--transition);
}
.kit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-gold); border-color: var(--gold-muted); }
.kit-card.featured { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.kit-card.featured::after {
    content: 'MAIS VENDIDO';
    position: absolute; top: 14px; right: -34px; z-index: 3;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
    color: #1E2A18; font-size: 9.5px; font-weight: 700; letter-spacing: 0.12em;
    padding: 5px 40px; transform: rotate(45deg);
}
/* Imagem / mídia do kit — placeholder elegante até subir foto real do produto */
.kit-media {
    position: relative;
    aspect-ratio: 4/3;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(201,168,108,0.18) 0%, transparent 60%),
        linear-gradient(160deg, #EFF4EA 0%, #E0E8D7 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}
.kit-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.kit-media-icon { font-size: 46px; opacity: 0.5; }
.kit-media-tier {
    font-family: var(--font-display); font-size: 15px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold-muted); margin-top: 6px;
}
.kit-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.kit-name { font-size: 24px; margin-bottom: 4px; }
.kit-tagline { font-size: 12.5px; color: var(--text-dim); font-weight: 300; margin-bottom: 18px; min-height: 34px; }
.kit-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.kit-price { font-family: var(--font-display); font-size: 42px; font-weight: 400; color: var(--gold); line-height: 1; }
.kit-price small { font-size: 18px; }
.kit-price-old { font-size: 15px; color: var(--text-dim); text-decoration: line-through; opacity: 0.7; }
.kit-installments { font-size: 12px; color: var(--text-dim); margin-bottom: 18px; }
.kit-includes { list-style: none; margin: 0 0 22px; flex: 1; }
.kit-includes li {
    display: flex; gap: 9px; align-items: flex-start;
    font-size: 13px; color: var(--text-secondary); font-weight: 300; padding: 5px 0;
    border-bottom: 1px solid var(--border-light);
}
.kit-includes li:last-child { border-bottom: none; }
.kit-includes li::before { content: '✓'; color: var(--gold); font-weight: 600; flex-shrink: 0; }
.kit-card .btn { margin-top: auto; }

/* ===== DEPOIMENTOS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.t-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 28px; transition: var(--transition);
}
.t-card:hover { border-color: var(--gold-muted); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.t-stars { color: var(--gold); font-size: 13px; letter-spacing: 3px; margin-bottom: 14px; }
.t-card blockquote {
    font-family: var(--font-display); font-size: 16px; color: var(--text-secondary);
    line-height: 1.6; margin-bottom: 18px; font-style: italic; font-weight: 300;
}
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar {
    width: 38px; height: 38px; border-radius: 50%; background: var(--bg-hover);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 600; color: var(--green-muted);
}
.t-name { font-size: 13px; font-weight: 600; }
.t-info { font-size: 11px; color: var(--text-dim); font-weight: 300; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    font-family: var(--font-body); font-size: 16px; font-weight: 500; color: var(--text);
    padding: 22px 40px 22px 0; position: relative; letter-spacing: -0.01em;
}
.faq-q::after { content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--gold); transition: var(--transition); }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 0 22px; color: var(--text-dim); font-size: 14px; font-weight: 300; }

/* ===== GARANTIA ===== */
.guarantee-box {
    background: linear-gradient(135deg, rgba(122,158,109,0.08) 0%, rgba(201,168,108,0.08) 100%);
    border: 1px solid var(--gold-muted);
    border-radius: var(--radius-xl);
    padding: 48px; text-align: center; max-width: 640px; margin: 0 auto;
}
.guarantee-box .g-icon { font-size: 38px; margin-bottom: 14px; }
.guarantee-box h3 { font-size: 28px; margin-bottom: 10px; }
.guarantee-box p { font-size: 14px; color: var(--text-secondary); font-weight: 300; max-width: 460px; margin: 0 auto; }

/* ===== CTA FINAL ===== */
.cta-final { padding: 96px 0; background: linear-gradient(170deg, #E4EDDC 0%, #EBF1E5 50%, #F4F8F0 100%); text-align: center; }
.cta-final h2 { font-size: clamp(32px, 4vw, 50px); font-weight: 300; }
.cta-final p { max-width: 520px; margin: 14px auto 0; color: var(--text-secondary); font-weight: 300; }

/* ===== FOOTER ===== */
.footer { padding: 56px 0 40px; background: var(--bg-elevated); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-logo { font-family: var(--font-display); font-size: 24px; font-weight: 500; letter-spacing: 0.02em; margin-bottom: 10px; }
.footer-logo span { color: var(--gold); }
.footer-col h4 { font-family: var(--font-body); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-dim); margin-bottom: 14px; font-weight: 600; }
.footer-col p, .footer-col a { font-size: 13px; color: var(--text-dim); font-weight: 300; text-decoration: none; display: block; margin-bottom: 8px; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; font-size: 11.5px; color: var(--text-dim); font-weight: 300; }
.footer-disclaimer { max-width: 760px; margin: 0 auto 12px; font-size: 11px; opacity: 0.7; line-height: 1.6; }

/* ===== WHATSAPP FLUTUANTE ===== */
.wa-float {
    position: fixed; right: 24px; bottom: 24px; z-index: 90;
    width: 58px; height: 58px; border-radius: 50%; background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25); text-decoration: none;
    transition: transform 0.25s ease; animation: waPulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes waPulse {
    0% { box-shadow: 0 4px 14px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.45); }
    70% { box-shadow: 0 4px 14px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 4px 14px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== BADGE DO CARRINHO (header) ===== */
.cart-link {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    color: var(--text-dim); text-decoration: none;
    border: 1px solid var(--border); background: var(--bg-card);
    transition: var(--transition);
}
.cart-link:hover { color: var(--gold); border-color: var(--gold-muted); }
.cart-link svg { width: 19px; height: 19px; }
.cart-badge {
    position: absolute; top: -6px; right: -6px;
    min-width: 18px; height: 18px; padding: 0 5px; border-radius: 100px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
    color: #1E2A18; font-size: 10px; font-weight: 700; line-height: 18px;
    text-align: center; box-shadow: 0 2px 8px rgba(201,168,108,0.4);
}
.cart-badge.is-empty { display: none; }

/* ===== SEÇÃO DE VÍDEO (home / explainer) ===== */
.video-wrap {
    max-width: 880px; margin: 0 auto;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: 0 20px 60px rgba(46,64,40,0.20);
    border: 1px solid var(--gold-muted); background: #1E2A18;
    aspect-ratio: 16/9;
}
.video-wrap video { width: 100%; height: 100%; display: block; object-fit: cover; background: #1E2A18; }

/* ===== ANTES / DEPOIS ===== */
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.ba-item {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-md); overflow: hidden; transition: var(--transition);
}
.ba-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); border-color: var(--gold-muted); }
.ba-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.ba-item figcaption { padding: 12px 16px; font-size: 12.5px; color: var(--text-dim); font-weight: 300; }

/* ===== PÁGINA DE DETALHE DO KIT ===== */
.kit-detail { padding: 48px 0 84px; }
.kit-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.kit-gallery-main {
    border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
    background: linear-gradient(160deg, #EFF4EA 0%, #E0E8D7 100%);
    aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
}
.kit-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.kit-gallery-main .kit-media-icon { font-size: 64px; opacity: 0.45; }
.kit-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.kit-thumb {
    width: 72px; height: 72px; border-radius: 12px; overflow: hidden; cursor: pointer;
    border: 1px solid var(--border); background: var(--bg-card); padding: 0; transition: var(--transition);
}
.kit-thumb.active { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(201,168,108,0.3); }
.kit-thumb img { width: 100%; height: 100%; object-fit: cover; }
.kit-detail-info .kit-detail-tier {
    font-family: var(--font-body); font-size: 10px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: inline-block;
}
.kit-detail-info h1 { font-size: clamp(30px, 4vw, 46px); font-weight: 300; line-height: 1.05; margin-bottom: 10px; }
.kit-detail-info .focus { color: var(--text-secondary); font-weight: 300; margin-bottom: 20px; }
.kit-detail-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.kit-detail-price .now { font-family: var(--font-display); font-size: 48px; font-weight: 400; color: var(--gold); line-height: 1; }
.kit-detail-price .old { font-size: 17px; color: var(--text-dim); text-decoration: line-through; opacity: 0.7; }
.kit-detail-desc { color: var(--text-secondary); font-weight: 300; margin: 18px 0 24px; }
.kit-detail-actions { display: flex; flex-direction: column; gap: 12px; max-width: 420px; }
.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 4px; }
.qty-control { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 100px; overflow: hidden; background: var(--bg-card); }
.qty-control button { width: 40px; height: 42px; border: none; background: none; font-size: 18px; cursor: pointer; color: var(--text); }
.qty-control button:hover { color: var(--gold); }
.qty-control input { width: 44px; height: 42px; border: none; text-align: center; font-family: var(--font-body); font-size: 15px; background: none; color: var(--text); -moz-appearance: textfield; }
.qty-control input::-webkit-outer-spin-button, .qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.kit-includes-detail { list-style: none; margin: 28px 0 0; }
.kit-includes-detail li {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 14px; color: var(--text-secondary); font-weight: 300; padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}
.kit-includes-detail li::before { content: '✓'; color: var(--gold); font-weight: 600; flex-shrink: 0; }
.kit-includes-detail .role { color: var(--text-dim); font-size: 12.5px; }

/* ===== CARRINHO ===== */
.cart-page { padding: 48px 0 84px; min-height: 50vh; }
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-item {
    display: grid; grid-template-columns: 88px 1fr auto; gap: 16px; align-items: center;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px;
}
.cart-item-img { width: 88px; height: 88px; border-radius: 12px; overflow: hidden; background: linear-gradient(160deg,#EFF4EA 0%,#E0E8D7 100%); display:flex; align-items:center; justify-content:center; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-img .ph { font-size: 28px; opacity: 0.4; }
.cart-item-name { font-family: var(--font-display); font-size: 20px; }
.cart-item-price { font-size: 13px; color: var(--text-dim); margin-top: 2px; }
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cart-item-total { font-family: var(--font-display); font-size: 22px; color: var(--gold); }
.cart-remove { background: none; border: none; cursor: pointer; font-size: 12px; color: var(--text-dim); text-decoration: underline; }
.cart-remove:hover { color: #a14242; }
.cart-summary {
    background: var(--bg-card); border: 1px solid var(--gold-muted); border-radius: var(--radius-lg);
    padding: 28px; position: sticky; top: 96px;
}
.cart-summary h3 { font-size: 22px; margin-bottom: 18px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-secondary); padding: 8px 0; }
.cart-summary-row.total { border-top: 1px solid var(--border); margin-top: 8px; padding-top: 16px; font-size: 18px; color: var(--text); font-weight: 500; }
.cart-summary-row.total span:last-child { font-family: var(--font-display); font-size: 28px; color: var(--gold); }
.cart-coupon { display: flex; gap: 8px; margin: 16px 0; }
.cart-coupon input { flex: 1; padding: 12px 16px; border: 1px solid var(--border); border-radius: 100px; font-family: var(--font-body); font-size: 13px; background: var(--bg-elevated); color: var(--text); }
.cart-coupon button { padding: 12px 20px; border-radius: 100px; border: 1px solid var(--gold-muted); background: var(--bg-elevated); cursor: pointer; font-size: 13px; color: var(--text); }
.cart-coupon button:hover { border-color: var(--gold); color: var(--gold); }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty h2 { font-size: 32px; font-weight: 300; margin-bottom: 12px; }
.cart-empty p { color: var(--text-dim); margin-bottom: 26px; }
.checkout-note { font-size: 11.5px; color: var(--text-dim); text-align: center; margin-top: 14px; font-weight: 300; }
.checkout-error { color: #a14242; font-size: 13px; margin-top: 12px; text-align: center; }

/* ===== STATUS (sucesso / cancelado) ===== */
.status-page { padding: 90px 0 100px; min-height: 60vh; display: flex; align-items: center; }
.status-box { max-width: 600px; margin: 0 auto; text-align: center; }
.status-icon { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; font-size: 40px; }
.status-icon.ok { background: linear-gradient(135deg, rgba(122,158,109,0.18), rgba(201,168,108,0.18)); border: 1px solid var(--gold-muted); }
.status-icon.cancel { background: var(--bg-elevated); border: 1px solid var(--border); }
.status-box h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 300; margin-bottom: 14px; }
.status-box p { color: var(--text-secondary); font-weight: 300; margin-bottom: 8px; }
.status-order { display: inline-block; margin: 18px 0 10px; padding: 12px 28px; border: 1px dashed var(--gold-muted); border-radius: 12px; font-family: var(--font-display); font-size: 24px; color: var(--gold); }
.status-actions { margin-top: 30px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== ANIMAÇÕES ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .fade-in { opacity: 1; transform: none; transition: none; }
    .wa-float { animation: none; }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
    .steps-grid, .benefits-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .bs-container, .bs-narrow { padding: 0 22px; }
    .nav-inner { padding: 0 22px; }
    .nav-menu { display: none; }
    .nav-menu.open {
        display: flex; flex-direction: column; gap: 18px;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(244,248,240,0.98); padding: 24px; border-bottom: 1px solid var(--border);
    }
    .nav-toggle { display: block; }
    .hero { padding: 12px 12px 4px; }
    .hero-banner { border-radius: var(--radius-lg); min-height: 420px; }
    .hero-banner-content { padding: 48px 24px; }
    .hero-badge { left: 12px; right: 12px; bottom: 12px; justify-content: center; }
    .steps-grid, .benefits-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    section.block { padding: 60px 0; }
    .guarantee-box { padding: 36px 24px; }
    .btn-lg { width: 100%; }
    .kit-detail-grid { grid-template-columns: 1fr; gap: 28px; }
    .cart-layout { grid-template-columns: 1fr; gap: 24px; }
    .cart-summary { position: static; }
    .cart-item { grid-template-columns: 64px 1fr; }
    .cart-item-right { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
    .cart-item-img { width: 64px; height: 64px; }
}
@supports (padding: max(0px)) {
    @media (max-width: 768px) { .wa-float { bottom: max(22px, env(safe-area-inset-bottom)); } }
}

/* =====================================================================
   PREMIUM v2 (jun/2026) — reviews compactos+masonry, antes/depois premium,
   hero/kit refinados, placeholder de vídeo, mobile. (overrides do bloco acima)
   ===================================================================== */

/* ----- HERO refino ----- */
.hero { padding: 26px 26px 6px; }
.hero-banner { min-height: clamp(480px, 64vh, 660px); border-radius: 28px; }
.hero-banner::before {
  background:
    linear-gradient(180deg, rgba(30,42,24,0.30) 0%, rgba(30,42,24,0.10) 42%, rgba(30,42,24,0.66) 100%),
    radial-gradient(ellipse at 50% 58%, rgba(30,42,24,0.28) 0%, transparent 70%);
}
.hero-banner-content { max-width: 800px; padding: 72px 36px; }
.hero-banner-content .label { letter-spacing: 0.18em; padding: 7px 18px; }
.hero-banner-content h1 { font-weight: 300; letter-spacing: -0.025em; margin: 26px 0 18px; }
.hero-banner-content h1 em { font-weight: 400; }
.hero-banner-content p { font-size: 17px; line-height: 1.7; }
.hero-badge { border-radius: 100px; padding: 9px 16px 9px 15px; gap: 12px; background: rgba(244,248,240,0.9); }
.hero-badge .stars { font-size: 13px; }

/* ----- REVIEWS: masonry compacto com foto ----- */
.testimonials-grid { display: block; column-count: 3; column-gap: 22px; }
.testimonials-grid .t-card {
  break-inside: avoid; -webkit-column-break-inside: avoid; overflow: hidden;
  width: 100%; margin: 0 0 22px; padding: 22px; display: block;
  opacity: 1 !important; transform: none !important;
}
.t-card .t-photo { margin: -22px -22px 16px; }
.t-card .t-photo img {
  width: 100%; display: block; aspect-ratio: 1/1; object-fit: cover;
  border-top-left-radius: var(--radius-md); border-top-right-radius: var(--radius-md);
}
.t-card .t-stars { margin-bottom: 10px; }
.t-card .t-rtitle { display:block; font-weight:600; font-size:14px; color:var(--text); margin-bottom:7px; letter-spacing:-0.01em; }
.t-card .t-msg {
  font-family: var(--font-body); font-size: 13.5px; line-height: 1.62;
  color: var(--text-secondary); font-weight: 300; margin: 0 0 16px;
  display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden;
}
.t-card .t-author { gap: 11px; }
.t-card .t-avatar { width: 34px; height: 34px; font-size: 13px; }
.reviews-cta { text-align:center; margin-top: 14px; }

/* ----- ANTES / DEPOIS premium ----- */
.ba-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ba-item {
  position: relative; border-radius: var(--radius-lg); border: 1px solid var(--gold-muted);
  box-shadow: var(--shadow-soft); overflow: hidden;
}
.ba-item::after {
  content: 'Resultado real'; position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(244,248,240,0.92); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: var(--green-muted); font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 11px; border-radius: 100px; border: 1px solid var(--border);
}
.ba-item img { aspect-ratio: 1/1; transition: transform 0.5s ease; }
.ba-item:hover img { transform: scale(1.04); }
.ba-item figcaption { display: none; }

/* ----- VÍDEO placeholder (sem vídeo da Qure; aguarda vídeo do Paulo) ----- */
.video-ph { position: relative; }
.video-ph > img { width: 100%; height: 100%; object-fit: cover; display:block; filter: saturate(1.02); }
.video-ph .video-ph-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; background: linear-gradient(180deg, rgba(30,42,24,0.30), rgba(30,42,24,0.55)); color: #F4F1E9; text-align: center;
}
.video-ph .vp-play { width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-muted)); display:flex; align-items:center; justify-content:center; font-size: 26px; color:#1E2A18; box-shadow: 0 10px 30px rgba(201,168,108,0.4); }
.video-ph .vp-label { font-size: 13px; letter-spacing: 0.04em; background: rgba(30,42,24,0.5); padding: 7px 18px; border-radius: 100px; border: 1px solid rgba(229,220,192,0.45); }

/* ----- KIT DETALHE premium ----- */
.kit-gallery-main { border: 1px solid var(--gold-muted); box-shadow: var(--shadow-medium); aspect-ratio: 4/5; }
.kit-detail-price .now { font-size: 52px; }
.kit-detail-trust { display:flex; gap:18px; flex-wrap:wrap; margin: 20px 0 2px; padding-top: 18px; border-top: 1px solid var(--border-light); }
.kit-detail-trust span { font-size: 12px; color: var(--text-dim); display:flex; align-items:center; gap:6px; }

/* ----- MOBILE ----- */
@media (max-width: 1024px) {
  .testimonials-grid { column-count: 2; }
  .ba-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hero { padding: 14px 14px 4px; }
  .hero-banner { min-height: 560px; border-radius: 22px; }
  .hero-banner .hero-bg { object-position: 66% center; }
  .hero-banner-content { padding: 44px 22px; }
  .hero-banner-content h1 { font-size: clamp(32px, 9vw, 44px); margin: 18px 0 14px; }
  .hero-banner-content p { font-size: 15px; }
  .hero-banner-actions { flex-direction: column; width: 100%; }
  .hero-banner-actions .btn { width: 100%; }
  .hero-badge { left: 12px; right: 12px; bottom: 12px; justify-content: center; }
  .testimonials-grid { column-count: 1; max-width: 460px; margin: 0 auto; }
  .ba-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ba-item::after { font-size: 8px; padding: 3px 8px; }
  .section-head { margin-bottom: 30px; }
  .section-head h2 { font-size: clamp(28px, 7vw, 38px); }
  .kit-detail-price .now { font-size: 42px; }
  .kit-thumb { width: 58px; height: 58px; }
  .promo-bar { font-size: 11px; line-height: 1.4; }
  .nav-logo { font-size: 22px; }
  .trust-bar { gap: 18px 28px; padding: 22px; }
}

/* =====================================================================
   CARD "Resultado em Foco" (benefício protagonista) — vencedor + enxertos
   (mobile-first; o último vence sobre .kit-card antigo)
   ===================================================================== */
.bk-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  height: 100%;
}
.bk-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-muted);
}
.bk-card--featured { border-color: var(--gold); box-shadow: var(--shadow-gold); }

/* mídia (capa) com tratamento editorial */
.bk-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #EBF1E5 0%, #F6F2E7 100%);
  overflow: hidden;
}
.bk-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.bk-card:hover .bk-img { transform: scale(1.04); }

/* véu/gradiente sutil sobre a foto (premium) */
.bk-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(30,42,24,0) 38%, rgba(30,42,24,0.42) 100%);
}
/* focus em caps-dourado discreto no topo */
.bk-eyebrow {
  position: absolute; left: 14px; bottom: 12px; right: 14px; z-index: 2;
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 700;
  text-shadow: 0 1px 6px rgba(30,42,24,.55);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.bk-img-fallback {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  font-family: var(--font-display); font-size: 56px; color: var(--gold);
}
.bk-img-fallback small {
  font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-muted); font-weight: 600;
}

/* selos (mutuamente exclusivos) */
.bk-ribbon {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 11px; border-radius: 999px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .02em;
  box-shadow: 0 4px 12px rgba(46,64,40,.18);
}
.bk-ribbon--best { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%); color: #fff; }
.bk-ribbon--deal { background: #1E2A18; color: var(--gold-light); }

/* corpo */
.bk-body { display: flex; flex-direction: column; gap: 10px; padding: 18px 18px 20px; flex: 1; }

.bk-social { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gold); }
.bk-social span { color: var(--text-dim); font-weight: 500; letter-spacing: .01em; }

/* benefício = protagonista */
.bk-benefit {
  font-family: var(--font-display);
  font-size: 25px; line-height: 1.12; color: var(--text);
  margin: 2px 0 0; font-weight: 600;
}
.bk-kit { font-size: 12.5px; color: var(--text-dim); margin: -4px 0 0; letter-spacing: .01em; }
.bk-kit em { color: var(--gold-muted); font-style: italic; }
.bk-desc {
  font-size: 12.5px; line-height: 1.5; color: var(--text-secondary); font-weight: 300;
  margin: 2px 0 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* preço de/por + economia */
.bk-price-wrap { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 4px; }
.bk-price-col { display: flex; flex-direction: column; line-height: 1; }
.bk-old { font-size: 12.5px; color: var(--text-dim); text-decoration: line-through; opacity: .75; margin-bottom: 2px; }
.bk-price { font-family: var(--font-display); font-size: 38px; font-weight: 600; color: var(--gold); line-height: .95; }
.bk-save {
  font-size: 11px; font-weight: 700; color: #1E2A18;
  background: var(--gold-light); border-radius: 999px;
  padding: 5px 10px; white-space: nowrap;
}

/* CTA com brilho deslizante dourado no hover */
.bk-cta { margin-top: 6px; font-weight: 600; position: relative; overflow: hidden; }
.bk-cta .bk-cta-label { position: relative; z-index: 1; }
.bk-cta::before {
  content: ''; position: absolute; top: 0; left: -130%; z-index: 0;
  width: 70%; height: 100%;
  background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.55) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-18deg);
  pointer-events: none;
}
.bk-card:hover .bk-cta::before,
.bk-cta:hover::before,
.bk-cta:focus-visible::before { animation: bk-shine .85s ease forwards; }
@keyframes bk-shine { from { left: -130%; } to { left: 140%; } }

.bk-details { font-size: 13px; margin-top: 2px; }

/* microcopy de confiança em 1 linha enxuta */
.bk-trust {
  margin: 8px 0 0; padding: 0;
  font-size: 11px; line-height: 1.5; color: var(--text-dim); font-weight: 300;
  text-align: center;
}
.bk-trust strong { color: var(--gold-muted); font-weight: 700; }

/* mobile-first: compactar em telas estreitas */
@media (max-width: 360px) {
  .bk-benefit { font-size: 22px; }
  .bk-price { font-size: 34px; }
  .bk-body { padding: 16px 14px 18px; }
}
/* desktop: ainda mais elegante */
@media (min-width: 640px) {
  .bk-benefit { font-size: 27px; }
}

/* acessibilidade: respeita prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .bk-card, .bk-img { transition: none; }
  .bk-cta::before { display: none; }
  .bk-card:hover .bk-cta::before,
  .bk-cta:hover::before,
  .bk-cta:focus-visible::before { animation: none; }
}

/* =====================================================================
   CARROSSEL ANTES/DEPOIS (premium, dourado) — UMA imagem por vez
   altura controlada via aspect-ratio 900/793 + max-width
   ===================================================================== */
.ba-carousel {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  outline: none;
}
.ba-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.ba-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.ba-slide {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ba-frame {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-light);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(135deg, #EBF1E5 0%, #F6F2E7 100%);
}
.ba-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 900 / 793;
  object-fit: cover;
}
/* selo "Resultado real" */
.ba-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 6px 12px; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
  color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .04em;
  box-shadow: 0 4px 12px rgba(46,64,40,.20);
}
/* legenda discreta */
.ba-cap {
  margin: 12px 6px 0;
  text-align: center;
  font-size: 12.5px; line-height: 1.45;
  color: var(--text-dim); font-weight: 300;
}

/* setas */
.ba-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-light);
  background: rgba(255,255,255,.92);
  color: var(--gold-muted);
  font-size: 26px; line-height: 1; font-family: var(--font-display);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.ba-arrow:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
  color: #fff;
  border-color: var(--gold);
}
.ba-arrow:active { transform: translateY(-50%) scale(.94); }
.ba-arrow--prev { left: -8px; }
.ba-arrow--next { right: -8px; }

/* dots */
.ba-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 16px;
}
.ba-dot {
  width: 9px; height: 9px; border-radius: 50%; padding: 0;
  border: 1px solid var(--gold-muted);
  background: transparent; cursor: pointer;
  transition: background .25s ease, transform .25s ease, width .25s ease;
}
.ba-dot:hover { background: var(--gold-light); }
.ba-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  width: 22px; border-radius: 999px;
}

/* single (sem setas/dots) */
.ba-carousel--single .ba-viewport { border-radius: var(--radius-lg); }

@media (max-width: 540px) {
  .ba-arrow { width: 36px; height: 36px; font-size: 22px; }
  .ba-arrow--prev { left: 2px; }
  .ba-arrow--next { right: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  .ba-track { transition: none; }
  .ba-arrow, .ba-dot { transition: none; }
}

/* =====================================================================
   v3 (jun/2026): Antes/Depois 3-por-vez + dourado brilhante + anti-overflow
   ===================================================================== */

/* ---- DOURADO mais aceso/brilhante nos botões ---- */
.btn-gold {
  background: linear-gradient(135deg, #F6D885 0%, #E3BB60 46%, #C99A45 100%);
  color: #2A2110;
  box-shadow: 0 4px 18px rgba(214,168,79,0.42), inset 0 1px 0 rgba(255,255,255,0.45);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #FFE7A0 0%, #EFCB72 46%, #D8AA50 100%);
  box-shadow: 0 8px 28px rgba(214,168,79,0.55), inset 0 1px 0 rgba(255,255,255,0.55);
  transform: translateY(-2px);
}

/* ---- Antes/Depois: 3 por vez (desktop), 2 (tablet), 1 (mobile), desliza 1 a 1 ---- */
.ba-carousel { max-width: 1160px; padding: 0 46px; }
.ba-viewport { overflow: hidden; border-radius: 0; }
.ba-track { display: flex; gap: 22px; }
.ba-slide { flex: 0 0 calc((100% - 44px) / 3); min-width: 0; }
.ba-frame { max-width: none; margin: 0; }
.ba-frame img { aspect-ratio: 900 / 793; }
.ba-arrow--prev { left: 0; }
.ba-arrow--next { right: 0; }

@media (max-width: 1024px) {
  .ba-carousel { padding: 0 42px; max-width: 760px; }
  .ba-slide { flex: 0 0 calc((100% - 22px) / 2); }
}
@media (max-width: 640px) {
  .ba-carousel { padding: 0 12px; max-width: 440px; }
  .ba-track { gap: 0; }
  .ba-slide { flex: 0 0 100%; }
  .ba-arrow { width: 34px; height: 34px; font-size: 22px; }
  .ba-arrow--prev { left: -4px; }
  .ba-arrow--next { right: -4px; }
}

/* ---- guarda definitiva contra scroll lateral ---- */
html { overflow-x: hidden; max-width: 100%; }
body { overflow-x: hidden; max-width: 100%; }

/* =====================================================================
   SELETOR DE IDIOMA (i18n) — pílula PT | EN | ES, on-brand
   Vive dentro da .nav-menu: no desktop fica no header,
   no mobile cai dentro do slide menu.
   ===================================================================== */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(74, 99, 64, 0.05);
  line-height: 1;
}
.lang-switch .lang-btn {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body, inherit);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  padding: 5px 10px;
  border-radius: 100px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.lang-switch .lang-btn:hover { color: var(--text); }
.lang-switch .lang-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.lang-switch .lang-btn.active {
  background: linear-gradient(135deg, #F6D885 0%, #E3BB60 46%, #C99A45 100%);
  color: #2A2110;
  box-shadow: 0 2px 8px rgba(214, 168, 79, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

/* No mobile (slide menu), o seletor fica em linha, centralizado e com respiro */
@media (max-width: 768px) {
  .nav-menu .lang-switch {
    align-self: flex-start;
    margin-top: 4px;
  }
}

/* =====================================================================
   v4 (jun/2026): seletor com BANDEIRAS + novo HERO (banner-hero-v2)
   ===================================================================== */
.lang-switch .lang-btn { display: inline-flex; align-items: center; gap: 5px; padding: 4px 9px; }
.lang-switch .lang-btn .lang-flag { font-size: 15px; line-height: 1; }
.lang-switch .lang-btn .lang-code { font-size: 10.5px; font-weight: 600; letter-spacing: .04em; }
@media (max-width: 768px) {
  .nav-menu .lang-switch { gap: 4px; padding: 4px; }
  .lang-switch .lang-btn { padding: 7px 12px; }
  .lang-switch .lang-btn .lang-flag { font-size: 17px; }
}

/* ---- HERO v2: banner-imagem auto-suficiente (sem overlay) + CTAs abaixo ---- */
.hero-v2 { padding: 22px 22px 0; background: var(--bg); }
.hero-v2 .hero-banner-img {
  display: block; max-width: 1280px; margin: 0 auto;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 30px 70px rgba(46,64,40,0.22);
  border: 1px solid rgba(229,220,192,0.55);
  transition: transform .4s ease, box-shadow .4s ease;
}
.hero-v2 .hero-banner-img:hover { box-shadow: 0 34px 80px rgba(46,64,40,0.28); }
.hero-v2 .hero-banner-img img { display: block; width: 100%; height: auto; }
.hero-v2 .hero-cta-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  max-width: 1280px; margin: 22px auto 0;
}
@media (max-width: 768px) {
  .hero-v2 { padding: 12px 12px 0; }
  .hero-v2 .hero-banner-img { border-radius: var(--radius-lg); }
  .hero-v2 .hero-cta-row { flex-direction: column; margin-top: 16px; }
  .hero-v2 .hero-cta-row .btn { width: 100%; }
}

/* =====================================================================
   v5 (jun/2026): fix sticky menu (overflow-x clip), espaçamento da hero,
   banner mobile dedicado (picture)
   ===================================================================== */

/* overflow-x: clip mata o scroll lateral SEM quebrar position:sticky do menu
   (hidden, usado antes, transformava html/body em scroll-container e quebrava o sticky) */
html, body { overflow-x: clip; }

/* garante o menu fixo durante a rolagem */
.nav { position: sticky; position: -webkit-sticky; top: 0; }

/* respiro da hero: distância entre os CTAs e a trust bar de baixo */
.hero-v2 { padding: 22px 22px 40px; }
.hero-v2 .hero-cta-row { margin-top: 26px; }
@media (max-width: 768px) {
  .hero-v2 { padding: 12px 12px 30px; }
  .hero-v2 .hero-cta-row { margin-top: 20px; }
  /* o banner mobile é quadrado — mantém proporção e cantos arredondados */
  .hero-v2 .hero-banner-img picture,
  .hero-v2 .hero-banner-img img { display: block; width: 100%; height: auto; }
}
