/* --- 1. VARIÁVEIS GLOBAIS --- */
:root {
    --bg-deep: #050505;
    --c-gold: #cfae7d; 
    --c-gold-hover: #e6cfa5;
    --c-text: #f4f4f4;
    --c-muted: #a0a0a0;
    --font-display: 'Cormorant Garamond', serif; /* Títulos Principais */
    --font-body: 'Inter', sans-serif; /* Texto Corrido e Cards */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-deep);
    color: var(--c-text);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* --- 2. SISTEMA DE BACKGROUND --- */
.bg-layer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; overflow: hidden; pointer-events: none; }
.bg-layer img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; filter: blur(4px); transform: scale(1.1); transition: transform 0.1s linear; }
.bg-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, rgba(5,5,5,0.4) 0%, rgba(5,5,5,1) 90%); z-index: 1; }

/* --- 3. BOTÕES --- */
.btn-gold-fill {
    display: inline-flex; justify-content: center; align-items: center; padding: 18px 36px;
    background: linear-gradient(135deg, #cfae7d 0%, #b08d55 100%);
    color: #050505; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; text-decoration: none;
    position: relative; overflow: hidden; border-radius: 2px; cursor: pointer;
    animation: pulse-gold-infinite 3s infinite ease-in-out;
}
.btn-label { position: relative; z-index: 2; display: inline-block; min-width: 180px; text-align: center; will-change: opacity; }
.btn-icon { margin-left: 8px; transition: transform 0.5s ease; z-index: 2; }
.btn-gold-fill:hover .btn-icon { transform: translateX(5px) translateY(-3px); }

@keyframes pulse-gold-infinite {
    0% { box-shadow: 0 0 0 0 rgba(207, 174, 125, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(207, 174, 125, 0); }
    100% { box-shadow: 0 0 0 0 rgba(207, 174, 125, 0); }
}
.btn-gold-fill::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg); z-index: 1; animation: shine-pass-infinite 5s infinite linear;
}
@keyframes shine-pass-infinite { 0% { left: -100%; } 15% { left: 200%; } 100% { left: 200%; } }

