/*
* **********************************
* ################################## ESTILOS DE INDEX
* **********************************
*/

/*
========================
======================== BGS
========================
*/

.bg-circle {
  background: #cad3df;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;

  -webkit-border-radius: 100px;
  -webkit-border-top-left-radius: 0px;
  -webkit-border-top-right-radius: 0px;
  -moz-border-radius: 100px;
  -moz-border-radius-topleft: 0px;
  -moz-border-radius-topright: 0px;
  border-radius: 100px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;

  overflow: hidden;
  margin: 0 auto;
}

@media(max-width: 1024px) {
  .bg-circle {
    -webkit-border-radius: 40px;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 0px;
    -moz-border-radius: 40px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
    border-radius: 40px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }
}

.bg-circle-degrade::after {
  content: "";
  width: 100%;
  height: 100%;

  position: absolute;
  left: 0;
  top: 0;
  background: url("../../img/global/custom/bg-halftone.png") center bottom no-repeat;
  opacity: 0.2;
}

.bg-circle-degrade {
  position: relative;
  background: rgb(246, 39, 46);
  background: linear-gradient(0deg,
      rgba(91, 3, 6, 1) 50%,
      rgba(246, 39, 46, 1) 100%);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;

  -webkit-border-radius: 100px;
  -webkit-border-top-left-radius: 0px;
  -webkit-border-top-right-radius: 0px;
  -moz-border-radius: 100px;
  -moz-border-radius-topleft: 0px;
  -moz-border-radius-topright: 0px;
  border-radius: 100px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;

  overflow: hidden;
  margin: 0 auto;
}

@media(max-width: 1024px) {
  .bg-circle-degrade {
    -webkit-border-radius: 40px;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 0px;
    -moz-border-radius: 40px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
    border-radius: 40px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }
}

/* apps */
.apps {
  background: rgb(253, 196, 4);
  background: radial-gradient(circle, rgba(253, 196, 4, 1) 0%, rgba(254, 103, 33, 1) 100%);
  border-radius: 20px;
  width: 80%;
  margin: 50px auto 0 auto;
  position: relative;
  z-index: 2;
}

@media(max-width: 1360px) {
  .apps {
    width: 90%;
  }
}

.apps .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 20px;
}

@media(max-width: 1024px) {
  .apps .container {
    flex-direction: column;
    justify-content: center;
  }
}

.apps p {
  max-width: 460px;
  color: #0A121A;
  font-family: "Filson Pro Regular", sans-serif;

  font-size: 18px;
  line-height: 20px;
  text-align: center;
}

@media(max-width: 1460px) {
  .apps p {
    font-size: 16px;
    line-height: 20px;
  }
}

@media(max-width: 1024px) {
  .apps p {
    max-width: 440px;
    font-size: 16px;
    line-height: 20px;
  }
}

.apps p strong {
  font-family: "Filson Pro Bold", sans-serif;
  font-weight: bold;

}

.apps .title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 30px;
}

@media(max-width: 1460px) {
  .apps .title {
    margin: 0 20px;
  }
}

@media(max-width: 1024px) {
  .apps .title {
    width: 100%;
    margin: 15px 0 20px 0;
    justify-content: center;
  }
}

.apps .title img.phone {
  height: 35px;
}

.apps .title img.arrow {
  height: 28px;
}

.apps .title span {
  font-family: "Filson Pro Regular", sans-serif;

  color: #B01116;
  font-size: 38px;
  font-weight: 500;
}


@media(max-width: 1460px) {
  .apps .title span {
    font-size: 28px;
  }
}

@media(max-width: 1280px) {
  .apps .title span {
    font-size: 18px;
  }
}


@media(max-width: 1280px) {
  .apps .title img.arrow {
    display: none;
  }
}

.apps .links {
  display: flex;
  align-items: center;
  gap: 5px;
}

@media(max-width: 1024px) {
  .apps .links {
    width: 100%;
    justify-content: center;
  }
}


.apps .links a {
  display: block;
  cursor: pointer;
  opacity: 1;
  transition: .4s;
}

.apps .links a:hover {
  opacity: .6;
  transition: .4s;
}

.apps .links img {
  height: 40px;
}


/*
========================
======================== BANNERS
========================
*/

