/* @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: 40px 20px;
    background-color: #f9f9f9;
  }

  .form-container {
    max-width: 1000px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    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: 768px) {
    .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%);
}