/* RESET & BASE ------------------------------------------ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #7ed957;
  --green-dark: #54c356;
  --blue: #2f327d;
  --blue-light: #3353e5;
  --purple: #4b3ccf;
  --text-main: #1f2431;
  --text-muted: #6e7587;
  --bg: #f3f6fb;
  --white: #ffffff;
  --shadow-soft: 0 16px 40px rgba(15, 40, 74, 0.12);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text-main);
  background: var(--bg);
  line-height: 1.6;
}

/* UTILS ------------------------------------------------ */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: #f9fbff;
}

.section-kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.section-text {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 520px;
}

.section-text-center {
  margin: 0 auto;
  text-align: center;
}

.section-heading-center {
  text-align: center;
  margin-bottom: 40px;
}

/* BUTTONS ---------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn-secondary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(81, 189, 90, 0.28);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(81, 189, 90, 0.35);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid rgba(47, 50, 125, 0.16);
}

.btn-outline:hover {
  border-color: rgba(47, 50, 125, 0.45);
  background: rgba(47, 50, 125, 0.04);
}

.btn-soft {
  background: #eef4ff;
  color: var(--blue);
}

.btn-soft:hover {
  background: #e1ebff;
}

.btn-light {
  background: var(--white);
  color: var(--blue);
}

.btn-light:hover {
  background: #f3f5ff;
}

.btn-link {
  border: none;
  background: transparent;
  color: var(--blue);
  font-weight: 500;
  padding-inline: 0;
}

.btn-link:hover {
  text-decoration: underline;
}

.btn.full-width {
  width: 100%;
}

.btn.small {
  padding-block: 8px;
  font-size: 13px;
}

/* TAGS ------------------------------------------------- */

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
}

.tag-soft-green {
  background: #e6f8ec;
  color: #20863f;
}

.tag-soft-blue {
  background: #e7efff;
  color: #3550d6;
}

.tag-soft-purple {
  background: #ece7ff;
  color: #5b42c7;
}

/* NAV -------------------------------------------------- */

.hero {
  background: linear-gradient(135deg, #83dd57, #6bca4b);
  color: var(--white);
  padding-bottom: 120px;
  border-radius: 0 0 50% 50% / 0 0 18% 18%;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.09);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -60px;
  height: 120px;
  background: var(--bg);
  border-radius: 50%;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 20px 0;
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo img {
  height: 32px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 22px;
  font-size: 13px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  opacity: 0.86;
}

.nav-login {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  background: #f4fbff;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  text-decoration: none;
}

/* HERO CONTENT ---------------------------------------- */

.hero-content {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 40px 0 40px;
}

.hero-copy {
  flex: 1.1;
  max-width: 520px;
}

.hero-eyebrow {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.hero-copy h1 {
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 18px;
}

.hero-bullets {
  list-style: none;
  font-size: 13px;
  margin-bottom: 20px;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.hero-bullets li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  margin-top: 7px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  opacity: 0.92;
}

.hero-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-info .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
}

/* HERO FIGURE ---------------------------------------- */

.hero-figure {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-person {
  position: relative;
  max-width: 280px;
}

.hero-person img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  background: #c4c4c4;
}

.hero-person-badge {
  position: absolute;
  right: -32px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(19, 39, 69, 0.3);
  color: var(--blue);
  max-width: 210px;
}

.hero-person-badge img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e8f1ff;
}

.badge-title {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 3px;
}

.badge-text {
  font-size: 11px;
  color: var(--text-muted);
}

/* RUTA ------------------------------------------------ */

.ruta {
  margin-top: -40px;
  padding-top: 40px;
}

.ruta-header {
  text-align: center;
  margin-bottom: 40px;
}

.ruta-logo {
  height: 40px;
  margin: 0 auto 12px;
}

.ruta-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.ruta-header h2 {
  font-size: 22px;
  margin-bottom: 6px;
}

.ruta-subtitle {
  max-width: 520px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--text-muted);
}

.ruta-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.ruta-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 20px 20px;
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  box-shadow: var(--shadow-soft);
}

.ruta-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e7f6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.ruta-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.ruta-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.ruta-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  justify-content: center;
}

/* TWO COLUMN LAYOUT ----------------------------------- */

.two-column {
  display: flex;
  gap: 40px;
  align-items: center;
}

.two-column-reverse {
  flex-direction: row-reverse;
}

.column {
  flex: 1;
}

/* ASISTENTE 24/7 -------------------------------------- */

.chat-card {
  background: var(--white);
  border-radius: 32px;
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-soft);
  max-width: 340px;
  margin: 0 auto;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.chat-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-user img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d8e3ff;
}

