:root {
    --bg-page: #0d131a; 
    --bg-card: rgba(10, 20, 40, 0.65);
    --cobre-light: #e8cfa7;
    --cobre-mid: #cca073;
    --cobre-dark: #8c583c;
    --neon-cyan: #00f2fe;
    --text-silver: #E0E4E8;
    --btn-gradient: linear-gradient(90deg, #8c583c 0%, #cca073 35%, #ffffff 85%, #e8cfa7 100%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
}

/* 1. CORREÇÃO DO BODY E CONTAINER */
body {
    background-color: var(--bg-page);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column; /* Organiza o site como uma coluna */
    overflow-x: hidden;
    position: relative;
}

.scroll-content {
    flex: 1; /* Faz o conteúdo empurrar o rodapé para baixo */
}

/* O Fundo Fixo Premium */
.bg-image-layer {
    position: fixed; /* Isso força a imagem a não se mover nunca */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('assets/new.png');
    background-size: cover;
    background-position: center top; /* Começa exatamente no topo */
    background-attachment: fixed;    /* Garante que o fundo não role com a página */
    z-index: 0;
    opacity: 0.50;
    pointer-events: none;
}

/* O Conteúdo acima do fundo */
.scroll-content {
    position: relative;
    z-index: 2; /* Garante que o conteúdo fique sempre acima do fundo */
    min-height: 100vh;
}
/* =========================================
   HERO SECTION E LOGO MOEDA (Escala Dinâmica)
========================================= */
/* 2. DÁ ESPAÇO NO CONTEÚDO PARA NÃO FICAR COLADO NO TOPO */
/* Respiro para o topo não colar */
.hero-section {
    padding-top: 80px; 
    min-height: 90vh;
}

.coin-container.hero-logo {
    position: relative;
    
    /* SEU TAMANHO ORIGINAL RESTAURADO */
    width: 200px; 
    height: 200px;
    
    /* APENAS O AJUSTE DA ALTURA PARA BATER COM O FUNDO */
    margin: 55px auto 30px auto; 
    
    perspective: 1000px; 
    z-index: 10;
    display: block;
}

.coin-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1); 
    transform-style: preserve-3d; 
}

.coin-front, .coin-back {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden; 
    border-radius: 50%;
    overflow: hidden; 
    background-color: transparent;
    filter: drop-shadow(0 0 15px rgba(95, 163, 125, 0.4)); 
}

.coin-front img, .coin-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: transparent;
}

.coin-back {
    transform: rotateY(180deg);
}

/* Textos da Hero */
.chrome-text {
    margin-top: 80px;
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px; 
    background: var(--btn-gradient); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.8));
}

.hero-subtitle-container {
    display: flex;
    justify-content: center; 
    align-items: center;
    width: 100%;
    margin-top: 15px;
}

.hero-subtitle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center; /* Garante alinhamento perfeito */
    gap: 40px;           /* Aumentei levemente para as palavras respirarem */
    margin-top: 5px;     /* Subi um pouco para ficar mais perto do título */
    width: 100%;
}

.sub-item {
    background: var(--btn-gradient); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    font-size: 1.05rem;  /* Ajuste fino: um pouco menor para dar sofisticação */
    font-weight: 800;    /* Peso 800 é o ponto ideal entre o 700 e o 900 */
    text-transform: uppercase;
    letter-spacing: 2px; /* Ajuste fino no espaçamento */
    
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.6)); /* Sombra mais discreta */
    
    display: inline-block;
    padding: 0;
}
/* =========================================
   ÁREA DO BOTÃO (Com transparência e respiro)
========================================= */
.trusted-section {
    width: 100%;
    text-align: center;
    padding: 50px 20px;
    
    /* 50% de transparência (0.5) */
    background: rgba(0, 0, 0, 0.5); 
    
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin: 50px 0 150px 0; 
    position: relative; 
    z-index: 2; 
}


.trusted-title {
    font-size: 1.1rem; 
    font-weight: 700;
    letter-spacing: 4px; 
    color: #e6e6e6; 
    text-transform: uppercase;
    text-align: center;
    margin-top: -40px; 
    margin-bottom: 40px; 
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.9); 
}

.trusted-title:hover {
    transform: scale(1.15); 
    filter: drop-shadow(0px 8px 10px rgba(0, 0, 0, 0.9)); 
    cursor: default;
}

/* --- BOTÃO PRINCIPAL INICIAR INTEGRAÇÃO --- */
.cta-master-btn {
    background: var(--btn-gradient);
    color: #04090e; 
    border: none;
    padding: 12px 30px; 
    font-size: 0.9rem; 
    font-weight: 700; 
    letter-spacing: 3px; 
    cursor: pointer;
    border-radius: 3px; 
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 auto; 
    box-shadow: 0 4px 15px rgba(204, 160, 115, 0.3); 
}

