/* =========================================
   1. VARIÁVEIS E CONFIGURAÇÕES GLOBAIS
   ========================================= */
:root {
    /* --- PALETA DE CORES --- */
    --bg-petrol: #011414;      /* Cor Base Principal */
    --bg-petrol-dark: #000a0a; /* Cor para sombras/profundidade */
    
    /* --- METAIS E OURO --- */
    --gold-simple: #d4af37;
    --gold-start: #c5a059;
    --gold-end: #b88a2d;
    
    /* Gradiente Rico (Botões e Textos Especiais) */
    --gold-grad-rich: linear-gradient(135deg, #bf953f 0%, #fcf6ba 40%, #b38728 60%, #fbf5b7 100%);
    
    /* Sombra Dourada */
    --gold-shadow: rgba(191, 149, 63, 0.4);

    /* --- TIPOGRAFIA --- */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-petrol);
    font-family: var(--font-sans);
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- TEXTURAS GLOBAIS --- */
.noise-texture {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 2;
    opacity: 0.5;
}

/* --- UTILITÁRIOS --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

/* Classe Otimizada para Animação de Entrada (Performance GPU) */
.reveal-blur {
    opacity: 0;
    /* Desfoque leve para não travar, mas visível */
    filter: blur(10px); 
    /* Começa um pouco menor e abaixo */
    transform: translateY(30px) scale(0.98); 
    /* Avisa o navegador para usar a placa de vídeo (Performance) */
    will-change: opacity, transform, filter; 
}

/* =========================================
   2. COMPONENTES DO DESIGN SYSTEM
   ========================================= */

/* --- BOTÃO "ULTIMATE GOLD" --- */
.btn-gold-ultimate {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 22px 50px;
    background: var(--gold-grad-rich);
    background-size: 300% 100%;
    border-radius: 100px;
    text-decoration: none;
    color: #010a0a;
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px var(--gold-shadow);
    transition: all 0.5s ease;
    overflow: hidden;
    animation: goldShift 6s infinite linear;
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-gold-ultimate::after {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    transform: skewX(-20deg);
    animation: shineSweep 4s infinite 3s;
}

.btn-glow-inner {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

.btn-gold-ultimate:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(252, 246, 186, 0.4);
}
.btn-gold-ultimate:hover .btn-glow-inner { opacity: 1; }

/* --- BADGE "MENTORIA ASSINADA" --- */
.badge-signature {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(0, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold-simple);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.badge-signature::before {
    content: '';
    display: block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background-color: var(--gold-simple);
    box-shadow: 0 0 10px var(--gold-simple);
    animation: pulseBadge 2s infinite;
}


/* =========================================
   3. SESSÃO HERO (PRINCIPAL)
   ========================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, #032525 0%, var(--bg-petrol-dark) 80%);
}

.bg-watermark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: 22vw;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
}

.mobile-glow {
    position: absolute;
    top: 15%; left: 50%;
    transform: translateX(-50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    display: none; 
}

/* GRID */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    align-items: center; 
    gap: 40px;
    height: 100%;
}

/* Coluna Texto */
.content-col { position: relative; z-index: 20; }

.expert-tag {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--gold-simple);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 25px;
}

.line-gold { width: 40px; height: 1px; background: var(--gold-simple); }

.headline-main {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
}

.gold-text-serif {
    font-family: var(--font-serif);
    font-weight: 700;
    font-style: italic;
    color: var(--gold-simple);
    background: var(--gold-grad-rich);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subhead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 400;
}

.white-highlight { color: #fff; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.3); }

.promise-box {
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold-simple);
    padding: 15px 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
    border-radius: 0 4px 4px 0;
}

.promise-box p { font-size: 0.95rem; color: #e0e0e0; margin: 0; }
.promise-box strong { color: var(--gold-simple); }

.hero-body-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
}

.mt-small { margin-top: 15px; display: block; }
.gold-text { color: var(--gold-simple); }

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.lock-info {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Coluna Imagem */
.image-col {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
    margin-right: -5%; /* Desktop overlap */
}

.image-wrapper {
    position: relative;
    width: 130%; /* Imagem grande no desktop */
    max-width: 950px;
}

.expert-photo {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 40px rgba(0,0,0,0.6));
    object-fit: contain;
}

.image-col .badge-signature { position: absolute; top: 20%; right: 15%; }

.mobile-gradient-overlay {
    display: none;
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 40%;
    background: linear-gradient(to bottom, transparent 0%, var(--bg-petrol) 100%);
    z-index: 5;
}


/* =========================================
   4. SESSÃO 2: A RAIZ DO DESGASTE
   ========================================= */
.wear-section {
    position: relative;
    padding: 120px 20px;
    background-color: var(--bg-petrol);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wear-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?q=80&w=2071&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    filter: blur(8px) grayscale(100%);
    opacity: 0.4;
    transform: scale(1.1);
    z-index: 0;
}

.wear-overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(1, 20, 20, 0.85) 0%, var(--bg-petrol) 100%);
    z-index: 1;
}

.wear-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.gold-overline {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--gold-simple);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.wear-headline {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 50px;
    font-weight: 300;
}

.text-white { color: #fff; font-weight: 700; }

.gold-serif-italic.animated-text-shine {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    margin-top: 10px;
    background: linear-gradient(110deg, #b88a2d 10%, #d4af37 30%, #ffffff 45%, #ffffff 55%, #d4af37 70%, #b88a2d 90%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 5s linear infinite;
}

.wear-body {
    display: flex;
    justify-content: center;
    gap: 30px;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.gold-vertical-line.animated-line-flow {
    position: relative;
    width: 3px;
    background: rgba(212, 175, 55, 0.15);
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

.gold-vertical-line.animated-line-flow::after {
    content: '';
    position: absolute;
    top: -50%; left: 0; width: 100%; height: 40%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.9), transparent);
    opacity: 0.8;
    animation: dropLight 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.text-block p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
}

.paragraph-lead {
    font-size: 1.25rem !important;
    color: #fff !important;
    font-weight: 400 !important;
}

.text-block strong { color: #fff; border-bottom: 1px solid rgba(212, 175, 55, 0.3); }


/* =========================================
   5. SESSÃO 3: O GARGALO (CORRIGIDA & PREMIUM)
   ========================================= */
.bottleneck-section {
    position: relative;
    padding: 120px 20px;
    background-color: var(--bg-petrol-dark);
    overflow: hidden;
}

/* Fundo da Sessão 3 */
.bottleneck-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1461360228754-6e81c478b882?q=80&w=2074&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(1.2);
    opacity: 0.15;
    z-index: 0;
}

.bottleneck-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, var(--bg-petrol) 10%, rgba(1, 20, 20, 0.8) 100%);
    z-index: 1;
}

