/* ======================================================
   THEME VARIABLES
====================================================== */

:root {
  /* Brand colors */
  --blue-dark: #224d73;
  --blue-medium: #074259;
  --green-primary: #03a688;
  --yellow-accent: #f2b84b;

  /* Neutral */
  --white: #ffffff;
  --gray-light: #f2f2f2;
  --text-dark: #1f2d3d;

  /* Semantic */
  --bg-main: var(--white);
  --bg-section: var(--white);
  --bg-soft: var(--gray-light);

  --text-main: var(--text-dark);
  --text-inverse: var(--white);

  --border-soft: rgba(0, 0, 0, 0.08);

  /* Effects */
  --shadow-soft: 0 8px 25px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 20px 50px rgba(0, 0, 0, 0.15);

  /* Motion */
  --transition-base: 0.25s ease;
}

/* ======================================================
   RESET & BASE
====================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
iframe {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 6px;
  aspect-ratio: 16 / 9;
}
h3,
h4 {
  color: var(--green-primary) !important;
  font-weight: 700 !important;
}
.display-files {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
mark {
  background-color: rgba(3, 166, 136, 0.15);
  color: var(--green-primary);
  padding: 5px 20px;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 7px;
  font-size: 1.1rem;
  font-weight: 600;
}
/* Anular el <div clear:both> que rompe el flex */
.display-files > div[style*="clear"] {
  display: none !important;
}

.display-files > img,
.display-files > a.image-link {
  flex: 0 1 auto;
  margin: 0 !important;
}

/* Solo 1 imagen: ocupa todo el ancho */
.display-files > img:only-child,
.display-files > a.image-link:only-child {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100% !important;
}

.display-files > a.image-link:only-child img {
  width: 100% !important;
  height: auto !important;
}

@media (max-width: 575.98px) {
  /* 1 imagen en móvil: ancho completo */
  .display-files > img:only-child,
  .display-files > a.image-link:only-child {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* 2 o más imágenes en móvil: 50% */
  .display-files > img:not(:only-child),
  .display-files > a.image-link:not(:only-child) {
    flex: 0 0 calc(50% - 5px) !important;
    width: calc(50% - 5px) !important;
    max-width: calc(50% - 5px) !important;
    height: auto !important;
    margin: 0 !important;
  }

  .display-files > a.image-link:not(:only-child) img {
    width: 100% !important;
    height: auto !important;
  }
}

html {
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  transition:
    background-color var(--transition-base),
    color var(--transition-base);
  overflow-x: hidden !important;
  max-width: 100vw;
}

img {
  max-width: 100%;
  display: block;
}
.bodycopy ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.bodycopy ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--text-dark);
  line-height: 1.6;
  border-bottom: 1px solid rgba(34, 77, 115, 0.06);
}

.bodycopy ul li:last-child {
  border-bottom: none;
}

.bodycopy ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-primary);
  flex-shrink: 0;
}

/* OL */
.bodycopy ol {
  list-style: none;
  counter-reset: ol-counter;
  padding: 0;
  margin: 16px 0;
}

.bodycopy ol li {
  position: relative;
  counter-increment: ol-counter;
  padding: 10px 0 10px 44px;
  color: var(--text-dark);
  line-height: 1.6;
  border-bottom: 1px solid rgba(34, 77, 115, 0.06);
}

.bodycopy ol li:last-child {
  border-bottom: none;
}

.bodycopy ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Anidados */
.bodycopy ul ul,
.bodycopy ol ol,
.bodycopy ul ol,
.bodycopy ol ul {
  margin: 8px 0 4px 12px;
}

.bodycopy ul ul li::before {
  width: 6px;
  height: 6px;
  background: var(--yellow-accent);
}
section {
  padding: 30px 0;
  background-color: var(--bg-section);
}

/* ======================================================
   NAVBAR – FINAL LIMPIO
====================================================== */

.evolve-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  background: transparent;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

/* ---------- LOGOS ---------- */

.evolve-logo img {
  height: 42px;
}

.logo-white {
  display: block;
}

.logo-color {
  display: none;
}
/* ======================================================
   NAVBAR MOBILE
====================================================== */

