/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
.videoask-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.videoask-iframe {
  width: 100%;
  aspect-ratio: 9 / 16; /* fuerza proporción correcta */
  height: auto;
  border: none;
  border-radius: 24px;
  transform: scale(1.15); /* zoom para eliminar bordes */
  transform-origin: center;
}

/* 📱 Ajuste solo para tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .videoask-iframe {
    transform: scale(1.3); /* un poco más de zoom */
    transform-origin: center;
  }
}

.boton1-container {
  text-align: center; /* centra el contenido inline dentro */
}

.boton1 {
  display: inline-block; /* evita que se expanda al 100% */
  background-color: #28a745;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  border: none;
  cursor: pointer;
}

.boton1:hover {
  background-color: #1e7e34;
  color: #ffffff !important;
}



.boton1:hover {
    background-color: #1e7e34; /* Verde más oscuro al pasar el mouse */
    color: #ffffff !important;
}


.boton2-container {
    display: flex;
    justify-content: flex-end; /* Alinea el botón a la derecha */
    padding: 20px; /* Ajusta el espacio según sea necesario */
}

/* Botón 2 */
.boton2-container {
    display: flex;
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente si es necesario */
    text-align: center;
    width: 100%;
    margin: 20px 0;
}

.boton2 {
    display: inline-block;
    background-color: #28a745; /* Verde */
    color: #ffffff; /* Texto blanco */
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    border: none;
    cursor: pointer;
}

.boton2:hover {
    background-color: #1e7e34; /* Verde más oscuro al pasar el mouse */
    color: #ffffff !important;
}


.boton3-container {
    display: flex;
    justify-content: center; /* Centra el botón horizontalmente */
    align-items: center;
    text-align: center;
    padding: 20px;
    width: 100%;
}

.boton3 {
    display: inline-block;
    background-color: #28a745; /* Verde */
    color: #ffffff; /* Texto blanco */
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding: 20px 100px; /* Más ancho */
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    border: none;
    cursor: pointer;
    width: 90%; /* Más ancho en el contenedor */
    max-width: 800px; /* Define un límite para evitar que sea demasiado grande */
}

.boton3:hover {
    background-color: #1e7e34; /* Verde más oscuro al pasar el mouse */
    color: #ffffff !important; /* Asegura que el texto sigue siendo blanco */
}
/* Contenedor con borde degradado */
.pricing-plan {
  background: linear-gradient(#000, #000) padding-box,
              linear-gradient(135deg, #7d7df8, #3b3b8f) border-box;
  border: 2px solid transparent;
  border-radius: 12px;
  color: #fff;
  width: 100%;
  max-width: 420px;
  margin: auto;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

/* 🔹 Encabezado */
.plan-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(to right, #7d7df8, #3b3b8f);
  padding: 15px 20px;
}

/* Emoji 🎉 */
.plan-emoji {
  font-size: 28px;
}

/* Texto del encabezado */
.plan-header-text {
  display: flex;
  flex-direction: column;
}

.plan-header-text .plan-title {
  font-size: 20px;
  margin: 0;
  font-weight: bold;
  color: #fff;
}

.plan-header-text .plan-subtitle {
  font-size: 14px;
  margin: 0;
  color: #fff;
}

/* 🔹 Contenido */
.plan-content {
  padding: 20px;
}

/* Descripción */
.plan-description {
  font-size: 14px;
  margin-bottom: 20px;
  color: #ddd;
}

/* Lista */
.features {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

/* Ítems de la lista */
.features li {
  font-size: 16px;
  margin-bottom: 14px;
  padding-left: 36px;
  position: relative;
  transition: color 0.3s ease;
}

/* 🔹 Círculos morados */
.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-color: #7d7df8;
  border-radius: 50%;
}

/* Hover lista */
.features li:hover {
  color: #7d7df8;
  cursor: pointer;
}

/* Precio */
.price {
  font-size: 20px;
  font-weight: bold;
  margin-top: 15px;
}

/* 🔹 Botones generales */
.pricing-button {
  display: inline-block;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}

/* Botón morado */
#buyNowButton {
  background-color: #7d7df8;
  color: #fff;
}

#buyNowButton:hover {
  background-color: #5c5ce6;
  color: #fff;
}

/* Botón verde */
#try14Button {
  background-color: #25d366;
  color: #fff;
}

