
@font-face {
  font-family: 'Urania';
  src: url('../../fonts/Urania-Light.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mori-regular';
  src: url('../../fonts/PPMori-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mori-semibold';
  src: url('../../fonts/PPMori-SemiBold.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ============================================== */
/* ROOT */
/* ============================================== */

:root{

/*-- Color  --*/

  --color-pri:    #2587bf;
  --color-sec:    #E6F6FC;
  --color-ter:    #F4FCFF;
  --color-cua:    #0d2d52;
  --color-cta:    #0070a0;
  --color-line:   #D4EDF6;

  --color-pri-h:  #21769b; 
  --color-sec-h:  #cccccc; 
  --color-ter-h:  #f0f0f0;
  --color-cua-h:  #154173;
  --color-cta-h:  #00557a;

  --color-tit:    #0d2d52;
  --color-tex:    #2B2D39;

/*-- Font Family --*/

  --f-family-s: "Italiana", sans-serif;
  --f-family-hero: "DM Serif Display", serif;
  --f-family-h: "Mori-semibold", sans;
  --f-family:   "Mori-regular", sans;

/*-- Font Size --*/

  --fs-base:    1rem;
  --lh-base:    1.5;

}

/* ============================================== */
/* COLOR */
/* ============================================== */

.c-pri  {  background:var(--color-pri);  }
.c-sec  {  background:var(--color-sec);  }
.c-ter  {  background:var(--color-ter);  }
.c-cua  {  background:var(--color-cua);  }
.c-cta  {  background:var(--color-cta);  }
.c-w    {  background:#FDFDFD !important; }

.tc-pri {  color:var(--color-pri);       }
.tc-sec {  color:var(--color-sec);       }
.tc-ter {  color:var(--color-ter);       }
.tc-cua {  color:var(--color-cua);       }

.tc-w   {  color:var(--color-w) !important;         }

/* ============================================== */
/* TEXT */
/* ============================================== */

h1,h2,h3,h4,h5,h6    {  color: var(--color-tit);  }
p,li                 {  color: var(--color-tex);  }

p,h1,h2,h3,h4,h5,h6  {  margin:10px 0;  }

p,li,a,body,pre,label{  font-weight: 400;  }
h1,h2,h3,h4,h5,h6    {  font-weight: 600;  }
b                    {  font-weight: 600;  }

p{
  line-height: 1.7 !important;
}

.h1{ line-height: 1.2 !important; }
.h2{ line-height: 1.3 !important; }
.h3{ line-height: 1.3 !important; }


.f-special{
  font-family: var(--f-family-s);
  letter-spacing: 1px;
}

.h1.f-special{
  line-height: 1.2 !important;
  letter-spacing: 2px;
  font-size: clamp(2rem, 3vw, 6rem);
}

.label{
  padding: 6px 15px 4px;
  border-radius: 30px;
  background: rgba(13, 45, 82, 0.5);
  border: 1px solid rgba(240, 240, 240, 0.1);
  color:white;
  font-size: 0.8rem;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
}

/* ============================================== */
/* OVERLAY */
/* ============================================== */

.o-small.display.o-30::after {
  content: "";
  display: none;
}

@media screen and (max-width: 768px) {
  .o-small.display.o-30::after {
    display: block;
  }
}

/* ============================================== */
/* PRELOADER */
/* ============================================== */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.preloader::before {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("./../../images/logo/preloader_logo.svg") no-repeat center center;
  background-size: contain;
  z-index: 9;
}

/* ============================================== */
/* BTN */
/* ============================================== */

.btn      {  background: hsla(0, 0%, 0%, 1);font-family: var(--f-family-h); font-weight:500;  }
.btn:hover{  background: hsla(0, 0%, 0%, 0.9);   }

.btn.c-cta{  background: var(--color-cta);  }
.btn.c-pri{  background: var(--color-pri);  }
.btn.c-sec{  background: var(--color-sec);  }
.btn.c-ter{  background: var(--color-ter);  }
.btn.c-cua{  background: var(--color-cua);  }
.btn.c-cta:hover{  background: var(--color-cta-h);  }
.btn.c-pri:hover{  background: var(--color-pri-h);  }
.btn.c-sec:hover{  background: var(--color-sec-h);  }
.btn.c-ter:hover{  background: var(--color-ter-h);  }
.btn.c-cua:hover{  background: var(--color-cua-h);  }

.btn.link        {  color: var(--color-cta); display: inline-block; align-self: flex-start; padding: 5px;}
.btn.link::before{  display:none;  }
.btn.link::after {
  content: "\ea1c";
  font-family: "tabler-icons";
  display: inline-block;
  font-size: 1.1em;
  line-height: 1;
  transform: translate(3px,2px);
  transition: transform 0.3s ease;
}

.btn.link:hover::after {
  transform: translate(6px,2px);
}

.btn.c-out{ background: transparent; border: 1px solid hsla(198, 100%, 31%,0.3); color: var(--color-pri); }
.btn.c-out:hover{ background: var(--color-cta); }
.btn.c-out .ti{ color: var(--color-pri); transition: all 0.25s ease-in-out;}

.btn.c-out:hover .ti,
.btn.c-out:hover{ color:white; }

/* ============================== */
/* FLAGS          */
/* ============================== */

.btn.flags{
  padding: 16px 24px 16px 50px;
  border-radius: 10px;
  position: relative;
}

.btn.flags::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.btn.flags.eng::before { background-image: url('./../../images/flags/eng.svg'); }
.btn.flags.esp::before { background-image: url('./../../images/flags/esp.svg'); }

/* ============================================== */
/* FLAGS-PERSONAL */
/* ============================================== */

.modal-personal-img-wrap{
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.flag-personal{
  position: relative;
  left: 0;
  top:0px;
  width: 24px;
  height: 24px;
}

.flag-personal.flag-abs{
  position: absolute;
  top:20px;
  left: 15px;
}

.flag-personal::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.flag-personal.flag-abs::before{
  width: 40px;
  height: 40px;
}

.flag-personal.usa::before { background-image: url('./../../images/flags/eng.svg'); }
.flag-personal.mex::before { background-image: url('./../../images/flags/esp.svg'); }
.flag-personal.esp::before { background-image: url('./../../images/flags/spa.svg'); }
.flag-personal.arg::before { background-image: url('./../../images/flags/arg.svg'); }

/* ============================================== */
/* ICONS */
/* ============================================== */

.ti {
  margin-right: 8px;
  font-size: 1rem;
  color: var(--color-cta);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.btn-i .ti {
  margin-right: 0;
  color: var(--color-w);
  font-weight: 400;
  text-shadow: none !important;
  box-shadow: none !important;
}

.btn-i  {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-cta);
  transition: all 0.25s ease-in-out;
}

.btn-i:hover  {
  background: var(--color-sec);
}

.btn-i:hover .ti  {
  color: var(--color-cta);
}

/*.ti{
  margin-right: 8px;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.btn-i i{
  width: 32px;
  height: 32px;
  display: flex;
  margin: 0;
  justify-content: center;
  align-items: center;
  text-shadow: none !important;
  box-shadow: none !important;
}

.btn-i{
  transition:all 350ms ease;
}

.btn-i:hover{
  background: var(--color-pri);
}

.btn-i:hover i{
  color: var(--color-w);
}*/

/* ============================================== */
/* SHADOWS */
/* ============================================== */

.shadow{
  border: 1px solid var(--color-ter);
  box-shadow: 0 10px 20px rgba(112, 165, 205, 0.2);
}

/* ============================================== */
/* INGREDIENTS */
/* ============================================== */

.ingredients-wrap{
  position: relative;
  max-width: 1280px;
  width: 100%;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredients{
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  z-index: 1;
}

.ingredients-wrap > div{
  position: relative;
  z-index: 2;
}

.ingredients li {
  position: absolute;

  /* Estado inicial: centro */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.9);


  padding: 10px 20px;
  border-radius: 10px;
  gap: 10px;
  white-space: nowrap;
  color: var(--color-pri);
  justify-content: space-between;
  align-items: center;
  display: flex;
  background: white;
  z-index: 1;
  transition: all 0.8s ease;
}

.ingredients li span {
  margin-right: 10px;
  background: var(--color-sec);
  border-radius: 50%;
}



/* Izquierda */
.ingredients.fade-in li:nth-child(1) {
  top: 40%;
  left: 10%;
  transform: translateY(-50%) scale(1);
}

.ingredients.fade-in li:nth-child(2) {
  top: 55%;
  left: 10%;
  transform: translateY(-50%) scale(1);
}

.ingredients.fade-in li:nth-child(3) {
  top: 70%;
  left: 10%;
  transform: translateY(-50%) scale(1);
}

/* Derecha */
.ingredients.fade-in li:nth-child(4) {
  top: 40%;
  left: 90%;
  transform: translate(-100%, -50%) scale(1);
}

.ingredients.fade-in li:nth-child(5) {
  top: 55%;
  left: 90%;
  transform: translate(-100%, -50%) scale(1);
}

.ingredients.fade-in li:nth-child(6) {
  top: 70%;
  left: 90%;
  transform: translate(-100%, -50%) scale(1);
}


@media screen and (max-width: 1440px) {

  .ingredients.fade-in li:nth-child(1) {
    top: 40%;
    left: 0;
    transform: translateY(-50%) scale(1);
  }

  .ingredients.fade-in li:nth-child(2) {
    top: 55%;
    left: 0;
    transform: translateY(-50%) scale(1);
  }

  .ingredients.fade-in li:nth-child(3) {
    top: 70%;
    left: 0;
    transform: translateY(-50%) scale(1);
  }

  .ingredients.fade-in li:nth-child(4) {
    top: 40%;
    left: 100%;
    transform: translate(-100%, -50%) scale(1);
  }

  .ingredients.fade-in li:nth-child(5) {
    top: 55%;
    left: 100%;
    transform: translate(-100%, -50%) scale(1);
  }

  .ingredients.fade-in li:nth-child(6) {
    top: 70%;
    left: 100%;
    transform: translate(-100%, -50%) scale(1);
  }
}


@media screen and (max-width: 768px) {

  .ingredients-wrap {
    min-height: 0;
    height: auto;
    display: block;
  }

  .ingredients {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
    width: 100%;
  }

  .ingredients li {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    opacity: 1;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 100%;
    border-radius: 10px;
    background: #fff;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 10px;
  }

  .ingredients.fade-in li {
    top: auto;
    left: auto;
    transform: none;
  }
}

/* ============================================== */
/* CUSTOM ICON */
/* ============================================== */

:root {
  /* Tamaños de íconos */
  --icon-size-ch: 24px;
  --icon-wrap-ch: 48px;

  --icon-size-c: 40px;
  --icon-wrap-c: 60px;

  /* Tamaño ícono grande */
  --icon-size-big: 75px;
  --icon-wrap-big: 90px;
}

.v-custom {
  position: relative;
  display: block;
  width: var(--icon-wrap-c);
  height: var(--icon-wrap-c);
  padding: 0;
  transition: all 0.25s ease-in-out;
}

.v-custom::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: var(--icon-size-c);
  height: var(--icon-size-c);
  background-size: calc(var(--icon-size-c) * 10);
  overflow: hidden;
}

/* Íconos grandes */
.v-custom.i-big{
  width: var(--icon-wrap-big);
  height: var(--icon-wrap-big);
  margin: 0 auto 15px;
}
.v-custom.i-big::before{
  width: var(--icon-size-big);
  height: var(--icon-size-big);
  background-size: calc(var(--icon-size-big) * 10);
}

.v-custom.harmony::before {
  background-image: url("../../images/body/sprite/harmony.svg");
}
.v-custom.balance::before {
  background-image: url("../../images/body/sprite/balance.svg");
}
.v-custom.beat::before {
  background-image: url("../../images/body/sprite/beat.svg");
}
.v-custom.sintonia::before {
  background-image: url("../../images/body/sprite/sintonia.svg");
}
.v-custom.tempo::before {
  background-image: url("../../images/body/sprite/tempo.svg");
}

.v-custom.icon-1::before {
  background-position: calc(-0 * var(--icon-size-c)) 0;
}
.v-custom.icon-2::before {
  background-position: calc(-1 * var(--icon-size-c)) 0;
}
.v-custom.icon-3::before {
  background-position: calc(-2 * var(--icon-size-c)) 0;
}
.v-custom.icon-4::before {
  background-position: calc(-3 * var(--icon-size-c)) 0;
}
.v-custom.icon-5::before {
  background-position: calc(-4 * var(--icon-size-c)) 0;
}
.v-custom.icon-6::before {
  background-position: calc(-5 * var(--icon-size-c)) 0;
}

/* Sprites grandes (posiciones) */
.v-custom.i-big.icon-7::before {
  background-position: calc(-6 * var(--icon-size-big)) 0;
}
.v-custom.i-big.icon-8::before {
  background-position: calc(-7 * var(--icon-size-big)) 0;
}
.v-custom.i-big.icon-9::before {
  background-position: calc(-8 * var(--icon-size-big)) 0;
}
.v-custom.i-big.icon-10::before {
  background-position: calc(-9 * var(--icon-size-big)) 0;
}

/* ============================================== */
/* COUNTER */
/* ============================================== */


.counter{ font-size:3rem }


/* ============================================== */
/* ZOOM */
/* ============================================== */

.zoom-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.img-zoom {
  position: relative;
  display: inline-block;
}

/* Lente */
#lens {
  position: absolute;
  border: 2px solid #ccc;
  width: 100px;
  height: 100px;
  opacity: 0.4;
  background-color: #000;
  cursor: crosshair;
  display: none;
  pointer-events: none; /* Evita interferir con el mouse */
  transition: none; /* Sin animaciones para evitar temblores */
}

/* Contenedor del zoom */
#big-image {
  position: absolute;
  top: 50%;
  left: 70%;
  width: 400px;
  height: 400px;
  border: 1px solid #ddd;
  display: none;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: white;
}

#big-image.show {
  display: block;
  opacity: 1;
}

@media (max-width: 768px) {
  #lens,
  #big-image {
    display: none !important;
  }
}



/* ============================================== */
/* PRODUCT BANNER */
/* ============================================== */

.product:after{
  content: "";
  left: 0;
  top:0;
  position: absolute;
  width: 100%;
  height: 40%;
  background: var(--color-w);
}

.product-banner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  aspect-ratio: 12 / 6;
  overflow: hidden;
  border-radius: 20px;
}

