@charset "UTF-8";
@font-face {
  font-family: "Rubik";
  src: url("./fonts/Rubik.ttf") format("opentype");
}
:root {
  --white: #fff;
  --black: #07081F;
  --skyblue: #e2eeff;
  --blue: #002C6B;
  --pink: #F2AAD7;
  --gray: #63637b;
  --orange: #f98133;
  --orange2: #fe6800;
  --yellow: #F49D1A;
  --fs-base: clamp(1rem, 0.9517326732673267rem + 0.19801980198019803vw, 1.125rem);
  --fs-md: clamp(1rem, 0.806930693069307rem + 0.7920792079207921vw, 1.5rem);
  --fs-lg: clamp(1.875rem, 1.75rem + 0.5vw, 2.1875rem) /*30 - 35px*/;
  --fs-xl: clamp(1.875rem, 1.475rem + 1.6vw, 2.875rem); /*30- 46px*/
  --fs-xxl: clamp(2.375rem, 1.8250000000000002rem + 2.1999999999999997vw, 3.75rem) /*38 - 60px*/;
}

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

body {
  min-height: 100dvh;
  max-width: 100dvw;
  overflow-x: hidden;
  margin-inline: auto;
  font-family: "Rubik";
  color: var(--black);
  font-size: 16px;
  background-color: #F9F9F9;
}

h1 {
  font-size: var(--fs-xxl);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
}

h2 {
  font-size: var(--fs-xl);
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: -2px;
  color: var(--blue);
}
h2 span {
  font-size: var(--fs-xxl);
  letter-spacing: -1px;
  font-weight: 800;
}

h3 {
  font-size: 30px;
  font-family: var(--ft-bold);
  color: var(--black);
  line-height: 1.3;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  color: #313233;
  line-height: 1.27;
  margin-bottom: 0;
}

p {
  margin: 0;
}

ul {
  text-decoration: none;
  padding: 0;
}

a {
  text-decoration: none;
}

/*Generales*/
.mw-33 {
  max-width: 33%;
  margin: 0;
}

.text-blue {
  color: var(--blue) !important;
}

.text-pink {
  color: var(--pink) !important;
}

.text-gray {
  color: var(--black) !important;
}

.bg-gray {
  background-color: #f8f8f8;
}

.titulo {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 90% */
  margin-bottom: 0.5rem;
}

.p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.2px; /* 106.667% */
  max-width: 455px;
  margin-inline: auto;
  text-align: center;
  color: var(--black);
}

