:root {
  --verde: #2a7e3b;
  --verde-hover: #3a9e4b;
  --fondo-claro: #ffffff;
  --gris-claro: #f8f9fa;
  --gris: #6c757d;
  --texto: #212529;
  --sombra: rgba(0, 0, 0, 0.08);
  --transicion: all 0.3s ease;
  --borde: #dee2e6;
  --fuente: 'Poppins', sans-serif;
}

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/wp-content/themes/generatepress-child/webfonts/fa-solid-900.woff2') format('woff2');
}

@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/wp-content/themes/generatepress-child/webfonts/fa-brands-400.woff2') format('woff2');
}

/* Asignar la fuente a las clases */
.fas {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

.fab {
  font-family: 'Font Awesome 6 Brands';
  font-weight: 400;
}

/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
}

/* === ENCABEZADO CON LOGO === */
.encabezado {
  background: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 8px var(--sombra);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.contenedor-logo {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
    justify-content: center;
}
.logo {
  height: 40px;
  width: auto;
}

@media (max-width: 768px) {
  .logo {
    height: 32px;
  }
}

/* === RESET Y ESTRUCTURA BASE === */

body {
  margin: 0; padding: 0;
  font-family: var(--fuente);
  background-color: var(--fondo-claro);
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
}

/* TIPOGRAFÃA */
h1, h2, h3 {
  color: var(--verde);
  margin: 0 0 1rem;
}
h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }

p, ul, li {
  margin: 0.5rem 0;
}
ul { list-style-position: inside; }
a { color: var(--verde); text-decoration: none; }
a:hover { text-decoration: underline; }

button {
  background-color: var(--verde);
  color: #fff;
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transicion);
}
button:hover {
  background-color: var(--verde-hover);
}

/* BOTIONES FIJOS */
.whatsapp-float {
  position: fixed;
  bottom: 20px; left: 20px;
  background: var(--verde);
  color: #fff;
  padding: 0.75em;
  border-radius: 50%;
  font-size: 1.5rem;
  z-index: 1000;
  box-shadow: 0 2px 6px var(--sombra);
  transition: var(--transicion);
}
.whatsapp-float:hover {
  background: var(--verde-hover);
}
.volver-arriba {
  position: fixed;
  bottom: 100px; right: 20px;
  background: #fff;
  color: var(--verde);
  border: 2px solid var(--verde);
  border-radius: 50%;
  padding: 0.6em 0.8em;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 2px 6px var(--sombra);
  z-index: 999;
  transition: var(--transicion);
}
.volver-arriba:hover {
  background-color: var(--verde);
  color: #fff;
}

/* CONTENEDOR GENERAL */
.contenedor {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === HERO === */
.hero {
  background-color: #f8f9fa;
  padding: 3rem 1rem 2rem;

}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 2rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #2a7e3b;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-text .tagline {
  font-size: 1.3rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.cta-group {
  text-align: center;
  margin-bottom: 1rem;
}

.cta-group button {
  background-color: #2a7e3b;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-group button:hover {
  background-color: #3a9e4b;
}

.cta-group .social-proof {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #6c757d;
}

.hero-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* === RESPONSIVE HERO === */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text .tagline {
    font-size: 1.1rem;
  }

  .cta-group button {
    width: 100%;
    max-width: 300px;
  }

  .hero-image {
    margin-top: 2rem;
  }
}


/* SECCIONES GENERALES */
.seccion-blanca, .seccion-gris, .seccion-cta-final {
  padding: 4rem 0;
}
.seccion-blanca { background: var(--fondo-claro); }
.seccion-gris   { background: var(--gris-claro); }
.seccion-cta-final {
  background: var(--verde);
  color: #fff;
  text-align: center;
}
.seccion-cta-final button {
  margin-top: 1rem;
}
.seccion-cta-final .contador-texto {
  margin-top: 1rem;
}

/* TITULOS Y SUBTITULOS */
.seccion-titulo {
  text-align: center;
  margin-bottom: 1rem;
}
.seccion-subtitulo {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gris);
  margin-bottom: 2rem;
}

/* GRIDS Y CARDS */
.grid-ayuda, .grid-retos, .grid-testimonios, .grid-videos {
  display: grid;
  gap: 2rem;
}
.grid-ayuda {
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
}
.item-ayuda {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--sombra);
  text-align: center;
  transition: var(--transicion);
}
.item-ayuda:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px var(--sombra);
}
.icono {
  font-size: 2rem;
  color: var(--verde);
  margin-bottom: 0.75rem;
}
.grid-retos {
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
}
.card-reto {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--sombra);
}
.card-reto h3 {
  margin-bottom: 0.75rem;
}
.card-reto ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.card-reto li {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}
.grid-testimonios {
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
}
.card-testimonio {
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--sombra);
  text-align: center;
}
.card-testimonio img {
  width: 100%;
  max-width: 220px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.grid-videos {
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
}
.video-responsive iframe {
  width: 100%;
  height: 315px;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--sombra);
}

