/* ==========================================================================
   ESTILOS ESPECÍFICOS PARA A PÁGINA "SOBRE NÓS" (sobre.html)
   ========================================================================== */

/* --- 1. Seção Hero (Cabeçalho da Página) --- */
/* A linha 'border-bottom' foi REMOVIDA daqui */
.hero-about {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 0 5%;
    background: linear-gradient(rgba(16, 24, 42, 0.1), rgba(16, 24, 42, 0.1)), url('images/observando.webp');
    background-size: cover;
    background-position: center top; 
}

.hero-about .hero-content {
    max-width: 800px;
}

/* --- 2. Seção de Detalhes (Nossa Visão) --- */
.about-details-section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 300;
}


/* --- 3. Seção da Equipa (Fundadores) --- */
.team-section {
    padding: 6rem 5%;
    background-color: var(--card-bg);
    border-radius: 12px;
    max-width: 1200px;
    margin: 4rem auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.team-member-card {
    text-align: center;
}

.team-member-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--lavanda-suave);
    margin-bottom: 1.5rem;
}

.team-member-card h3 {
    font-size: 1.4rem;
    color: var(--branco);
    margin-bottom: 0.5rem;
}

.team-member-card span {
    color: var(--ciano-vibrante);
    display: block;
    margin-bottom: 1rem;
}


/* --- 4. Responsividade --- */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}