/* PAGE HERO */
.page-hero {
  background: var(--navy);
  padding: 120px 5% 64px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: 0; top: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at right center, rgba(37,99,235,0.2) 0%, transparent 70%);
}
.page-hero-inner { max-width: 1080px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-badge { display: inline-flex; align-items: center; border-left: 2px solid var(--blue); padding: 3px 0 3px 14px; color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: white; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; max-width: 520px; }

/* APP STORE BUTTONS */
.store-buttons { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.store-buttons-center { justify-content: center; margin-top: 32px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); color: #fff;
  padding: 10px 20px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.store-btn:hover { transform: translateY(-2px); background: var(--blue); }
.store-btn svg { width: 24px; height: 24px; flex-shrink: 0; fill: currentColor; }
.store-btn-text { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.store-btn-text small { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.04em; opacity: 0.75; }
.store-btn-text span { font-size: 0.95rem; font-weight: 700; }

.app-download-cta .store-btn { background: var(--white); color: var(--navy); border-color: var(--border); }
.app-download-cta .store-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

.mineduc-page { padding: 88px 5% 100px; }
.mineduc-page .ede-section { margin: 0 auto; }
.mineduc-cta { padding: 72px 5% 100px; }
.mineduc-cta h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; color: var(--navy); margin-bottom: 12px; }

.mineduc-faq {
  padding: 72px 5% 48px;
  background: var(--off);
}
.mineduc-faq h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 32px;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 20px;
}
.faq-item summary {
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  padding: 18px 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  float: right;
  font-weight: 400;
  color: var(--blue);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  padding-bottom: 18px;
  margin: 0;
}

.page-hero-compact { padding-bottom: 48px; }

.agendar-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 5% 80px;
}

.agendar-frame-shell {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 37, 72, 0.08);
  min-height: 820px;
}

.agendar-frame {
  display: block;
  width: 100%;
  min-height: 820px;
  height: 85vh;
  border: 0;
  background: #fff;
}