/* TABLA COMPARATIVA */
.tabla-comparativa {
  margin: 2rem auto;
  width: 100%;
  border: 1px solid var(--borde);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px var(--sombra);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.fila {
  display: contents;
}
.tabla-comparativa div {
  padding: 1rem;
  border-bottom: 1px solid var(--borde);
  background: #fff;
}
.encabezado div {
  background: var(--gris-claro);
  font-weight: bold;
  color: var(--verde);
}

/* BENEFICIOS */
.lista-beneficios {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 2rem auto 0;
}
.lista-beneficios li {
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.lista-beneficios i {
  font-size: 1.2rem;
  margin-right: 0.6rem;
  color: var(--verde);
}

/* FOOTER */
.footer {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  padding: 2rem 1rem;
}
.footer a {
  color: #ccc;
}
.footer a:hover {
  color: #fff;
}

/* ANIMACIONES */
.animar {
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transicion);
}
.animar.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero .contenedor {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .video-responsive iframe { height: 220px; }
  .contenedor { padding: 0 1rem; }
}

.imagen-respaldo {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto 0;
}

.imagen-respaldo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.imagen-respaldo {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto 0;
}

.imagen-respaldo picture,
.imagen-respaldo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cta-group {
  text-align: center;
  margin-top: 1.5rem;
}

.cta-group button {
  display: inline-block;
  background-color: #2a7e3b;
  color: #fff;
  padding: 0.9rem 1.8rem;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 0.5rem;
}

.cta-group button:hover {
  background-color: #3a9e4b;
}

.cta-group .social-proof {
  display: block;
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .hero .hero-text {
    text-align: center;
  }

  .hero .hero-image {
    margin-top: 1.5rem;
  }
}

/* CÃ³mo funciona el reto */
#como-funciona {
  padding: 3rem 1rem;
  background-color: #ffffff;
}