/* Header Sessão 3 */
.bottleneck-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 10;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.15;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 400;
}

.gold-text-serif.text-glow {
    font-family: var(--font-serif);
    font-weight: 700;
    font-style: italic;
    color: var(--gold-simple);
    background: var(--gold-grad-rich);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3); 
    display: block;
    margin-top: 10px;
}

.section-sub {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.6;
}

/* --- GRID DE CARDS PREMIUM --- */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 70px;
    position: relative;
    z-index: 10;
}

.pain-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    
    /* ESTADO INICIAL (Manual, pois o JS controla o Stagger) */
    opacity: 0;
    filter: blur(10px); /* O Desfoque Inicial */
    transform: translateY(40px);
    will-change: opacity, transform, filter;
    
    transition: transform 0.3s ease, background 0.3s ease, border 0.3s ease;
}

/* Ícones Dourados (Remix Icon) */
.icon-wrapper {
    width: 50px; height: 50px;
    background: rgba(1, 20, 20, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
}

.icon-gold {
    font-size: 1.5rem;
    background: var(--gold-grad-rich);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transition: transform 0.4s ease;
}

.pain-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 12px;
}

.pain-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Hover Cards */
.pain-card:hover {
    transform: translateY(-5px) scale(1) !important;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border-color: rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.pain-card:hover .icon-wrapper {
    border-color: var(--gold-simple);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.pain-card:hover .icon-gold {
    transform: scale(1.1);
    filter: brightness(1.2); 
}

/* Brilho na borda */
.card-border-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 12px;
    pointer-events: none;
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0);
    transition: 0.4s;
}
.pain-card:hover .card-border-glow { box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.1); }

/* Footer Sessão 3 */
.bottleneck-footer {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.solution-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-centered { display: flex; justify-content: center; }


/* =========================================
   6. KEYFRAMES (ANIMAÇÕES)
   ========================================= */
@keyframes goldShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shineSweep {
    0% { left: -150%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 150%; opacity: 0; }
}

@keyframes pulseBadge {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    100% { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
}

@keyframes textShine {
    to { background-position: 200% center; }
}

@keyframes dropLight {
    0% { top: -50%; opacity: 0; }
    30% { opacity: 1; }
    100% { top: 120%; opacity: 0; }
}


/* =========================================
   7. RESPONSIVIDADE (MOBILE FIRST RULES)
   ========================================= */

/* Tablet e Notebooks Pequenos */
@media (max-width: 1200px) {
    .image-wrapper {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 1024px) {
    .pain-grid { grid-template-columns: 1fr 1fr; }
    .pain-card:last-child { grid-column: span 2; }
}

/* Mobile (Smartphones) */
@media (max-width: 960px) {
    /* 1. Reset da Sessão Hero */
    .hero-section {
        padding-top: 40px;
        padding-bottom: 60px;
        height: auto;
        min-height: 100vh;
        align-items: flex-start;
    }

    /* 2. Grid vira Flexbox Vertical */
    .hero-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    /* 3. Ordem Visual: Imagem Primeiro */
    .mobile-order-1 {
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        margin-bottom: -40px;
        z-index: 5;
    }

    .mobile-order-2 {
        order: 2;
        width: 100%;
        z-index: 10;
    }

    /* 4. Reset do Wrapper da Imagem */
    .image-col { margin-right: 0; }
    
    .image-wrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .expert-photo {
        width: 100%;
        height: auto;
        -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    }

    .mobile-gradient-overlay { display: block; }
    .mobile-glow { display: block; }

    /* 5. Badge */
    .image-col .badge-signature {
        position: absolute;
        top: auto;
        bottom: 80px;
        right: 50%;
        transform: translateX(50%);
        white-space: nowrap;
        z-index: 20;
    }

    /* 6. Conteúdo de Texto */
    .content-col {
        text-align: center;
        padding: 0 10px;
        margin-top: 20px;
    }

    .hero-content-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .expert-tag {
        justify-content: center;
        margin-bottom: 15px;
    }

    .headline-main {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-desc {
        font-size: 1rem;
        margin: 0 auto 30px;
    }

    /* 7. Botão e CTA */
    .cta-group { width: 100%; align-items: center; }

    .btn-gold-ultimate {
        width: 100%;
        max-width: 340px;
        padding: 18px 20px;
        font-size: 0.85rem;
    }

    .lock-info { justify-content: center; margin-top: 10px; }
    .promise-box { text-align: left; }

    /* Ajustes Sessão 2 */
    .wear-section { padding: 80px 20px; }
    .wear-headline { font-size: 1.8rem; }
    .gold-serif-italic.animated-text-shine { font-size: 2.2rem; background-size: 250% auto; }
    .wear-body { gap: 20px; }
    .text-block p { font-size: 1rem; }

    /* Ajustes Sessão 3 */
    .bottleneck-section { padding: 80px 20px; }
    .pain-grid { grid-template-columns: 1fr; }
    .pain-card:last-child { grid-column: span 1; }
    .section-title { font-size: 2rem; }
    .solution-text { font-size: 1rem; }
}

/* --- SESSÃO 4: CONFUSÃO VS CLAREZA --- */
.confusion-section {
    position: relative;
    padding: 120px 20px;
    background-color: var(--bg-petrol);
    overflow: hidden;
}

/* Fundo Abstrato (Caos) */
.confusion-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Imagem abstrata com geometria ou linhas */
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(1.3) blur(5px);
    opacity: 0.1;
    z-index: 0;
}

.confusion-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-petrol) 90%);
    z-index: 1;
}

.confusion-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 10;
}

/* --- GRID DE FRAGMENTOS (CHAOS CARDS) --- */
/* --- GRID DE FRAGMENTOS (COM BORDA ANIMADA INFINITA) --- */
.chaos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 10;
}

.chaos-card {
    position: relative;
    /* Removemos a borda sólida antiga para usar a animada */
    background: transparent; 
    padding: 3px; /* Espaço para a borda aparecer */
    border-radius: 6px;
    overflow: hidden; /* Mantém a luz dentro dos limites */
    
    /* Estado inicial para animação de entrada (JS) */
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    will-change: opacity, transform;
    transition: transform 0.3s ease;
    
    /* Garante que o conteúdo fique acima do fundo animado */
    z-index: 1;
}