.agendar-fallback {
  margin-top: 16px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.agendar-fallback a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.agendar-fallback a:hover {
  text-decoration: underline;
}

/* ── ESCUELAS DE LENGUAJE LANDING ── */
.el-hero {
  --el-nav: 64px;
  --el-hero-pad-b: 48px;
  --el-img-pad-y: 28px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #0c2969 0%, #0a2f8a 42%, #022aaf 72%, #0c2969 100%);
  height: 100dvh;
  height: 100svh;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: var(--el-nav) 0 var(--el-hero-pad-b);
  color: #fff;
}

body.admin-bar .el-hero {
  --el-nav: 96px;
  height: calc(100dvh - 32px);
  height: calc(100svh - 32px);
}

@media screen and (max-width: 782px) {
  body.admin-bar .el-hero {
    --el-nav: 110px;
    height: calc(100dvh - 46px);
    height: calc(100svh - 46px);
  }
}
.el-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(191, 219, 254, 0.45) 1.15px, transparent 1.15px);
  background-size: 20px 20px;
  background-position: top right;
  mask-image: radial-gradient(ellipse 50% 65% at 88% 18%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 50% 65% at 88% 18%, #000 0%, transparent 70%);
  opacity: 0.5;
}
.el-hero-inner {
  position: relative;
  z-index: 1;
  max-width: none;
  width: 100%;
  margin: 0;
  padding-left: 5%;
  display: grid;
  grid-template-columns: minmax(300px, 42%) minmax(0, 1fr);
  gap: 28px 36px;
  align-items: center;
  min-height: 0;
  max-height: 100%;
}
.el-hero-copy {
  max-width: 520px;
  padding-right: 0;
}
.el-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 7px 14px 7px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 22px;
}
.el-hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96,165,250,0.25);
}
.el-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 16px;
  max-width: 14ch;
}
.el-hero h1 span { color: #bfdbfe; }
.el-hero-copy > p {
  color: rgba(255,255,255,0.68);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 42ch;
}
.el-hero-copy > p strong {
  color: rgba(255,255,255,0.95);
  font-weight: 700;
}
.el-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.el-btn-primary,
.el-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  padding: 13px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  transition: transform .2s, background .2s, border-color .2s, color .2s;
}
.el-btn-primary {
  background: #fff;
  color: #022aaf;
}
.el-btn-primary:hover {
  transform: translateY(-2px);
  background: #eff6ff;
  color: #0c2969;
}
.el-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.el-btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.el-hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  margin: 0;
  padding: 0;
}
.el-hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
}
.el-hero-trust svg {
  flex-shrink: 0;
  color: #93c5fd;
}
.el-hero-visual {
  position: relative;
  width: calc(100% + 12vw);
  max-width: none;
  max-height: calc(100svh - var(--el-nav) - var(--el-hero-pad-b) - (var(--el-img-pad-y) * 2));
  justify-self: stretch;
  align-self: center;
  margin-right: -12vw;
  padding: var(--el-img-pad-y) 0;
}
.el-hero-visual::before {
  content: '';
  position: absolute;
  left: 8%;
  right: 0;
  top: 4%;
  bottom: 0;
  background: radial-gradient(ellipse at 40% 45%, rgba(59,130,246,0.55) 0%, transparent 68%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}
.el-hero-glass {
  position: relative;
  z-index: 1;
  max-height: 100%;
  padding: 16px 0 16px 14px;
  border-radius: 24px 0 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-right: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(255, 255, 255, 0.04) 100%
  );
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow:
    0 28px 70px rgba(2, 18, 55, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.el-hero-glass img {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  max-height: calc(100svh - var(--el-nav) - var(--el-hero-pad-b) - (var(--el-img-pad-y) * 2) - 32px);
  height: auto;
  display: block;
  border-radius: 14px 0 0 14px;
  border: 0;
  box-shadow: none;
  background: transparent;
  object-fit: contain;
  object-position: left center;
}

.el-section { padding: 72px 5%; }
.el-wrap { max-width: 1080px; margin: 0 auto; }
.el-section h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 12px 0 14px;
  max-width: 22ch;
}
.el-lead {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 28px;
}

.el-definition {
  background: var(--white);
  padding: 64px 5% 56px;
}
.el-definition-wrap {
  max-width: 1120px;
}
.el-definition-head {
  max-width: 720px;
}
.el-definition h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 900;
  color: #0c2969;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: none;
  margin: 0 0 14px;
}
.el-definition h2 span { color: #022aaf; }
.el-definition .el-lead {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 1.02rem;
}

.el-faq {
  background: var(--white);
  padding-bottom: 80px;
}
.el-faq h2 {
  max-width: none;
}
.el-faq .faq-list {
  max-width: 720px;
}

.el-problem {
  background: var(--white);
  padding: 80px 5% 88px;
}
.el-problem-wrap {
  max-width: 1120px;
}
.el-problem-head { max-width: 720px; margin-bottom: 40px; }
.el-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0c2969;
  margin-bottom: 14px;
}
.el-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #022aaf;
}
.el-problem h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 900;
  color: #0c2969;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 14px;
  max-width: 18ch;
}
.el-problem h2 span { color: #022aaf; }
.el-problem .el-lead {
  margin-bottom: 0;
  max-width: 46ch;
}
.el-pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.el-pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 18px 22px;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.el-pain-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.el-pain-icon {
  width: 34px;
  height: 34px;
  color: #022aaf;
  display: inline-flex;
}
.el-pain-icon svg {
  width: 100%;
  height: 100%;
}
.el-pain-num {
  font-size: 0.95rem;
  font-weight: 700;
  color: #93b4ff;
  line-height: 1;
}
.el-pain-card p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0c2969;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.el-solution {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 80px 5% 88px;
}
.el-solution-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(148, 163, 184, 0.28) 1px, transparent 1px),
    radial-gradient(rgba(148, 163, 184, 0.22) 1px, transparent 1px);
  background-size: 18px 18px;
  background-position: right -20px top -20px, left -20px bottom -20px;
  mask-image:
    radial-gradient(ellipse 42% 50% at 92% 8%, #000 0%, transparent 72%),
    radial-gradient(ellipse 38% 45% at 6% 94%, #000 0%, transparent 70%);
  -webkit-mask-image:
    radial-gradient(ellipse 42% 50% at 92% 8%, #000 0%, transparent 72%),
    radial-gradient(ellipse 38% 45% at 6% 94%, #000 0%, transparent 70%);
  opacity: 0.65;
}
.el-solution-wrap {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}
.el-solution-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.el-solution h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 900;
  color: #0c2969;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 14px;
  max-width: none;
}
.el-solution h2 span { color: #022aaf; }
.el-solution .el-lead {
  margin-bottom: 0;
  max-width: 46ch;
}

.el-solution-track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
.el-step {
  position: relative;
  flex: 1 1 0;
  min-width: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.el-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(50% + 44px);
  right: calc(-50% + 44px);
  height: 0;
  border-top: 2px dotted #c7d7f5;
  z-index: 0;
}
.el-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #022aaf;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.el-step-card {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(239, 246, 255, 0.85) 100%
  );
  border: 1px solid rgba(199, 215, 245, 0.9);
  box-shadow:
    0 14px 36px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
}
.el-step-icon {
  width: 34px;
  height: 34px;
  color: #022aaf;
  display: inline-flex;
}
.el-step-icon svg {
  width: 100%;
  height: 100%;
}
.el-step-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0c2969;
  line-height: 1.25;
  max-width: 9ch;
}