.text-title {
  font-family: var(--ft-bold);
  color: var(--black);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.subtitulo {
  font-weight: bold;
  margin: 1rem 0;
}

.img-dark {
  filter: brightness(0.8);
}

.word {
  display: inline-block;
  opacity: 0;
  filter: blur(3px);
  animation: fade-in 1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

@keyframes fade-in {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
/*Negrita*/
.fw-300 {
  font-weight: 300;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 700;
}

.fw-900 {
  font-weight: 900;
}

/*Tamaños*/
.ft-9 {
  font-size: 9px;
}

.ft-10 {
  font-size: 10px !important;
}

.ft-11 {
  font-size: 11px !important;
}

.ft-12 {
  font-size: 12px !important;
}

.ft-14 {
  font-size: 14px !important;
}

/*Colores*/
.text-purple {
  color: var(--purple);
}

/*Distribuciones*/
.start-x, .start-y, .center-x, .center-y,
.between-x, .between-y, .end-y, .end-x, .around-x {
  display: flex;
  flex-wrap: wrap;
}

.start-y, .center-y, .between-y, .end-y {
  flex-direction: column;
}

.start-x, .start-y {
  justify-content: start;
  align-items: start;
}

.center-x, .center-y {
  justify-content: center;
  align-items: center;
}

.between-x, .between-y {
  justify-content: space-between;
  align-items: center;
}

.around-x {
  justify-content: space-around;
  align-items: start;
}

.end-y, .end-x {
  justify-content: end;
}

/*Imagen de fondo*/
.imagen-fondo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/*Estilos*/
.text-sub {
  position: relative;
  display: inline-flex;
}

button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
}

.text-sub::after {
  content: "";
  height: 3px;
  width: 100%;
  left: 0;
  bottom: -12px;
  background-color: var(--yellow);
  position: absolute;
}

.btn-base {
  display: inline-flex;
  align-items: center;
  background-color: var(--yellow);
  border: 2px solid var(--yellow);
  color: var(--white) !important;
  border-radius: 50px;
  font-size: 15px;
  transition: all 0.5s ease;
  font-weight: 700;
  line-height: 1.3;
  height: 54px;
  padding-inline: 24px;
}
.btn-base .arrow {
  background-color: var(--blue);
  border-radius: 50%;
  height: 18px;
  width: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.btn-base .arrow i {
  font-size: 12px;
  color: var(--yellow);
}
.btn-base .play {
  background: linear-gradient(135deg, rgb(61, 61, 61) 0%, rgb(161, 161, 161) 100%);
  border-radius: 50%;
  height: 28px;
  width: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.btn-base .play i {
  font-size: 12px;
  color: var(--white);
  margin-left: 3px;
}
.btn-base:hover {
  background-color: transparent !important;
  color: var(--yellow) !important;
}
.btn-base:hover .arrow {
  background-color: var(--yellow);
}
.btn-base:hover .arrow i {
  color: var(--white);
}
.btn-base.transparent {
  background: transparent;
  border-color: var(--white);
}
.btn-base.transparent .arrow {
  background-color: var(--blue) !important;
}
.btn-base.transparent:hover {
  background-color: white !important;
  color: var(--blue) !important;
}
.btn-base.blue {
  background: var(--blue);
  border-color: var(--blue);
}
.btn-base.blue .arrow {
  background-color: var(--yellow) !important;
}
.btn-base.blue .arrow i {
  color: var(--blue);
}
.btn-base.blue:hover {
  background-color: var(--yellow) !important;
  border-color: var(--yellow);
  color: var(--white) !important;
}
.btn-base.blue:hover .arrow {
  background-color: var(--blue) !important;
}
.btn-base.blue:hover .arrow i {
  color: var(--yellow);
}

.btn-base2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #277EC7;
  transition: all 0.5s ease;
}
.btn-base2 img {
  display: flex;
  width: 20px;
  height: 20px;
  padding: 4px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 6px;
  background: #277EC7;
  transition: all 0.5s ease;
}
.btn-base2:hover {
  filter: brightness(1.2);
}

.mw-60 {
  max-width: 60%;
}

/* From Uiverse.io by iZOXVL */
.btn-valoracion {
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  height: 30px;
  width: 50px;
  transition: all 0.4s ease;
  outline: none;
  position: relative;
  overflow: hidden;
  font-weight: bold;
}
.btn-valoracion::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
  transform: scale(0);
  transition: transform 0.5s ease;
}
.btn-valoracion:hover::after {
  transform: scale(4);
}
.btn-valoracion.si {
  background-color: #8bc34a;
}
.btn-valoracion.si:hover {
  background-color: #93cf4d;
}
.btn-valoracion.no {
  background-color: #d02020;
}
.btn-valoracion.no:hover {
  background-color: #e52121;
}

/*Utilies*/
.mfp-close {
  background-color: transparent !important;
  margin-top: 30px !important;
  margin-left: 10px !important;
}

.left-0 {
  position: absolute;
  left: 10% !important;
  top: 10%;
}

/*Header*/
/* Nav */
nav {
  position: fixed;
  width: 100%;
  transition: all 0.5s ease-in;
  z-index: 100;
  background: transparent;
}

.categorias li:not(.close):not(.mega-dropdown) {
  padding-inline: 1rem;
  transition: 0.2s all ease;
  margin-bottom: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  height: 90px;
}
.categorias li:not(.close):not(.mega-dropdown) a {
  position: relative;
  color: var(--white);
  transition: all 0.3s ease;
}
.categorias li:not(.close):not(.mega-dropdown) a:hover {
  color: var(--yellow);
}
.categorias li:not(.close):not(.mega-dropdown) .activo {
  color: var(--yellow);
}

nav.fonts {
  background-color: var(--blue);
}
nav.fonts .categorias li:not(.close):not(.mega-dropdown) {
  padding-inline: 1rem;
  transition: 0.2s all ease;
  margin-bottom: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  height: 60px;
}

nav.black {
  background-color: var(--blue);
}
nav.black .categorias li:not(.close):not(.mega-dropdown) {
  padding-inline: 1rem;
  transition: 0.2s all ease;
  margin-bottom: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  height: 60px;
}

/* Estado inicial del menú */
.offcanvas-top {
  top: 80px !important;
  height: 0;
  background-color: var(--blue);
}

/* Animación para expandir el menú */
@keyframes expandMenu {
  from {
    height: 0;
  }
  to {
    height: 100dvh;
  }
}
/* Animación para colapsar el menú */
@keyframes collapseMenu {
  from {
    height: 100dvh;
  }
  to {
    height: 0;
  }
}
/* Cuando el menú esté visible */
.offcanvas-top.show {
  animation: expandMenu 0.5s ease-in-out forwards;
}

/* Cuando el menú se oculta */
.offcanvas-top:not(.show) {
  animation: collapseMenu 0.5s ease-in-out forwards;
}

.offcanvas-backdrop.show {
  display: none;
}

.navbar-nav::-webkit-scrollbar {
  width: 0px;
}

/* From Uiverse.io by NAKAMOZ */
.hamburger input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.hamburger {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: none;
  box-shadow: none !important;
}

.checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 1.3em;
  width: 32px;
}

.checkmark span {
  width: 32px;
  height: 2px;
  background-color: var(--white);
  position: absolute;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  left: 0;
}

.checkmark :nth-child(1) {
  top: 10%;
}

.checkmark :nth-child(2) {
  top: 50%;
}

.checkmark :nth-child(3) {
  top: 90%;
}

.offcanvas-top.show + .hamburger .checkmark :nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
}