/* 1. O Feixe de Luz (Fica girando atrás) */
.chaos-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    z-index: -2;
    
    /* O Gradiente Conico cria o efeito de radar/feixe */
    background: conic-gradient(
        transparent, 
        rgba(212, 175, 55, 0.1), 
        transparent 30%
    );
    
    /* Animação de rotação infinita */
    animation: rotateBorder 4s linear infinite;
}

/* 2. O Fundo do Cartão (Máscara interna) */
.chaos-card::after {
    content: '';
    position: absolute;
    inset: 1px; /* Define a espessura da borda (1px) */
    background: rgba(5, 20, 20, 0.95); /* Cor de fundo escura do cartão */
    border-radius: 4px;
    z-index: -1;
}

/* Texto e Conteúdo */
.chaos-card h4 {
    position: relative; /* Para ficar acima da máscara */
    z-index: 2;
    font-family: var(--font-serif);
    color: #fff;
    font-size: 1.2rem;
    margin: 25px 20px 10px; /* Ajuste de margem devido ao padding novo */
    letter-spacing: 0.5px;
}

.chaos-card p {
    position: relative;
    z-index: 2;
    font-family: var(--font-sans);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 20px 25px;
}

/* HOVER: Aumenta a velocidade e o brilho */
.chaos-card:hover {
    transform: translateY(-5px) scale(1) !important;
}

.chaos-card:hover::before {
    /* Luz fica mais forte e dourada no hover */
    background: conic-gradient(
        transparent, 
        var(--gold-simple), 
        transparent 30%
    );
    animation-duration: 2s; /* Gira mais rápido */
}

/* Efeito de Fragmento/Risco (Opcional - mantive dentro do card agora) */
.shard-effect {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

/* ANIMAÇÃO DE ROTAÇÃO */
@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .chaos-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .chaos-grid { grid-template-columns: 1fr; }
}
.chaos-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    z-index: -2;
    
    /* MUDANÇA AQUI: Usamos a cor dourada forte (var(--gold-simple)) direto */
    /* O feixe vai do transparente até o Dourado Sólido */
    background: conic-gradient(
        transparent, 
        transparent 60%, 
        var(--gold-simple) 100%
    );
    
    /* Animação contínua e suave */
    animation: rotateBorder 4s linear infinite;
}

/* Opcional: Se quiser que acelere um pouco no hover para dar feedback */
.chaos-card:hover::before {
    animation-duration: 2s; /* Gira mais rápido ao passar o mouse */
}
/* --- BLOCO DE CLAREZA (SOLUÇÃO) --- */
.clarity-block {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(0, 20, 20, 0.8); /* Fundo sólido escuro */
    text-align: center;
    z-index: 10;
}

/* Moldura Dourada Elegante */
.gold-border-frame {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: -1;
}

/* Detalhe nos cantos da moldura */
.gold-border-frame::after, .gold-border-frame::before {
    content: '';
    position: absolute;
    width: 15px; height: 15px;
    border: 1px solid var(--gold-simple);
    transition: 0.4s;
}
.gold-border-frame::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.gold-border-frame::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.clarity-block:hover .gold-border-frame::after, 
.clarity-block:hover .gold-border-frame::before {
    width: 100%; height: 100%; /* Borda se fecha no hover */
    opacity: 0.5;
}

.clarity-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.clarity-text {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .chaos-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .chaos-grid { grid-template-columns: 1fr; }
    
    .clarity-block { padding: 40px 20px; }
    
    .clarity-title { font-size: 1.5rem; }
    .clarity-text { font-size: 1rem; }
}

/* --- SESSÃO 5 V2: MISSÃO ABSTRATA (SEM FOTO) --- */
.mission-v2-section {
    position: relative;
    padding: 120px 20px;
    background-color: var(--bg-petrol);
    overflow: hidden;
}

/* Fundo Radial Centralizado */
.mission-bg-radial {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(1, 40, 40, 0.4) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

/* Header */
.mission-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 10;
}

.mission-title {
    font-family: var(--font-sans);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 300;
}

.mission-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* GRID LAYOUT */
.mission-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* --- COLUNA 1: PRESSÃO (LISTA) --- */
.col-label {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 30px;
    padding-left: 10px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.pressure-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pressure-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: 0.3s;
}

.pressure-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.icon-faded {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 3px;
}

.pressure-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* --- COLUNA 2: MONOLITO LEVITANTE (O ALÍVIO) --- */
.relief-col {
    display: flex;
    justify-content: center;
}

.levitating-monolith {
    position: relative;
    width: 100%;
    max-width: 450px;
    background: linear-gradient(145deg, rgba(5, 30, 30, 0.9), rgba(0, 10, 10, 0.95));
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    /* Animação de Flutuação */
    animation: floatMonolith 6s ease-in-out infinite;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Luz Dourada de Fundo (Glow) */
.monolith-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120%; height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    animation: pulseGlow 4s infinite alternate;
}

