/* Contenedor general alineado a la izquierda */
.about {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.6;
    color: #222;
}

/* Centrar solo la sección del equipo */
.equipo {
    text-align: center;
    margin-top: 4rem;
}

.equipo h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FEDE59;
    margin-bottom: 2rem;
}

/* Cuadrícula centrada para miembros */
.equipo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

/* Tarjetas de miembro del equipo */
.miembro {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
    max-width: 220px;
    width: 100%;
}

.miembro img {
    width: 100%;
    max-width: 160px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.miembro h3 {
    margin: 0.5rem 0 0.25rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.miembro p {
    margin: 0;
    color: #555;
}
/* ---------------- REDES SOCIALES ---------------- */

.redes-sociales {
    text-align: center;
    margin-top: 4rem;
}

.redes-sociales h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FEDE59;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icons a {
    color: #111;
    font-size: 28px; /* Tamaño aumentado */
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #FEDE59;
}
.contacto {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    color: #FEDE59;
    text-align: center;
}

.formulario-contacto {
    max-width: 600px;
    margin: 40px auto;
    padding: 25px;
    background-color: #f9f9f9; /* fondo gris muy claro */
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* sombra para resaltar */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.formulario-contacto input,
.formulario-contacto textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
}

.formulario-contacto button {
    background-color: #FEDE59;
    color: #222;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.formulario-contacto button:hover {
    background-color: #ffe94d;
}