.subtitulo {
  text-align: center;
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.pasos-reto {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.paso {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.paso:hover {
  transform: translateY(-5px);
}

.paso .icono {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2a7e3b;
}

.paso h3 {
  font-size: 1.2rem;
  color: #2a7e3b;
  margin-bottom: 0.5rem;
}

.paso p {
  font-size: 1rem;
  color: #333;
}

/* 2 columnas en pantallas grandes */
@media (min-width: 768px) {
  .pasos-reto {
    grid-template-columns: repeat(2, 1fr);
  }
}

.seccion-gris {
  background-color: #f8f9fa;
  padding: 3rem 1rem;
}



.card-reto {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.card-reto:hover {
  transform: translateY(-5px);
}

.card-reto h3 {
  font-size: 1.4rem;
  color: #2a7e3b;
  margin-bottom: 0.5rem;
}

.icono-reto {
  font-size: 2.5rem;
  color: #2a7e3b;
  margin: 0.5rem 0 1rem;
}

.card-reto ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.card-reto li {
  font-size: 1rem;
  color: #333;
  margin: 0.5rem 0;
}

.card-reto li i {
  margin-right: 0.5rem;
  color: #3a9e4b;
}

.boton-reto {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2a7e3b;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.boton-reto:hover {
  background-color: #3a9e4b;
}

.card-reto.destacado {
  border: 2px solid #2a7e3b;
}


.comparativa-retos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .comparativa-retos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Productos destacados */

.productos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.card-producto {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.card-producto:hover {
  transform: translateY(-5px);
}

.card-producto img {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto 1rem;
}

.card-producto h3 {
  font-size: 1.2rem;
  color: #2a7e3b;
}

.card-producto p {
  font-size: 0.95rem;
  color: #333;
  margin: 0.5rem 0 1rem;
}

.boton-producto {
  background-color: #2a7e3b;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  font-weight: bold;
}

.boton-producto:hover {
  background-color: #3a9e4b;
}

.boton-beneficios {
  background: none;
  border: none;
  color: #2a7e3b;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 0.5rem;
  text-decoration: underline;
}

.beneficios {
  list-style: none;
  padding-left: 0;
  font-size: 0.9rem;
  color: #444;
  text-align: left;
  margin: 0 auto;
  max-width: 220px;
  display: none;
}

.beneficios li {
  margin-bottom: 0.3rem;
}

.oculto {
  display: none;
}

.centrado {
  text-align: center;
}

@media (min-width: 768px) {
  .productos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .productos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.parrafo-final {
  max-width: 700px;
  margin: 2.5rem auto 1rem;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  color: #333;
}

.disclaimer {
  font-size: 0.75rem !important;
  color: #6c757d;
  margin-top: 2rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}




/* Testimonios */
.testimonios, .videos-testimonios {
  background: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.testimonios h2, .videos-testimonios h2 {
  font-size: 2rem;
  color: #2a7e3b;
  margin-bottom: 0.5rem;
}

.subtitulo {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.fila-testimonios, .fila-videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card-testimonio, .video-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 320px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.card-testimonio:hover, .video-box:hover {
  transform: translateY(-4px);
}

.card-testimonio img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card-testimonio p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.card-testimonio h3 {
  color: #2a7e3b;
  font-size: 1rem;
  margin-top: 0;
}

.video-box video {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.video-box p {
  font-weight: bold;
  color: #2a7e3b;
}

/* Responsive para mÃ³viles */
@media (max-width: 768px) {
  .fila-testimonios, .fila-videos {
    flex-direction: column;
    align-items: center;
  }
}

/* Estilo del Formulario */
.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
.form-buttons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.form-subtitulo {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#multiStepForm {
  max-width: 600px;
  margin: 0 auto;
}

#multiStepForm label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
}

/* FORMULARIO MULTISTEP */
#multiStepForm {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

#multiStepForm label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 500;
  color: #333333;
}

/* === NUEVO ESTILO FORMULARIO MULTIPASO === */
.form-step {
  max-width: 500px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-family: 'Poppins', sans-serif;
}

.form-step label {
  display: block;
  margin-bottom: 10px;
  color: #212529;
  font-weight: 500;
  font-size: 16px;
}

.form-step input[type="text"],
.form-step input[type="tel"],
.form-step input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.form-step input[type="text"]:focus,
.form-step input[type="tel"]:focus,
.form-step input[type="email"]:focus {
  border-color: #2a7e3b;
  outline: none;
}

/* Estilo para los checkboxes */
.form-step .checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px 20px;
  margin: 20px 0;
}

.form-step .checkbox-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

/* Checkbox estilo general */
.form-step input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #2a7e3b;
  cursor: pointer;
}

/* Botones */
.form-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.form-buttons button {
  background-color: #2a7e3b;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-buttons button:hover {
  background-color: #3a9e4b;
}

/* Ajustes responsivos para el formulario en mÃ³viles */
@media (max-width: 768px) {
  .checkbox-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .checkbox-grid label {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1.4;
  }

  .checkbox-grid input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 0; /* elimina espacio vertical */
  }

  .form-step input[type="text"],
  .form-step input[type="tel"],
  .form-step input[type="email"] {
    font-size: 16px;
    padding: 10px;
  }

  .form-step label {
    font-size: 16px;
  }
}

/* === FORMULARIO MULTISTEP === */
.formulario-container {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.formulario-container label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 500;
  color: #212529;
}

.formulario-container select,
.formulario-container input[type="text"],
.formulario-container input[type="email"],
.formulario-container textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  transition: border-color 0.3s ease;
}

.formulario-container input:focus,
.formulario-container select:focus,
.formulario-container textarea:focus {
  outline: none;
  border-color: #2a7e3b;
}

.checkbox-line {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #212529;
}

.checkbox-line input[type="checkbox"] {
  margin-right: 0.6rem;
  width: 18px;
  height: 18px;
  accent-color: #2a7e3b;
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.form-buttons button {
  flex: 1;
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-buttons .prev {
  background-color: #6c757d;
  color: #fff;
}

.form-buttons .next {
  background-color: #2a7e3b;
  color: #fff;
}

.form-buttons .prev:hover {
  background-color: #5a6268;
}

.form-buttons .next:hover {
  background-color: #3a9e4b;
}

@media (max-width: 600px) {
  .formulario-container {
    padding: 1.2rem;
    margin: 1.5rem 1rem;
  }
  .checkbox-line {
    font-size: 1rem;
  }
  .form-buttons {
    flex-direction: column;
  }
  .form-buttons button {
    width: 100%;
  }
}

.formulario-container {
  max-width: 500px;
  margin: 2rem auto;
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #eaeaea;
}

.form-step {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.form-step.active {
  display: block;
}

.form-step label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  color: #333;
}

.form-step select,
.form-step input[type="text"],
.form-step input[type="tel"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 1.2rem;
  font-size: 16px;
  font-family: inherit;
}

.checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 16px;
  flex: 0 0 48%;
}

@media (max-width: 600px) {
  .checkbox-line {
    flex: 0 0 100%;
  }
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.form-buttons button {
  background-color: #2a7e3b;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-buttons button:hover {
  background-color: #3a9e4b;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}








/* BOTÃ“N VER MÃS acordion  */
/* BOTÃ“N VER MÃS */
.boton-ver-mas {
  background-color: var(--verde);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  margin: 2rem auto;
  display: block;
  transition: var(--transicion);
}
.boton-ver-mas:hover {
  background-color: var(--verde-hover);
}

/* CONTENEDOR DEL ACORDEÃ“N */
#acordeon-productos {
  display: none;
  margin-top: 2rem;
  padding: 2rem 1rem;
  background-color: var(--gris-claro);
  border-radius: 1rem;
  box-shadow: 0 0 10px var(--sombra);
  margin-bottom: 3rem;
}
#acordeon-productos.abierto {
  display: block;
}

/* TÃTULOS H3 DEL ACORDEÃ“N */
#acordeon-productos h3 {
  font-size: 1.3rem;
  color: #fff;
  background-color: var(--verde);
  padding: 1rem;
  margin: 1rem 0;
  cursor: pointer;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transicion);
}
#acordeon-productos h3:hover {
  background-color: var(--verde-hover);
}

/* ÃCONOS DE H3 */
#toggle-acordeon .icono-toggle,
#acordeon-productos h3 .icono-h3 {
  font-weight: bold;
  font-size: 1.2rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

/* LISTAS DEL ACORDEÃ“N */
#acordeon-productos ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  text-align: left;
}
#acordeon-productos ul.abierto {
  max-height: 1000px;
  margin-bottom: 1.5rem;
}

/* ITEMS DE PRODUCTO */
#acordeon-productos li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--texto);
  text-align: left;
}

/* âœ” VERDE */
#acordeon-productos .check {
  color: var(--verde);
  font-weight: bold;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.3rem;
  line-height: 1;
}