.offcanvas-top.show + .hamburger .checkmark :nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -moz-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  -o-transform: translateY(-50%) rotate(-45deg);
}

.offcanvas-top.show + .hamburger .checkmark :nth-child(3) {
  transform: translateX(-50px);
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
  opacity: 0;
}

.logo {
  width: 172px;
  height: 50px;
}

.dropdown-menu.mega-menu {
  left: 0px !important;
  margin-top: 0px !important;
  background: #FCFAF8;
  border: none;
}

.navbar-expand-xl .navbar-nav .dropdown-menu {
  left: 0;
}

.mega-menu {
  border-radius: 0;
  position: relative;
  width: 100%;
}

.mega-menu ul {
  list-style: none;
}

.mega-menu ul li {
  color: var(--black);
}

.mega-menu ul li {
  padding: 0px 0;
  font-size: 14px;
  font-weight: 400 !important;
}

.mega-menu ul li:hover {
  color: var(--gray);
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/*Footer*/
.footer-middle {
  margin-top: 2rem;
  display: block;
  font-size: 13px;
  background-size: cover;
  color: #464646;
}
.footer-middle .entradas li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-middle .elipse {
  margin-top: 2rem;
}
.footer-middle .elipse img {
  left: -15px;
  top: -15px;
}
.footer-middle .subscripcion {
  display: flex;
}
.footer-middle .subscripcion input {
  display: flex;
  width: 100%;
  height: 44px;
  padding: 15px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: var(--white);
  color: rgba(0, 0, 0, 0.8);
  font-weight: 700;
  border-radius: 100px;
  border: 1px solid #EAEAEA;
  background: #FFF;
  margin-right: 0.5rem;
  font-weight: 400;
  transition: all 0.5s ease;
}
.footer-middle .subscripcion input:hover, .footer-middle .subscripcion input:focus {
  border: 1px solid var(--blue);
  box-shadow: none !important;
}
.footer-middle .subscripcion button {
  display: flex;
  width: 130px;
  height: 44px;
  padding: 12px 10px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: all 0.5s ease;
  border-radius: 999px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--white);
  color: #FFF;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.12;
}
.footer-middle .subscripcion button:hover {
  background-color: var(--white);
  color: var(--blue);
}
.footer-middle a {
  color: #464646;
  font-weight: 400;
  transition: all 0.5s ease;
}
.footer-middle a:hover {
  color: var(--yellow);
}
.footer-middle h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--blue);
}
.footer-middle li {
  margin-bottom: 0.9rem;
}
.footer-middle .around-x {
  width: 100%;
  max-width: 90%;
}
.footer-middle .plus {
  position: relative;
  display: inline-flex;
}
.footer-middle .plus::after {
  content: "Plus+";
  position: absolute;
  bottom: -20px;
  left: 85%;
  width: 100px;
  height: 20px;
  font-size: 13px;
  font-style: italic;
  font-weight: 700;
  color: var(--yellow);
}
.footer-middle p {
  max-width: 290px;
  font-size: 1rem;
  line-height: 1.5;
}

