/* =============================================
   RADIANTE — MTa Learning Uruguay
   Variables & Reset
   ============================================= */
:root {
  /* Colores marca Radiante */
  --purple-dark:  #1e1248;   /* fondo oscuro */
  --purple:       #4a2070;   /* morado principal (nav, hero left) */
  --purple-mid:   #5c2d8a;
  --purple-light: #9b72c8;
  --gold:         #F5C842;   /* dorado/amarillo para acciones */
  --gold-dark:    #d4a820;
  --gold-light:   #fde68a;
  --white:        #ffffff;
  --off-white:    #f9f7fd;
  --gray-100:     #f4f1fb;
  --gray-200:     #e8e0f5;
  --text-dark:    #1a1035;
  --text-mid:     #4a3b6e;
  --text-light:   #8b78b8;

  --radius:    20px;
  --radius-sm: 10px;
  --shadow:    0 8px 32px rgba(74,32,112,0.12);
  --shadow-lg: 0 20px 60px rgba(74,32,112,0.2);
  --ease:      cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  font-family: inherit;
}

.btn--gold {
  background: var(--gold);
  color: var(--purple-dark);
}
.btn--gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,200,66,0.45);
}

.btn--purple {
  background: var(--purple);
  color: var(--white);
}
.btn--purple:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Ghost: borde blanco — para fondos oscuros */
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--lg  { padding: 16px 36px; font-size: 1rem; }
.btn--sm  { padding: 10px 22px; font-size: 0.88rem; }
.btn--full { width: 100%; }

/* =============================================
   NAV — fondo morado, logo blanco
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--purple);
  box-shadow: 0 2px 16px rgba(30,18,72,0.25);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 28px;
}

.nav__logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.nav__logo-img { height: 57px; width: auto; display: block; }
.nav__logo-img--mta {
  height: 51px;
  filter: brightness(0) invert(1);
  opacity: 0.98;
}
.nav__logo-sep {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.25);
  display: inline-block;
}

.nav__links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.nav__links a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  margin-left: auto;
  line-height: 1;
}

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 28px 20px;
  background: var(--purple-dark);
}
.nav__mobile a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__mobile a:last-child { border-bottom: none; margin-top: 8px; }
.nav__mobile.open { display: flex; }

/* =============================================
   HERO — split layout
   ============================================= */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  padding-top: 68px; /* altura del nav */
}

/* ---- Lado izquierdo: morado con contenido ---- */
.hero__left {
  position: relative;
  background: var(--purple);
  display: flex;
  align-items: center;
  padding: 72px 56px 72px 48px;
  overflow: hidden;
}

/* Decoración: cuadrado dorado TL con puntos blancos */
.hero__deco-tl {
  position: absolute;
  top: 0; left: 0;
  background: var(--gold);
  padding: 16px 12px 20px;
  border-radius: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.dot { background: var(--white); border-radius: 50%; display: block; }
.dot--lg { width: 32px; height: 32px; }
.dot--md { width: 24px; height: 24px; }
.dot--sm { width: 18px; height: 18px; }

/* Aura de fondo */
.hero__left::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content { position: relative; z-index: 2; }

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 50px;
  margin: 0 0 28px 70px;
  text-transform: uppercase;
}
.tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: block;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__title {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}
.hero__sub strong { color: var(--white); font-weight: 700; }

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
}

