/* ==========================================================================
   1. RESET E CONFIGURAÇÕES GERAIS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fd;
    /* Fundo levemente azulado para modernidade */
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   2. SETA DE VOLTAR (CANTO SUPERIOR ESQUERDO)
   ========================================================================== */
.back-arrow {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.back-arrow:hover {
    background: #ffffff;
    color: #2D5AE9;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   3. HEADER (CABEÇALHO)
   ========================================================================== */
.principal.page-header {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2D5AE9 0%, #1F3F9D 100%);
    color: white;
    text-align: center;
    position: relative;
    padding-bottom: 40px;
}

.logo-admitir {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.graduation-cap-icon {
    font-size: 3rem;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ==========================================================================
   4. SEÇÃO SOBRE E MVV
   ========================================================================== */
.about-section {
    padding: 80px 0;
    margin-top: -50px;
    /* Sobrepõe levemente o header */
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.about-intro h2 {
    color: #0F0F2A;
    font-size: 2.4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-intro p {
    color: #555;
    font-size: 1.1rem;
    font-family: 'Nunito', sans-serif;
}

/* Cards de Missão, Visão e Valores */
.mvv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.mvv-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #edf2f7;
    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(45, 90, 233, 0.1);
    border-color: #2D5AE9;
}

.mvv-card i {
    font-size: 2.8rem;
    color: #2D5AE9;
    margin-bottom: 25px;
    display: block;
}

.mvv-card h3 {
    color: #0F0F2A;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.mvv-card p {
    color: #666;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
}

/* Lista de Valores (Sem os checkmarks antigos) */
.mvv-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.mvv-card ul li {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f5;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.4;
}

.mvv-card ul li:last-child {
    border-bottom: none;
}

.mvv-card ul li strong {
    color: #2D5AE9;
    display: block;
    margin-bottom: 2px;
}

/* ==========================================================================
   5. EQUIPE (TEAM)
   ========================================================================== */
.section-title-divider {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-divider h3 {
    font-size: 2.2rem;
    color: #0F0F2A;
    margin-bottom: 10px;
}

.section-title-divider p {
    color: #888;
    font-style: italic;
}

.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.team-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px 30px;
    width: 320px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f1f1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.avatar-wrapper {
    width: 100px;
    height: 100px;
    background: #f0f4ff;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D5AE9;
    font-size: 2.5rem;
}

.team-card.ceo {
    border-top: 5px solid #FF8E53;
}

.team-card.ceo .avatar-wrapper {
    background: linear-gradient(135deg, #FF4C4C, #FF8E53);
    color: #fff;
}

.team-role {
    display: block;
    color: #FF4C4C;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

.team-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    min-height: 80px;
}

/* Botão Linkedin */
.btn-linkedin {
    background-color: #0077b5;
    color: white;
    padding: 12px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-linkedin:hover {
    background-color: #005582;
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

/* ==========================================================================
   6. RESPONSIVIDADE
   ========================================================================== */
@media (max-width: 768px) {
    .back-arrow {
        top: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 2.4rem;
    }

    .principal.page-header {
        min-height: 220px;
    }

    .about-intro {
        margin-top: 0;
        padding: 30px 20px;
    }

    .mvv-container {
        grid-template-columns: 1fr;
    }

    .team-card {
        width: 100%;
    }
}