/* NOMBRE DE PRODUCTO EN VERDE */
.producto-nombre {
  font-weight: 600;
  color: var(--verde);
  margin-right: 0.2rem;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .producto-nombre {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  #acordeon-productos li {
    flex-direction: column;
    align-items: flex-start;
  }

  .producto-nombre {
    margin-bottom: 0.3rem;
    display: inline-block;
    white-space: normal;
  }

  #acordeon-productos .check {
    margin-bottom: 0.2rem;
  }
}



/* CTA Final centrado */
#acordeon-productos .centrado {
  text-align: center;
  margin-top: 2rem;
}




/* TESTIMONIOS CON FOTOS */
.testimonios-fotos {
  background-color: var(--gris-claro);
  padding: 4rem 2rem;
}
.testimonios-fotos .fila-testimonios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonios-fotos .card-testimonio {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px var(--sombra);
  text-align: center;
  transition: transform 0.3s ease;
}
.testimonios-fotos .card-testimonio:hover {
  transform: translateY(-5px);
}
.testimonios-fotos .card-testimonio img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}
.testimonios-fotos .card-testimonio p {
  font-style: italic;
  color: var(--gris);
  margin-bottom: 0.5rem;
}
.testimonios-fotos .card-testimonio h3 {
  font-weight: 600;
  color: var(--verde);
  margin-top: 0;
  text-align: center;
}


/* TESTIMONIOS CON VIDEO */
.testimonios-videos {
  background-color: var(--fondo-claro);
  padding: 4rem 2rem;
}
.testimonios-videos .fila-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonios-videos .video-box {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px var(--sombra);
  text-align: center;
  transition: transform 0.3s ease;
}
.testimonios-videos .video-box:hover {
  transform: translateY(-5px);
}
.testimonios-videos .video-box iframe {
  width: 100%;
  height: 220px;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  border: none;
}
.testimonios-videos .video-box p {
  font-style: italic;
  color: var(--gris);
  margin-bottom: 0.5rem;
}
.testimonios-videos .video-box h3 {
  font-weight: 600;
  color: var(--verde);
  margin-top: 0;
}

/* hero */
.boton-principal {
  background-color: var(--verde);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center!important;
  display: inline-block;
  margin-top: 1rem;
  transition: var(--transicion);
}

.boton-principal:hover {
  background-color: var(--verde-hover);
}

@media (max-width: 768px) {
  .boton-principal {
    display: block;
    width: 90%;
    max-width: 320px;
    margin: 1.5rem auto 0;
  }
}

.cta-group {
  text-align: center;
  margin-top: 1.5rem;
}

.boton-principal {
  background-color: var(--verde);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-block;
  transition: var(--transicion);
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.boton-principal:hover {
  background-color: var(--verde-hover);
}

.social-proof {
  font-size: 0.9rem;
  color: var(--gris);
}


/* Hero */
.hero {
  background-color: var(--gris-claro);
  padding: 4rem 2rem;
}

.hero-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-texto {
  flex: 1 1 50%;
  max-width: 500px;
    text-align: center;
}

.hero-texto h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--verde);
}

.hero-texto p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: var(--gris);
}

.hero-texto .boton-verde {
  display: inline-block;
  background-color: var(--verde);
  color: #fff;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: var(--transicion);
  margin-top: 1rem;
}

.hero-texto .boton-verde:hover {
  background-color: var(--verde-hover);
}

.hero-imagen {
  flex: 1 1 40%;
  max-width: 500px;
}

.hero-imagen img {
  width: 100%;
  border-radius: 1rem;
}

