/*body {
  font-family: 'Roboto', sans-serif;
}

main {
  flex: 1;
  height: 100%;
}

nav ul li:hover {
  cursor: pointer;
  transition: transform 0.15s;
  transform: scale(1.1);
}

::-webkit-scrollbar {
  display: none;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

video {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

header {
  background: rgb(241, 241, 241);
  color: black;
  height: 120px;
  width: 100%;
  border-radius: 60px 60px 0 0;
}

.banner {
  background-size: cover;
  color: white;
  font-size: 3em;
  font-weight: bold;
  text-align: center;
  background: rgba(196, 196, 196, 0.1);
}

nav ul {
  height: 75px;
  list-style-type: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: rgb(241, 241, 241);
  margin: 0;
  border-radius: 0 0 60px 60px;
}

nav ul li {
  width: 175px;
  display: flex;
  font-weight: bold;
  box-shadow: 2px 2px 1px black;
  border-radius: 30px;
  border: black solid 1px;
  align-items: center;
}

nav ul li img {
  height: 50px;
}

nav ul li div {
  width: 100%; 
  text-align: center;
}

footer {
  border-top: #eb1101 solid 0.4rem;
  margin-top: 20px;
}*/

body {
  font-family: 'Roboto', sans-serif;
}

/* General */
main {
  flex: 1;
  height: 100%;
}

nav ul li:hover {
  cursor: pointer;
  transition: transform 0.15s;
  transform: scale(1.1);
}

::-webkit-scrollbar {
  display: none;
}

/* Background */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

video {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

/* Header */
header {
  background: rgb(241, 241, 241);
  color: black;
  height: 120px;
  width: 100%;
  border-radius: 60px 60px 0 0;
}

.divheader {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 200px 0 200px;
}

.divheaderclick {
  width: 600px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.imglogo{
  width: 170px;
}

.imgcorreo {
  width: 50px;
  margin-right: 20px;
  height: 50px;
}

/* Section 1 */
.banner {
  background-size: cover;
  color: white;
  font-size: 3em;
  font-weight: bold;
  text-align: center;
  background: rgba(196, 196, 196, 0.1);
}

nav ul {
  height: 75px;
  list-style-type: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: rgb(241, 241, 241);
  margin: 0;
  border-radius: 0 0 60px 60px;
}

nav ul li {
  width: 175px;
  display: flex;
  font-weight: bold;
  box-shadow: 2px 2px 1px black;
  border-radius: 30px;
  border: black solid 1px;
  align-items: center;
}

nav ul li img {
  height: 50px;
}

nav ul li div {
  width: 100%;
  text-align: center;
}

/* Footer */
footer {
  border-top: #eb1101 solid 0.4rem;
  margin-top: 20px;
}

/* Media Queries para Responsividad */
@media (max-width: 375px) {
  body {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  header {
    height: 50%;
    width: 100%;
  }

  .divheader {
    /*height: 100%;
    width: 100%;
    display: block;*/
    margin: 0;
    flex-wrap: wrap;
  }

  .divheaderclick {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    cursor: pointer;
  }

  .divmail{
    visibility: collapse;
    height: 0;
  }

  .divheaderclick h1{
    width: 50%;
  }

  .imglogo{
    width: 90px;
    height: 50px;
  }

  .imgcorreo {
    width: 50px;
    height: 50px;
  }

  .banner {
    font-size: 2em;
    /* Ajustar tamaño de fuente en móviles */
    padding: 20px;
    /* Añadir padding para mejor visualización */
  }

  nav {
    border-radius: 0;
  }

  nav ul {
    display: flex;
    /* Cambiar a columna en móviles */
    height: auto;
    padding: 0;
    border-radius: 0 0 30px 30px;
    /* Permitir que la altura se ajuste automáticamente */
  }

  nav ul li {
    margin: 20px auto; /* Aumenta el margen superior e inferior a 20px */
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-content: center;
    font-size: small;
  }

  nav ul li img {
    height: 40px;
    margin-top: 10px;
    margin-bottom: -10px;
  }

  video {
    height: auto;
    /* Permitir que el video se ajuste automáticamente */
    width: 100%;
    /* Hacer que el video ocupe el ancho completo */
  }

  footer {
    padding: 10px;
    /* Añadir padding en el footer para móviles */
    text-align: center;
    /* Centrar el texto del footer */
  }
}