/* Borda Brilhante Fina */
.monolith-border {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(to bottom, var(--gold-simple), transparent, var(--gold-simple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}

/* Conteúdo do Monolito */
.monolith-content {
    position: relative;
    z-index: 2;
}

.icon-crown {
    font-size: 2.5rem;
    color: var(--gold-simple);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.monolith-content h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.gold-divider-small {
    width: 40px;
    height: 2px;
    background: var(--gold-grad-rich);
    margin: 0 auto 25px;
}

.monolith-content p {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.monolith-content strong {
    color: var(--gold-simple);
    font-weight: 600;
}

.mt-4 { margin-top: 20px; }

/* --- ANIMAÇÕES --- */
@keyframes floatMonolith {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulseGlow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 960px) {
    .mission-grid-v2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* No mobile, o Monolito vem DEPOIS do problema (ordem lógica) */
    .pressure-col {
        order: 1;
    }
    
    .relief-col {
        order: 2;
    }

    .levitating-monolith {
        padding: 40px 25px;
    }
}

/* ============================================================
   SESSÃO 6: QUEM SOU EU (CORRIGIDA - FUNDO PADRÃO)
   ============================================================ */

.about-compass-section {
    position: relative;
    padding: 140px 20px;
    background-color: var(--bg-petrol); /* Cor base de segurança */
    overflow: hidden;
}

/* --- 1. ARQUITETURA DE FUNDO (PADRÃO DEEP PETROL) --- */

/* Camada 1: Imagem Desfocada */
.about-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Imagem abstrata premium (Escura e Geométrica) */
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    /* O SEGREDO: Desfoque + Preto e Branco + Opacidade baixa */
    filter: blur(8px) grayscale(100%);
    opacity: 0.25; 
    transform: scale(1.1); /* Evita bordas brancas pelo blur */
    z-index: 0;
}

/* Camada 2: Gradiente da Cor da Página (Overlay) */
.about-overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Gradiente Radial que funde a imagem com a cor Petrol */
    background: radial-gradient(circle at 70% 50%, rgba(1, 20, 20, 0.6) 0%, var(--bg-petrol) 90%);
    z-index: 1;
}

/* Estrutura Giratória (Fica acima do fundo, abaixo do conteúdo) */
.compass-structure-bg {
    position: absolute;
    top: 50%; left: 25%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    opacity: 0.15; /* Sutil */
    pointer-events: none;
    z-index: 2; /* Acima do gradiente */
}

.bg-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.5);
}
.ring-1 { width: 100%; height: 100%; border-style: solid; }
.ring-dashed { width: 80%; height: 80%; border-style: dashed; }


/* --- 2. GRID E CONTEÚDO --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10; /* Conteúdo no topo */
}

/* --- 3. VISUAL (FOTO E BADGE) --- */
.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    z-index: 1;
}

.expert-portrait {
    width: 100%;
    height: auto;
    display: block;
    /* Filtro para integrar a foto ao ambiente */
    filter: sepia(10%) contrast(1.1) brightness(0.9);
}

.radar-scan {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(212, 175, 55, 0.1) 51%, transparent 52%);
    background-size: 100% 200%;
    animation: scanRadar 4s linear infinite;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* --- 4. BADGE FLUTUANTE (WRAPPER) --- */
.compass-badge-wrapper {
    position: absolute;
    bottom: 40px; 
    right: -30px; 
    z-index: 10;
    animation: floatBadge 4s ease-in-out infinite;
}

.compass-badge-3d {
    background: linear-gradient(145deg, rgba(5, 20, 20, 0.95), rgba(0, 10, 10, 0.98));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    overflow: hidden;
    /* Vidro Fosco no Card */
    backdrop-filter: blur(15px);
}

.light-sweep {
    position: absolute;
    top: 0; left: -150%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), rgba(212, 175, 55, 0.5), transparent);
    transform: skewX(-25deg);
    animation: goldSweep 5s infinite 2s;
    pointer-events: none;
}

.css-compass {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: conic-gradient(#b88a2d, #fcf6ba, #d4af37, #8e6d31, #b88a2d);
    padding: 2px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    flex-shrink: 0;
}

.compass-face {
    width: 100%; height: 100%;
    background: #000;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compass-needle {
    width: 6px; height: 28px;
    position: relative;
    z-index: 2;
    animation: seekNorth 6s ease-in-out infinite;
}

.compass-needle::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 50%;
    background: #d4af37; clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.compass-needle::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 50%;
    background: #7f8c8d; clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.glass-reflection {
    position: absolute; width: 100%; height: 100%; border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 60%);
    pointer-events: none;
}

.badge-text { display: flex; flex-direction: column; }
.badge-text .label { font-size: 0.65rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.badge-text .value { font-family: var(--font-serif); font-size: 1.1rem; color: #fff; line-height: 1; }


/* --- 5. TEXTO --- */
.about-content { position: relative; z-index: 2; }

.about-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.15;
    color: #fff;
    margin-bottom: 30px;
}

.about-body p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
}

.quote-box {
    position: relative;
    padding-left: 25px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.gold-bar {
    position: absolute; left: 0; top: 0; height: 100%; width: 3px;
    background: var(--gold-grad-rich);
}

.quote-box p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--gold-simple);
    margin: 0;
}

.expert-name-sig {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    letter-spacing: 1px;
}

/* --- 6. ANIMAÇÕES --- */
@keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
@keyframes floatBadgeMobile {
    0%, 100% { transform: translateX(50%) translateY(0px); }
    50% { transform: translateX(50%) translateY(-10px); }
}
@keyframes scanRadar {
    0% { background-position: 0% 0%; }
    100% { background-position: 0% 200%; }
}
@keyframes goldSweep {
    0% { left: -150%; opacity: 0; }
    20% { opacity: 1; }
    50% { left: 150%; opacity: 0; }
    100% { left: 150%; opacity: 0; }
}
@keyframes seekNorth {
    0% { transform: rotate(0deg); }
    30% { transform: rotate(15deg); }
    60% { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
}

/* --- 7. RESPONSIVIDADE --- */
@media (max-width: 960px) {
    .about-compass-section { padding: 80px 20px; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    
    .about-visual { 
        order: 1; width: 100%; max-width: 400px; margin: 0 auto; 
    }
    
    .compass-badge-wrapper {
        right: 50%;
        transform: translateX(50%); /* Centraliza */
        bottom: -25px;
        width: max-content;
        animation: floatBadgeMobile 4s ease-in-out infinite; 
    }
    
    .about-content { order: 2; text-align: left; }
    
    .compass-structure-bg { 
        width: 100%; left: 50%; opacity: 0.1; 
    }
}

/* ============================================================
   SESSÃO 7: A ESTRUTURA (EMPIRE GRID - VERSÃO DEEP PETROL)
   ============================================================ */

.structure-section {
    position: relative;
    padding: 120px 20px;
    background-color: var(--bg-petrol);
    overflow: hidden;
}

/* --- 1. FUNDO E ATMOSFERA --- */
.structure-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Textura Arquitetônica */
    background-image: url('https://images.unsplash.com/photo-1485627941502-d2e6429fa8af?q=80&w=2072&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    /* Efeito Vidro/Desfoque */
    filter: blur(8px) grayscale(100%);
    opacity: 0.2;
    transform: scale(1.1);
    z-index: 0;
}

.structure-overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Gradiente que funde com a cor do site */
    background: radial-gradient(circle at center, rgba(1, 30, 30, 0.6) 0%, var(--bg-petrol) 95%);
    z-index: 1;
}

/* --- 2. CABEÇALHO --- */
.structure-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 10;
}

