html, body { overflow-x: hidden; }
.btn-whatsapp-chat {
  all: unset; /* elimina estilos nativos solo en este botón */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 16px 10px; /* equilibrio vertical/horizontal */
  border-radius: 50px; /* estilo pastilla */

  background-color: #25d366;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;

  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);

  line-height: 1;
  width: auto; /* evita que se expanda */
}

.btn-whatsapp-chat:hover {
  background-color: #20c057;
  transform: scale(1.05);
  opacity: 0.9;
}

.btn-whatsapp-chat i {
  font-size: 18px;
}

    .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0px 16px;
  border-radius: 50px; /* pastilla */
  background-color: #25d366;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  border: none;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
}

.btn-whatsapp i {
  font-size: 18px;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}


    .form-title {
  text-align: center;
  margin-bottom: 20px;
  color: #0288d1;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
}

.formulario {
  max-width: 670px; 
  margin: 0 auto; /* asegura que quede al centro */
}

.btn-get-contact {
  width: 100%;
  max-width: 670px;
  height: 44px;
  border-radius: 999px;
  background: #00A3FF;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-get-contact:hover {
  background: #0288d1;
}
.terms-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4; /* más respirable */
  letter-spacing: 0;
  text-align: justify;
  color: #666; /* un gris un poco más legible */
  margin: 0; 
}

.terms-text a {
  color: #0288d1; /* azul corporativo */
  text-decoration: underline;
  font-weight: 500;
}

.form-container1 {

  margin-top: 5%!important;
  width: 766px;          /* ancho fijo */
  height: 674px;         /* alto fijo */
  background: #FFFFFF;   /* fondo blanco */
  opacity: 1;
  padding: 24px 20px;    /* equivalente a Spacing/5 aprox. */
  border-radius: 1rem;   /* rounded-4 -> 16px (equivalente) */
  display: flex;
  flex-direction: column;
  gap: 24px;             /* espacio entre hijos */
  margin: 0 auto;        /* centrado horizontal */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* opcional para que resalte */
}
.form-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;   /* SemiBold */
  font-size: 24px;
  line-height: normal;
  text-align: center;
  margin-bottom: 8px;
}

.form-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  text-align: center;
  margin-bottom: 24px;
  color: #555; /* opcional para contraste */
}

.custom-input {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-align: justify;
  padding: 10px 12px;
}


.fake-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: -1px; /* espacio entre icono y texto */
  font-family: sans-serif;
  cursor: pointer;
}

.fake-select .selected {

  padding: 6px 28px 6px 10px;
  background: #fff;
  color: #000000; /* 👈 color que pediste */
  position: relative;

   
  /* Tus estilos */
  font-family: 'Poppins', sans-serif;
  font-weight: 600;         /* SemiBold */
  font-style: normal;       /* Regular */
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
}

/* flechita ▼ */
.fake-select .selected::after {
  content: "\25BE"; /* ▾ */
  font-size: 14px;
  color: #646464;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}


.fake-select .options {
  display: none;
  position: absolute;
  top: 100%;
  left: 26px; /* se alinea con la cajita, dejando el 🌐 fuera */
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  z-index: 999;
  min-width: 100px;
}

.fake-select .options li {
  list-style: none;
}

.fake-select .options a {
  display: block;
  padding: 6px 10px;
  text-decoration: none;
  color: #646464;
}

.fake-select .options a:hover {
  background: #f0f0f0;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100px;
}

.logo-track {
  display: flex;
  width: max-content; /* que la pista mida lo que deba */
  animation: scroll 20s linear infinite;
}

.logo-track img {

  margin: 0 30px;
  object-fit: contain;
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* se mueve la mitad (ya que está duplicado) */
}

@media (max-width: 768px) {
.valores-section{padding-bottom: 48px!important;}
.socios-text {
    font-size: 14px!important;}
.socios-title {
    font-size: 32px!important;}
.valores-section h2 {
    font-size: 32px!important;}
.acerca-container p {font-size: 14px!important;}
.acerca-container h2 {
    font-size: 32px!important; padding-bottom: 24px !important;}
.acerca{    padding: 0px 0!important;}
.valores-grid{padding-left: 16px!important;
    padding-right: 16px!important;}
.se{padding-top:108px!important;}
.gracias{    width: 55%!important;}
.gracias1{           width: 80% !important;
        padding-top: 24px !important;
        padding-bottom: 48px !important;}
.box-new{    margin-top: 48px!important;}
.btn-whatsapp-chat{margin-bottom: 0px!important;}
.logo-track img { width:40%!important; }
.wa-widget .wa-bubble {display: none!important;}
}


.wa-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: fit-content;
  background: none;
  padding: 0;
  border-radius: 100px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  position: fixed;
  bottom: 105px;
  right: 15px;
  z-index: 9999;
  cursor: pointer;
  border: 2px solid #cadefa9e;
  bottom: 43%;
}
.wa-widget .wa-bubble {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    padding: 74px 14px 25px 14px;
    margin: 0;
    background-color: #ffffff;
    color: #11a3eb;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    border-radius: 30px 30px 30px 30px; /* parte inferior redondeada visualmente arriba */
    user-select: none;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* opcional para darle profundidad */
}


