@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&family=Playfair+Display:wght@700&display=swap');

:root {
    /* PALETA DE CORES */
    --silver: #a0a0a0;        /* Cinza Premium */
    --silver-glow: rgba(160, 160, 160, 0.2);
    --primary: #1762ca;       /* Azul da Marca */
    --primary-dark: #0d3b7a;
    --gold: #d4af37;          /* Dourado Premium */
    --gold-glow: rgba(212, 175, 55, 0.15);
    
    --dark-bg: #050505;       /* Preto Puro (Fundo Base) */
    --card-bg: #0a0a0a;       /* Cinza Quase Preto (Cards) */
    --border-color: #1a1a1a;  /* Bordas Sutis */
    --text: #ffffff;
    
    --font-main: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font-main); }
body { background-color: var(--dark-bg); color: var(--text); overflow-x: hidden; }

/* --- NAVBAR --- */
.navbar { position: fixed; width: 100%; top: 0; z-index: 1000; background: rgba(0,0,0,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 15px 0; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 45px; }
.logo-text { font-family: var(--font-serif); font-weight: 700; color: white; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; }
.nav-right { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; gap: 20px; list-style: none; }
.nav-links a { color: #aaa; text-decoration: none; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; transition: 0.3s; }

/* Link ativo com Dourado */
.nav-links a:hover, .nav-links a.active { color: white; border-bottom: 2px solid var(--gold); padding-bottom: 5px; }
.btn-nav { background: var(--primary); color: white; padding: 10px 25px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; transition: 0.3s; }
.btn-nav:hover { color: #000; background: var(--gold); transform: translateY(-2px); box-shadow: 0 0 15px rgba(23, 98, 202, 0.4); }
/* Botão Ativo na página de aplicação */
.btn-nav.active { background: var(--gold); color: black; }

/* --- HERO SECTION --- */
.hero { 
    height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; 
    /* Fundo preto com luz central sutil */
    background: radial-gradient(circle at center, #111 0%, #000 100%); 
    position: relative; padding-top: 80px; 
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 20px; }
.badge-hero { border: 1px solid var(--gold); color: var(--gold); padding: 8px 20px; border-radius: 30px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; display: inline-block; margin-bottom: 25px; }
.hero h1 { font-size: 3.5rem; font-family: var(--font-serif); margin-bottom: 20px; line-height: 1.2; }
.text-gradient { background: linear-gradient(90deg, #fff, var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { color: #ccc; font-size: 1.1rem; margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.btn-hero { background: linear-gradient(45deg, var(--primary), var(--primary-dark)); color: white; padding: 18px 50px; border-radius: 50px; text-decoration: none; font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 0 20px rgba(23, 98, 202, 0.4); transition: 0.4s; display: inline-block; border: 1px solid var(--primary); }
.btn-hero:hover { transform: translateY(-5px);box-shadow: 0 0 40px rgba(23, 98, 202, 0.6); border-color: var(--gold); }

/* --- SEÇÕES & DEGRADÊS (CORRIGIDO) --- */
section { padding: 100px 0; border: none !important; margin: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Fundo Preto Absoluto */
.section-dark { background-color: var(--dark-bg); }

/* DEGRADÊ SEM LINHAS: Vertical (Preto -> Azul Escuro -> Preto) */
.section-gradient, .section-blue, .section-blue-gradient { 
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0d1b33 50%, var(--dark-bg) 100%);
}

.center { text-align: center; }
.section-header h2 { font-size: 2.5rem; font-family: var(--font-serif); margin-bottom: 15px; color: white; }
.section-header p { color: #888; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* --- PÁGINA: APLICAÇÃO & DEPOIMENTOS (CORRIGIDO) --- */
.split-screen { 
    display: grid; grid-template-columns: 1fr 1fr; 
    min-height: 100vh; padding-top: 80px; 
}

/* Lado Esquerdo (Feedbacks): Alinhado ao Topo */
.split-left { 
    padding: 60px; background: #050505; 
    display: flex; flex-direction: column; 
    justify-content: flex-start; /* Joga conteúdo para cima */
    padding-top: 120px; 
    border-right: 1px solid #111;
}

.split-right { 
    padding: 60px; background: #000; 
    display: flex; align-items: center; justify-content: center; 
}

/* Cards de Depoimento */
#lista-depoimentos-site { 
    display: flex; flex-direction: column; gap: 20px; width: 100%; margin-top: 20px;
}
.testimonial-item { 
    background: #111; padding: 25px; border-radius: 10px; border: 1px solid #222; transition: 0.3s; 
}
.testimonial-item:hover { border-color: var(--gold); transform: translateY(-5px); }

.testimonial-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; border-bottom: 1px solid #222; padding-bottom: 15px; }
.user-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.user-info h4 { font-size: 1rem; color: white; margin: 0; }
.user-info small { color: #666; font-size: 0.8rem; }
.user-badge { font-size: 0.7rem; padding: 2px 8px; border-radius: 4px; display: inline-block; margin-top: 5px; text-transform: uppercase; font-weight: bold; background: #222; color: #aaa; }
.stars-display { color: var(--gold); font-size: 0.8rem; margin-top: 3px; }

/* Formulário Legado */
.form-legacy { width: 100%; max-width: 550px; background: #0a0a0a; padding: 40px; border-radius: 15px; border: 1px solid #222; }
.input-dark, textarea.input-dark, select.input-dark { 
    width: 100%; padding: 15px; background: #000; border: 1px solid #333; 
    border-radius: 5px; color: white; margin-bottom: 15px; font-size: 0.95rem; outline: none;
}
.input-dark:focus { border-color: var(--gold); }

/* --- PÁGINA: APLICAÇÃO (BOTÕES ADICIONADOS) --- */
.option-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 15px; margin-bottom: 20px; }
.option-grid.three-cols { grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); }

.option-card { cursor: pointer; position: relative; display: block; }
.option-card input { display: none; }

.option-box {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: #0f0f0f; border: 1px solid #333; padding: 20px; border-radius: 8px;
    transition: 0.3s; height: 100%; text-align: center;
}
.option-box h4 { font-size: 1rem; color: #fff; margin: 0; font-weight: 700; }
.option-box span { font-size: 0.75rem; color: #666; margin-top: 5px; }

/* Efeito Hover e Seleção */
.option-card:hover .option-box { border-color: var(--gold); transform: translateY(-3px); }
.option-card input:checked + .option-box {
    background: rgba(212, 175, 55, 0.1); border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}
.option-card input:checked + .option-box h4 { color: var(--gold); }

/* --- QUEM VIVE A LIGA (CORRIGIDO) --- */
.cases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.case-card { 
    background: #111; border-radius: 10px; overflow: hidden; border: 1px solid #222; 
    transition: 0.3s; display: flex; flex-direction: column;
}
.case-card:hover { border-color: var(--primary); transform: translateY(-10px); }

/* Foto Arredondada */
.case-img { 
    height: 250px; background-size: cover; background-position: center; 
    margin: 15px; border-radius: 10px; /* Borda redonda */
}
.case-info { padding: 0 25px 25px 25px; text-align: left; }

/* Título e Subtítulo Centralizados */
.case-info h4 { text-align: center; font-size: 1.3rem; color: white; margin-bottom: 5px; font-family: var(--font-serif); }
.case-info span { text-align: center; display: block; color: var(--primary); font-size: 0.8rem; text-transform: uppercase; font-weight: 700; margin-bottom: 15px; }
/* Texto Esquerda */
.case-info p { text-align: left; color: #ccc; font-style: italic; line-height: 1.6; font-size: 0.9rem; }

/* --- PÁGINA: SOBRE (ADICIONADO STATS) --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.bio-images { position: relative; }
.bio-main-img img { width: 100%; border-radius: 10px; filter: grayscale(20%); transition: 0.3s; }
.bio-main-img img:hover { filter: grayscale(0%); border-color: var(--gold); }
.bio-logo-float { position: absolute; bottom: -30px; right: -30px; width: 120px; height: 120px; background: black; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.bio-logo-float img { width: 60%; }

/* --- QUADRADINHOS DE STATS (FORMATO RETANGULAR) --- */
.stats-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; /* Cria 2 colunas iguais */
    gap: 15px; /* Espaço entre eles */
    margin-top: 30px; 
}

.stat { 
    background: #0f0f0f; 
    border: 1px solid #222; 
    padding: 15px 20px; /* Menos altura (15px) para ficar retangular */
    border-radius: 6px; 
    text-align: center; 
    transition: 0.3s; 
    
    /* Centraliza o conteúdo dentro do retângulo */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat h3 { 
    color: var(--gold); 
    font-size: 1.4rem; /* Ajustei levemente para caber melhor no retângulo */
    margin-bottom: 2px; 
    font-weight: 800; 
    line-height: 1.1;
}

.stat p { 
    color: #888; 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin: 0;
}

.stat:hover { 
    border-color: var(--gold); 
    transform: translateY(-3px); 
    background: #161616; 
}

/* CLASSE ESPECIAL: Ocupar 2 colunas (para o item de baixo da Liga) */
.stat-wide {
    grid-column: span 2; /* Estica ocupando as duas colunas */
    background: linear-gradient(90deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%); /* Destaque sutil */
}

/* Responsivo: No celular, volta a ficar um embaixo do outro */
@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: 1fr; /* 1 coluna só */
    }
    .stat-wide {
        grid-column: span 1;
    }
}

/* --- MODAL CONTATO (CORRIGIDO) --- */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 2000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(5px); opacity: 0; transition: 0.3s; }
.modal-overlay.show { opacity: 1; }
.modal-box { background: #111; width: 90%; max-width: 600px; padding: 40px; border-radius: 15px; border: 1px solid #333; position: relative; transform: scale(0.8); transition: 0.3s; max-height: 90vh; overflow-y: auto; }
.modal-overlay.show .modal-box { transform: scale(1); }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 30px; cursor: pointer; color: #666; }

/* Título Branco e Botões */
.modal-box h3 { color: #ffffff !important; font-size: 1.5rem; text-align: center; margin-bottom: 25px; }

.contact-buttons { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

.btn-contact { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    padding: 15px; 
    border-radius: 12px; 
    text-decoration: none; 
    color: #d4af37; /* dourado */
    font-weight: bold; 
    font-size: 1rem; 
    transition: 0.3s; 

    /* NOVO PADRÃO */
    background: #000;
    border: 1.5px solid #d4af37;
}

/* Mantém as classes, mas todas iguais agora */
.btn-contact.facebook,
.btn-contact.youtube,
.btn-contact.whatsapp,
.btn-contact.email,
.btn-contact.instagram {
    background: #000;
    border: 1.5px solid #d4af37;
    color: #ffffff;
}

/* HOVER PADRÃO */
.btn-contact.facebook:hover,
.btn-contact.youtube:hover,
.btn-contact.whatsapp:hover,
.btn-contact.email:hover,
.btn-contact.instagram:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Ícones */
.btn-contact i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* --- HOME: PLANOS & EVENTOS --- */
:root {
    /* ADICIONE ESTA COR NOVA NO INÍCIO */
    --silver: #a0a0a0;        /* Cinza Premium */
    --silver-glow: rgba(160, 160, 160, 0.2);
    /* Mantenha as outras... */
    --primary: #1762ca;
    --primary-dark: #0d3b7a;
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.15);
    --dark-bg: #050505;
    --card-bg: #0a0a0a;
    --text: #ffffff;
    --font-main: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

/* --- HOME: PLANOS (Start, Premium, Alpha) --- */
.planos-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
    margin-top: 50px; 
}

.plano-card { 
    background: #0a0a0a; 
    border: 1px solid #222; 
    border-radius: 15px; 
    padding: 40px; 
    text-align: center; 
    transition: 0.3s; 
    position: relative; 
    overflow: hidden; 
}
.plano-card:hover { transform: translateY(-10px); }

/* --- 1. START (Azul Neon) --- */
.plano-card.start h3 { color: var(--primary); text-shadow: 0 0 10px rgba(23, 98, 202, 0.5); }
.plano-card.start:hover { 
    border-color: var(--primary); 
    box-shadow: 0 0 20px rgba(23, 98, 202, 0.4); /* Efeito Neon */
}
.plano-card.start:hover .btn-plano { 
    background: var(--primary); border-color: var(--primary); color: white;
    box-shadow: 0 0 15px rgba(23, 98, 202, 0.6); 
}

/* --- 2. PREMIUM (Cinza/Prata) --- */
.plano-card.premium h3 { color: var(--silver); }
.plano-card.premium:hover { 
    border-color: var(--silver); 
    box-shadow: 0 0 20px var(--silver-glow);
}
.plano-card.premium:hover .btn-plano { 
    background: var(--silver); border-color: var(--silver); color: black; 
}

/* --- 3. CONTADOR ALPHA (Dourado) --- */
.plano-card.alpha h3 { color: var(--gold); }
.plano-card.alpha:hover { 
    border-color: var(--gold); 
    box-shadow: 0 0 20px var(--gold-glow);
}
.plano-card.alpha:hover .btn-plano { 
    background: var(--gold); border-color: var(--gold); color: black; 
}

/* Botão Padrão do Card */
.btn-plano { 
    display: inline-block; padding: 12px 30px; border-radius: 30px; 
    text-transform: uppercase; font-weight: 700; cursor: pointer; transition: 0.3s;
    background: transparent; border: 2px solid #333; color: white; margin-top: 20px; 
}

/* --- FORMULÁRIO DE APLICAÇÃO (Cores na Seleção) --- */
/* A lógica aqui depende do ID do input que vamos colocar no HTML */

/* Start Selecionado (Azul) */
#opt-start:checked + .option-box {
    background: rgba(23, 98, 202, 0.1); 
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(23, 98, 202, 0.4); /* Neon */
}
#opt-start:checked + .option-box h4 { color: var(--primary); text-shadow: 0 0 5px rgba(23, 98, 202, 0.5); }

/* Premium Selecionado (Cinza) */
#opt-premium:checked + .option-box {
    background: rgba(160, 160, 160, 0.1); 
    border-color: var(--silver);
    box-shadow: 0 0 15px rgba(160, 160, 160, 0.3);
}
#opt-premium:checked + .option-box h4 { color: var(--silver); }

/* Alpha Selecionado (Dourado) */
#opt-alpha:checked + .option-box {
    background: rgba(212, 175, 55, 0.1); 
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}
#opt-alpha:checked + .option-box h4 { color: var(--gold); }

/* --- MODAIS TEMAS --- */

/* Tema Cinza (Premium) */
#modalPlanos.silver-theme .modal-content li i { 
    color: var(--silver) !important; 
}

#modalPlanos.silver-theme .btn-hero { 
    background: var(--silver) !important; 
    border-color: var(--silver) !important; 
    color: black !important; 
    /* AQUI ESTÁ A CORREÇÃO DA SOMBRA (PRATA) */
    box-shadow: 0 0 20px rgba(160, 160, 160, 0.5) !important; 
}

#modalPlanos.silver-theme .btn-hero:hover {
    /* Brilho mais forte no hover */
    box-shadow: 0 0 30px rgba(160, 160, 160, 0.8) !important; 
    transform: translateY(-3px);
}

#modalPlanos.silver-theme .modal-plan-header h2,
#modalPlanos.silver-theme .modal-plan-header .modal-price { 
    color: var(--silver) !important; 
}


/* Tema Dourado (Alpha) */
#modalPlanos.gold-theme .modal-content li i { 
    color: var(--gold) !important; 
}

#modalPlanos.gold-theme .btn-hero { 
    background: var(--gold) !important; 
    border-color: var(--gold) !important; 
    color: black !important; 
    /* AQUI ESTÁ A CORREÇÃO DA SOMBRA (DOURADA) */
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5) !important;
}