.structure-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-top: 20px;
}

/* --- 3. GRID DO IMPÉRIO (LAYOUT) --- */
.empire-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 10;
}

/* --- 4. MÓDULO (CARD) --- */
.empire-module {
    position: relative;
    /* Fundo Transparente (o container apenas recorta) */
    background: transparent; 
    border-radius: 12px;
    overflow: hidden; /* Mantém a luz dentro */
    padding: 2px; /* Espaço para a borda aparecer */
    
    /* Configuração para Animação JS */
    opacity: 0;
    transform: translateY(30px);
    will-change: opacity, transform;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* A Borda Animada (Luz Correndo - SEMPRE VISÍVEL) */
.module-border-anim {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    
    /* Gradiente Cônico: Transparente -> Dourado Forte */
    background: conic-gradient(
        transparent, 
        transparent 60%, 
        rgba(212, 175, 55, 0.4) 80%,
        rgba(212, 175, 55, 1) 100%
    );
    
    /* Gira Infinitamente */
    animation: rotateBorder 4s linear infinite;
    z-index: 0;
    opacity: 1; 
}

/* CONTEÚDO INTERNO (A COR DEEP PETROL ESTÁ AQUI) */
.module-content {
    position: relative;
    
    /* CORREÇÃO: Gradiente Petróleo Translúcido (Não Preto) */
    background: linear-gradient(160deg, rgba(2, 35, 35, 0.9) 0%, rgba(1, 15, 15, 0.95) 100%);
    /* Efeito Vidro Fosco */
    backdrop-filter: blur(10px);
    
    border-radius: 10px;
    padding: 30px 25px;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Ícone (DOURADO POR PADRÃO) */
.module-icon {
    font-size: 2rem;
    color: var(--gold-simple); 
    margin-bottom: 20px;
    transition: 0.3s ease;
    /* Brilho suave */
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.module-icon i {
    display: inline-block;
    transition: transform 0.3s;
}

/* Tipografia */
.empire-module h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 12px;
}

.empire-module p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}


/* --- 5. EFEITOS DE HOVER --- */
.empire-module:hover {
    transform: translateY(-5px); /* Sobe */
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.empire-module:hover .module-border-anim {
    animation-duration: 1.5s; /* Acelera */
}

.empire-module:hover .module-icon {
    transform: scale(1.1); /* Cresce */
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8)); /* Brilha mais */
}


/* --- 6. DESTAQUE (ÚLTIMO ITEM) --- */
/* Luz Branca para Sustentação Emocional */
.highlight-module .module-icon {
    color: #fff; 
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}
.highlight-module .module-border-anim {
    background: conic-gradient(transparent, transparent 70%, #fff 100%);
}


/* --- 7. FOOTER DA SESSÃO --- */
.structure-footer {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-text-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.footer-text-box p {
    font-size: 1.15rem;
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

.footer-text-box strong { color: var(--gold-simple); }
.cta-centered { display: flex; justify-content: center; }


/* --- 8. ANIMAÇÃO --- */
@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* --- 9. RESPONSIVIDADE --- */
@media (max-width: 1024px) {
    .empire-grid {
        grid-template-columns: 1fr 1fr;
    }
    .empire-module:nth-child(7) {
        grid-column: span 2; /* Ocupa 2 colunas no tablet */
    }
}

@media (max-width: 768px) {
    .structure-section { padding: 80px 20px; }
    
    .empire-grid {
        grid-template-columns: 1fr; /* 1 coluna no mobile */
        gap: 20px;
    }
    
    .empire-module:nth-child(7) {
        grid-column: span 1;
    }
    
    .section-title { font-size: 2rem; }
    .footer-text-box { padding: 20px; }
}

@media (min-width: 1025px) {
    /* Centraliza o 7º item na grade de 3 colunas */
    .empire-module:nth-child(7) {
        grid-column: 2 / 3;
    }
}

/* ============================================================
   SESSÃO 8: EQUIPE (MINIMALISMO COM AVATARES)
   ============================================================ */

.team-section {
    position: relative;
    padding: 120px 20px;
    background-color: var(--bg-petrol-dark);
    overflow: hidden;
}

/* Fundo Suave */
.team-bg-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(1, 40, 40, 0.4) 0%, var(--bg-petrol-dark) 80%);
    z-index: 0;
}

/* Cabeçalho */
.team-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 10;
}

.team-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-top: 20px;
}

/* --- GRID DIRETÓRIO --- */
.team-directory {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px; /* Aumentei um pouco o gap */
    max-width: 1000px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 10;
}

/* --- CARD MINIMALISTA --- */
.team-card-minimal {
    position: relative;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px; /* Bordas um pouco mais arredondadas */
    padding: 35px 20px; /* Mais espaço interno */
    text-align: center;
    transition: all 0.4s ease;
    
    /* Prepara para JS */
    opacity: 0;
    transform: translateY(20px);
    will-change: opacity, transform;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* --- NOVO: AVATAR (FOTO) --- */
.member-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%; /* Círculo perfeito */
    overflow: hidden;
    margin-bottom: 20px; /* Espaço até o cargo */
    border: 2px solid rgba(255, 255, 255, 0.1); /* Borda sutil inicial */
    transition: all 0.4s ease;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a foto não distorça */
    filter: grayscale(100%); /* Começa Preto e Branco */
    opacity: 0.8; /* Levemente apagada */
    transition: all 0.4s ease;
}

/* Cargo (Role) */
.role-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    transition: color 0.3s;
}

/* Separador Dourado */
.gold-separator {
    width: 20px;
    height: 1px;
    background: var(--gold-simple);
    margin-bottom: 15px;
    transition: all 0.4s ease;
    opacity: 0.5;
}

/* Nome */
.member-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: #fff;
    font-weight: 400;
    margin: 0;
    transition: transform 0.3s;
}

/* --- HOVER EFFECTS (INTERAÇÃO COMPLETA) --- */
.team-card-minimal:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* Hover na Foto */
.team-card-minimal:hover .member-avatar {
    border-color: var(--gold-simple); /* Borda fica dourada */
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); /* Leve brilho */
}

.team-card-minimal:hover .member-avatar img {
    filter: grayscale(0%); /* Foto ganha cor */
    opacity: 1;
}

/* Hover nos Textos */
.team-card-minimal:hover .role-label { color: var(--gold-simple); }