@media (max-width: 991.98px) {
  /* Panel móvil */
  #evolveNav {
    background: var(--blue-dark);
    border-radius: 0 0 16px 16px;
    padding: 16px;
    margin-top: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }

  /* Links */
  .evolve-navbar .evolve-menu .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 12px 16px !important;
    margin: 0 !important;
    border-radius: 8px;
    transition:
      background 0.2s ease,
      color 0.2s ease;
  }

  .evolve-navbar .evolve-menu .nav-link:hover,
  .evolve-navbar .evolve-menu .nav-item.current .nav-link {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
  }

  /* Dropdown */
  .evolve-dropdown {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    box-shadow: none;
    padding: 4px 8px;
    margin: 0;
  }

  .evolve-dropdown .dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
    border-radius: 6px;
    padding: 8px 12px;
  }

  .evolve-dropdown .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
  }

  .evolve-dropdown .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
  }

  /* Botón toggler */
  .evolve-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.4);
    padding: 6px 10px;
  }

  .evolve-navbar.scrolled .navbar-toggler {
    border-color: rgba(34, 77, 115, 0.4);
  }

  .evolve-navbar.scrolled .navbar-toggler-icon {
    filter: invert(1) sepia(1) saturate(3) hue-rotate(180deg);
  }

  /* Botones acción */
  .evolve-nav-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 10px;
  }

  .evolve-btn-test,
  .evolve-btn-pay {
    justify-content: center;
    text-align: center;
    border-radius: 8px;
  }

  /* Estado scrolled en móvil */
  .evolve-navbar.scrolled #evolveNav {
    background: var(--blue-dark);
  }
}
/* 1. Links en móvil siempre blancos sin importar scrolled */
@media (max-width: 991.98px) {
  .evolve-navbar .nav-link,
  .evolve-navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .evolve-navbar .nav-link:hover,
  .evolve-navbar.scrolled .nav-link:hover {
    color: #ffffff !important;
  }

  /* 2. Quitar marco negro del toggler */
  .evolve-navbar .navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 8px 12px;
    transition: background 0.2s ease;
  }

  .evolve-navbar .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
  }

  .evolve-navbar .navbar-toggler:active {
    background: rgba(255, 255, 255, 0.2);
  }

  /* Toggler en estado scrolled */
  .evolve-navbar.scrolled .navbar-toggler {
    background: rgba(34, 77, 115, 0.1);
  }

  .evolve-navbar.scrolled .navbar-toggler-icon {
    filter: invert(1) sepia(1) saturate(3) hue-rotate(180deg);
  }
}
/* ---------- MENU (HERO) ---------- */

.evolve-navbar .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  margin: 0 1rem;
}

/* ---------- BOTONES ---------- */
.evolve-navbar.scrolled .nav-item.last .nav-link {
  background-color: var(--blue-dark);
  color: var(--gray-light) !important;
  border-radius: 50px;
  padding: 8px 20px;
  transition: background 0.3s ease;
}

.evolve-navbar.scrolled .nav-item.last .nav-link:hover {
  background-color: var(--green-primary);
  color: var(--gray-light) !important;
}

.nav-item.last .nav-link::before {
  content: "\f2bd"; /* fa-user-circle */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
}
.evolve-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Pagos */
.evolve-btn-pay {
  position: relative;
  overflow: hidden;

  background: var(--yellow-accent);
  color: var(--blue-dark);
  border-radius: 999px;
  padding: 0.5rem 1.3rem;
  font-weight: 700;

  /* borde sutil elegante */
  border: 1px solid rgba(255, 255, 255, 0.35);

  /* sombra muy suave para no parecer 3D */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);

  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.35);

  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* Barrido de luz */
.evolve-btn-pay::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 45%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 80%
  );

  transform: skewX(-25deg);
  transition: 0.6s ease;
}

/* Hover */
.evolve-btn-pay:hover {
  background: var(--yellow-accent);

  /* solo reforzamos presencia, no volumen */
  box-shadow: 0 4px 12px rgba(242, 184, 75, 0.35);

  border-color: rgba(255, 255, 255, 0.6);
}

.evolve-btn-pay:hover::before {
  left: 140%;
}

/* TEST YOUR ENGLISH – MOCKUP MATCH */
.evolve-btn-test {
  background: var(--green-primary);
  color: var(--white);
  border-radius: 999px;

  padding: 0.7rem 1.6rem;

  display: inline-flex;
  align-items: center;

  font-weight: 600;

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
/* Glow + profundidad */
.evolve-btn-test:hover {
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.18),
    0 0 0 3px rgba(3, 166, 136, 0.25);
}

/* Brillo que cruza */
.evolve-btn-test::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );

  transform: skewX(-25deg);
  transition: 0.6s;
}

