@font-face {
    font-family: "Montserrat-Regular";
    src: url("../fonts/Montserrat-Regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat-Light";
    src: url("../fonts/Montserrat-Light.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat-Bold";
    src: url("../fonts/Montserrat-Bold.otf") format("opentype");
    font-weight: bold;
    font-style: bold;
}

@font-face {
    font-family: "Montserrat-Hairline";
    src: url("../fonts/Montserrat-Hairline.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Lora-Regular";
    src: url("../fonts/Lora-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* Nosotros */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat-Regular", sans-serif;
}

.seccionNosotros .fondoImagen {
    background: url('../img/banner-heroe1.png') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    position: relative;
}

.seccionNosotros .contenidoTexto {
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    max-width: 800px;
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
}

.seccionNosotros .contenidoTexto h1 {
    font-size: 24px;
    color: #86a641;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
}

.seccionNosotros .contenidoTexto h1:before {
    width: 5px;
    height: 20px;
    content: "";
    position: absolute;
    left: -25px;
    top: 7px;

    background: #86a641;
}

.seccionNosotros .contenidoTexto p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Estilo para Sección del Equipo */

.seccionEquipo {
    padding: 60px 0;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.tituloSeccion {
    text-align: center;
    margin-bottom: 40px;
}

.tituloSeccion h1 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

.tituloSeccion p {
    font-size: 16px;
    color: #666;
}

/* Estilo para Miembro del Equipo */

.filaEquipo {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.tituloSeccion {
    text-align: left;
    margin-bottom: 50px;
    position: relative;
    width: 90%;
    max-width: 1200px;
}

.tituloSeccion h1 {
    font-size: 30px;
    color: #d94423;
    font-family: "Montserrat-Regular", sans-serif;
    text-transform: uppercase;
}

.tituloSeccion h1:before {
    display: block;
    width: 5px;
    height: 24px;
    content: "";
    position: absolute;
    left: -25px;
    top: 8px;
    background: #d94423;
}

.tituloSeccion p {
    margin-top: 15px;
    font-size: 16px;
    color: #666;
    font-family: "Montserrat-Light", sans-serif;

}

.contenedor {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
    text-align: center;
    width: 90%;
    max-width: 1200px;
}

.miembroEquipo {
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    height: auto;
    width: 250px;
    transition: transform 0.3s ease;
    text-align: center;
    overflow: hidden;
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin-right: 50px;

}

.miembroEquipo:hover {
    transform: translateY(-10px);
}

.imagenMiembro {
}

.imagenFluida {
    max-width: 250px;
    height: 250px;
    transition: transform 0.3s ease;
}

.imagenMiembro:hover .imagenFluida {
    transform: scale(1.1);
    opacity: 0.5;

}

.redesSocialesMiembro {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;

}

.imagenMiembro:hover .redesSocialesMiembro {
    opacity: 1;
}

.redesSocialesMiembro a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px;
    border-radius: 50%;
    transition: background 0.3s ease;
    text-decoration: none;
    z-index: 1;
}

.redesSocialesMiembro a:hover {
    background: #d94423;
}

.redesSocialesMiembro i {
    font-size: 20px;
}

.infoMiembro {
    padding: 20px;
    background-color: #fff;
    text-align: center;
}

.infoMiembro h4 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}

.infoMiembro span {
    display: block;
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

.infoMiembro p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    font-family: "Montserrat-Light", sans-serif;
}