.footer-bottom .container {
  margin-top: 1rem;
  line-height: normal;
  font-weight: 400;
  padding-top: 1rem;
  border-top: 1px solid rgba(49, 50, 51, 0.09);
  color: #464646;
}
.footer-bottom .container p {
  margin: 0;
}
.footer-bottom .container ul {
  list-style: none;
  display: flex;
  margin-bottom: 0;
}
.footer-bottom .container ul li {
  padding-inline: 1rem;
  color: #464646;
  transition: all 0.5s ease;
}
.footer-bottom .container ul li:hover {
  color: var(--yellow);
}
.footer-bottom .container ul a:nth-last-of-type(1) li {
  border-left: 1px solid rgba(49, 50, 51, 0.09);
}

/*Generales*/
input[type=text]:focus, input[type=tel]:focus, input[type=checkbox]:focus,
input[type=email]:focus, input[type=password]:focus, textarea:focus, select:focus, input[type=file]:focus, input[type=date]:focus, .ck-content:focus, input[type=time]:focus {
  box-shadow: 0 0 5px var(--blue) !important;
}

.form-check-input:checked {
  background-color: var(--blue) !important;
  border-color: var(--blue) !important;
}

.redes {
  display: flex;
}
.redes a {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  margin-right: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--yellow);
  transition: all 0.5s ease;
  background-color: var(--yellow);
}
.redes a img {
  width: 17px;
  transition: all 0.5s ease;
  filter: brightness(0) invert(1);
}
.redes a img.x {
  width: 14px;
}
.redes a:hover img {
  filter: brightness(0);
}

