/* --- VARIÁVEIS GLOBAIS DE COR --- */
:root {
    --bg-principal: #121214;
    --bg-card: rgba(26, 26, 29, 0.75);
    --rosa-neon: #ff1493;
    --rosa-brilho: #ff6b9d;
    --texto-claro: #ffffff;
    --texto-cinza: #a0a0a5;
}

/* --- RESET E CONFIGURAÇÕES GERAIS --- */
* { 
    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;
    position: relative;
    
    /* LUZ PRINCIPAL NO BACKGROUND: Um clarão gigante que nasce atrás da foto (lado esquerdo) e se expande de forma ultra-suave por mais de metade da página */
    background-image: radial-gradient(circle at 25% 35%, rgba(255, 20, 147, 0.05) 0%, transparent 50%);
}

/* LUZ SECUNDÁRIA NATURAL: Um segundo ponto de reflexo de luz no canto inferior direito para misturar os tons e parecer iluminação real */
body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    pointer-events: none;
    z-index: 0;
}

h1, h2, h3 { 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

/* --- SECÇÃO E ESTRUTURA MAIN --- */
.mentor { 
    padding: 100px 8%; 
    background-color: transparent; /* Permite ver a luz do body perfeitamente */
    position: relative;
    z-index: 1;
}

.container-mentor { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 80px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

/* --- CONTENTOR DA FOTO E MOLDURA DESLOCADA --- */
.mentor-imagem-container { 
    position: relative; 
    flex-shrink: 0; 
    width: 361px;  /* Proporção: largura reduzida em 5% */
    height: 475px; /* Proporção: altura aumentada em 25% */
}

/* MOLDURA DE TRÁS: Elegante e deslocada para a esquerda/baixo com um néon nítido e focado */
.moldura-neon { 
    position: absolute; 
    top: 20px;       
    left: -20px;     
    width: 100%;     
    height: 100%; 
    border: 2px solid var(--rosa-neon); 
    border-radius: 12px; 
    z-index: 1; 
    pointer-events: none; 
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.5); 
}

/* FOTO DO MENTOR: Cortada com precisão no rosto e com a sua própria borda brilhante */
.foto-mentor-detalhe { 
    width: 100%; 
    height: 100%; 
    border-radius: 12px; 
    display: block; 
    position: relative; 
    z-index: 2; /* Fica por cima da moldura traseira */
    
    border: 2px solid var(--rosa-neon);
    box-shadow: 
        0 0 15px rgba(255, 20, 147, 0.3),
        0 15px 35px rgba(0, 0, 0, 0.7); /* Sombra preta densa para dar o destaque de recorte */
    
    object-fit: cover; 
    object-position: center top; 
}

/* --- INFORMAÇÕES DO TEXTO --- */
.mentor-info { 
    flex-grow: 1; 
}

.subtitulo-pink { 
    color: var(--rosa-neon); 
    font-weight: 600; 
    text-transform: uppercase; 
    font-size: 0.9rem; 
    letter-spacing: 2px; 
    margin-bottom: 10px; 
    display: inline-block; 
}

.mentor-info h2 { 
    font-size: 2.5rem; 
    margin-bottom: 25px; 
    line-height: 1.2; 
}

.mentor-info p { 
    color: var(--texto-cinza); 
    font-size: 1.05rem; 
    line-height: 1.7; 
    margin-bottom: 20px; 
}
/* --- ESTILIZAÇÃO DAS ESPECIALIDADES --- */
.mentor-especialidades {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 8px;
    border: 1px solid rgba(255, 20, 147, 0.1);
}

.mentor-especialidades h3 {
    font-size: 1.1rem;
    color: var(--texto-claro);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.mentor-especialidades ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mentor-especialidades ul li {
    font-size: 1.05rem;
    color: var(--texto-cinza);
    position: relative;
    padding-left: 25px;
}

/* Ícone de detalhe rosa neon antes de cada especialidade */
.mentor-especialidades ul li::before {
    content: "•";
    color: var(--rosa-neon);
    font-size: 1.5rem;
    position: absolute;
    left: 5px;
    top: -4px;
    text-shadow: 0 0 8px var(--rosa-neon);
}

/* Ajuste na Grid para 2 colunas após a remoção dos outros itens */
.grid-stats {
    grid-template-columns: repeat(2, 1fr);
}

/* --- GRID DE ESTATÍSTICAS --- */
.grid-stats { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 25px; 
    margin-top: 40px; 
}

.stat-box { 
    background: rgba(255, 255, 255, 0.02); 
    border-left: 3px solid var(--rosa-neon); 
    padding: 20px; 
    border-radius: 4px; 
}

.stat-numero { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 1.8rem; 
    font-weight: 900; 
    color: var(--texto-claro); 
    margin-bottom: 5px; 
}

.stat-desc { 
    color: var(--texto-cinza); 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 968px) {
    body {
        /* Ajusta o foco da luz de fundo no mobile para ficar centralizado atrás da imagem */
        background-image: radial-gradient(circle at 50% 25%, rgba(255, 20, 147, 0.15) 0%, rgba(255, 20, 147, 0.03) 45%, transparent 70%);
    }

    .container-mentor { 
        flex-direction: column; 
        text-align: center; 
        gap: 60px; 
    }
    
    .mentor-imagem-container {
        width: 290px;
        height: 380px;
    }

    .moldura-neon {
        top: 18px;
        left: -18px;
    }

    .stat-box { 
        text-align: left; 
    }
}