@import url('../font/stylesheet.css');

*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Jost', sans-serif!important;
    min-height: 100vh;
    min-height: 100dvh;
}

img, picture, svg , video {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    outline: none;
}

textarea {
    resize: none;
}

ul, ol {
    list-style: none;
}

.content {
    flex: 1 0 auto;
}

footer {
    background-color: #f6f6f6;
    text-align: center;
    font-size: 14px;
    color: #fff;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 30;
    transition: background-color 0.5s ease-in-out;
    box-shadow: 0px 1px 3px rgba(3, 7, 18, 0.01), 0px 5px 11px rgba(3, 7, 18, 0.02), 0px 12px 25px rgba(3, 7, 18, 0.04), 0px 20px 45px rgba(3, 7, 18, 0.05), 0px 32px 70px rgba(3, 7, 18, 0.06);
    height: 66px;
}

header.solid {
    background-color: rgba(43, 44, 129, 1);
}
  
.navbar {
    max-width: 1650px;
    margin: 0 auto;
    padding: 1.1rem 5% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 100%;
    max-width: 1920px;
}

@media (min-width: 1300px) {
  .navbar {
    padding: 1.1rem 136px !important;
  }
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 72px;
    margin-bottom: 0;
}
  
.nav-links li a,
.nav-links li span {
    color: #002c5f;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    transition: all 0.5s ease-in-out;
    font-weight: 600;
    font-size: 15px;
}
  
.nav-links li a:hover,
.nav-links li a.active {
    color: #00af76; 
}

.nav-links li a:hover::after {
    width: 100%;
}

.hamburger-menu {
    display: none;
}

.demo {
    background-color: #00af76;
    color: white!important;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
}

.demo:hover {
    background-color: #008454;
}

.nav-item-dropdown {
  position: relative;
}

.dropdown-handle {
  display: inline-block;
}

.submenu {
  position: absolute;
  top: 130%;
  left: 0;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  min-width: 240px;
  z-index: 10;
}

.submenu li a {
  display: block;
  padding: 10px 20px;
  color: #002c5f;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

.submenu li a:hover {
  background-color: #e5f7f1;
  color: #00af76;
}

.nav-item-dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.marca__registrada::after {
  content: "\00AE";
  font-size: 0.6em;
  vertical-align: super;
}

@media only screen and (max-width: 1024px){
    .nav-links {
        background-color: rgba(43, 44, 129);
    }
    .hamburger-menu {
        position: absolute;
        right: 0.5em;
        border: none;
        height: 3em;
        width: 3em;
        z-index: 100;
        display: block;
        background: transparent;
        padding: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: top .3s;
    }
    .hamburger-menu span {
        height: 3px;
        width: 1.3em;
        background-color: #002c5f;
        display: block;
        position: absolute;
        left: 50%;
        border-radius: 3px;
        transform: translateX(-50%);
        transition: background-color 0.3s;
    }
    .hamburger-menu span:before {
        content: '';
        position: absolute;
        display: block;
        height: 3px;
        width: 100%;
        background: #002c5f;
        opacity: 1;
        top: -7px;
        left: 0;
        transition: width .3s, left .3s, top .3s, transform .5s;
    }
    .hamburger-menu span:after {
        content: '';
        position: absolute;
        display: block;
        height: 3px;
        width: 100%;
        background: #002c5f;
        opacity: 1;
        top: 7px;
        left: 0;
        transition: width .3s, left .3s, top .3s, transform .3s;
    }
    .hamburger-menu.clicked span {
        background-color: transparent;
    }
    .hamburger-menu.clicked span:before {
        width: 100%;
        transform: translate(-50%, -50%) rotate(225deg);
        left: 50%;
        top: 50%;
    }
    .hamburger-menu.clicked span:after {
        width: 100%;
        transform: translate(-50%, -50%) rotate(-225deg);
        left: 50%;
        top: 50%;
    }
    .navbar-menu {
        position: fixed;
        z-index: 2;
        background-color: #fff;
        width: 100%;
        flex-direction: column;
        right: 0;
        top: 65px;
        left: 0;
        padding: 2rem 0;
        gap: 0;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.5s ease-in-out, padding-top 0.5s ease-in-out, top 0.5s ease-in-out;
        border-top: 1px solid white;
        max-width: inherit;
        align-items: center;
    }
    .navbar {
        padding: 0rem 80px !important;
    }
    .navbar-menu a {
        justify-content: center;
        font-size: 16px;
        margin-left: 0;
    }
    .navbar-menu.open {
        transform: scaleY(1);
        padding-top: 3.125em;
        z-index: 2;
        padding-top: 0;
        padding-bottom: 0;
        box-shadow: 0px 1px 3px rgba(3, 7, 18, 0.01), 0px 5px 11px rgba(3, 7, 18, 0.02), 0px 12px 25px rgba(3, 7, 18, 0.04), 0px 20px 45px rgba(3, 7, 18, 0.05), 0px 32px 70px rgba(3, 7, 18, 0.06);
        box-shadow: 7px 40px 50px -15px rgb(0 0 0 / 11%);
        padding-top: 1rem;
    }
    .navbar-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid white;
    }
    .demo__pulser-li {
      padding: 1rem 2.5rem;
    }
    .demo.pulser {
      width: max-content;
      padding: 0.35rem 0.25rem;
    }
    .submenu {
      position: static;
      box-shadow: none;
      display: none;
      transform: none;
      opacity: 1;
      visibility: visible;
    }
    .nav-links li a,
    .nav-item-dropdown {
        width: 100%;
        display: block;
        padding: 0.5rem 2.5rem;
        transition: all 0.5s ease-in-out;
        font-size: 16px;
        text-align: left!important;
        font-weight: 500;
    }
    .nav-links li a:hover {
        background-color: #e5f7f1;
        color: #00af76;
    }
    .nav-links li a::after {
        position: static;
    }
    .nav-item-dropdown.open .submenu {
     display: block;
    }
}


/* HERO GENERAL */

.carousel-item img {
  height: 100vh;
  object-fit: cover;
  object-position: center;
}
.carrusel-texto {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    text-align: left;
    color: #002c5f;
    max-width: 500px;
}

.carrusel-texto h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 120px;

    font-size: clamp(1.75rem, 2.85vw, 3rem);
}

.carrusel-texto h2 span {
    color:#00af76;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

.boton {
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  outline: none;
  border: 0;
  padding: 15px 38px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  z-index: 1;
  text-decoration: none;
}

/* botón azul */
.boton.btn-1 {
  background-color: #002c5f;
  color: #fff;
}

.boton.btn-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #001d3f; /* azul más oscuro */
  transition: width 0.5s ease-in-out;
  z-index: -1;
}

.boton.btn-1:hover::before {
  width: 100%;
}

/* botón verde */
.boton.btn-2 {
  background-color: #00af76;
  color: #fff;
}

.boton.btn-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #008454; /* verde más oscuro */
  transition: width 0.5s ease-in-out;
  z-index: -1;
}

.boton.btn-2:hover::before {
  width: 100%;
}

