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

body {
  min-height: 100vh;
  background-color: black;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header {
  width: 100%;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header img {
  width: 200px;
  height: 100px;
  padding-left: 10px;
}

/* header nav {
  display: flex;
  flex-direction: row;
  padding-right: 20px;
  align-items: center;
  align-content: flex-end;
  margin-left: auto;
}
header nav ul {
  list-style: none;
  display: flex;
  width: 100%;
  gap: 20px;
}

header nav ul li {
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  padding: 0px 5px 5px 5px;
  border-radius: 5px;
  cursor: pointer;
} */

.roboto-list {
  font-family: "Mina", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.roboto-list li:hover {
  background-color: darkred;
}

a {
  color: white;
  text-decoration: none;
}

main {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  background-color: black;
  background-size: cover;
  width: 100%;
}
.divOpacity {
  width: 100%;
  min-height: 80vh;
  background-color: rgba(0, 0, 0, 0.651);
}

.divOpacity h3 {
  color: rgb(194, 1, 1);
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  padding-top: 30px;
  padding-left: 40px;
  letter-spacing: 2px;
}
.divOpacity h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  padding-top: 30px;
  color: white;
  letter-spacing: 2px;
}

.divOpacity h4 {
  font-size: 2rem;
}

.infoServicios {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;
}

.divCuadro {
  text-decoration: none;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background-color: rgba(255, 255, 255, 0.404);
  border-radius: 5px;
  box-shadow: 0px 0px 20px rgb(114, 3, 3);
  transition: all 0.5s;
}

.divCuadro img {
  width: 500px;
  height: 100%;
  border-radius: 5px;
  max-height: 100%;
  object-fit: cover;
}

.homeLogueado {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.homeLogueado h3 {
  color: white;
  text-shadow: none;
}

footer {
  display: flex;
  width: 100%;
  min-height: 10vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: black;
  color: white;
  padding-top: 5px;
  padding-bottom: 5px;
  position: relative;
  bottom: 0;
}

footer div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  gap: 30px;
}

footer div img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
}

#gmail {
  width: 50px;
  height: 50px;
}
/* RESPONSIVE */

@media (max-width: 480px) {
  body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  header nav {
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .roboto-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
  }
  .divOpacity h3 {
    font-size: 1.2rem;
    text-align: center;
    padding-left: 0px;
  }
  .infoServicios {
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .divCuadro {
    width: 80%;
  }
}

@media (max-width: 890px) and (min-width: 390px) {
  body {
    min-height: 130vh;
  }

  .divOpacity h3 {
    font-size: 2rem;
    text-align: center;
  }
  .infoServicios {
    gap: 50px;
  }

  .divCuadro {
    display: flex;
    flex-direction: column;
    width: 70%;
    height: 250px;
  }
  .divCuadro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