.el-solution-note {
  margin: 0;
  padding: 0 0 0 18px;
  border: 0;
  border-left: 3px solid #022aaf;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
  font-style: normal;
  max-width: 640px;
}

.el-pillars {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 80px 5% 88px;
}
.el-pillars-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(148, 163, 184, 0.28) 1px, transparent 1px);
  background-size: 18px 18px;
  background-position: right -20px top -20px;
  mask-image: radial-gradient(ellipse 42% 50% at 92% 8%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 42% 50% at 92% 8%, #000 0%, transparent 72%);
  opacity: 0.65;
}
.el-pillars-wrap {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}
.el-pillars-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.el-pillars h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 900;
  color: #0c2969;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 14px;
  max-width: none;
}
.el-pillars h2 span { color: #022aaf; }
.el-pillars .el-lead {
  margin-bottom: 0;
  max-width: 52ch;
}

.el-pillar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.el-pillar-card:nth-child(-n+3) { grid-column: span 2; }
.el-pillar-card:nth-child(4) { grid-column: 2 / span 2; }
.el-pillar-card:nth-child(5) { grid-column: 4 / span 2; }

.el-pillar-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 20px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 48px rgba(15, 37, 72, 0.07);
}
.el-pillar-media {
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  background: #eef4ff;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.1);
}
.el-pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.el-pillar-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 6px 8px;
}
.el-pillar-copy h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0c2969;
  margin: 0 0 6px;
}
.el-pillar-copy p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  max-width: 30ch;
}
.el-pillar-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #022aaf;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.el-pillar-arrow:hover {
  transform: translateX(2px);
  background: #1d4ed8;
  color: #fff;
}
.el-pillar-arrow svg {
  width: 18px;
  height: 18px;
}

.el-roles {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 80px 5% 96px;
}
.el-roles-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(148, 163, 184, 0.28) 1px, transparent 1px);
  background-size: 18px 18px;
  background-position: right -20px top -20px;
  mask-image: radial-gradient(ellipse 50% 55% at 88% 12%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 50% 55% at 88% 12%, #000 0%, transparent 72%);
  opacity: 0.65;
}
.el-roles-waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.el-roles-waves::before,
.el-roles-waves::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 50%;
}
.el-roles-waves::before {
  width: 920px;
  height: 920px;
  bottom: -780px;
  left: -180px;
}
.el-roles-waves::after {
  width: 720px;
  height: 720px;
  bottom: -640px;
  right: -120px;
}
.el-roles-wrap {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}
.el-roles-head {
  max-width: 640px;
  margin-bottom: 40px;
}
.el-role-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef4ff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0c2969;
  margin-bottom: 16px;
}
.el-roles h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 900;
  color: #0c2969;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0;
  max-width: none;
}
.el-roles h2 span { color: #022aaf; }

.el-role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.el-role-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 20px;
  padding: 24px 24px 22px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(15, 37, 72, 0.06);
}
.el-role-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #022aaf;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.el-role-icon svg {
  width: 24px;
  height: 24px;
}
.el-role-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0c2969;
  margin: 0 0 10px;
}
.el-role-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 32ch;
}
.el-role-arrow {
  margin-top: auto;
  align-self: flex-end;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eef4ff;
  color: #022aaf;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.el-role-arrow:hover {
  transform: translateX(2px);
  background: #dbeafe;
  color: #022aaf;
}
.el-role-arrow svg {
  width: 16px;
  height: 16px;
}

