/* Variáveis de Cor e Estilos Globais */
:root {
    --pink: #ff00ff;
    --cyan: #00ffff;
    --grad-purple: #5b21b6;
    --grad-cyan: #06b6d4;
    --dark-bg: #121212;
    --light-bg: #1f1f1f;
    --text-color: #ffffff;
    --text-secondary: #aaaaaa;
    --border-radius: 10px;
    --border-color: rgba(255, 255, 255, 0.2);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 100px; 
}
img { max-width: 100%; height: auto; display: block; }
.container { width: 90%; max-width: 1200px; margin: auto; padding: 2rem 0; }

/* Cabeçalho */
header { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    padding: 0.5rem 5%; 
    background: rgba(18, 18, 18, 0.8); 
    backdrop-filter: blur(10px); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    z-index: 1000; 
    border-bottom: 1px solid var(--pink); 
    min-height: 80px; 
}
.logo a { display: flex; align-items: center; text-decoration: none; color: var(--cyan); font-size: 1.5rem; font-weight: 700; white-space: nowrap; }
.header-logo { max-height: 60px; width: auto; margin-right: 10px; }
nav a { color: var(--text-color); text-decoration: none; margin-left: 1.5rem; transition: color 0.3s ease; }
nav a:hover { color: var(--pink); }

/* --- NOVA SEÇÃO HERO COM CONTROLE TOTAL DA IMAGEM --- */
#hero { 
    position: relative; 
    overflow: hidden;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    min-height: 500px;
    padding: 40px 20px;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* --- AJUSTE FINAL DO ENQUADRAMENTO --- */
    /* Este valor move a imagem para cima e para baixo. */
    /* Diminuir o valor (20%, 15%) mostra MAIS do topo da imagem. */
    /* Aumentar o valor (30%, 40%) mostra MAIS da parte de baixo. */
    object-position: center 45%; 
    z-index: 1;
    filter: brightness(0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
}

#hero h1 { font-size: 3.5rem; margin-bottom: 1rem; color: var(--cyan); text-shadow: 0 0 10px var(--cyan); }
#hero p { font-size: 1.2rem; margin-bottom: 2rem; color: var(--text-secondary); }
.btn { display: inline-block; padding: 0.8rem 2rem; background: linear-gradient(45deg, var(--pink), var(--cyan)); color: var(--dark-bg); text-decoration: none; border-radius: var(--border-radius); font-weight: 600; transition: transform 0.3s ease, box-shadow 0.3s ease; border: none; cursor: pointer; }
.btn:hover { transform: scale(1.05); box-shadow: 0 0 15px var(--pink), 0 0 15px var(--cyan); }

/* Estrutura das Seções */
section { padding: 4rem 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; color: var(--cyan); text-shadow: 0 0 5px var(--cyan); }
.card { background-color: var(--light-bg); padding: 2rem; border-radius: var(--border-radius); border: 1px solid var(--pink); box-shadow: 0 0 10px rgba(255, 0, 255, 0.2); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; justify-content: center; }

/* Seção Sobre */
#sobre .content { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center; text-align: left; }
#sobre img { max-width: 400px; border-radius: var(--border-radius); border: 2px solid var(--cyan); margin-bottom: 0; }
#sobre .content > div { flex: 1; min-width: 280px; text-align: justify; }

/* Seção Requisitos */
.req-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; background: var(--light-bg); padding: 1.5rem; border-radius: var(--border-radius); border-left: 5px solid var(--pink); }
.req-item .icon { font-size: 2.5rem; color: var(--cyan); margin-bottom: 0.5rem; }
.req-item h3 { font-size: 1.2rem; margin-bottom: 0.3rem; color: var(--text-color); }
.req-item p { font-size: 0.9rem; color: var(--text-secondary); }

/* Seção Casting */
.streamer-card { background-color: transparent; border-radius: var(--border-radius); overflow: hidden; text-align: center; border: 1px solid var(--cyan); transition: transform 0.3s, box-shadow 0.3s; height: auto; padding-bottom: 0; position: static; }
.streamer-card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2); }
.streamer-card img { width: 100%; height: auto; object-fit: contain; }

/* Abas (Tabs) e Plataformas */
.tabs { display: flex; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; gap: 0.5rem; }
.tab-btn { padding: 0.8rem 1.5rem; cursor: pointer; background: none; border: 1px solid var(--cyan); color: var(--cyan); margin: 0 0.5rem; border-radius: var(--border-radius); transition: background-color 0.3s, color 0.3s; }
.tab-btn.active { background-color: var(--cyan); color: var(--dark-bg); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content h3 { margin-bottom: 1rem; color: var(--cyan); }
.tab-content h4 { margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--pink); font-size: 1.1rem; }
.tab-content ul { padding-left: 20px; }
.tab-content ul li { margin-bottom: 0.5rem; }