.tag {
  display: inline-flex;
  padding: 6px 14px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.tag.style1 {
  background: #E3EEFF;
}
.tag.style2 {
  background: #FFF0E8;
}
.tag.style3 {
  background: rgba(123, 224, 65, 0.12);
}

.icono {
  background-color: var(--yellow);
  width: 41px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  margin-right: 10px;
}
.icono img {
  width: 30px;
}

.circulo {
  position: relative;
}
.circulo::after {
  content: "";
  position: absolute;
  width: 130%;
  height: 110%;
  left: -15%;
  border-radius: 50%;
  border: 3px solid var(--yellow);
  border-top: 6px solid var(--yellow);
  border-bottom: 6px solid var(--yellow);
  z-index: -1;
}

.background {
  position: absolute;
  width: 100%;
  height: 70%;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 30px;
  border-bottom: 0;
  z-index: -1;
  left: 0;
}
.background .brillo {
  position: absolute;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  bottom: -75px;
  left: -75px;
  z-index: -1;
  filter: blur(80px);
  background: radial-gradient(circle, rgb(254, 104, 0) 15%, rgba(254, 104, 0, 0.6) 40%, rgba(254, 104, 0, 0.3) 60%, rgba(254, 104, 0, 0) 100%);
}
.background .brillo:last-of-type {
  bottom: auto;
  top: -75px;
  left: auto;
  right: -75px;
  background: radial-gradient(circle, rgb(99, 134, 231) 15%, rgba(122, 154, 242, 0.6) 40%, rgba(125, 157, 246, 0.3) 60%, rgba(120, 144, 212, 0) 100%);
}

section {
  margin: 5rem 0;
}

/*Main*/
.portada-section {
  height: 720px;
  margin-top: 0;
  padding-top: 150px;
  position: relative;
}
.portada-section.style2 {
  padding-top: 120px;
  min-height: 540px;
  height: auto;
  display: flex;
  align-items: end;
  overflow: hidden;
}
.portada-section.style2 h1 {
  font-size: clamp(2.375rem, 2.225rem + 0.75vw, 3.125rem);
  max-width: 560px;
}
.portada-section.style2 .float {
  position: absolute;
  left: 150px;
}
.portada-section.style2 .img-fluid {
  max-height: 470px;
}
.portada-section.style2 .descuento {
  right: 0;
}
.portada-section .container {
  position: relative;
}
.portada-section h1 {
  color: var(--white);
}
.portada-section p {
  color: #FFF;
  font-size: 1.5rem;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: -1px;
  max-width: 440px;
  margin: 2rem 0;
}
.portada-section span {
  font-weight: 600;
}
.portada-section .users {
  display: flex;
}
.portada-section .users .user {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--white);
  overflow: hidden;
}
.portada-section .users .user img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.portada-section .users .user:not(:first-of-type) {
  margin-left: -20px;
}
.portada-section .users .user:last-child {
  border-color: var(--yellow);
  background-color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  margin-left: -20px;
}
.portada-section .users .user:last-child img {
  width: 29px;
  height: 29px;
}
.portada-section .users .user:last-child:hover {
  transform: scale(1.1);
}
.portada-section .cupon {
  width: 192px;
  height: 55px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 2px solid var(--blue);
  background: #FFF;
  box-shadow: 0px 15px 16px -7px rgba(0, 0, 0, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  position: absolute;
  left: 5%;
  top: 50%;
}
.portada-section .descuento {
  animation: float 3s ease-in-out infinite;
  width: 97px;
  height: 123px;
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  top: 0;
}

.phone {
  position: absolute;
  transition: all 0.8s ease;
  right: -10%;
  max-width: 115%;
  width: 115%;
  z-index: 10;
  top: auto;
  bottom: -41px;
}

.mapa img {
  position: absolute;
  width: 135%;
  left: 0;
  left: -43%;
}

.estadisticas {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 260px;
  flex-shrink: 0;
  border-radius: 20px;
  background: rgba(229, 229, 229, 0.31);
  -webkit-backdrop-filter: blur(0.9499999881px);
          backdrop-filter: blur(0.9499999881px);
  padding: 50px;
  position: absolute;
  bottom: -65px;
  width: 100%;
  left: 0;
  right: 0;
  margin-inline: auto;
  overflow: hidden;
}
.estadisticas .brillo {
  position: absolute;
  height: 350px;
  width: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(254, 104, 0) 15%, rgba(254, 104, 0, 0.6) 40%, rgba(254, 104, 0, 0.3) 60%, rgba(254, 104, 0, 0) 100%);
  bottom: -175px;
  left: 0;
  z-index: -1;
  filter: blur(80px);
}

.ct-simple {
  border-radius: 20px;
  background: var(--white);
  padding: 20px;
}
.ct-simple .score {
  display: flex;
  border-bottom: 2px solid var(--blue);
}
.ct-simple .score img {
  margin-right: 1rem;
}
.ct-simple .digito {
  color: var(--blue);
  text-align: center;
  font-size: 67.2px;
  font-weight: 700;
  line-height: 1.1;
  margin-right: 1rem;
}
.ct-simple p {
  color: #464646;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.12;
  max-width: 120px;
  margin: 0 1rem 0 0;
}