#try14Button:hover {
  background-color: #1ea955;
  color: #fff;
}

/* Contenedor de botones lado a lado */
.plan-content div[style*="display:flex"] {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
  flex-wrap: wrap;
}

/* Fuerza el degradado del encabezado del monthly */
#monthlyPlanContainer .plan-header {
  background: linear-gradient(to right, #7d7df8, #3b3b8f) !important;
  background-color: transparent !important;
}




#video1final {
    display: flex;
    justify-content: center; /* Centra el iframe horizontalmente */
    align-items: center;
    width: 100%;
    max-width: 800px; /* Ajustar ancho máximo */
    margin: auto; /* Centrado */
    overflow: hidden;
    border-radius: 24px;
}

#video1final iframe {
    width: 100%;
    height: 400px; /* Ajustar altura */
    border: none;
    border-radius: 24px;
}




#video2final {
    display: flex;
    justify-content: center; /* Centrar horizontalmente */
    align-items: center;
    width: 100%;
    max-width: 800px; /* Ajustar ancho máximo */
    margin: auto; /* Centrado */
    overflow: hidden;
    border-radius: 24px;
}

#video2final iframe {
    width: 100%;
    height: 400px; /* Ajustar altura */
    border: none;
    border-radius: 24px;
}


#video3final {
    display: flex;
    justify-content: center; /* Centrar horizontalmente */
    align-items: center;
    width: 100%;
    max-width: 800px; /* Ajustar ancho máximo */
    margin: auto; /* Centrado */
    overflow: hidden;
    border-radius: 24px;
}

#video3final iframe {
    width: 100%;
    height: 400px; /* Ajustar altura */
    border: none;
    border-radius: 24px;
}



.responsive-canva-container {
    position: relative;
    width: 90vw; 
    max-width: 800px; 
    height: auto; 
    aspect-ratio: 16 / 9;
    margin: 0 auto; 
    box-shadow: 0 2px 8px 0 rgba(63,69,81,0.16); 
    overflow: hidden; 
    border-radius: 8px;
}

/* Asegurar que en móviles el iframe se ajuste sin cortes */
.responsive-canva-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Mejora para móviles: evitar que se vea demasiado pequeño */
@media screen and (max-width: 768px) {
    .responsive-canva-container {
        width: 100vw; 
        max-width: 100%;
    }
}



.boton1leadmagnet {
  background-color: #4F45E4;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.boton1leadmagnet:hover {
  background-color: #3e36b8; /* tono más oscuro para hover */
}

.boton2leadmagnet {
  background-color: #4F45E4;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.boton2leadmagnet:hover {
  background-color: #3e36b8; /* tono más oscuro para hover */
}


.botonwhatsappthankyou {
  background-color: #25D366;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: block;
  width: 100%;
  max-width: 600px;
  text-align: center;
  margin: 20px auto;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.botonwhatsappthankyou:hover {
  background-color: #1ebe5d;
}


.countdown-container {
  color: white;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  text-align: left;
}

.countdown-container h2 {
  font-size: 36px;
  line-height: 1;
}

.countdown-container .highlight {
  font-weight: bold;
}

.countdown-container h3 {
  font-size: 20px;
  font-weight: normal;
  font-style: italic;
  margin-top: 10px;
}

#countdown {
  margin-top: 20px;
  font-size: 32px;
  font-weight: bold;
}

<!-- ESTILOS PARA MEJORAR EL FORMULARIO -->
<style>
  .form-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 20px;
    background-color: #f9f9f9;
  }

  .form-container {
    max-width: 1500px;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    width: 100%;
  }

  .form-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
  }

  .form-image {
    flex: 1;
    min-width: 260px;
  }

  .form-image img {
    width: 100%;
    border-radius: 8px;
  }

  .form-embed {
    flex: 2;
    min-width: 300px;
  }

  @media (max-width: 8px) {
    .form-content {
      flex-direction: column;
    }
  }
</style>

#calendly-widget {
  min-width: 100%;
  height: 500px;
  overflow: hidden;
}

