@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");


/* ----------------
   reglas generales
   ---------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  color: #fbfaeb;
  background-color: #003760;
  min-height: 100vh;
}

p {
   font-size: 16px;
   font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

img {
  max-width: 100%;
}

.contenedora {
  max-width: 75rem;
  margin: 0 auto;
  padding: 2rem;
}

h2 {
  font-size: 35px;
  margin-bottom: 2.5rem;
  color: #ff6668;
  padding: 0 1.5rem;
  background-color: #fbfaeb;border-radius: 0.5rem;
  border-left: solid 10px #ff6668;
}



/* -------------------
   componente superior
   y sus contenidos
   ------------------- */

header {
   width: 100%;
   height: 100vh;
   background-image: linear-gradient( 
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)),
      url(../Imagenes/HIS_SIAM_1.jpg);
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   display: flex;
   align-items: center;
   color: #fbfaeb;
}



/*-----MENU------ */

.menu {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.logo {
   position: absolute;
   padding: 0;
   margin: 0;
 }

.menu .navbar ul {
   position: relative;
   float: right;
}

.menu .navbar ul li {
   display: inline-block;
   padding-top: 1.5rem;
   margin: 0 1rem;
}

.menu .navbar ul li a {
   font-size: 18px;
   padding: 1.5rem;
   color: #fbfaeb;
   display: block;
   text-transform: uppercase;
   font-weight: 500;
}

.menu .navbar ul li a:hover {
   color: #ff6668;   
}

#menu {
   display: none;
}

.menu-icono {
   width: 2rem;
}

.menu label {
   cursor: pointer;
   float: right;
   display: none;
 }

@media (max-width: 100vh) {
  .menu {
    padding: 2.5rem;
  }

  .menu label {
    display: initial;
    margin-top: 1.8rem;
  }

  .menu .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #003760;
    display: none;

  }

  .menu .navbar ul li {
    width: 100%;
  }

  #menu:checked ~ .navbar {
    display: initial;
  }
}

.header-contenido {
   margin-top: 5rem;
}

.header-txt {
   width: 50%;
}

.header-txt h1 {
   font-size: 110px;
   line-height: 110px;
   -webkit-text-stroke: 3px #fbfaeb;
   color: #003760; 
   margin-bottom: 1rem;
}

.header-txt p {
   font-size: 18px;
   font-style: italic;
   margin-bottom: 2rem;
}

.boton-1 {
   display: inline-block;
   padding: 0.5rem 2.2rem;
   background-color: #003760;
   color: #fbfaeb;
   border-radius: 25px;
   font-size: 20px;
}


/* ------------------
   componente central
   y sus contenidos
   ------------------ */



/*-----seccion comitente-----*/

.comitente {
   padding: 6rem 0;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
}

.comitente-textos {
   width: 50%;
   margin-left: 3rem;
}

.comitente-img img {
   width: 400px;
   border-radius: 1rem;
   margin-bottom: 2rem;
}

.comitente-textos h1 {
   font-size: 28px;
   margin-bottom: 1rem;
   color: #ff6668;
}


/*-----seccion equipo-----*/

.contenido-general {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
   grid-gap: 2rem;
}

.equipo_articulos {
   display: flex;
   justify-content: space-between;
}

.general-txt {
   padding-bottom: 2rem;
   background-color: #fbfaeb;
   border-radius: 1rem;
}

.general-txt img {
   width: 100%;
   border-radius: 1rem 1rem 0 0;
}

.general-txt h3 {
   font-size: 18px;
   color: #ff6668;
   padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.general-txt p {
   font-size: 16px;
   font-weight: 600;
   padding: 0 1.5rem 0.5rem 1.5rem;
   color: #003760;
}

.rotulo {
   padding: 0.2rem 1rem 0.2rem 1rem;
   display: inline-block;
   background-color: #ff6668;
   font-weight: 600;
   border-radius: 0.5rem;
   margin: 0 1.5rem;
}

#rotulo-1 {
   color: #fbfaeb;
   text-decoration: none;
 }
 
 #rotulo-2 {
   color: #fbfaeb;
   text-decoration: none;
 }
 
 #rotulo-3 {
   color: #fbfaeb;
   text-decoration: none;
 }
 


/*-----seccion datos academicos-----*/

.academicos {
   margin-top: 2rem;
 }
 
 .academicos .titulo {
   margin: 0;
 }
 
 .academicos ul{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
   gap: 0 1rem;
 }
 
 .academicos ul li{
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   align-items: flex-start;
   align-content: flex-start;
   margin: 0;
 }
 
 .academicos img {
   display: block;
   width: 8em;
   aspect-ratio: 1;
   background-color: white;
   padding: .5rem;
   margin-top: 2rem;
   border-radius: 1rem;
   box-shadow: 0 4px 4px transparent;
   transition: box-shadow .6s ease;
 }
 
 

/* -------------------
   componente inferior
   y sus contenidos
   ------------------- */

/*-----FOOTER-----*/

footer {
  background-color: #fbfaeb;
  color: #003760;
  font-weight: 600;
}



/* -------------------
      PLAN/ MAPA
   ------------------- */


.header-extra {
   max-height: 12rem;
}

.plan p {
   width: 80%;
}

.plan img {
   border-radius: 1rem;
   margin: 2rem 0 0 0;
}

.actividad {
   margin: 0 auto;
   padding: 2rem 0;
}

.actividad a {
   padding: 0.5rem 2rem;
   background-color: #ff6668;
   border-radius: 1rem;
   color: #fbfaeb;
   font-weight: 600;
}
