@font-face {
  font-family: 'FSAlbertPro';
  src: url('https://bdvacutainer.bd-ids.com/font/FSAlbertPro-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Scroll-driven animations (si el navegador las soporta) */
@supports (animation-timeline: view()) {

  @keyframes shrink-logo {
    from {
      max-width: 200px;
      /* tamaño inicial grande */
      transform: scale(1);
    }

    to {
      max-width: 80px;
      /* tamaño más pequeño */
      transform: scale(0.7);
    }
  }

  .logo {
    animation: shrink-logo linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }

  @keyframes fade-out {
    to {
      background-size: 150%;
      opacity: 0;
    }
  }

  @keyframes zoom-out {
    to {
      font-size: 2rem;
      padding-left: .1em;
    }
  }

  @keyframes appear {
    to {
      opacity: 1;
    }
  }

  @keyframes max-out {
    to {
      max-width: 100vw;
    }
  }

  .hero {
    animation: fade-out linear both;
    animation-timeline: view();
    animation-range: exit -100px;
  }

  nav {
    animation: max-out linear both;
    animation-timeline: view();
    /* antes: animation-range-start / -end */
    animation-range: entry 10vh exit 5vh;
  }

  nav::after {
    animation: appear linear both;
    animation-timeline: view();
    animation-range: entry 60vh exit 100vh;
  }

  .logo {
    animation: zoom-out linear both;
    animation-timeline: view();
    animation-range: entry 10vh exit 100vh;
  }
}

@supports not (animation-timeline: view()) {
  .notice::after {
    content: ' animation-timeline of scroll and view are currently not supported in your browser.';
  }
}

/* Base */
body {
  font-family: 'FSAlbertPro';
  font-size: 1rem;
  margin: 0;
  background-color: #F8F4F1;
  color: #060A3D;
}

.hero,
nav,
main {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 1em;
}

h1,
h2,
h3 {
  margin-block-start: 0;
  margin-block-end: 0.5em;
  /*text-wrap: balance;*/
  line-height: .8;
  /*text-shadow: 4px 4px 8px black;*/
}

.containerFull {
  width: 100%;
  position: relative;
  overflow: hidden;
}


.div-degradado {
  background: linear-gradient(90deg,
      #7b8cff 0%,
      #6ec6e8 60%,
      #5ce1e6 100%);
}


.div-degradadoAzules {
  background: linear-gradient(90deg,
      #5de0e6 0%,
      #5de0e6 10%,
      #004aad 100%);
}

.div-degradadoAzules {
  background: linear-gradient(90deg,
      #5de0e6 0%,
      #5de0e6 10%,
      #004aad 100%);
}

.div-azul-oscuro{
  background-color: #060A3D ;
}
.div-azul-raro{
  background-color: #282c59 ;
}

.div-azul-naranja{
  background-color: #f4762b ;
}


.div-imagen {
  position: relative;
  min-height: 700px;
  background-image: url('images/programaseducativos/uri_ifs___M_GCEfX0CXCWWMrncaMjD7q0sCUb_8N85HemTmcEOAAZg.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.div-imagen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8); /* ajusta 0.4–0.7 según qué tan tenue la quieras */
  pointer-events: none;
}


.div-azul-grisoscuro{
  background-color: #DAD7D6 ;
}

.div-morado{
  background-color: #9199D8  ;
}

.div-degradadoInverso {
  background: linear-gradient(90deg,
      #5ce1e6 0%,
      #6ec6e8 60%,
      #7b8cff 100%);
}

.div-degradado h1,
.div-degradado h2,
.div-degradado h3,
.div-degradado h4,
.div-degradado p,
.div-degradado ul,
.div-degradado li {
  text-wrap: auto !important;
}


.column2 h1 {
  font-size: clamp(2rem, 4cqi, 7rem);
  /* color: #060A3D; */
  /*color: black;*/
  line-height: 1.3;
}




.column2 h3 {
  font-size: clamp(.75rem, 2cqi, 3rem);
  /* color: #060A3D; */
  /*color: black;*/

  line-height: 1.3;
}

.lista-bd li {
  /*color: black;*/
  font-size: clamp(.75rem, 2cqi, 3rem);
  line-height: 1.3;
  margin-bottom: .5rem;

}

.texto-final {
  margin-top: 1.5rem;
  display: block;
}




.video-fullscreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  /* Para que quede atrás */
}

.video-fullscreen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-fullscreen img {
  min-width: 100%;

  min-height: 100%;
  object-fit: contain;
  /* intenta mostrar la imagen completa */
  object-position: center;
  /* centrada siempre */

}

.video-fullscreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  /* fondo */
}

/* Capa transparente (overlay) */

.video-fullscreen::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  /* 25% de oscuridad, puedes cambiarlo*/
  pointer-events: none;
}

.video-fullscreen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-fullscreen img {
  min-width: 100%;
  min-height: 100%;
  object-fit: contain;
  object-position: center;
}


.video-fullscreen::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(to bottom,
      rgba(40, 40, 40, 0.35),
      rgba(40, 40, 40, 0.55));
  /*backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
*/
  border-radius: 12px;
  pointer-events: none;
}




p {
  text-wrap: pretty;
  line-height: 1.5;
}

.nav-drawer-victor .logobdAzulPlaca {
  border-radius: 100px 100px 100px 100px;
  background-color: white !important;
  padding: 10px;
}

.nav-drawer-victor ul a {
  display: flex;
  align-items: center;
  align-content: center;
  /*padding: 0px 20px;*/
}


.contenedor-nav {
  position: sticky;
  top: 0;
  left: 0;
  background-color: #060A3D;
  z-index: 99;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  left: 0;
  min-height: 5rem;
  background-color: #060A3D;
  backdrop-filter: blur(.2em);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  width: 100%;


}

nav ul {
  padding-right: 1em;
  margin: 0;
  display: inline-flex;
  gap: 1rem;
}

nav ul li {
  list-style: none;
  display: inline-block;
  cursor: pointer;
  transition: .5s linear;
}

nav ul li:hover {
  text-decoration: underline #5EB0E5;
}

nav::after {
  content: '';
  position: absolute;
  opacity: 0;
  height: .05em;
  width: 100%;
  bottom: 0;
}

/* HERO */
.hero {
  min-height: 90vh;
  /*background-image:
    linear-gradient(to top, rgba(249, 245, 242, 1) 0%, rgba(255, 255, 255, 0) 10%),
    url("https://bdvacutainer.bd-ids.com/images/productosVacutainer.png");
    */
  background-size: 35%;
  background-repeat: no-repeat;
  background-position: 100% 55%;
  /* mix-blend-mode: normal; */
  display: grid;
  container-type: inline-size;
}



.tarjeta {
  border: 1px solid #e0e6ed;
  border-radius: 20px;
  background: #fff;
  box-shadow: rgba(145, 158, 171, 0.2) 0px 0px 2px 0px, rgba(145, 158, 171, 0.12) 0px 12px 24px -4px !important;
  padding: 0px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tarjeta .img {

  width: 100%;
  height: 400px;
  min-height: 400px;

  overflow: hidden;


}

.contenedorNaranja {

  background-color: #FF6E00;

}

.contenedorTexto {
  flex: 1;
  padding: 15px;
}

.contenedorTexto h2 {

  margin: 0;
  padding: 8px 10px;
  /* opcional, para darle respiro */
  line-height: 1.1;
  /* esto elimina el espacio extra */
  width: 100%;



}

.contenedorTexto h1,
.contenedorTexto h2,
.contenedorTexto h3,
.contenedorTexto h4,
.contenedorTexto h5,
.contenedorTexto h6,
.contenedorTexto p {
  color: white !important;
  text-align: center;

}

.colmanual {
  flex: 0 0 auto !important;
  width: 30% !important;
  padding: 0px !important;

}

.dist-card a {
  color: #005bb5;
}



.referencias-wrapper {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease;
}

.flecha-referencias {
  display: inline-block;
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* cuando está abierta → flecha hacia abajo */
.flecha-referencias.rotada {
  transform: rotate(90deg);
  /* ► gira 90° → ▼ */
}



@media (min-width: 991.98px) {
  .colmanual {
    flex: 0 0 auto;
    width: 30%;
  }


}



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

.tarjeta .img {
  flex: 0 0 auto;
  /* no se estira, solo su alto */
}

.hero h1 {
  font-size: clamp(3rem, 5cqi, 10rem);
  max-width: 90%;
  /*color: #060A3D;*/
  color: white;
  font-weight: bold;
  line-height: 1.3;
  /*text-shadow: 8px 8px 16px black;*/
}

.hero .indice {
  font-size: clamp(2rem, 3cqi, 5rem);
  /*color: #060A3D;*/
  color: white;
  font-weight: bold;
}

.hero h2 {
  font-size: clamp(2rem, 3.5cqi, 5rem);
  max-width: 50%;
  /*color: #060A3D;*/
  color: white;
  line-height: 1.3;
  /*text-shadow: 8px 8px 16px black;*/
}

/* Botón */
.hero .btn {
  display: inline-block;
  position: relative;
  padding: .5em 1em;
  cursor: pointer;
}

.hero .btn-bd {
  font-size: clamp(1rem, 2cqi, 1.5rem);
  background-color: #FF6E00;
  display: inline-block;
  padding: 1%;
  color: #FFFFFF;
  border-radius: 100px;
  font-weight: bold;
  cursor: pointer;
  /*text-shadow: 8px 8px 16px black;*/
}

.botonUnificado {
  width: 27%;
  margin: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.botonUnificado4 {
  width: 15%;
  min-width: 200px;
  margin: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero .btn::before,
.hero .btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  /* fallback */
  background: linear-gradient(45deg,
      hsl(0 100% 70%), hsl(30 100% 70%), hsl(60 100% 70%), hsl(90 100% 70%),
      hsl(120 100% 70%), hsl(150 100% 70%), hsl(180 100% 70%), hsl(210 100% 70%),
      hsl(240 100% 70%), hsl(270 100% 70%), hsl(300 100% 70%), hsl(330 100% 70%), hsl(360 100% 70%));
  /* intento “longer hue” */
  background: linear-gradient(40deg in hsl longer hue, hsl(0 100% 70%), hsl(360 100% 70%));
  clip-path: polygon(90% 0, 100% 50%, 90% 99%, 0% 100%, 8% 50%, 0% 0%);
}

.hero .btn::after {
  background: #1f2020;
  inset: 3px;
}

/* Logo con degradado en texto */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;

}

.logo img {
  max-width: 100px;
  padding-left: 10px;
  padding-bottom: 10px;
}

nav,
nav ul li {
  color: #fff;
}

/* fuerza blanco en el nav */
nav ul li:hover {
  text-decoration: underline #5EB0E5;
}

.hero .btn::after {
  background: #F8F4F1;
  /* antes era #1f2020 (oscuro), ahora mismo color del body */
  inset: 3px;
}

.tracking-in-expand {
  -webkit-animation: tracking-in-expand 1.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
  animation: tracking-in-expand 1.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

.scale-in-ver-bottom {
  -webkit-animation: scale-in-ver-bottom .7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: scale-in-ver-bottom .7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes scale-in-ver-bottom {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    opacity: 1;
  }

  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    opacity: 1;
  }
}

@keyframes scale-in-ver-bottom {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    opacity: 1;
  }

  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    opacity: 1;
  }
}

.BDLogoClaro {
  max-width: 130px;

}

.fade-in-top {
  -webkit-animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.bounce-in-top {
  -webkit-animation: bounce-in-top 1.1s both;
  animation: bounce-in-top 1.1s both;
}

@-webkit-keyframes bounce-in-top {
  0% {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  38% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }

  55% {
    -webkit-transform: translateY(-65px);
    transform: translateY(-65px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  72% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  81% {
    -webkit-transform: translateY(-28px);
    transform: translateY(-28px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  90% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  95% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes bounce-in-top {
  0% {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  38% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }

  55% {
    -webkit-transform: translateY(-65px);
    transform: translateY(-65px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  72% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  81% {
    -webkit-transform: translateY(-28px);
    transform: translateY(-28px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  90% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  95% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

/* --- Hamburguesa --- */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  margin-right: .75rem;
  line-height: 0;
}

.nav-toggle .bar {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: transform .28s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Drawer móvil (off-canvas desde la derecha) --- */
.nav-drawer {
  padding-right: 20px;
  position: fixed;
  inset: 0 0 0 auto;
  /* top right bottom, pegado a la derecha */
  width: 82%;
  max-width: 420px;
  background: #060A3D;
  box-shadow: -12px 0 24px rgba(0, 0, 0, .26);
  /*transform: translateX(100%);*/
  transition: transform .35s ease;
  z-index: 1000;
  display: flex;
  align-items: flex-start;

}

.nav-drawer {
  transform: translateX(100%);
  transition: transform .35s ease;
}

.nav-drawer.open {
  transform: translateX(0);
}



.nav-drawer ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.25rem;
  padding: 0;
  z-index: 10;
  background-color: #060A3D;
}

.nav-drawer li {
  list-style: none;
  max-width: 90%;
}

/* Backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .24);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 50;
}

.nav-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}


/* --- Estados por breakpoint --- */
@media (max-width: 991.98px) {

  /* Oculta menú horizontal y muestra hamburguesa */
  nav ul {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  /* Respeta tu nav fijo y arriba */
  nav {
    position: sticky;
    top: 0;
    z-index: 1100;
  }

  /* Si #nav-drawer está hidden, que no ocupe espacio */
  #nav-drawer[hidden] {
    display: none;
  }
}

@media (min-width: 992px) {

  /* En desktop, el drawer se vuelve menú en línea (como ya lo tenías) */
  .nav-toggle {
    display: none;
  }

  #nav-drawer {
    position: static;
    transform: none;
    width: auto;
    max-width: none;
    background: transparent;
    box-shadow: none;
    display: block;
  }

  #nav-drawer[hidden] {
    display: block;
  }

  /* asegura que se vea en desktop */
  #nav-drawer ul {
    margin: 0;
    /*padding: 0px 20px 0px 0px;*/
    flex-direction: row;
    padding: 0;
    gap: 1rem;
  }


  /*
  .nav-drawer-victor ul {
    gap: 0px !important;
  }*/

}

/* Accesibilidad: respeta reduce motion */
@media (prefers-reduced-motion: reduce) {

  .nav-drawer,
  .nav-backdrop,
  .nav-toggle .bar {
    transition: none;
  }
}

@media (min-width: 992px) {
  #nav-drawer[hidden] {
    display: block !important;
  }

  /* Gana al UA stylesheet */
}

/* Desktop: hover como lo tienes */
@media (min-width: 992px) {
  .submenu {
    position: relative;
  }

  .submenu-items {
    display: none;
  }

  .submenu:hover .submenu-items {
    display: block;
  }
}

/* Móvil: tap/click */
@media (max-width: 991.98px) {
  .submenu-items {
    display: none;
    margin-top: .5rem;
    padding-left: 1rem;
  }

  .submenu.open .submenu-items {
    display: block;
  }

  .submenu>span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  /* Indicador (flecha) */
  .submenu>span::after {
    content: "▾";
    transition: transform .2s ease;
  }

  .submenu.open>span::after {
    transform: rotate(180deg);
  }
}



@media (max-width: 991.98px) {
  .submenu-items {
    display: none;
  }

  .submenu.open .submenu-items {
    display: block;
  }

  .submenu>span {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
  }

  .submenu>span::after {
    content: "▾";
    transition: transform .2s ease;
  }

  .submenu.open>span::after {
    transform: rotate(180deg);
  }
}



.nav-claro {
  background-color: transparent;
  color: #060A3D;
  padding-bottom: 50px;
  width: 100%;
  max-width: 1000px;
  padding-top: 30px;
}


.nav-drawer-victor ul {
  background-color: #060A3D !important;
  color: #060A3D;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  /*align-items: center;*/
  border-radius: 100px 100px 100px 100px;
  /*padding-left: 20px;*/
  padding-right: clamp(30px, 50px, 70px);

}



.nav-claro ul {
  background-color: transparent;
  color: #060A3D;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  /*justify-content: center;*/
  justify-content: space-between;
  align-items: center;
}

.submenu span {
  color: white;
}

.submenu span:hover {
  cursor: pointer;
}


.nav-drawer-victor ul {
  border-radius: 100px 100px 100px 100px !important;
  /*padding-left: 20px !important;*/
  padding-right: clamp(40px, 60px, 80px) !important;
}

.subtituloEncuesta {
  font-size: clamp(2rem, 1.3rem, 8rem);
  text-align: center;
  line-height: 1.3;
  font-weight: bold;

}

.nav-drawer-victor ul li {
  /*padding: 20px 0px 20px 0px;*/
  display: flex;
  align-items: center;
}


.contenedor {
  padding-top: 50px;
}


.column1 {
  background-color: #004aad;
  position: relative;
}


.column1 .img {
  position: absolute;
  left: 30%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  /* ocupa todo el ancho del DIV */
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  /* horizontal */
  align-items: center;
  border-radius: 50px;
  /* mantiene proporción */
}

.img img {
  height: 100%;
  /* ocupa todo el ancho del DIV */

  object-fit: cover;
  /* mantiene proporción */
}


.column2 {

  container-type: inline-size;
}

.column2 h1,
.column2 h2,
.column2 h3,
.column2 h4 {
  /*color: black;*/
}

a {
  text-decoration: none !important;
  /*color: #1D74FF;*/
  color: white !important;
}

.imgContDerecha,
.imgContIzquierda {
  max-height: 150px;
  height: 150px;
  width: 100%;
  position: relative;
  overflow: visible;

}

.imgContDerecha img {
  height: 200%;
  max-width: 80%;
  position: absolute;
  right: 0;
  top: 0;
}

.contenedorExtrem .contenedorNaranja {
  overflow: visible;
  margin-bottom: 150px;
}

.imgContIzquierda img {
  height: 200%;
  max-width: 80%;
  position: absolute;
  left: 0;
  top: 0;
}

.cartaImgDerecha {
  max-height: 150px;
  height: 150px;
  padding: 0px !important;
}

.cartaImgIzquierda {
  max-height: 150px;
  height: 150px;
  padding: 0px !important;
}

.cartaImgIzquierda img,
.cartaImgDerecha img {
  max-height: 100%;
}

.cartaImgIzquierda p,
.cartaImgDerecha p {}

.textoCarta {
  padding: 20px;
  text-align: center;
  background-color: white;
}

.fondoBlanco {
  background-color: white;
  padding: 20px;
  text-align: center;
  color: #060A3D;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.contactanos {
  padding: 10px 15px;
  background-color: #FF6E00;
  color: white;
  border-radius: 5px;
}

.fade-in-left {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: fade-in-left 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}


.screen {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.mini-carrusel {
  margin-top: 1rem;
}

.testimonio-card {
  background: #fff;
  border-radius: 4px;
  /* sin padding si quieres, si no: padding: 1rem; */
  font-size: 0.9rem;
}

.testimonio-comillas {
  font-size: 2.5rem;
  line-height: 1;
  color: #1b2758;
  /* azul tipo BD */
  margin-bottom: 0.5rem;
}

.testimonio-texto {
  margin: 0 0 0.75rem 0;
}

.testimonio-nombre {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.85rem;
}


.mini-carrusel {
  width: 100%;
  margin-top: 10px;
}

.testimonio-card {
  text-align: left;
  padding: 10px 15px;
  font-size: 1rem;
  line-height: 1.35;
  max-width: 280px;
  margin: auto;
}

.comilla {
  font-size: 2rem;
  color: #1b2758;
  /* azul BD */
  line-height: 1;
  margin-bottom: 0px;
}

.texto {
  font-size: 1.2rem;
  margin: 0 0 8px 0;
}

.nombre {
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 1.3rem;
}


.mini-carrusel .testimonio-card {
  min-height: 220px;
  /* ajusta este valor según tu diseño */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  padding: 1rem;
}



.mini-carrusel .testimonio-card img {
  width: 60px;
  /* tamaño fijo del ícono */
  height: 60px;
  object-fit: cover;
  margin-bottom: .75rem;
  flex-shrink: 0;
  /* que nunca se deforme por falta de espacio */
}



.mini-carrusel .testimonio-card .texto {
  flex: 1;
  /* este se estira para llenar el espacio */
  margin-bottom: .5rem;
}


.mini-carrusel .testimonio-card .nombre {
  margin-top: auto;
  /* empuja el nombre hacia abajo */
  font-weight: 600;
}


.mini-carrusel .testimonio-card .texto {
  flex: 1;
  overflow: hidden;
}


.mini-carrusel .testimonio-card {
  height: 430px;
  /* AJUSTA este valor a lo que veas en pantalla */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  padding: 1rem;
  overflow: hidden;
  /* por si el texto se pasa */
}

.mini-carrusel .testimonio-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-bottom: .75rem;
  flex-shrink: 0;
}

.mini-carrusel .testimonio-card .texto {
  flex: 1;
  margin-bottom: .5rem;
}

.mini-carrusel .testimonio-card .nombre {
  margin-top: auto;
  font-weight: 600;
}



.referencia-toggle {
  cursor: pointer;

}

.referencias-wrapper {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height .4s ease, opacity .3s ease;
}



@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.bounce-left {
  -webkit-animation: bounce-left 0.8s both;
  animation: bounce-left 0.8s both;
}


@-webkit-keyframes bounce-left {
  0% {
    -webkit-transform: translateX(-48px);
    transform: translateX(-48px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }

  24% {
    opacity: 1;
  }

  40% {
    -webkit-transform: translateX(-26px);
    transform: translateX(-26px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  65% {
    -webkit-transform: translateX(-13px);
    transform: translateX(-13px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  82% {
    -webkit-transform: translateX(-6.5px);
    transform: translateX(-6.5px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  93% {
    -webkit-transform: translateX(-4px);
    transform: translateX(-4px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  25%,
  55%,
  75%,
  87%,
  98% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
}

@keyframes bounce-left {
  0% {
    -webkit-transform: translateX(-48px);
    transform: translateX(-48px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }

  24% {
    opacity: 1;
  }

  40% {
    -webkit-transform: translateX(-26px);
    transform: translateX(-26px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  65% {
    -webkit-transform: translateX(-13px);
    transform: translateX(-13px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  82% {
    -webkit-transform: translateX(-6.5px);
    transform: translateX(-6.5px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  93% {
    -webkit-transform: translateX(-4px);
    transform: translateX(-4px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  25%,
  55%,
  75%,
  87%,
  98% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
}

.navOscuro li a {
  color: #FFFFFF;
}


/* ====== MOBILE FIXES ====== */
@media (max-width: 991.98px) {

  /* Texto más legible */
  h1,
  h2,
  h3 {
    line-height: 1.1;
  }


  .hero .btn-bd {
    padding: 5%;
  }

  .column1 .img {
    position: static;
    display: flex;
    transform: translateY(0%);

    width: 90%;
    height: 80%;
    /* ocupa todo el ancho del DIV */

    border-radius: 50px;
    /* mantiene proporción */
  }

  .column2 {}

  .hero {
    padding: 30px;
    /* ocupa bien la pantalla en iOS/Android */
    min-height: 70vh;
    /* coloca la imagen abajo a la derecha y más grande */
    background-size: 70vw;
    background-position: 50% 100%;
    /* no uses padding si no quieres: ordena el grid arriba */
    display: grid;
    align-content: start;
    row-gap: .75rem;
  }







  .hero h1 {
    max-width: 100%;
    /* ya usas cqi, solo aseguro que no se pase */
    letter-spacing: 0;
  }

  .hero .indice {
    font-size: .4em;
    /* evita que el ® salte de línea */
  }

  .hero h2 {
    max-width: 100%;
    /* <-- clave */
    line-height: 1.25;
    margin-top: .25rem;
    font-size: 2rem;
  }

  .action-btns {
    margin-top: .5rem;
  }

  .hero .btn-bd {
    display: inline-block;
  }

  /* Logo del nav un poco más chico para que no coma altura */
  nav .logo img {
    max-width: 84px;
  }
}

/* teléfonos muy estrechos */
@media (max-width: 400px) {
  .hero {
    background-size: 78vw;
    background-position: 110% 92%;
  }

  .hero h2 {
    font-size: clamp(1rem, 4.2vw, 1.15rem);
  }
}

.titulo {
  font-size: clamp(2rem, 1rem, 10rem);
  text-align: center;
  line-height: 1.3;
}




p,
.listadoTexto {
  font-size: clamp(1.4rem, 1rem, 8rem);
  line-height: 1;
}

.referencias {
  font-size: clamp(1rem, .5rem, 8rem) !important;
  line-height: 1.3;
}

.textoNormal {
  font-size: clamp(1.4rem, 1rem, 8rem);
  line-height: 1.5;
}

.carta {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  min-height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carta p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.cartaOscuraComplemento {
  background-color: white;
  color: #060A3D;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  min-height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cartaBlanco {
  background-color: white;
  color: #060A3D;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  min-height: auto;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
}

.cartaBlanco p {
  margin: 0;
  font-size: 1.2rem;
}

.cartaOscura {
  background-color: #1D74FF;
  color: white;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  min-height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cartaOscura p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.icono {
  padding: 10px;
  font-size: 2rem;
}

.degradadoBlanco {
  background-image:
    linear-gradient(0deg, #F8F4F1 0%, rgba(248, 244, 241, 0) 20%),
    url("https://bdvacutainer.bd-ids.com/images/homeImagen1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  min-height: 400px;
  ;
}

.tituloBlanco {
  font-size: clamp(2rem, 3rem, 10rem);
  text-align: center;
  line-height: 1.3;
  color: white;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.paralax {
  background-image: url("tu-imagen.jpg");
  background-attachment: fixed;
  /* efecto parallax */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 70vh;
  /* ajustá según necesites */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  /* si le ponés texto encima */
  text-align: center;
}

/* From Uiverse.io by Spacious74 */
.laptop {
  transform: scale(0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.screen {
  border-radius: 20px;
  box-shadow: inset 0 0 0 2px #c8cacb, inset 0 0 0 10px #000;
  height: 318px;
  width: 518px;
  margin: 0 auto;
  padding: 9px 9px 23px 9px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #060A3D 0%, #044ED7 100%);

  transform-style: preserve-3d;
  transform: perspective(1900px) rotateX(-88.5deg);
  transform-origin: 50% 100%;
  animation: open 4s infinite alternate;
  flex-direction: column;
}

@keyframes open {
  0% {
    transform: perspective(1900px) rotateX(-88.5deg);
  }

  100% {
    transform: perspective(1000px) rotateX(0deg);
  }
}

.screen::before {
  content: "";
  width: 518px;
  height: 12px;
  position: absolute;
  background: linear-gradient(to bottom,
      rgba(4, 78, 215, .9) 0%,
      rgba(4, 78, 215, .45) 55%,
      rgba(4, 78, 215, 0) 100%);
  top: -3px;
  transform: rotateX(90deg);
  border-radius: 5px 5px;
}

.text {
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 0 5px #fff;
  font-size: clamp(1.4rem, 1rem, 8rem);
}

.header {
  width: 100px;
  height: 12px;
  position: absolute;
  background-color: #000;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -0%);
  border-radius: 0 0 6px 6px;
}

.screen::after {
  background: linear-gradient(to bottom, #272727, #0d0d0d);
  border-radius: 0 0 20px 20px;
  bottom: 2px;
  content: "";
  height: 24px;
  left: 2px;
  position: absolute;
  width: 514px;
}

.keyboard {
  background: radial-gradient(circle at center, #e2e3e4 85%, #a9abac 100%);
  border: solid #a0a3a7;
  border-radius: 2px 2px 12px 12px;
  border-width: 1px 2px 0 2px;
  box-shadow: inset 0 -2px 8px 0 #6c7074;
  height: 24px;
  margin-top: -10px;
  position: relative;
  width: 620px;
  z-index: 9;
}

.keyboard::after {
  background: #e2e3e4;
  border-radius: 0 0 10px 10px;
  box-shadow: inset 0 0 4px 2px #babdbf;
  content: "";
  height: 10px;
  left: 50%;
  margin-left: -60px;
  position: absolute;
  top: 0;
  width: 120px;
}

.keyboard::before {
  background: 0 0;
  border-radius: 0 0 3px 3px;
  bottom: -2px;
  box-shadow: -270px 0 #272727, 250px 0 #272727;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -10px;
  position: absolute;
  width: 40px;
}

/* === RESPONSIVE PATCH (drop-in) === */

/* Contenedor fluido: limita el ancho máximo y centra */
.laptop {
  width: min(92vw, 775px);
  margin-inline: auto;
  /* opcional: ajusta la escala global del componente */
  transform: none;
  /* anulamos el scale(0.8) fijo */
}

/* Pantalla: ancho relativo, alto por proporción y paddings adaptativos */
.screen {
  width: calc(518 / 620 * 100%);
  /* 518px de 620px de base */
  aspect-ratio: 518 / 318;
  /* alto responsivo sin fijar px */
  height: auto;
  padding: clamp(5px, 1.2vw, 9px) clamp(5px, 1.2vw, 9px) clamp(12px, 2.4vw, 23px);
  /* 3D más suave en pantallas pequeñas */
  transform-origin: 50% 100%;
  transform: perspective(clamp(600px, 160vw, 1900px)) rotateX(var(--tilt, -88.5deg));
  animation-duration: 6s;
  /* un poco más lento */
}

/* Bisel superior y barra inferior ajustables */
.screen::before {
  width: 100%;
  height: clamp(6px, 1.5vw, 12px);
  top: calc(-1 * clamp(2px, 0.6vw, 3px));
  border-radius: 5px;
}

.screen::after {
  left: clamp(1px, 0.3vw, 2px);
  right: clamp(1px, 0.3vw, 2px);
  bottom: clamp(1px, 0.3vw, 2px);
  height: clamp(14px, 3.6vw, 24px);
  width: auto;
  /* que respete left/right */
  border-radius: 0 0 20px 20px;
}

/* Cámara/“header” centrado y escalable */
.header {
  width: clamp(60px, 16%, 100px);
  height: clamp(6px, 1.5vw, 12px);
  top: clamp(6px, 1.5vw, 10px);
}

/* Teclado ocupa el 100% del contenedor y escala en altura */
.keyboard {
  width: 100%;
  /* en vez de 620px fijos */
  height: clamp(14px, 3.5vw, 24px);
  margin-top: clamp(-6px, -1.6vw, -10px);
  /* mantiene el “encastre” */
}

/* Asa central del teclado */
.keyboard::after {
  height: clamp(6px, 1.6vw, 10px);
  width: clamp(80px, 20%, 120px);
  left: 50%;
  transform: translateX(-50%);
}

/* “Patas” decorativas: desactiva en móviles para evitar descuadres */
@media (max-width: 520px) {
  .keyboard::before {
    box-shadow: none;
  }
}

/* Accesibilidad: si el usuario pide menos animación, quítala */
@media (prefers-reduced-motion: reduce) {
  .screen {
    animation: none;
    transform: none;
  }
}

/* Detener el loop por defecto */
.screen {
  animation: none !important;
}

/* Animar solo cuando agreguemos la clase */
.screen.is-opening {
  animation: open 1.1s ease-out forwards;
}

/* Estado final “abierta” sin animación */
.screen.is-open {
  transform: perspective(1000px) rotateX(0deg) !important;
}

@media (prefers-reduced-motion: reduce) {
  .screen {
    animation: none !important;
    transform: perspective(1000px) rotateX(0deg) !important;
  }
}

/* ==== ACC CARDS (pegar en CSS del tema o en el módulo) ==== */
.ACC-wrap {
  margin: 0 auto;
  max-width: 1200px;
}

.ACC-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: clamp(12px, 2vw, 20px);
  margin: 0 12px;
}

@media (max-width: 980px) {
  .ACC-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 640px) {
  .ACC-grid {
    grid-template-columns: 1fr;
  }
}

.ACC-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8eef7;
  box-shadow: 0 6px 20px rgba(12, 38, 89, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  /* sin padding por tu regla */
  gap: 14px;
  /* separación interna sin padding */
}

.ACC-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(12, 38, 89, .14);
  border-color: #bfd3ff;
}

.ACC-ico {
  margin: 18px 0 0 0;
}

.ACC-ico img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .08));
  margin: 0 auto;
}

.ACC-title {
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
  color: #183a72;
  margin: 6px 14px 0 14px;
  font-size: clamp(18px, 2.1vw, 22px);
  min-height: 80px;
}

.ACC-txt {
  color: #3f557a;
  text-align: center;
  margin: 0 18px 4px 18px;
  font-size: 14px;
  line-height: 1.35;
  min-height: 50px;
}

.ACC-btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  margin: 6px 0 18px 0;
  border-radius: 12px;
  border: 1px solid #2a6bd4;
  padding: 0;
  /* no padding, usamos alto/width fijos */
  width: 120px;
  height: 38px;
  line-height: 38px;
  font-weight: 700;
  letter-spacing: .2px;
  color: #fff;
  background: #044ED7;
  box-shadow: 0 6px 14px rgba(42, 107, 212, .25);
  transition: filter .18s ease, transform .18s ease;
}

.ACC-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.ACC-btn:focus {
  outline: 2px solid #88b5ff;
  outline-offset: 2px;
}

/* Quita el !important aquí para no bloquear overrides */
.screen {
  animation: none;
}

/* Fuerza la animación cuando agregamos la clase */
.screen.is-opening {
  animation: open 1.1s ease-out forwards !important;
}

/* Estado final abierta */
.screen.is-open {
  transform: perspective(1000px) rotateX(0deg) !important;
}

.logoLap {
  max-width: 150px;
  width: 100%;

}

/* Perspectiva en el contenedor (más estable en Chrome) */
.laptop {
  perspective: clamp(600px, 160vw, 1900px);
  -webkit-perspective: clamp(600px, 160vw, 1900px);
}

/* Estado base y hints de rendimiento */
.screen {
  /* Antes usabas: transform: perspective(...) rotateX(...);  */
  transform: translateZ(0) rotateX(-88.5deg);
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  animation: none;
  /* sin !important */
}

/* Solo animamos rotateX */
@keyframes open {
  from {
    transform: translateZ(0) rotateX(-88.5deg);
  }

  to {
    transform: translateZ(0) rotateX(0deg);
  }
}

.screen.is-opening {
  animation: open 1.1s ease-out forwards !important;
}

.screen.is-open {
  transform: translateZ(0) rotateX(0deg) !important;
}

@media (prefers-reduced-motion: reduce) {
  .screen {
    animation: none !important;
    transform: translateZ(0) rotateX(0deg) !important;
  }
}

.checkbox-animado-container {
  display: flex;
  align-items: center;
}

.checkbox-animado-wrapper {
  margin-right: 10px;
  /* Espacio entre el checkbox y el texto */
}

.checkbox-animado-wrapper label {
  color: black;
  /* Mueve el color al CSS */
  font-size: 20px;
}

.checkbox-animado-texto label {
  color: black;
  /* Mueve el color al CSS */
  margin-left: 0;
  /* Asegúrate de que no haya margen izquierdo adicional */
  font-size: 14px;
}

.checkbox-animado-wrapper *,
.checkbox-animado-wrapper *::before,
.checkbox-animado-wrapper *::after {
  box-sizing: border-box;
}

.checkbox-animado-wrapper label {
  display: block;
  width: 35px;
  height: 35px;
  cursor: pointer;
}

.checkbox-animado-wrapper input {
  visibility: hidden;
  display: none;
}

.checkbox-animado-wrapper input:checked~.checkbox-animado {
  transform: rotate(45deg);
  width: 14px;
  margin-left: 12px;
  border-color: #044ED7;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 0;
}

.checkbox-animado-wrapper .checkbox-animado {
  display: block;
  width: inherit;
  height: inherit;
  border: 3px solid #044ED7;
  border-radius: 6px;
  transition: all 0.375s;
}

.marketo-form {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
}

.marketo-form h1 {
  width: 100%;
  color: white;
  text-align: center;
}

.marketo-form input[type="text"],
.marketo-form input[type="email"],
.marketo-form input[type="submit"],
.marketo-form select {
  width: calc(50% - 10px);
  margin: 5px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 20px;
}

.marketo-form input[type="submit"] {
  background-color: #FF6E00;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.marketo-form input[type="submit"]:hover {
  background-color: #005bb5;
}

.marketo-form .disclaimer {
  width: 100%;
  margin: 10px 0;
  color: black;
  font-size: 14px;
}

.marketo-form .disclaimer a {
  color: black;
  text-decoration: underline;
}

.marketo-form .checkbox-container {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.marketo-form .checkbox-container input[type="checkbox"] {
  margin-right: 10px;
}

.marketo-form .submit-container {
  width: 100%;
  text-align: center;
}

@media (max-width: 600px) {

  .marketo-form input[type="text"],
  .marketo-form input[type="email"],
  .marketo-form input[type="submit"],
  .marketo-form select {
    width: 100%;
  }
}

.neon-checkbox {
  --primary: #044ED7;
  --primary-dark: #060A3D;
  --primary-light: #1D74FF;
  --size: 30px;
  position: relative;
  width: var(--size);
  height: var(--size);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.neon-checkbox input {
  display: none;
}

.neon-checkbox__frame {
  position: relative;
  width: 100%;
  height: 100%;
}

.neon-checkbox__box {
  position: absolute;
  inset: 0;
  background: #F8F4F1;
  border-radius: 4px;
  border: 2px solid var(--primary-dark);
  transition: all 0.4s ease;
}

.neon-checkbox__check-container {
  position: absolute;
  inset: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.neon-checkbox__check {
  width: 80%;
  height: 80%;
  fill: none;
  stroke: var(--primary);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  transform-origin: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.neon-checkbox__glow {
  position: absolute;
  inset: -2px;
  border-radius: 6px;
  background: var(--primary);
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.2);
  transition: all 0.4s ease;
}

.neon-checkbox__borders {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  overflow: hidden;
}

.neon-checkbox__borders span {
  position: absolute;
  width: 40px;
  height: 1px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.neon-checkbox__borders span:nth-child(1) {
  top: 0;
  left: -100%;
  animation: borderFlow1 2s linear infinite;
}

.neon-checkbox__borders span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 1px;
  height: 40px;
  animation: borderFlow2 2s linear infinite;
}

.neon-checkbox__borders span:nth-child(3) {
  bottom: 0;
  right: -100%;
  animation: borderFlow3 2s linear infinite;
}

.neon-checkbox__borders span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 1px;
  height: 40px;
  animation: borderFlow4 2s linear infinite;
}

.neon-checkbox__particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  top: 50%;
  left: 50%;
  box-shadow: 0 0 6px var(--primary);
}

.neon-checkbox__rings {
  position: absolute;
  inset: -20px;
  pointer-events: none;
}

.neon-checkbox__rings .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--primary);
  opacity: 0;
  transform: scale(0);
}

.neon-checkbox__sparks span {
  position: absolute;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0;
}

/* Hover Effects */
.neon-checkbox:hover .neon-checkbox__box {
  border-color: var(--primary);
  transform: scale(1.05);
}

/* Checked State */
.neon-checkbox input:checked~.neon-checkbox__frame .neon-checkbox__box {
  border-color: var(--primary);
  background: rgba(0, 255, 170, 0.1);
}

.neon-checkbox input:checked~.neon-checkbox__frame .neon-checkbox__check {
  stroke-dashoffset: 0;
  transform: scale(1.1);
}

.neon-checkbox input:checked~.neon-checkbox__frame .neon-checkbox__glow {
  opacity: 0.2;
}

.neon-checkbox input:checked~.neon-checkbox__frame .neon-checkbox__borders span {
  opacity: 1;
}

/* Particle Animations */
.neon-checkbox input:checked~.neon-checkbox__frame .neon-checkbox__particles span {
  animation: particleExplosion 0.6s ease-out forwards;
}

.neon-checkbox input:checked~.neon-checkbox__frame .neon-checkbox__rings .ring {
  animation: ringPulse 0.6s ease-out forwards;
}

.neon-checkbox input:checked~.neon-checkbox__frame .neon-checkbox__sparks span {
  animation: sparkFlash 0.6s ease-out forwards;
}

/* Animations */
@keyframes borderFlow1 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(200%);
  }
}

@keyframes borderFlow2 {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(200%);
  }
}

@keyframes borderFlow3 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-200%);
  }
}

@keyframes borderFlow4 {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-200%);
  }
}

@keyframes particleExplosion {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translate(calc(-50% + var(--x, 20px)),
        calc(-50% + var(--y, 20px))) scale(0);
    opacity: 0;
  }
}

@keyframes ringPulse {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes sparkFlash {
  0% {
    transform: rotate(var(--r, 0deg)) translateX(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: rotate(var(--r, 0deg)) translateX(30px) scale(0);
    opacity: 0;
  }
}

/* Particle Positions */
.neon-checkbox__particles span:nth-child(1) {
  --x: 25px;
  --y: -25px;
}

.neon-checkbox__particles span:nth-child(2) {
  --x: -25px;
  --y: -25px;
}

.neon-checkbox__particles span:nth-child(3) {
  --x: 25px;
  --y: 25px;
}

.neon-checkbox__particles span:nth-child(4) {
  --x: -25px;
  --y: 25px;
}

.neon-checkbox__particles span:nth-child(5) {
  --x: 35px;
  --y: 0px;
}

.neon-checkbox__particles span:nth-child(6) {
  --x: -35px;
  --y: 0px;
}

.neon-checkbox__particles span:nth-child(7) {
  --x: 0px;
  --y: 35px;
}

.neon-checkbox__particles span:nth-child(8) {
  --x: 0px;
  --y: -35px;
}

.neon-checkbox__particles span:nth-child(9) {
  --x: 20px;
  --y: -30px;
}

.neon-checkbox__particles span:nth-child(10) {
  --x: -20px;
  --y: 30px;
}

.neon-checkbox__particles span:nth-child(11) {
  --x: 30px;
  --y: 20px;
}

.neon-checkbox__particles span:nth-child(12) {
  --x: -30px;
  --y: -20px;
}

/* Spark Rotations */
.neon-checkbox__sparks span:nth-child(1) {
  --r: 0deg;
  top: 50%;
  left: 50%;
}

.neon-checkbox__sparks span:nth-child(2) {
  --r: 90deg;
  top: 50%;
  left: 50%;
}

.neon-checkbox__sparks span:nth-child(3) {
  --r: 180deg;
  top: 50%;
  left: 50%;
}

.neon-checkbox__sparks span:nth-child(4) {
  --r: 270deg;
  top: 50%;
  left: 50%;
}

/* Ring Delays */
.neon-checkbox__rings .ring:nth-child(1) {
  animation-delay: 0s;
}

.neon-checkbox__rings .ring:nth-child(2) {
  animation-delay: 0.1s;
}

.neon-checkbox__rings .ring:nth-child(3) {
  animation-delay: 0.2s;
}

footer {
  max-width: 100%;
  width: 100%;
}

.plecas {
  min-height: 50px;
  border-radius: 0px 1000px 1000px 0px;
  margin-left: -50px;
}

.plecadeepblue {
  background-color: #9199D8;
  z-index: 3;
}

.plecaboosted {
  background-color: #044ED7;
  z-index: 2;
}

.plecadeepbright {
  background-color: #FF6E00;
  z-index: 1;
}

footer .row {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

footer p {
  color: white;
  line-height: 1.3;
  text-align: center;
  font-weight: normal;
  font-size: 1rem;
}

.footeroscurso {
  background-color: #060A3D;
  color: white;
}

.fade-in-top,
.fade-in-left,
.fade-in-right,
.bounce-left,
.scale-in-ver-bottom {
  opacity: 0;
  transition: all 0.8s ease;
}

/* Ejemplo: */
.fade-in-top.animar {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left.animar {
  opacity: 1;
  transform: translateX(0);
}

.seleccionado {
  color: #FF6E00 !important;
}

.bdmetro {
  --c-start: #0b1b3b;
  --c-pre: #044ED7;
  --c-ana: #FF6E00;
  --c-post: #9199D8;
  --rail: #eef1f7;
  --rail-on: #cdd6e6;
  --txt: #060A3D;
  --muted: #6b7488
}

.bdmetro {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px
}

/* Barra de etapa */
.bdmetro-stageBar {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center
}

.bdmetro-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e3e8f2;
  font-weight: 800
}

.bdmetro-dotS {
  width: 12px;
  height: 12px;
  border-radius: 50%
}

.bdmetro-stepTitle {
  font-weight: 900;
  letter-spacing: .2px
}

.bdmetro-sub {
  font-size: 12px;
  color: var(--muted);
  margin-left: 6px
}

/* Lienzo del mapa */
.bdmetro-map {
  position: relative;
  width: 100%;
  min-height: 560px
}

.bdmetro-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bdmetro-cursor {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-start);
  box-shadow: 0 0 0 3px rgba(11, 27, 59, .12);
  opacity: 0;
  transform: translate(-50%, -50%)
}

/* Nodos */
.bdmetro-nodes {
  position: absolute;
  inset: 0
}

.bdmetro-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center
}

.bdmetro-dot {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
  transition: transform .28s ease, box-shadow .28s ease
}

.bdmetro-node[data-stage="pre"] .bdmetro-dot {
  background: var(--c-pre)
}

.bdmetro-node[data-stage="ana"] .bdmetro-dot {
  background: var(--c-ana)
}

.bdmetro-node[data-stage="post"] .bdmetro-dot {
  background: var(--c-post)
}

.bdmetro-node[data-stage="start"] .bdmetro-dot {
  background: var(--c-start)
}

.bdmetro-node.is-active .bdmetro-dot {
  transform: scale(1.16);
  box-shadow: 0 0 0 10px var(--glow, rgba(0, 0, 0, .12)), 0 10px 26px rgba(0, 0, 0, .22);
  animation: bdpulse 1.6s ease-in-out infinite alternate
}

@keyframes bdpulse {
  from {
    transform: scale(1.12)
  }

  to {
    transform: scale(1.18)
  }
}

.bdmetro-ico {
  width: 28px;
  height: 28px
}

.bdmetro-ico svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: #fff;
  stroke-width: 2
}

.bdmetro-label {
  max-width: 160px;
  font-weight: 800;
  color: var(--txt);
  line-height: 1.15
}

.bdmetro-meta {
  font-size: 12px;
  color: var(--muted);
  text-align: center
}

/* Botón único */
.bdmetro-ctrl {
  display: flex;
  justify-content: center
}

.bdmetro-next {
  border: 1px solid #e1e6f0;
  background: var(--c-start);
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: .2px;
  padding: 10px 16px;
  transition: transform .12s ease, box-shadow .2s ease;
  display: none;
}

.bdmetro-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .12)
}


.imgDegradadaBD {
  position: relative;
  display: inline-block;
  /* o block si quieres que ocupe todo el ancho */
  overflow: hidden;
}

.imgDegradadaBD img {
  display: block;
  width: 100%;
  /* respeta tu w-100 */
  height: auto;
}

.imgDegradadaBD::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;

  background:
    linear-gradient(to top, #F8F4F1 0%, transparent 100%) bottom,
    /* desde abajo */
    linear-gradient(to bottom, #F8F4F1 0%, transparent 100%) top,
    /* desde arriba */
    linear-gradient(to left, #F8F4F1 0%, transparent 100%) right,
    /* desde derecha */
    linear-gradient(to right, #F8F4F1 0%, transparent 100%) left;
  /* desde izquierda */

  background-size: 100% 10%, 100% 10%, 10% 100%, 10% 100%;
  background-repeat: no-repeat;
}

/* CONTENEDOR DEL CÍRCULO */
.circle-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  /* SIEMPRE CUADRADO */
  min-width: 50px;
  max-width: 200px;
}

.circle-container>* {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 10px solid #1D74FF;
}

.circle {
  background: #9199D8;
}

/* WAVES (SVG repetido) */
.wave {
  background: url("images/wave.svg") repeat-x;
  opacity: 0.8;
}

.wave-below {
  background-color: #3b46d3;
}

/* POSICIONES (niveles de agua) */
.wave._0 {
  background-position: 0% 110%;
}

.wave-below._0 {
  clip-path: polygon(0% 110%, 0% 110%, 110% 110%, 110% 110%);
}

.wave._25 {
  background-position: 0% 87%;
}

.wave-below._25 {
  clip-path: polygon(0% 110%, 0% 80%, 110% 80%, 110% 110%);
}

.wave._50 {
  background-position: 0% 57%;
}

.wave-below._50 {
  clip-path: polygon(0% 110%, 0% 58%, 110% 58%, 110% 110%);
}

.wave._75 {
  background-position: 0% 30%;
}

.wave-below._75 {
  clip-path: polygon(0% 110%, 0% 35%, 110% 35%, 110% 110%);
}

.wave._100 {
  background-position: 0% 5%;
}

.wave-below._100 {
  clip-path: polygon(0% 110%, 0% 15%, 110% 15%, 110% 110%);
}

/* ANIMACIÓN DEL LLENADO */
@keyframes fill-wave {
  from {
    background-position: -1200px 110%;
  }
}

@keyframes fill-below {
  from {
    clip-path: polygon(0% 110%, 0% 110%, 110% 110%, 110% 110%);
  }
}

/* ANIMACIÓN DEL MOVIMIENTO DE OLAS */
@keyframes wave-0 {
  to {
    background-position: 1200px 110%;
  }
}

@keyframes wave-25 {
  to {
    background-position: 1200px 87%;
  }
}

@keyframes wave-50 {
  to {
    background-position: 1200px 57%;
  }
}

@keyframes wave-75 {
  to {
    background-position: 1200px 30%;
  }
}

@keyframes wave-100 {
  to {
    background-position: 1200px 5%;
  }
}

/* APLICAR ANIMACIONES */
:root {
  --ease-in: cubic-bezier(0.58, 0.42, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.42, 0.58);
}

.wave {
  animation-name: fill-wave, wave-0;
  animation-duration: 5s, 7s;
  animation-delay: 0s, 5s;
  animation-fill-mode: forwards, none;
  animation-iteration-count: 1, infinite;
  animation-timing-function: var(--ease-in), var(--ease-out);
}

.wave._25 {
  animation-name: fill-wave, wave-25;
}

.wave._50 {
  animation-name: fill-wave, wave-50;
}

.wave._75 {
  animation-name: fill-wave, wave-75;
}

.wave._100 {
  animation-name: fill-wave, wave-100;
}

/* Distintos tiempos para las capas (efecto realista) */
.wave:nth-child(2) {
  animation-duration: 5s, 11s;
}

.wave:nth-child(3) {
  animation-duration: 5s, 13s;
}

.wave-below {
  animation: 5s var(--ease-in) forwards fill-below;
}

.wave-below._50 {
  animation: 7s -2s var(--ease-in) forwards fill-below;
}

.wave-below._75,
.wave-below._100 {
  animation: 6s -1s var(--ease-in) forwards fill-below;
}

.subtitulo {
  font-size: clamp(1.7rem, 1rem, 8rem);
  text-align: center;
  line-height: 1.3;
}

.subtituloCartaBlanca {
  font-size: clamp(1.7rem, 1rem, 8rem) !important;
  text-align: center;
  line-height: 1.3;
}

.desc {
  font-size: clamp(.8rem, 2vw, 1rem);
  text-align: center;
  line-height: 1.5;
  color: white;
  margin-bottom: 0px;
}

.desc2 {
  font-size: clamp(.8rem, 3vw, 2rem);
  text-align: center;
  line-height: 1.5;
  color: white;
}

.centradoCirculo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.fade-4-bordes {
  position: relative;
  display: inline-block;
}

.fade-4-bordes img {
  display: block;
  width: 100%;
}

.fade-4-bordes::after {
  content: "";
  position: absolute;
  inset: -1px;
  /* ANTES tenías inset: 0; */
  pointer-events: none;

  background:
    linear-gradient(to bottom, white 0%, transparent 100%) top,
    linear-gradient(to top, white 0%, transparent 100%) bottom,
    linear-gradient(to right, white 0%, transparent 100%) left,
    linear-gradient(to left, white 0%, transparent 100%) right;
  background-size: 100% 10%, 100% 10%, 10% 100%, 10% 100%;
  background-repeat: no-repeat;
}

.referencia-toggle {
  cursor: pointer;

}

.referencias-wrapper {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height .4s ease, opacity .3s ease;
}



#nav-drawer .submenu {
  position: relative !important;
}

/* Estilos del submenú */
#nav-drawer .submenu-items {
  list-style: none !important;
  position: absolute !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  top: 100% !important;
  left: 0 !important;
  width: max-content !important;
  display: none !important;
  /* oculto por defecto */
  border-radius: 0px !important;
  max-width: 300px !important;
}


@media (min-width: 992px) {
  #nav-drawer .submenu-items li:hover {
    background-color: #044ED7 !important;
  }

  #nav-drawer .submenu-items li a {
    display: block !important;
    padding: 8px 15px !important;
  }

  #nav-drawer .submenu:hover .submenu-items {
    display: block !important;
    /* aparece al pasar el mouse */
  }


}

.bordeRedeondeado{
  border-radius: 20px;

}