:root {
    --black: #050505;
    --gold: #D4AF37;
    --gold-light: #FDE08B;
    --white: #FFFFFF;
    --grey: #A0A0A0;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

/* ================== ESTRUTURA HERO ================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.video-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 1. Aumentamos o brilho de 0.25 para 0.55 para o vídeo aparecer muito mais */
    filter: grayscale(100%) brightness(0.55);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(5, 5, 5, 0.8) 0%, var(--black) 80%);
}

/* ================== GRID & LAYOUT ================== */
.main-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
}

/* ================== TEXTOS & EFEITOS ================== */
.hero-content {
    text-align: left;
    max-width: 700px;
}

.badge {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 700;
}

.headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

.glow-text {
    color: var(--gold-light);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.glow-text-soft {
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.manifesto p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 1.5rem;
}

.impact-text {
    font-size: 1.3rem !important;
    color: var(--white) !important;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.gold-brand {
    font-family: var(--font-serif);
    color: var(--gold);
    font-weight: 700;
    font-style: italic;
}

/* ================== BOTÃO PILL SHIMMER ================== */
.cta-area {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.btn-pill-shimmer {
    position: relative;
    width: fit-content;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
    color: var(--black);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1.5px;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.btn-pill-shimmer:hover { transform: translateY(-3px); }

.shimmer-effect {
    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);
    animation: constant-shimmer 3s infinite;
}

@keyframes constant-shimmer {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.scarcity-tag {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ================== IMAGEM & RESPONSIVIDADE ================== */
.hero-image { display: flex; justify-content: flex-end; }

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.expert-photo {
    width: 100%;
    display: block;
    filter: drop-shadow(-20px 0 50px rgba(0,0,0,0.5));
}

.expert-glow {
    position: absolute;
    top: 30%; left: 50%;
    width: 300px; height: 300px;
    background: var(--gold);
    filter: blur(130px);
    opacity: 0.15;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.hero-vignette {
    position: absolute;
    inset: 0;
    /* 2. Máscara ajustada: 
       - Lado esquerdo (texto): 90% escuro (leitura perfeita)
       - Meio: 70% escuro
       - Lado direito (foto): Apenas 20% escuro, revelando todo o cenário do vídeo 
    */
    background: linear-gradient(90deg, 
        rgba(7, 7, 7, 0.95) 0%, 
        rgba(7, 7, 7, 0.7) 50%, 
        rgba(7, 7, 7, 0.2) 100%
    );
}
@media (max-width: 992px) {
    .hero-section { padding-top: 40px; }
    .hero-grid { grid-template-columns: 1fr; gap: 0; }
    
    .hero-image {
        order: -1;
        justify-content: center;
        margin-bottom: -100px; /* Puxa o texto para cima da foto */
    }

    .expert-photo {
        max-width: 400px;
        mask-image: linear-gradient(to bottom, black 60%, transparent 95%);
        -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 95%);
    }

    .hero-content {
        text-align: center;
        margin-top: 0;
        max-width: 100%;
    }

    .cta-area { align-items: center; }
    .btn-pill-shimmer { width: 100%; }
}

/* ================== FAIXA DIVISÓRIA (MARQUEE) ================== */
.luxury-divider-marquee {
    position: relative;
    background: #0A0A0A; /* Um tom de preto minimamente mais claro para destacar do fundo */
    border-top: 1px solid rgba(212, 175, 55, 0.15); /* Linha dourada subtil no topo */
    border-bottom: 1px solid rgba(212, 175, 55, 0.15); /* Linha dourada subtil na base */
    padding: 1.5rem 0;
    overflow: hidden;
    display: flex;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8); /* Sombra para dar profundidade */
    z-index: 20;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    /* Aumente ou diminua os 30s para ajustar a velocidade do letreiro */
    animation: scroll-marquee 30s linear infinite; 
}

.marquee-track span {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic; /* O itálico na fonte serifada dá um ar de assinatura de luxo */
    color: var(--gold);
    letter-spacing: 2px;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    gap: 3rem; /* Distância exata entre o texto e o losango */
}

.marquee-track span i {
    font-size: 0.4rem;
    color: rgba(255, 255, 255, 0.2); /* Losango muito subtil para não roubar a atenção */
}

/* O loop infinito */
@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
    /* Translada 50% porque o nosso HTML tem o conteúdo duplicado, criando a ilusão de infinito */
}

/* ================== SESSÃO ULTRA PREMIUM: O EVENTO ================== */
.event-ultra-premium {
    /* Preto base (caso o vídeo falhe) */
    background-color: #020202; 
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

/* --- O NOVO VÍDEO DE FUNDO --- */
.event-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.event-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Reduz um pouco o contraste e saturação para não parecer um elemento barato */
    filter: brightness(0.7) contrast(1.2); 
}

.event-video-overlay {
    position: absolute;
    inset: 0;
    /* Gradiente Inteligente: 100% preto no topo e base. No meio, desce para 75% preto, deixando o vídeo vazar */
    background: linear-gradient(
        180deg, 
        #020202 0%, 
        rgba(2, 2, 2, 0.75) 40%, 
        rgba(2, 2, 2, 0.75) 60%, 
        #020202 100%
    );
    z-index: 1;
}

/* --- LUZES E MALHA SOBRE O VÍDEO --- */
.luxury-bg-grid {
    position: absolute;
    inset: 0;
    background-size: 60px 60px;
    background-image: 
        linear-gradient(to right, rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
    z-index: 2; /* Acima do vídeo overlay */
    pointer-events: none;
}

.ambient-glow-left {
    position: absolute;
    top: 20%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    z-index: 3;
    pointer-events: none;
}

.ambient-glow-right {
    position: absolute;
    bottom: -10%; right: -10%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    z-index: 3;
    pointer-events: none;
}

/* Container do Conteúdo (Garante que fica tudo por cima do vídeo) */
.event-ultra-premium .container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ================== SESSÃO ULTRA PREMIUM: O EVENTO ================== */
.event-ultra-premium {
    /* Preto Abissal como base */
    background-color: #020202; 
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

/* --- FUNDO MULTICAMADAS --- */
/* 1. Malha (Grid) Subtil de Fundo */
.luxury-bg-grid {
    position: absolute;
    inset: 0;
    background-size: 60px 60px;
    background-image: 
        linear-gradient(to right, rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
    z-index: 1;
    pointer-events: none;
}

/* 2. Luzes Volumétricas (Dourado Profundo) */
.ambient-glow-left {
    position: absolute;
    top: 20%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.ambient-glow-right {
    position: absolute;
    bottom: -10%; right: -10%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.event-ultra-premium .container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- CABEÇALHO (SIMETRIA PERFEITA) --- */
.event-intro {
    max-width: 900px;
    margin: 0 auto 5rem auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* Força tudo ao centro */
    text-align: center;
}

.gold-tag {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 20px;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.05);
}

.display-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.15;
    color: #FFF;
    margin-bottom: 2rem;
}

.brand-name {
    color: var(--gold);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    font-style: italic;
}

.manifesto-lead {
    font-size: 1.35rem;
    color: #A3A3A3;
    line-height: 1.7;
    max-width: 750px;
}

.light-highlight {
    color: #FFF;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* --- GRID E CARDS DE CRISTAL --- */
.glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 5rem;
}

.glass-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8) 0%, rgba(5, 5, 5, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    position: relative;
    text-align: center; /* Mantém o card perfeitamente equilibrado */
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.glass-card:hover {
    transform: translateY(-15px);
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.1);
}

.icon-glow {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    transition: transform 0.4s ease;
}

.glass-card:hover .icon-glow {
    transform: scale(1.1);
}

.glass-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #FFF;
}

.glass-card p {
    color: #999;
    line-height: 1.7;
    font-size: 1.1rem;
}

.glass-card p strong {
    color: var(--gold-light);
}

/* Borda de luz animada estilo Neon Líquido */
.edge-light {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 24px;
    border: 1.5px solid transparent;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-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;
    transition: opacity 0.4s ease;
}

.glass-card:hover .edge-light {
    opacity: 1;
    background: conic-gradient(from 0deg at 50% 50%, transparent 70%, var(--gold) 100%);
    animation: rotate-border 3s linear infinite;
}

@keyframes rotate-border {
    to { transform: rotate(360deg); }
}

/* --- BOTÃO E ÁREA DE AÇÃO --- */
.action-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pill-button-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, #A67C00 100%);
    color: #000;
    padding: 1.4rem 4.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pill-button-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.shimmer-line {
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    transform: skewX(-25deg);
    animation: auto-shimmer 3.5s infinite;
}

@keyframes auto-shimmer {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.scarcity-hint {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scarcity-hint i {
    color: var(--gold);
    margin-right: 5px;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .event-ultra-premium {
        padding: 80px 0;
    }

    .glass-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .glass-card {
        padding: 3rem 2rem;
    }

    .pill-button-gold {
        width: 100%;
        padding: 1.4rem 2rem;
    }
}


/* ================== SESSÃO: OS 5 PILARES (EMPILHAMENTO PREMIUM) ================== */
.pillars-premium-section {
    background-color: #030303; /* Um tom quase idêntico ao fundo, mas levemente diferente para criar contraste */
    padding: 140px 0 0 0;
    position: relative;
    /* IMPORTANTE: Nunca usar overflow: hidden aqui, senão o empilhar (sticky) deixa de funcionar */
    z-index: 20; 
}

.pillars-bg-ambient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at top center, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.pillars-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem auto;
    position: relative;
    z-index: 10;
}

/* --- A MÁGICA DO EMPILHAMENTO (STICKY DECK) --- */
.sticky-deck-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 20vh; /* Respiro final antes de sair da secção */
    
    /* Cria as "pistas de rolagem" entre cada cartão */
    display: flex;
    flex-direction: column;
    gap: 40vh; /* Espaço que o utilizador tem de rolar para o próximo cartão subir */
    z-index: 10;
}

.stack-card {
    position: sticky;
    /* Cada cartão vai parar a uma altura diferente no ecrã para criar a escadinha */
    border-radius: 24px;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.9); /* Sombra pesada para dar profundidade ao sobrepor */
    overflow: hidden;
    background: linear-gradient(145deg, #0f0f0f 0%, #050505 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* As posições exatas no ecrã e a ordem de sobreposição (Z-Index) */
.card-1 { top: 15vh; z-index: 1; }
.card-2 { top: 18vh; z-index: 2; }
.card-3 { top: 21vh; z-index: 3; }
.card-4 { top: 24vh; z-index: 4; }
.card-5 { top: 27vh; z-index: 5; }

/* --- DESIGN INTERNO DO CARTÃO --- */
.card-glass-content {
    position: relative;
    padding: 4rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.card-watermark {
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 15rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(212, 175, 55, 0.03); /* Marca de água gigante e subtil */
    pointer-events: none;
    z-index: 0;
}

.card-grid {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.icon-side {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.glow-icon {
    font-size: 2.2rem;
    color: var(--gold);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.text-side h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #FFF;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.text-side p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #A0A0A0;
}

.text-side p strong {
    color: #E5E5E5;
    font-weight: 600;
}

/* --- EFEITO DE LUZ DOURADA NO TOPO DO CARTÃO --- */
.card-top-light {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.7;
}

.card-top-light::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, #FFF, transparent);
    box-shadow: 0 0 15px #FFF, 0 0 30px var(--gold);
    animation: light-beam 5s linear infinite;
}

@keyframes light-beam {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 992px) {
    .card-glass-content {
        padding: 2.5rem 1.5rem;
    }

    .card-grid {
        grid-template-columns: 1fr; /* O ícone fica em cima no telemóvel */
        gap: 20px;
        text-align: left;
    }

    .card-watermark {
        font-size: 8rem;
        top: 10px;
    }

    .text-side h3 {
        font-size: 1.6rem;
    }

    .text-side p {
        font-size: 1.1rem;
    }

    /* Ajuste da escada no telemóvel para não engolir o texto todo */
    .card-1 { top: 12vh; }
    .card-2 { top: 14vh; }
    .card-3 { top: 16vh; }
    .card-4 { top: 18vh; }
    .card-5 { top: 20vh; }
    
    .sticky-deck-wrapper {
        gap: 30vh; /* Pista de rolagem mais curta no telemóvel */
    }
}

/* ================== COMPONENTE: SEPARADOR DE LUXO ================== */
.luxury-line-separator {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Mantém a largura máxima do seu conteúdo */
    margin: 80px auto; /* 80px de respiro acima e abaixo. Pode aumentar se quiser! */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    overflow: hidden; /* Garante que a luz não saia dos limites laterais */
    padding: 10px 0; /* Área extra para a sombra do brilho não ser cortada */
}

/* As Linhas Laterais */
.line-base {
    flex-grow: 1;
    height: 1px;
}

.line-base.left {
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.4) 100%);
}

.line-base.right {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.4) 0%, transparent 100%);
}

/* O Diamante Central Pulsante */
.center-diamond {
    color: var(--gold, #D4AF37);
    font-size: 0.85rem;
    margin: 0 20px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8));
    animation: pulse-diamond 3s infinite alternate;
}

@keyframes pulse-diamond {
    0% { filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.4)); transform: scale(0.95); }
    100% { filter: drop-shadow(0 0 15px rgba(212, 175, 55, 1)); transform: scale(1.05); }
}