.product-banner ul {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.product-banner li {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.product-banner li.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.product-banner li.fade-out {
  opacity: 0;
  z-index: 1;
}

/* Imagen */
.product-banner li img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Texto */
.product-banner li .text {
  position: absolute;
  z-index: 5;

  left: 20px;
  bottom: 20px;

  width: 100%;
  max-width: 350px;

  padding: 20px 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(112, 165, 205, 0.25);

  opacity: 0;
  transform: translateY(20px);

  transition:
    opacity 0.4s ease,
    transform 0.6s ease;
}

.product-banner li.active .text {
  opacity: 1;
  transform: translateY(0);
}

.product-banner li.fade-out .text {
  opacity: 0;
  transform: translateY(-20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.product-banner li .text p {
  margin: 0;
  color: white;
}

@media screen and (max-width: 768px) {
  .product-banner {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
  }

  .product-banner li .text {
    left: 15px;
    bottom: 15px;

    width: auto;
    max-width: calc(100% - 30px);
    min-width: 0;

    padding: 14px 18px;
    border-radius: 12px;
  }

  .product-banner li.active .text {
    transform: translateY(0);
  }

  .product-banner li.fade-out .text {
    transform: translateY(-15px);
  }
}

/* ============================================== */
/* VIDEO */
/* ============================================== */

.video-modal-wrap{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
}

.video-modal-wrap iframe{
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================== */
/* HERO */
/* ============================================== */

.h1-hero h1 span{
  width: 100%;
  display: block;
  font-size: clamp(3rem, 6vw, 10rem);
  line-height: 0.8 !important;
  margin: 0;
  visibility: hidden;
  color:var(--color-pri);
  font-weight: 400;
  font-family: var(--f-family-hero);
}

.hero-btns{
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.brain {
  position: relative;
  max-width: 480px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: unset;
}


/* ============================================== */
/* QUOTES      */
/* ============================================== */

.quotes {
  position: relative;
  padding-left: 40px;
}

.quotes::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 60px;
  line-height: 1;
  font-family: Georgia, serif;
  font-weight: 700;
  color: var(--color-pri);
}

/* ============================================== */
/* COMPANIES */
/* ============================================== */

:root {
  --separacion: 80px;
  --ancho-logo: 120px;
  --tiempo: 30s;
}

.wrap-companies {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background: transparent;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 15%,
    rgba(0, 0, 0, 1) 85%,
    rgba(0, 0, 0, 0)
  );
}

.scroll-container {
  overflow: hidden;
  width: 100%;
}

ul.companies {
  display: flex;
  width: max-content;
  gap: var(--separacion);
  padding: 0;
  margin: 0;
  list-style: none;
  animation: scrollInfinito var(--tiempo) linear infinite;
}

ul.companies li {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.companies img {
  width: var(--ancho-logo);
  height: auto;
  display: block;
}

@keyframes scrollInfinito {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--scroll-distance)));
  }
}

/* ============================================== */
/* PROGRAMAS */
/* ============================================== */

ul.programas {
  display: flex;
  max-width: 768px;
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  flex-direction: column;
}

ul.programas .programa-numero {
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  color: var(--color-cta);
}

/* ============================================== */
/* PERSONAL       */
/* ============================================== */

ul.personal {
  display: grid;
  grid-template-columns: repeat(auto-fit, 140px);
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.personal li {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 10px;
}

ul.personal img {
  width: 60px;
  height: 60px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 1080px) {
  ul.personal {
    grid-template-columns: repeat(auto-fit, 120px);
  }
}


/* ============================================== */
/* ALTERNATE       */
/* ============================================== */

.alternate .col-alternate:nth-child(odd) {
  flex-direction: row;
}
.alternate .col-alternate:nth-child(even) {
  flex-direction: row-reverse;
}

/* ============================================== */
/* ROADMAP / LISTA AUTO-LLENABLE CON SCROLL       */
/* ============================================== */

.menu-list{
  padding: 30px 0;
}

ul.menu-list.dot {
  position: relative;
  list-style: none;
  padding-left: 45px; 
  margin: 0;
}

ul.menu-list.dot::before {
  content: '';
  position: absolute;
  left: 11px; 
  top: 10px;
  bottom: 10px;
  width: 2px;
  background-color: var(--color-sec); 
  z-index: 1;
}

.roadmap-progress-line {
  position: absolute;
  left: 11px;
  top: 10px;
  width: 2px;
  background-color: var(--color-cta); 
  z-index: 2;
  height: 0%; 
  transform-origin: top center;
}

ul.menu-list.dot > li {
  position: relative;
  z-index: 3;
  line-height: 1.5;
  --fill-scale: 0; 
}

ul.menu-list.dot > li:nth-child(odd) {
  background: var(--color-ter);
}

ul.menu-list.dot.dot-p > li {
  padding: 50px;
}

ul.menu-list.dot > li::after {
  content: '';
  position: absolute;
  left: -45px; 
  top: 2px; 
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-cta); 
  border-radius: 50%;
  background-color: #ffffff; 
  box-sizing: border-box;
  z-index: 4;
  background-image: radial-gradient(
    circle,
    var(--color-cta) 0%,
    var(--color-cta) calc(var(--fill-scale) * 100%),
    transparent calc(var(--fill-scale) * 100%),
    transparent 100%
  );
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

/* ============================================== */
/* BOX-WHITE  */
/* ============================================== */

.box-white {
  display: flex;
  justify-content: center;
}

.box-white > div {
  margin-top: -150px;
}

@media only screen and (max-width: 768px) {
  .box-white > div {
    margin-top: 0;
  }
}

/* ============================================== */
/* SECTION & ASIDE  */
/* ============================================== */

.sticky {
  position: sticky;
  top: 90px;
  z-index: 2;
  align-self: flex-start;
}

/* ============================================== */
/* FOOTER REVEAL */
/* ============================================== */

main {
    position: relative;
    z-index: 2;
    background: var(--color-sec);
}

.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    height: auto;
    visibility: hidden;
    pointer-events: auto;
}

/* ============================================== */
/* LOGOS ALIANZA */
/* ============================================== */

ul.logos-alianza{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.logos-alianza li{
  width: calc((100% - 40px) / 3);
  background: var(--color-sec);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.logos-alianza li img{
  max-height: 90px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 768px){
  .logos-alianza li{
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (max-width: 480px){
  .logos-alianza li{
    width: 100%;
  }
}

/* ============================================== */
/* MICHAEL */
/* ============================================== */

.person {
    overflow: hidden;
    position: relative;
}

.person .full-img-abs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    object-fit: cover;
    will-change: transform;
}


.person.bar-top:after{
  top: 0;
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 50%;
  background: var(--color-pri);
}

.person.bar-bottom:after{
  top:auto;
  bottom: 0;
}

/* ============================================== */
/* ZOOM */
/* ============================================== */

.zoom-box {
  height: 100vh;
  overflow: hidden;
  transition: none;
  position: relative;
}

.zoom-mask {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 50vh;
  overflow: hidden;
  z-index: 1;
}

.zoom-mask img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .zoom-section {
    height: auto;
  }

  .zoom-box {
    min-height: auto;
    height: auto;
    flex-direction: column;
    padding: 20px;
    overflow: visible;
  }

  .zoom-mask {
    position: relative;
    top: auto;
    left: auto;
    transform: none;

    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
  }

  .zoom-mask img {
    position: relative;
    top: auto;
    left: auto;
    transform: none;

    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
}

/* ============================================== */
/* FAQS */
/* ============================================== */

.faq-list { 
  border-top: 1px solid var(--color-line); 
}

.faq-item { 
  border-bottom: 1px solid var(--color-line); 
  transition: background 0.25s ease; 
}

.faq-item.active { 
  background: var(--color-ter);
}

.faq-trigger {
  background: none;
  border: none;
  padding: 20px;
  text-align: left;
  cursor: pointer;
  color: var(--color-tit);
  font-weight: 500;
  overflow: hidden;
}

.faq-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s ease;
}

.faq-item.active .faq-icon {
  background: var(--color-cta);
  color: white;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--color-tex);
  opacity: 0;
  transform: translateY(10px);
  transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.4s ease-out, transform 0.4s ease-out;
}

.faq-item.active .faq-content {
  opacity: 1;
  transform: translateY(0px);
  padding: 0 20px 20px;
}

/* ============================================== */
/* LINEAS */
/* ============================================== */

.connector-section {
  position: relative;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}

.connector-svg {
  width: 100%;
  height: auto;
  display: block;
}

.connector-svg .st0 {
  fill: none;
  stroke: var(--color-cta);
  stroke-width: 1px;
  stroke-miterlimit: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.connector-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-ter);
  padding: 20px;
  margin: 0;
}

/* ============================================== */
/* TESTIMONIALS */
/* ============================================== */

.label-abs{
  position: absolute;
  top:30px;
  left: 0;
  margin: 0;
  border-radius: 0;
  background: white;
  color: var(--color-tit);
}

.banner.swiper {
    padding-bottom: 60px;
}
.swiper-wrapper{
  height: auto;
  display: flex;
  padding-bottom: 0;
}

.banner :where(.swiper-button-prev, .swiper-button-next){
 color:var(--color-pri);
 background: var(--color-ter);
 border-radius: 10px;
 padding: 10px;
 top:auto !important;
 z-index:2;
 bottom:0;
}

.banner .swiper-pagination-bullet{
 overflow: hidden;
 position: relative;
 transition:all 125ms ease;
 z-index:1;
}

.banner .swiper-pagination-bullet-active{
 background: var(--color-ter);
 height: 10px;
 width: 30px;
 overflow: hidden;
 opacity: 1;
 border-radius: 5px;
}

.banner .swiper-pagination-bullet-active::before{
 content: "";
 position: absolute;
 left: 0;
 top: 0;
 height: 100%;
 width: 100%;
 background: var(--color-pri);
 transform: scaleX(0);
 transform-origin: left center;
 animation: autoplay-loading 5s linear forwards;
}

.swiper-pagination{
 z-index: 1 !important;
 bottom: 15px !important;
}

@keyframes autoplay-loading{
 100%{
  transform: scaleX(1);
 }
}

/* ============================================== */
/* MODAL */
/* ============================================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  padding: 20px;
}

.modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  background: white;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  border-radius: 20px;
  border: 1px solid var(--color-pri);
  animation: fadeIn 0.3s ease-in-out;
  overflow-y: auto;
}

.modal.modal_product .modal-content {
  max-width: 768px;
}

.modal-personal-content {
  max-height: 85vh;
  overflow-y: auto;
}

.modal-personal-img {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.modal .btn-i {
  position: sticky;
  top: 0;
  margin-left: auto;
  z-index: 2;
  border-radius: 50%;
}


/* ============================================== */
/* HERO PERSONAL */
/* ============================================== */

ul.hero-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 10px;

  width: 100%;
  max-width: 630px;

  list-style: none;
  padding: 0;
  margin: 0 auto;
}