.wa-widget .wa-icon {
  position: fixed;
  bottom: 84px;
  width: 105px;
  height: 105px;
  padding: 10px;
  margin: 0;
  bottom: 40%;
  display: block;
  user-select: none;
  z-index: 99999;
}

.pulsate-bck {
  animation: pulsate-bck 0.5s ease-in-out infinite both;
}

@keyframes pulsate-bck {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {.wa-widget{bottom: 10%;}
  .wa-widget .wa-icon {
  position: fixed;
  bottom: 84px;
  width: 105px;
  height: 105px;
  padding: 10px;
  margin: 0;
  bottom: 7%;
  display: block;
  user-select: none;
  z-index: 99999;
}
}
/* Links */
    .custom-link {
      font-family: "Poppins", sans-serif;
      font-weight: 600;
      font-size: 14px;
      line-height: 100%;
      letter-spacing: 0;
      color: #000 !important;
      margin: 0 8px;
    }

    /* Botón Ingresar */
    .custom-ingresar {
      font-size: 14px;
      width: 140px;
      height: 45px;
      padding: 11px;
      border-radius: .5rem; /* rounded-3 */
      border: 1px solid #00A3FF;
      color: #00A3FF;
      font-family: "Poppins", sans-serif;
      font-weight: 600;
      background: transparent;
    }

    /* Botón Pruébalo gratis */
    .custom-prueba {
      width: 140px;
      height: 45px;
      padding: 11px;
      font-size: 14px;
      border-radius: .5rem; /* rounded-3 */
      background-color: #00A3FF;
      color: #fff;
      font-family: "Poppins", sans-serif;
      font-weight: 600;
      border: none;
    }

    .custom-prueba:hover {
      background-color: #008ed9;
    }
    .btn-ingresar, .btn-prueba {
  font-family: "Poppins", sans-serif;
  font-weight: 600;       /* SemiBold */
  font-style: normal;     /* SemiBold va en el peso, no en font-style */
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
}
.navbar-custom-shadow {
    box-shadow: 0px 2px 3px 0px rgba(0, 123, 255, 0.2) !important;
}
.container-fluid-custom {
  height: 61px;
  display: flex;
  gap: 20px; /* o ajusta según necesites */
}
@media (max-width: 992px) {
  .container-fluid-custom {
    gap: 0; /* en mobile mejor quitarlo */
  }
}


  @media (max-width: 991.98px) { /* aplica solo en mobile/tablet */
  #navbarNav {
    background: #fff;          /* fondo sólido (puede ser otro color) */
    padding: 1rem;             /* aire adentro */
    border-radius: 12px;       /* opcional, para que no se vea tan cuadrado */
    width: 100%;               /* ocupar todo el ancho */
  }

  #navbarNav .nav-link {
    padding: 0.75rem 1rem;     /* que cada opción se vea más gordita */
    display: block;
  }

  #navbarNav .d-flex {
    flex-direction: column;    /* botones en columna */
    gap: 0.75rem;
    margin-top: 1rem;
  }
}

  /* Estilo del menú desplegado en mobile */
@media (max-width: 991.98px) {  /* breakpoint lg */
  #navbarNav {
    background: #ffffff;         /* fondo sólido */
    padding: 1rem;              /* espacio interno */
    border-radius: 0 0 12px 12px; /* esquinas redondeadas abajo */
    box-shadow: 0px 4px 8px rgba(0,0,0,0.08);
  }

  /* Links centrados y más visibles */
  #navbarNav .nav-link {
    display: block;
    text-align: center;
    padding: 10px 0;
    font-size: 16px; /* un poco más grande */
  }

  /* idioma con margen */
  #navbarNav .lang {
    text-align: center;
    margin: 10px 0;
  }

  /* Botones en columna */
  #navbarNav .d-flex.gap-2 {
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
  }

  #navbarNav .btn {
    width: 100%; /* que ocupen ancho completo */
  }
}

@media (max-width: 767.98px) {
  .lang select {
    border: none;       /* quita borde */
    outline: none;      /* quita contorno azul */
    box-shadow: none;   /* quita glow al hacer focus */
    background: transparent; /* que se funda con el fondo */
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
  }

}


  .navbar-toggler {
     margin-left: 98%;
    margin-top: -25%;
}
.lang{
          border: none;
        outline: none;
        box-shadow: none;
}
  .lang select {
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
}
.btn-ingresar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #00A3FF;
    color: #FFFFFF;
    width: 230px;
    height: 56px;
    padding: 8px;
    border-radius: 0.75rem; /* rounded-3 de Bootstrap */
    font-family: 'Poppins', sans-serif;
    font-weight: 600; /* SemiBold */
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none;
    opacity: 1;
    transition: background-color 0.3s ease;
}