/* Responsive MÃ“VIL */
@media (max-width: 768px) {
  .hero-grid {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-texto, .hero-imagen {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .hero-texto h1 {
    font-size: 2rem;
  }

  .hero-texto p {
    font-size: 0.95rem;
  }

  .hero-texto .boton-verde {
    margin: 1.5rem auto 0;
  }

  .hero-imagen img {
    max-width: 100%;
    height: auto;
  }
}


/* === NUEVO DISEÃ‘O COACH PERSONAL === */
.centrado-total {
  text-align: center;
}

.profile-center {
  margin-bottom: 2rem;
}

.profile-image.grande {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 5px solid var(--verde);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.nombre-coach {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 0.2rem;
}

.location {
  font-size: 1rem;
  color: #666;
  font-style: italic;
}

.coach-historia {
  max-width: 920px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

.coach-historia .cta-button {
  margin-top: 1.5rem;
}

.resultado-visual {
  margin-top: 3rem;
}

.imagen-testimonio {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: block;
}

.testimonio-cita {
  max-width: 700px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
  color: #333;
  font-style: italic;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .profile-image.grande {
    width: 130px;
    height: 130px;
  }

  .coach-historia, .testimonio-cita {
    padding: 0 1rem;
  }

  .imagen-testimonio {
    max-width: 280px;
  }
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #2e7d32;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

/* cobertura local */
.lista-comunas {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  text-align: left;
}

.lista-comunas li {
  background: #f8f9fa;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lista-comunas i {
  color: #2a7e3b;
  font-size: 1.2rem;
}

.frase-local {
  font-size: 1.1rem;
  color: #2a7e3b;
  text-align: center;
  margin-top: 2rem;
  font-weight: 500;
}

@media (max-width: 600px) {
  .lista-comunas {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lista-comunas li {
    justify-content: center;
  }
}

.lista-beneficios {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.lista-beneficios li {
  background: white;
  border-left: 5px solid var(--verde);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--sombra);
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.lista-beneficios i {
  color: var(--verde);
  margin-top: 4px;
  flex-shrink: 0;
}

.lista-beneficios i {
  font-size: 1.1rem; /* antes 1.4rem por defecto */
  margin-top: 3px;
}

@media (max-width: 480px) {
  .seccion-subtitulo {
    font-size: 1rem;
    line-height: 1.6;
  }

  .lista-beneficios li {
    font-size: 0.95rem;
    padding: 1rem;
  }

  .cta-emocional p {
    font-size: 1rem;
  }
}

.lista-beneficios {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  max-width: 800px;
  margin: 2rem auto;
  padding: 0;
  list-style: none;
}

.lista-beneficios li {
  font-size: 1.1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lista-beneficios i {
  color: #2e7d32;
  font-size: 1.2rem;
}

/* === PROBLEMA Y SOLUCIÃ“N === */
.grid-ps-productos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.tarjeta {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.ps-problemas h3 {
  color: #c0392b;
}
.ps-soluciones h3 {
  color: #2a7e3b;
}
.tarjeta h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.tarjeta ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tarjeta li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
  font-size: 1rem;
  color: #333;
}
.ps-problemas li i {
  color: #e74c3c;
  margin-top: 2px;
}
.ps-soluciones li i {
  color: #2a7e3b;
  margin-top: 2px;
}
.cta-centrado {
  text-align: center;
  margin-top: 2.5rem;
}
.boton-reto.grande {
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
}
@media (max-width: 600px) {
  .grid-ps-productos {
    flex-direction: column;
    align-items: center;
  }
}

/* CTA */
.seccion-cta-final {
  background: #f8f9fa;
  padding: 3rem 1rem;
  text-align: center;
}
.cta-titulo {
  font-size: 2rem;
  color: #2a7e3b;
  margin-bottom: 1rem;
}
.cta-subtitulo {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}
.boton-reto.grande {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  background: #2a7e3b;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
  transition: background 0.3s ease;
}
.boton-reto.grande:hover {
  background: #3a9e4b;
}
.contador-texto {
  margin-top: 2rem;
  font-size: 1rem;
  color: #6c757d;
}


.footer {
  background-color: #000;
  padding: 3rem 1.5rem;
  color: #e0e0e0;
  font-size: 0.9rem;
  text-align: center;
}

.footer p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer a {
  color: #6fbc5a;
  text-decoration: none;
  font-weight: 500;
}
.footer a:hover {
  text-decoration: underline;
}

.redes-sociales {
  margin: 1.5rem 0;
}

.redes-sociales a {
  margin: 0 0.6rem;
  font-size: 2rem;
  color: #6fbc5a;
  transition: color 0.3s ease;
}

.redes-sociales a:hover {
  color: #ffffff;
}

.direccion-footer small {
  color: #bbb;
  font-style: italic;
}

.footer .enlaces-footer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #aaa;
}

.seccion-blanca {
  background-color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}

.resumen-respaldo {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
}

.lista-respaldo {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.lista-respaldo li {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #2a7e3b;
}

.lista-respaldo i {
  margin-right: 0.5rem;
  color: #3a9e4b;
}

.imagen-respaldo img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.tarjetas-problemas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  margin: 2rem auto;
  max-width: 960px;
}


.problema-item {
  background-color: #fff3f3;
  border-left: 6px solid #dc3545;
  padding: 1rem 1.2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.icono-rojo {
  color: #dc3545;
  font-size: 1.2rem;
}

/* Responsive para mÃ³viles */
@media (max-width: 768px) {
  .tarjetas-problemas {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
}


.grid-ayuda {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.item-ayuda {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px var(--sombra);
  text-align: center;
}

.item-ayuda .icono {
  font-size: 2rem;
  color: var(--verde);
  margin-bottom: 0.8rem;
}

.boton-verde {
  display: inline-block;
  background-color: var(--verde);
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  transition: var(--transicion);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.boton-verde:hover {
  background-color: var(--verde-hover);
  transform: scale(1.03);
}


/* Comparativa de Retos */
.grid-comparativa-reto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .grid-comparativa-reto {
    grid-template-columns: 1fr;
  }
}

.tarjeta-reto {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--borde);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform 0.3s ease;
}

.tarjeta-reto:hover {
  transform: translateY(-4px);
}

.tarjeta-reto.destacado {
  background-color: #f0fff4;
  border: 2px solid var(--verde);
  box-shadow: 0 8px 18px rgba(0, 128, 0, 0.1);
}

.etiqueta-reto {
  position: absolute;
  top: -12px;
  left: 1rem;
  background-color: var(--gris);
  color: #fff;
  padding: 0.4rem 0.8rem;
  font-size: 0.7rem;
  border-radius: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.etiqueta-reto.recomendado {
  background-color: var(--verde);
}

.titulo-reto {
  font-size: 1.4rem;
  color: var(--verde);
  margin-bottom: 1rem;
  font-weight: bold;
}

.tarjeta-reto ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.tarjeta-reto li {
  margin-bottom: 0.8rem;
  padding-left: 1.4rem;
  position: relative;
  font-size: 1rem;
  color: var(--texto);
}

/* âœ” Verde al inicio de cada item */
.tarjeta-reto li::before {
  content: 'âœ”';
  position: absolute;
  left: 0;
  color: var(--verde);
  font-weight: bold;
}

/* Estilo especial para el primer Ã­tem (personal/grupal) */
.tarjeta-reto li:first-child {
  list-style: none;
  padding-left: 0;
  font-weight: bold;
  color: var(--verde);
  position: static;
}
.tarjeta-reto li:first-child::before {
  content: none;
}

.boton-secundario {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #e9ecef;
  color: var(--verde);
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.boton-secundario:hover {
  background-color: #d4dadf;
}

.boton-verde {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--verde);
  color: #fff;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.boton-verde:hover {
  background-color: var(--verde-hover);
}

.texto-recomendacion {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--texto);
  text-align: center;
}

.texto-recomendacion a {
  font-weight: bold;
  color: var(--verde);
  text-decoration: underline;
}

.tarjeta-reto {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarjeta-reto:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}


/* contador */
/* General para todos los tamaÃ±os */
.contador-reto {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin: 2.5rem auto;
  max-width: 960px;
  padding: 0;
}

.contador-reto .bloque {
  background: #fff;
  border: 2px solid var(--verde);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 6px var(--sombra);
  min-width: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contador-reto span {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--verde);
  line-height: 1;
}

.contador-reto small {
  font-size: 0.9rem;
  color: var(--gris);
  margin-top: 0.4rem;
}

/* SOLO MÃ“VIL: Compacto, sin scroll */
@media (max-width: 768px) {
  .contador-reto {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
    margin: 2rem auto;
    max-width: 100%;
    overflow-x: hidden; /* ðŸ”’ sin scroll */
  }

  .contador-reto .bloque {
    flex: 1 1 22%;
    min-width: auto;
    padding: 0.6rem;
    border-radius: 0.75rem;
  }

  .contador-reto span {
    font-size: 1.5rem;
    line-height: 1;
  }

  .contador-reto small {
    font-size: 0.7rem;
    margin-top: 0.2rem;
  }
}


/* testimonio */
.fila-testimonios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center; /* Centra horizontalmente las tarjetas si sobran */
  text-align: center; /* Centra el contenido de texto */
}

.fila-testimonios p {
  font-weight: normal;
  font-size: 0.95rem;
  color: var(--texto);
  line-height: 1.5;
  text-align: center;
}


.video-box iframe {
  width: 100%;
  height: 200px;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.video-box p,
.card-testimonio p {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--texto);
  line-height: 1.5;
}

.card-testimonio img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.card-testimonio p em,
.video-box p em {
  display: block;
  margin-top: 0.3rem;
  font-style: italic;
  color: var(--gris);
  font-size: 0.85rem;
}

.disclaimer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--gris);
  text-align: center;
}

.nombre-testimonio {
  display: block;
  margin-top: 0.3rem;
  font-weight: bold;
  color: var(--verde);
  font-size: 0.9rem;
  text-align: center;
}


/* coach */
.coach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .coach-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.foto-coach {
  width: 100%;
  max-width: 250px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}

.nombre-coach {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--verde);
}

.coach-localidad {
  font-size: 1rem;
  color: var(--gris);
}

.coach-historia p {
  margin-bottom: 1rem;
}

.testimonio-cita {
  margin-top: 1rem;
  font-style: italic;
  color: var(--texto);
}

/* cobertura */
.grid-comunas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto;
}

.grid-comunas ul {
  list-style: none;
  padding-left: 0;
}

.grid-comunas li {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--texto);
}

.grid-comunas i {
  color: var(--verde);
  margin-right: 0.5rem;
}

/* productos */
.productos-grid-mejorado {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.card-producto {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.card-producto img {
  max-width: 120px;
  margin-bottom: 1rem;
}

.card-producto h3 {
  font-size: 1.2rem;
  color: var(--verde);
  margin-bottom: 0.5rem;
}

.card-producto p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.boton-producto {
  background: var(--verde);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.boton-producto:hover {
  background: var(--verde-hover);
}

.bloque-texto-productos {
  margin-top: 2.5rem;
  text-align: center;
}

.bloque-texto-productos p {
  max-width: 600px;
  margin: 0 auto 1rem auto;
  font-size: 0.95rem;
  color: var(--texto);
}

@media (min-width: 600px) {
  .productos-grid-mejorado {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .productos-grid-mejorado {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* respaldo */
.grid-respaldo {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.item-respaldo {
  background-color: var(--fondo-claro);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px var(--sombra);
}

.item-respaldo .icono-verde {
  font-size: 2rem;
  color: var(--verde);
  margin-bottom: 1rem;
}

.item-respaldo h3 {
  color: var(--verde);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.item-respaldo p {
  font-size: 0.95rem;
  color: var(--texto);
}

.imagen-respaldo {
  margin-top: 3rem;
  text-align: center;
}

.imagen-respaldo img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

@media (min-width: 768px) {
  .grid-respaldo {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* RESUMEN HERBALIFE */
.resumen-herbalife {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  background-color: var(--fondo-claro);
  border-radius: 1rem;
  box-shadow: 0 2px 8px var(--sombra);
  padding: 1.5rem 1rem;
}

.resumen-herbalife .dato {
  text-align: center;
  flex: 1 1 120px;
}

.resumen-herbalife .dato strong {
  display: block;
  font-size: 1.6rem;
  color: var(--verde);
  font-weight: 700;
}

.resumen-herbalife .dato span {
  font-size: 0.95rem;
  color: var(--texto);
}





/* negocio */
.grid-oportunidad {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.item-negocio {
  background-color: var(--gris-claro);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 6px var(--sombra);
}

.item-negocio .icono-verde {
  font-size: 2rem;
  color: var(--verde);
  margin-bottom: 1rem;
}

.item-negocio h3 {
  font-size: 1.1rem;
  color: var(--verde);
  margin-bottom: 0.5rem;
}

.item-negocio p {
  font-size: 0.95rem;
  color: var(--texto);
}

@media (min-width: 768px) {
  .grid-oportunidad {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* FAQ */

.faq-lista {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-lista details {
  background: var(--fondo-claro);
  border: 1px solid var(--borde);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 5px var(--sombra);
  cursor: pointer;
  transition: var(--transicion);
}

.faq-lista summary {
  font-weight: 600;
  font-size: 1rem;
  color: var(--verde);
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

/* Ícono personalizado (se inserta con un <span class="faq-icon">+</span> en el HTML) */
.faq-icon {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--verde);
  transition: transform 0.3s ease;
}

.faq-lista summary::-webkit-details-marker {
  display: none !important;
}
.faq-lista summary::marker {
  content: "" !important;
  display: none !important;
}


.faq-lista p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--texto);
}



/* CTA */
#cta-final {
  background-color: var(--verde);
  color: #fff;
  padding: 4rem 1rem;
  text-align: center;
}

#cta-final h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

#cta-final .subtitulo {
  color: #fff;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

#cta-final .mini-texto {
  color: #fff;
  margin-top: 2rem;
  font-size: 1rem;
}

.boton-blanco-grande {
  background-color: #fff;
  color: var(--verde);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: var(--transicion);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: inline-block;
}

.boton-blanco-grande:hover {
  background-color: var(--verde-hover);
  color: #fff;
}


/* === FORMULARIO MULTISTEP OPTIMIZADO === */
#formulario {
  padding: 4rem 1rem; /* mÃ¡s espacio arriba y abajo */
  text-align: center;
}

#formulario .contenedor {
  max-width: 600px;
  margin: 0 auto;
}

/* TÃ­tulo y subtÃ­tulo */
#formulario .seccion-titulo {
  margin-bottom: 1rem;
}

#formulario .seccion-subtitulo {
  font-size: 1.1rem;
  color: var(--gris);
  margin-bottom: 2rem;
}

/* Formulario base */
#multiStepForm {
  background: #fff;
  padding: 2rem;
  border-radius: 1.2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

#multiStepForm .step {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

#multiStepForm .step.active {
  display: block;
}

/* Etiquetas centradas */
#multiStepForm label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--texto);
  text-align: center;
  font-size: 1rem;
}

/* Inputs y selects */
#multiStepForm input,
#multiStepForm select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--borde);
  border-radius: 0.5rem;
  margin-bottom: 1.2rem;
  background: #f9f9f9;
  transition: border-color 0.3s ease;
  text-align: center;
}

#multiStepForm input:focus,
#multiStepForm select:focus {
  border-color: var(--verde);
  outline: none;
}

/* BotÃ³n */
#multiStepForm button.boton-verde {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background: var(--verde);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

#multiStepForm button.boton-verde:hover {
  background: var(--verde-hover);
}

/* Campo "Otro objetivo" */
#otro-objetivo-container {
  margin-top: 1rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #formulario {
    padding: 3rem 1rem;
  }

  #multiStepForm {
    padding: 1.5rem;
  }

  #multiStepForm input,
  #multiStepForm select {
    font-size: 1rem;
  }

  #multiStepForm label {
    font-size: 1rem;
  }
}

