:root {
    --bg-principal: #121214;
    --bg-card: rgba(26, 26, 29, 0.75);
    --rosa-neon: #ff1493;
    --rosa-brilho: #ff6b9d;
    --texto-claro: #ffffff;
    --texto-cinza: #a0a0a5;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--bg-principal);
    color: var(--texto-claro);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 80% 20%, rgba(255, 20, 147, 0.08) 0%, transparent 40%);
}
h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }

.hero { display: flex; align-items: center; justify-content: space-between; min-height: 80vh; padding: 40px 8%; position: relative; gap: 40px; }
.hero-conteudo { max-width: 550px; z-index: 2; }
.hero-conteudo h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.hero-conteudo h1 span { color: var(--rosa-neon); text-shadow: 0 0 15px var(--rosa-neon); }

/* --- ALTERAÇÃO: Caixa de texto mais comprida para evitar quebras precoces --- */
.hero-conteudo p { 
    color: var(--texto-cinza); 
    font-size: 1.1rem; 
    line-height: 1.6; 
    margin-bottom: 40px; 
    max-width: 550px; /* Aumentado de 480px para 550px */
}

/* --- BOTÃO: Fundo rosa vibrante e letra branca por padrão --- */
.btn-principal {
    display: inline-block;
    padding: 16px 36px;
    border: 2px solid var(--rosa-neon);
    background-color: var(--rosa-neon);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    box-shadow: 0 0 20px var(--rosa-neon), inset 0 0 10px rgba(255, 255, 255, 0.3);
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s, color 0.3s;
}
.btn-principal:hover {
    
    background-color: var(--rosa-neon);
    color: #ffffff;
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.8);
    transform: translateY(-3px);
}

.hero-imagem { position: relative; display: flex; align-items: center; justify-content: center; }

/* --- IMAGEM: Altura maior para PC, cantos menos arredondados e borda suave --- */
.foto-mentor { 
    width: 100%; 
    max-width: 400px; 
    height: 500px; 
    border-radius: 8px; 
    border: 2px solid rgba(255, 20, 147, 0.5); 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 20, 147, 0.1); 
    object-fit: cover; 
}
.bg-pantera-imagem { position: absolute; width: 100%; max-width: 550px; height: auto; opacity: 0.35; z-index: -1; filter: drop-shadow(0 0 15px rgba(255, 20, 147, 0.4)); }

.modulos { padding: 100px 8%; text-align: center; background-color: #0d0d0f; }
.modulos h2 { font-size: 2.2rem; margin-bottom: 15px; }
.modulos>p { color: var(--texto-cinza); margin-bottom: 60px; max-width: 600px; margin-left: auto; margin-right: auto; }
.grid-modulos { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.card-modulo {
    background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 12px; padding: 40px 30px;
    text-align: left; backdrop-filter: blur(10px); transition: border-color 0.3s, transform 0.3s; position: relative; overflow: hidden;
}
.card-modulo:hover { border-color: var(--rosa-neon); transform: translateY(-5px); }
.card-modulo h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--texto-claro); }
.card-modulo p { color: var(--texto-cinza); font-size: 0.95rem; line-height: 1.6; margin-bottom: 30px; }
.btn-card { color: var(--rosa-neon); text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: color 0.3s; }
.btn-card:hover { color: var(--texto-claro); }

/* --- RESPONSIVIDADE INDEX --- */
@media (max-width: 968px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 60px 5% 40px 5%;
    }
    .hero-conteudo h1 {
        font-size: 2.4rem;
    }
    .hero-conteudo p {
        margin: 0 auto 30px auto;
    }
    .foto-mentor {
        max-width: 300px;
        height: auto; 
    }
    .modulos {
        padding: 60px 5%;
    }
    .modulos h2 {
        font-size: 1.8rem;
    }
    .modulos>p {
        margin-bottom: 40px;
    }
}