.btn-ingresar:hover {
    background-color: #0088CC; /* opcional, efecto hover */
}


@media (max-width: 991px) {
  .logo_ventachat{
      margin-left: -25%!important;
}

  .ventachat-section{
   padding-top: 100px!important; 
  }
  .beneficio-item span {
    font-size: 14px !important;
    line-height: normal !important;
  }
  .ben{    margin-top: -7%!important;}
}


  @media (max-width: 991px) {


    .venta-chat-section .col-12.col-lg-auto,
  .venta-chat-section .highlight {
    font-size: 38px; /* bajamos de 57px a 40px */
    line-height: 44px; /* line height más ajustado */
  }
}



#img-frame {
  transform: rotateX(80deg) translateY(120px);
  transform-origin: center bottom;
  transition: transform 0.1s linear;
  will-change: transform;
  position: relative;
  z-index: 2;
}

/* Píldora */
#pill-img {
  z-index: 3;
  display: none; /* oculta al inicio */
}

/* Imagen izquierda original */
#img-left {
  position: absolute;
  top: 10%;
  left: 42px;
  width: 22%;
  height: auto;
  z-index: 3;
  display: none;
}

/* Imagen derecha original */
#img-right {
  position: absolute;
  top: 0;
  right: 57px;
  width: 13%;
  height: auto;
  z-index: 3;
  display: none;
}

/* Extra 1 */
#img-left-1 {
  position: absolute;
  top: 29%;
  left: -10px;
  width: 22%;
  height: auto;
  z-index: 3;
  display: none;
}

/* Extra 2 */
#img-left-2 {
  position: absolute;
  top: 55%;
  left: 20px;
  width: 20%;
  height: auto;
  z-index: 3;
  display: none;
}
@media (max-width: 991px) {


  #img-frame {
    width: 110% !important; /* un poco más grande que el contenedor */
    transform: rotateX(75deg) translateY(80px) scale(1.1); /* rotación + desplazamiento + escala */
    transform-origin: center bottom;
    margin: 0 auto;
    z-index: 2;
  }

  #pill-img {
    width: 50% !important;
    display: block;
    margin: 0 auto 15px auto;
    z-index: 3;
  }
}

#img-left, #img-left-1, #img-left-2 {
    width: 23%;
}



#img-left-1 {
top: 40%!important; 
}
#img-left-2 {
top: 70%!important;
}
  #img-right {
    width: 18%;
     position: absolute;
    top: -6px;
    right: 13px;
    width: 13%;
    height: auto;
    z-index: 3;
    display: none;
  }


}


.empresas{
  width: 100%;
  z-index: 10;  
  position: relative;
}

@media (max-width: 991px) {

#img-right {
    width: 21% !important;
    position: absolute;
    top: 15px;
    right: 15px;
}

  .empresas-subtitle-bold-new{
font-size: 18px!important;}
.empresas{    margin-top: -10%!important; width: 100%!important;}
}


.empresas-subtitle-bold-new{
font-family: Poppins;
font-weight: 700;
font-style: Bold;
font-size: 24px;
line-height: normal; 
letter-spacing: 0%;
color: #1E1E1E;
}

  .beneficio-item span {
    font-family: 'Poppins', sans-serif;
    font-weight: 400; /* Regular */
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: #000000;
}

.custom-agendar{width: 230px;height: 56px;gap: 16px;angle: 0 deg;opacity: 1;padding: 17px;}

@media (max-width: 768px) {
  .profile{margin-left: 50px!important;}
  .frames{padding-top: 24px!important;}
  .e_aumenta{    padding-top: 48px!important;}
  .custom-agendar{font-size: 14px!important;}
   
  .vcs{padding-top: 0px!important;}
  .row-first{padding-top: 24px!important;}
  .venta-chat-section {
    padding-top: 108px;
    padding-bottom: 48px!important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .venta-chat-section .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}


.venta-chat-section h1,
.venta-chat-section div {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 57px;
    line-height: normal;
    text-align: center;
    letter-spacing: 0;
}

.venta-chat-section .highlight {
    color: var(--Colors-Primary-Blue-100, #00A3FF);
}
.venta-chat-section .venta-chat-subtitle {
    font-family: 'Poppins', sans-serif;
    
    font-style: normal;
    font-size: 16px;
    line-height: 28px; 
    letter-spacing: 0;
    text-align: center;
    margin: 0 auto; /* centrar texto */
    max-width: 800px; /* opcional, para que no se haga muy ancho en desktop */
}

@media (max-width: 991px) {
.todos{padding-top: 68px!important;}
.prueba{    padding-top: 24px!important;}
.gr{font-size: 29px!important;}
.gr1{font-size: 40px!important;}
  .thk{font-size: 14px!important;}
  .thk1{font-size: 14px!important;}
  .hg_gr{font-size: 29px!important;}
  .hg_gr1{font-size: 40px!important;}
   .hg{
        line-height: 22px!important;

    font-size: 14px!important;
  }

  #img-left, #img-left-1, #img-left-2 {
    width: 34% !important;
}
.venta-chat-subtitle-new {    font-size: 14px!important;line-height: 20px!important;}
  .aut{
        padding-top: 48px!important;
  }
  .vcs1{padding-top: 0px!important;}
.venta-chat-subtitle-bold{
    margin-top: 24px!important;
    margin-bottom: 24px!important;
font-size: 14px!important;

}
.venta-chat-title-new {font-size: 32px!important;line-height: normal!important; padding-top: 0px!important}

}
.venta-chat-section .venta-chat-subtitle {
    font-family: 'Poppins', sans-serif;

    
    font-style: normal;
    font-size: 14px;
    line-height: normal; 
    letter-spacing: 0;
    text-align: center;
    margin: 0 auto; /* centrar texto */
    max-width: 800px; /* opcional, para que no se haga muy ancho en desktop */
}
}