/* TÃ­tulo del formulario - solo una lÃ­nea en escritorio */
@media (min-width: 769px) {
  #formulario .seccion-titulo {
    white-space: nowrap;
    font-size: 2rem;
    line-height: 1.2;
  }

  #formulario .contenedor {
    max-width: 720px;
  }
}


/* === RUEDA DE LA FORTUNA === */
.popup-rueda {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-rueda.oculto {
  display: none;
}
.popup-contenido {
  position: relative;
  background: #fff;
  padding: 2rem;
  border-radius: 1.2rem;
  text-align: center;
  max-width: 360px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: fadeIn 0.4s ease;
}
.titulo-rueda {
  font-size: 1.4rem;
  color: var(--verde);
  margin-bottom: 1rem;
}
#ruedaCanvas {
  margin: 0 auto 1.5rem;
  display: block;
  max-width: 100%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #ffffff 60%, #f8f9fa);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}
.popup-contenido canvas {
  border-radius: 50%;
  border: 4px solid var(--verde);
  background: #fff;
}
.boton-verde-grande {
  background: var(--verde);
  color: #fff;
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1rem;
  display: inline-block;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.boton-verde-grande:hover {
  background: var(--verde-hover);
  transform: scale(1.05);
}
.resultado-rueda {
  margin-top: 1.5rem;
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--verde);
  animation: flotarTexto 1s ease-out;
}
@keyframes flotarTexto {
  0% {
    transform: scale(0.8) translateY(20px);
    opacity: 0;
  }
  50% {
    transform: scale(1.1) translateY(-5px);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(0);
  }
}
.cerrar-popup {
  position: absolute;
  top: 4px;
  right: 12px;
  width: 32px;
  height: 32px;
  font-size: 1.4rem;
  line-height: 28px;
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 50%;
  color: #333;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}
.cerrar-popup:hover {
  transform: scale(1.1);
  background: #f5f5f5;
}

.oculto {
  display: none !important;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.flecha-indicador {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: var(--verde);
  z-index: 10;
}
.efecto-brillo {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  border-radius: 1rem;
  background-image: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 80%);
  animation: brilloPopup 0.8s ease-out forwards;
  opacity: 0;
  z-index: 10000;
}
@keyframes brilloPopup {
  0% { opacity: 0; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0; transform: scale(1); }
}



.lista-reto {
  margin-bottom: 1.5rem;
  text-align: left;
  padding-left: 1rem;
}
.linea-reto {
  font-size: 1rem;
  color: var(--texto);
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.2rem;
}
.linea-reto::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--verde);
  font-weight: bold;
}
.linea-reto.especial {
  font-weight: bold;
  color: var(--verde);
}