/* ---- Lado derecho: foto ---- */
.hero__right {
  position: relative;
  background: var(--purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Cuadrado morado oscuro esquina superior derecha */
.hero__deco-tr {
  position: absolute;
  top: 0; right: 0;
  width: 72px; height: 72px;
  background: var(--purple);
  border-radius: 0 0 0 28px;
  z-index: 2;
}

/* Cuadrado dorado esquina inferior derecha */
.hero__deco-br {
  position: absolute;
  bottom: 0; right: 0;
  width: 56px; height: 56px;
  background: var(--gold);
  border-radius: 24px 0 0 0;
  z-index: 2;
}

/* ---- Tarjeta de prensa (hero right) ---- */
.press-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 20px;
  padding: 32px 36px;
  max-width: 380px;
  width: calc(100% - 80px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.press-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}

/* Logo infonegocios con sus colores de marca */
.press-card__logo {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.logo-info     { color: #D2072A; }
.logo-negocios { color: #153D89; }
.logo-biz      { color: #153D89; font-weight: 400; font-size: 0.9em; }

.press-card__date {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.press-card__headline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  font-style: italic;
}

.press-card__quote {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  margin: 0;
}

.press-card__author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple);
}

.press-card__link {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--purple);
  gap: 4px;
  transition: gap 0.2s var(--ease), color 0.2s;
  padding-top: 4px;
  border-top: 1px solid var(--gray-200);
}
.press-card__link:hover {
  color: var(--purple-mid);
  gap: 8px;
}

/* =============================================
   SECTION COMMONS
   ============================================= */
section { padding: 96px 0; }

.section-tag {
  display: inline-block;
  background: var(--gold-light);
  color: var(--purple-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag--light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: var(--purple-dark);
  margin-bottom: 40px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-title--light { color: var(--white); }

.section-intro {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 540px;
  margin-top: -28px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* =============================================
   HITO
   ============================================= */
.hito { background: var(--white); }

.hito__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hito__texto p {
  color: var(--text-mid);
  margin-bottom: 20px;
  font-size: 1.02rem;
  line-height: 1.78;
}
.hito__texto p strong { color: var(--purple-dark); }
.hito__texto p em { color: var(--purple); font-style: italic; }

.hito__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* =============================================
   CARDS
   ============================================= */
.about-card {
  padding: 26px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.22s var(--ease);
}
.about-card:hover { transform: translateY(-4px); }

.about-card--gold {
  background: linear-gradient(135deg, var(--gold) 0%, #fde68a 100%);
  color: var(--purple-dark);
}
.about-card--purple {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 100%);
  color: var(--white);
}
.about-card--dark {
  background: linear-gradient(135deg, var(--purple-dark) 0%, #0d0820 100%);
  color: var(--white);
}
.about-card--dark h3 { color: var(--gold); }

.about-card__icon { font-size: 1.8rem; margin-bottom: 10px; }
.about-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.about-card p { font-size: 0.9rem; opacity: 0.85; line-height: 1.6; }

.about-card--badge { position: relative; }
.about-card__badge {
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
  background: var(--white);
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

/* =============================================
   CONVICCIÓN
   ============================================= */
.conviccion {
  background: var(--gray-100);
  padding: 80px 0;
}
.quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.quote__mark {
  display: block;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  font-family: Georgia, serif;
  margin-bottom: 20px;
  opacity: 0.8;
}
.quote p {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.65;
  color: var(--purple-dark);
  font-weight: 500;
}
.quote p strong { color: var(--purple); font-weight: 800; }
.quote cite {
  display: block;
  margin-top: 24px;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 700;
  color: var(--purple-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =============================================
   METODOLOGÍA
   ============================================= */
.metodologia {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
}

.steps {
  display: flex;
  gap: 0;
  align-items: stretch;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 180px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: background 0.2s;
}
.step:hover { background: rgba(255,255,255,0.1); }

.step--highlight {
  border-color: rgba(245,200,66,0.5);
  background: rgba(245,200,66,0.08);
}
.step--highlight:hover { background: rgba(245,200,66,0.12); }
.step--highlight h3 { color: var(--gold); }
.step--highlight p { color: rgba(255,255,255,0.85); }
.step--highlight p strong { color: var(--gold-light); font-weight: 700; }

.step__num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { color: var(--white); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.65; }

.step__arrow {
  align-self: center;
  color: var(--gold);
  font-size: 1.6rem;
  padding: 0 6px;
  opacity: 0.4;
  flex-shrink: 0;
}

.metodologia__nota {
  margin-top: 28px;
  color: rgba(255,255,255,0.45);
  font-size: 0.83rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* =============================================
   PROGRAMAS
   ============================================= */
.programas { background: var(--gray-100); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.program-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all 0.22s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.program-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.program-card.program-card--featured {
  background: linear-gradient(160deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
  color: var(--white);
}
.program-card.program-card--featured:hover { border-color: var(--gold); }
.program-card.program-card--featured h3 { color: var(--white); }
.program-card.program-card--featured p { color: rgba(255,255,255,0.95); }
.program-card.program-card--featured ul li { color: rgba(255,255,255,0.95); }
.program-card.program-card--featured ul li::before { color: var(--gold); }

.program-card__badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--purple-dark);
  font-size: 0.73rem;
  font-weight: 800;
  padding: 4px 18px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.program-card__icon { font-size: 2rem; }
.program-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--purple-dark); }
.program-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.65; flex: 1; }

.program-card ul { display: flex; flex-direction: column; gap: 7px; }
.program-card ul li {
  font-size: 0.87rem;
  color: var(--text-light);
  padding-left: 18px;
  position: relative;
}
.program-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
}

/* =============================================
   BANNER RADIANTE — Paleta teal/naranja/dorado
   ============================================= */
.radiante-banner {
  --r-teal:   #2FB394;
  --r-orange: #E17A4A;
  --r-gold:   #EDB943;
  padding: 0;
  background: var(--r-teal);
}

.radiante-banner__link {
  display: block;
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding: 88px 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(225,122,74,0.35) 0%, transparent 55%),
    radial-gradient(circle at 12% 85%, rgba(237,185,67,0.28) 0%, transparent 50%),
    linear-gradient(135deg, #2FB394 0%, #35bfa0 100%);
  transition: filter 0.25s var(--ease);
}
.radiante-banner__link:hover { filter: brightness(1.04) saturate(1.05); }

.radiante-banner__shape {
  position: absolute;
  border-radius: 50%;
  display: block;
  pointer-events: none;
}
.radiante-banner__shape--orange {
  width: 280px; height: 280px;
  background: var(--r-orange);
  top: -100px; right: -60px;
  opacity: 0.9;
}
.radiante-banner__shape--gold {
  width: 160px; height: 160px;
  background: var(--r-gold);
  bottom: -50px; left: 32%;
  opacity: 0.95;
}
.radiante-banner__shape--ring {
  width: 120px; height: 120px;
  background: transparent;
  border: 10px solid rgba(255,255,255,0.22);
  bottom: 40px; right: 18%;
}

.radiante-banner__dots {
  position: absolute;
  top: 28px; left: 28px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  pointer-events: none;
}
.radiante-banner__dots span {
  background: var(--white);
  border-radius: 50%;
  display: block;
  opacity: 0.9;
}
.radiante-banner__dots span:nth-child(1) { width: 24px; height: 24px; }
.radiante-banner__dots span:nth-child(2) { width: 18px; height: 18px; }
.radiante-banner__dots span:nth-child(3) { width: 12px; height: 12px; }

.radiante-banner__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

.radiante-banner__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.radiante-banner__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  color: var(--white);
}
.radiante-banner__tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--r-gold);
  animation: blink 2s ease-in-out infinite;
}

.radiante-banner__logo {
  height: 68px;
  width: auto;
  filter: brightness(0) invert(1);
  margin: 4px 0 2px;
  opacity: 0.98;
}

.radiante-banner__title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}
.radiante-banner__title em {
  font-style: italic;
  color: var(--r-gold);
}

.radiante-banner__text {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  max-width: 520px;
}

.radiante-banner__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  justify-self: end;
}

.radiante-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--r-teal);
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.radiante-banner__link:hover .radiante-banner__btn {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.25);
}
.radiante-banner__btn svg { transition: transform 0.22s var(--ease); }
.radiante-banner__link:hover .radiante-banner__btn svg { transform: translateX(4px); }

.radiante-banner__url {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 860px) {
  .radiante-banner__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .radiante-banner__cta { justify-self: start; }
  .radiante-banner__link { padding: 64px 0; }
  .radiante-banner__logo { height: 54px; }
  .radiante-banner__shape--orange { width: 220px; height: 220px; }
  .radiante-banner__shape--ring { right: -40px; }
}

/* =============================================
   CLIENTES
   ============================================= */
.clientes {
  background: linear-gradient(135deg, var(--purple-dark) 0%, #0d0820 100%);
  padding: 80px 0;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.client-chip {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.2s;
}
.client-chip:hover {
  background: rgba(245,200,66,0.15);
  border-color: rgba(245,200,66,0.4);
  color: var(--gold-light);
}

/* =============================================
   CTA INTERMEDIO
   ============================================= */
.cta-mid {
  position: relative;
  padding: 96px 0;
  background:
    radial-gradient(ellipse 55% 45% at 85% 0%, rgba(245, 200, 66, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 5% 100%, rgba(155, 114, 200, 0.28), transparent 60%),
    linear-gradient(135deg, #1e1248 0%, #2a1a5e 55%, #1e1248 100%);
  overflow: hidden;
  isolation: isolate;
}
.cta-mid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.cta-mid__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding: 52px 56px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(245, 200, 66, 0.22);
  border-radius: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}
.cta-mid__inner h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  max-width: 600px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.cta-mid__inner p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  max-width: 520px;
  line-height: 1.65;
  margin: 0;
}
.cta-mid__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 34px rgba(245, 200, 66, 0.38);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.cta-mid__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(245, 200, 66, 0.5);
}
.cta-mid__btn-arrow {
  display: inline-block;
  transition: transform 0.28s var(--ease);
}
.cta-mid__btn:hover .cta-mid__btn-arrow {
  transform: translateX(4px);
}

/* =============================================
   CONTACTO
   ============================================= */
.contacto { background: var(--white); }

.contacto__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-areas:
    "text form"
    "info form";
  column-gap: 72px;
  row-gap: 24px;
  align-items: start;
}

.contacto__text { grid-area: text; }
.contacto__info { grid-area: info; }
.contacto__form { grid-area: form; }

.contacto__text p {
  color: var(--text-mid);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.contacto__info { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-mid);
  font-size: 0.95rem;
}
.contact-item__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--purple);
  transition: color 0.2s;
}
.contact-item__icon svg { display: block; }
.contact-item--link { text-decoration: none; transition: color 0.2s; }
.contact-item--link:hover .contact-item__icon { color: var(--purple-dark); }
.contact-item--whatsapp:hover .contact-item__icon { color: #25D366; }
.contact-item--instagram:hover .contact-item__icon { color: #E1306C; }
.contact-item--link:hover span:last-child {
  color: var(--purple);
  text-decoration: underline;
}

.contacto__form {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--purple-dark);
}
.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--purple-light); }