.float {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.aprovecha-section {
  color: #464646;
}
.aprovecha-section p {
  font-size: 16px;
}
.aprovecha-section ul {
  border-radius: 20px;
  border: 1px solid rgba(49, 50, 51, 0.09);
  padding: 1rem;
  font-size: 16px;
  list-style: none;
  margin-top: 2rem;
}
.aprovecha-section ul li {
  margin-bottom: 0.5rem;
}
.aprovecha-section .text-end .float {
  position: absolute;
  top: 50%;
  left: 0;
  max-width: 70%;
}
.aprovecha-section .text-end .float + .img-fluid {
  max-width: 90%;
}
.aprovecha-section .col-lg-2 .float {
  position: absolute;
  top: 10%;
  right: 0;
  max-width: 100%;
  animation: float 2.5s ease-in-out infinite;
}
.aprovecha-section .cta {
  margin-top: 1rem;
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--blue);
  margin-inline: auto !important;
  display: inline-flex;
  justify-content: center;
  background-image: url("../img/others/circulo.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 24px;
}
.aprovecha-section .float {
  position: absolute;
  top: 0;
  right: 0;
}
.aprovecha-section .float2 .float {
  width: 100px;
  right: -30px;
  bottom: 200px !important;
  top: auto !important;
}

.beneficios-section p {
  max-width: 450px;
}
.beneficios-section .beneficio {
  border-radius: 20px;
  border: 1px solid rgba(49, 50, 51, 0.09);
  padding: 1.5rem;
  height: 100%;
  transition: all 0.5s ease;
  position: relative;
  top: 0;
}
.beneficios-section .beneficio:hover, .beneficios-section .beneficio.activo {
  box-shadow: 0px 15px 16px -7px rgba(0, 0, 0, 0.1);
}
.beneficios-section .beneficio:hover {
  top: -10px;
}

.clientes-section h2 {
  font-size: var(--fs-lg);
  background: linear-gradient(to right, #313233 0%, rgba(49, 50, 51, 0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-flex;
}

.carrusel-clientes {
  position: relative;
}
.carrusel-clientes::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, #f9f9f9 0, rgba(249, 249, 249, 0.95) 40%, rgba(249, 249, 249, 0) 100%);
}
.carrusel-clientes::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 100%;
  right: 0;
  top: 0;
  background: linear-gradient(-90deg, #f9f9f9 0, rgba(249, 249, 249, 0.95) 40%, rgba(249, 249, 249, 0) 100%);
  z-index: 1;
}

.carrusel-clientes .cliente {
  display: flex;
  align-items: center;
  justify-content: center;
}
.carrusel-clientes .cliente .ct-imagen {
  width: 180px;
  height: 100px;
  margin-inline: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carrusel-clientes .cliente .ct-imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease;
  filter: grayscale(100%);
}

.pasos-section .parent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.pasos-section .div1 {
  grid-area: 1/1/3/2;
}
.pasos-section .div2 {
  grid-area: 3/1/4/2;
}
.pasos-section .div3 {
  grid-area: 1/2/4/3;
}
.pasos-section .div4 {
  grid-area: 1/3/3/4;
}
.pasos-section .div5 {
  grid-area: 3/3/4/4;
}
.pasos-section .paso {
  display: flex;
  flex-direction: column;
  justify-content: start;
  height: 100%;
  padding-top: 1.5rem;
}
.pasos-section .paso .digito {
  color: rgba(244, 157, 26, 0.4);
  font-size: 64px;
  font-weight: 600;
  line-height: 1.1;
  margin-right: 30px;
}
.pasos-section .paso .digito.style2 {
  color: #D6DDF2;
}
.pasos-section .paso h4 {
  color: var(--blue);
  font-size: 22px;
  text-align: start;
}
.pasos-section .paso.bb-1 {
  border-bottom: 1px solid rgba(49, 50, 51, 0.09);
  padding-bottom: 2rem;
}
.pasos-section .smartphone {
  margin-inline: auto;
  overflow: hidden;
}
.pasos-section .smartphone img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: end;
     object-position: end;
}

.testimonios-section {
  margin-bottom: 0rem;
}
.testimonios-section .container {
  overflow: hidden;
  padding-bottom: 100px;
}

