/* --- 1. VARIÁVEIS E GERAL (AZUL PETRÓLEO) --- */
:root {
    --bg-deep: #040f13; 
    --c-gold: #cfae7d; 
    --c-gold-hover: #e6cfa5;
    --c-text: #f0f4f5; 
    --c-muted: #a8b8c0; 
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

* { 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. 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.3; filter: blur(4px) saturate(0); 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(10, 46, 59, 0.85) 0%, #02080a 100%); 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: #02080a; 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(20, 80, 100, 0.4) 0%, rgba(4, 15, 19, 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: #d0dbe0; margin-bottom: 20px; font-size: 1.1rem; }
.text-body { color: var(--c-muted); margin-bottom: 30px; }

/* --- 6. AUDIENCE --- */
/* --- 6. AUDIENCE SECTION (CARDS SUPER COMPACTOS) --- */
.audience-section { position: relative; padding: 100px 0; background-color: var(--bg-deep); }

.section-header { text-align: center; margin-bottom: 50px; 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: 8px 16px; margin-bottom: 20px; border-radius: 2px;
}
.center-title { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); 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.05rem; margin-top: 10px; line-height: 1.6; max-width: 700px; margin-inline: auto; }

/* GRID */
.cards-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px; /* Gap menor entre os cards */
    margin-bottom: 60px; 
}

/* CARD AJUSTADO (SEM ESPAÇO VAZIO) */
.audience-card {
    position: relative; background: transparent; 
    border-radius: 8px;
    padding: 20px 18px; /* Padding bem justo */
    display: flex; flex-direction: column; justify-content: flex-start;
    overflow: hidden; z-index: 1; transition: transform 0.3s ease; 
    
    /* REMOVIDO min-height. Agora a altura é automática pelo conteúdo */
    min-height: auto; 
    height: 100%; /* Garante que vizinhos de linha tenham mesma altura visual */
}
.audience-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(6, 22, 28, 0.6); }

/* Fundo Miolo */
.audience-card::after { content: ''; position: absolute; inset: 1px; background: #06161c; border-radius: 8px; z-index: -1; }

/* Luz 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(6px); opacity: 0.6;
}
@keyframes border-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Título */
.audience-card h3 {
    font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; color: #dfba82; 
    margin-bottom: 6px; /* Menos espaço entre título e texto */
    display: block; position: relative; z-index: 2; line-height: 1.3;
}

/* Texto */
.audience-card p {
    font-family: var(--font-body); font-size: 0.85rem; color: #a8b8c0; 
    line-height: 1.4; /* Linhas mais próximas */
    font-weight: 300; position: relative; z-index: 2;
    margin-bottom: 0; /* Garante zero espaço extra no final */
}

.section-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-text p { color: #d0dbe0; font-size: 0.95rem; line-height: 1.4; }

/* Responsividade */
@media (max-width: 1100px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
    .cards-grid { grid-template-columns: 1fr; }
    .section-footer { flex-direction: column; text-align: center; gap: 20px; }
}

/* --- 7. GAP SECTION (ATUALIZADA) --- */
.gap-section { position: relative; padding: 140px 0; background-color: #030b0e; overflow: hidden; }
.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.05) 0%, transparent 70%); z-index: 0; pointer-events: none; }

/* Grid Assimétrico: Imagem (menor) | Texto (maior) */
.gap-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; margin-bottom: 100px; position: relative; z-index: 2; align-items: center; }

/* Imagem Visual */
.gap-img-frame { position: relative; border-radius: 8px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.gap-img-frame img { width: 100%; height: auto; display: block; filter: sepia(10%) contrast(1.1); }
.visual-border { position: absolute; top: 20px; left: -20px; width: 100%; height: 100%; border: 1px solid var(--c-gold); z-index: -1; opacity: 0.5; }

/* Texto */
.italic-gold { font-family: var(--font-display); font-style: italic; color: var(--c-gold); }
.gap-subtitle { font-size: 1.2rem; color: #d0dbe0; margin-top: 20px; line-height: 1.6; border-left: 2px solid var(--c-gold); padding-left: 20px; margin-bottom: 40px; }
.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: #d0dbe0; font-size: 1rem; transition: color 0.3s ease; }
.mistake-list li:hover { color: #fff; }
.mistake-list .bullet { color: #d14d4d; 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 Realidade */
.reality-block { background: #06161c; border: 1px solid rgba(207, 174, 125, 0.2); border-radius: 12px; padding: 60px; position: relative; 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; text-decoration-color: rgba(207, 174, 125, 0.5); }
.reality-check { color: #fff; font-size: 1.1rem; }
.reaction-steps { list-style: none; }
.reaction-steps li { margin-bottom: 12px; color: #d0dbe0; display: flex; gap: 10px; }
.reaction-steps li span { color: var(--c-gold); font-family: var(--font-display); }
.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; }
.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); } }

/* --- 8. FOOTER --- */
.site-footer { background-color: #02080a; 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; }
.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; }
.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); }
.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; }
.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; }
.btn-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--c-gold); 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; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.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: 1100px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
    .hero-grid, .about-grid, .gap-grid { grid-template-columns: 1fr; text-align: center; }
    .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; }
    .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%; }
    .gap-visual { margin-bottom: 40px; display: flex; justify-content: center; }
    .gap-img-frame img { max-width: 100%; max-height: 400px; }
}
@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; }
}
@media (max-width: 600px) {
    .cards-grid { grid-template-columns: 1fr; }
    .section-footer { flex-direction: column; text-align: center; gap: 30px; }
}