.banners {
  padding-top: 33px;
  background: url("../../img/global/custom/vector-banner.png") center bottom no-repeat;
}

.banners .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1024px) {
  .banners .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
  }
}

.banners-texts {
  max-width: 520px;
}

@media (max-width: 1024px) {
  .banners-texts {
    max-width: 100%;
    text-align: center;
  }
}

.banners-texts h2 {
  color: #ffffff;

  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  /* 111.111% */
}

.banners-texts p {
  color: #ffffff;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  /* 137.5% */
}

.banners .swiper-pagination {
  margin-top: 20px;
}

.banners .swiper-pagination-bullet {
  width: 60px;
  height: 4px;
  background-color: transparent;
  border: 2px solid #b01116;
  opacity: 1;
  border-radius: 10px;
  cursor: pointer !important;
  margin: 0 5px;
}

.banners .swiper-pagination-bullet-active {
  background-color: #ffffff !important;
}

/*
========================
======================== TEXTS / OFFERS
========================
*/

.texts-accordions {
  padding-bottom: 100px;
  z-index: 9;
  position: relative;
}

@media (max-width: 1024px) {
  .texts-accordions {
    padding-bottom: 0;
  }
}

.texts-accordions .container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

/* TEXTS */
.texts-accordions .texts {
  flex: 1;
}

.texts-accordions .texts h2 {
  max-width: 440px;
  color: #ffffff;
  font-size: 42px;
  font-weight: 300;
  line-height: 44px;
}

@media (max-width: 1024px) {
  .texts-accordions .texts h2 {
    max-width: 100%;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
  }
}

.texts-accordions .texts h2 strong {
  font-weight: 500;
  display: block;
}

.texts-accordions .texts .htmlchars {
  margin: 30px 0;
}

.texts-accordions .texts .htmlchars p {
  color: #e0e9ee;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
}

.texts-accordions .texts .link-whatsapp {
  width: 39rem;
  height: 63px;
  display: flex;
  align-items: center;

  border-radius: 31.5px;
  border: 2px solid #78de87;
  background: #36ff5b;
  overflow: hidden;
  transition: 0.4s;
}

.texts-accordions .texts .link-whatsapp:hover {
  transition: 0.4s;
  box-shadow: 0px 27px 80px 0px rgba(24, 255, 115, 0.39),
    0px 11.28px 33.422px 0px rgba(24, 255, 115, 0.28),
    0px 6.031px 17.869px 0px rgba(24, 255, 115, 0.23),
    0px 3.381px 10.017px 0px rgba(24, 255, 115, 0.19),
    0px 1.796px 5.32px 0px rgba(24, 255, 115, 0.16),
    0px 0.747px 2.214px 0px rgba(24, 255, 115, 0.11);
}

.texts-accordions .texts .link-whatsapp span {
  flex: 1;
  color: #0a121a;
  font-size: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}