/* FAQ */
.faq-item { background-color: var(--light-bg); margin-bottom: 1rem; border-radius: var(--border-radius); border-left: 3px solid var(--cyan); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 1.5rem; font-size: 1.1rem; color: var(--text-color); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { padding: 0 1.5rem 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer p { color: var(--text-secondary); }

/* Contato */
#contato .card { text-align: center; }
#contato p { font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem auto; color: var(--text-secondary); }
.whatsapp-btn { font-size: 1.2rem; padding: 1rem 2.5rem; }
.whatsapp-btn .fa-whatsapp { margin-right: 10px; font-size: 1.5rem; vertical-align: middle; }

/* Rodapé */
footer { text-align: center; padding: 3rem 1rem 2rem 1rem; margin-top: 4rem; border-top: 1px solid var(--pink); display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.footer-logo { font-size: 1.8rem; font-weight: 700; color: var(--cyan); text-shadow: 0 0 10px var(--cyan); margin-bottom: 0; }
footer p { margin-top: 0; color: var(--text-secondary); font-size: 0.9rem; }
.whatsapp-footer-icon { width: 20px; height: 20px; vertical-align: middle; margin-right: 8px; display: inline-block; }
.social-links { margin-bottom: 0; display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.social-links a { display: flex; justify-content: center; align-items: center; min-width: 130px; background: linear-gradient(45deg, var(--pink), var(--cyan)); color: var(--dark-bg); padding: 14px 25px; border-radius: 50px; border: none; text-decoration: none; font-weight: 600; font-size: 1rem; transition: all 0.3s ease; box-shadow: 0 0 10px var(--pink), 0 0 10px var(--cyan); }
.social-links a:hover { transform: translateY(-3px); box-shadow: 0 0 15px var(--pink), 0 0 15px var(--cyan); }

/* Botão Flutuante WhatsApp */
.whatsapp-float { position: fixed; bottom: 80px; right: 20px; width: 60px; height: 60px; background-color: #25d366; color: white; border-radius: 50%; text-align: center; font-size: 2rem; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); display: flex; justify-content: center; align-items: center; z-index: 999; text-decoration: none; animation: pulse-whatsapp 2s infinite; }
.whatsapp-float:hover { background-color: #128c7e; transform: scale(1.05); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); }
@keyframes pulse-whatsapp { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* Popups */
#popup-overlay, #streamers-popup-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); z-index: 2000; justify-content: center; align-items: center; }
#popup-content, #streamers-popup-content { background-color: var(--light-bg); padding: 2rem 3rem; border-radius: var(--border-radius); border: 1px solid var(--cyan); width: 90%; max-width: 500px; text-align: center; position: relative; animation: fadeIn 0.3s ease-in-out; }
#popup-close, #streamers-popup-close { position: absolute; top: 10px; right: 15px; background: none; border: none; color: var(--text-color); font-size: 2rem; cursor: pointer; }
#popup-content h2, #streamers-popup-content h2 { color: var(--cyan); margin-bottom: 1rem; }
#popup-content p, #streamers-popup-content p { color: var(--text-secondary); margin-bottom: 2rem; }
@keyframes fadeIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

/* Media Queries (Responsividade) */
@media (max-width: 992px) { 
    body {
        padding-top: 120px;
    }
    header { flex-direction: column; height: auto; padding: 1rem 5%; } 
    .logo { margin-bottom: 10px; } 
    nav { width: 100%; justify-content: center; flex-wrap: wrap;} 
    nav a { margin: 5px 10px; font-size: 0.9rem; } 
    #hero { min-height: 400px; }
    #hero h1 { font-size: 2.5rem; } 
    #hero p { font-size: 1rem; } 
    .section-title { font-size: 2rem; } 
    #sobre .content { flex-direction: column; } 
    #sobre img { margin-bottom: 1rem; } 
    #sobre .content > div { text-align: center; } 
    .grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); } 
}
@media (max-width: 768px) { 
    .section-title { font-size: 2rem; } 
    #hero { padding-top: 40px; } 
    #hero h1 { font-size: 2.5rem; } 
    #hero p { font-size: 1rem; margin-bottom: 0.8rem; } 
}
@media (max-width: 576px) { 
    .container { width: 95%; padding: 1.5rem 0; } 
    header { padding: 0.5rem 2%; } 
    .logo a { font-size: 1.1rem; } 
    .header-logo { max-height: 50px; margin-right: 8px; } 
    nav { justify-content: space-around; } 
    nav a { margin: 5px 5px; font-size: 0.8rem; } 
    #hero { padding: 40px 15px 60px 15px; min-height: auto; } 
    #hero h1 { font-size: 1.8rem; } 
    #hero p { font-size: 0.85rem; margin-bottom: 0.5rem; } 
    .btn { padding: 0.7rem 1.5rem; font-size: 0.9rem; } 
    .section-title { font-size: 1.6rem; } 
    .card { padding: 1rem; } 
    .tab-btn { padding: 0.6rem 0.8rem; font-size: 0.85rem; margin: 0.2rem; } 
    .faq-question { font-size: 0.95rem; padding: 1rem; } 
    .whatsapp-btn { padding: 0.7rem 1.5rem; font-size: 1rem; } 
    footer { padding: 1.5rem 1rem; } 
    .footer-logo { font-size: 1.6rem; } 
    .social-links a { padding: 12px 20px; font-size: 0.9rem; min-width: 110px; } 
    .grid { grid-template-columns: 1fr; gap: 1rem; } 
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.8rem; bottom: 80px; right: 15px; } 
}