.evolve-btn-test:hover::after {
  left: 140%;
}
/* =====================
 EVO
===================== */
.test-evo {
  width: 48px;
  /* height: 48px; */
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-right: 12px;
}

.test-evo img {
  width: 100%;
  height: auto;
}

/* =====================
 TEXT
===================== */
.test-text {
  display: flex;
  flex-direction: column;
  justify-content: center;

  margin-right: 18px; /* 👈 CLAVE */
}

.test-text span {
  font-size: 0.85rem;
  font-weight: 700;
}

.test-text small {
  font-size: 0.7rem;
  opacity: 0.9;
}

/* =====================
 ICON
===================== */
.evolve-btn-test i {
  font-size: 1.1rem;
  margin-left: auto; /* 👈 CLAVE: lo manda al extremo */
}
/* ---------- SCROLLED STATE ---------- */

.evolve-navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Logo swap */
.evolve-navbar.scrolled .logo-white {
  display: none;
}

.evolve-navbar.scrolled .logo-color {
  display: block;
}

/* Menu swap */
.evolve-navbar.scrolled .nav-link {
  color: var(--blue-dark) !important;
}

/* Test button keeps identity */
.evolve-navbar.scrolled .evolve-btn-test {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
@media (max-width: 991.98px) {
  .evolve-navbar .nav-link,
  .evolve-navbar.scrolled .evolve-menu .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .evolve-navbar .evolve-menu .nav-link:hover,
  .evolve-navbar.scrolled .evolve-menu .nav-link:hover {
    color: #ffffff !important;
  }
}

/* ======================================================
   BUTTONS
====================================================== */

.evolve-btn-primary {
  background: var(--yellow-accent);
  color: var(--blue-dark);
  border-radius: 30px;
  padding: 0.6rem 1.6rem;
  font-weight: 700;
  border: none;
  transition: var(--transition-base);
}

.evolve-btn-primary:hover {
  transform: translateY(-2px);
  background: #e0a93f;
}

.evolve-btn-submit {
  width: 100%;
  background: var(--yellow-accent);
  color: var(--blue-dark);
  border: none;
  padding: 0.8rem;
  font-weight: 700;
  border-radius: 12px;
}

.evolve-btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 40px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ======================================================
   HERO
====================================================== */
.hero-section {
  position: relative;

  /* Imagen de fondo */
  background-image: url("../img/hero_header.jpg");
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;

  /* Altura correcta */
  min-height: 100svh; /* viewport real (mobile + desktop) */

  /* Espacios del navbar y aire visual */
  padding-top: clamp(100px, 12vh, 140px);
  padding-bottom: clamp(60px, 10vh, 120px);

  display: flex;
}

/* contenedor que controla altura sin romper laptops */
.hero-container {
  width: 100%;
  display: flex;
  align-items: center;
}

@media (max-height: 800px) {
  .hero-container {
    min-height: auto;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    to bottom,
    rgba(34, 77, 115, 0.75) 0%,
    /* azul corporativo fuerte arriba */ rgba(34, 77, 115, 0.45) 20%,
    /* transición suave */ rgba(34, 77, 115, 0.15) 45%,
    /* se empieza a ir */ rgba(34, 77, 115, 0.05) 65%,
    /* casi limpio */ rgba(34, 77, 115, 0) 100% /* imagen libre */
  );
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-left {
  display: flex;
  justify-content: center;
}

.hero-visual {
  max-width: 520px;
  width: 100%;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.35));
}

.hero-section h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.hero-big {
  font-size: 3.4rem;
}

form {
  background: var(--bg-section);
  border-radius: 22px;
  padding: 2.5rem;
  box-shadow: var(--shadow-medium);
  margin-top: 1.5rem;
}
#formulario-home .submit.btn.btn-primary {
  width: 100%;
}
.submit.btn.btn-primary {
  padding: 0.9rem;
  position: relative;
  overflow: hidden;

  background: var(--yellow-accent);
  color: var(--blue-dark);
  border-radius: 999px;
  padding: 0.5rem 1.3rem;
  font-weight: 700;

  /* borde sutil elegante */
  border: 1px solid rgba(255, 255, 255, 0.35);

  /* sombra muy suave para no parecer 3D */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);

  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.35);

  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
/* Barrido de luz */
.submit.btn.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 45%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 80%
  );

  transform: skewX(-25deg);
  transition: 0.6s ease;
}

