@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Poppins:wght@600&display=swap");
* {
  font-family: "Open Sans", sans-serif;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.container {
  background-image: url(./images/bg-hero-desktop.svg);
  background-color: hsl(193, 100%, 96%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.cabecera {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 20%;
  padding: 3rem 4rem;
}
.cabecera img {
  width: 10rem;
}
.cabecera .free {
  background-color: #fff;
  border-radius: 30px;
  border: none;
  padding: 0.5rem 2.8rem;
  box-shadow: 0 0 10px #e5e5e5;
  cursor: pointer;
}
.cabecera .free:hover {
  color: hsl(208, 11%, 55%);
}

.portada {
  display: flex;
  padding: 2% 60px;
}
.portada .portada-texto h1 {
  font-size: 3rem;
  padding: 20px 10px 0;
  margin-bottom: 2rem;
}
.portada .portada-texto p {
  font-size: 1.2rem;
  font-weight: 100;
  padding-left: 15px;
  margin-bottom: 2rem;
}
.portada .portada-texto button {
  background-color: hsl(322, 100%, 66%);
  border: none;
  border-radius: 30px;
  padding: 10px 40px;
  margin-left: 1.5rem;
  color: #fff;
  cursor: pointer;
}
.portada .portada-texto button:hover {
  background-color: hsl(322, 100%, 85%);
}
.portada img {
  width: 35rem;
}

.cuerpo {
  margin: 8rem 5rem;
}
.cuerpo .bodys {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 96%;
  height: 28rem;
  box-shadow: 0 0 10px #e5e5e5;
  padding: 1rem 6rem;
  margin: 2rem;
  border-radius: 1rem;
}
.cuerpo .bodys img {
  width: 30rem;
}
.cuerpo .bodys .body-text h1 {
  font-size: 1.5rem;
}
.cuerpo .bodys .body-text .left {
  font-size: 0.8rem;
  color: hsl(208, 11%, 55%);
  width: 72%;
  padding: 1rem 0;
  display: flex;
}
.cuerpo .bodys .body-text .title {
  font-size: 1.5rem;
  width: 100%;
  padding-left: 9rem;
}
.cuerpo .bodys .body-text .right {
  font-size: small;
  color: hsl(208, 11%, 55%);
  width: 100%;
  padding: 1rem 0;
  display: flex;
  padding-left: 9rem;
}

.question {
  height: 30%;
  padding: 0 25rem;
}
.question .button-cast {
  position: relative;
  max-width: 100%;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 60px 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: -90px;
}
.question .button-cast h2 {
  font-size: 1.5rem;
  padding: 10px;
  margin-bottom: 1rem;
}
.question .button-cast button {
  background-color: hsl(322, 100%, 66%);
  border: none;
  border-radius: 30px;
  padding: 15px 50px;
  color: #fff;
  cursor: pointer;
}
.question .button-cast button:hover {
  background-color: hsl(322, 100%, 85%);
}

.contacto {
  background-color: hsl(192, 100%, 9%);
  padding: 10rem 5rem;
  padding-bottom: 2rem;
}
.contacto .copy {
  padding-bottom: 2rem;
}
.contacto .contact {
  display: flex;
}
.contacto .contact p {
  color: #fff;
  font-size: 0.8rem;
}
.contacto .contact .contact-us {
  width: 30%;
}
.contacto .contact .contact-us .icon {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.contacto .contact .contact-us .icon img {
  width: 1rem;
  height: 1rem;
  margin-right: 1rem;
}
.contacto .info1 {
  width: 25%;
  padding-left: 10rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contacto .info1 a {
  text-decoration: none;
  color: #fff;
}
.contacto .info1 a:hover {
  text-decoration: underline;
}
.contacto .info2 {
  width: 30%;
  padding-left: 10rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contacto .info2 a {
  text-decoration: none;
  color: #fff;
}
.contacto .info2 a:hover {
  text-decoration: underline;
}
.contacto .social button {
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: hsl(192, 100%, 9%);
  padding: 0.1rem;
  display: inline-flex;
  justify-content: center;
  margin: 0.2rem;
}
.contacto .social button:hover {
  border: 2px solid hsl(322, 100%, 66%);
}
.contacto .social button img {
  margin: 0.5rem;
}
.contacto .social button img:hover {
  color: hsl(322, 100%, 66%);
}

footer {
  background-color: hsl(192, 100%, 9%);
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
  color: #fff;
}

@media (max-width: 700px) {
  * {
    overflow-x: hidden;
  }
  .container {
    background-image: url(./images/bg-hero-mobile.svg);
    background-color: hsl(193, 100%, 96%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
  }
  .cabecera {
    padding: 2rem 1.5rem;
  }
  .portada {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .portada .portada-texto h1 {
    text-align: center;
    font-size: 2rem;
  }
  .portada .portada-texto p {
    text-align: center;
    font-size: 1.2rem;
    width: 26rem;
  }
  .portada .portada-texto button {
    margin-left: 4rem;
    padding: 0.8rem 5rem;
  }
  .portada img {
    width: 27rem;
    padding: 5rem 0 2rem;
  }
  .cuerpo {
    margin: 8rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 150rem;
  }
  .cuerpo .bx {
    display: flex;
    flex-direction: column-reverse;
  }
  .cuerpo .bx2 {
    display: flex;
    flex-direction: column;
  }
  .cuerpo .bodys {
    width: 95%;
    height: 40%;
  }
  .cuerpo .bodys img {
    width: 25rem;
    margin: 4rem 0;
  }
  .cuerpo .bodys .body-text h1 {
    text-align: center;
  }
  .cuerpo .bodys .body-text .title {
    padding-left: 0;
  }
  .cuerpo .bodys .body-text .right {
    padding-left: 0;
    padding-right: 2rem;
    text-align: center;
    font-size: 1rem;
    width: 110%;
  }
  .cuerpo .bodys .body-text .left {
    text-align: center;
    padding-right: 1rem;
    width: 105%;
    font-size: 16.5px;
  }
  .question {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    padding-left: 17.5rem;
  }
  .question .button-cast {
    padding: 2rem 2rem;
    position: absolute;
    margin-bottom: -5px;
    width: 90%;
    text-align: center;
  }
  .contacto {
    padding-inline: 2rem;
    display: flex;
    flex-direction: column;
  }
  .contacto .copy {
    width: 13rem;
  }
  .contacto .contact {
    flex-direction: column;
    width: 100%;
  }
  .contacto .contact p {
    font-size: 1rem;
    padding-left: 0.4rem;
    width: 71%;
    margin-bottom: 1rem;
  }
  .contacto .contact .contact-us {
    width: 90%;
  }
  .contacto .contact .contact-us .icon img {
    width: 1.8rem;
    height: 1.5rem;
    margin-bottom: 1rem;
  }
  .contacto .info1 {
    width: 80%;
    padding-left: 0;
    margin-top: 2rem;
  }
  .contacto .info2 {
    width: 80%;
    padding-left: 0;
    margin-top: 1.2rem;
  }
  .contacto .social {
    margin-left: 10rem;
  }
  .contacto .social button {
    margin-top: 4rem;
  }
  footer {
    padding-right: 5rem;
    padding-top: 2rem;
  }
}/*# sourceMappingURL=style.css.map */