ul.hero-grid li {
  width: 150px;
  height: 150px;
  overflow: hidden;
  flex: 0 0 150px;
}

ul.hero-grid li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mask-circular {
  -webkit-mask-image: radial-gradient(circle, black 35%, transparent 72%);
  mask-image: radial-gradient(circle, black 35%, transparent 72%);
}

@media screen and (max-width: 768px) {
  ul.hero-grid {
    max-width: 338px;
    gap: 6px;
  }

  ul.hero-grid li {
    width: 80px;
    height: 80px;
    flex-basis: 80px;
  }
}

/* ============================================== */
/* STACK CARDS */
/* ============================================== */

.stack-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.stack-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stack-cards-container {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  min-height: 550px;
}

.stack-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform;
}

.stack-number {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-pri);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.card-1 { z-index: 5; }
.card-2 { z-index: 4; }
.card-3 { z-index: 3; }
.card-4 { z-index: 2; }
.card-5 { z-index: 1; }

@media screen and (max-width: 1080px) and (min-width: 768px) {
  .stack-cards-container {
    aspect-ratio: 16 / 9;
    min-height: 500px;
  }
}

@media screen and (max-width: 767px) {
  .stack-section {
    height: auto;
    overflow: visible;
  }

  .stack-container {
    min-height: auto;
    height: auto;
    display: block;
  }

  .stack-cards-container {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;

    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .stack-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    transform: none !important;
  }
}