.el-urgency {
  background: var(--white);
  padding: 0 5% 72px;
}
.el-urgency-wrap {
  max-width: 1120px;
}

.el-recursos {
  background: var(--off);
  padding: 72px 5%;
}
.el-recursos-head {
  margin-bottom: 8px;
}
.el-recursos h2 {
  max-width: 28ch;
}
.el-recursos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
  margin-top: 8px;
}
.el-recurso-link {
  display: block;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  color: inherit;
  text-decoration: none;
  height: 100%;
  transition: color 0.2s;
}
.el-recurso-link:hover h3 {
  color: var(--blue);
}
.el-recurso h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.el-recurso p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.el-recurso-cta {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
}
.el-recursos-more {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.el-recursos-more a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.el-recursos-more a:hover {
  text-decoration: underline;
}

#admision,
#fonoaudiologia,
#recursos,
#demo {
  scroll-margin-top: 80px;
}
body.admin-bar #admision,
body.admin-bar #fonoaudiologia,
body.admin-bar #recursos,
body.admin-bar #demo {
  scroll-margin-top: 112px;
}
.el-urgency-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 44px;
  border-radius: 22px;
  background: linear-gradient(115deg, #0c2969 0%, #022aaf 58%, #1d4ed8 100%);
  box-shadow: 0 24px 60px rgba(2, 42, 175, 0.22);
}
.el-urgency-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 16px 16px;
  background-position: right 12px top 12px;
  mask-image: radial-gradient(ellipse 55% 80% at 96% 50%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 55% 80% at 96% 50%, #000 0%, transparent 72%);
}
.el-urgency-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}
.el-urgency-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}
.el-urgency h2 {
  color: #fff;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 12px;
  max-width: 20ch;
}
.el-urgency p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
  max-width: 52ch;
}
.el-urgency-btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #022aaf;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.el-urgency-btn:hover {
  transform: translateY(-2px);
  color: #022aaf;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}
.el-urgency-btn svg {
  width: 16px;
  height: 16px;
}

.el-demo {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
  padding: 80px 5% 96px;
}
.el-demo-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(148, 163, 184, 0.28) 1px, transparent 1px);
  background-size: 18px 18px;
  background-position: left -20px top 40px;
  mask-image: radial-gradient(ellipse 40% 55% at 8% 35%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 40% 55% at 8% 35%, #000 0%, transparent 72%);
  opacity: 0.65;
}
.el-demo-wrap {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}
.el-demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.el-demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef4ff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0c2969;
  margin-bottom: 16px;
}
.el-demo h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 900;
  color: #0c2969;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 14px;
  max-width: none;
}
.el-demo h2 span { color: #022aaf; }
.el-demo .el-lead {
  margin-bottom: 24px;
  max-width: 42ch;
}
.el-demo-bullets {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.el-demo-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
}
.el-demo-bullet-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #eef4ff;
  color: #022aaf;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.el-demo-bullet-icon svg {
  width: 18px;
  height: 18px;
}
.el-demo-alt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.el-demo-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #022aaf;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.el-demo-wa-btn:hover {
  transform: translateY(-2px);
  background: #1d4ed8;
  color: #fff;
}
.el-demo-wa-btn svg {
  width: 18px;
  height: 18px;
}
.el-demo-cal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #022aaf;
  border: 1.5px solid #c7d7f5;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.el-demo-cal-btn:hover {
  transform: translateY(-2px);
  border-color: #022aaf;
  background: #f8fbff;
  color: #022aaf;
}
.el-demo-cal-btn svg {
  width: 16px;
  height: 16px;
}
.el-demo-cal-arrow {
  width: 14px !important;
  height: 14px !important;
}

