/* --- VARIÁVEIS & DESIGN SYSTEM (Light Premium) --- */
:root {
    /* Paleta Clara (Fundo & Estrutura) */
    --bg-body: #fdfbf7;        
    --bg-section-alt: #ffffff; 
    --bg-header: #f2d3b0;      
    
    /* Cores da Marca */
    --brand-detail: #602c23;   /* Marrom Café */
    --brand-accent: #f2d3b0;   /* Bege */
    --brand-gold: #d4af37;     
    
    /* Textos */
    --text-main: #3e160e;      
    --text-light: #fff8f0;     
    --text-muted: #6b4c46;     

    /* Sistema */
    --success: #10b981;
    --spacing-container: 1200px;
    --font-title: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Sombras */
    --shadow-card: 0 10px 30px rgba(96, 44, 35, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* --- TIPOGRAFIA --- */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--brand-detail);
}

h1 { font-size: 3.5rem; text-transform: uppercase; letter-spacing: -1px; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; position: relative; display: table; margin-left: auto; margin-right: auto; }
h2::after { content: ''; display: block; width: 60%; height: 3px; background: linear-gradient(90deg, transparent, var(--brand-detail), transparent); margin: 15px auto 0; opacity: 0.3; }

p { color: var(--text-muted); }

.name-highlight { color: var(--brand-detail); position: relative; z-index: 1; }
.name-highlight::before { content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 8px; background-color: var(--brand-accent); z-index: -1; opacity: 0.6; transform: skewX(-10deg); }

/* --- COMPONENTES --- */
.container { max-width: var(--spacing-container); margin: 0 auto; padding: 0 24px; }