/* --- 4. HERO --- */
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; padding-bottom: 80px; }
.hero-spotlight { position: absolute; top: 10%; right: 5%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(40, 50, 70, 0.3) 0%, rgba(5,5,5,0) 70%); z-index: 0; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.tagline-top { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 24px; border-left: 1px solid var(--c-gold); padding-left: 15px; display: inline-block; }
h1.hero-title { font-size: clamp(2.5rem, 4vw, 3.8rem); line-height: 1.1; margin-bottom: 24px; color: #fff; }
.typing-wrapper { display: block; margin-top: 5px; min-height: 1.2em; }
.typewriter-text { color: var(--c-gold); font-style: italic; display: inline; position: relative; }
.typewriter-text::after { content: '|'; display: inline-block; margin-left: 2px; color: var(--c-gold); font-style: normal; font-weight: 300; animation: blink 1s step-end infinite; vertical-align: baseline; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero-desc { font-size: 1rem; color: var(--c-muted); max-width: 480px; margin-bottom: 40px; font-weight: 300; }
.hero-img-wrapper img { max-width: 100%; height: auto; mask-image: linear-gradient(to bottom, black 80%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%); }
.hero-footer-bar { position: absolute; bottom: -1px; left: 0; width: 100%; height: 120px; z-index: 5; pointer-events: none; }
.hero-footer-bar svg { width: 100%; height: 100%; fill: var(--bg-deep); }
.footer-content { position: absolute; bottom: 0; width: 100%; text-align: center; padding-bottom: 20px; z-index: 6; }
.ticker-text { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.7); }

/* --- 5. ABOUT --- */
.about-section { position: relative; padding: 120px 0; background-color: var(--bg-deep); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.photo-frame img { width: 100%; border-radius: 4px; filter: contrast(1.1) saturate(0.9); box-shadow: 0 20px 50px rgba(0,0,0,0.5); display: block; }
.border-deco { position: absolute; top: 20px; left: -20px; width: 100%; height: 100%; border: 1px solid var(--c-gold); z-index: -1; opacity: 0.6; }
.section-title { font-size: 2.5rem; margin: 20px 0; color: #fff; }
.text-highlight { color: #ccc; margin-bottom: 20px; font-size: 1.1rem; }
.text-body { color: var(--c-muted); margin-bottom: 30px; }

/* --- 6. AUDIENCE (UPDATED) --- */
.audience-section { position: relative; padding: 140px 0; background-color: var(--bg-deep); }

.section-header { text-align: center; margin-bottom: 80px; max-width: 900px; margin-left: auto; margin-right: auto; }

.tag-box {
    display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: #cfae7d; background: rgba(207, 174, 125, 0.08); border: 1px solid rgba(207, 174, 125, 0.2); padding: 10px 20px; margin-bottom: 24px; border-radius: 2px;
}
/* Fontes do Header: Cormorant (padrão) */
.center-title { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.15; color: #fff; margin-bottom: 20px; }
.gold-gradient-text { color: var(--c-gold); background: linear-gradient(135deg, #e6cfa5 0%, #cfae7d 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.center-subtitle { color: var(--c-muted); font-size: 1.1rem; margin-top: 10px; line-height: 1.6; max-width: 700px; margin-inline: auto; }

/* Grid 4 Colunas */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 80px; }

/* CARD COM LUZ E FONTES PADRONIZADAS */
.audience-card {
    position: relative; background: transparent; 
    border-radius: 12px; padding: 40px 24px;
    display: flex; flex-direction: column; justify-content: flex-start;
    overflow: hidden; z-index: 1; transition: transform 0.3s ease; min-height: 260px;
}
.audience-card:hover { transform: translateY(-5px); }

/* Fundo do Card */
.audience-card::after {
    content: ''; position: absolute; inset: 1px; background: #0b0b0b; border-radius: 12px; z-index: -1;
}
/* Luz da Borda */
.audience-card::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, transparent 80deg, rgba(207, 174, 125, 1) 120deg, transparent 160deg, transparent 360deg);
    animation: border-rotate 4s linear infinite; z-index: -2;
    filter: blur(8px); opacity: 0.6;
}
@keyframes border-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Fontes do Card: Inter (conforme padrão de leitura e referencia) */
.audience-card h3 {
    font-family: var(--font-body); font-size: 1.15rem; font-weight: 600; color: #dfba82; margin-bottom: 12px; display: block; position: relative; z-index: 2;
}
.audience-card p {
    font-family: var(--font-body); font-size: 0.9rem; color: #a0a0a0; line-height: 1.6; font-weight: 300; position: relative; z-index: 2;
}

.section-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-text p { color: #ccc; font-size: 1rem; line-height: 1.5; }

/* Responsividade */
@media (max-width: 1100px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
    .hero-grid, .about-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-img-wrapper { order: -1; margin-bottom: 30px; display: flex; justify-content: center; }
    .hero-img-wrapper img { max-height: 400px; }
    .btn-gold-fill { width: 100%; }
}
@media (max-width: 600px) {
    .cards-grid { grid-template-columns: 1fr; }
    .section-footer { flex-direction: column; text-align: center; gap: 30px; }
}

/* --- SESSÃO 4: O PROBLEMA REAL --- */
.problem-section {
    position: relative;
    padding: 140px 0;
    background-color: var(--bg-deep);
    overflow: hidden; /* Para conter animações */
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Coluna Visual com Efeito Editorial */
.editorial-img-box {
    position: relative;
    border-radius: 8px;
}

.editorial-img-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    filter: sepia(10%) contrast(1.05) brightness(0.9); /* Look cinematográfico */
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* Glass Card Flutuante */
.glass-insight {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 280px;
    background: rgba(20, 20, 20, 0.7); /* Fundo semi-transparente escuro */
    backdrop-filter: blur(12px); /* O efeito de vidro */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(207, 174, 125, 0.3); /* Borda dourada sutil */
    padding: 24px;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    z-index: 2;
}

.glass-insight .gold-icon {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--c-gold);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.glass-insight p {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.5;
}

/* Coluna de Texto */
.text-block p {
    color: var(--c-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.text-block strong {
    color: #fff;
    font-weight: 500;
}

/* Caixa de Destaque Lateral */
.highlight-box {
    border-left: 2px solid var(--c-gold);
    padding-left: 24px;
    margin-top: 30px;
}

.highlight-box p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1.4;
    color: #fff;
    font-style: italic;
}

/* Link Discreto */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--c-muted);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.link-arrow .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    color: var(--c-gold);
}

.link-arrow:hover .arrow {
    transform: translateY(5px);
}

/* Responsividade */
@media (max-width: 900px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .editorial-img-box {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Ajuste do Glass Card no Mobile */
    .glass-insight {
        position: relative;
        bottom: auto; right: auto;
        margin-top: -40px; /* Puxa pra cima da imagem */
        margin-left: auto;
        margin-right: auto;
        width: 90%;
    }
}

/* --- SESSÃO 4: O ERRO (THE GAP) --- */
.gap-section {
    position: relative;
    padding: 140px 0;
    background-color: #080808; /* Um tom levemente diferente para contraste */
    overflow: hidden;
}

/* Luz de fundo atmosférica */
.gap-glow-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(207, 174, 125, 0.08) 0%, transparent 70%);
    z-index: 0; pointer-events: none;
}

.gap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
    position: relative; z-index: 2;
}

/* Tipografia */
.italic-gold {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--c-gold);
}

.gap-subtitle {
    font-size: 1.25rem;
    color: #fff;
    margin-top: 20px;
    line-height: 1.6;
    border-left: 2px solid var(--c-gold);
    padding-left: 20px;
}

/* Lista de Erros (Direita) */
.list-intro {
    color: var(--c-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.mistake-list {
    list-style: none;
    margin-bottom: 30px;
}

.mistake-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #ccc;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.mistake-list li:hover {
    color: #fff;
}

.mistake-list .bullet {
    color: #d14d4d; /* Vermelho sutil para erro */
    font-weight: bold;
    font-size: 1.2rem;
}

.insight-box {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
}

.insight-box p { color: #fff; font-weight: 500; }
.gold-text { color: var(--c-gold); display: block; margin-top: 5px; }

/* --- BLOCO INFERIOR (REALIDADE) --- */
.reality-block {
    background: #0b0b0b;
    border: 1px solid rgba(207, 174, 125, 0.2);
    border-radius: 12px;
    padding: 60px;
    position: relative;
    /* Sombra dourada suave pulsante */
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.reality-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.divider-vertical {
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--c-gold), transparent);
    opacity: 0.3;
}

.reality-item h3 {
    font-size: 1.1rem;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.myth-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
    margin-bottom: 15px;
    text-decoration: line-through; /* Risco visual */
    text-decoration-color: rgba(207, 174, 125, 0.5);
}

.reality-check {
    color: #fff;
    font-size: 1.1rem;
}

/* Lista de Reação */
.reaction-steps {
    list-style: none;
}
.reaction-steps li {
    margin-bottom: 12px;
    color: #ccc;
    display: flex;
    gap: 10px;
}
.reaction-steps li span {
    color: var(--c-gold);
    font-family: var(--font-display);
}

/* Conclusão Final */
.final-statement {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.final-statement p {
    font-size: 1.4rem;
    color: #fff;
}

/* Efeito de Texto Brilhante */
.glow-text {
    color: var(--c-gold);
    text-shadow: 0 0 15px rgba(207, 174, 125, 0.6);
    animation: text-pulse 3s infinite ease-in-out;
}

@keyframes text-pulse {
    0%, 100% { text-shadow: 0 0 10px rgba(207, 174, 125, 0.4); }
    50% { text-shadow: 0 0 25px rgba(207, 174, 125, 0.8); }
}

/* Responsividade */
@media (max-width: 900px) {
    .gap-grid { grid-template-columns: 1fr; gap: 50px; }
    .reality-grid { grid-template-columns: 1fr; gap: 40px; }
    .divider-vertical { width: 100%; height: 1px; background: linear-gradient(to right, transparent, var(--c-gold), transparent); }
    .reality-block { padding: 30px; }
    .myth-text { font-size: 1.4rem; }
}


/* --- RODAPÉ (FOOTER) --- */
.site-footer {
    background-color: #020202; /* Preto absoluto para fechar a página */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px 0;
    font-size: 0.9rem;
    color: var(--c-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Coluna Marca */
.footer-logo {
    font-family: var(--font-display);
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-brand p {
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.8;
}

/* Redes Sociais */
.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--c-gold);
    border-color: var(--c-gold);
    color: #000;
    transform: translateY(-3px);
}

/* Colunas de Links */
.site-footer h4 {
    color: #fff;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: var(--c-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--c-gold); }

.footer-cta-link {
    display: inline-block;
    color: var(--c-gold);
    text-decoration: none;
    margin-top: 15px;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.footer-cta-link:hover {
    border-bottom-color: var(--c-gold);
    padding-bottom: 2px;
}

/* Copyright Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    opacity: 0.6;
}

/* --- BOTÃO VOLTAR AO TOPO --- */
.btn-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--c-gold); /* Dourado */
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(207, 174, 125, 0.3);
    z-index: 999;
    
    /* Estado inicial: escondido */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Classe adicionada via JS para mostrar */
.btn-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-top:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,255,255, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .btn-top { bottom: 20px; right: 20px; width: 45px; height: 45px; }
}