.boton:hover {
  color: #fff;
}
.btn-display {
    display: flex;
    justify-content: left;
    gap: 36px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 120px;
    background-color: #002c5f;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    padding: 4px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
    padding-left: 4px;
}

.whatsapp-float:hover {
  background-color: #3171af;
  color: white;
}

.whatsapp-float img {
  width: 52px;
  height: 52px;
}

.whatsapp-float span {
  font-size: 17px;
  font-weight: 400;
}

.avanter-intro {
    position: relative;
    z-index: 1;
}

.avanter-intro picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.avanter-intro picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avanter-intro-img {
  width: clamp(280px, 30vw, 650px);
}

.avanter-intro__container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 1920px;
    padding: 136px;
    gap: 172px;
    gap: clamp(3rem, 7vw, 172px);
    padding-block: clamp(48px, 6vw, 136px);
    padding-inline: clamp(48px, 2vw, 136px);
}

.avanter-intro__text {
    color: #fff;
}

.avanter-intro__text h3 {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 50px;
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
}

.avanter-intro__text p {
    font-size: 2.25rem;
    max-width: 33ch;
    font-size: clamp(22px, 2vw, 2.25rem);
}

.soluciones__container {
    max-width: 1920px;
    padding: 96px 136px;
    padding-inline: clamp(48px, 6.5vw, 136px);
}

.soluciones__container h3 {
    text-align: center;
    font-weight: 700;
    color: #002c5f;
    font-size: 2.5rem;
    margin-bottom: 0;
    font-size: clamp(24px, 3vw, 2.5rem);
}

.soluciones__separador {
    color: #00af76;
    border-top: 1px solid;
    opacity: 1;
    max-width: 155px;
    margin: 20px auto 80px;
}

.soluciones__botones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1920px;
    margin: 0 auto;
    align-items: stretch;
    margin-bottom: 50px;
    grid-template-columns: repeat(4, 1fr);
}

.solucion__btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px 10px;
    background-color: #fff;
    outline: none;
    border: 0;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.solucion__btn svg {
    width: 90px;
    fill: #002c5f;
    height: auto;
    transition: all 0.3s ease;
    width: clamp(50px, 7vw, 90px);
}

.solucion__btn h4 {
    line-height: 1.3;
    color: #002c5f;
    max-width: 20ch;
    transition: all 0.3s ease;
    margin-bottom: 0;
    font-size: clamp(1.2rem, 1.75vw, 1.5rem);
}

.solucion__btn:hover,
.solucion__btn.active{
    background-color:#00af76;
}

.solucion__btn:hover h4,
.solucion__btn.active h4 {
    color: white;
}

.solucion__btn:hover svg,
.solucion__btn.active svg {
    fill: white;
}

.soluciones__visor {
  position: relative;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  border-radius: 20px;
  padding: 72px 110px;
  gap: 56px;
  overflow: hidden; 
  /*min-height: 500px;*/
  min-height: 700px;
  flex-wrap: wrap;
}

.soluciones__img,
.soluciones__info {
  position: absolute; 
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  flex: 1;
}

.soluciones__img.active,
.soluciones__info.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative; /* solo el activo ocupa el flujo */
}

/* pequeño ajuste opcional de suavidad para el texto */
.soluciones__info {
  transform: translateY(10px);
  flex: 1 1 350px;
  min-width: 300px;
}

.soluciones__img {
    border-radius: 20px;
    width: 100%;
    max-width: 660px;
    height: fit-content;
    flex: 1 1 400px;
    object-fit: cover;
}

.soluciones__visor-title {
    font-weight: 700;
    color: #00af76;
    font-size: 2rem;
    margin-bottom: 40px;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.soluciones__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 0;
}

.soluciones__list-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.soluciones__list-item span {
    color: #000;
    font-weight: 400;
    font-size: 1.65rem;
    font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.soluciones__list-grafico--mobile {
	display: block;
    max-width: 250px;
    margin: 0 auto;
}

.soluciones__list-grafico--desktop {
	max-width: 300px;
    width: 50%;
    margin: 0 auto;
	display: none;
}

.stats__container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 70px;
    justify-content: center;
    flex-wrap: nowrap;
    margin: 0 auto;
}

.stat__item {
  position: relative;
  border: 1px solid #002c5f;
  background: #fff;
  padding: 40px 110px;
  border-radius: 20px;
  border-bottom: 4px solid #002c5f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 1 500px;
  max-width: 500px;
  text-align: center;
  gap: 20px;
  overflow: hidden; 
  color: #002c5f;
  cursor: pointer;
  transition: color 0.4s ease, border-color 0.4s ease;
  z-index: 1;
}

.stat__item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #00af76 0%, #002c5f 100%);
  transition: height 0.5s ease;
  z-index: 0;
}

.stat__item:hover::before {
  height: 100%;
}

.stat__item:hover {
  color: #fff;
  border-color: transparent;
}

.stat__item * {
  position: relative;
  z-index: 2;
}

.stat__item:hover svg {
    fill: #00af76;
}

.stat__item-img {
    background-color: white;
    width: 120px;
    height: 120px;
    border-radius: 10rem;
    box-shadow: 0px 1px 3px rgba(3, 7, 18, 0.01), 0px 5px 11px rgba(3, 7, 18, 0.02), 0px 12px 24px rgba(3, 7, 18, 0.02), 0px 20px 43px rgba(3, 7, 18, 0.03), 0px 32px 67px rgba(3, 7, 18, 0.04);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat__item-img svg {
    fill: #002c5f;
    transition: all 0.5s ease;
}

.stat__item:hover .stat__item-info,
.stat__item:hover .stat__item-number {
    color: white;
}

.stat__item-number {
    font-size: 3rem;
    font-weight: 700;
    color: #002c5f;
    line-height: 1;
    display: block;
    font-size: 75px;
    transition: all 0.5s ease;
    font-size: clamp(2rem, 4vw, 75px);
}

.stat__item-info {
    color: #002c5f;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.5rem;
    display: block;
    font-size: 21px;
	font-size: clamp(15px, 2vw, 21px);
    max-width: 10ch;
    transition: all 0.5s ease;
	max-width: fit-content;
}

.marcas-seccion {
    margin-bottom: 120px;
}

.marcas-seccion img {
  max-height: 72px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.marcas-seccion.bonos img,
.marcas-seccion.digital img {
  max-height: 50px;
}

.marcas-seccion img:hover {
  transform: scale(1.05);
}

.programs-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.programs-title h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #002a5c;
    margin: 0;
    white-space: nowrap;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.program-line {
    flex-grow: 1;
    height: 1px;
    background-color: #b7b7b7;
}

a.btn-vermas {
  position: relative;
  display: inline-block;
  border: 1px solid #002a5c;
  background-color: #fff;
  color: #002a5c;
  padding: 6px 14px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  z-index: 0; 
}

a.btn-vermas::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  height: 100%;
  background-color: #002a5c;
  transition: width 0.4s ease;
  z-index: -1;          
  pointer-events: none; 
}

a.btn-vermas:hover::before {
  width: 100%;
}

a.btn-vermas:hover {
  color: #fff;                
  transform: translateY(-3px);
  border-color: #002a5c;
}

a.btn-vermas:hover { color: #fff !important; }

.carrusel-programas {
    background-color: #fff;
    padding: 3rem 150px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
}

.certificado__container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.cta {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 360px;
}

.cta__title {
    color: white;
    font-weight: 500;
    font-size: 2.5rem;
    font-size: clamp(1.5rem, 3vw, 2.5rem)
}

.cta__btn {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-size: 1.5rem;
  color: #002c5f;
  background-color: #fff;
  padding: 6px 24px;
  border: 1px solid #fff;
  border-radius: 10rem;
  transition: transform 0.3s ease, color 0.3s ease;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  font-size: clamp(0.85rem, 2vw, 1.5rem);
}

.cta__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #a9c5ff;
  transition: width 0.4s ease;
  z-index: 0; 
}

.cta__btn:hover::before {
  width: 100%;
}

.cta__btn:hover {
  color: #fff;
  transform: translateY(-3px); 
}

.cta__btn span {
  position: relative;
  z-index: 2; 
}

.footer__layout.soluciones__container {
    padding-top: 42px;
    padding-bottom: 46px;
}

.footer__layout {
    background-color: #f6f6f6;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.footer__section {
    font-size: 21px;
    color: #002c5f;
    font-weight: bold;
    text-align: left;
    margin-bottom: 0;
}

.footer__hr {
    border: 1px solid #00af76;
    opacity: 1;
    max-width: 40px;
    margin-top: 4px;
    margin-bottom: 26px;
}

.footer ul {
    padding: 0;
    text-align: left;
}

.footer__link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: #7c7c7c;
  text-decoration: none;
  font-size: 17px;
  position: relative;
  transition: color 0.4s ease;
}

.footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #00af76;
  transition: width 0.4s ease;
}

.footer__link:hover {
  color: #00af76;
}

.footer__link:hover::after {
  width: 100%;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__contacts li {
    margin-bottom: 20px;
}

.footer__link.map {
    align-items: flex-start;
}

.footer__link.map span,
a.footer__link {
    max-width: 26ch;
    text-align: left;
}

.footer__end {
    background-color: white;
    color: #7c7c7c;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__end a {
    text-decoration: none;
    color: #7c7c7c;
    font-weight: 700;
    transition: all 0.3s;
}

.footer__end a:hover {
  color:#2b2b2b;
}

.btn-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 73px;
  height: 73px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background-color: #002c5f; 
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
}

.btn-top:hover {
  background-color: #00af76; 
  transform: translateY(-3px);
}

.btn-top.show {
  opacity: 1;
  visibility: visible;
}

.logo-wrapper {
  height: 120px;          
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;          
}

.logo-wrapper img {
  max-height: 100%;
  width: auto;
  object-fit: contain;   
}

.hero-breadcrumb {
  position: relative;
  margin-top: 66px;
  height: 57px;
}

.hero-breadcrumb picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-breadcrumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-breadcrumb--content {
  height: inherit;
  display: flex;
  align-items: baseline;
  padding: 0 17px;
  gap: 4px;
  flex-direction: column;
  justify-content: center;
}

.breadcrumb-title {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 600;
}

ol.breadcrumb {
  margin-bottom: 0;
  font-size: 11px;
}

ol.breadcrumb li a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb li.active {
  color: #00af76;
  font-weight: 700;
  margin-left: 4px;
}

.hero-breadcrumb .breadcrumb li::after {
  content: "/";
  color: rgba(255,255,255,0.6);
  margin-left: 4px;
}

.hero-breadcrumb .breadcrumb li:last-child::after {
  content: "";
}

.filosofia {
  padding: 24px 0;
}

.filosofia__container {
  max-width: 360px;
  margin: 0 auto;
  padding-inline: 20px;
}

/* === TITULO === */
.filosofia__titulo {
  font-size: 20px;
  color: #002c5f;
  margin-bottom: 0;
  text-align: center;
  font-weight: 700;
  font-size: clamp(20px, 4vw, 25px);
}

.filosofia__separador {
  border-top: 1px solid #00af76;
  max-width: 56px;
  margin: 12px auto 32px;
  opacity: 0.5;
  max-width: clamp(56px, 10vw, 80px);
}

.filosofia__titulo span {
  color: #00af76;
}

/* === TABS === */
.filosofia__tabs {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 20px;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
}

.tab-item {
  flex: 1;
  background: none;
  border: none;
  padding: 12px 0;
  text-align: center;
  border-bottom: 2px solid transparent;
  font-size: 12px;
  font-weight: 600;
  color: #002c5f;
  display: flex;
  flex-direction: row;
  gap: 12px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  font-size: clamp(12px, 2vw, 14px);
  padding-block: clamp(12px, 2vw, 17px);
  transition: all 0.3s ease;
}

.tab-item:hover {
  color: #00af76;
}

.tab-item:hover svg {
  fill: #00af76!important;
}

.filosofia__tabs .tab-item svg {
  fill: #002c5f;
  width: 15px;
  transition: fill 0.3s ease;
}

.filosofia__tabs .tab-item img {
  width: 22px;
  height: 22px;
  margin: 0 auto;
}

.tab-item.active {
  border-bottom: 2px solid #00af76;
  color: #00af76;
}

.tab-item.active svg {
  fill: #00af76;
}

/* === SEPARADOR === */
.filosofia__separator {
  border: none;
  border-top: 1px solid #e3e7ed;
  margin: 20px 0;
}

/* === SUBTÍTULO === */
.filosofia__subtitulo {
  font-size: 16px;
  color: #002c5f;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: clamp(16px, 3vw, 1.5rem);
}

.filosofia__visor {
  padding-inline: 26px;
}

/* === LISTA === */
.filosofia__lista {
  list-style: none;
  padding: 0;
  margin: 0 0 56px 0;
}

.filosofia__lista li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 16px;
}

.check-icon {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  margin-top: 2px;
  width: clamp(11px, 2vw, 18px);
  height: auto;
}

.filosofia__lista p,
.filosofia__texto {
  font-size: 11px;
  color: #494949;
  line-height: 1.5;
  margin-bottom: 0;
  font-size: clamp(11px, 2vw, 14px);
}

.filosofia__lista-title {
  color: #002c5f;
}