.btn { display: inline-flex; align-items: center; gap: 10px; background: var(--brand-detail); color: var(--text-light); padding: 18px 40px; font-weight: 800; text-transform: uppercase; text-decoration: none; border-radius: 50px; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); border: none; cursor: pointer; font-family: var(--font-title); box-shadow: 0 4px 15px rgba(96, 44, 35, 0.3); }
.btn:hover { transform: translateY(-4px) scale(1.02); background: #4a1f18; }
.btn-full { width: 100%; justify-content: center; }

.fade-in-section { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-section.is-visible { opacity: 1; transform: translateY(0); }

/* --- HEADER ALINHADO (CORREÇÃO GRID) --- */
.main-header {
    background-color: var(--bg-header);
    background: linear-gradient(to bottom, var(--brand-accent) 0%, #faebd7 100%);
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 80px;
    position: relative;
}

.main-header::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100px; background: linear-gradient(to bottom, transparent, var(--bg-body)); }

/* Grid Layout de 3 Colunas: Logo (Esquerda), Nav (Centro), Espaçador (Direita) */
.header-top {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    align-items: center;
    padding: 15px 24px;
}

.logo-area {
    justify-self: start;
    z-index: 2;
}

.logo-img { 
    height: 160px; /* Logo 200% Maior */
    width: auto; 
    mix-blend-mode: multiply; /* Mescla o fundo branco com o bege */
}

/* Menu Centralizado na Coluna do Meio */
.main-nav {
    justify-self: center;
    z-index: 2;
}

.main-nav ul { list-style: none; display: flex; gap: 40px; }
.main-nav a { text-decoration: none; color: var(--brand-detail); font-weight: 700; font-size: 0.95rem; text-transform: uppercase; transition: color 0.3s; }
.main-nav a:hover { color: #8a483c; }

.nav-cta { border: 2px solid var(--brand-detail); padding: 8px 24px; border-radius: 4px; color: var(--brand-detail) !important; }
.nav-cta:hover { background: var(--brand-detail); color: var(--text-light) !important; }

.header-spacer { width: 100%; visibility: hidden; }

.hero-content { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding-top: 40px; max-width: 900px; z-index: 2; }
.hero-tag { background-color: rgba(255, 255, 255, 0.6); color: var(--brand-detail); padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 800; letter-spacing: 1px; margin-bottom: 20px; border: 1px solid var(--brand-detail); }
.hero-subtitle { font-size: 1.3rem; margin-bottom: 40px; color: var(--text-main); max-width: 700px; font-weight: 500; }

/* --- NEGATIVE BOX (ATENÇÃO) --- */
.negative-box {
    margin-top: 80px;
    background-color: var(--brand-detail); /* Fundo Café */
    color: var(--text-light); /* Texto Claro */
    border: 2px solid var(--brand-gold);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(96, 44, 35, 0.3);
    position: relative;
    overflow: hidden;
}

.negative-box h3 { color: var(--brand-accent); font-size: 1.5rem; margin-bottom: 15px; }
.negative-box p { color: rgba(255,255,255,0.9); font-size: 1.1rem; }
.negative-highlight { font-weight: 600; color: #ffcccc !important; margin-top: 10px; }

@keyframes pulse-attention {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(96, 44, 35, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(96, 44, 35, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(96, 44, 35, 0); }
}
.pulse-animation { animation: pulse-attention 3s infinite; }

/* --- SEÇÕES GERAIS --- */
.section-about { padding: 100px 0; background-color: var(--bg-body); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mentor-photo { border-radius: 12px; box-shadow: 20px 20px 0 var(--brand-detail); position: relative; z-index: 2; }
.photo-accent-frame { position: absolute; top: -15px; left: -15px; width: 100%; height: 100%; border: 2px solid var(--brand-accent); border-radius: 12px; z-index: 1; }
.stats-row { display: flex; gap: 40px; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(96, 44, 35, 0.1); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--brand-detail); line-height: 1; }
.stat-label { font-size: 0.85rem; text-transform: uppercase; color: var(--text-muted); margin-top: 5px; }

.section-target { padding: 100px 0; background-color: var(--bg-section-alt); }
.target-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: #ffffff; padding: 40px 30px; border-radius: 12px; border: 1px solid rgba(96, 44, 35, 0.1); border-bottom: 5px solid var(--brand-detail); transition: transform 0.3s, box-shadow 0.3s; box-shadow: var(--shadow-card); }
.card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(96, 44, 35, 0.15); }
.card-icon { font-size: 2.5rem; color: var(--brand-detail); margin-bottom: 25px; background: var(--bg-header); width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }

.section-learning { padding: 100px 0; background-color: var(--bg-body); }
.learning-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
.learning-item { display: flex; gap: 20px; }
.learning-item i { font-size: 1.5rem; color: #fff; background: var(--brand-detail); width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; box-shadow: 0 5px 15px rgba(96, 44, 35, 0.2); }

.section-deliverables { padding: 100px 0; background-color: var(--bg-section-alt); }
.deliverables-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.del-card { background: #fff; border-left: 4px solid var(--brand-detail); padding: 30px; box-shadow: var(--shadow-card); position: relative; overflow: hidden; }
.del-number { font-size: 5rem; font-weight: 900; color: rgba(242, 211, 176, 0.4); position: absolute; top: -20px; right: 10px; z-index: 0; }
.del-card h3, .del-card p { position: relative; z-index: 1; }

.section-bonus { padding: 100px 0; background-color: var(--brand-detail); color: var(--text-light); text-align: center; }
.section-bonus h2, .section-bonus h4 { color: var(--brand-accent); }
.section-bonus p { color: rgba(255,255,255,0.8); }
.bonus-badge { background: var(--brand-gold); color: var(--brand-detail); padding: 5px 15px; border-radius: 20px; font-weight: 800; margin-bottom: 20px; display: inline-block; }
.bonus-cards-container { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 40px; }
.bonus-card { background: rgba(255,255,255,0.05); border: 1px solid var(--brand-accent); padding: 30px; border-radius: 8px; width: 300px; transition: all 0.3s; }
.bonus-card:hover { background: var(--brand-accent); transform: translateY(-5px); }
.bonus-card:hover h4, .bonus-card:hover p, .bonus-card:hover i { color: var(--brand-detail); }
.bonus-card i { font-size: 2rem; color: var(--brand-gold); margin-bottom: 20px; }
.bonus-note { margin-top: 60px; display: block; font-size: 0.9rem; opacity: 0.7; }

.section-testimonials { padding: 100px 0; background-color: var(--bg-body); }
.carousel-wrapper { position: relative; max-width: 900px; margin: 0 auto; }
.carousel-track-container { overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.5s ease-in-out; }
.testimonial-slide { min-width: 100%; padding: 10px; }
.testimonial-card { background: #fff; padding: 50px; border-radius: 12px; text-align: center; box-shadow: var(--shadow-card); border: 1px solid rgba(96, 44, 35, 0.05); }
.quote-icon { font-size: 3rem; color: var(--brand-accent); margin-bottom: 20px; }
.testimonial-card p { font-size: 1.2rem; font-style: italic; color: var(--text-main); margin-bottom: 30px; }
.testimonial-author { display: block; font-weight: 700; color: var(--brand-detail); }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: #fff; border: 1px solid var(--brand-detail); color: var(--brand-detail); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; z-index: 10; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: all 0.3s; }
.carousel-btn:hover { background: var(--brand-detail); color: #fff; }
.carousel-btn--left { left: -60px; }
.carousel-btn--right { right: -60px; }

.section-investment { padding: 100px 0; background-color: var(--bg-section-alt); }
.price-box { max-width: 500px; margin: 0 auto; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(96, 44, 35, 0.15); border: 1px solid var(--brand-accent); }
.price-header { background: var(--brand-detail); padding: 40px 20px; text-align: center; }
.price-header h3 { color: var(--brand-accent); margin: 0; }
.price-header p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 5px; }
.price-content { padding: 40px; text-align: center; }
.old-price { text-decoration: line-through; color: #999; font-size: 1.1rem; }
.new-price { font-size: 2.5rem; font-weight: 800; color: var(--brand-detail); line-height: 1; margin: 10px 0; }
.cash-price { color: #555; margin-bottom: 30px; font-weight: 600; }
.secure-badges { display: flex; justify-content: center; gap: 40px; margin-top: 30px; font-size: 0.85rem; color: #666; }

/* --- FOOTER FIX (CORREÇÃO PEDIDO 1) --- */
.main-footer {
    background: #602c23 !important; /* Marrom FORÇADO */
    color: #ffffff !important;      /* Texto Branco FORÇADO */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-content { display: flex; flex-direction: column; align-items: center; gap: 30px; }

/* Logo com filtro branco para contraste */
.footer-img { 
    opacity: 1; 
    height: 120px; 
    width: auto;
    transition: opacity 0.3s;
}

.footer-links a { color: rgba(255,255,255,0.8) !important; text-decoration: none; margin: 0 20px; font-weight: 600; transition: color 0.3s; }
.footer-links a:hover { color: var(--brand-accent) !important; }

.social-links { display: flex; gap: 20px; margin-bottom: 20px; }
.social-icon { background: rgba(255,255,255,0.1); color: #fff; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.2rem; transition: all 0.3s; }
.social-icon:hover { background: var(--brand-accent); color: var(--brand-detail); transform: translateY(-3px); }

.verse { max-width: 600px; opacity: 0.8; font-style: italic; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 30px; margin-top: 10px; color: #fff !important; }
.verse p { color: #fff !important; }
.copyright { margin-top: 20px; font-size: 0.8rem; opacity: 0.6; color: #fff !important; }
.copyright p { color: #fff !important; }

.float-cta { position: fixed; bottom: 30px; left: 30px; z-index: 999; text-decoration: none; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(20px); transition: all 0.5s ease; pointer-events: none; }
.float-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-content { background: var(--success); color: #fff; padding: 12px 24px; border-radius: 50px; display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 0.9rem; box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4); position: relative; z-index: 2; }
.pulse-ring { position: absolute; width: 100%; height: 100%; background: var(--success); border-radius: 50px; z-index: 1; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.6); opacity: 0; } }

/* --- MEDIA QUERIES --- */
@media (max-width: 992px) {
    .header-top { 
        grid-template-columns: 1fr; /* 1 Coluna em mobile */
        gap: 20px;
        text-align: center;
    }
    .logo-area, .main-nav { justify-self: center; }
    
    .logo-img { height: 100px; } /* Menor no mobile */
    .header-spacer { display: none; }
    
    .main-nav ul { 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 15px;
    }
    
    .about-grid, .deliverables-grid { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; }
    .carousel-btn { display: none; }
}

@media (max-width: 768px) {
    .secure-badges { flex-direction: column; gap: 10px; }
    .float-cta { left: 50%; transform: translateX(-50%) translateY(20px); bottom: 20px; width: 90%; }
    .float-cta.is-visible { transform: translateX(-50%) translateY(0); }
}