.form-group input.is-invalid,
.form-group textarea.is-invalid,
.form-group select.is-invalid {
  border-color: #e11d48;
  background: #fef2f2;
}
.form-group.has-error label { color: #e11d48; }

.form-tel {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.form-tel__cc {
  padding: 13px 12px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  max-width: 180px;
  cursor: pointer;
}
.form-tel__cc:focus { border-color: var(--purple-light); }
.form-tel input { flex: 1; min-width: 0; }

@media (max-width: 480px) {
  .form-tel { flex-direction: column; gap: 8px; }
  .form-tel__cc { max-width: 100%; }
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: -8px;
}
.form-note a { color: var(--purple); font-weight: 600; }
.form-note a:hover { text-decoration: underline; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--purple-dark);
  padding: 48px 0 24px;
}

.footer__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}

.footer__brand {
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.footer__logo-img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  display: block;
}
.footer__logo-img--mta { height: 30px; }
.footer__logo-sep {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
}

.footer__copy { color: rgba(255,255,255,0.45); font-size: 0.88rem; }

.footer__mta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer__mta strong { color: var(--gold); }

.footer__bottom {
  text-align: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}
.footer__bottom a { color: rgba(255,255,255,0.4); }
.footer__bottom a:hover { color: var(--white); }

/* =============================================
   MOBILE STICKY CTA
   ============================================= */
