
.equipo {
    background: #0e2538;
    color: white;
    padding: 60px 20px;
    text-align: center;
}
.equipo h2 {
    font-size: 32px;
    margin-bottom: 40px;
}
.equipo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}
.miembro {
    background: #02101f;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #0078ff;
}
.miembro img {
    width: 100%;
    border-radius: 8px;
    height: 250px;
    object-fit: cover;
}
.miembro h3 {
    margin-top: 15px;
    margin-bottom: 5px;
}