.venta-chat-subtitle-new {
  max-width: 600;
  position: relative;       /* 🔹 ahora puede usar z-index */
  font-family: 'Poppins', sans-serif;
  font-weight: 400;         /* Regular */
  font-style: normal;
  font-size: 17px;
  line-height: 28px; 
  letter-spacing: 0;
  text-align: center;
  color: #1E1E1E;
  margin: 0 auto;
  padding-bottom: 24px;
  max-width: 800px;
  padding-top: 15px;
  z-index: 10;              /* 🔹 asegúrate que quede por encima */
}
.venta-chat-section .venta-chat-subtitle-new {
  position: relative;       
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 28px; 
  letter-spacing: 0;
  text-align: center;
  color: #1E1E1E;
  margin: 0 auto;
  max-width: 800px;
  padding-top: 15px;
  z-index: 10;
}


.circle-bg {
  margin-top: -19%;       /* lo sube */
  left: 50%;
  width: 100%;        /* 🔹 tamaño moderado */
  z-index: -1;       /* queda detrás */
  pointer-events: none;
}

.venta-chat-title-new {
  padding-bottom: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;         /* Bold */
  font-style: normal;       /* "Bold" va en font-weight, no en font-style */
  font-size: 40px;
  line-height: 1;           /* ≈ leading-trim: none */
  letter-spacing: 0;        /* 0% equivale a 0px */
  color: #00A3FF;
  margin: 0;                /* opcional, para que quede más limpio */
  z-index: 10;
  position: relative;
}

.venta-chat-main {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;        /* Bold */
  font-style: normal;      /* Bold va en font-weight */
  font-size: 40px;
  line-height: 1;          /* equivalente a leading-trim: none */
  letter-spacing: 0;
  color: #1E1E1E;          /* color general del texto */
  text-align: left;
  margin: 0;               /* opcional */
}
.venta-chat-main-lg {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;        /* Bold */
  font-style: normal;      /* Bold va en font-weight */
  font-size: 40px;
  line-height: 1;          /* equivalente a leading-trim: none */
  letter-spacing: 0;
  color: #1E1E1E;          /* color general del texto */
  text-align: left;
  margin: 0;               /* opcional */
}

.venta-chat-main .highlight-text {
  color: #00A3FF;          /* solo esa parte en azul */
}
.venta-chat-subtitle-two {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;        /* Regular */
  font-style: normal;      /* "Regular" va en font-style */
  font-size: 16px;
  line-height: 28px;       /* mejor legibilidad que 100% */
  letter-spacing: 0;
  text-align: center;
  color: #1E1E1E;
  margin: 0 auto;          /* centrado limpio */
  max-width: 800px;        /* opcional para lectura */
  padding-top: 24px;       /* opcional */

}

.si{display: inline;}
.no{display: none;}

.si1{display: inline;}
.no1{display: none;}

@media (max-width: 991px) {
  .cta-btn{display: block!important;}
  .noventa-y-seis{padding-bottom: 33px!important;}
    .todo{font-size: 32px!important;}
    .beneficios{font-size: 32px!important;padding-bottom: 0px!important;margin-bottom: 0px!important}
  .si{display: none!important;}
.no{display: inline!important;}

.si1{display: none!important;}
.no1{display: flex!important;}

.pill-label-xlg {width: 100%!important;}
.venta-chat-main {font-size: 32px!important;         text-align: left !important;   line-height: normal!important;}
.venta-chat-subtitle-two{font-size: 14px!important;line-height: 21px;        text-align: center !important;}



.venta-chat-subtitle-medium {font-size: 18px!important;line-height: normal!important;}
.venta-chat-list {font-size: 14px!important;line-height: 18px!important;}
.btn-crear-cuenta {        margin-bottom: 8px!important;
        margin-top: 8px!important;}

.venta-chat-section .text-left-container {margin-top: -6%!important; text-align:center!important;line-height: normal!important; }
.venta-chat-main-lg {font-size: 32px!important;line-height: normal!important;}
.pill-label-xxlg {width: 135px!important; font-size: 14px!important;}

.pill-label-xlg {font-size: 16px!important;}


}





