/* --- Paleta de Cores e Configurações Globais --- */
:root {
    --primary: #002E5D;   /* Azul LemAr */
    --secondary: #00A859; /* Verde Conexão */
    --accent: #FFC300;    /* Amarelo Energia */
    --gray: #7A7A7A;      /* Cinza Neutro */
    --white: #FFFFFF;     /* Branco Puro */
    --dark: #001A38;      /* Azul Escuro (Texto) */
    --light: #F5F7FA;     /* Fundo Claro */
    --text: #333333;      /* Texto Principal */

    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 86, 179, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 1rem;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.container {
    width: 100%;
    max-width: 650px;
}

/* --- Componentes do Quiz --- */
.quiz-container {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
    overflow: hidden;
    position: relative;
    margin-bottom: 2.5rem; 
}

.quiz-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), #003366);
    color: var(--white);
}

/* --- ESTILO DA IMAGEM DO TOPO ATUALIZADO --- */
.logo {
    width: 100%;
    max-width: 300px; /* Define um tamanho máximo para a imagem */
    height: auto; /* A altura se ajusta para manter a proporção */
    display: block;
    margin: 0 auto 1.5rem auto; /* Centraliza e adiciona espaço abaixo */
    border-radius: 10px; /* Cantos suavemente arredondados */
    border: 3px solid var(--white); /* Borda branca para destacar */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); /* Sombra para dar profundidade */
}

.quiz-header h1 { 
    font-size: 1.8rem; 
    margin-top: 0; /* Remove margem extra acima do título */
    margin-bottom: 0.5rem;
}

.quiz-header p { font-size: 1rem; opacity: 0.9; }
.quiz-progress { height: 6px; background-color: #e0e0e0; width: 100%; }
.progress-bar { height: 100%; background-color: var(--accent); width: 0%; transition: width 0.4s ease-in-out; }
.quiz-slide { padding: 2rem; display: none; }
.quiz-slide.active { display: block; animation: fadeIn 0.5s ease-in-out; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
.quiz-slide h2 { font-size: 1.4rem; margin-bottom: 1.5rem; color: var(--dark); text-align: center; }
.quiz-options { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.quiz-btn { background-color: var(--light); border: 2px solid #ddd; border-radius: 10px; padding: 1rem; font-size: 1rem; font-weight: 600; text-align: left; cursor: pointer; transition: all 0.3s ease; }
.quiz-btn:hover { background-color: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 5px 15px var(--shadow-medium); }
.quiz-feedback { font-size: 0.9rem; color: var(--primary); font-weight: 600; text-align: center; margin-top: 1.5rem; font-style: italic; }
.result-container { text-align: center; padding: 1rem; }
.result-container h2 { color: var(--primary); font-size: 1.8rem; margin-bottom: 1rem; }
.highlight { font-size: 1.2rem; color: var(--dark); font-weight: 700; margin-bottom: 1.5rem; }
.result-description { font-size: 1rem; font-weight: 400; color: var(--gray); }
.result-details { background-color: #f0f7ff; padding: 1.5rem; border-radius: 10px; margin: 1.5rem 0; text-align: left; }
.result-details p { margin: 0.8rem 0; font-weight: 600; color: var(--dark); }
.call-to-action { font-size: 1.1rem; margin: 1.5rem 0; font-weight: 600; }
.cta-btn { background: linear-gradient(135deg, var(--secondary), #1e7e34); color: var(--white); border: none; border-radius: 10px; padding: 1rem 1.5rem; font-size: 1.1rem; font-weight: 700; cursor: pointer; width: 100%; transition: all 0.3s ease; text-transform: uppercase; }
.cta-btn span { font-size: 0.9rem; font-weight: 400; display: block; margin-top: 5px; text-transform: none; }
.cta-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3); }

/* --- Seção Carrossel de Alunos --- */
.alumni-section {
    padding: 0;
    margin-bottom: 2rem;
    text-align: center;
}

.alumni-section h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.swiper.mySwiper {
    width: 100%;
    padding: 10px 0 40px 0; /* Espaço para paginação */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px; 
}

.alumni-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-light);
    text-align: center;
    width: 100%;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alumni-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.alumni-img {
    width: 100%;
    height: 220px;
    object-fit: cover; 
    border-bottom: 4px solid var(--secondary);
}

.alumni-info { padding: 1.2rem; }
.alumni-info h4 { color: var(--primary); margin-bottom: 0.5rem; font-size: 1.1rem; }
.alumni-info p { color: var(--gray); font-size: 0.9rem; font-style: italic; line-height: 1.4; }

/* Estilização da Paginação e Navegação do Carrossel */
.swiper-pagination-bullet { background-color: var(--primary); opacity: 0.5; }
.swiper-pagination-bullet-active { background-color: var(--secondary); opacity: 1; }
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    transition: background-color 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover { background-color: var(--white); }
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 20px; font-weight: 900; }

/* --- Seção Conteúdo Programático --- */
.program-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
    margin-bottom: 2rem;
}

.program-title { text-align: center; color: var(--primary); font-size: 1.6rem; margin-bottom: 1.5rem; }
.program-list { list-style: none; padding: 0; }
.program-list li { background-color: var(--light); border-left: 4px solid var(--secondary); padding: 1rem; margin-bottom: 0.8rem; border-radius: 0 8px 8px 0; font-size: 1.1rem; font-weight: 600; color: var(--dark); display: flex; align-items: center; transition: transform 0.2s ease, background-color 0.2s ease; }
.program-list li:hover { transform: translateX(5px); background-color: #e9f7ef; }
.program-list .icon { margin-right: 1rem; font-size: 1.5rem; color: var(--secondary); }

/* --- Responsividade --- */
@media (max-width: 600px) {
    body { padding: 1rem 0.5rem; }
    .quiz-header h1, .result-container h2, .program-title, .alumni-section h3 { font-size: 1.5rem; }
    .quiz-slide h2 { font-size: 1.2rem; }
    .quiz-btn, .cta-btn, .program-list li { padding: 0.8rem 1rem; font-size: 1rem; }
    .quiz-header, .quiz-slide, .program-content { padding: 1.5rem; }
    .swiper-button-next,
    .swiper-button-prev { display: none; }
}