.mobile-cta {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 95;
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--purple-dark);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #FFD86B 0%, #F5C842 55%, #E6B82F 100%);
  box-shadow:
    0 10px 24px rgba(245, 200, 66, 0.38),
    0 16px 40px rgba(30, 18, 72, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.mobile-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(245, 200, 66, 0.55);
  animation: mobileCtaPulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes mobileCtaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(245, 200, 66, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(245, 200, 66, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 200, 66, 0); }
}
.mobile-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 32px rgba(245, 200, 66, 0.5),
    0 22px 50px rgba(30, 18, 72, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.mobile-cta__icon {
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  background: rgba(30, 18, 72, 0.12);
  border-radius: 50%;
}
.mobile-cta.is-hidden { opacity: 0; pointer-events: none; transform: translateY(16px); }
.mobile-cta.is-hidden::before { animation: none; }
@media (prefers-reduced-motion: reduce) {
  .mobile-cta::before { animation: none; }
}

/* En desktop/tablet horizontal el footer usa su padding natural (el flotante está oculto) */

/* Form feedback */
.form-feedback {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  min-height: 1.2em;
  margin-top: -4px;
}
.form-feedback.is-success { color: #22875b; }
.form-feedback.is-error   { color: #b42318; }

/* =============================================
   SCROLL FADE-IN
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

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

/* iPad / tablet landscape-ish — programs en 2 cols, steps más compactos */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  section { padding: 80px 0; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .program-card--featured { grid-column: 1 / -1; }
  .contacto__inner { gap: 48px; }
  .hito__grid { gap: 48px; }
  .radiante-banner__container { gap: 32px; }
  .clients-grid { gap: 10px; }
}

/* Tablet / iPad portrait */
@media (max-width: 960px) {
  /* Hero: apila verticalmente */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__left {
    padding: 80px 28px 56px;
    min-height: auto;
  }
  .hero__right {
    min-height: 420px;
    padding: 56px 28px;
  }
  .press-card {
    width: 100%;
    max-width: 420px;
    padding: 28px 30px;
  }
  .hero__title { font-size: clamp(2.4rem, 8vw, 3.4rem); }
  .hero__sub { max-width: 100%; }

  /* Banner Radiante: apila */
  .radiante-banner__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .radiante-banner__cta { justify-self: start; }
  .radiante-banner__link { padding: 64px 0; }

  /* Steps: grid 2x2 */
  .steps { gap: 16px; }
  .step__arrow { display: none; }
  .step { flex: 1 1 calc(50% - 8px); min-width: calc(50% - 8px); }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }

  .hito__grid { grid-template-columns: 1fr; gap: 40px; }
  .programs-grid { grid-template-columns: 1fr; gap: 18px; }
  .program-card--featured { grid-column: auto; }
  .contacto__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "form"
      "info";
    row-gap: 32px;
  }
  .contacto__form { padding: 28px 20px; }

  .steps { flex-direction: column; }
  .step { flex: 1 1 100%; min-width: 100%; }

  .cta-mid { padding: 64px 0; }
  .cta-mid__inner { flex-direction: column; text-align: center; gap: 24px; padding: 36px 24px; border-radius: 22px; }
  .cta-mid__inner h2 { max-width: 100%; }
  .cta-mid__inner p { max-width: 100%; }

  .footer__inner { flex-direction: column; text-align: center; gap: 18px; }
  .footer__brand { margin-right: 0; }

  .nav__links { display: none; }
  .nav .btn--gold { display: none; }
  .nav__hamburger { display: block; }

  .mobile-cta { display: inline-flex; padding: 12px 18px; font-size: 0.9rem; }

  .hero__actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .section-title { margin-bottom: 28px; }
  .section-intro { margin-top: -20px; margin-bottom: 36px; }

  /* Banner Radiante */
  .radiante-banner__logo { height: 52px; }
  .radiante-banner__shape--orange { width: 200px; height: 200px; top: -80px; right: -60px; }
  .radiante-banner__shape--ring { display: none; }
  .radiante-banner__dots { top: 18px; left: 18px; gap: 5px; }
  .radiante-banner__dots span:nth-child(1) { width: 18px; height: 18px; }
  .radiante-banner__dots span:nth-child(2) { width: 14px; height: 14px; }
  .radiante-banner__dots span:nth-child(3) { width: 10px; height: 10px; }

  /* Margen inferior para que el CTA no tape el footer */
  .footer { padding-bottom: 90px; }
}

@media (max-width: 480px) {
  section { padding: 56px 0; }
  .hero__left { padding: 72px 20px 44px; }
  .hero__right { padding: 44px 20px; min-height: 0; }
  .hero__title { font-size: 2.2rem; }
  .hero__sub { font-size: 1rem; margin-bottom: 28px; }
  .press-card { padding: 22px 22px; }
  .hero__pills { gap: 6px; }
  .pill { font-size: 0.72rem; padding: 4px 12px; }

  .section-title { font-size: 1.65rem; }
  .about-card { padding: 22px 22px; }
  .program-card { padding: 30px 22px; }
  .contacto__form { padding: 24px 18px; }

  .radiante-banner__link { padding: 52px 0; }
  .radiante-banner__title { font-size: 1.6rem; }
  .radiante-banner__btn { padding: 14px 22px; font-size: 0.92rem; width: 100%; justify-content: center; }
  .radiante-banner__cta { width: 100%; }

  .mobile-cta__label { display: inline; }

  .nav__logo { gap: 10px; }
  .nav__logo-img { height: 45px; }
  .nav__logo-img--mta { height: 42px; }
  .nav__logo-sep { height: 33px; }
}