/* O Tiro de Luz que percorre a linha */
.moving-flare {
    position: absolute;
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    width: 200px;
    height: 2px;
    /* Centro branco reluzente esfumaçando para as pontas */
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px var(--gold, #D4AF37);
    animation: flare-traverse 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    pointer-events: none;
}

@keyframes flare-traverse {
    0% { left: -30%; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { left: 130%; opacity: 0; }
}

/* ================== SESSÃO FINAL: NEUROMARKETING ================== */
.neuro-cta-section {
    position: relative;
    padding: 140px 0;
    background-color: #030303;
    overflow: hidden;
    display: flex;
    justify-content: center;
    z-index: 10;
}

/* O "Holofote" que guia o olho do usuário para o centro da tela */
.neuro-spotlight {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.container-neuro {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 2rem;
    text-align: center;
}

/* --- O Gatilho de Urgência (Ponto Pulsante) --- */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 2.5rem;
}

.pulsing-dot {
    width: 8px; height: 8px;
    background-color: #ff4d4d; /* Vermelho alerta para neuromarketing */
    border-radius: 50%;
    box-shadow: 0 0 10px #ff4d4d;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 77, 77, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}

/* --- Mega Headline --- */
.mega-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    color: #FFF;
    margin-bottom: 1.5rem;
}

.gold-gradient-text {
    background: linear-gradient(90deg, #FDE08B 0%, #D4AF37 50%, #A67C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 5px; /* Evita cortar fontes serifadas no gradiente */
}

.neuro-manifesto {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #A0A0A0;
    max-width: 750px;
    margin: 0 auto 4rem auto;
}

.neuro-manifesto strong { color: #FFF; }
.neuro-manifesto em { color: var(--gold); font-style: normal; }

/* --- Painel de Logística --- */
.logistics-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 4rem;
}

.log-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.log-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(25, 25, 25, 0.8);
}

.log-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.log-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 0.5rem;
}

.log-data {
    font-size: 1.2rem;
    color: #FFF;
    font-weight: 700;
}

.highlight-log {
    border-color: rgba(212, 175, 55, 0.4);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.highlight-log .log-data { color: var(--gold-light); }

/* --- Botão CTA --- */
.btn-neuro-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, #A67C00 100%);
    color: #000;
    padding: 1.5rem 4rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.btn-neuro-gold:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
}

.shimmer-fast {
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-25deg);
    animation: neuro-shimmer 2.5s infinite;
}