.boton-bloqueado {
  background-color: #ccc !important;
  color: #666 !important;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.8;
  transform: none !important;
}

/* videos */
.fila-testimonios.fila-videos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.video-box {
  flex: 0 0 30%;
  max-width: 320px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-placeholder {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  cursor: pointer;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.video-placeholder img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder .boton-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: white;
  text-shadow: 0 0 10px #000;
  pointer-events: none;
}

.video-placeholder iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .fila-testimonios.fila-videos {
    flex-direction: column;
    flex-wrap: nowrap;
    overflow-x: visible;
    align-items: center;
  }

  .video-box {
    width: 100%;
    max-width: 480px;
  }
}

.oculto {
  display: none !important;
}

.icono-social {
  font-family: 'Font Awesome 6 Brands';
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  display: inline-block;
  color: var(--verde);
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: transform 0.3s ease;
}

.icono-social:hover {
  transform: scale(1.15);
  color: var(--verde-hover);
}

/* === ÍCONOS GENERALES (base) === */
.icono-solido {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-style: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  line-height: 1;
}

/* === VARIANTE: íconos grandes (sección ayuda, destacados) === */
.icono-grande {
  font-size: 2.5rem;
  color: var(--verde);
  margin-bottom: 1rem;
  display: block;
  text-align: center;
}