.venta-chat-main {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0;
  color: #1E1E1E;
  margin: 0;
  text-align: left;
}

.venta-chat-subtitle-medium {
  text-align: left;  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0;
  color: #1E1E1E;
  margin: 15px 0 0 0; /* margen superior para separar del título */

}

.pill-label-lg {
  margin-bottom: 10px;
  display: inline-block;
  width: 169px;
  height: 40px;
  padding: 5px 8px; /* padding top/bottom y left/right aproximado */
  background-color: #00A3FF1A; /* fondo semitransparente */
  border: 1px solid #00A3FF;   /* borde azul */
  border-radius: 9999px;        /* forma de pastillita */
  font-family: 'Poppins', sans-serif;
  font-weight: 600;             /* SemiBold */
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0;
  color: #00A3FF;
  text-align: center;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;          /* centra texto vertical y horizontal */
}
.pill-label-xlgg {
  margin-bottom: 10px;
  display: inline-block;
  width: 300px;
  height: 40px;
  padding: 5px 8px; /* padding top/bottom y left/right aproximado */
  background-color: #00A3FF1A; /* fondo semitransparente */
  border: 1px solid #00A3FF;   /* borde azul */
  border-radius: 9999px;        /* forma de pastillita */
  font-family: 'Poppins', sans-serif;
  font-weight: 600;             /* SemiBold */
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0;
  color: #00A3FF;
  text-align: center;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;          /* centra texto vertical y horizontal */
}
.pill-label-xlg {
  margin-bottom: 10px;
  display: inline-block;
  width: 400px;
  height: 40px;
  padding: 5px 8px; /* padding top/bottom y left/right aproximado */
  background-color: #00A3FF1A; /* fondo semitransparente */
  border: 1px solid #00A3FF;   /* borde azul */
  border-radius: 9999px;        /* forma de pastillita */
  font-family: 'Poppins', sans-serif;
  font-weight: 600;             /* SemiBold */
  font-size: 17px;
  line-height: 19px;
  letter-spacing: 0;
  color: #00A3FF;
  text-align: center;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;          /* centra texto vertical y horizontal */
}
.pill-label-xxlg {
  margin-bottom: 10px;
  display: inline-block;
  width: 200px;
  height: 40px;
  padding: 5px 8px; /* padding top/bottom y left/right aproximado */
  background-color: #00A3FF1A; /* fondo semitransparente */
  border: 1px solid #00A3FF;   /* borde azul */
  border-radius: 9999px;        /* forma de pastillita */
  font-family: 'Poppins', sans-serif;
  font-weight: 600;             /* SemiBold */
  font-size: 17px;
  line-height: 19px;
  letter-spacing: 0;
  color: #00A3FF;
  text-align: center;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;          /* centra texto vertical y horizontal */
}

.text-left-container {
  text-align: left;  /* alinea todo a la izquierda */
}

.venta-chat-section .text-left-container {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 57px;
    line-height: 65px;
    text-align: left;
    letter-spacing: 0;
}
.btn-crear-cuenta {
  display: inline-block;
  width: 230px;
  height: 56px;
  background-color: #00A3FF;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 56px;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 0 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-crear-cuenta:hover {
  background-color: #0088CC;
}

.venta-chat-list {
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;           /* Regular */
  font-style: normal;
  font-size: 16px;
  line-height: 24px;          /* más legible que 100% */
  letter-spacing: 0;
  color: #646464;
  list-style-type: disc;       /* puntitos */
  list-style-position: inside; /* puntito dentro del texto */
  padding-left: 20px;          /* margen izquierdo */
  margin: 15px 0;              /* margen vertical entre párrafos */
}

.venta-chat-list li {
  margin-bottom: 10px;         /* espacio entre items */
}


.venta-chat-list {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;           
  font-size: 16px;
  line-height: 24px;          
  color: #646464;
  list-style-type: disc;       /* puntitos */
  list-style-position: outside; /* la primera línea alinea con las demás */
  padding-left: 20px;          /* margen izquierdo para los bullets */
  margin: 15px 0;              
}

.venta-chat-list li {
  margin-bottom: 10px;         /* espacio entre items */
}
.pill-label {
  margin-bottom: 10px;
  display: inline-block;
  width: 129px;
  height: 40px;
  padding: 5px 8px; /* padding top/bottom y left/right aproximado */
  background-color: #00A3FF1A; /* fondo semitransparente */
  border: 1px solid #00A3FF;   /* borde azul */
  border-radius: 9999px;        /* forma de pastillita */
  font-family: 'Poppins', sans-serif;
  font-weight: 600;             /* SemiBold */
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0;
  color: #00A3FF;
  text-align: center;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;          /* centra texto vertical y horizontal */
}






}


