@import url("https://fonts.googleapis.com/css2?family=Open+Sans&family=Oswald:wght@200;300;400;500;700&family=Poppins:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Oswald";
}

body {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #131314;
  display: flex;
  align-items: center;
  justify-content: center;
}

body::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../imagenes/FOTOS/f3.jpg") no-repeat center center/cover;
  backdrop-filter: blur(5px);
  opacity: 0.4;
}

header {
  position: relative;
  width: 90%;
  height: 90%;
  border-radius: 20px;
  box-shadow: 4px 4px 4px rgba(255, 68, 0, 0.938);
  z-index: 2;
}

header .main-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  border-radius: 20px;
  z-index: -1;
}

/*AQUI ESTÁ LA NAVEGACIÓN --------------------------------------------*/

header nav {
  width: 95%;
  height: 7.5%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header nav .logo {
  width: 20%;
  height: 100%;
  font-size: 26px;
  color: orangered;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  cursor: pointer;
}

header nav .logo:hover {
  color: red;
}

header nav ul {
  width: 60%;
  height: 100%;

  display: flex;
  align-items: flex-end;
  justify-content: center;
}

header nav ul li {
  list-style-type: none;
  padding: 3px 10px;
}

header nav ul li a {
  color: orangered;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

header nav ul li a:hover {
  color: red;
}

/*HASTA AQUI VA LA NAVEGACIÓN --------------------------------------------*/

/* AQUI VA LA SECCIÓN QUE ESTÁ DENTRO DEL HEADER --------------------------------------------*/

header section {
  width: 95%;
  height: 56.5%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

header section .contene {
  width: 400px;
  height: 70%;
  padding-left: 60px;
}

header section .contene h1 {
  color: #ffffff;
  font-size: 35px;
}

header section .contene h1 span {
  color: rgba(255, 68, 0, 0.877);
  padding: 0px 15px;
}

header section .contene h3 {
  color: #ffffff;
}

header section .contene .rate {
  color: #ffffff;
  font-size: 14px;
  margin-top: 15px;
  color: rgba(255, 68, 0, 0.877);
}

header section .contene .subtitulos {
  color: gray;
  margin-top: 3px;
}

header section .contene .subtitulos span {
  padding: 0px 5px;
}

header section .contene .btns {
  margin-top: 5px;
  display: flex;
}

header section .contene .btns button {
  background: rgb(75, 75, 75);
  border: none;
  outline: none;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}

header section .contene .btns button {
  background: rgba(255, 68, 0, 0.877);
  border-color: rgba(255, 68, 0, 0.877);
  color: #ffffff;
  padding: 3px 13px 6px 5px;
}

header section .contene .btns button:hover {
  background: #151515;
  color: orangered;
}

header section .contene p {
  font-size: 11px;
  margin-top: 15px;
}

/*HASTA AQUI  --------------------------------------------*/

/* AQUI VAN LAS TARJETAS O CARDS--------------------------------------------*/

/*HASTA AQUI  --------------------------------------------*/

/*AQUI  VA EL RESPONSIVE DEL HEADER--------------------------------------------*/

@media only screen and (max-width: 1190px) {
  header nav .logo {
    margin-top: 10px;
  }

  header nav ul li a {
    font-size: 18px;
  }
}

@media only screen and (max-width: 800px) {
  header nav ul li a {
    font-size: 18px;
  }
}

@media only screen and (max-width: 641px) {
  header nav ul li {
    padding: 3px 7px;
  }

  header nav ul li a {
    font-size: 18px;
  }
}

@media only screen and (max-width: 541px) {
  header section .contene {
    padding-left: 15px;
  }

  header nav {
    height: 14%;
    flex-wrap: wrap;
  }

  header nav .logo {
    width: 100%;
    height: 45%;
    justify-content: center;
    margin-bottom: 20px;
  }

  header nav ul {
    width: 100%;
    height: 20%;
  }

  header nav ul li a {
    font-size: 18px;
  }

  header section {
    height: 40%;
  }

  header .cards {
    width: 95%;
    height: 66%;
  }
  header .cards .card {
    width: 110px;
    height: 145px;
  }
}

@media only screen and (max-width: 359px) {
  header nav ul li a {
    font-size: 18px;
  }

  header section .contene h1 {
    font-size: 30px;
  }

  header section {
    height: 50%;
  }
}

