/* FUENTE PERSONALIZADA */
@font-face {
    font-family: "MYRIADPRO-BOLDCONDIT";
    src: url("MYRIADPRO-BOLDCONDIT.OTF");
}

/* RESETEO BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FONDO */
body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-image: url("fondo blanco2.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* CABECERA */
header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #cdcdcf;
    padding: 10px;
}

/* LOGOTIPO */
.Logotipo {
    flex: 1 1 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #cdcdcf;
    height: 170px;
}

.Logotipo img {
    max-height: 100px;
    width: auto;
}

/* LETRAS */
.LETRAS {
    flex: 2 1 250px;
    font-size: 27px;
    font-style: italic;
    color: #0051e8;
    background-image: linear-gradient(to right, #cdcdcf, #ffffff);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 170px;
}

/* NAVEGACIÓN */
.navbar {
    width: 100%;
    background-color: #ffffff;
}

.menu {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 10px 0;
    margin: 0;
}

.menu li a {
    text-transform: uppercase;
    color: black;
    padding: 0 25px;
    line-height: 60px;
    height: 60px;
    display: block;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.menu li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #cdcdcf;
    transition: 0.3s;
    z-index: -1;
}

.menu li a:hover:before {
    height: 120%;
}

/* TEXTOS GENERALES */
.TEXTONOSOTROS,
.textodelamisionyvision,
.TEXTODEFILOEINSTITU {
  font-size: 20px;
  font-family: "MYRIADPRO-BOLDCONDIT";
  text-align: justify;
  text-shadow: -1px 2px 12px rgba(47, 35, 37, 0.8);
  padding: 30px;
  width: 100%;
  max-width: 700px;
  margin: auto;
}

/* TÍTULOS */
.titulosomosdelh1,
.misiontext,
.visiontext,
.PRINCI,
.FILO,
.INTI {
  font-size: 30px;
  font-family: "MYRIADPRO-BOLDCONDIT";
  padding: 30px;
  text-align: center;
  text-shadow: -1px 2px 12px rgba(47, 35, 37, 0.8);
}

/* IMÁGENES */
.nosotros1img,
.nosotros2img,
.nosotros3img {
  width: 100%;
  max-width: 500px;
  height: auto;
  padding: 20px;
  margin: auto;
  display: block;
}

/* ESTRUCTURAS RESPONSIVAS */
.section-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
}

.section-flex.reverse {
  flex-direction: row-reverse;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 768px) {
    .Logotipo,
    .LETRAS {
        flex: 1 1 100%;
        height: auto;
        padding: 10px;
    }

    .LETRAS {
        font-size: 20px;
    }

    .menu {
        flex-direction: column;
        align-items: center;
    }

    .menu li a {
        line-height: 50px;
        height: auto;
    }

    .galeria {
        flex-direction: column;
        height: auto;
    }

    .galeria img {
        width: 100% !important;
        max-height: 200px;
    }

    .galeria img:hover {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .LETRAS {
        font-size: 18px;
    }

    .menu li a {
        font-size: 16px;
        padding: 0 10px;
    }
}