.feature-card {
  width: 343px;
  height: 112px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff; /* por si no tienen fondo */
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Si quieres que palpiten todo el tiempo (sin hover) */
@keyframes pulseCard {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.feature-card.pulse {
  animation: pulseCard 3s ease-in-out infinite;
}
  .feature-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .feature-title {
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: auto;
    color: #000000;
    margin: 0;
  }

  .feature-text {
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #000000;
    margin: 0;
  }
  .texto-especial {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;     
  font-style: normal;   
  font-size: 40px;
  line-height: 100%;    
  letter-spacing: 0;    
  text-align: center;
}

.texto-especial span {
  color: #00A3FF;
}



  .beneficios{font-size: 32px; padding-bottom: 22px;}
  .feature-card {
    width: 343px;
    height: 112px;
    border-radius: 10px;
    border: 1px solid #a3deff;
    background: #FFFFFF;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .feature-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .feature-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    color: #000000;
    margin: 0;
  }

  .feature-text {
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: #000000;
    margin: 0;
  }
  .texto-especial {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;     
  font-style: normal;   
  font-size: 40px;
  line-height: 100%;    
  letter-spacing: 0;    
  text-align: center;
}

.texto-especial span {
  color: #00A3FF;
}





.section {
  position: relative;
  width: 900px;
  height: 500px;
  margin: 0 auto;
  padding: 98px 0 108px 0;
}




.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: Poppins, sans-serif;
}

.center-text p {
  font-size: 40px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  margin-top: -10%;
}

.center-text span {
  color: #00A3FF;
}

/* Globito */
/* Globito */
.bubble {
  position: absolute;
  background: white;
  border: 2px solid #a3deff;
  border-radius: 30px;
  padding: 8px 25px 8px 25px; /* espacio para el icono */
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  background: #00A3FF1A;
  display: flex;              /* 👈 Añadido */
  align-items: center;        /* 👈 Esto centra verticalmente el texto */
  color: #00A3FF;




 
}

/* Ícono fuera del globito */
.bubble .icon {
position: absolute;
    left: -65.5px;
    top: 50%;
    transform: translateY(-50%);
    width: 63px;
    height: 63px;
}

/* Posiciones manuales */
.bubble1 { top: 31%; left: 5%; }
.bubble2 { top: 10%; left: 38%; }
.bubble3 { top: 15%; right: 10%; }
.bubble4 { top: 45%; right: -6%; }
.bubble5 { bottom: 22%; right: 14%; }
.bubble6 { bottom: 10%; left: 40%; }
.bubble7 { bottom: 31%; left: 7%; }


/* Ocultar versión mobile en desktop */
.section-mobile {
  display: none;
}

@media (max-width: 768px) {

  .cuadros{    padding-bottom: 0px!important;}
  .cont{margin-top: 32px!important;}
  .cont{margin-top: 16px!important;}
  .first-section{    padding-top: 0px!important;}
  .venta-chat-subtitle{padding-top: 24px!important;}
  .venta-title {font-size: 32px!important;}
  /* Ocultar desktop */
  .desktop-section {
    display: none;
  }

  /* Mobile section */
  .section-mobile {
    margin-top: 8px !important;
    position: relative;
    width: 100%;
    height: 600px; /* ajusta según la imagen */
    background: #f9fcff;
    margin: 0 auto;
    display: block;
    margin-bottom: -29%;
        z-index: -3;
  }

  .center-text-mobile {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
  }

  .center-text-mobile p {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
  }

  .center-text-mobile span {
    color: #00A3FF;
  }

  /* Globitos */
  .bubble-m {
    position: absolute;
    background: #00A3FF1A;
    border: 2px solid #a3deff;
    border-radius: 30px;
    padding: 6px 14px 6px 35px;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #00A3FF;
    display: flex;
    align-items: center;
  }

  .bubble-m .icon-m {
    position: absolute;
    left: -22px;
    width: 38px;
    height: 38px;
  }

  /* Posiciones específicas (ajústalas según quieras) */
  .bubblem1 { top: 24px; left: 22%; }
  .bubblem2 { top: 118px; left: 18%; }
  .bubblem3 { top: 12%; right: 8%; }
  .bubblem4 {         top: 50%;right: 18%; }
  .bubblem5 { bottom: 34%; left: 18%; }
  .bubblem6 { bottom: 35%; right: 3%; }
  .bubblem7 { bottom: 25%; left: 29%; }
}



 .venta-title{
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 700;        /* Bold */
    font-style: normal;
    font-size: 40px;
    line-height: 115%;
    letter-spacing: 0;
    text-align: center;
    color: #1E1E1E;
    margin: 0;               /* opcional: quita espacios extra */
  }



.title-miles {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;       /* Bold */
  font-size: 40px;
  line-height: 100%;      /* equivalente a 1 */
  letter-spacing: 0;
  text-align: center;
  color: #1E1E1E;
}

@media (max-width: 768px) {
  .profile-info{  }
  .section-facil{padding-top: 72px!important;padding-bottom: 96px!important;}
  .qua{width: 30%!important;}
  .qua2{padding-top: 24px!important; padding-bottom: 24px!important;}
  .py5{    padding-top: 0rem !important;
    padding-bottom: 0rem !important;}
  .title-miles {

  font-family: 'Poppins', sans-serif;
  font-weight: 700;       /* Bold */
  font-size: 32px;
  line-height: normal;      /* equivalente a 1 */
  letter-spacing: 0;
  text-align: center;
  color: #1E1E1E;
}

}
  .item {
  flex: 0 0 365px;         /* ancho fijo en el carrusel */
  display: flex;
  flex-direction: column;  /* apila card y profile */
}
 
.card {
  box-sizing: border-box;
  padding: 42px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ccc;

  /* tipografía Figma traducida */
  font-family: 'Poppins', sans-serif;
  font-weight: 400;       /* Regular */
  font-size: 16px;
  line-height: normal;      /* equivalente a 1 */
  letter-spacing: 0;
  color: #1e1e1e;

  /* altura mínima opcional */
  min-height: 240px;

  /* quitado porque generaba espacio fantasma */
  /* display: flex;
  flex-direction: column;
  justify-content: space-between; */
}

.fake-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: -1px; /* espacio entre icono y texto */
  font-family: sans-serif;
  cursor: pointer;
}