.swiper-slide {
  border-radius: 20px;
  border: 1px solid rgba(87, 171, 255, 0.09);
  width: 480px;
  height: 100%;
  min-height: 320px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  flex-shrink: 0;
  color: #464646;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 15px 16px -7px rgba(0, 0, 0, 0.1);
  background-color: transparent;
}
.swiper-slide .brillo {
  position: absolute;
  height: 250px;
  width: 250px;
  border-radius: 50%;
  bottom: -75px;
  left: -75px;
  z-index: -1;
  filter: blur(80px);
  background: radial-gradient(circle, rgb(254, 104, 0) 15%, rgba(254, 104, 0, 0.6) 40%, rgba(254, 104, 0, 0.3) 60%, rgba(254, 104, 0, 0) 100%);
}
.swiper-slide .brillo:last-of-type {
  bottom: auto;
  top: -75px;
  left: auto;
  right: -75px;
  background: radial-gradient(circle, rgb(99, 134, 231) 15%, rgba(122, 154, 242, 0.6) 40%, rgba(125, 157, 246, 0.3) 60%, rgba(120, 144, 212, 0) 100%);
}
.swiper-slide .autor {
  display: flex;
  align-items: center;
}
.swiper-slide .autor .ct-cliente {
  width: 61px;
  height: 61px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 1rem;
}
.swiper-slide .autor .ct-cliente img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.swiper-slide .autor .nombre {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.1;
}
.swiper-slide .autor .cargo {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
}
.swiper-slide .ct-portada {
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: 15px;
  margin: 1rem 0;
}
.swiper-slide .ct-portada img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.swiper-slide .link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
.swiper-slide .link i {
  color: var(--white);
  font-size: 32px;
  font-weight: 600;
  transform: rotate(-45deg);
  transition: all 0.5s ease;
}
.swiper-slide .link:hover {
  background-color: var(--blue);
}
.swiper-slide .link:hover i {
  transform: rotate(0deg);
}

.swiper-button-next,
.swiper-button-prev {
  display: none;
}

.preguntas-section .cta {
  max-width: 300px;
  min-height: 99px;
  flex-shrink: 0;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(87, 171, 255, 0.09);
  background: #FFF;
  box-shadow: 0px 15px 16px -7px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  color: #464646;
  font-weight: 500;
  margin-top: -50px;
}
.preguntas-section .cta .icono {
  width: 50px;
  height: 50px;
  margin-right: 2rem;
}
.preguntas-section .cta .icono img {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}
.preguntas-section .cta h4 {
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.accordion .accordion-button.collapsed {
  padding-left: 1rem;
  padding-bottom: 16px;
  background-color: transparent;
}
.accordion .accordion-button {
  font-weight: 500;
  line-height: 1;
  color: var(--blue);
  font-size: var(--fs-base);
  background-color: transparent;
  padding-top: 12px;
  padding-bottom: 1rem;
  box-shadow: none;
  text-align: start;
  padding-left: 1rem;
}
.accordion .accordion-button::before {
  content: "+";
  font-weight: 400;
  color: var(--yellow);
  background-image: none;
  line-height: 1;
  width: auto;
  height: auto;
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: all 0.5s ease;
}
.accordion .accordion-button::after {
  display: none;
}
.accordion .accordion-button:not(.collapsed) {
  pointer-events: none;
}
.accordion .accordion-button:not(.collapsed)::before {
  content: "-";
}
.accordion .accordion-item {
  background-color: transparent;
  border-right: none;
  margin: 1rem 0;
}
.accordion .accordion-body {
  font-size: 1rem;
  padding-inline-start: 0px;
  padding-inline-end: 0px;
  padding-bottom: 24px;
  padding-top: 0;
  padding-left: 2.9rem;
}
.accordion.style2 .accordion-item {
  border: none;
  margin-bottom: 10px;
  background-color: white;
  border-radius: 20px;
  padding: 20px 15px;
}
.accordion.style2 .accordion-button {
  border-bottom: none;
}

.novedades-section .novedad {
  padding: 0.5rem 0.5rem 2rem 0.5rem;
  height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(49, 50, 51, 0.09);
  background-color: var(--white);
}
.novedades-section .novedad .ct-portada {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 1rem;
  position: relative;
  transition: all 0.5s ease;
}
.novedades-section .novedad .ct-portada img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  transition: 0.5s ease;
}
.novedades-section .novedad .ct-portada .tag {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2655E2;
  padding-inline: 0.5rem;
  margin: 0;
  color: var(--white);
  font-weight: 400;
  z-index: 10;
}
.novedades-section .novedad .ct-portada::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
}
.novedades-section .novedad .info {
  padding-inline: 1rem;
}
.novedades-section .novedad .fecha {
  margin-left: 1rem;
  color: var(--yellow);
  font-weight: 400;
}
.novedades-section .novedad h4 {
  margin-bottom: 0.5rem;
}
.novedades-section .novedad:hover .ct-portada::after {
  width: 100%;
}
.novedades-section .novedad:hover .ct-portada img {
  transform: scale(1.15) rotate(5deg);
  position: relative;
}