.el-demo-form-shell {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(15, 37, 72, 0.08);
}
.el-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.el-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0c2969;
}
.el-form label:nth-child(n+7),
.el-form .el-submit,
.el-form .el-form-note {
  grid-column: 1 / -1;
}
.el-form input,
.el-form select {
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  text-transform: none;
  letter-spacing: normal;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 11px 12px;
  background: #fff;
  outline: none;
  transition: border-color .15s;
}
.el-form input:focus,
.el-form select:focus { border-color: var(--blue); }
.el-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  text-align: center;
  background: #022aaf;
  color: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 800;
}
.el-submit:hover {
  background: #1d4ed8;
  color: #fff;
}
.el-form-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
}
.el-form-note svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #94a3b8;
}
.el-form-error {
  background: #fef2f2;
  color: #b91c1c;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.el-form-success {
  text-align: center;
  padding: 24px 8px;
}
.el-form-success strong {
  display: block;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.el-form-success p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

@media (max-width: 960px) {
  .el-hero {
    height: auto;
    min-height: 0;
    padding: 104px 5% 56px;
  }
  .el-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-left: 0;
    padding-right: 0;
  }
  .el-hero h1 { max-width: none; }
  .el-hero-visual {
    width: calc(100% + 5%);
    margin-right: -5%;
    max-width: none;
    max-height: none;
  }
  .el-hero-glass {
    border-radius: 20px 0 0 20px;
    padding: 12px 0 12px 12px;
  }
  .el-hero-glass img {
    min-width: 0;
    max-height: none;
    border-radius: 12px 0 0 12px;
  }
}

@media (max-width: 960px) {
  .el-pain-grid { grid-template-columns: repeat(2, 1fr); }
  .el-problem { padding: 64px 5% 72px; }
  .el-problem h2 { max-width: none; }
}

@media (max-width: 960px) {
  .el-roles { padding: 64px 5% 80px; }
  .el-role-grid { grid-template-columns: 1fr; }
  .el-role-card { min-height: 0; }
  .el-role-card p { max-width: none; }
  .el-demo { padding: 64px 5% 80px; }
}

@media (max-width: 860px) {
  .el-demo-grid { grid-template-columns: 1fr; }
  .el-form { grid-template-columns: 1fr; }
  .el-form label { grid-column: 1 / -1 !important; }
  .el-section h2 { max-width: none; }
  .el-recursos-grid { grid-template-columns: 1fr; }
  .el-urgency-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
  }
  .el-urgency-btn { width: 100%; justify-content: center; }
  .el-urgency h2 { max-width: none; }
  .el-demo-alt { flex-direction: column; align-items: stretch; }
  .el-demo-wa-btn,
  .el-demo-cal-btn { justify-content: center; }
}

@media (max-width: 960px) {
  .el-solution-track {
    justify-content: flex-start;
    gap: 8px;
    padding-bottom: 12px;
  }
  .el-step {
    flex: 0 0 108px;
    min-width: 108px;
  }
  .el-step:not(:last-child)::after {
    left: calc(50% + 40px);
    right: calc(-50% + 40px);
  }
}

@media (max-width: 560px) {
  .el-pain-grid { grid-template-columns: 1fr; }
  .el-pain-card { min-height: 0; }
}

@media (max-width: 960px) {
  .el-pillars { padding: 64px 5% 72px; }
  .el-pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .el-pillar-card:nth-child(-n+5) { grid-column: auto; }
  .el-pillar-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: calc(50% - 10px);
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .el-pillar-grid { grid-template-columns: 1fr; }
  .el-pillar-card:nth-child(5) {
    max-width: none;
    justify-self: stretch;
  }
  .el-pillar-copy p { max-width: none; }
}