.chat-name {
  font-size: 13px;
  font-weight: 600;
}

.chat-status {
  font-size: 11px;
  color: var(--text-muted);
}

.chat-whatsapp {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #d5ffe1;
}

.chat-message {
  background: #f3f7ff;
  border-radius: 16px 16px 16px 4px;
  padding: 10px 12px;
  font-size: 12px;
  margin-bottom: 9px;
  color: var(--text-main);
}

.chat-message-me {
  background: #dff8e8;
  border-radius: 16px 16px 4px 16px;
  margin-left: 40px;
}

.icon-list {
  list-style: none;
  font-size: 13px;
  color: var(--text-main);
  margin: 18px 0 18px;
}

.icon-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 6px;
}

.icon-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-dark);
  margin-top: 7px;
}

/* BADGE / CERTIFICADO --------------------------------- */

.badge-card {
  max-width: 260px;
  margin: 0 auto;
  background: var(--blue);
  color: var(--white);
  border-radius: 26px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.badge-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 14px;
  background: #22347e;
  border-radius: 50%;
}

.badge-main-title {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
}

/* REGISTRO / PEOPLE CARD ------------------------------ */

.people-card {
  background: var(--white);
  border-radius: 28px;
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-soft);
  max-width: 340px;
  margin: 0 auto;
}

.people-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
}

.people-header img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e1ecff;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.people-grid img {
  width: 100%;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  background: #d4d4d4;
}

.people-footer {
  display: flex;
  gap: 8px;
}

/* PROGRAMAS DETALLE ----------------------------------- */

.program-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
}

.program-row:last-of-type {
  margin-bottom: 0;
}

.program-row-reverse {
  flex-direction: row-reverse;
}

.program-media {
  flex: 1;
}

.program-card-img {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.program-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #cfcfcf;
}

.program-content {
  flex: 1.1;
}

.program-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  margin-bottom: 6px;
  display: block;
}

.program-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.program-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.program-list {
  list-style: none;
  font-size: 13px;
  color: var(--text-main);
  margin-bottom: 16px;
}

.program-list li {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.program-list li::before {
  content: "•";
  color: var(--blue);
  font-weight: 700;
}

/* CTA BANNER ------------------------------------------ */

.cta-banner {
  padding: 70px 0;
}

.cta-banner-inner {
  background: linear-gradient(125deg, var(--blue-light), var(--purple));
  border-radius: 32px;
  padding: 32px 34px;
  display: flex;
  gap: 32px;
  align-items: center;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.cta-banner-text h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.cta-overline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  opacity: 0.85;
}

.cta-banner-text p {
  font-size: 14px;
  margin-bottom: 16px;
}

.cta-banner-img img {
  width: 190px;
  border-radius: 28px;
  background: #d5daf9;
}

/* TESTIMONIOS ----------------------------------------- */

.testimonial-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 18px;
}

.testimonial-photo img {
  width: 100%;
  border-radius: 30px;
  height: 230px;
  object-fit: cover;
  background: #d6d6d6;
}

.testimonial-card {
  background: var(--white);
  border-radius: 22px;
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-soft);
}

.testimonial-text {
  font-size: 13px;
  color: var(--text-main);
  margin-bottom: 10px;
}

.testimonial-name {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-rating .star {
  color: #ffb400;
  font-size: 14px;
}

/* PRICING --------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 20px 18px 22px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.price-card h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.price-badge {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.price-main {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 2px;
}

.price-main span {
  font-size: 13px;
  font-weight: 500;
}

.price-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.price-list {
  list-style: none;
  font-size: 13px;
  color: var(--text-main);
  margin-bottom: 16px;
}

.price-list li {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.price-list li::before {
  content: "•";
  color: var(--green-dark);
  font-weight: 700;
}

.price-card-featured {
  border: 2px solid #58d077;
  transform: translateY(-8px);
}

.price-card-featured .price-main {
  color: #2a9d55;
}

/* FAQ ------------------------------------------------- */

.faq-title {
  font-size: 20px;
  margin-bottom: 18px;
  text-align: center;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 10px;
  box-shadow: 0 10px 26px rgba(16, 28, 56, 0.08);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "﹀";
  float: right;
  font-size: 12px;
  color: var(--text-muted);
}

.faq-item[open] summary::after {
  content: "︿";
}

.faq-item p {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* LINK ARROW ------------------------------------------ */

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--blue);
  text-decoration: none;
}

.link-arrow::after {
  content: "→";
  font-size: 13px;
}

/* FOOTER ---------------------------------------------- */