.team-card-minimal:hover .gold-separator {
    width: 50px;
    opacity: 1;
    box-shadow: 0 0 10px var(--gold-simple);
}

.team-card-minimal:hover .member-name { transform: scale(1.05); }


/* --- FOOTER DA SESSÃO --- */
.team-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.team-footer p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* RESPONSIVIDADE */
@media (max-width: 960px) {
    .team-directory { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .team-directory { grid-template-columns: 1fr; gap: 20px; }
    .team-section { padding: 80px 20px; }
}

/* ============================================================
   SESSÃO 9: A TRANSFORMAÇÃO (FINAL & RESPONSIVA)
   ============================================================ */

.transformation-section {
    position: relative;
    padding: 120px 20px;
    background-color: var(--bg-petrol);
    overflow: hidden;
}

.transformation-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Gradiente sutil dividindo a tela (Escuro -> Claro) */
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(1, 40, 40, 0.2) 100%);
    z-index: 0;
}

/* HEADER DA SESSÃO */
.trans-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 10;
}

.text-faded {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through; /* Risco de "Cancelado" */
    text-decoration-color: rgba(255, 255, 255, 0.2);
}

/* --- TABELA DE COMPARAÇÃO --- */
.comparison-container {
    max-width: 1000px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 10;
    
    /* Configuração para o JS Reveal Blur */
    opacity: 0;
    transform: translateY(30px);
    will-change: opacity, transform;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* CABEÇALHOS DA TABELA */
.comparison-header-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Colunas iguais */
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
    align-items: end; /* Alinha na base */
}

/* Coluna Esquerda (Antes) */
.old-state h3 { 
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4); 
    margin-bottom: 10px;
}
.status-badge.bad {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
}

/* Coluna Direita (Agora - Com Ícone) */
.new-state {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.new-state h3 { 
    font-family: var(--font-serif);
    font-size: 1.8rem; /* Maior destaque */
    color: var(--gold-simple); 
    margin-bottom: 10px;
}
.status-badge.good {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-simple);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

/* --- ÍCONE DE CONSCIÊNCIA ANIMADA (CSS PURO) --- */
.consciousness-icon-wrapper {
    position: relative;
    width: 80px; 
    height: 80px;
    margin: 0 auto 20px; /* Centraliza acima do título */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 1. Aura (Fundo) */
.consciousness-glow {
    position: absolute;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: pulseAura 3s infinite alternate;
}

/* 2. Núcleo (Mente) */
.mind-core {
    width: 12px; height: 12px;
    background: var(--gold-simple);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
    z-index: 10;
    animation: pulseCore 2s ease-in-out infinite; 
}

/* 3. Órbitas (Estrutura) */
.mind-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.orbit-outer {
    width: 100%; height: 100%;
    border-top: 1px solid var(--gold-simple); /* Arco Dourado */
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    animation: spinOrbit 8s linear infinite;
}

.orbit-inner {
    width: 60%; height: 60%;
    border-left: 1px solid var(--gold-simple);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    animation: spinOrbit 4s linear infinite reverse; /* Gira ao contrário */
}


/* --- LINHAS DE COMPARAÇÃO --- */
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 50px 1fr;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.comparison-row:last-child { border-bottom: none; }

.comparison-row:hover {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
}

/* Lado Esquerdo (Ruim) */
.col-old { text-align: right; padding-right: 20px; }
.col-old p { font-size: 1rem; color: rgba(255, 255, 255, 0.4); }

/* Seta Central */
.col-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
}
.comparison-row:hover .col-arrow {
    color: var(--gold-simple);
    transform: translateX(3px);
    transition: 0.3s;
}

/* Lado Direito (Bom) */
.col-new {
    text-align: left;
    padding-left: 20px;
    position: relative;
}
/* Linha vertical de destaque no lado bom */
.col-new::before {
    content: '';
    position: absolute;
    left: 0; top: 10%; height: 80%; width: 1px;
    background: var(--gold-simple);
    opacity: 0.3;
}

.col-new p {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
}


/* --- FOOTER --- */
.trans-footer {
    text-align: center;
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    z-index: 10;
}

.trans-lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.mt-large { margin-top: 50px; }


/* --- KEYFRAMES (ANIMAÇÕES) --- */
@keyframes spinOrbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseCore {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
    50% { transform: scale(1.3); box-shadow: 0 0 25px rgba(212, 175, 55, 1); }
    100% { transform: scale(1); box-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
}

@keyframes pulseAura {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 0.8; transform: scale(1.1); }
}


/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 768px) {
    
    /* 1. Trazemos o cabeçalho de volta */
    .comparison-header-row {
        display: flex;
        justify-content: center; /* Centraliza o ícone */
        margin-bottom: 40px;
    }

    /* 2. Escondemos a coluna "Antes" do cabeçalho */
    .header-col.old-state {
        display: none;
    }

    /* 3. Exibimos a coluna "Agora" com o Ícone */
    .header-col.new-state {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    /* Ajuste leve no tamanho do ícone */
    .consciousness-icon-wrapper {
        transform: scale(0.9); 
        margin-bottom: 10px;
    }
    
    .new-state h3 { font-size: 1.5rem; }

    /* --- CARDS (LINHAS VIRAM BLOCOS) --- */
    .comparison-row {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 15px;
        background: rgba(255,255,255,0.02);
        margin-bottom: 20px;
        padding: 25px 20px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.05);
    }
    
    .col-old { 
        text-align: center; 
        padding: 0; 
        order: 1;
    }
    
    .col-arrow { 
        transform: rotate(90deg); /* Seta para baixo */
        order: 2;
        margin: 5px 0;
        color: rgba(255,255,255,0.1);
    }
    
    .col-new { 
        text-align: center; 
        padding: 0; 
        order: 3;
    }
    
    .col-new::before { display: none; }
    
    /* Texto da solução mais forte */
    .col-new p { 
        color: #fff; 
        font-size: 1.15rem;
    }
    
    .mt-large { margin-top: 30px; }
}

/* ============================================================
   SESSÃO 10: O PORTAL (GATE SECTION - PADRONIZADA)
   ============================================================ */
.gate-section {
    position: relative;
    padding: 140px 20px;
    background-color: var(--bg-petrol-dark);
    overflow: hidden;
    text-align: center;
}

/* Camada 1: Imagem Desfocada */
.gate-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Imagem Abstrata Escura */
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    filter: blur(8px) grayscale(100%);
    opacity: 0.2;
    z-index: 0;
}