/* Hover */
.submit.btn.btn-primary:hover {
  background: var(--yellow-accent);

  /* solo reforzamos presencia, no volumen */
  box-shadow: 0 4px 12px rgba(242, 184, 75, 0.35);

  border-color: rgba(255, 255, 255, 0.6);
}

.submit.btn.btn-primary:hover::before {
  left: 140%;
}
#C__digo_PromocionalControl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 8px;
  padding: 15px 15px;
  margin-top: 15px;
}

/* label izquierda */
#C__digo_PromocionalControl label {
  margin: 0;
  font-weight: 600;
  flex: 0 0 auto;
}

/* input */
#C__digo_Promocional {
  flex: 1;
  margin: 0 15px;
  background: #ffffff;

  border-radius: 6px;
  padding: 6px 10px;
  box-shadow: none;
}

/* helpblock debajo */
#C__digo_PromocionalHelpBlock {
  flex-basis: 100%;
  margin-top: 6px;
  font-size: 0.85rem;
  color: #6c757d;
}
body[data-theme="dark"] .form {
  background: var(--bg-soft);
}

.form-title {
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 1.5rem;
}

.form-title span {
  color: var(--green-primary);
}

#formulario-home.form-check {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

.hero-submit {
  width: 100%;
  padding: 0.9rem;
}
.hero-right {
  padding-left: 2rem;
}

@media (max-width: 991px) {
  .hero-right {
    padding-left: 0;
    margin-top: 2rem;
  }

  .hero-section {
    background-position: center;
  }
}

/* Mobile */
@media (max-width: 991px) {
  .hero-container {
    min-height: auto;
  }

  .hero-section h1 {
    text-align: center;
  }

  .hero-left {
    margin-bottom: 2rem;
  }
}

/* ======================================================
   TYPOGRAPHY
====================================================== */
.section-title {
  font-size: 2.4rem;
  font-weight: 800;
}
.section-title,
h1,
h2,
h3 {
  color: var(--blue-medium);
  font-weight: 700;
}

.section-title .highlight {
  color: var(--green-primary);
}

.section-text {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ======================================================
   CARDS (GLOBAL)
====================================================== */

.method-card,
.unique-card,
.system-card,
.space-card {
  background: var(--bg-section);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-base);
  height: 100%;
}

.method-card:hover,
.unique-card:hover,
.system-card:hover,
.space-card:hover {
  transform: translateY(-6px);
}

/* ======================================================
   LEARNING METHOD
====================================================== */

.method-card {
  text-align: center;
}

.method-code {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-primary);
  display: block;
}

.method-label {
  font-weight: 600;
}

/* ======================================================
   UNIQUE
====================================================== */

.unique-card i {
  font-size: 2.5rem;
  color: var(--green-primary);
  margin-bottom: 1rem;
}

/* ======================================================
   TRAINING SYSTEM
====================================================== */

.system-card h4 {
  font-weight: 700;
  color: var(--blue-medium);
}

.guarantee-box {
  background: var(--blue-medium);
  border-radius: 20px;

  position: relative;
  overflow: hidden;
}

.guarantee-title {
  color: var(--text-inverse);
  font-weight: 800;
  margin-bottom: 1rem;
}

.guarantee-text {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1.6rem;
  max-width: 700px;
}

/* =====================================
   UNIQUE SECTION
===================================== */

.unique-section {
  background: rgba(3, 166, 136, 0.07); /* 7% del verde */
  padding: 80px 0;
}

/* TITLE */

.unique-section .section-title {
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 3rem;
}

.unique-section .highlight {
  color: var(--green-primary);
}
.hero-section h1 strong {
  color: var(--yellow-accent);
}
/* CARDS */

.unique-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.2rem 2rem;

  display: flex;
  align-items: center;
  gap: 1.4rem;

  height: 100%;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);

  transition: 0.3s ease;
}

/* Hover elegante */
.unique-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */

.unique-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.unique-icon img {
  max-width: 72px;
  height: auto;
}

/* TEXT */

.unique-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.4rem;
}

.unique-content p {
  font-size: 0.95rem;
  color: var(--text-main);
  margin: 0;
}
/* Physical Spaces Section */
.spaces-section {
  padding: 80px 0;
  background: white;
}

.space-card {
  background: var(--primary-color);
  color: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.space-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.space-card:hover::before {
  top: -100%;
  right: -100%;
}

.space-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 191, 165, 0.4);
}

.space-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.space-icon {
  font-size: 2rem;
  margin-left: 10px;
}
/* =============================
 TRAINING SYSTEM
============================= */

