/* ============================================================
   EMANCIPAÇÃO NA AUTOMAQUIAGEM
   Sistema visual: Champagne-Bronze Premium
============================================================ */

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* — Paleta champagne-bronze — */
    --cream:         #F8F6F2;   /* fundo principal */
    --champagne:     #F2EFE9;   /* fundo secundário */
    --dark:          #1A1714;   /* texto / fundo escuro */
    --bronze:        #A8862E;   /* destaque dourado */
    --bronze-light:  #C9A55A;   /* bronze claro */
    --bronze-ghost:  rgba(168, 134, 46, 0.10); /* numeral fantasma */
    --line:          #E8E2D9;   /* bordas */
    --text:          #1A1714;   /* texto principal */
    --muted:         #6B5F54;   /* texto secundário */
    --white:         #FFFFFF;

    /* — Sombras — */
    --sh1: 0 2px 12px rgba(26, 23, 20, 0.06);
    --sh2: 0 6px 32px rgba(26, 23, 20, 0.10);
    --sh3: 0 24px 64px rgba(26, 23, 20, 0.14);

    /* — Geometria e tipografia — */
    --radius:       4px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', sans-serif;
    --transition:   all 0.3s ease;

    /* — Espaçamento — */
    --section-pad: clamp(80px, 12vw, 160px);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.01em;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   ANIMAÇÕES — FADE UP ON SCROLL
============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger nos grids */
.cards-grid  .fade-up:nth-child(2),
.bonus-grid  .fade-up:nth-child(2),
.depo-videos .fade-up:nth-child(2),
.depo-prints .fade-up:nth-child(2),
.dores-grid  .fade-up:nth-child(2) { transition-delay: 0.08s; }

.cards-grid  .fade-up:nth-child(3),
.bonus-grid  .fade-up:nth-child(3),
.depo-prints .fade-up:nth-child(3),
.dores-grid  .fade-up:nth-child(3) { transition-delay: 0.16s; }

.dores-grid  .fade-up:nth-child(4) { transition-delay: 0.24s; }
.dores-grid  .fade-up:nth-child(5) { transition-delay: 0.32s; }
.dores-grid  .fade-up:nth-child(6) { transition-delay: 0.40s; }

/* ============================================================
   EYEBROW LABELS (rótulos dourados acima dos títulos)
============================================================ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bronze);
    background: rgba(168, 134, 46, 0.08);
    border: 1px solid rgba(168, 134, 46, 0.28);
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 20px;
}

/* ============================================================
   BOTÕES (border-radius 4px, fundo bronze)
============================================================ */
.btn {
    display: inline-block;
    padding: 15px 32px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--bronze);
    color: var(--white);
}
.btn-primary:hover {
    background: #8A6E24;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(168, 134, 46, 0.35);
}

.btn-hero {
    background: var(--bronze);
    color: var(--white);
    font-size: 1.05rem;
    padding: 18px 40px;
}
.btn-hero:hover {
    background: #8A6E24;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 134, 46, 0.4);
}

.btn-large {
    font-size: 1.1rem;
    padding: 20px 48px;
}

/* ============================================================
   TÍTULOS DE SEÇÃO (com divisor ornamental dourado)
============================================================ */
.section-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    color: var(--text);
    text-align: center;
    margin-bottom: 0;
    font-weight: 400;
}

/* Divisor ornamental dourado */
.section-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 1.5px;
    background: linear-gradient(to right, transparent, var(--bronze), transparent);
    margin: 16px auto 64px;
}