/* Camada 2: Gradiente Profundo */
.gate-overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(1, 20, 20, 0.7) 0%, #000 90%);
    z-index: 0;
}

/* Partículas Douradas (Mantidas, ficam acima do fundo) */
.gold-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(var(--gold-simple) 1px, transparent 1px),
        radial-gradient(rgba(255,255,255,0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.15;
    animation: particlesMove 30s linear infinite;
    z-index: 1;
}

.gate-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.gate-headline {
    font-family: var(--font-serif); /* Fonte Padrão de Títulos */
    font-size: clamp(2rem, 5vw, 4rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 30px;
}

.gate-divider {
    width: 60px;
    height: 2px;
    background: var(--gold-grad-rich);
    margin: 0 auto 30px;
}

.gate-lead {
    font-family: var(--font-sans); /* Fonte Padrão de Corpo */
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 300;
}


/* ============================================================
   SESSÃO 11: O CONVITE (CLARITY - PADRONIZADA)
   ============================================================ */
.clarity-cta-section {
    position: relative;
    padding: 120px 20px;
    background-color: var(--bg-petrol);
}

.clarity-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Outra textura sutil */
    background-image: url('https://images.unsplash.com/photo-1485627941502-d2e6429fa8af?q=80&w=2072&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    filter: blur(8px) grayscale(100%);
    opacity: 0.15;
    z-index: 0;
}

.clarity-overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(1, 40, 40, 0.6) 0%, var(--bg-petrol) 100%);
    z-index: 1;
}

.clarity-box {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.clarity-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 40px;
}

.clarity-text {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 300;
}

.btn-wide { min-width: 320px; }


/* ============================================================
   SESSÃO 12: FAQ (ACORDEÃO GLASS PREMIUM)
   ============================================================ */
.faq-section {
    position: relative;
    padding: 120px 20px 160px;
    background-color: var(--bg-petrol-dark);
}

.faq-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    filter: blur(10px) grayscale(100%);
    opacity: 0.1;
    z-index: 0;
}

.faq-overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, var(--bg-petrol-dark) 0%, rgba(1, 20, 20, 0.6) 100%);
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espaço entre as perguntas */
}

/* Item Individual (Estilo Cartão de Vidro) */
.faq-item {
    background: rgba(255, 255, 255, 0.02); /* Vidro bem leve */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Pergunta */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: transparent;
    transition: background 0.3s;
}

.faq-question h3 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--gold-simple);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

/* Resposta */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 30px;
    background: rgba(0, 0, 0, 0.2); /* Fundo um pouco mais escuro na resposta */
}

.faq-answer p {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
    padding-top: 10px;
}

/* --- ESTADOS ATIVOS & HOVER --- */

/* Hover */
.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Ativo (Aberto) */
.faq-item.active {
    background: rgba(212, 175, 55, 0.05); /* Leve dourado */
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-item.active .faq-question h3 {
    color: var(--gold-simple);
    font-weight: 600;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Vira X */
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Altura suficiente */
    padding-bottom: 10px;
}

/* Animação Partículas */
@keyframes particlesMove {
    0% { background-position: 0 0, 25px 25px; }
    100% { background-position: 100px 100px, 125px 125px; }
}

@media (max-width: 768px) {
    .gate-headline { font-size: 2.2rem; }
    .clarity-title { font-size: 2rem; }
    .faq-question { padding: 20px; }
    .faq-question h3 { font-size: 1rem; }
}

/* ============================================================
   SESSÃO 13: FOOTER (PREMIUM & ANIMADO)
   ============================================================ */

.empire-footer {
    position: relative;
    padding: 80px 20px 40px;
    background-color: #000505; /* O tom mais escuro possível (quase preto) */
    overflow: hidden;
}

/* --- EFEITOS DE LUZ E FUNDO --- */

/* 1. Horizonte Animado (Linha superior) */
.footer-horizon-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, 
        var(--bg-petrol), 
        var(--gold-simple), 
        #fff, 
        var(--gold-simple), 
        var(--bg-petrol)
    );
    background-size: 200% 100%;
    animation: horizonFlow 6s linear infinite;
    z-index: 10;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); /* Glow na linha */
}

/* 2. Brilho de Fundo (Vindo de baixo) */
.footer-glow-bg {
    position: absolute;
    bottom: -50%; left: 0; width: 100%; height: 100%;
    /* Luz radial dourada/esverdeada bem suave */
    background: radial-gradient(circle at center, rgba(1, 40, 40, 0.6) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}


/* --- GRID DO FOOTER --- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Marca maior, links menores */
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 50px;
}

/* Coluna 1: Marca */
.footer-logo {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.gold-dot { color: var(--gold-simple); }

.footer-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 350px;
    margin-bottom: 30px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px; height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--gold-simple);
    color: var(--gold-simple);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Colunas de Links */
.footer-links-col h4, 
.footer-legal-col h4 {
    font-family: var(--font-serif);
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.footer-links-col ul { list-style: none; padding: 0; }
.footer-links-col li { margin-bottom: 15px; }

.footer-links-col a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}
.footer-links-col a:hover { color: var(--gold-simple); padding-left: 5px; }

/* Coluna Legal */
.footer-legal-col p { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; margin-bottom: 20px; }

.legal-links { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.legal-links a { color: rgba(255, 255, 255, 0.4); text-decoration: none; font-size: 0.85rem; transition: 0.3s; }
.legal-links a:hover { color: #fff; }

.copyright { font-size: 0.8rem; color: rgba(255, 255, 255, 0.3); line-height: 1.5; }


/* --- BOTÃO VOLTAR AO TOPO (CENTRALIZADO EMBAIXO) --- */
.footer-bottom-row {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.back-to-top-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

/* Círculo do Ícone */
.btn-icon {
    width: 24px; height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

/* Hover: Botão fica Dourado */
.back-to-top-btn:hover {
    border-color: var(--gold-simple);
    color: #fff;
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.back-to-top-btn:hover .btn-icon {
    background: var(--gold-simple);
    color: #000;
    transform: translateY(-3px); /* Ícone sobe indicando ação */
}


/* --- ANIMAÇÕES --- */
@keyframes horizonFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}


/* --- RESPONSIVIDADE --- */
@media (max-width: 960px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Coluna única */
        gap: 40px;
        text-align: center;
    }
    
    .footer-desc { margin: 0 auto 30px; }
    .footer-socials { justify-content: center; }
    
    .footer-links-col a:hover { padding-left: 0; color: var(--gold-simple); }
}
/* ============================================================
   FOOTER MINIMALISTA (CLEAN LUXURY)
   ============================================================ */

.empire-footer-minimal {
    position: relative;
    padding: 80px 20px 40px;
    background-color: #020202; /* Preto Profundo */
    overflow: hidden;
    text-align: center; /* Centraliza tudo */
}

/* --- EFEITOS VISUAIS --- */

/* Linha do Horizonte Animada */
.footer-horizon-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--gold-simple) 50%, 
        transparent 100%
    );
    opacity: 0.6;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    z-index: 10;
}