@keyframes neuro-shimmer {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.safe-checkout {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #666;
}

.safe-checkout i { color: var(--gold); margin-right: 5px; }

/* --- Responsividade Mobile --- */
@media (max-width: 768px) {
    .neuro-cta-section { padding: 100px 0; }
    .logistics-panel { grid-template-columns: 1fr; gap: 15px; }
    .log-card { padding: 1.5rem; flex-direction: row; justify-content: flex-start; gap: 20px; text-align: left; }
    .log-card i { margin-bottom: 0; font-size: 1.8rem; }
    .log-info { display: flex; flex-direction: column; }
    .btn-neuro-gold { width: 100%; padding: 1.4rem 1rem; font-size: 1rem; }
}

/* ================== MOTOR DE ANIMAÇÃO GLOBAL (BLUR-IN) ================== */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98); /* Desce ligeiramente e encolhe um milímetro */
    filter: blur(12px); /* Desfoque inicial forte */
    /* Curva de transição de luxo: começa rápido e suaviza infinitamente no final */
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
                filter 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform, filter; /* Otimiza a performance da placa gráfica */
}

/* Quando o JavaScript ativa o elemento */
.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* ================== FOOTER DESIGN ================== */
.main-footer {
    background-color: #050505;
    padding: 60px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.footer-tagline {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 30px;
}

.footer-social {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-social a {
    color: #FFF;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.footer-social a:hover {
    color: var(--gold);
    opacity: 1;
    transform: translateY(-3px);
}

.footer-info {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    color: #444;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

/* ================== BOTÃO VOLTAR AO TOPO ================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    opacity: 0; /* Invisível por padrão */
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background-color: var(--gold-light);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

/* ================== FAIXA DE URGÊNCIA (TOP BAR) ================== */
.top-urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px; /* Altura fina para manter a elegância */
    /* Gradiente Ouro Metálico */
    background: linear-gradient(90deg, #A67C00 0%, #D4AF37 50%, #A67C00 100%);
    z-index: 10000; /* Acima de tudo */
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(212, 175, 55, 0.5);
}

.urgency-marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 25s linear infinite; /* Velocidade elegante */
}

.urgency-marquee span {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    color: #000; /* Contraste máximo no fundo ouro */
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.urgency-marquee i {
    font-size: 0.8rem;
}

/* Animação de Scroll Infinito */
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Ajuste vital: Empurra o site para baixo para não ser coberto pela faixa */
body {
    padding-top: 35px;
}