/* Estilos específicos para a página Sobre Nós */
:root {
    --primary-color: #000035;
    --secondary-color: #50c878;
    --accent-color: #ff9f43;
    --light-color: #f5f9ff;
    --dark-color: #2c3e50;
    --text-color: #333;
    --light-text: #fff;
}

.div-meio {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Comic Neue', cursive;
}

.sobre-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    font-family: 'Comic Neue', cursive;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sobre-intro h1 {
    font-family: 'Comic Neue', cursive;
    color: #000035;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sobre-intro p {
    font-size: 1.1rem;
    font-family: 'Comic Neue', cursive;
    max-width: 800px;
    margin: 0 auto;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    font-family: 'Comic Neue', cursive;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000035;
}

.card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-color);
}

.missao-visao {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.missao, .visao {
    background: white;
    border-radius: 10px;
    font-family: 'Comic Neue', cursive; 
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.missao h2, .visao h2 {
    color: #000035;
    font-family: 'Comic Neue', cursive;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.equipe {
    text-align: center;
    margin-bottom: 3rem;

}

.equipe h2 {
    color: #000035;
   font-family: 'Comic Neue', cursive;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.membros-equipe {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.membro {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.membro-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.imagens-equipe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.membro h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.membro p {
    color: var(--text-color);
    font-style: italic;
}


@media (max-width: 768px) {

    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .sobre-intro h1 {
        font-size: 2rem;
    }
}