/* ============================================================
   1. HEADER / NAV (transparente → fosco no scroll)
============================================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.5s ease,
                border-color 0.5s ease,
                backdrop-filter 0.5s ease;
}

/* Estado após scroll */
.header.scrolled {
    background: rgba(248, 246, 242, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    position: relative;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.01em;
    transition: color 0.5s;
}

.logo span {
    color: var(--bronze-light);
    font-style: italic;
    transition: color 0.5s;
}

.header.scrolled .logo {
    color: var(--text);
}
.header.scrolled .logo span {
    color: var(--bronze);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
    white-space: nowrap;
}

.header.scrolled .nav-links a {
    color: var(--muted);
}

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

.header.scrolled .nav-links a:hover {
    color: var(--bronze);
}

.nav-cta {
    background: var(--bronze) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
}
.nav-cta:hover {
    background: #8A6E24 !important;
    color: var(--white) !important;
}
.header.scrolled .nav-cta {
    color: var(--white) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 10;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.header.scrolled .hamburger span {
    background: var(--text);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   2. HERO
============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('assets/images/hero-bg.jpg') center center / cover no-repeat;
    padding-top: 68px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(20, 8, 4, 0.78) 0%,
        rgba(26, 12, 6, 0.58) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Badge genérico (hero) */
.badge {
    display: inline-block;
    background: rgba(168, 134, 46, 0.85);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    padding: 8px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    font-family: var(--font-body);
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
    letter-spacing: -0.015em;
}

.hero-sub {
    font-size: clamp(0.98rem, 2.5vw, 1.12rem);
    color: rgba(255, 255, 255, 0.87);
    margin-bottom: 40px;
    max-width: 620px;
    line-height: 1.75;
}

/* Badge sobreposto — canto inferior esquerdo do hero */
.hero-badge {
    position: absolute;
    bottom: 32px;
    left: 32px;
    z-index: 2;
    background: rgba(248, 246, 242, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 22px;
    border-radius: var(--radius);
    border-left: 2px solid var(--bronze);
    box-shadow: var(--sh2);
    max-width: 260px;
}

.hero-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
}

.hero-badge span {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero-badge { display: none; }
}

/* ============================================================
   3. PARA QUEM É (Grid editorial 2 colunas)
============================================================ */
.para-quem {
    background: var(--white);
    padding: var(--section-pad) 0;
    text-align: center;
}

.dores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    max-width: 920px;
    margin: 0 auto;
    text-align: left;
}

.dor-item {
    position: relative;
    overflow: hidden;
    padding: 40px 32px;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    transition: background 0.4s ease;
}

.dor-item:nth-child(2n) {
    border-right: none;
}

.dor-item:hover {
    background: var(--champagne);
}

/* Numeral fantasma (ghost) */
.dor-item::before {
    content: attr(data-n);
    position: absolute;
    right: 12px;
    bottom: -10px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 7.5rem;
    font-weight: 400;
    color: var(--bronze-ghost);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.dor-num {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--bronze);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
}

.dor-item p {
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--text);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* ============================================================
   4. VÍDEO (VSL)
============================================================ */
.video-section {
    background: var(--cream);
    padding: var(--section-pad) 0;
    text-align: center;
}

.video-wrapper {
    max-width: 820px;
    margin: 0 auto;
}

/* ============================================================
   MARQUEE (frases em loop)
============================================================ */
.marquee {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    background: var(--champagne);
    padding: 22px 0;
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee-scroll 40s linear infinite;
    white-space: nowrap;
    align-items: center;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--muted);
    font-weight: 400;
    display: inline-flex;
    align-items: center;
}

.marquee-item .star {
    color: var(--bronze);
    margin: 0 12px;
    font-style: normal;
    font-size: 1rem;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   5. TRANSFORMAÇÕES (numeração editorial + linha dourada)
============================================================ */
.transformacoes {
    background: var(--white);
    padding: var(--section-pad) 0;
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    text-align: left;
}

.card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px 30px;
    transition: var(--transition);
}

/* Linha dourada no topo — cresce ao hover */
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 2px;
    width: 0;
    background: var(--bronze);
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 2;
}

.card:hover::before {
    width: 100%;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh2);
    border-color: rgba(168, 134, 46, 0.28);
}

.card-foto {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
}

.card-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-foto img {
    transform: scale(1.04);
}

.card-num {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--bronze);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
}