@media (max-width: 768px) {
  #calendly-widget {
    height: 400px !important; /* Suficiente para todo el flujo en móvil */
  }
}


/* ===== Bullets y texto blancos ===== */
.wb-bullets,
.wb-bullets * {
  color: #ffffff !important; /* texto blanco */
}

/* UL normales */
.wb-bullets ul {
  list-style: none !important; /* quitamos bullet nativo */
  margin: 0 !important;
  padding-left: 0 !important;
}
.wb-bullets ul li {
  position: relative;
  margin: 0.4rem 0 !important;
  padding-left: 1.25rem !important; /* espacio para el círculo */
}
.wb-bullets ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em; /* centra verticalmente */
  width: 0.5em;
  height: 0.5em;
  background: transparent;
  border: 2px solid #ffffff; /* círculo blanco */
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Elementor icon-list */
.wb-bullets [data-widget_type="icon-list.default"] .elementor-icon-list-icon {
  display: none !important; /* oculta íconos predeterminados */
}
.wb-bullets [data-widget_type="icon-list.default"] ul {
  list-style: none !important;
  margin: 0 !important;
  padding-left: 0 !important;
}
.wb-bullets [data-widget_type="icon-list.default"] li.elementor-icon-list-item {
  position: relative;
  margin: 0.4rem 0 !important;
  padding-left: 1.25rem !important;
}
.wb-bullets [data-widget_type="icon-list.default"] li.elementor-icon-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.5em;
  height: 0.5em;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ===== Estilos FAQ dentro del contenedor .faq-xl ===== */
/* ===== FAQ dentro del contenedor .faq-xl ===== *//* ===== FAQ dentro del contenedor .faq-xl ===== *//* ===== PARCHE: neutraliza hover/active del tema en botones ===== */
/* ===== Contenedor FAQ ===== *//* ================== FAQ: normalización y variables ================== */
.faq-xl {
  --text: #EAEAF9;
  --muted: #C8C8F7;
  --border-1: #8B84FF;      /* izquierda borde */
  --border-2: #BEBBFF;      /* derecha borde */

  /* Gradient SOLID del card (izq→der). Ajusta para “match” con tu landing si lo usas */
  --grad-left:  #1F2347;
  --grad-right: #0F121C;

  /* Overlay (para dejar ver el gradient de la landing) */
  --overlay-bg: rgba(12, 14, 24, 0.42); /* oscuro traslúcido */
  --overlay-tint: rgba(90, 92, 178, 0.10); /* leve tinte morado */

  --radius: 18px;
  --pad-x: 22px;
  --pad-y: 14px;

  /* Tipografía consistente */
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.25;

  width: 100%;
  max-width: 1240px;   /* ajusta si quieres más estrecho */
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

/* ================== Tarjeta: borde glow y fondo ================== */
.faq-xl .faq-item{
  position: relative;
  margin: 16px 0;
  border-radius: var(--radius);
  overflow: hidden;
}

/* Fondo según variante */
.faq-xl.solid .faq-item,
.faq-xl:not(.overlay) .faq-item{
  background: linear-gradient(90deg, var(--grad-left) 0%, var(--grad-right) 100%);
}
.faq-xl.overlay .faq-item{
  /* Deja ver el gradient de la landing y añade una capa sutil */
  background:
    linear-gradient(0deg, var(--overlay-bg), var(--overlay-bg)),
    linear-gradient(90deg, transparent 0%, var(--overlay-tint) 100%);
}

/* Glow del borde que respeta la dirección izq→der */
.faq-xl .faq-item::before{
  content:"";
  position:absolute; inset:-1.5px;
  border-radius: calc(var(--radius) + 3px);
  background: linear-gradient(90deg, var(--border-1) 0%, var(--border-2) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1.5px;
  pointer-events: none;
}

/* ================== Header ================== */
.faq-xl .faq-header{
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: var(--pad-y) var(--pad-x);
  background: transparent !important;
  border: 0; cursor: pointer; text-align: left;
  color: var(--text);
  font-weight: 700;
  /* Título responsivo: ~28-36px desktop, ~20px mobile */
  font-size: clamp(20px, 2.6vw, 36px);
  letter-spacing: 0.2px;
}

/* “Anti-verde” del tema (hover/active/expanded) */
.faq-xl .faq-header,
.faq-xl .faq-header:hover,
.faq-xl .faq-header:focus,
.faq-xl .faq-header:active,
.faq-xl .faq-header[aria-expanded="true"]{
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
  outline: none;
}

.faq-xl .faq-left{ display:flex; align-items:center; gap: 12px; }
.faq-xl .faq-qicon{ color: var(--muted); font-size: clamp(18px, 1.5vw, 28px); line-height: 0; }

/* Caret compacto y alineado a la línea de base */
.faq-xl .faq-caret { line-height: 0; color: var(--muted); display:flex; align-items:center; }
.faq-xl .faq-caret svg { width: clamp(18px, 1.6vw, 26px); height: auto; transition: transform .22s ease; }
.faq-xl .faq-header[aria-expanded="true"] .faq-caret svg { transform: rotate(180deg); }

/* ================== Contenido ================== */
.faq-xl .faq-content{
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--pad-x);
  background: transparent !important;
  border: 0 !important;
  transition: max-height .26s ease, padding-top .16s ease, padding-bottom .16s ease;
}
.faq-xl .faq-content p{
  /* Texto cuerpo responsivo: ~16-20px */
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--text);
  margin: 10px 0 0;   /* sin “barra” intermedia */
}
.faq-xl .faq-content.is-open{ padding-top: 10px; padding-bottom: 12px; }