/* ============================================== */
/* TABLE */
/* ============================================== */

table {
  width: 100%;
  margin:0;
  padding:0;
  border-collapse: collapse;
  border-spacing: 0;
}

table tr {
  padding: 5px;
}

table th, table td {
  text-align: left;
  padding: 10px 20px;
  vertical-align:middle;
  overflow: hidden;
}

table th {
  font-weight: normal;
  background-color: var(--color-pri);
  color: white;
}

table tr:nth-child(odd)  {  background-color: var(--color-sec);   }
table tr:nth-child(even) {  background-color: var(--color-ter);  }

@media screen and (max-width: 768px) {

  table tr td {
    padding: 10px;
    width: auto;
    flex: 1;
  }

  table {border: 0;}
  table thead {display: none;}

  table tr {
    margin-bottom: 10px;
    display: block;
    border: 0;
    padding:0;
  }

  table td{
    display: flex;
    align-items: center;
    justify-content: space-between;
    vertical-align:middle;
    border-bottom: none;
    overflow: hidden;
    text-align: right;
    border-bottom: 1px solid var(--color-sec);
  }

  table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-align: left;
  }

  table td,
  table td::before {
    font-size: 0.80rem;
  }

}

/* ============================================== */
/* LINE */
/* ============================================== */

.line-t{
  border-top: 1px solid var(--color-line);
}