/* Numeral fantasma nos cards */
.card::after {
    content: attr(data-n);
    position: absolute;
    right: 10px;
    bottom: -10px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 7rem;
    font-weight: 400;
    color: var(--bronze-ghost);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.card h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.card p {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* ============================================================
   6. CONTEÚDO DO CURSO (layout editorial em linhas)
============================================================ */
.conteudo {
    background: var(--champagne);
    padding: var(--section-pad) 0;
    position: relative;
    text-align: center;
}

.modulos-lista {
    max-width: 920px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
    text-align: left;
}

.modulo-item {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 40px;
    align-items: center;
    padding: 36px 0;
    border-bottom: 1px solid var(--line);
    transition: padding 0.4s ease, background 0.3s ease;
}

.modulo-item:hover {
    padding-left: 16px;
    background: rgba(168, 134, 46, 0.04);
}

.modulo-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 2.4rem;
    color: var(--bronze);
    font-weight: 400;
    line-height: 1;
    position: relative;
    z-index: 1;
}

/* Numeral fantasma nos módulos */
.modulo-item::before {
    content: attr(data-n);
    position: absolute;
    left: -10px;
    bottom: -10px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 8rem;
    font-weight: 400;
    color: var(--bronze-ghost);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.modulo-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.modulo-content p {
    font-size: 0.97rem;
    line-height: 1.65;
    color: var(--muted);
}

.modulo-img {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--cream);
}

.modulo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .modulo-item {
        grid-template-columns: 60px 1fr;
        gap: 24px;
        padding: 28px 0;
    }
    .modulo-img { display: none; }
    .modulo-num { font-size: 2rem; }
}

/* ============================================================
   7. POR DENTRO DO CURSO
============================================================ */
.por-dentro {
    background: var(--cream);
    padding: var(--section-pad) 0;
    text-align: center;
}

.por-dentro-sub {
    font-size: 1.1rem;
    color: var(--muted);
    margin-top: -44px;
    margin-bottom: 56px;
}

.por-dentro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .por-dentro-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   8. BÔNUS (fundo escuro com padrão de pontos)
============================================================ */
.bonus {
    background: var(--dark);
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Padrão de pontos dourados */
.bonus::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(168, 134, 46, 0.15) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
    z-index: 0;
}

.bonus .container {
    position: relative;
    z-index: 1;
}

.bonus .section-title {
    color: var(--white);
}

.bonus .section-title::after {
    background: linear-gradient(to right, transparent, var(--bronze-light), transparent);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(168, 134, 46, 0.22);
    border-radius: var(--radius);
    padding: 44px 28px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sh1);
    transition: var(--transition);
}

.bonus-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(168, 134, 46, 0.4);
}

/* Badge diagonal (faixa de canto) */
.bonus-badge {
    position: absolute;
    top: 18px;
    right: -26px;
    background: var(--bronze);
    color: var(--dark);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 5px 36px;
    transform: rotate(45deg);
    white-space: nowrap;
    font-family: var(--font-body);
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.bonus-foto {
    width: 100%;
    height: 180px;
    margin-bottom: 16px;
    border-radius: var(--radius);
    overflow: hidden;
}

.bonus-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bonus-card:hover .bonus-foto img {
    transform: scale(1.04);
}

.bonus-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-weight: 500;
}

.bonus-card p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    line-height: 1.75;
}

/* ============================================================
   9. DEPOIMENTOS
============================================================ */
.depoimentos {
    background: var(--white);
    padding: var(--section-pad) 0;
    text-align: center;
}

.depo-videos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
}

.depo-video-card {
    width: 100%;
    max-width: 320px;
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--sh2);
    transition: var(--transition);
}

.depo-video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh3);
}

.depo-video-card video {
    width: 100%;
    aspect-ratio: 9 / 16;
    display: block;
    background: #000;
    object-fit: cover;
}

.depo-prints {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

.depo-print-card {
    width: 100%;
    max-width: 400px;
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--sh2);
    transition: var(--transition);
}

.depo-print-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh3);
}

.depo-print-card img {
    width: 100%;
    display: block;
}

.depo-caption {
    padding: 16px 20px 18px;
    text-align: center;
}

.depo-caption strong {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    font-family: var(--font-display);
    margin-bottom: 3px;
}

.depo-caption span {
    font-size: 0.8rem;
    color: var(--muted);
}

/* ============================================================
   10. SOBRE A SALIME
============================================================ */
.sobre {
    background: var(--cream);
    padding: var(--section-pad) 0;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.sobre-foto img {
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center 15%;
    box-shadow: var(--sh2);
}

.sobre-texto h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: var(--text);
    margin-bottom: 24px;
    font-weight: 400;
}