#modalPlanos.gold-theme .btn-hero:hover {
    /* Brilho mais forte no hover */
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8) !important;
    transform: translateY(-3px);
}

#modalPlanos.gold-theme .modal-plan-header h2,
#modalPlanos.gold-theme .modal-plan-header .modal-price { 
    color: var(--gold) !important; 
}
.eventos-container { display: flex; flex-direction: column; gap: 80px; margin-top: 60px; }
.evento-row { display: flex; align-items: center; gap: 50px; }
.evento-row.reverse { flex-direction: row-reverse; }
.evento-info { flex: 1; }
.evento-img-box { flex: 1; }
.evento-img-box img { width: 100%; border-radius: 10px; border: 1px solid #222; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.evento-logo-space { width: 80px; height: 80px; background: #000; border: 1px solid #333; border-radius: 10px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; color: #444; font-weight: bold; }
.evento-info h3 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 15px; color: var(--primary); }
.evento-info p {color: #ccc;line-height: 1.6;margin-bottom: 50px;}
.evento-list li { margin-bottom: 10px; color: #aaa; display: flex; align-items: center; gap: 10px; }
.evento-list li i { color: var(--gold); }

.trilha-box { margin-top: 50px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
.trilha-item { background: #0f0f0f; padding:18px 15px; border-radius: 8px; border: 1px solid #1a1a1a; text-align: center; color: #ccc; font-weight: 600; transition: 0.3s;white-space: nowrap; overflow: hidden; }
.trilha-item:hover { border-color: var(--primary); color: white; transform: scale(1.05); }

/* --- MÉTODO SEMENTE (LAYOUT 4 EM CIMA / 3 EM BAIXO) --- */
.semente-grid { 
    display: grid; 
    grid-template-columns: repeat(12, 1fr); /* Grade de 12 colunas para divisão exata */
    gap: 20px; 
    margin-top: 50px; 
}

.card-semente { 
    grid-column: span 3; /* Padrão: 4 itens por linha (12/3 = 4) */
    background: #0f0f0f; 
    border: 1px solid #1a1a1a; 
    padding: 30px; 
    border-radius: 10px; 
    transition: 0.3s; 
    text-align: center; 
}

/* A Mágica: Os últimos 3 itens (5, 6 e 7) ocupam mais espaço para fechar a linha */
.card-semente:nth-child(n+5) {
    grid-column: span 4; /* 3 itens por linha (12/4 = 3) */
}

.card-semente:hover { 
    border-color: var(--gold); 
    transform: translateY(-5px); 
}

.icon-box { 
    font-size: 2.5rem; 
    color: var(--gold); /* Ícone Dourado */
    margin-bottom: 15px; 
    font-family: var(--font-serif); 
    font-weight: bold; 
}

/* Garante que o último item não quebre o layout novo */
.full-width { 
    grid-column: span 4 !important; 
}

/* Responsivo: No celular fica 1 por linha */
@media (max-width: 768px) {
    .card-semente, .card-semente:nth-child(n+5), .full-width {
        grid-column: span 12 !important;
    }
}

/* Upload Depoimento */
.upload-circle { width: 100px; height: 100px; border-radius: 50%; background: #000; border: 2px dashed #333; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; overflow: hidden; transition: 0.3s; }
.upload-circle:hover { border-color: var(--gold); color: var(--gold); }
.upload-circle img { width: 100%; height: 100%; object-fit: cover; display: none; }
.rating-box { display: flex; gap: 10px; justify-content: center; margin-bottom: 25px; flex-direction: row-reverse; }
.rating-box input { display: none; }
.rating-box label { font-size: 1.8rem; color: #333; cursor: pointer; transition: 0.2s; }
.rating-box input:checked ~ label, .rating-box label:hover, .rating-box label:hover ~ label { color: var(--gold); }

/* Footer */
footer { background-color: #050505; padding: 70px 0 20px; border-top: 1px solid #111; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-col h3 { color: var(--primary); font-size: 1.1rem; margin-bottom: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #aaa; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-bottom { border-top: 1px solid #111; padding-top: 30px; text-align: center; color: #555; font-size: 0.85rem; }
.admin-link { color: #444; text-decoration: none; transition: 0.3s; }
.admin-link:hover { color: var(--primary); }

/* Modal Planos */
.modal-plan-header { text-align: center; margin-bottom: 30px; border-bottom: 1px solid #222; padding-bottom: 20px; }
.modal-price { font-size: 1.5rem; color: var(--gold); font-weight: 700; margin-top: 10px; }
.modal-content ul { list-style: none; text-align: left; }
.modal-content li { margin-bottom: 12px; color: #ccc; display: flex; gap: 10px; }
.modal-content li i { color: var(--primary); margin-top: 4px; }
/* --- ESTILO ESPECIAL DO MODAL PREMIUM --- */

/* Quando o modal tiver a classe 'premium-theme', os ícones viram dourados */
#modalPlanos.premium-theme .modal-content li i {
    color: var(--gold) !important;
}

/* Quando o modal tiver a classe 'premium-theme', o botão vira dourado */
#modalPlanos.premium-theme .btn-hero {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: black !important; /* Texto preto para ler melhor no dourado */
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

#modalPlanos.premium-theme .btn-hero:hover {
    background: #b5952f !important; /* Dourado um pouco mais escuro no hover */
    transform: translateY(-3px);
}
.planos-selector .option-card:hover .option-box {
    border-color: #333; /* Mantém a cor original cinza escuro (não fica amarelo) */
    transform: translateY(-3px); /* Mantém o ZOOM que você pediu */
}

.music-btn {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Canto Esquerdo */
    width: 60px;
    height: 60px;
    background: var(--primary); /* Círculo Azul */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999; /* Fica acima de tudo */
    box-shadow: 0 4px 15px rgba(23, 98, 202, 0.6); /* Sombra Azulada */
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

/* Ícone Dourado */
.music-btn i {
    color: var(--gold);
    font-size: 1.5rem;
    transition: 0.3s;
}

/* Efeito Hover */
.music-btn:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
    box-shadow: 0 0 20px var(--gold-glow);
    border-color: var(--gold);
}

/* Animação quando está tocando (pulsando) */
.music-btn.playing {
    animation: pulseBlue 2s infinite;
}

@keyframes pulseBlue {
    0% { box-shadow: 0 0 0 0 rgba(23, 98, 202, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(23, 98, 202, 0); }
    100% { box-shadow: 0 0 0 0 rgba(23, 98, 202, 0); }
}
/* RESPONSIVO */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .evento-row, .evento-row.reverse { flex-direction: column; text-align: center; } 
    .footer-grid, .grid-2, .split-screen, .semente-grid { grid-template-columns: 1fr; }
    .split-right { order: -1; padding: 40px 20px; }
    .split-left { padding: 40px 20px; }
    .option-grid.three-cols { grid-template-columns: 1fr; }
    .form-legacy {  padding: 25px; }
}

/* --- BIOGRAFIA & EFEITOS VISUAIS (FOTO COM DEGRADÊ) --- */

.bio-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wrapper da foto (Container) */
.bio-main-img {
    position: relative;
    width: 100%;
    max-width: 500px; /* Tamanho máximo da foto */
    overflow: hidden;
    /* Se quiser a borda superior arredondada, mantenha. Se quiser quadrada, remova. */
    border-radius: 10px 10px 0 0; 
}

/* A Foto do Professor */
.bio-main-img img {
    width: 100%;
    display: block;
    filter: grayscale(10%); /* Começa levemente preto e branco (estilo chique) */
    transition: 0.3s ease;
}

/* O SEGREDO: Degradê que faz a foto sumir no fundo preto */
.bio-main-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%; /* A altura do degradê (50% da foto) */
    
    /* Degradê do Transparente para a cor do seu Fundo (#050505) */
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0) 0%, #050505 100%);
    
    z-index: 1;
    pointer-events: none; /* Permite clicar através do degradê se necessário */
}

/* Efeito ao passar o mouse: Fica colorido e dá um zoom leve */
.bio-main-img:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* Logo Flutuante (Selo da Liga) */
.bio-logo-float {
    position: absolute;
    bottom: 20px;
    right: 20px; /* Ajuste para mover mais para o canto */
    width: 100px;
    height: 100px;
    background: #000;
    border: 2px solid var(--gold); /* Borda Dourada */
    border-radius: 50%; /* Círculo perfeito */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2; /* Fica acima do degradê */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Sombra para destacar */
}

.bio-logo-float img {
    width: 60%; /* Tamanho do logo dentro do círculo */
    height: auto;
}
/* Padrão (PC): Um ao lado do outro */
.form-row-dual {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas */
    gap: 15px;
}

/* Celular: Um embaixo do outro */
@media (max-width: 768px) {
    .form-row-dual {
        grid-template-columns: 1fr; /* Uma coluna (empilhado) */
    }
}

/* Responsivo: Ajustes para Celular */
@media (max-width: 768px) {
    .bio-logo-float {
        width: 70px;
        height: 70px;
        bottom: 10px;
        right: 10px;
    }
    
    /* Garante que o degradê funcione bem no mobile */
    .bio-main-img::after {
        height: 40%; 
    }
}

/* --- ESTILOS RESPONSIVOS (MOBILE) --- */
/* Oculta a barra mobile em telas grandes */
.mobile-nav { display: none; }

@media (max-width: 768px) {
    
    /* --- CORREÇÃO 1: Espaço Extra no Rodapé (Para a barra não cobrir o texto) --- */
    footer {
        padding-bottom: 140px !important; /* Empurra o conteúdo para cima */
    }

   .container-voltar { 
        display: block !important; /* <--- O SEGREDO: Manda aparecer o container */
        text-align: center;
        width: 100%;
        margin-top: 20px;
    }

    .btn-voltar-mobile {
        display: inline-flex !important; /* Manda aparecer o botão */
        align-items: center;
        gap: 10px;
        background: #111;
        color: white;
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        border: 1px solid #333;
        font-size: 0.9rem;
    }


    /* 1. TOPO (NAVBAR) - Simplificado */
    .nav-links, .navbar .btn-nav { display: none !important; } /* Esconde links e botão do topo */
    .nav-container { justify-content: center; } /* Centraliza a logo */
    .logo-text { font-size: 1rem; } /* Ajusta tamanho do texto da logo */
    
    .mobile-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 15px; /* Mais perto da borda inferior */
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        max-width: 400px;
        background: var(--primary);
        padding: 8px 15px; /* REDUZI A ALTURA AQUI (Era 12px) */
        border-radius: 50px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        z-index: 10000;
        border: 1px solid rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
        height: 60px; /* Altura fixa controlada */
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: rgba(255,255,255,0.6);
        font-size: 0.65rem; /* Fonte levemente menor */
        transition: 0.3s;
    }

    .nav-item i {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }

    /* Item Ativo ou Hover */
    .nav-item:hover, .nav-item.active {
        color: white;
        transform: translateY(-2px);
    }

    /* Destaque para o botão ASSINAR (Meio) */
   /* --- Ajuste do Botão Central (Assinatura) --- */
    
    .nav-item.highlight {
        background: transparent !important;
        border: none !important;
        width: auto !important;
        height: auto !important;
        margin-top: 0 !important;
        box-shadow: none !important;
        overflow: visible;
    }

    .nav-item.highlight i {
        background: var(--gold);
        color: black;
        width: 48px;  /* REDUZI O TAMANHO DA BOLINHA (Era 55px) */
        height: 48px; /* REDUZI O TAMANHO DA BOLINHA */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        
        margin-top: -30px; /* Ajuste para flutuar proporcionalmente */
        margin-bottom: 2px;
        
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        border: 4px solid var(--dark-bg);
        font-size: 1.1rem; /* Ícone levemente menor para caber */
    }

    .nav-item.highlight span { 
        display: block !important; 
        font-size: 0.65rem;
        color: var(--gold);
        font-weight: 700;
    }
    .nav-item.highlight span { display: none; } /* Esconde texto no botão redondo */
    .nav-item.highlight i { font-size: 1.4rem; margin: 0; }

    /* 3. BOTÃO DE MÚSICA - Subindo para dar espaço */
    .music-btn {
        bottom: 100px !important; /* Sobe para não ficar atrás da navegação */
        left: 20px !important;
        width: 50px;
        height: 50px;
    }

    /* 4. FOOTER - Limpeza Total */
    /* Mostra apenas a col 1 (Logo/Desc) e col 4 (Mais) */
    .footer-col:nth-child(2), /* Navegação */
    .footer-col:nth-child(3) { /* Fale Conosco */
        display: none !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 30px;
    }

    /* 5. PÁGINA SOBRE - Logo da Liga EM CIMA do texto */
    /* Procura a seção específica da Liga e inverte a ordem */
    #conheca-a-liga .grid-2 {
        display: flex;
        flex-direction: column-reverse; /* Inverte: Imagem vai pra cima, texto pra baixo */
    }
    
    #conheca-a-liga .bio-images {
        margin-bottom: 30px;
    }

    /* Ajustes Gerais de Layout Mobile */
    .hero h1 { font-size: 2.2rem; }
    .evento-row, .evento-row.reverse { flex-direction: column; text-align: center; } 
    .split-screen, .semente-grid { grid-template-columns: 1fr; }
    .split-right { order: -1; padding: 40px 20px; }
    .split-left { padding: 40px 20px; }
    .option-grid.three-cols { grid-template-columns: 1fr; }
    
    /* Modal ocupa mais espaço no celular */
    .modal-box { width: 95%; }
}

/* --- CORREÇÃO FINAL OBRIGATÓRIA (BOTÃO VOLTAR) --- */

/* 1. PRIMEIRO: Garante que fica invisível no Computador */
.container-voltar, .btn-voltar-mobile {
    display: none !important; 
}

/* 2. DEPOIS: Força aparecer APENAS no Celular */
@media (max-width: 768px) {
    .container-voltar {
        display: block !important;
        text-align: left; /* Alinha à ESQUERDA */
        width: 100%;
        
        /* Ajuste de Posição: */
        margin-top: 100px !important; /* Desce o suficiente para sair da navbar */
        margin-bottom: 20px !important; /* Distância igual ao resto do texto */
        padding-left: 20px; /* Alinha com o texto da página (container tem padding de 20px) */
    }

    .btn-voltar-mobile {
        display: inline-flex !important;
        align-items: center;
        gap: 10px;
        background: #111;
        color: white;
        padding: 10px 20px; /* Levemente menor para ficar mais elegante */
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        border: 1px solid #333;
        font-size: 0.85rem;
        transition: 0.3s;
    }

    /* Remove padding extra da seção de baixo para não somar espaços */
    .section-dark {
        padding-top: 0px !important; 
    }
}