.fake-select .selected {

  padding: 6px 28px 6px 10px;
  background: #fff;
  color: #000000; /* 👈 color que pediste */
  position: relative;

   
  /* Tus estilos */
  font-family: 'Poppins', sans-serif;
  font-weight: 600;         /* SemiBold */
  font-style: normal;       /* Regular */
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
}

/* flechita ▼ */
.fake-select .selected::after {
  content: "\25BE"; /* ▾ */
  font-size: 14px;
  color: #646464;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.cta-btn,
.cta-btn:hover,
.cta-btn:focus {
  text-decoration: none;
}

.fake-select .options {
  display: none;
  position: absolute;
  top: 100%;
  left: 26px; /* se alinea con la cajita, dejando el 🌐 fuera */
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  z-index: 999;
  min-width: 100px;
}

.fake-select .options li {
  list-style: none;
}

.fake-select .options a {
  display: block;
  padding: 6px 10px;
  text-decoration: none;
  color: #646464;
}

.fake-select .options a:hover {
  background: #f0f0f0;
}



.card p {
  font-size: 14px;
  color: #333;
}

.stars {
  margin-top: 10px;
  color: #000;
  font-size: 18px;
}

/* Nuevo estilo: perfil debajo de la card */
.profile {
  display: flex;
  align-items: center;
  margin-top: 12px;
}

.avatar {
  background: orange;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 10px;
}

.profile-info strong {
  display: block;
  font-size: 14px;
  color: #1E1E1E;
  font-family: "Poppins", sans-serif;
font-weight: 600;
font-style: Regular;
font-size: 20px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;


}

.profile-info span {
  font-size: 12px;
  color: gray;

    font-family: "Poppins", sans-serif;
font-weight: 600;
font-style: Regular;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;

}

.testimonials-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}
.testimonials-container {
  display: flex;
      padding-bottom: 192px;
      padding-top: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* Solo en mobile lo forzamos a block */
@media (max-width: 768px) {
  .testimonials-container {
    display: block;
    padding-top: 0px!important;
  }
}



  .piensan{font-size: 27px!important;}

.left {
  flex: 1;
}

.left h2 {
  font-family: Poppins, sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.left p {
  font-size: 16px;
  margin-bottom: 20px;
}

.left {
  display: block; /* por defecto, como está ahora */
}

/* En responsive: ponerlos en fila */
@media (max-width: 768px) {
  .left {
    display: flex;
    align-items: center;   /* alinea verticalmente */
    gap: 10px;             /* espacio entre imagen y texto */
    justify-content: center; /* opcional, para centrarlos juntos */
  }

  .left img.qua {
     /* ajusta el tamaño para que no ocupe demasiado */
    margin-bottom: 0; /* quitar margen que tenía */
  }

  .left p.piensan {
    font-size: 24px !important; /* reduce un poco el tamaño si quieres */
    margin: 0;
  }
}

.controls button {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 20px;
  margin-right: 18px;
  cursor: pointer;
  border-radius: 50%;
  width: 45px;
  height: 45px;
}

.right {
  flex: 2;
  overflow: hidden; /* clave para que no se extienda */
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px; /* margen entre tarjetas */
}



/* Información */
.info {
  text-align: left;
  font-size: 14px;
  color: #1E1E1E;
}

.subs1{
  font-family: 'Poppins', sans-serif;
  font-weight: 400;      /* 400 = Regular */
  font-style: normal;    /* "Regular" no existe en CSS, es normal */
  font-size: 24px;
  line-height: 38px;     /* valor fijo */
  letter-spacing: 0;     /* sin espaciado extra */
  text-align: center;
  color: #1E1E1E;        /* si lo quieres consistente */

   }
  .crear-gratis{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;       /* 700 = Bold */
  font-style: normal;     /* "Bold" se maneja en font-weight, no en font-style */
  font-size: 47px;
  line-height: normal;      /* equivalente a 1, o 57px */
  letter-spacing: 0;      /* o 0em */
  text-align: center;
  color: #1E1E1E;         /* (si también necesitas el color) */

  }

@media (max-width: 768px) {
.feature-card{width: 100!important;}
.cta-box {max-width: calc(100% - 32px) !important;    margin-bottom: 48px!important; }
}
  .cta-box {
        padding-top: 96px!important;
    padding-bottom: 96px!important;
  background: url('../img/fondo-frame.png') no-repeat center/cover; /* tu PNG */
  border-radius: 16px;
  padding: 50px 8px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.cta-box h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #1E1E1E;
  margin-bottom: 10px;
}

.cta-box p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #1E1E1E;
  margin-bottom: 24px;
}

.badges {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  font-family: Poppins;
font-weight: 400;
font-style: Regular;
font-size: 14px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;

}
.badges2 {
  justify-content: center;
  margin-bottom: 20px;
  font-family: Poppins;
font-weight: 400;
font-style: Regular;
font-size: 14px;
leading-trim: NONE;
line-height: normal;
letter-spacing: 0%;

}



.badges span {
background: rgba(255, 255, 255, 0.5);
      margin-bottom: 24px;
      margin-top: 0px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: #1E1E1E;
  display: inline-block;
}
.badges2 span {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: #1E1E1E;
  display: inline-block;
}

.cta-btn {
  background: #0099ff;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 30px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;


  gap: 10px;             /* funciona si usas flex/grid */
  transform: rotate(0deg); /* "angle: 0 deg" */
  opacity: 1;
 
  border-width: 1px;
  border-style: solid;   /* siempre hay que poner el estilo */
  border-color: #fff;    /* el color que quieras */

}

.cta-btn:hover {
  background: #007acc;
}

@media (max-width: 768px) {
.badges2 span{
  border-radius: 7px!important;
    margin-bottom: 24px!important;
    padding: 16px 20px!important;
}
.cta-box p{font-size: 20px!important;}
.crear-gratis { font-size:40px!important; }
.subs1{line-height: normal!important;}
}

.ligas{
  font-family: 'Poppins', sans-serif;
  font-weight: 400;       /* Regular */
  font-size: 14px;
  line-height: 100%;      /* o 1 */
  letter-spacing: 0;
  text-align: right;
  font-style: normal;
  color:#646;
}
.grises{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;       /* SemiBold */
  font-size: 16px;
  line-height: 100%;      /* o 1 */
  letter-spacing: 0;
  font-style: normal;     /* "Regular" */
  color: #646464;
}
.frame-plataforma{
  font-family: 'Poppins', sans-serif;
  font-weight: 400;       /* Regular */
  font-size: 14px;
  line-height: 140%;      /* o 1 */
  letter-spacing: 0;

  color: #646464;
}
.footer {
  background: #f8fbff;
  padding: 48px 20px 0px;
  font-family: Poppins, sans-serif;
  color: #1E1E1E;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1210px;
  margin: auto;
  gap: 38px;
}

.footer-col1 {
  flex: 1;
  min-width: 272px;
}
.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #1E1E1E;
  font-size: 14px;
}

.logo {
  width: 180px; /* ajusta el tamaño */
  height: 34px;
  margin-bottom: 10px;
}

.meta-logo {
  width: 120px;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  text-align: center;
  font-size: 13px;
  margin-top: 20px;
  padding-top: 15px;
  color: #555;

}
.footer-bottom .footer1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;       /* SemiBold */
  font-size: 14px;
  line-height: 100%;      /* o 1 */
  letter-spacing: 0;
  text-align: center;
  color: #646464;
  }

.footer-bottom .footer2 {
  font-family: Poppins;
font-weight: 400;
font-style: Regular;
font-size: 14px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color: #646464;
}
@media (max-width: 768px) {

  .section-todo{
    padding-top: 48px!important;
  }
  .footer-content {
    flex-direction: column;
    max-width: 100%;
    gap: 20px;
    padding: 0 15px;
  }

  .footer-col {
    min-width: 0; /* Para que no obligue ancho mínimo */
    width: 100%;
  }

  .logo, .meta-logo {
    max-width: 100%;
    height: auto;
  }
}