.footer {
  background: var(--blue);
  color: var(--white);
  padding: 36px 0 26px;
  margin-top: 40px;
}

.footer-inner {
  text-align: center;
}

.footer-logo-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo {
  height: 32px;
  margin-bottom: 4px;
}

.footer-pill {
  font-size: 13px;
  background: rgba(0, 0, 0, 0.18);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

.footer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.footer-text {
  font-size: 11px;
  max-width: 680px;
  margin: 0 auto 14px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-link {
  color: inherit;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-separator {
  opacity: 0.5;
}

/* RESPONSIVE ------------------------------------------ */

@media (max-width: 992px) {
  .hero {
    border-radius: 0 0 40px 40px;
  }

  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    padding-bottom: 30px;
  }

  .hero-bullets li {
    justify-content: center;
  }

  .hero-info-row {
    justify-content: center;
  }

  .hero-person-badge {
    right: 0;
  }

  .two-column,
  .program-row,
  .program-row-reverse {
    flex-direction: column;
  }

  .cta-banner-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .testimonial-layout {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-copy h1 {
    font-size: 22px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .section {
    padding: 64px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card-featured {
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding-inline: 16px;
  }

  .hero-person-badge {
    display: none;
  }

  .cta-banner-inner {
    padding: 24px 20px;
  }

  .chat-card,
  .people-card {
    border-radius: 24px;
  }
}

/* ============ FOOTER REAL ============ */

.footer-real {
  background: #055bcb; /* Azul real del diseño */
  color: #ffffff;
  padding: 20px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* LOGO */
.footer-real-logo {
  height: 65px;
  /* margin-bottom: 10px; */
}

/* TÍTULO */
.footer-real-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 25px;
}

/* FORMULARIO */
.footer-real-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.footer-real-form input {
  width: 280px;
  padding: 14px 20px;
  border-radius: 40px;
  border: none;
  outline: none;
  font-size: 14px;
  color: #444;
  background: #e8e8e8;
}

.footer-real-form button {
  padding: 14px 36px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  background: #77d255; /* Verde botón */
  color: #ffffff;
  font-weight: 600;
}

.footer-real-form button:hover {
  background: #68c249;
}

/* AVISO IMPORTANTE */
.footer-warning {
  max-width: 900px;
  margin: 0 auto 40px;
  background: #2f327d; /* Azul oscuro semi transparente */
  padding: 20px 26px;
  border-radius: 18px;
  text-align: left;
  font-size: 11px;
  line-height: 1.5;
  color: #b2b3cf;
}

/* LINKS */
.footer-real-links {
  margin-bottom: 15px;
}

.footer-real-links a {
  color: #ffffff;
  font-size: 15px;
  margin: 0 18px;
  text-decoration: underline;
}

.footer-real-links a:hover {
  opacity: 0.85;
}

/* COPYRIGHT */
.footer-real-copy {
  font-size: 14px;
  margin-top: 5px;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .footer-real-form {
    flex-direction: column;
    gap: 10px;
  }

  .footer-real-form input {
    width: 100%;
  }

  .footer-real-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}

/* ====================== PLANES ======================= */

.planes-section {
  padding: 80px 0;
}

.planes-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-subtext {
  font-size: 16px;
  color: #555;
  margin-top: 8px;
}

/* GRID */
.planes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD */
.plan-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

/* Step */
.plan-step {
  font-size: 13px;
  font-weight: 600;
  color: #3f51b5;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

/* Price FREE */
.plan-price-big {
  font-size: 40px;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
}

/* Prices */
.plan-price {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  margin-bottom: 18px;
}

.plan-price span {
  display: block;
  font-size: 12px;
  color: #555;
  margin-top: 3px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Title */
.plan-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.plan-title span {
  font-weight: 500;
}

/* Descripción */
.plan-desc {
  font-size: 15px;
  color: #444;
  margin-bottom: 16px;
}

/* Lista con imágenes */
.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  margin: 10px 0;
}

.plan-list li img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Result box */
.plan-result {
  background: #f1f3f6;
  padding: 16px;
  border-radius: 12px;
  font-size: 14px;
  color: #333;
  margin-bottom: 24px;
}

/* Featured */
.plan-featured {
  border: 2px solid #7cd36b;
  transform: scale(1.05);
  position: relative;
}

.plan-featured-tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #7cd36b;
  color: white;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 30px;
}

/* Botones */
.plan-btn {
  padding: 14px;
  border-radius: 40px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.plan-btn-green {
  background: #7cd36b;
  color: #ffffff;
}

.plan-btn-blue {
  background: #2f327d;
  color: #ffffff;
}

/* Hover */
.plan-btn-green:hover {
  background: #6bbd5d;
}

.plan-btn-blue:hover {
  background: #262865;
}

/* Responsive */
@media (max-width: 900px) {
  .planes-grid {
    grid-template-columns: 1fr;
  }

  .plan-featured {
    transform: none;
  }
}

/* ============================ */
/*   SECCIÓN TESTIMONIOS       */
/* ============================ */

.testimonios-section {
  padding: 80px 0;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ----------- COL IZQUIERDA ----------- */

.testimonios-left h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2f327d;
  line-height: 1.2;
  margin-bottom: 18px;
}

.testimonios-subtext {
  font-size: 18px;
  color: #6b6e7a;
  margin-bottom: 30px;
  max-width: 420px;
}

.testimonios-btn {
  display: inline-block;
  background: #7cd36b;
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.testimonios-btn:hover {
  background: #6cbc5f;
}

/* ----------- COL DERECHA ----------- */

.testimonios-right {
  position: relative;
}

/* Imagen principal */
.testimonios-image {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.testimonios-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #ddd;
}

/* Botón flecha */
.testimonios-next-btn {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);

  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.testimonios-next-btn img {
  width: 20px;
  height: 20px;
}

/* ----------- Tarjeta Testimonio ----------- */

.testimonio-card {
  position: absolute;
  bottom: -40px;
  left: 30px;
  right: 30px;

  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #72ce64;
}

.testimonio-text {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonio-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonio-author {
  font-weight: 700;
  color: #2f327d;
  font-size: 15px;
}

.testimonio-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonio-rating img {
  width: 18px;
  height: 18px;
}

.testimonio-reviews {
  font-size: 13px;
  color: #6b6e7a;
  margin-left: 6px;
}

/* ---------- Responsive ---------- */

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

  .testimonio-card {
    position: relative;
    bottom: auto;
    left: 0;
    right: 0;
    margin-top: 20px;
  }

  .testimonios-next-btn {
    display: none;
  }
}

/* ========================= */
/* CTA REAL — IGUAL AL DISEÑO */
/* ========================= */

.cta-real {
  padding: 60px 0;
}

.cta-real-inner {
  background: linear-gradient(135deg, #4e57e7 0%, #6e35d6 100%);
  border-radius: 26px;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ========================= */
/* TEXTOS */
/* ========================= */

.cta-real-text {
  flex: 1.1;
}

.cta-real-text h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-real-desc {
  font-size: 17px;
  color: #e6e6e6;
  line-height: 1.55;
  margin-bottom: 26px;
  max-width: 480px;
}

.cta-real-btn {
  display: inline-block;
  background: #7cd36b;
  color: white;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.cta-real-btn:hover {
  background: #6bc35c;
}

/* ========================= */
/* IMAGEN PRINCIPAL */
/* ========================= */

.cta-real-figure {
  flex: 1;
  position: relative;
  height: 380px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.cta-real-person {
  height: 360px;
  z-index: 10;
  position: relative;
  object-fit: contain;
}

/* ========================= */
/* ÍCONOS DECORATIVOS */
/* ========================= */

.cta-icon {
  position: absolute;
  width: 85px;
  height: 85px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
}

/* Ubicaciones exactas según la imagen */
.icon-1 {
  top: 40px;
  right: 110px;
}
.icon-2 {
  top: 100px;
  right: 40px;
}
.icon-3 {
  bottom: 120px;
  right: 90px;
  width: 70px;
  height: 70px;
}
.icon-4 {
  bottom: 50px;
  right: 140px;
  width: 65px;
  height: 65px;
}
.icon-5 {
  bottom: 30px;
  right: 20px;
  width: 55px;
  height: 55px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 900px) {
  .cta-real-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .cta-real-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-real-figure {
    height: 320px;
  }

  .cta-real-person {
    height: 300px;
  }

  .cta-icon {
    display: none; /* ocultar decoraciones en mobile */
  }
}
/* =============================== */
/*   SECCIÓN PROGRAMAS – IMAGENES  */
/* =============================== */

.programs-section-real {
  padding: 100px 0;
}

.program-row-real {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 120px;
}

.program-row-real.reverse {
  flex-direction: row-reverse;
}

/* IMAGEN COMPLETA DEL PROGRAMA */
.program-img-real {
  width: 480px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}

/* TEXTO A LA DERECHA / IZQUIERDA */

.program-text-real {
  flex: 1;
  max-width: 500px;
}

.program-text-real h3 {
  font-size: 30px;
  color: #2f327d;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}

.program-text-real h3 span {
  font-size: 21px;
  font-weight: 500;
}

.program-text-real p {
  font-size: 17px;
  color: #5b606c;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* BOTÓN */
.program-btn-real {
  background: #6bdc72;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}

.program-btn-real:hover {
  background: #5ec565;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .program-row-real,
  .program-row-real.reverse {
    flex-direction: column;
    text-align: center;
  }

  .program-img-real {
    width: 100%;
    max-width: 420px;
  }
}

/* =============================== */
/* SECCIÓN REGISTRO (DISEÑO REAL) */
/* =============================== */

.registro-real {
  padding: 120px 0;
}

.registro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ------------------------------- */
/* IMAGEN COMPLETA */
/* ------------------------------- */

.registro-main-img {
  width: 100%;
  max-width: 680px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 20px;
}

/* ------------------------------- */
/* TEXTO */
/* ------------------------------- */

.registro-text-col h2 {
  font-size: 42px;
  line-height: 1.22;
  font-weight: 700;
  color: #2f327d;
  margin-bottom: 22px;
}

.registro-desc {
  font-size: 18px;
  color: #4f5463;
  line-height: 1.55;
  margin-bottom: 18px;
}

.registro-note {
  font-size: 16px;
  color: #6a6f7d;
  line-height: 1.6;
  margin-bottom: 36px;
}

/* ------------------------------- */
/* BOTÓN */
/* ------------------------------- */

.registro-btn {
  display: inline-block;
  padding: 16px 34px;
  background: #6bdc72;
  color: white;
  text-decoration: none;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
}

.registro-btn:hover {
  background: #5ec565;
}

/* ------------------------------- */
/* RESPONSIVE */
/* ------------------------------- */

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

  .registro-text-col h2 {
    font-size: 32px;
  }

  .registro-main-img {
    max-width: 100%;
    margin: 0 auto 40px;
  }
}

/* ========================================= */
/* SECCIÓN ACREDITACIÓN (DISEÑO REAL) */
/* ========================================= */

.acreditacion-section {
  padding: 110px 0;
}

/* ---------------------------- */
/* TÍTULO CENTRADO */
/* ---------------------------- */

.acreditacion-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #2f327d;
  margin-bottom: 10px;
}

.acreditacion-title span {
  color: #6bdc72;
}

.acreditacion-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5f6473;
  margin-bottom: 28px;
}

/* ---------------------------- */
/* CHIPS */
/* ---------------------------- */

.acreditacion-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}

.acreditacion-chips span {
  background: #e8f4e8;
  color: #387947;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;
}

/* ---------------------------- */
/* 2 COLUMNAS (IMG + TEXTO) */
/* ---------------------------- */

.acreditacion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

/* IMAGEN COMPLETA */
.acreditacion-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

/* TEXTO DERECHA */

.acreditacion-text-col h3 {
  font-size: 34px;
  font-weight: 700;
  color: #2f327d;
  margin-bottom: 18px;
}

.acreditacion-text {
  font-size: 17px;
  color: #5c6070;
  line-height: 1.6;
  margin-bottom: 34px;
}

/* BOTÓN */
.acreditacion-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #ffffff;
  border: 2px solid #1e1e1e;
  border-radius: 40px;
  font-weight: 600;
  color: #1e1e1e;
  text-decoration: none;
}

.acreditacion-btn:hover {
  background: #f2f2f2;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .acreditacion-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .acreditacion-img {
    margin: 0 auto 30px;
  }
}

/* =================================== */
/*  SECCIÓN ASISTENTE — DISEÑO REAL    */
/* =================================== */

.asistente-section {
  padding: 120px 0;
}

.asistente-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ----------------------------------- */
/* TEXTOS IZQUIERDA */
/* ----------------------------------- */

.asistente-text-col h2 {
  font-size: 38px;
  line-height: 1.25;
  font-weight: 700;
  color: #2f327d;
  margin-bottom: 20px;
}

.asistente-desc {
  font-size: 18px;
  color: #4e5565;
  line-height: 1.6;
  margin-bottom: 26px;
}

.asistente-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #2f327d;
  margin-bottom: 14px;
}

.asistente-list {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
}

.asistente-list li {
  font-size: 17px;
  color: #4e5565;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.asistente-list li::before {
  content: "✔";
  color: #59c26f;
  font-size: 18px;
  font-weight: 700;
  margin-top: 2px;
}

/* ----------------------------------- */
/* BOTÓN */
/* ----------------------------------- */

.asistente-btn {
  display: inline-block;
  background: #6bdc72;
  color: white;
  padding: 16px 36px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.asistente-btn:hover {
  background: #5fc466;
}

/* ----------------------------------- */
/* IMAGEN DERECHA */
/* ----------------------------------- */

.asistente-img-col {
  display: flex;
  justify-content: center;
}

.asistente-main-img {
  width: 100%;
  max-width: 420px;
  display: block;
  object-fit: contain;
}

/* ----------------------------------- */
/* RESPONSIVE */
/* ----------------------------------- */

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

  .asistente-main-img {
    max-width: 340px;
    margin: 0 auto;
  }

  .asistente-list li {
    justify-content: center;
    text-align: left;
  }
}

/* ====================================== */
/*        RUTA EXPONENCIA — DISEÑO REAL   */
/* ====================================== */

.ruta-real-section {
  padding: 120px 0;
}

/* HEADER */
.ruta-real-header {
  text-align: center;
  margin-bottom: 50px;
}

.ruta-real-logo {
  width: 80px;
  margin-bottom: 18px;
}

.ruta-real-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #2f327d;
}

.ruta-real-header h2 span {
  color: #6bdc72;
}

.ruta-real-subtitle {
  font-size: 18px;
  color: #5a5f6d;
  margin-top: 10px;
}

/* TARJETAS */
.ruta-real-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.ruta-real-card {
  background: #ffffff;
  padding: 34px;
  border-radius: 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* NÚMERO */
.ruta-real-number {
  width: 56px;
  height: 56px;
  background: #2f327d;
  color: white;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
}

/* TITULO */
.ruta-real-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #2f327d;
  margin-top: 20px;
  margin-bottom: 14px;
  line-height: 1.3;
}

.ruta-real-card h3 span {
  font-weight: 600;
}

/* DURACIÓN */
.ruta-real-duration {
  color: #44b267;
  font-weight: 600;
  margin-bottom: 14px;
}

/* TEXTO */
.ruta-real-text {
  font-size: 16px;
  color: #5f6473;
  line-height: 1.55;
}

/* BOTONES */
.ruta-real-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-outline-real {
  padding: 14px 32px;
  border-radius: 40px;
  border: 2px solid #1c1c1c;
  text-decoration: none;
  color: #1c1c1c;
  font-weight: 600;
}

.btn-green-real {
  padding: 14px 32px;
  border-radius: 40px;
  background: #6bdc72;
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.btn-green-real:hover {
  background: #5ec165;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ruta-real-cards {
    grid-template-columns: 1fr;
  }
}

/* ========================= */
/* HERO — DISEÑO REAL */
/* ========================= */

.hero-real {
  background: linear-gradient(150deg, #7cd36b 0%, #63c255 100%);
  padding: 40px 0 140px;
  color: white;
  position: relative;
  overflow: hidden;
}

/* --- curva blanca inferior --- */
.hero-real::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: white;
  border-top-left-radius: 80% 40%;
  border-top-right-radius: 80% 40%;
}

/* NAV */
.hero-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.hero-logo {
  height: 42px;
}

.hero-menu {
  list-style: none;
  display: flex;
  gap: 28px;
}

.hero-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.hero-btn-nav {
  background: white;
  color: #2f327d;
  padding: 10px 22px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* GRID */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXTO IZQUIERDA */
.hero-left h1 {
  font-size: 46px;
  line-height: 1.22;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-green {
  color: #0034dc;
}

.hero-description {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 34px;
  max-width: 520px;
}

/* BOTÓN PRINCIPAL */
.hero-main-btn {
  background: #2f327d;
  color: white;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

/* IMAGEN DERECHA */
/* ESTA ES UNA SOLA IMAGEN GRANDE */
.hero-right {
  text-align: right;
  position: relative;
  z-index: 10;
}

.hero-main-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

/* ========================= */
/* NAVBAR DESKTOP */
/* ========================= */

.nav-real {
  width: 100%;
  padding: 20px 0;
}

.nav-container {
  max-width: 1250px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 44px;
}

/* LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 17px;
  color: white;
  font-weight: 500;
}

.nav-cta {
  background: white;
  color: #2f327d !important;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
}

/* ========================= */
/* BOTÓN HAMBURGUESA */
/* ========================= */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 4px;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 900px) {
  /* Mostrar hamburguesa */
  .nav-toggle {
    display: flex;
  }

  /* Ocultar links */
  .nav-links {
    position: absolute;
    top: 80px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 22px 26px;
    display: none;
    flex-direction: column;
    gap: 18px;
    text-align: right;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }

  .nav-links a {
    color: #2f327d !important;
    font-size: 17px;
    font-weight: 600;
  }

  /* CTA dentro del menú */
  .nav-cta {
    background: #2f327d !important;
    color: white !important;
    padding: 12px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 10px;
  }

  /* Cuando esté activo */
  .nav-links.active {
    display: flex;
  }

  a.nav-cta {
    color: white !important;
  }
}

/* remove .hero-main-img on small screens */
@media (max-width: 600px) {
  .hero-main-img {
    display: none;
  }
}

/* ========================= */
/* OVERLAY */
/* ========================= */

.takeover-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none; /* oculto por defecto */
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
}

/* Mostrar modal */
.takeover-overlay.active {
  display: flex;
}

/* ========================= */
/* MODAL */
/* ========================= */

.takeover-modal {
  background: white;
  width: 100%;
  max-width: 980px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

/* GRID INTERNO */
.takeover-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

/* ========================= */
/* COLUMNA IZQUIERDA */
/* ========================= */

.takeover-left {
  background: #1e47c6;
  color: white;
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.takeover-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.takeover-quote {
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 20px;
}

.takeover-author {
  font-size: 14px;
  opacity: 0.85;
}

/* ========================= */
/* COLUMNA DERECHA */
/* ========================= */

.takeover-right {
  padding: 50px 40px;
}

.takeover-kicker {
  color: #1e47c6;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.takeover-title {
  font-size: 34px;
  color: #1e2a6b;
  font-weight: 700;
  margin-bottom: 10px;
}

.takeover-sub {
  font-size: 16px;
  color: #5d6070;
  margin-bottom: 24px;
}

/* FORMULARIO */
.takeover-form input {
  width: 100%;
  padding: 14px 16px;
  /* margin-bottom: 14px; */
  border-radius: 6px;
  border: 1px solid #cfd4e0;
  font-size: 15px;
}

.takeover-submit {
  width: 100%;
  padding: 16px;
  background: #1e47c6;
  color: white;
  border: none;
  font-size: 17px;
  border-radius: 40px;
  cursor: pointer;
  margin-top: 14px;
}

#takeoverForm > input {
  margin-bottom: 14px;
}

.takeover-submit:hover {
  background: #1639a3;
}

/* ========================= */
/* BOTÓN CERRAR */
/* ========================= */

.takeover-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #1e47c6;
  color: white;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 800px) {
  .takeover-grid {
    grid-template-columns: 1fr;
  }
  .takeover-left {
    padding: 40px 20px;
  }
  .takeover-right {
    padding: 40px 20px;
  }
}

/* =============================== */
/* OVERLAY */
/* =============================== */

.takeover-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
}

.takeover-overlay.active {
  display: flex;
}

/* =============================== */
/* MODAL */
/* =============================== */

.takeover-modal {
  background: white;
  width: 100%;
  max-width: 980px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  max-height: 90vh; /* <<< clave: evitar overflow fuera de pantalla */
  display: flex;
  flex-direction: column;
}

/* GRID */
.takeover-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  overflow-y: auto; /* <<< permite scroll interno */
}

/* =============================== */
/* LEFT SIDE */
/* =============================== */

.takeover-left {
  background: #1e47c6;
  color: white;
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.takeover-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.takeover-quote {
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 20px;
}

.takeover-author {
  font-size: 14px;
  opacity: 0.85;
}

/* =============================== */
/* RIGHT SIDE */
/* =============================== */

.takeover-right {
  padding: 50px 40px;
}

.takeover-kicker {
  color: #1e47c6;
  font-weight: 700;
  margin-bottom: 10px;
}

.takeover-title {
  font-size: 34px;
  font-weight: 700;
  color: #1e2a6b;
  margin-bottom: 10px;
}

.takeover-sub {
  font-size: 16px;
  color: #5d6070;
  margin-bottom: 24px;
}

/* INPUTS */
.takeover-form input {
  width: 100%;
  padding: 14px 16px;
  /* margin-bottom: 14px; */
  border-radius: 8px;
  border: 1px solid #cfd4e0;
  font-size: 16px;
}

.takeover-submit {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  background: #1e47c6;
  color: white;
  border: none;
  border-radius: 40px;
  cursor: pointer;
}

/* =============================== */
/* CLOSE BUTTON */
/* =============================== */

.takeover-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: #1e47c6;
  color: white;
  border-radius: 50%;
  font-size: 22px;
  border: none;
  cursor: pointer;
}

/* =============================== */
/* RESPONSIVE REAL */
/* =============================== */

@media (max-width: 900px) {
  .takeover-modal {
    width: 90%;
    max-height: 92vh;
    border-radius: 12px;
  }

  .takeover-grid {
    grid-template-columns: 1fr;
  }

  .takeover-left {
    padding: 40px 22px;
  }

  .takeover-right {
    padding: 40px 22px;
  }

  .takeover-title {
    font-size: 28px;
  }

  .takeover-quote {
    font-size: 18px;
  }
}

#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.toast {
  background: #111827;
  color: white;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  background: #16a34a;
}

.toast.error {
  background: #dc2626;
}

.phone-group {
  display: flex;
  gap: 8px;
  width: 100%;
}

.phone-code {
  width: 90px;
  padding: 12px 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
}

.phone-number {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* OVERLAY */
.confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 10000;
}

.confirm-overlay.active {
  display: flex;
}

/* MODAL */
.confirm-modal {
  background: white;
  max-width: 620px;
  width: 100%;
  border-radius: 14px;
  padding: 40px 32px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

/* CLOSE */
.confirm-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #1e47c6;
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

/* CONTENT */
.confirm-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e2a6b;
  margin-bottom: 12px;
}

.confirm-sub {
  font-size: 16px;
  color: #5d6070;
  margin-bottom: 24px;
}

/* SESSION CARD */
.session-card {
  background: #f4f6fb;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.session-main {
  font-size: 16px;
  margin-bottom: 12px;
}

.session-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.session-details li {
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}

/* CTAs */
.confirm-primary {
  width: 100%;
  padding: 16px;
  font-size: 17px;
  font-weight: 600;
  background: #1e47c6;
  color: white;
  border: none;
  border-radius: 40px;
  cursor: pointer;
}

.confirm-secondary {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  background: transparent;
  border: 2px solid #1e47c6;
  color: #1e47c6;
  border-radius: 40px;
  cursor: pointer;
  margin-top: 10px;
}

/* MICROCOPY */
.cta-micro {
  font-size: 13px;
  color: #5d6070;
  text-align: center;
  margin: 8px 0 18px;
}

.cta-micro.secondary {
  margin-bottom: 22px;
}

/* CALENDAR */
.calendar-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}

.calendar-links a {
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid #cfd4e0;
  background: white;
  cursor: pointer;
  text-decoration: none;
  color: #111;
}

/* TRUST */
.trust-text {
  font-size: 12px;
  color: #8a8fa3;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .confirm-title {
    font-size: 24px;
  }
}
/* =============================== */
/*   LEGALES (TÉRMINOS / PRIVACIDAD) */
/* =============================== */

.legal-hero {
  background: linear-gradient(150deg, #7cd36b 0%, #63c255 100%);
  padding: 80px 0 120px;
  color: white;
  text-align: center;
}

.legal-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
}

.legal-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 14px;
}

.legal-subtitle {
  font-size: 18px;
  opacity: 0.95;
}

.legal-content {
  padding: 80px 0;
  max-width: 820px;
}

.legal-content section {
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #2f327d;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
  font-size: 15px;
  color: #4f5463;
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 18px;
}

@media (max-width: 600px) {
  .legal-hero h1 {
    font-size: 30px;
  }

  .legal-content {
    padding: 60px 20px;
  }
}

.whats-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 19999;
}
.whats-overlay.active {
  display: flex;
}