.texts-accordions .texts .link-whatsapp div {
  border-radius: 0px 900px 900px 0px;
  background: #9effb0;
  width: 63px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.texts-accordions .texts .link-whatsapp div i {
  font-size: 38px;
  color: #05931a;
}

/* ACCORDIONS */
.texts-accordions .accordions {
  width: 100%;
  max-width: 600px;
}

.texts-accordions .accordions .item {
  width: 100%;
  margin-bottom: 10px;

  border-radius: 4px;
  background: #b01116;
}

.texts-accordions .accordions .item.active {
  background-color: #f7bd4d;
}

.texts-accordions .accordions .item:last-child {
  margin-bottom: 0;
}

.texts-accordions .accordions .item .titles {
  width: 100%;
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.texts-accordions .accordions .item .titles h5 {
  color: #ffffff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  /* 144.444% */
}

.texts-accordions .accordions .item.active .titles h5 {
  color: #0b0d21;
}

.texts-accordions .accordions .item .titles i {
  font-size: 20px;
  color: #f7bd4d;
  transition: 0.4s;
}

.texts-accordions .accordions .item.active .titles i {
  transform: rotate(180deg);
  transition: 0.4s;
  color: #321049;
}

.texts-accordions .accordions .item .content {
  display: none;
}

.texts-accordions .accordions .item.active .content {
  display: block;
  padding: 0 20px 20px 20px;
}

.texts-accordions .accordions .item .content p {
  color: #0b0d21;

  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: 20px;
  /* 142.857% */
}

/*
========================
======================== OFFERS / PLANS
========================
*/

.offers-plans .container {
  padding: 110px 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

@media (max-width: 1024px) {
  .offers-plans .container {
    padding: 50px 0 30px 0;
    flex-direction: column;
    justify-content: center;
  }
}

/* OFFERS */
.offers-plans .offers {
  max-width: 340px;
}

@media (max-width: 1024px) {
  .offers-plans .offers {
    max-width: 100%;
  }
}

.offers-plans .offers-title {
  max-width: 320px;
  padding-left: 32px;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .offers-plans .offers-title {
    max-width: 100%;
    padding-left: 0;
    text-align: center;
  }
}

.offers-plans .offers-title h2 {
  color: #000;
  font-size: 28px;
  font-weight: 350;
  line-height: 34px;
}

@media (max-width: 1024px) {
  .offers-plans .offers-title h2 {
    font-size: 22px;
    line-height: 28px;
  }
}

.offers-plans .offers-title h2 strong {
  font-weight: 700;
}

.offers-plans .offers li {
  position: relative;
  background: #fff;
  border-radius: 7px;
  margin-bottom: 0.3rem;
  padding: 2rem 2rem 2rem 3rem;
  box-shadow: 0px 0px 60px 0px rgba(160, 186, 205, 0.1);
}

.offers-plans .offers li .icon {
  position: absolute;
  left: -12px;
  top: 50%;
  margin-top: -14px;
  width: 28px;
  height: 28px;
}

.offers-plans .offers li span {
  font-size: 1.6rem;
  color: #000000;
}

/* PLANS */
.offers-plans .plans {
  flex: 1;
  overflow: hidden;
}

.offers-plans .plans .htmlchars {}

.plans-item {
  overflow: hidden;
  transition: width 0.3s ease;
}

/* .plans-item {
  overflow: hidden;
  transition: width 0.3s ease;
}

.plans-item:hover {
  width: 50% !important;
} */

.offers-plans .plans .plans-titles {
  text-align: center;
  margin-bottom: 10px;
}

.offers-plans .plans .plans-titles h2 {
  color: #0a121a;
  font-size: 22px;
  font-style: normal;
  font-weight: 350;
  line-height: 26px;
}

.offers-plans .plans .plans-titles h2 strong {
  font-weight: 700;
  display: block;
}

.offers-plans .plans .plans-box {
  height: 628px;
  background-color: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 4px 20px 0px rgba(102, 101, 126, 0.15);

  display: flex;
  flex-direction: column;
}

.offers-plans .plans .plans-box-titles {
  padding: 30px 0;
  text-align: center;
  color: #ffffff;
}

.offers-plans .plans .plans-box-titles h3 {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
}


.offers-plans .plans .plans-box-titles h3 strong {
  font-size: 40px;
  line-height: 40px;
  font-weight: 800;
}

.offers-plans .plans .plans-box-titles h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}

.offers-plans .plans .plans-box-titles h4 strong {
  font-weight: 800;
}

.offers-plans .plans .plans-box-content {
  padding: 15px;
  height: 100%;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;

}

.offers-plans .plans .plans-box-content ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.offers-plans .plans .plans-box-content ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.offers-plans .plans .plans-box-content ul li svg {
  width: 24px;
  height: 24px;
}

.offers-plans .plans .plans-box-content ul li span {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 425;
  flex: 1;
}

.offers-plans .plans .plans-box-content .btn {
  background-color: red;
  width: 100%;
  padding: 13px 8px;
  text-align: center;
  border-radius: 31.5px;
  color: #ffff;
  font-size: 15px;
  transition: opacity 0.3s ease;
}

.offers-plans .plans .plans-box-content .btn:hover {
  opacity: 0.8;
}

.offers-plans .plans .swiper-pagination {
  position: relative;
  margin-top: 5rem;
  z-index: 99 !important;
}

.offers-plans .plans .swiper-pagination-bullet {
  width: 60px;
  height: 10px;
  background-color: #ffffff;
  opacity: 1;
  border-radius: 10px;
  cursor: pointer !important;
  margin: 0 5px;
}

.offers-plans .plans .swiper-pagination-bullet-active {
  background-color: #f9272e !important;
}