.training-system {
  background: #ffffff;
  padding: 90px 0;
}

/* TEXT BLOCK */

.training-intro {
  max-width: 800px;
  margin: 20px auto;
  font-size: 0.95rem;
  color: #6b7c85;
}

.training-sub {
  font-weight: 600;
  margin-bottom: 3rem;
  color: var(--blue-dark);
}

/* =============================
 CARDS
============================= */

.system-card {
  background: rgba(3, 166, 136, 0.07);
  border-radius: 16px;
  padding: 1.8rem;
  height: 100%;

  position: relative;

  border: 1px solid rgba(3, 166, 136, 0.15);

  transition: 0.3s ease;
}

/* Hover elegante SIN sombras */
.system-card:hover {
  transform: translateY(-4px);
  border-color: rgba(3, 166, 136, 0.35);
}

/* =============================
 TITLE
============================= */

.system-card h4 {
  font-weight: 700;
  color: var(--blue-dark);
  position: relative;
  display: inline-block;
  margin-bottom: 0.9rem;
}

/* Línea animada */

.system-card h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 4px;
  background: var(--green-primary);
  border-radius: 2px;
  transition: 0.4s ease;
}

.system-card:hover h4::after {
  width: 100%;
}

/* TEXT */

.system-card p {
  font-size: 0.9rem;
  color: #5d6c74;
  line-height: 1.6;
}

/* ======================================================
   SPACES
====================================================== */

.space-card {
  background: var(--green-primary);
  color: var(--text-inverse);
  text-align: center;
  font-weight: 700;
}

/* ======================================================
   FOOTER
====================================================== */

/* Footer */
.footer {
  background: var(--blue-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-logo {
  height: 75px;
  width: auto;
  margin-bottom: 20px !important;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: white !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-primary);
  display: inline-block;
}

.footer-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.footer-link:hover {
  color: var(--green-primary);
  padding-left: 6px;
}

.footer-icon {
  color: var(--green-primary);
  margin-right: 8px;
  font-size: 13px;
}

/* Teléfono */
.footer .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px !important;
  margin-bottom: 20px;
  font-size: 0.95rem;
  width: 100%;
  justify-content: center;
  background-color: #03a688;
}

/* Redes sociales */
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  justify-content: center;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.social-icon:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: white;
  transform: translateY(-3px);
}

/* Copyright */
.copyright {
  text-align: center;
  padding-top: 24px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}

/* Móvil */
@media (max-width: 767.98px) {
  .footer {
    padding: 40px 0 24px;
  }

  .footer-logo {
    height: 48px;
  }

  .social-icons {
    justify-content: center;
  }

  .footer .col-md-3:first-child {
    text-align: center;
  }
}
.enter-data .radiogroup {
  display: inline-flex;
  background-color: var(--gray-light);
  padding: 7px;
  margin: 15px 0;
  box-shadow:
    0px 1px 1px 0px rgba(0, 0, 0, 0.1) inset,
    0px 1px 1px 0px rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  justify-content: space-evenly;
}

/* ======================================================
   WHATSAPP FLOAT
====================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  z-index: 999;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.3rem;
  }

  section {
    padding: 40px 0;
  }
}
.features {
  padding: 35px 0;
}

.minimenu-titulo {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-primary);
  margin-bottom: 16px;
}

.minimenu-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.minimenu-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--blue-dark);
  color: var(--white) !important;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.minimenu-item i {
  color: var(--yellow-accent);
  font-size: 14px;
}

.minimenu-item:hover {
  background: var(--blue-medium);
  transform: translateY(-2px);
  color: var(--white) !important;
}

.minimenu-item.current {
  background: var(--green-primary);
  pointer-events: none;
  opacity: 0.85;
}

@media (max-width: 575.98px) {
  .minimenu-track {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .minimenu-track::-webkit-scrollbar {
    display: none;
  }

  .minimenu-item {
    flex-shrink: 0;
  }
}
.navigation-breadcrumb {
  text-align: center;
  padding: 12px 0;
}

.navigation-breadcrumb .breadcrumb {
  justify-content: center;
  background: transparent;
  padding: 0;
  margin: 0;
  gap: 4px;
}

.navigation-breadcrumb .breadcrumb-item a {
  color: var(--green-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.navigation-breadcrumb .breadcrumb-item a:hover {
  color: var(--blue-dark);
}

.navigation-breadcrumb .breadcrumb-item.active {
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

.navigation-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(34, 77, 115, 0.4);
}