/* Separación entre items más compacta */
.faq-xl .faq-item + .faq-item { margin-top: 14px; }

/* ================== Ajustes finos en breakpoints ================== */
@media (max-width: 1024px){
  .faq-xl{ --pad-x: 18px; }
}
@media (max-width: 640px){
  .faq-xl{ --radius:14px; --pad-y:12px; }
  .faq-xl .faq-item{ margin: 12px 0; }
}
.faq-xl .faq-caret {
  display: inline-block;
  transition: transform 0.25s ease;
}
.faq-xl .faq-header[aria-expanded="true"] .faq-caret {
  transform: rotate(180deg);
}

/* ===== FAQ Typography ===== */
.faq-xl .faq-title {
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;              /* negrita como los títulos de tu landing */
  font-size: clamp(18px, 2vw, 22px);  /* responsive: ~18px en mobile, ~22px en desktop */
  line-height: 1.35;
  color: #FFFFFF;                /* blanco limpio */
}

.faq-xl .faq-qicon {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: #9FA3FF;                /* tono suave para diferenciar */
}

.faq-xl .faq-content p {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 400;              /* normal, para cuerpo */
  font-size: clamp(15px, 1.6vw, 18px);  /* ~15px en mobile, ~18px en desktop */
  line-height: 1.55;             /* lectura más cómoda */
  color: #E4E6F3;                /* gris claro como en tu landing */
  margin: 8px 0 0;
}

/* ===== Bullets visibles dentro de las FAQs ===== */
.faq-xl .faq-content ul {
  list-style: disc !important;          /* forza bullets aun si el tema los quita */
  list-style-position: outside;         /* bullet fuera del bloque */
  margin: 10px 0 12px;
  padding-left: 1.25rem;                /* espacio para el bullet */
}

.faq-xl .faq-content li {
  color: #E8EAF8;                       /* texto claro */
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  margin: 10px 0;                       /* respiro entre ítems */
}

/* color/contraste del bullet */
.faq-xl .faq-content li::marker {
  color: #BEBBFF;                        /* lila del borde */
  font-size: 0.95em;                     /* un poquito más grande */
}

/* (opcional) si quieres puntos más notorios: */
/*
.faq-xl .faq-content ul { list-style: none !important; padding-left: 0; }
.faq-xl .faq-content li {
  position: relative; padding-left: 1.6rem;
}
.faq-xl .faq-content li::before {
  content: "•"; position: absolute; left: 0; top: 0.15em;
  color: #BEBBFF; font-size: 1.2em; line-height: 1;
}
*/
/* Mantén el estilo original de la lista .features
   aunque dentro haya <h2> / <h3> */
.features h2,
.features h3 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  display: inline;   /* conserva el bullet y el flujo en línea */
}