
@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@100..900&family=Poppins:wght@100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos generales */
body {
    background-color: #F2EDDC;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;

}
.menuvertical {
    position: absolute;
    display: none; 
    list-style: none;
    width: 12.5rem;
    background-color: rgba(211, 223, 108, 0.5);
    padding: 0;
    margin: 0;
    z-index: 1000; 
}

nav ul li:hover .menuvertical {
    display: block;
}

/* Estilos para los elementos del menú desplegable */
.menuvertical li a {
    display: block;
    padding: 10px;
    color: #333; 
    text-decoration: none;
}

.menuvertical li a:hover {
    background-color: #f2a7ed; 
    color: #fff; 
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    color: #333;
}

/* Header */
header {
    background-color: #C1B0D9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    border-radius: 20px;
    margin: 1rem;
    flex-wrap: wrap;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-right: 20px;

}

nav ul li a {
    text-decoration: none;
    color: #FDFDFD;
    font-weight: bold;
    font-size: 16px;
}

nav ul li a:hover {

    color: #F7C212;
    /* Color del texto al hacer hover */
}

.banner > img{
    width: 100%;
}

/* Sección Integrantes */
/* Estilos para la lista de integrantes */

.integrantes{
    padding: 3rem 0rem;
    display: flex;
    justify-content: center;
}
.integrantes > article{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1500px;

}


.integrantes h1 {
    text-align: center;
    font-size: 38px;
    padding-bottom: 50px;
}

.integrantes ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    /* Distribuir espacio entre los ítems */
    padding: 0;

    flex-wrap: wrap;
}

.integrantes ul li {
    text-align: center;
    margin: 20px;
}

.integrantes ul li a {
    text-decoration: none;
    color: #000;
    display: inline-block;
}

.integrantes ul li img {
    width: 150px;
    /* Ajusta el tamaño de la imagen */
    height: 150px;
    border-radius: 50%;
    /* Hace la imagen redonda */
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.integrantes ul li h1 {
    background-color: #F7C212;
    /* Color de fondo del "botón" */
    color: #000000;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    margin-top: 10px;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;

}

/* Efecto hover para hacer el botón interactivo */
.integrantes ul li a:hover h1 {
    background-color: #F2A7ED;
    /* Color al pasar el cursor */
    transform: scale(1.05);
    /* Ligeramente más grande al pasar el cursor */
}

/* Sección Datos Obligatorios */
.datosobligatorios {
    width: 100%;
    max-width: 850px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #D5D95B;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.datosobligatorios h4 {
    margin-bottom: 1rem;
    color: #555;
}

/* Footer */
footer {
    text-align: center;
    font-size: 14px;
    background-color: #C1B0D9;
    color: #fff;
    padding: 1rem;
}

footer p{
    padding: 2rem;
}
footer img {
    width: 300px;
    margin-bottom: 0.5rem;
    padding: 0rem 2rem;
}