.cta-master-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(204, 160, 115, 0.6);
    filter: brightness(1.1); 
}

.neon-dot {
    width: 8px;
    height: 8px;
    background-color: #04090e; 
    border-radius: 50%;
    animation: pulse-dot-dark 1.5s infinite;
}

@keyframes pulse-dot-dark {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

/* =========================================
   OVERLAY DO MODAL
========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(4, 9, 14, 0.8); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}
/* =========================================
   COMPORTAMENTO DO MODAL (Animações)
========================================= */
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-slide-in {
    transform: translateY(50px) scale(0.95);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
    position: relative; 
}

.modal-overlay.active .modal-slide-in {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-silver);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
}
/* =========================================
   BOTÃO DO MODAL (ESTILO COMPLETO E ALINHADO)
========================================= */
.premium-btn {
    /* Gradiente metálico */
    background: linear-gradient(90deg, #8c583c 0%, #cca073 40%, #ffffff 85%, #e8cfa7 100%);
    color: #04090e;
    border: none; 
    
    /* Força o botão a ter a largura total dos inputs */
    width: 100%; 
    padding: 15px 0; 
    
    font-size: 0.95rem; 
    font-weight: 800;
    letter-spacing: 3px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.4s ease;
    
    margin-top: 10px;
    display: block;
    
    box-shadow: 0 4px 15px rgba(140, 88, 60, 0.3);
    text-transform: uppercase;
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(140, 88, 60, 0.6);
    filter: brightness(1.1);
}


/* =========================================
   REFINAMENTO: ESTRUTURA DO CARD (MAIS ESTREITO)
========================================= */
#premiumModal .captacao-container {
    width: 90%;
    /* Reduzimos de 450px para 350px para deixar o card mais estreito */
    max-width: 400px; 
    
    background: linear-gradient(#020508, #020508) padding-box,
                linear-gradient(90deg, #8c583c 0%, #cca073 40%, #ffffff 85%, #e8cfa7 100%) border-box;
    border: 2px solid transparent; 
    border-radius: 5px;
    padding: 30px; 
    margin: 0 auto;
    transition: box-shadow 0.4s ease;
    text-align: center;
    position: relative;
}

/* O brilho "neon metálico" ao passar o mouse no cartão inteiro */
#premiumModal .captacao-container:hover {
    box-shadow: 0 0 30px rgba(204, 160, 115, 0.4);
}

/* 2. Cores e Tons dos Textos */
#formState h2 {
    color: #e8cfa7; /* O exato tom bege/ouro da sua imagem de referência */
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

#formState p {
    color: #e6e6e6 !important; /* Tom claro e limpo para o subtítulo */
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* 3. Formato dos Campos de Texto (Inspirados no Botão Slim) */
.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02); /* Fundo quase imperceptível */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Borda prateada/metálica sutil */
    color: #ffffff;
    padding: 12px 20px; /* Exatamente as medidas do botão */
    border-radius: 3px; /* A mesma curvatura do botão */
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-sizing: border-box;
    transition: all 0.4s ease;
}

/* O brilho metálico ao clicar no campo para digitar */
.form-group input:focus {
    outline: none;
    border-color: #ffffff;
    background: transparent;
    box-shadow: 0 0 15px rgba(204, 160, 115, 0.4); /* O neon metálico acende aqui também */
}

/* Ajuste na cor do placeholder (o texto "Nome Completo", etc) para ficar legível */
.form-group input::placeholder {
    color: #888888;
}

/* 2. Cores e Tons dos Textos */
#formState h2 {
    color: #e8cfa7; /* O exato tom bege/ouro da sua imagem de referência */
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

#formState p {
    color: #e6e6e6 !important; /* Tom claro e limpo para o subtítulo */
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* 3. Formato dos Campos de Texto (Inspirados no Botão Slim) */
.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02); /* Fundo quase imperceptível */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Borda prateada/metálica sutil */
    color: #ffffff;
    padding: 12px 20px; /* Exatamente as medidas do botão */
    border-radius: 3px; /* A mesma curvatura do botão */
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-sizing: border-box;
    transition: all 0.4s ease;
}

/* O brilho metálico ao clicar no campo para digitar */
.form-group input:focus {
    outline: none;
    border-color: #ffffff;
    background: transparent;
    box-shadow: 0 0 15px rgba(204, 160, 115, 0.4); /* O neon metálico acende aqui também */
}

