@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
}
:root {
  --bg-color: #ffffff;
  --bg-dark-color: rgb(248, 249, 250);
  --white-color: rgb(238, 231, 231);
  --text-color: #000;
  /*   --second-color: #a09dab;
    --main-color: #f75023; */
  --main-color: rgb(0, 120, 233);
  --second-color: rgb(252, 180, 7);
  --primary-color: #0082b2;
  --secondary-color: #f2ab00;
  --third-color: #666666;
  --big-font: 5rem;
  --h2-font: 3rem;
  --p-font: 1.1rem;
}
body {
  background: var(--bg-dark-color);
}
header {
  position: fixed;
  width: 100vw;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  padding: 10px 10%;
  transition: 0.3s;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}
header.sticky {
  background: var(--bg-color);
  padding: 13px 18%;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}
.logo img {
  max-width: 100%;
  width: 160px;
  height: auto;
}
#menu-icon {
  font-size: 35px;
  color: var(--text-color);
  z-index: 10001;
  cursor: pointer;
}
.navlist {
  width: 90%;
  display: none;
}

.content {
  width: 100vw;
  position: relative;
  margin-top: 100px;
}
.banner {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: rgb(255, 255, 255);
}
.banner img {
  width: 100%;
  height: auto;
  padding: 5px;
}
.banner .texto-banner {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.banner .texto-banner p {
  word-wrap: break-word;
  display: block;
  max-width: 100%;
  color: var(--main-color);
  font-weight: 600;
  font-size: 25px;
}
.banner .texto-banner p span {
  color: var(--second-color);
}
.accion {
  width: 100%;
  height: auto;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accion a {
  font-size: 22px;
  color: var(--main-color);
  font-weight: 600;
  display: block;
  width: 90%;
  text-decoration: none;
}
.accion .btn {
  padding: 22px;
  border: 2.5px solid var(--second-color);
  text-align: center;
  border-radius: 39px;
}
.seccion {
  width: 100%;
  height: max-content;
  margin: 20px auto;
  background: rgb(255, 255, 255);
}
.seccion .up {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.seccion .up img {
  max-width: 220px;
  height: auto;
}
.seccion .down {
  color: var(--main-color);
  text-align: center;
  font-size: 19px;
  font-weight: 500;
  line-height: 2.5rem;
}
.seccion .down p span {
  font-size: 25px;
  font-weight: 800;
  color: var(--secondary-color);
}
.como {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: row;
  margin: 20px auto;
}
.como .left {
  flex: 1;
  text-align: right;
  font-size: 25px;
  font-weight: 800;
  padding: 10px;
  color: var(--secondary-color);
}
.como .right {
  flex: 9;
  color: var(--main-color);
  font-size: 19px;
  font-weight: 500;
  line-height: 2.5rem;
}

/*  ----  ACA DEL OTRO VIENE  */
.service {
  width: 100%;
  height: fit-content;
}
.heading {
  width: 100%;
  text-align: center;
  padding: 10px;
}
.faq-content {
  width: 95%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, auto));
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}
.item-faq {
  width: 90%;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: flex-start;
  margin: 10px 20px;
  padding: 25px;
  box-shadow: 18px 0px 87px 0px rgb(10 15 70 / 7%);
  transition: ease 0.2s;
}
.item-faq:hover {
  box-shadow: 18px 0px 87px 0px rgb(10 15 70 / 7%);
  will-change: transform;
  transform: perspective(1000px) rotateX(4.8deg) rotateX(10.23deg)
    scale3d(1.05, 1.05, 1.05);
  cursor: pointer;
  border-radius: 12px;
  border: 0.5px solid var(--second-color);
}
.faq-content img {
  height: 40px;
  width: 40px;
}
.faq-content p {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service .heading h2 {
  color: var(--second-color);
}
.service .heading h3 {
  color: var(--third-color);
}
.service-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, auto));
  gap: 2rem;
  align-items: center;
  margin-top: 5rem;
}
.cta-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, auto));
  gap: 2rem;
  align-items: center;
  margin-top: 5rem;
  text-align: center;
}
.wrap {
  background: #fff;
  box-shadow: 18px 0px 87px 0px rgb(10 15 70 / 7%);
  border-radius: 12px;
  padding: 50px;
  transition: ease 0.4s;
  cursor: pointer;
}
.one {
  background: #baebcd;
}
.two {
  background: #d9d1fa;
}

.three {
  background: #faedce;
}
.wrap h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 2px;
}
.wrap p {
  font-size: var(--p-font);
}
/* ---- FOOTER ----- */
footer {
  width: 100%;
  padding: 50px 0px;
  *background-image: url(../img/background-footer.svg);
  *background-size: cover;
  background-color: #ebebeb;
  -webkit-mask-image: url(../img/background-footer.svg);
  -webkit-mask-size: cover;
  mask-image: url(../img/background-footer.svg);
  mask-size: cover;
}
.container__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  margin-top: 50px;
}
.box__footer {
  display: flex;
  flex-direction: column;
  padding: 40px;
}
.box__footer .logo img {
  width: 150px;
  height: auto;
}
.box__footer .terms {
  max-width: 350px;
  margin-top: 20px;
  font-weight: 500;
  color: var(--third-color);
  font-size: 18px;
  line-height: 18px;
  display: flex;
  flex-direction: column;
}
.box__footer h2 {
  margin-bottom: 30px;
  color: var(--main-color);
  font-weight: 700;
}
.box__footer a {
  margin-top: 10px;
  color: var(--third-color);
  font-weight: 500;
}
.box__footer a:hover {
  opacity: 0.8;
}
.box__footer i {
  font-size: 20px;
  color: var(--second-color);
}
.box__footer span {
  line-height: 1.5rem;
  margin: 10px 0px;
}
.box__copy {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 40px 0px;
}
.box__copy hr {
  border: none;
  height: 1px;
  background-color: #7a7a7a;
}
.box__copy p {
  margin-top: 20px;
  color: var(--third-color);
}
.box__copy b {
  color: var(--main-color);
}

/*------ FIN FOOTER -----*/
@media (min-width: 770px) {
  #menu-icon {
    display: none;
  }
  .navlist {
    display: flex;
  }
  .navlist.active {
    top: 100%;
  }
  .navlist li {
    position: relative;
  }
  .navlist a {
    font-size: var(--p-font);
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 27px;
  }
  .navlist a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--second-color);
    bottom: -3px;
    left: 0;
    transition: ease 0.4s;
  }
  .navlist a:hover::after {
    width: 100%;
  }
  .banner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .banner img {
    max-width: 900px;
    height: auto;
  }
  .banner .texto-banner p {
    width: 100%;
    text-align: center;
  }
  .accion {
    width: 50%;
    margin: 0 auto;
  }
  .como {
    width: 75%;
    margin: 0 auto;
  }
}