.sobre-texto p {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 18px;
    font-size: 1rem;
}

.sobre-texto .btn {
    margin-top: 8px;
}

/* ============================================================
   11. INVESTIMENTO
============================================================ */
.investimento {
    background: var(--white);
    padding: 0;
    text-align: center;
}

.selos-bar {
    background: var(--bronze);
    padding: 22px 24px;
}

.selos-inner {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
}

.selo-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.selo-item svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.selo-texto {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.35;
    text-align: left;
    font-family: var(--font-body);
}

.selos-divider {
    width: 1px;
    height: 52px;
    background: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.preco-hero {
    position: relative;
    min-height: 580px;
    background-image: url('assets/images/salime-destaque.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 60px 5%;
}

.preco-card {
    position: relative;
    background: var(--white);
    padding: 44px 40px;
    max-width: 380px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1.5px solid var(--line);
    border-top: 3px solid var(--bronze);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    border-radius: var(--radius);
}

.preco-de-nova {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.preco-de-nova s {
    text-decoration: line-through;
}

.preco-vista-nova {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
}

.preco-ou {
    color: var(--muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 8px 0;
}

.preco-parcelas-nova {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 28px;
}

.preco-parcelas-nova strong {
    font-size: 1.5rem;
    color: var(--bronze);
    font-weight: 700;
    font-family: var(--font-body);
}

.incluso-nova {
    list-style: none;
    text-align: left;
    width: 100%;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.incluso-nova li {
    font-size: 0.88rem;
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.garantia-mini-nova {
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ============================================================
   12. GARANTIA
============================================================ */
.garantia {
    background: var(--champagne);
    padding: var(--section-pad) 0;
}

.garantia-box {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 60px 44px;
    border: 1.5px solid var(--line);
    border-top: 3px solid var(--bronze);
    box-shadow: var(--sh1);
}

.garantia-icon {
    font-size: 4.5rem;
    margin-bottom: 20px;
    display: block;
}

.garantia-box h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.1rem);
    color: var(--text);
    margin-bottom: 16px;
    font-weight: 400;
}

.garantia-box p {
    color: var(--muted);
    line-height: 1.85;
    font-size: 0.97rem;
}

/* ============================================================
   13. FAQ (ícone de toggle circular)
============================================================ */
.faq {
    background: var(--cream);
    padding: var(--section-pad) 0;
    text-align: center;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item.open {
    border-color: rgba(168, 134, 46, 0.3);
    box-shadow: var(--sh2);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 26px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.2s;
    line-height: 1.4;
}

.faq-question:hover {
    background: var(--champagne);
}

/* Ícone circular */
.faq-question span {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--bronze);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--bronze);
    font-weight: 400;
    flex-shrink: 0;
    line-height: 1;
    transition: all 0.35s ease;
    font-family: var(--font-body);
    font-style: normal;
}

.faq-item.open .faq-question span {
    background: var(--bronze);
    color: var(--dark);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 26px;
}

.faq-item.open .faq-answer {
    max-height: 320px;
    padding: 0 26px 22px;
}

.faq-answer p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.85;
    border-top: 1px solid var(--champagne);
    padding-top: 16px;
}

/* ============================================================
   CTA INLINE
============================================================ */
.cta-inline {
    text-align: center;
    padding: 40px 0 10px;
}

.cta-sub {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--muted);
}

.cta-trust {
    font-size: 13px;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.02em;
}

/* ============================================================
   14. CTA FINAL (fundo escuro com glow bronze)
============================================================ */
.cta-final {
    background: var(--dark);
    padding: var(--section-pad) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Glow dourado central */
.cta-final::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(168, 134, 46, 0.14) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Padrão de pontos suave */
.cta-final::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(168, 134, 46, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.cta-final-content {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-final h2 {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 400;
}

.cta-final p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 40px;
}

/* Botão especial do CTA final */
.cta-final .btn-primary {
    background: var(--bronze-light);
    color: var(--dark);
    font-weight: 700;
}
.cta-final .btn-primary:hover {
    background: var(--bronze);
    color: var(--white);
    box-shadow: 0 8px 32px rgba(168, 134, 46, 0.45);
}

.cta-garantia {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 0.82rem !important;
    margin-top: 18px !important;
    margin-bottom: 0 !important;
}

/* ============================================================
   15. FOOTER
============================================================ */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(168, 134, 46, 0.2);
    padding: 30px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.83rem;
}

.footer strong {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-display);
    font-weight: 500;
}

/* ============================================================
   STICKY BAR (fundo escuro)
============================================================ */
.sticky-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 120px);
    background: var(--dark);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 998;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(168, 134, 46, 0.25);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.3s ease,
                border-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.sticky-bar.visible {
    transform: translate(-50%, 0);
}

.sticky-bar:hover {
    background: var(--bronze);
    border-color: var(--bronze);
}

.sticky-bar span {
    font-size: 1rem;
    line-height: 1;
}

/* ============================================================
   WHATSAPP (com anel de pulso)
============================================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    color: white;
}

/* Anel de pulso */
.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0;
    animation: wa-pulse 2.5s ease-out infinite;
    z-index: -1;
}

