main {
    padding: 0;
    margin: 0;
    margin-bottom: 2rem;
}

html, body {
    margin: 0;
    padding: 0;
    color: #333;
}

#about {
    background: #F2F6FF;
    color: #2c3e50;
    padding-bottom: 2px;
}

#about .content {
    max-width: 1000px;
    margin: 0 auto;
}

#about h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1746D2;
}

#about h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2F60F4;
}

#about p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

#about a,
#about strong {
    color: #2F60F4;
    text-decoration: none;
}

#about a:hover {
    text-decoration: underline;
}

/* --- Equipo --- */
.team {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.member {
    text-align: center;
    max-width: 180px;
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.member h3 {
    margin: 0.5rem 0 0.2rem 0;
    font-size: 1.1rem;
    color: #34495e;
}

.member p {
    margin: 0;
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* --- FIX: eliminar espacio excesivo entre navbar y primer h1 --- */
#about {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

#about h1 {
    margin-top: 0 !important;
    padding-top: 0;
}

#about h2,
#about h3 {
    margin-block-start: 0;
    margin-top: 2rem;
}