/* === IMAGEN + DECORATIVO === */
.filosofia__imagen {
  position: relative;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.filosofia__imagen .img-main {
  width: 100%;
  border-radius: 16px;
  max-width: 158px;
}

.filosofia__imagen .img-deco {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 80px;
  opacity: 0.9;
}

.bloque-valores {
    position: relative;
    width: 100%;
    max-width: 320px;     
    margin: 40px auto;
}

.bg-shape {
  position: absolute;
  top: -13%;
  right: 33%;
  width: 146px;
  height: 120px;
  background: #dce6f0;
  border-radius: 16px;
  z-index: 1;
}

/* FOTO PRINCIPAL */
.img-main {
  position: relative;
  width: 100%;
  border-radius: 16px;
  z-index: 3;
  max-width: 158px;
  margin: 0 auto;
}

/* ICONO CIRCULAR */
.icon-wrapper {
  position: absolute;
  top: 10%;
  transform: translateY(-50%);
  background: #00af76;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  right: 16%;
}

.icon-wrapper img {
    width: 60%;
    height: auto;
}

.icon-wave {
  position: absolute;
  width: 60%;
  top: -25%;
  z-index: 2;
}

.dots {
  position: absolute;
  top: -20%;
  width: 40px;
  z-index: 1;
  opacity: 0.7;
  right: 12%;
}

.profile-card {
  max-width: 360px;
  padding: 20px;
  border: none !important;
  border-radius: 2rem !important;
  padding-bottom: 0;
  overflow: hidden;
  width: 100%;
  transition: all 0.3s ease;
}

.profile-card:hover {
  box-shadow: 0 0 0 2px #00af76;
}

.profile-card:has(.accordion-button:not(.collapsed)) {
  box-shadow: 0 0 0 2px #00a082;
}

.profile-img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
}

.profile__name {
  color: #00af76;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.009em;
}

.profile__job {
  margin-bottom: 32px;
  font-size: 1.2rem;
  font-weight: 400;
  color: #002c5f;
  letter-spacing: -0.009em;
}

.icon-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #eaf7f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background-color: #002c5f;
  transition: all 0.3s ease;
}

.icon-circle:hover {
  background-color: #00af76;
}

.logo-img {
  max-width: 200px;
  display: block;
  margin-bottom: 34px;
  margin-bottom: 50px;
  width: 70%;
}

.logo-img.logo-wharton {
  width: 90%;
}

.logo-img.w40 {
  width: 40%;
}

.logo-img.w60 {
  width: 60%;
}

.logo-img.w80 {
  width: 80%;
}

/*.accordion-button::after {
    transform: rotate(-90deg);
}*/

.accordion-button:not(.collapsed)::after {
    transform: rotate(0deg); 
}

.accordion__layout {
  margin-left: -20px;
  margin-right: -20px;
}

.accordion-button  {
  border: none !important;
  border-top: 1px solid #f3f3f3 !important;
  color: #002c5f !important;
  font-weight: 400;
  font-size: 1.15rem !important;
  padding-left: 40px !important;
  box-shadow: none !important;
  transition: all 0.3s ease!important;
}

.accordion-button:hover {
  background-color: #e4f9f1;
}

.equipo__layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.equipo__avanter-bg {
  background-color: #dfe8ef;
  padding: 32px 25px;
  padding-block: clamp(32px, 8vw, 112px);
  padding-inline: clamp(25px, 4vw, 100px);
}

.accordion-button:not(.collapsed) {
  background-color: #e4f9f1!important; 
  box-shadow: none !important;
}

.accordion-flush .accordion-item {
    border: 0 !important;
}

.equipo__subheading {
  color: #616161;
  font-weight: 400;
  margin-bottom: 14px;
}

.accordion-body {
  padding-inline: 40px!important;
}

.filosofia__square {
  position: absolute;
  bottom: 0;
  width: 40%;
  max-width: 300px;
  right: 10%;
}

.filosofia__visor {
    position: relative;
    min-height: 350px; 
    overflow: hidden;  
}

.visor-content {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-40px);      
    transition:
        opacity .6s ease,
        transform .6s ease,
        visibility 0s linear .6s;
}

/* Panel activo */
.visor-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);        
    transition:
        opacity .6s ease,
        transform .6s ease,
        visibility 0s;
    position: relative;
}

.plataforma-content {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;    
    /*transition:
        opacity .6s ease,
        visibility 0s linear .6s;*/
}

.plataforma-content.active {
    opacity: 1;
    visibility: visible;     
    transition:
        opacity .6s ease,
        visibility 0s;
    position: relative;
}

.filosofia__visor {
  position: relative;
}

.tab-item.active {
  color: #00af76;
}

.profile__contact-container {
  margin-bottom: 36px;
}

.programas__txt {
  color: #000;
  font-size: 12px;
  margin-bottom: 2rem;
  font-size: clamp(12px, 2vw, 16px);
}

.programas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
}

.filosofia__separador.programas__separador {
  margin-bottom: 24px;
  margin-top: 10px;
}

.programa-item {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.programa-titulo {
  text-align: center;
  color: #002c5f;
  font-size: 1rem;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.programa-card {
  height: 148px;
  border-radius: 16px;
  border: 1px solid #bfbfbf;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border .3s ease, color .3s ease;
  padding-inline: 20px;
}

.programa-item:hover .programa-card {
  border: 1px solid #00af76;
}

.programa-item:hover .programa-titulo {
  color: #00af76;
}

.programa-card img {
  height: 64px;
  width: auto;
  max-width: 80%;
  object-fit: contain;
}

.programa-card img.programa-rossmore {
  height: 72px;
}

.programa-card img.programa-teva {
  height: 48px;
}

.programa-item:focus-visible .programa-card {
  outline: 2px solid #00af76;
  outline-offset: 4px;
}

.programas-adherencia__container {
  margin-bottom: 10rem;
}

.programas-adherencia {
  position: relative;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
}


.programas-adherencia {
  background-image: url("../img/backgrounds/backg-adherencia-m.jpg");
}

@media (min-width: 768px) {
  .programas-adherencia {
    background-image: url("../img/backgrounds/backg-adherencia-t.jpg");
  }
}

@media (min-width: 1200px) {
  .programas-adherencia {
    background-image: url("../img/backgrounds/backg-adherencia.jpg");
  }
}

.plataformas__acceso {
  display: flex;
  flex-direction: column;
}

.plataformas__acceso a {
  display: flex;
  gap: 4px;
  color: #fff;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  padding: 6px 0;
  font-size: 12px;
  font-size: clamp(12px, 1.5vw, 15px);
  transition: all 0.3s ease;
}

.plataformas__acceso a:hover {
	color: #fff;
}

.plataforma__acceso--bonosdermo {
  background-color: #608d8f;
}

.plataforma__acceso--nutribonos {
  background-color: #00bcad;
}

.plataforma__acceso--bonosdermo:hover {
  background-color: #466d6c; 
}

.plataforma__acceso--nutribonos:hover {
  background-color: #029e8f;
}

.plataformas__acceso .plataforma {
  font-weight: 700;
  font-size: 16px;
  font-size: clamp(16px, 2vw, 1.25rem);
  font-size: clamp(16px, 3vw, 1.5rem);
}

.marca-registrada {
  vertical-align: super;
}

.plataformas__tabs {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dbdbdb;
}

.plataformas__tabs .tab-item{
  align-items: start;
}

.plataformas__acceso-container {
  padding-inline: 17px;
  padding-block: 6px;
  margin-bottom: 0 !important;
}

.plataformas__txt {
  text-align: center;
}

.acciones-grid {
  margin-bottom: 13rem;
}

.plataformas__tabs .tab-item img {
  display: none;;
}

.plataforma-card {
    position: relative;
    text-decoration: none;
    display: block;
    padding-bottom: 30px; 
    transition: transform .3s ease;
    margin-bottom: 48px;
}

.plataforma-card:hover {
    transform: translateY(-4px);
}

.card-inner {
    position: relative;
    height: 214px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    border-bottom: 6px solid #00af76;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.card-bg {
  position: absolute;
    inset: 0;
    background-image: url("../img/backgrounds/backg-modulo-hover.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transition: opacity .35s ease, transform .35s ease;
    filter: contrast(1.12) saturate(1.05);
}

.card-overlay {
position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 44, 95, 0.95) 0%,   
        rgba(0, 44, 95, 0.85) 30%,  
        rgba(0, 175, 118, 0.75) 100% 
    );
    z-index: 2;
    opacity: 0;
    transition: opacity .35s ease;
}

.card-logo {
  position: relative;
    z-index: 3;
    max-width: 214px;
    transition: opacity .3s ease;
}

.card-arrow {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #002c5f;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background .3s ease;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    width: clamp(55px, 4vw, 70px);
    height: clamp(55px, 4vw, 70px);
}

.plataforma-card.disabled{
  cursor: not-allowed;
  pointer-events: none;
}

.plataforma-card.disabled .card-arrow {
  background-color: #c1c1c1;
}


.plataforma-card:hover .card-bg,
.plataforma-card:hover .card-overlay {
    opacity: 1;
}

.plataforma-card:hover .card-bg {
    transform: scale(1.05);
}

.plataforma-card:hover .card-logo {
    opacity: 0;
}

.plataforma-card:hover h3 {
    color: #fff;
}

.plataforma-card svg {
  z-index: 3;
  max-width: 246px;
}

.plataforma-card:hover svg path {
    fill: #ffffff !important;
}

.card-bg,
.card-overlay {
  clip-path: inset(100% 0 0 0);
  transition: clip-path .65s ease;
}

.plataforma-card:hover .card-bg,
.plataforma-card:hover .card-overlay {
  clip-path: inset(0 0 0 0);
}

.card-arrow {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(55px, 4vw, 70px);
  height: clamp(55px, 4vw, 70px);
  border-radius: 50%;
  background: #002c5f;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  overflow: hidden; /* CLAVE */
  z-index: 5;
}

.card-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #00af76;
  clip-path: inset(100% 0 0 0);
  transition: clip-path .35s ease;
  z-index: 0;
}