.app-section {
  color: #464646;
  margin-bottom: 0;
}
.app-section .banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 3rem 1.5rem 0 1.5rem;
}
.app-section .banner .brillo {
  position: absolute;
  height: 300px;
  width: 300px;
  border-radius: 50%;
  bottom: -75px;
  left: -75px;
  z-index: -1;
  filter: blur(80px);
  background: radial-gradient(circle, rgb(254, 104, 0) 15%, rgba(254, 104, 0, 0.6) 40%, rgba(254, 104, 0, 0.3) 60%, rgba(254, 104, 0, 0) 100%);
}
.app-section .banner .brillo:last-of-type {
  bottom: auto;
  top: -75px;
  left: auto;
  right: -75px;
  background: radial-gradient(circle, rgb(99, 134, 231) 15%, rgba(122, 154, 242, 0.6) 40%, rgba(125, 157, 246, 0.3) 60%, rgba(120, 144, 212, 0) 100%);
}
.app-section .banner .ct-portada {
  display: flex;
  align-items: end;
  width: 100%;
  height: 300px;
  margin-inline: auto;
  overflow: hidden;
}
.app-section .banner .ct-portada img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: 0.5s ease;
}
.app-section h2 {
  color: #464646;
}

.ventajas-section .center-y p {
  max-width: 850px;
}

.descuento {
  animation: float 3s ease-in-out infinite;
  width: 97px;
  height: 123px;
  flex-shrink: 0;
  position: absolute;
  right: 1rem;
}

.puntos-section .ct-imagen {
  width: 90%;
  height: 224px;
  overflow: hidden;
  border-radius: 20px;
}
.puntos-section .ct-imagen img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.puntos-section .puntos {
  display: flex;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(49, 50, 51, 0.09);
  background: var(--white);
  width: 90%;
  margin-left: 10%;
  margin-top: -50px;
  position: relative;
}
.puntos-section .puntos ul {
  flex: 1;
  list-style: none;
  margin-bottom: 0;
}
.puntos-section .puntos ul li {
  display: flex;
  align-items: start;
  color: #464646;
  margin-bottom: 0.5rem;
}
.puntos-section .puntos ul li img {
  margin-top: 5px;
  margin-right: 5px;
}

.section-ubicacion {
  position: relative;
}
.section-ubicacion .label {
  opacity: 0.8;
}
.section-ubicacion input {
  border: none !important;
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid var(--blue) !important;
}
.section-ubicacion input:focus, .section-ubicacion input[type=text]:focus {
  box-shadow: none !important;
  background: transparent;
  box-shadow: 0 3px 3px -2px var(--blue) !important;
}
.section-ubicacion #mensaje {
  border: 1px solid var(--blue) !important;
  background-color: transparent !important;
}
.section-ubicacion textarea {
  height: 150px;
  resize: none;
}
.section-ubicacion .ct-mapa {
  border-radius: 1rem;
  overflow: hidden;
}

.politicas-section {
  padding-top: 80px;
}
.politicas-section article {
  margin-bottom: 1rem;
}
.politicas-section ul {
  list-style: none;
}
.politicas-section ul li {
  margin-left: 1rem;
}
.politicas-section h3 {
  font-size: 18px;
}

html {
  width: 100dvw !important;
  overflow-x: hidden !important;
}/*# sourceMappingURL=style.css.map */