/* === VARIANTE: íconos pequeños inline (listas, comunas, frases) === */
.icono-inline {
  font-size: 1rem;
  margin-right: 0.5rem;
  color: var(--verde);
}

/* === VARIANTE: ícono rojo para alertas o problemas === */
.icono-rojo {
  color: #dc3545;
}

.icono-verde {
  color: var(--verde);
}

.icono-solido {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-style: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  line-height: 1;
}

.icono-grande {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  text-align: center;
}

.icono-brand {
  font-family: 'Font Awesome 6 Brands';
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  color: color: #ffffff;

  display: inline-block;
  line-height: 1;
}

/* Centrar los títulos de cada reto */
.tarjeta-reto .titulo-reto {
  text-align: center;
}

/* Centrar título */
.tarjeta-reto .titulo-reto {
  text-align: center;
}

/* Centrar botón dentro de la tarjeta */
.tarjeta-reto {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Asegurar que el botón no se estire ni herede anchura indeseada */
.tarjeta-reto a.boton-secundario,
.tarjeta-reto a.boton-verde {
  display: inline-block;
  margin-top: 1.5rem;
  text-align: center;
}




/* FIX sintaxis */
.icono-brand { color: #ffffff; }

/* Unificar hero (la última palabra) */
.hero { background-color: var(--gris-claro); padding: 4rem 2rem; }
.hero-grid { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 2rem; }

/* Botones coherentes */
.boton-verde,.boton-principal,.boton-reto,.boton-producto { background: var(--verde); color:#fff; border:none; text-decoration:none; transition: var(--transicion); }
.boton-verde:hover,.boton-principal:hover,.boton-reto:hover,.boton-producto:hover { background: var(--verde-hover); }

/* Accesibilidad focus */
a:focus-visible, button:focus-visible,
.boton-verde:focus-visible, .boton-principal:focus-visible { outline: 3px solid #9ad1ab; outline-offset: 2px; border-radius: 8px; }

/* Acordeón estable */
#acordeon-productos ul { max-height: 0; overflow: hidden; }
#acordeon-productos ul.abierto { max-height: 1200px; padding-block: .5rem; }

/* Una sola versión de lista-beneficios */
.lista-beneficios { display:grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap:1rem; }
.lista-beneficios li { background:#fff; border-left:5px solid var(--verde); padding:1rem; border-radius:8px; }

/* Formularios: estado único */
.form-step { display:none; }
.form-step.active { display:block; }

/* Texto general del footer en blanco */
.footer,
.footer p,
.footer small,
.footer .enlaces-footer { color: #fff; }

/* Mantén los enlaces en verde */
.footer a { color: #6fbc5a; }
.footer a:hover { color: #6fbc5a; text-decoration: underline; }