.line-b{
  border-bottom: 1px solid var(--color-line);
}

.line-m{
  position: relative;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.line-m::after{
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background: var(--color-line);
  left: 50%;
  top: 0;
}

@media screen and (max-width: 768px) {
  .line-m::after{
    display: none;
  }
}

/* ============================================== */
/* TEXT REVEAL */
/* ============================================== */

.h1.text-reveal{
 line-height: 1.2 !important;
}

.text-reveal .word {
  opacity: 0.15;
  display: inline-block;
  color: white;
}

/* ============================================== */
/* IMG SUB */
/* ============================================== */

.img-sub {
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1080px) {
  .img-sub {
    height: 300px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .img-sub {
    height: 150px;
    margin-bottom: 20px;
  }
}

/* ============================================== */
/* IMG BACKGROUND */
/* ============================================== */

.img-background {
  position: relative;
  overflow: hidden;
}

.img-background:after,
.img-background:before{
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.2;
}

.img-background:after {
  top: 0;
  left: 0;
  background-image: url('./../../images/body/neurona.webp');
  background-position: top left;
  width: 400px;
  height: 400px;
}

.img-background:before {
  bottom: 0;
  right: 0;
  background-image: url('./../../images/body/cerebro.webp');
  background-position: bottom right;
}

/* ============================================== */
/* CARD */
/* ============================================== */

.card{
  padding: 30px;
  border-radius: 10px;
  background: var(--color-w);
  border: 1px solid var(--color-sec);
  box-shadow: 0 10px 20px var(--color-sec);
}

.card.c-pri{
  background: var(--color-pri);
}

.c-1 { background: #FFF0EB; border: 1px solid #F5C4AD; }
.c-1 .ti { color: #E8501A !important; }

.c-2 { background: #ECFCFF; border: 1px solid #A8E8F5; }
.c-2 .ti { color: #1A3AE8 !important; }

.c-3 { background: #EBFFF4; border: 1px solid #A8F5CE; }
.c-3 .ti { color: #1AE85A !important; }

.c-4 { background: #FFF8EB; border: 1px solid #F5DFA8; }
.c-4 .ti { color: #E8A01A !important; }

.c-5 { background: #FBEBFF; border: 1px solid #E5A8F5; }
.c-5 .ti { color: #C01AE8 !important; }

.c-6 { background: #EBFFFE; border: 1px solid #A8F0ED; }
.c-6 .ti { color: #1AE8D8 !important; }

.c-7 { background: #FFEBF5; border: 1px solid #F5A8D4; }
.c-7 .ti { color: #E81A7F !important; }

.c-8 { background: #F1EBFF; border: 1px solid #C9A8F5; }
.c-8 .ti { color: #6B1AE8 !important; }

.c-9 { background: #F3FFEB; border: 1px solid #C9F5A8; }
.c-9 .ti { color: #6CE81A !important; }

.c-10 { background: #EBF3FF; border: 1px solid #A8C9F5; }
.c-10 .ti { color: #1A6CE8 !important; }

.card .fs-40 {
  transition: transform 0.3s ease;
}

.card:hover .fs-40 {
  transform: translateY(-5px);
}

/* ============================================== */
/* CAMBIO COLOR */
/* ============================================== */

.business-section :is(h3, p), 
.business-section {
  transition: all 1s ease;
}

.business-section.c-cua :is(h3, p, a) {
  color: white;
}

.business-section.c-cua .c-out {
  border: 1px solid var(--color-w);
}

.business-section-img {
  perspective: 900px;
}

.business-section-img .img-card {
  transform: rotateY(20deg) scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform-origin: left center;
}

.business-section.c-cua .business-section-img .img-card:nth-child(1) {
  transform: rotateY(0deg) scale(1);
  transition-delay: 0.1s;
}

.business-section.c-cua .business-section-img .img-card:nth-child(2) {
  transform: rotateY(0deg) scale(1);
  transition-delay: 0.3s;
}

.business-section.c-cua .business-section-img .img-card:nth-child(3) {
  transform: rotateY(0deg) scale(1);
  transition-delay: 0.5s;
}

.business-section.c-cua .business-section-img .img-card:nth-child(4) {
  transform: rotateY(0deg) scale(1);
  transition-delay: 0.7s;
}

/* ── SALIDA ── */
.business-section-img .img-card:nth-child(1) { transition-delay: 0.3s; }
.business-section-img .img-card:nth-child(2) { transition-delay: 0.2s; }
.business-section-img .img-card:nth-child(3) { transition-delay: 0.1s; }
.business-section-img .img-card:nth-child(4) { transition-delay: 0s; }

/* ── TEXTO ── */
.img-card {
  position: relative; /* Sigue siendo necesario para el position: absolute */
  overflow: hidden;
}

.img-card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 50px 20px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  opacity: 0;
  transform: translateY(15px);
  box-sizing: border-box;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
}

.img-card-text p {
  color: white;
  margin: 0;
}

.business-section.c-cua .img-card .img-card-text {
  opacity: 1;
  transform: translateY(0);
}

.business-section.c-cua .img-card:nth-child(1) .img-card-text { transition-delay: 0.6s; }
.business-section.c-cua .img-card:nth-child(2) .img-card-text { transition-delay: 0.8s; }
.business-section.c-cua .img-card:nth-child(3) .img-card-text { transition-delay: 1s; }
.business-section.c-cua .img-card:nth-child(4) .img-card-text { transition-delay: 1.2s; }

.img-card:after {
  content: "\ea24";
  font-family: "tabler-icons";
  position: absolute;
  top: -50px;
  right: -50px;
  background: var(--color-pri);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff; 
  font-size: 20px; 
  transition: all 0.3s ease;
}

.img-card:hover:after {
  top: 0;
  right: 0;
}

@media screen and (max-width: 768px) {

  .business-section {
    transition: none;
    background: var(--color-cua);
  }

  .business-section :is(h3, p),
  .business-section a {
    transition: none;
    color: white;
  }

  .business-section-img {
    perspective: none;
  }

  .business-section-img .img-card {
    transform: none !important;
    transition: none;
    transform-origin: center center;
  }

  .business-section.c-cua .business-section-img .img-card {
    transform: none !important;
    transition-delay: 0s;
  }

  .img-card-text {
    opacity: 1;
    transform: none;
    transition: none;

    bottom: 0;
    padding: 40px 15px 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
  }

  .business-section.c-cua .img-card .img-card-text {
    opacity: 1;
    transform: none;
  }

  .business-section.c-cua .img-card:nth-child(1) .img-card-text,
  .business-section.c-cua .img-card:nth-child(2) .img-card-text,
  .business-section.c-cua .img-card:nth-child(3) .img-card-text,
  .business-section.c-cua .img-card:nth-child(4) .img-card-text {
    transition-delay: 0s;
  }

  .img-card::after {
    display: none;
  }

}

/* ============================================== */
/* METODO */
/* ============================================== */

.h-scroll-section {
  overflow: hidden;
}

.h-scroll-track {
  display: flex;
  gap: 90px;
  position: relative;
  padding: 10px 30px;
  width: max-content;
  padding-left: calc((100vw - 350px) / 2);  /* ← centra la primera tarjeta */
  padding-right: calc((100vw - 350px) / 2); /* ← centra la última tarjeta */
}

.h-scroll-section .mw-1440 {
  width: 100vw;
}

.h-scroll-item {
  position: relative;
  z-index: 1;
  width: 350px;
  flex-shrink: 0;
}

.h-scroll-progress-wrap {
  position: absolute;
  top: calc(10px + 35px);
  left: calc((100vw - 350px) / 2 + 35px);
  width: calc(100% - (100vw - 350px) - 350px);
  height: 4px;
  background: rgba(0,0,0,0.1);
  z-index: 0;
}

.h-scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--color-cta);
  transition: none;
}

.h-scroll-item .c-cta {
  border: 4px solid var(--color-cta);
  background: var(--color-ter);
  transition: background 0.3s ease;
}

.h-scroll-item.active .c-cta {
  background: var(--color-cta);
}

.h-scroll-item .c-cta .ti{
  color: var(--color-cta);
}

.h-scroll-item.active .c-cta .ti{
  color: var(--color-w);
}

@media screen and (max-width: 768px) {
  .h-scroll-item {
    padding: 0 20px;
  }
}

/* ============================================== */
/* MAPA */
/* ============================================== */

.map-wrap {
  position: relative;
  width: 100%;
}

.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
}

.map-pin .pin-dot {
  width: 12px;
  height: 12px;
  background: var(--color-pri);
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 3px var(--color-pri);
  position: relative;
  z-index: 2;
}

.map-pin .pin-line {
  width: 1px;
  height: 0px;
  background: var(--color-pri);
  transform-origin: top center;
}

.map-pin .pin-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-pri);
  white-space: nowrap;
  margin-top: 6px;
  opacity: 0;
}

.pin-esp {
  top: 17%;
  left: 55%;
}

.pin-mex {
  top: 23%;
  left: 18%;
}

.pin-usa {
  top: 19%;
  left: 28%;
}

.pin-chi {
  top: 50%;
  left: 22%;
}

/* ============================== */
/* COUNTRY          */
/* ============================== */

.pais{
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.pais:after{
  content: "";
  position: absolute;
  z-index: 1;
  height: 1px;
  width: 100%;
  background: var(--color-line);
  top: 50%;
  left: 0;
}

.pais h3{
  position: relative;
  z-index: 2;
  background: var(--color-w);
  padding: 10px 20px 10px 40px;
}


.pais h3::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.pais h3.eng::before { background-image: url('./../../images/flags/eng.svg'); }
.pais h3.esp::before { background-image: url('./../../images/flags/esp.svg'); }


/* ============================================== */
/* METODO */
/* ============================================== */

.btn.slider-btn-nav-benefits {
  justify-content: flex-start;
  opacity: 0.7;
  color: var(--color-pri);
  background: transparent;
  border-bottom: 1px solid var(--color-line);
}

.btn.slider-btn-nav-benefits.active {
  opacity: 1;
}

.swiper-benefits-container {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  padding: 0 !important;
}

.swiper-benefits-container .swiper-slide {
  height: auto !important; 
  display: flex;
  flex-direction: column;
}

.slider-card {
  height: auto !important;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-image-container {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}

.card-image-container:after {
  content: "\ea24";
  font-family: "tabler-icons";
  position: absolute;
  top: -50px;
  right: -50px;
  background: var(--color-pri);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff; 
  font-size: 20px; 
  transition: all 0.4s ease-out;
}

.swiper-slide-active .card-image-container:after {
  top: 0;
  right: 0;
  transition-delay: 0.3s;
}

.swiper-benefits-container .slider-card-content { 
  height: auto !important;
  padding: 20px;
  flex-grow: 1;
}

.swiper-pagination-benefits .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-pri);
  background: transparent; 
  opacity: 1; 
  cursor: pointer;
  margin: 0 5px !important;
}

.swiper-pagination-benefits .swiper-pagination-bullet-active {
  background: var(--color-pri);
}

/* ============================================== */
/* PALABRAS */
/* ============================================== */

:root {
  --separacion: 80px;
  --tiempo: 120s;
}

/* CONTENEDOR GENERAL */
.wrap-palabras {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background: transparent;
  border-bottom: 1px solid var(--color-sec);
}

/* LISTA EN MOVIMIENTO */
.palabras {
  display: flex;
  align-items: center;
  width: max-content;
  gap: var(--separacion);
  animation: scrollInfinito var(--tiempo) linear infinite;
}

/* PALABRAS */
.palabras li {
  position: relative;
  list-style: none;
  flex-shrink: 0;
  width: auto;
  white-space: nowrap;

  display: flex;
  align-items: center;
  justify-content: center;

  text-transform: uppercase;
  font-family: var(--f-family);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 1;
  color: var(--color-pri);
}

.palabras li:after {
  content: "+";
  width: 30px;
  height: 30px;
  position: absolute;
  left: -50px;
  font-size: 2rem; 
  color: var(--color-pri);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ANIMACIÓN */
@keyframes scrollInfinito {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - (var(--separacion) / 2)));
  }
}