.whats-modal {
  width: 100%;
  max-width: 520px;
  background: #fff;
  color: #0b0d10;
  border-radius: 18px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.whats-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.whats-content {
  padding: 22px 20px 20px;
}

.whats-kicker {
  margin: 0 0 10px;
  font-size: 13px;
  opacity: 0.8;
}

.whats-title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.whats-sub {
  margin: 0 0 14px;
  opacity: 0.9;
}

.whats-bullets {
  margin: 0 0 18px;
  padding-left: 18px;
}
.whats-bullets li {
  margin: 8px 0;
}

.whats-primary {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 14px;
  border-radius: 14px;
  background: #25d366;
  color: #fff;
}

.whats-micro {
  margin: 12px 0 0;
  font-size: 13px;
  opacity: 0.85;
}

.whats-qr-block {
  margin: 16px 0 18px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.whats-qr-img {
  width: 240px;
  height: 240px;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
}

.whats-qr-caption {
  margin: 0;
  font-size: 13px;
  opacity: 0.85;
  text-align: center;
}

.wa-sticky-toast {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100000;
  display: none;
}

.wa-sticky-inner {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(15, 17, 21, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  border-radius: 14px;
  padding: 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
}

.wa-sticky-text {
  font-size: 14px;
  line-height: 1.25;
  opacity: 0.95;
}

.wa-sticky-btn {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  background: #25d366;
  color: #0b0d10;
  white-space: nowrap;
}

@media (max-width: 420px) {
  .wa-sticky-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .wa-sticky-btn {
    width: 100%;
    text-align: center;
  }
}