.card-arrow img {
  position: relative;
  z-index: 1;
}

.plataforma-card:hover .card-arrow::before {
  clip-path: inset(0 0 0 0);
}

.card-arrow::before {
  transition: clip-path .35s ease .1s;
}

.plataforma-card h3,
.carrusel-plataforma {
  text-align: center;
  color: #002c5f;
  font-weight: 700;
  font-size: 2.15rem;
  z-index: 3;
  margin-bottom: 0;
}

.carrusel-plataforma.carrusel-plataforma--m {
	font-size: 1.75rem;
}

.plataforma-proximamente {
  background-color: #00af76;
  border-radius: 10rem;
  color: #fff;
  padding: 0.1rem 1.75rem;
}

.plataformas picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.plataformas picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-gray {
  background-color: #dfe8ef;
}

.demo__card-layout {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 44px;
}

.demo__card {
  background-color: #fff;
  padding: 18px 35px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  width: 90%;
  max-width: 360px;
  height: 250px;
  border: 1px solid #fff; 
  box-shadow: none;
  transition: all 0.3s ease;
}

.demo__card-title {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 1.25rem;
  color: #002c5f;
  transition: all 0.3s ease;
}

.demo__card-info {
  color: #002c5f;
  font-size: 1.05rem;
  margin-bottom: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

a.demo__card-info:hover {
  color: #00af76;
}

.demo__card-tel {
  display: flex;
  gap: 4px;
}

.demo__card:hover {
  border: 1.5px solid #00af76;    
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.demo__card:hover .demo__card-title {
  color: #00af76;
}

.hero-form {
  min-height: 100vh;
  padding: 48px 17px;
  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url("../img/backgrounds/backg-form-m.webp");
  background-size: cover;
  background-position: center;
}

@media screen and (min-width: 700px) {
  .hero-form {
    background-image: url("../img/backgrounds/backg-form-0.jpg");
  }
}

.form-card {
  width: 100%;
  max-width: 420px;
  padding: 35px 13px;
  border-radius: 20px;

  background: rgba(5, 20, 60, 0.85);
  backdrop-filter: blur(6px);

  color: #fff;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.08);
}

.form-card h1 {
  font-size: 24px;
  margin: 0 0 16px;
}

.hero-subtitle {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.field label {
  font-size: 12px;
  display: block;
  margin-bottom: 4px;
}

.input-wrap {
  position: relative;
}

input,
textarea {
  width: 100%;
  border-radius: 6px;
  border: none;
  font-size: 13px !important;
  outline: none;
  padding: 10px 12px;
}

textarea {
  resize: none;
  min-height: 90px;
}

.icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.icon svg {
  width: 18px;
  height: 18px;
  fill: rgba(0, 0, 0, 0.45);
}

.button-form {
  width: 100%;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 1;
}

.button-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #fff;
  transition: width 0.4s ease;
  z-index: 0;
}

.button-form:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  color: #002c5f;
}

.button-form:hover::before {
  width: 100%;
}

.button-form span {
  z-index: 5;
  position: relative;
}

.demo__container {
  padding-top: 26px;
  padding-bottom: 62px;
}

.filosofia__titulo.form__title {
  color: white;
  font-size: 1.55rem;
}

.filosofia__separador.programas__separador.demo__separador {
  margin-top: 25px;
  margin-bottom: 25px;
  max-width: clamp(100px, 20vw, 120px);
}

.form__title-container {
  padding-inline: 24px;
  text-align: center;
}

.subtitle-highlight {
  color:#00af76;
}

.texto__obligatorio {
  font-size: 13px;
}

.avanter__arg-square {
  position: absolute;
  top: 0;
  transform: rotate(180deg);
  right: 0;
  width: 50%;
  max-width: 473px;
}

.certificacion__square {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 415px;
  width: 55%;
}

.form__field-layout {
	display: grid;
    gap: 12px;
}

.error-msg {
    display: block;
    font-size: 0.85rem;
    margin-top: 6px;
    color: #e74c3c;
    min-height: 18px;
}

.success-msg {
    display: block;
    font-size: 0.85rem;
    margin-top: 6px;
    color: #27ae60;
    min-height: 18px;
}

.input-error {
    border: 2px solid #e74c3c !important;
    background: #fff5f5;
}

.input-success {
    border: 2px solid #27ae60 !important;
    background: #f5fff7;
}

.button-form:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.terminos-modal {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.terminos-modal h5 {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 700;
  color: #002c5f;
}

.terminos-modal h6 {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #002c5f;
}

.terminos-modal ul {
  padding-left: 20px;
  margin-bottom: 15px;
  list-style: disc;
}

.terminos-destacado {
  text-decoration: underline;
}

@media screen and (min-width: 500px) {
  .avanter__arg-square {
    width: 35%;
  }
}

@media screen and (min-width: 900px) {
  .equipo__layout {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: nowrap;
    max-width: 900px;
    justify-content: center;
    margin: 0 auto;
  }
  .profile-card {
    max-width: 264px;
    flex: 1 1 300px;
  }
  .profile-img {
    width: 221px;
    height: 221px;
  }
  .profile__name {
    font-size: 1.25rem;
  }
  .profile__job {
    font-size: 1.1rem;
  }
  .icon-circle {
    width: 38px;
    height: 38px;
  }
  .icon-circle img {
    width: 23px;
  }
  .equipo__subheading {
    font-size: 0.9rem;
  }
  .filosofia__separador {
    margin: 12px auto 48px;
  }
}

@media screen and (min-width: 500px) {
  .filosofia__container {
    max-width: 700px;
  }
  .img-main {
    max-width: 300px;
  }
  .bg-shape {
    width: 240px;
    height: 230px;
  }
  .icon-wrapper {
    width: 64px;
    height: 64px;
    right: -5%;
    top: 5%;
  }
  .dots {
    right: -9%;
    width: 70px;
    top: -15%;
  }
  .filosofia__lista {
    margin: 0 0 100px 0;
  }
  .visor-content {
    margin-bottom: 8rem;
  }
  .programa-item {
    margin: 0 auto;
    width: 70%;
  }
  .plataforma-card {
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 48px;
  }
}

@media screen and (min-width: 605px) {
  .programa-item {
    width: 100%;
  }
}

@media screen and (min-width: 685px) {
  .form-card {
    max-width: 600px;
    padding: 40px 50px;
    max-width: clamp(600px, 60vw, 1096px);
  }
  .form__field-layout {
    column-gap: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 14px;
  }
  .form__title-container {
    padding-inline: 0;
    text-align: left;
  }
  .filosofia__separador.programas__separador.demo__separador {
    margin-top: 10px;
    margin-bottom: 26px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .texto__obligatorio {
    margin-bottom: 12px;
  }
  .form-grid {
    gap: 14px;
  }
  .button-form {
    width: 150px;
  }
  .button__form-field {
    margin: 0 auto;
  }
  .hero-form {
    min-height: auto;
    padding-block: 62px;
  } 
}

@media screen and (min-width: 700px) {
  .plataformas__acceso {
    flex-direction: row;
  }
  .plataformas__acceso a {
    flex: 1;
  }
  .plataformas__acceso a img {
    width: 30px;
  }
  .plataformas__txt {
    text-align: left;
  }
}

@media screen and (min-width: 1024px) {
  header {
    height: 90px;
  }
  .equipo__layout {
    max-width: 1650px;
  }
  .profile-card {
    max-width: 500px;
    flex: 1 1 500px;
  }
  .profile-img {
    width: 90%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    height: auto;
    max-width: 418px;
  }
  .filosofia__titulo {
    font-size: clamp(25px, 2.5vw, 2.25rem);
  }
  .filosofia__separador.equipo__separador {
    max-width: clamp(80px, 10vw, 160px);
    margin: 24px auto 80px;
  }
  .profile__name {
    font-size: clamp(1.25rem, 2vw, 2rem);
  }
  .equipo__avanter-bg {
    padding-block: clamp(32px, 8vw, 80px);
    padding-inline: clamp(25px, 6vw, 136px);
  }
  .profile__job {
    font-size: clamp(1.1rem, 1.85vw, 1.6rem);
  }
  .icon-circle {
    width: clamp(38px, 3.5vw, 60px);
    height: clamp(38px, 3.5vw, 60px);
  }
  .icon-circle img {
    width: 60%;
  }
  .accordion-button {
    padding-block: 28px !important;
    font-size: clamp(1.15rem, 1.6vw, 1.65rem) !important;
  }
  .equipo__subheading {
    font-size: clamp(0.9rem, 1.3vw, 1.3rem);
  }
  .hero-breadcrumb {
    margin-top: 90px;
    height: 120px;
  }
  .hero-breadcrumb--content {
    align-items: center;
  }
  .breadcrumb-title {
    font-size: 2rem;
  }
  ol.breadcrumb {
    font-size: 13px;
  }
  .filosofia__tabs {
    gap: 80px;
    max-width: 880px;
    margin: 0 auto 64px;
    justify-content: center;
  }
  .tab-item {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: clamp(14px, 1.3vw, 18px);
  } 
  .filosofia__square {
    max-width: clamp(300px, 30vw, 500px);
  }
  .visor__wrapper {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .visor-content {
    display: flex;
    flex-direction: row-reverse;
  }
  .bloque-visor-texto {
    flex: 0 0 45%;
    max-width: 520px;
  }
  .filosofia__subtitulo {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  .filosofia__lista p, .filosofia__texto {
    font-size: clamp(14px, 1.25vw, 16px);
  }
  .bloque-valores {
    max-width: 320px;
    margin: 40px auto;
    margin-right: 4rem;
    flex: 0 0 55%;
    display: flex;
    justify-content: flex-start;
  }
  .filosofia__container {
    max-width: 1920px;
  }
  .filosofia__container.programas-adherencia__container {
    margin-bottom: 10rem;
    max-width: 1000px;
    margin-bottom: 18.5rem;
  }
  .programas-grid {
    gap: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .programas__txt {
    font-size: clamp(12px, 2vw, 16px);
    margin-bottom: 3.25rem;
  }
  .programa-titulo {
    font-size: 0.85rem;
  }
  .programa-item {
    width: 202px;
    flex: 0 0 auto;
    max-width: 260px;
    margin: 0;
    gap: 16px;
  }
  .programa-card {
    height: 101px;
    padding-inline: 0;
  }
  .programa-card img {
    height: 52px;
  }
  .programa-card img.programa-rossmore {
    height: 60px;
  }
  .programa-card img.programa-teva {
    height: 36px;
  }
  .plataformas__tabs .tab-item {
    flex: 1;
    gap: 24px;
    align-items: center;
  }
  .plataformas__acceso-container {
    padding-inline: 43px;
    padding-block: 24px;
  }
  .tab-item__txt {
    text-align: center;
    white-space: normal;
    max-width: 220px;
    line-height: 1.3;
  }
  .plataformas__tabs .tab-item img {
    display: block;
  }
    .filosofia__container.programas-adherencia__container.plataformas__container {
    max-width: 1024px;
    padding-inline: 61px;
  }
  .plataformas__layout {
    gap: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .plataforma-card {
    max-width: clamp(270px, 23.5vw, 370px);
    width: 100%;
    flex: 0 0 auto;
    margin: 0;
    margin-bottom: 0 !important;
  }
  .plataforma-card svg {
    max-width: 200px;
  }
  .plataforma-card h3 {
    font-size: 1.75rem;
  }
  .demo__card-layout {
    gap: 35px;
    flex-direction: row;
  }
  .demo__card {
    max-width: 275px;
  }
  .demo__container {
    padding-top: 58px;
  }
  .demo__hr {
    margin-bottom: 40px!important;
  }
  .demo__card {
    max-width: clamp(275px, 26vw, 515px);
    height: clamp(250px, 26vw, 422px);
    gap: 1.25rem;
  }
  .demo__card-img {
    width: 98px;
    height: auto;
    width: clamp(55px, 5vw, 73px);
  }
  .demo__card-title {
    font-size: clamp(1.25rem, 5vw, 27px);
  }
  .demo__card-info {
    font-size: clamp(1.05rem, 1.6vw, 23px);
  }
  .demo__card-img--secondary {
    width: clamp(23px, 2.5vw, 41px);
  }
  .soluciones__list-grafico--mobile {
		display: none;
	}

	.soluciones__list-grafico--desktop {
		display: block;
	}
}


@media screen and (min-width: 1200px) {
  .filosofia__tabs {
    max-width: 1650px;
    gap: 154px;
  }
  .filosofia__visor {
    max-width: 1650px;
    margin: 0 auto;
  }
  .visor-content {
    width: 100%;
  }
  .visor__wrapper {
      max-width: 1650px;
      margin: 0 auto;
      padding: 0 24px;
  }
  .bloque-visor-texto {
    flex: 1 1 45%;
    max-width: 600px;
    margin-top: 3rem;
  }
  .filosofia__subtitulo {
    font-size: clamp(1.5rem, 4vw, 3rem);
  }
  .filosofia__lista p, .filosofia__texto {
    font-size: clamp(16px, 1.25vw, 18px);
  }
  .bloque-valores {
    margin: 40px auto;
    margin-right: 0rem;
    display: flex;
    justify-content: flex-start;
    flex: 1 1 55%;
    margin-top: 7rem;
    flex-shrink: 0;
    width: min(520px, 45vw);
    max-width: 915px;
  }
  .bg-shape {
    width: 55%;
    height: 100%;
  }
  .img-main {
    width: 65%;
    height: auto;
    display: block;
    max-width: 100%;
  }
  .icon-wrapper {
    top: 5%;
    width: 120px;
    height: 120px;
    right: 8%;
  }
  .icon-wave {
    position: absolute;
    width: 60%;
    top: -15%;
    z-index: 2;
  }
  .dots {
    top: -15%;
    right: 6%;
    width: 15%;
  }
  .filosofia {
    padding-top: 80px;
  }
  .filosofia__subtitulo {
    margin-bottom: 30px;
  }
  .filosofia__container.programas-adherencia__container {
    margin-bottom: 16rem;
    max-width: 1650px;
    max-width: 1920px !important;
    padding-inline: clamp(43px, 12vw - 101px, 135px);
  }
  .programa-item {
    width: 100%;
    flex: 0 0 auto;
    max-width: 370px;
    margin: 0;
    gap: 24px;
  }
  .programa-titulo {
    font-size: 1rem;
  }
  .programa-card {
    height: 178px;
    padding-inline: 0;
  }
  .programas__txt {
    font-size: 18px;
  }
  .filosofia.programas-adherencia {
    padding-top: 50px;
  }
  .programas__txt {
    padding-inline: 2rem;
  }
  .programa-card img {
      height: 80px;
  }
  .programa-card img.programa-rossmore {
    height: 100px;
  }
  .programa-card img.programa-teva {
    height: 54px;
  }
  .tab-item__txt {
    max-width: 381px;
    font-size: 19px;
  }
  .plataformas__tabs .tab-item img {
    width: 72px;
  }
  .plataformas__acceso .plataforma {
    font-size: 1.9rem;
  }
  .plataformas__acceso a {
    font-size: 20px;
  }
  .plataformas__tabs {
    margin-bottom: 32px;
  }
  .plataformas__txt {
    padding-inline: 0 !important;
    margin-bottom: 6rem!important;
  }
  .plataformas__acceso-container {
    padding-block: 48px;
    max-width: 1920px!important;
    padding-inline: clamp(43px, 12vw - 101px, 135px);
  }
  .acciones-grid .programa-item {
    max-width: clamp(120px, 20vw, 370px);
  }
  .plataformas__acceso a img {
    width: 45px;
  }
  .plataformas__acceso a {
    gap: 12px;
  }
}

@media screen and (min-width: 1200px) {
  .filosofia__container.programas-adherencia__container.plataformas__container {
    max-width: 1920px;
    padding-inline: clamp(61px, 12vw - 101px, 161px);
  }
  .plataformas__layout {
    gap: 100px;
    justify-content: center;
  }
}

@media screen and (min-width: 1300px) {
   .hero-form {
    padding-block: 92px;
  }
  .form-card {
    max-width: 1096px;
    padding: 73px 97px;
  }
  .filosofia__titulo.form__title {
    font-size: 2.65rem;
  }
  .filosofia__separador.programas__separador.demo__separador {
    margin-top: 20px;
    margin-bottom: 48px;
  }
  .hero-subtitle {
    font-size: 24px;
  }
  .form-grid {
    gap: 21px;
  }
  .texto__obligatorio {
    font-size: 15px;
  }
  .form__field-layout {
    column-gap: 28px;
    row-gap: 21px;
  }
  .field label {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .input-wrap input,
  .field input {
    padding: 18px 20px;
    font-size: 16px !important;
  }
  textarea {
    font-size: 16px!important;
  }
  .icon svg {
    width: 20px;
    height: 20px;
  } 
  .button-form {
    padding: 8px 14px;
    width: 220px;
    font-size: 22px;
  }
}

@media screen and (min-width: 1500px) {
  .card-inner {
    height: 305px;
  }
  .plataforma-card {
    max-width: clamp(270px, 25vw, 466px);
  }
  .plataforma-card svg {
    max-width: 320px;
  }
  .plataforma-card h3 {
    font-size: 2.5rem;
  }
  .demo__card {
    padding: 18px 50px;
  }
}

@media screen and (max-width: 1024px) {
  .carrusel-texto h2 {
    margin-bottom: 80px;
  }
  .boton {
    font-size: 15px;
    padding: 11px 25px;
  }
  .whatsapp-float {
    padding: 0 16px;
    padding-left: 1px;
    bottom: 20px;
    right: 80px;
  }
  .whatsapp-float video {
    width: 50px!important;
  }
  .whatsapp-float span {
    font-size: 14px;
  }
  .btn-top {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .avanter-intro__container {
    max-width: 1024px;
    padding: 70px;
    gap: 95px;
  }
  .avanter-intro-img {
    width: 350px;
    width: clamp(280px, 34vw, 500px);
  }
  .avanter-intro__text h3 {
    /*font-size: 1.75rem;*/
    margin-bottom: 26px
  }
  .avanter-intro__text p {
    max-width: 33ch;
    /*font-size: 22px;*/
  }
  .soluciones__container {
    max-width: 1024px;
    padding: 50px 73px;
  }
  /*.soluciones__container h3 {
    font-size: 24px;
  }*/
  .soluciones__separador {
    max-width: 88px;
    margin: 20px auto 40px;
  }
  .soluciones__botones {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    margin-bottom: 30px;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
  }
  .solucion__btn {
    max-width: 200px;
    max-height: 148px;
    gap: 10px;
    padding: 20px 10px;
  }
  .solucion__btn svg {
    width: 50px;
  }
  .solucion__btn h4 {
    font-size: 16px;
    max-width: 17ch;
  }
  .soluciones__visor {
    min-height: max-content;
    padding: 40px 58px;
    gap: 30px;
  }
  .soluciones__img {
    max-width: 352px;
    margin-left: 0;
    margin-right: auto;
  }
  .soluciones__visor-title {
   /* font-size: 1.5rem;*/
    margin-bottom: 20px;
  }
  .soluciones__list-item {
    gap: 10px;
  }
  .soluciones__list-item img {
    width: 21px;
  }
  /*.soluciones__list-item span {
    font-size: 1.2rem;
  }*/
  .soluciones__list {
    gap: 12px;
  }
  .soluciones__container.av_arg {
    padding: 75px 42px;
  }
  .soluciones__separador {
    margin: 20px auto 70px;
  }
  .stats__container {
    gap: 40px;
  }
  .carrusel-programas {
    position: relative;
    padding: 3rem 70px;
  }
  .certificado__container img {
    width: 96px;
  }
  .soluciones__container.cta {
    padding: 40px 136px 68px;
  }
  .soluciones__container.carrusel__container {
    padding: 50px 72px;
  }
  .soluciones__container.demo-container {
    padding: 64px 72px!important;
  }
  .footer__logo {
    width: 136px;
  }
  .footer__section {
    font-size: 16px;
  }
  .footer__link {
    font-size: 13px;
  }
  .icono-contacto {
    width: 15px;
  }
  .footer__end {
    font-size: 12px;
  }
}

@media screen and (max-width:786px) {
  .navbar {
    padding: 0 16px !important;
  }
  .carrusel-texto h2 {
    margin-bottom: 64px !important;
    font-size: 1.5rem;
    font-size: clamp(1.5rem, 4vw, 1.75rem) !important;
  }
  .btn-display {
    gap: 36px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }
  .boton {
    width: 160px;
  }
  .whatsapp-float span {
    font-size: 12px;
  }
  .carrusel-texto {
    top: 52%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    text-align: center;
  }
  .carousel-item img {
    height: 60vh;
    object-fit: cover;
    object-position: center;
  }
  .avanter-intro__container {
    gap: 45px;
    padding-block: clamp(2rem, 2vw, 4rem);
    max-width: 600px;
    margin: 0 auto;
    padding-inline: clamp(18px, 2vw, 3rem);
    flex-direction: column;
  }
  .avanter-intro__text h3 {
    font-size: 1.35rem;
    text-align: center;
    margin-bottom: 20px;
    font-size: clamp(1.35rem, 4vw, 1.5rem);
  }
  .avanter-intro__text p {
    text-align: center;
    font-size: 1rem;
    max-width: 100%;
    font-size: clamp(1rem, 3vw, 1.35rem);
  }
  .avanter-intro-img {
    width: clamp(280px, 60vw, 450px);
  }
  .soluciones__container {
    padding-block: clamp(2rem, 2vw, 4rem);
    padding-inline: clamp(18px, 2vw, 3rem);
    max-width: 600px;
    margin: 0 auto;
  }
 .soluciones__container h3 {
    font-size: clamp(1.35rem, 2vw, 24px);
  }   
  .soluciones__separador {
    margin: 16px auto 24px;
    max-width: 56px;
  }
  .solucion__btn {
    max-width: 74px;
    border-radius: 10px;
    max-height: 55px;
    padding: 6px;
  }
  .solucion__btn h4 {
    display: none;
  }
  .soluciones__botones {
    display: flex;
    gap: 16px;
    justify-content: space-around;
    margin-bottom: 21px;
  }
  .soluciones__visor {
    padding: 16px;
    min-height: 600px;
    /*min-height: 590px;*/
    max-width: 500px;
    margin: 0 auto;
  }
  .soluciones__info {
    min-width: 100%;
  }
  .soluciones__visor-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 16px;
  }
  .soluciones__list-item img {
    width: 16px;
  }
  .soluciones__list-item {
    gap: 6px;
  }
  .soluciones__list-item span {
    font-size: clamp(1rem, 2vw, 1.2rem);
  }
  .soluciones__container.av_arg {
    padding-block: clamp(4rem, 2vw, 5rem);
    padding-inline: clamp(18px, 2vw, 3rem);
    max-width: 600px;
    margin: 0 auto;
  }
  .stats__container {
    flex-direction: column;
    gap: 32px;
  }
  .stat__item-img {
    width: 100px;
    height: 100px;
    padding: 20px;
  }
  .stat__item {
    flex: 1 1 280px;
	flex: 1 1 360px;
    max-width: 360px;
  }
  .stat__item-number {
    font-size: 56px;
  }
  .stat__item-info {
    line-height: 1.15;
    font-size: 1.25rem;
  }
  .soluciones__container.carrusel__container {
      padding-block: clamp(2rem, 2vw, 4rem);
      padding-inline: clamp(25px, 2vw, 3rem);
      max-width: 600px;
      margin: 0 auto;
  }
  .programs-title {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }
  .programs-title h4 {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    max-width: 22ch;
    line-height: 1.3;
  }
  a.btn-vermas {
    font-size: 0.675rem;
    padding: 6px 8px;
  }
  .carousel-item .logo-wrapper img {
    height: auto;
    max-width: 200px;
  }
  .carrusel-programas {
    padding: 0;
  }
  .logo-wrapper {
    height: 105px;          
  }
  .marcas-seccion {
    margin-bottom: 52px;
  }
  .soluciones__container.certificado-soluciones {
    min-height: 410px;
    padding-top: 3rem;
  }
  .soluciones__container.demo-container {
    padding-block: clamp(4rem, 2vw, 5rem)!important;
    padding-inline: clamp(18px, 2vw, 3rem)!important;
  }
  .cta {
    flex-direction: column;
    text-align: center;
    height: auto;
  }
  .cta__title {
    font-size: clamp(1.6rem, 2vw, 1.85rem);
    margin-bottom: 2rem;
  }
  .cta__btn {
    font-size: clamp(1rem, 3vw, 1.3rem);
    font-size: clamp(1rem, 1.5vw, 1.3rem);
  }
  .footer__layout.soluciones__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer__logo {
    width: 150px;
  }
  .footer__links li {
    margin-bottom: 6px;
  } 
  .footer__contacts li {
    margin-bottom: 10px;
  }
  .soluciones__img {
     max-width: 100%;
  }
  .whatsapp-float {
    gap: 0;
  }
  .btn-top {
    width: 50px;
    height: 50px;
    right: 10px;
    bottom: 18px;
  }
}

@media (min-width: 400px) and (max-width: 785px) {
  .stats__container {
        align-items: center;
    }
}

@media (max-width: 800px) {
  .soluciones__container {
    flex-direction: column;
  }
}



/*ANIMACIONES*/

.pulser {
animation: pulser 3s infinite;
}

@keyframes pulser {
0% {
    box-shadow: 0 0 0 0 rgba(0,175,118,.5);
}

60% {
    box-shadow: 0 0 0 35px rgba(255,96,116,0);
}
100% {
    box-shadow: 0 0 0 35px rgba(255,96,116,0);
}
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}

.fade-in.visible {
  opacity: 1;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-down {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-down.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}