@keyframes wa-pulse {
    0%   { transform: scale(1);   opacity: 0.55; }
    100% { transform: scale(2.1); opacity: 0; }
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
}

.whatsapp-btn:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* ============================================================
   RESPONSIVO — TABLET (max 1024px)
============================================================ */
@media (max-width: 1024px) {
    .sobre-grid { gap: 48px; }
}

/* ============================================================
   RESPONSIVO — MOBILE (max 768px)
============================================================ */
@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        position: absolute;
        top: 68px;
        left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .nav-links.open { max-height: 420px; }

    .nav-links li { width: 100%; }

    .nav-links a {
        display: block;
        padding: 15px 24px;
        border-bottom: 1px solid var(--champagne);
        font-size: 0.97rem;
        color: var(--text) !important;
    }

    .nav-cta {
        background: none !important;
        color: var(--bronze) !important;
        border-radius: 0 !important;
        padding: 15px 24px !important;
        font-weight: 600 !important;
    }

    .hero-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .dores-grid { grid-template-columns: 1fr; }
    .dor-item {
        border-right: none !important;
        padding: 32px 24px;
    }

    .marquee-item { font-size: 1.15rem; }

    .cards-grid,
    .bonus-grid { grid-template-columns: 1fr; }

    .depo-video-card,
    .depo-print-card { max-width: 100%; }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .sobre-foto img {
        max-width: 300px;
        margin: 0 auto;
    }

    .preco-hero {
        flex-direction: column;
        background-image: none;
        padding: 0;
        min-height: auto;
    }

    .preco-hero::before {
        content: '';
        display: block;
        width: 100%;
        height: 280px;
        background-image: url('assets/images/salime-destaque.jpg');
        background-size: cover;
        background-position: center top;
    }

    .preco-card {
        padding: 36px 28px;
        max-width: 100%;
        box-shadow: none;
        border: none;
        border-top: 3px solid var(--bronze);
        border-radius: 0;
    }

    .preco-vista-nova { font-size: 2.6rem; }

    .selos-inner { gap: 24px; }
    .selo-texto { font-size: 0.88rem; }

    .garantia-box { padding: 44px 24px; }

    .btn-large {
        font-size: 0.98rem;
        padding: 16px 28px;
    }

    .btn-hero {
        padding: 16px 28px;
        font-size: 0.97rem;
    }

    /* Sticky bar — canto direito (ao lado do WhatsApp) */
    .sticky-bar {
        bottom: 28px;
        left: auto;
        right: 100px;
        padding: 12px 22px;
        font-size: 0.78rem;
        letter-spacing: 0.06em;
        transform: translate(0, 120px);
    }

    .sticky-bar.visible { transform: translate(0, 0); }
}

/* ============================================================
   RESPONSIVO — SMALL MOBILE (max 480px)
============================================================ */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.9rem; }

    .section-title { font-size: 1.7rem; }

    .preco-vista-nova { font-size: 2.2rem; }

    .selos-inner {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .preco-hero::before { height: 220px; }

    .preco-card { padding: 28px 20px; }

    .marquee-item { font-size: 1rem; }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .sticky-bar {
        bottom: 20px;
        right: 84px;
        padding: 10px 18px;
        font-size: 0.72rem;
    }
}