/* Ajuste na cor do placeholder (o texto "Nome Completo", etc) para ficar legível */
.form-group input::placeholder {
    color: #888888;
}

#formState h2 {
    color: #e8cfa7; 
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

#formState p {
    color: #e6e6e6 !important; 
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02); 
    border: 1px solid rgba(255, 255, 255, 0.3); 
    color: #ffffff;
    padding: 12px 20px; 
    border-radius: 3px; 
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-sizing: border-box;
    transition: all 0.4s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ffffff;
    background: transparent;
    box-shadow: 0 0 15px rgba(204, 160, 115, 0.4); 
}

.form-group input::placeholder {
    color: #888888;
}

/* --- FEEDBACK DE VALIDAÇÃO (Borda de Erro/Acerto) --- */
.form-group input:not(:placeholder-shown):invalid {
    border-color: #ff3366; 
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.2);
    color: #ff3366; 
}

.form-group input:not(:placeholder-shown):invalid:focus {
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.5);
    outline: none;
}

.form-group input:not(:placeholder-shown):valid {
    border-color: rgba(0, 255, 136, 0.5); 
}

/* Botão Urgência estilo "Botão Mestre" */
.emergency-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #8c583c 0%, #cca073 40%, #ffffff 85%, #e8cfa7 100%);
    color: #04090e;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.4s ease;
}

/* A bolinha vermelha no botão de urgência */
.neon-dot-red {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ff0000; /* Vermelho alerta */
    border-radius: 50%;
    margin-left: 10px;
    box-shadow: 0 0 8px #ff0000;
}



/* =========================================
   RODAPÉ MINIMALISTA (MVP)
========================================= */


.chrome-text-small {
    font-size: 1.5rem;
    font-weight: 800;
    background-image: linear-gradient(to bottom, #fff, #8a8a8a);
    color: transparent;
    -webkit-background-clip: text;
}

/* O Rodapé (ajuste da margem negativa para não criar o vácuo preto) */
.site-footer {
    background: #020406;
    padding: 40px 5% 40px;
    position: relative;
    z-index: 2;
    margin-top: -30px; /* Ajuste este valor se ainda sobrar espaço vazio abaixo do rodapé */
    width: 100%;
}
/* =========================================
   EFEITOS FÍSICOS: LASER E MOEDA
========================================= */
.laser-track {
    position: absolute;
    /* Lembre-se de ajustar este valor para a mira do laser bater no centro da SUA imagem */
    top: 60%; 
    left: -50vw; 
    width: 200vw; 
    height: 1px;
    transform: translateY(-50%);
    z-index: 1; 
}

.laser-beam {
    position: absolute;
    top: -1px;
    left: -50%;
    width: 30vw;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(204, 160, 115, 0.8) 60%, #ffffff 100%);
    box-shadow: 0 0 15px #cca073, 0 0 30px rgba(204, 160, 115, 0.8);
    border-radius: 50px;
    animation: shootCoin 10s infinite ease-in-out; 
}

@keyframes shootCoin {
    0% { left: -50%; opacity: 1; }
    20% { left: 100%; opacity: 1; }
    21% { opacity: 0; left: 100%; }
    49% { opacity: 0; left: -50%; }
    50% { left: -50%; opacity: 1; }
    70% { left: 100%; opacity: 1; }
    71% { opacity: 0; left: 100%; }
    100% { opacity: 0; left: 100%; }
}

/* Animação que deve ser aplicada à .coin-inner (que já está no Bloco 1) */
.coin-inner {
    animation: flipCoinHit 10s infinite ease-in-out;
}

@keyframes flipCoinHit {
    0%, 9% { transform: rotateY(0deg); }
    10% { transform: rotateY(0deg) scale(0.98); } 
    20%, 59% { transform: rotateY(180deg) scale(1); }
    60% { transform: rotateY(180deg) scale(0.98); }
    70%, 100% { transform: rotateY(360deg) scale(1); }
}
@media (max-width: 768px) {
    /* No celular, mudamos o fundo de fixed para scroll ou ajustamos o tamanho */
    .bg-image-layer {
        position: fixed;
        background-size: cover;
        background-position: center center;
    }

    /* Reduzimos o tamanho do logo para não estourar a tela */
    .coin-container.hero-logo {
        width: 150px;
        height: 150px;
        margin: 30px auto;
    }

    /* Reduzimos o tamanho da fonte do título para caber na tela */
    .chrome-text {
        font-size: 2rem;
        margin-top: 40px;
    }

    /* Empilhamos os pilares (Inteligência, etc) verticalmente se necessário */
    .hero-subtitle-wrapper {
        flex-direction: column;
        gap: 15px;
    }
}