/* ==========================================================================
   CSS PRINCIPAL — NOITE EM PAZ
   Aesthetica Premium: Azul-marinho, Dourado, Fontes Claras, Glassmorphism
   ========================================================================== */

:root {
    --bg-main: #0d1b2a;
    --bg-sec: #1b263b;
    --bg-dark: #07101a;
    --gold: #c9a84c;
    --gold-light: #e5c56d;
    --gold-glow: rgba(201, 168, 76, 0.25);
    --gold-bg-trans: rgba(201, 168, 76, 0.08);
    --text-primary: #f8f9fa;
    --text-secondary: #e0e1dd;
    --text-muted: #a0a5b5;
    --urgency: #e63946;
    --urgency-light: #ff5a66;
    --border-color: rgba(224, 225, 221, 0.1);
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --card-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Reset Global & Acessibilidade */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* ==========================================================================
   TIPOGRAFIA & BOTÕES
   ========================================================================== */

h1, h2, h3, h4 {
    font-weight: 600;
    color: var(--text-primary);
}

.font-serif {
    font-family: var(--font-serif);
}

.text-gold {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(229, 197, 109, 0.5);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

/* Efeito Glow Decorativo */
.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, rgba(13, 27, 42, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.glow-effect.top-left { top: 10%; left: -100px; }
.glow-effect.bottom-right { bottom: 10%; right: -100px; }
.glow-effect.center-left { top: 40%; left: -150px; }
.glow-effect.center-right { top: 60%; right: -150px; }

/* Animações */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 4px 20px var(--gold-glow); }
    50% { transform: scale(1.03); box-shadow: 0 8px 35px rgba(201, 168, 76, 0.45); }
    100% { transform: scale(1); box-shadow: 0 4px 20px var(--gold-glow); }
}

.pulse-animation {
    animation: pulse 3s infinite ease-in-out;
}

/* Cards Glassmorphism */
.glass-card {
    background: rgba(27, 38, 59, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(224, 225, 221, 0.08);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

/* ==========================================================================
   STICKY NAVBAR
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(7, 16, 26, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
}

.nav-logo svg {
    filter: drop-shadow(0 0 5px var(--gold-glow));
}

.nav-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--gold-glow);
}

/* ==========================================================================
   1ª SEÇÃO: HERO
   ========================================================================== */

.hero-section {
    position: relative;
    padding: 160px 0 100px 0;
    background: radial-gradient(circle at 70% 30%, var(--bg-sec) 0%, var(--bg-main) 70%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tagline {
    display: inline-block;
    color: var(--gold);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    font-weight: 600;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 4px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Mockup de Ebook em 3D */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.book-mockup-wrapper {
    position: relative;
    perspective: 1200px;
}

.book-glow {
    position: absolute;
    top: 5%;
    left: 10%;
    width: 80%;
    height: 90%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

.book-mockup {
    max-width: 320px;
    height: auto;
    border-radius: 4px 12px 12px 4px;
    box-shadow: 15px 15px 35px rgba(0, 0, 0, 0.6),
                -3px 0 10px rgba(255, 255, 255, 0.1) inset;
    transform: rotateY(-18deg) rotateX(8deg) rotateZ(-2deg);
    transition: transform 0.5s ease-out;
}

.book-mockup:hover {
    transform: rotateY(-8deg) rotateX(4deg) rotateZ(0deg) scale(1.03);
}

/* Cabeçalho de Seção Padrão */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4.5rem auto;
}

.section-tag {
    display: inline-block;
    color: var(--gold-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.section-tag-gold {
    display: inline-block;
    background: var(--gold-bg-trans);
    color: var(--gold-light);
    border: 1px solid var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   2ª SEÇÃO: O QUE VOCÊ VAI RECEBER
   ========================================================================== */

.receive-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.chapters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.chapter-card {
    background: rgba(27, 38, 59, 0.25);
    border: 1px solid rgba(224, 225, 221, 0.04);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.chapter-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(27, 38, 59, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.chapter-icon-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chapter-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: rgba(201, 168, 76, 0.3);
    font-weight: bold;
}

.chapter-card svg {
    filter: drop-shadow(0 0 4px var(--gold-glow));
}

.chapter-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.chapter-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Extras (Checklist & Plano) */
.extras-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.extra-card {
    display: flex;
    gap: 1.75rem;
    padding: 2.5rem;
    align-items: flex-start;
}

.extra-icon {
    background: var(--gold-bg-trans);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.1);
}

.extra-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.extra-text {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   3ª SEÇÃO: POR QUE ESCOLHER ESTE MATERIAL
   ========================================================================== */

.benefits-section {
    padding: 100px 0;
    background-color: var(--bg-main);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    position: relative;
    background: rgba(27, 38, 59, 0.3);
    border-left: 3px solid var(--gold);
    border-radius: 0 16px 16px 0;
    padding: 2.5rem;
    overflow: hidden;
    z-index: 2;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateX(5px);
    background: rgba(27, 38, 59, 0.5);
    box-shadow: var(--glass-shadow);
}

.benefit-num-bg {
    position: absolute;
    bottom: -15px;
    right: 15px;
    font-size: 8rem;
    font-family: var(--font-serif);
    color: rgba(201, 168, 76, 0.04);
    font-weight: 700;
    line-height: 1;
    z-index: -1;
    pointer-events: none;
}

.benefit-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.benefit-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   4ª SEÇÃO: BÔNUS EXCLUSIVOS
   ========================================================================== */

.bonus-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.bonus-card {
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bonus-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 30px;
    letter-spacing: 1px;
}

.bonus-icon {
    background: var(--gold-bg-trans);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.bonus-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bonus-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: auto;
    padding-bottom: 2rem;
}

.bonus-value {
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.bonus-value .val-orig {
    text-decoration: line-through;
    color: var(--urgency);
}

.bonus-value .val-free {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.15rem;
    margin-left: 0.5rem;
}

.bonus-footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   5ª SEÇÃO: OFERTA COM TEMPORIZADOR
   ========================================================================== */

.offer-section {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(circle, var(--bg-sec) 0%, var(--bg-main) 100%);
}

.offer-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 4.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.05);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}

.urgency-badge {
    display: inline-block;
    color: var(--urgency-light);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.offer-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.offer-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* Timer Regressivo */
.timer-box {
    margin-bottom: 3rem;
}

.timer-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.timer-display {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(7, 16, 26, 0.6);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--urgency-light);
    font-family: monospace;
    line-height: 1;
}

.timer-txt {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.timer-colon {
    font-size: 2rem;
    color: var(--urgency-light);
    font-weight: 700;
    line-height: 1;
    transform: translateY(-5px);
}

/* Preço */
.pricing-box {
    margin-bottom: 3rem;
}

.price-original {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.price-original .strikethrough {
    text-decoration: line-through;
    color: var(--urgency-light);
    font-weight: 600;
}

.price-value {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-serif);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.price-payment {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* CTA */
.btn-buy {
    width: 100%;
    max-width: 450px;
    margin-bottom: 1.25rem;
    letter-spacing: 1px;
}

.payment-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Selos */
.security-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2.5rem;
}

.security-badges .badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.security-badges .badge svg {
    filter: drop-shadow(0 0 4px var(--gold-glow));
}

.security-badges .badge span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   6ª SEÇÃO: EXEMPLOS DO MATERIAL (CARROSSEL)
   ========================================================================== */

.previews-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.carousel-wrapper {
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    position: relative;
}

.carousel-container {
    width: 100%;
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mockup real da página do ebook */
.ebook-page-mockup {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fdfbf7; /* Cor de papel envelhecido suave, relaxante */
    color: #2b2b2b; /* Texto escuro de livro */
    border-radius: 8px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 2px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border-left: 8px solid #f2edd9;
}

.ebook-page-mockup.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 10;
}

.page-decor-moon {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.05);
    pointer-events: none;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #8c8570;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #ebdcb9;
    padding-bottom: 0.75rem;
}

.page-content {
    margin-top: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: #4a3e21;
    margin-bottom: 1rem;
    font-weight: 600;
}

.page-intro {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    margin-bottom: 1.25rem;
}

.page-body {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.5;
}

/* Exercício Preocupometro */
.preocupometro-exercise {
    background: #f7f3e8;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px dashed #d1c5a3;
}

.exercise-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: #8c7333;
    margin-bottom: 0.5rem;
}

.exercise-step {
    font-size: 0.8rem;
    margin-bottom: 0.35rem;
    color: #555;
    padding-left: 0.5rem;
    border-left: 2px solid #ebdcb9;
}

/* Timeline do ritual */
.timeline-visual {
    margin-bottom: 1.25rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.6rem;
}

.time-marker {
    background: #e3dab8;
    color: #66562d;
    font-weight: bold;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    min-width: 80px;
    text-align: center;
}

.time-desc {
    font-size: 0.8rem;
    color: #444;
}

/* Receita Chás */
.tea-recipe {
    background: #f4efdf;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.recipe-title {
    font-weight: 700;
    font-size: 0.85rem;
    color: #66562d;
    margin-bottom: 0.5rem;
}

.recipe-list {
    list-style: none;
    font-size: 0.8rem;
    color: #444;
}

.recipe-list li {
    margin-bottom: 0.35rem;
}

.recipe-list li span {
    font-weight: 600;
}

/* Diário */
.diary-entry-visual {
    background: #faf8f5;
    border: 1px solid #ebdcb9;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.25rem;
}

.entry-line {
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.line-fill {
    color: #8c8570;
}

/* Respiração */
.breathing-guide {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.breathing-circle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.breathing-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e0d8bd;
    border: 3px solid #ebdcb9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: #594c28;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.breathing-steps {
    font-size: 0.75rem;
    color: #555;
}

.breathing-steps .step-num {
    font-weight: bold;
    color: #8c7333;
}

/* Carousel Nav */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--bg-sec);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
    box-shadow: 0 0 15px var(--gold-glow);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.4;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dots .dot.active {
    background: var(--gold);
    opacity: 1;
    transform: scale(1.3);
}

.carousel-caption {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   7ª SEÇÃO: DEPOIMENTOS
   ========================================================================== */

.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-main);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.user-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.2);
}

/* Default gradient silhouettes for fallback */
.user-ana { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }
.user-fernanda { background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%); }
.user-carla { background: linear-gradient(135deg, #cfd9df 0%, #e2ebf0 100%); }

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 1.05rem;
    font-weight: 600;
}

.user-details {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   8ª SEÇÃO: GARANTIA INCONDICIONAL
   ========================================================================== */

.guarantee-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.guarantee-card {
    max-width: 950px;
    margin: 0 auto;
    padding: 4rem;
    display: grid;
    grid-template-columns: 0.3fr 1.7fr;
    gap: 3rem;
    align-items: center;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.guarantee-icon-big {
    display: flex;
    justify-content: center;
    color: var(--gold);
    filter: drop-shadow(0 0 10px var(--gold-glow));
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.guarantee-badge {
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.guarantee-title {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.guarantee-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.guarantee-subtext {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   9ª SEÇÃO: PERGUNTAS FREQUENTES (FAQ)
   ========================================================================== */

.faq-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--bg-main);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: rgba(27, 38, 59, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(201, 168, 76, 0.25);
    background: rgba(27, 38, 59, 0.45);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 1.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-sans);
}

.faq-question .arrow {
    color: var(--gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.answer-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    border-top: 1px solid rgba(224, 225, 221, 0.05);
    margin-top: -0.5rem;
    padding-top: 1rem;
}

/* ==========================================================================
   10ª SEÇÃO: RODAPÉ
   ========================================================================== */

.footer-section {
    padding: 80px 0 50px 0;
    background-color: var(--bg-dark);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

.footer-link {
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--gold);
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.8rem;
    color: rgba(160, 165, 181, 0.5);
    line-height: 1.5;
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-actions {
        align-items: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .guarantee-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem;
        gap: 2rem;
    }
    
    .guarantee-content {
        align-items: center;
    }
    
    .extras-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .btn-lg {
        padding: 1rem 2.25rem;
        font-size: 1.1rem;
        width: 100%;
    }
    
    .offer-card {
        padding: 3rem 1.5rem;
    }
    
    .timer-display {
        padding: 0.75rem 1.5rem;
        gap: 0.5rem;
    }
    
    .timer-num {
        font-size: 2rem;
    }
    
    .price-value {
        font-size: 3.5rem;
    }
    
    .security-badges {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .carousel-wrapper {
        max-width: 100%;
    }
    
    .ebook-page-mockup {
        padding: 2rem 1.5rem;
    }
    
    .page-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }
    
    .section-title {
        font-size: 1.65rem;
    }
    
    .extra-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
    }
}