/* Brilho Atmosférico (Vindo de baixo) */
.footer-glow-bg {
    position: absolute;
    bottom: -100px; left: 50%; 
    transform: translateX(-50%);
    width: 60%; height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}


/* --- CONTEÚDO --- */
.footer-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px; /* Espaço entre as linhas */
}

/* 1. LINHA TOPO: Logo e Ícones */
.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 30px;
}

.footer-logo-min {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 3px;
    margin: 0;
}
.gold-dot { color: var(--gold-simple); }

.footer-socials-min {
    display: flex;
    gap: 20px;
}

.social-icon {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
}
.social-icon:hover {
    color: var(--gold-simple);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* 2. MEIO: Navegação Horizontal */
.footer-nav-min {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-nav-min a {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: 0.3s;
}

.footer-nav-min a:hover {
    color: var(--gold-simple);
}

.dot-separator {
    width: 4px; height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

/* 3. BASE: Copyright e Botão */
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    padding-top: 10px;
}

/* Botão Voltar ao Topo (Texto com Seta) */
.footer-back-top {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.footer-back-top:hover {
    color: var(--gold-simple);
}
.footer-back-top i {
    transition: transform 0.3s;
}
.footer-back-top:hover i {
    transform: translateY(-3px);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .footer-top-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-nav-min {
        flex-direction: column;
        gap: 15px;
    }
    .dot-separator { display: none; } /* Remove bolinhas no mobile */
    
    .footer-bottom-row {
        flex-direction: column-reverse; /* Botão topo acima do copyright */
        gap: 20px;
    }
}
/* ============================================================
   BOTÃO FLUTUANTE (GOLDEN ELEVATOR)
   ============================================================ */

.floating-btn-gold {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    
    /* Layout */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 9999; /* Acima de tudo */
    
    /* Aparência Inicial (Invisível) */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Fundo Vidro Escuro */
    background: rgba(5, 20, 20, 0.8);
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* CLASSE ATIVA (JS adiciona quando rolar a página) */
.floating-btn-gold.show-float {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- 1. O ANEL DE LUZ GIRATÓRIA --- */
.btn-ring-light {
    position: absolute;
    top: -2px; left: -2px;
    right: -2px; bottom: -2px;
    border-radius: 50%;
    z-index: -1; /* Fica atrás do ícone */
    
    /* Gradiente Cônico (O Segredo do Ouro Giratório) */
    background: conic-gradient(
        transparent, 
        transparent 20%, 
        var(--gold-simple) 50%, 
        transparent 80%
    );
    
    /* Máscara para deixar apenas a borda visível */
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px; /* Espessura da borda de luz */
    
    animation: rotateGoldLight 3s linear infinite;
}

/* --- 2. O ÍCONE --- */
.icon-wrapper {
    font-size: 1.5rem;
    color: var(--gold-simple);
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex; /* Centraliza o ícone */
}

/* --- 3. ONDA DE PULSO (CHAMA ATENÇÃO) --- */
.pulse-wave {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%;
    border: 1px solid var(--gold-simple);
    opacity: 0;
    z-index: -2;
    pointer-events: none;
    animation: pulseWave 3s infinite;
}


/* --- INTERAÇÃO (HOVER) --- */
.floating-btn-gold:hover {
    background: var(--gold-simple); /* Preenche de ouro */
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    transform: translateY(-5px); /* Flutua mais alto */
}

.floating-btn-gold:hover .icon-wrapper {
    color: #000; /* Ícone fica preto para contraste */
    transform: translateY(-3px); /* Seta sobe */
}

/* Acelera a luz no hover */
.floating-btn-gold:hover .btn-ring-light {
    animation-duration: 1s;
    background: conic-gradient(transparent, #fff, transparent); /* Luz vira brilho branco */
}


/* --- ANIMAÇÕES --- */
@keyframes rotateGoldLight {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseWave {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .floating-btn-gold {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    .icon-wrapper { font-size: 1.2rem; }
}

/* ============================================================
   FOOTER ULTRA-PREMIUM (SIGNATURE)
   ============================================================ */

.ultimate-footer {
    position: relative;
    padding: 100px 20px 60px; /* Espaço generoso */
    background-color: #000; /* Preto Absoluto para contraste */
    overflow: hidden;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- EFEITOS DE ATMOSFERA --- */

/* 1. Aura Central (Brilho atrás do texto) */
.footer-aura {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60%; height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

/* 2. Linha do Horizonte (Separação sutil no topo) */
.footer-horizon {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%
    );
}

/* --- CONTEÚDO --- */
.footer-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* A MARCA (O EFEITO DE LUZ) */
.brand-signature {
    font-family: var(--font-serif); /* Fonte Premium (Playfair) */
    font-size: clamp(2.5rem, 6vw, 4.5rem); /* Grande e Imponente */
    letter-spacing: 4px; /* Espaçamento de Luxo */
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    
    /* O Segredo do Ouro Brilhante */
    color: transparent;
    background: linear-gradient(
        110deg, 
        #8e6d31 10%, 
        #d4af37 30%, 
        #fffae3 45%, /* O Brilho Branco no meio */
        #d4af37 60%, 
        #8e6d31 90%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    
    /* Animação do Brilho Correndo */
    animation: shineText 6s linear infinite;
    
    /* Sombra para dar profundidade (Glow) */
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* O COPYRIGHT */
.copyright-minimal {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3); /* Bem discreto */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 300;
}


/* --- ANIMAÇÃO DO TEXTO --- */
@keyframes shineText {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .ultimate-footer { padding: 80px 20px 50px; }
    .brand-signature { letter-spacing: 2px; } /* Ajuste para não quebrar no mobile */
}