:root {
  --navy: #031b43;
  --navy-deep: #03152f;
  --navy-mid: #031b4e;
  --blue: #1a67ff;
  --blue-text: #1a67ff;
  --cyan: #5eb3ff;
  --cyan-bright: #8fd0ff;
  --gold: #0057ff;
  --gold-dark: #0046d4;
  --gold-text: #1a67ff;
  --gold-text-2: #1a67ff;
  --green: #159447;
  --green-dark: #107b3b;
  --white: #ffffff;
  --slate: #5b6b80;
  --slate-600: #4a5568;
  --text: rgba(9, 9, 9, 0.9);
  --page: #f7f8fa;
  --page-soft: #f4f5f7;
  --arrow: #e8e8e8;
  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--page);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select {
  font-family: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

.hidden {
  display: none !important;
}

.icon {
  display: block;
  flex-shrink: 0;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 21, 47, 0.7);
}

.hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(to top, var(--navy-deep), transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 80px 20px;
}

.hero__inner {
  width: 100%;
  max-width: 700px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero__title {
  margin-top: 24px;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero__text {
  margin-top: 20px;
  max-width: 620px;
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.75;
}

.hero__stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero__stat {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(10px);
  transition: background 0.3s;
}

.hero__stat:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero__stat-label {
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__stat-value {
  margin-top: 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.hero__actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: 0.3s;
}

.btn-gold {
  background: var(--blue);
  color: var(--arrow);
  box-shadow: 0 10px 20px rgba(26, 103, 255, 0.28);
}

.btn-gold:hover {
  background: var(--gold-dark);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.btn-ghost:hover {
  background: #fff;
  color: rgba(9, 9, 9, 0.9);
}

.hero__metrics {
  display: none;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hero__metric-value {
  color: var(--gold);
  font-size: 24px;
  font-weight: 700;
}

.hero__metric-label {
  margin-top: 4px;
  color: #d1d5db;
  font-size: 12px;
  line-height: 1.4;
}

/* =========================================================
   REGISTRO
========================================================= */

.registro {
  min-height: 100vh;
  background: var(--page);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.site-header__inner {
  max-width: 2000px;
  min-height: 92px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.brand__name {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--navy);
  font-size: 27px;
  font-weight: 600;
}

.header-note {
  display: none;
  text-align: center;
}

.header-note p {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.header-note span {
  display: block;
  width: 250px;
  height: 3px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: var(--blue-text);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 4px 12px rgba(21, 148, 71, 0.25);
  transition: 0.2s;
}

.btn-whatsapp .icon {
  flex-shrink: 0;
  fill: #fff;
}

.btn-whatsapp:hover {
  background: var(--green-dark);
}

.btn-whatsapp span {
  display: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.registro__grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
}

.registro__promo {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--navy);
  display: flex;
  flex-direction: column;
}

.registro__promo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% center;
}

.registro__promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(3, 27, 67, 0.96) 0%,
    rgba(3, 27, 67, 0.88) 42%,
    rgba(6, 45, 93, 0.45) 70%,
    rgba(3, 27, 67, 0.18) 100%
  );
}

.registro__promo-overlay--bottom {
  background: linear-gradient(
    to top,
    rgba(3, 27, 67, 0.88) 0%,
    rgba(3, 27, 67, 0.2) 42%,
    transparent 70%
  );
}

.registro__promo-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 48px 40px 40px;
}

.registro__promo-copy {
  max-width: 480px;
}

.chip {
  display: inline-flex;
  background: #7eb3ff;
  color: #0b2f7a;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.registro__promo h2 {
  margin-top: 24px;
  max-width: 480px;
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
}

.registro__promo h2 span {
  display: block;
  color: #cfe3ff;
}

.registro__promo-text {
  margin-top: 16px;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.6;
}

.benefit-list {
  margin-top: 32px;
  display: grid;
  gap: 20px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 16px;
}

.benefit__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #7eb3ff;
  color: #0b2f7a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.benefit p {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.4;
}

.feature-bar {
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
}

.feature-bar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
}

.feature strong {
  display: block;
  color: var(--text);
  font-size: 14px;
}

.feature p {
  color: #39445a;
  font-size: 12px;
}

.registro__form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--page-soft);
  padding: 40px 20px;
}

.form-card {
  width: 100%;
  max-width: 650px;
  background: #fff;
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 15px 50px rgba(15, 43, 83, 0.12);
  scroll-margin-top: 24px;
}

.form-card__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.form-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-card h3 {
  font-size: 30px;
  font-weight: 800;
  color: var(--text);
}

.form-card__head p {
  margin-top: 4px;
  color: #39445a;
}

.form {
  margin-top: 36px;
}

.form-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--blue);
}

.form-section h4 {
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.field {
  position: relative;
}

.field svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c7b96;
  pointer-events: none;
}

.field input,
.field select,
.program-select {
  width: 100%;
  height: 58px;
  border: 1px solid #d0d8e5;
  border-radius: 12px;
  background: #fff;
  padding: 0 16px 0 48px;
  font-size: 16px;
  color: #172033;
  outline: none;
  appearance: none;
}

.program-select {
  padding-left: 20px;
  padding-right: 48px;
  border-color: #b8d5f7;
  background: #f3f8ff;
  font-weight: 600;
}

.field input:focus,
.field select:focus,
.program-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(26, 103, 255, 0.12);
}

.field__chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #172033;
}

.form-section--program {
  margin: 32px 0 16px;
}

.check {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: #374151;
  font-size: 14px;
  line-height: 1.4;
}

.check input {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  accent-color: var(--blue);
  flex-shrink: 0;
}

.btn-submit {
  margin-top: 28px;
  width: 100%;
  height: 68px;
  border: 0;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(3, 27, 67, 0.18);
  transition: 0.2s;
}

.btn-submit:hover {
  background: #082968;
  transform: translateY(-1px);
}

.form-note {
  margin-top: 16px;
  text-align: center;
  color: var(--slate);
  font-size: 12px;
  font-weight: 500;
}

.trust-row {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e5e9f0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--blue);
}

.trust strong,
.trust p {
  display: block;
  font-size: 12px;
  line-height: 1.2;
}

.trust strong {
  color: #172033;
}

.trust p {
  color: #4b5563;
  font-weight: 400;
}

/* Confirmación */

.confirm {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.confirm__card {
  width: 100%;
  max-width: 760px;
  overflow: hidden;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 20px 70px rgba(15, 43, 83, 0.14);
}

.gold-line {
  height: 8px;
  background: var(--gold);
}

.confirm__body {
  padding: 24px;
}

.confirm__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(21, 148, 71, 0.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirm__copy {
  margin-top: 24px;
  text-align: center;
}

.confirm__copy small {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.confirm__copy h2 {
  margin-top: 12px;
  color: var(--navy);
  font-size: 30px;
  font-weight: 800;
}

.confirm__copy p {
  margin: 16px auto 0;
  max-width: 580px;
  color: var(--slate);
}

.steps {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}

.step {
  border: 1px solid #e5e9f0;
  background: #f7faff;
  border-radius: 16px;
  padding: 16px;
}

.step__top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step small {
  display: block;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.step strong {
  color: var(--navy);
  font-size: 14px;
}

.step p {
  margin-top: 12px;
  color: var(--slate);
  font-size: 12px;
}

.notice {
  margin-top: 28px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(21, 148, 71, 0.2);
  background: rgba(21, 148, 71, 0.05);
  border-radius: 16px;
  padding: 16px;
}

.notice__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notice strong {
  color: var(--navy);
  font-size: 14px;
}

.notice p {
  margin-top: 4px;
  color: var(--slate-600);
  font-size: 14px;
}

.btn-whatsapp-full {
  margin-top: 32px;
  width: 100%;
  height: 66px;
  border: 0;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(21, 148, 71, 0.25);
}

.btn-whatsapp-full:hover {
  background: var(--green-dark);
  transform: translateY(-4px);
}

.btn-edit {
  margin-top: 16px;
  width: 100%;
  height: 52px;
  border: 1px solid #d9e0ea;
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.btn-edit:hover {
  border-color: var(--blue);
  background: #f3f8ff;
}

.confirm__foot {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e5e9f0;
  text-align: center;
  color: #94a3b8;
  font-size: 12px;
}

/* =========================================================
   INFORMACIÓN
========================================================= */

.info {
  background: var(--page);
}

.info-bar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.info-bar__inner {
  max-width: 1600px;
  height: 76px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
}

.info-bar span {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.info-bar span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
}

.info__grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 76px);
}

.info__main {
  background: #fff;
  padding: 40px 28px;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-kicker i,
.bar {
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
}

.section-kicker span {
  color: var(--gold-text);
  font-size: 11px;
  font-weight: 800;
}

.kicker-light {
  color: #8fd0ff !important;
}
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.info__main h2 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.info__main h2 em {
  font-style: normal;
  color: var(--gold);
}

.benefits {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.benefit-card {
  position: relative;
  min-height: 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: 0.3s;
}

.benefit-card:hover {
  transform: translateY(-3px);
  border-color: #b8d4f5;
  background: #f7fbff;
  box-shadow: 0 10px 24px rgba(26, 103, 255, 0.08);
}

.benefit-card--dark {
  background: #fff;
  border-color: #e2e8f0;
}

.benefit-card--dark h3 {
  color: var(--text);
}

.benefit-card__num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #eef5ff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  margin-right: 16px;
  flex-shrink: 0;
  transition: 0.3s;
}

.benefit-card:hover .benefit-card__num {
  background: #dcecff;
}

.benefit-card--dark .benefit-card__num {
  background: #eef5ff;
  color: var(--blue);
}

.benefit-card h3 {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}

.invest {
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(3, 27, 78, 0.08);
}

.invest__line {
  height: 6px;
  background: var(--gold);
}

.invest__body {
  padding: 24px;
}

.invest__intro {
  text-align: center;
}

.invest__intro small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.invest__intro h3 {
  margin-top: 12px;
  font-size: 28px;
  font-weight: 800;
}

.invest__intro p {
  margin: 12px auto 0;
  max-width: 640px;
  color: #64748b;
  font-size: 14px;
}

.invest__grid {
  margin-top: 32px;
  display: grid;
  gap: 20px;
}

.price-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: inherit;
  transition: 0.3s;
}

.price-card:hover {
  transform: translateY(-4px);
  background: #1a56c4;
  border-color: #4d8fff;
  color: #fff;
  box-shadow: 0 16px 36px rgba(26, 86, 196, 0.28);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #7eb3ff;
  color: #0b2f7a;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.price-card small {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy-mid);
}

.price-card:hover small {
  color: #cfe3ff;
}

.price {
  margin-top: 16px;
  font-size: 48px;
  font-weight: 800;
}

.price span {
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
}

.price-card:hover .price span {
  color: #cfe3ff;
}

.price-card p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  font-weight: 400;
}

.price-card:hover p {
  color: #e8f1ff;
}

.price-note {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  transition: 0.3s;
}

.price-card:hover .price-note {
  background: rgba(126, 179, 255, 0.28);
  border-color: rgba(126, 179, 255, 0.45);
}

.price-note i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eef5ff;
  color: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  transition: 0.3s;
}

.price-card:hover .price-note i {
  background: #7eb3ff;
  color: #0b2f7a;
}

.mini-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-box {
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  transition: 0.3s;
}

.price-card:hover .mini-box {
  background: rgba(126, 179, 255, 0.28);
  border-color: rgba(126, 179, 255, 0.45);
}

.price-card:hover .mini-box small {
  color: #cfe3ff;
}

.price-card:hover .mini-box strong {
  color: #fff;
}

.mini-box small {
  color: #94a3b8;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.mini-box strong {
  display: block;
  margin-top: 4px;
  color: var(--navy-mid);
  font-size: 18px;
}

.objectives {
  margin-top: 40px;
}

.objectives__title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.objectives__title b {
  width: 4px;
  height: 36px;
  border-radius: 999px;
  background: var(--gold);
}

.objectives__title h3 {
  font-size: 24px;
  font-weight: 800;
}

.objective {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid #e7ebf0;
  background: #fafbfd;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
}

.objective span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.objective p {
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.6;
}

.modality {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
  background: #7eb3ff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.malla-stat::before,
.malla-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #7eb3ff;
  opacity: 0;
  transition: 0.3s;
}

.malla-stat:hover,
.malla-item:hover {
  background: #1a56c4;
}

.malla-stat:hover::before,
.malla-item:hover::before {
  opacity: 1;
}

.modality small {
  color: #0b2f7a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.modality h3 {
  margin-top: 4px;
  color: #031b43;
  font-size: 24px;
  font-weight: 800;
}

.modality p {
  margin-top: 4px;
  color: #0b2f7a;
  font-size: 14px;
}

.modality__box {
  border: 1px solid rgba(11, 47, 122, 0.16);
  background: rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  padding: 12px 20px;
  text-align: center;
}

.modality__box strong {
  display: block;
  margin-top: 4px;
  color: #031b43;
  font-size: 14px;
}

.info__aside {
  background: var(--page);
  border-left: 0;
  padding: 32px 20px;
}

.side-card {
  overflow: hidden;
  border: 1px solid #e1e6ed;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 55px rgba(3, 27, 67, 0.1);
}

.side-card__line {
  height: 8px;
  background: var(--gold);
}

.side-card__body {
  padding: 24px;
}

.side-card small {
  color: var(--gold-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.date-row {
  margin-top: 12px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.date-row b {
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
}

.soon {
  margin-top: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.divider {
  height: 1px;
  margin: 24px 0;
  background: #e7ebf0;
}

.avail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.avail-item i {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avail-item strong {
  display: block;
  font-size: 13px;
}

.avail-item p {
  color: var(--slate);
  font-size: 12px;
}

.soon-box {
  margin-top: 16px;
  border: 1px solid #7eb3ff;
  background: #eaf2ff;
  border-radius: 12px;
  padding: 16px;
}

.soon-box p {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
}

.program-data small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.program-data p {
  margin: 4px 0 16px;
  color: var(--slate-600);
  font-size: 14px;
  font-weight: 600;
}

.contact-box {
  margin-top: 16px;
  background: #f7faff;
  border-radius: 16px;
  padding: 16px;
}

.contact-box__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-box__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-box strong {
  display: block;
  font-size: 14px;
}

.contact-box p {
  margin-top: 4px;
  color: var(--slate-600);
  font-size: 14px;
}

.contact-box a,
.foot-col a {
  color: inherit;
  text-decoration: none;
}

.contact-box a:hover,
.foot-col a:hover {
  color: #1a67ff;
  text-decoration: underline;
}

.contact-box__mail {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e4e8ed;
}

.contact-box__mail small {
  font-size: 10px;
}

.contact-box__mail p {
  margin-top: 4px;
  color: var(--navy);
  font-weight: 600;
  word-break: break-all;
}

.side-foot {
  margin-top: 24px;
  text-align: center;
}

.side-foot i {
  display: block;
  width: 40px;
  height: 3px;
  margin: 0 auto;
  background: var(--gold);
}

.side-foot p {
  margin-top: 12px;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* =========================================================
   ACADÉMICO
========================================================= */

.academic-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 64px 24px;
}

.academic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 85% 20%,
    rgba(0, 189, 232, 0.16),
    transparent 35%
  );
}

.academic-hero__inner {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.1);
  color: #d6e8ff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.academic-hero h2 {
  margin-top: 20px;
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.12;
}

.academic-hero h2 span {
  color: var(--cyan);
}

.academic-hero p {
  margin-top: 24px;
  max-width: 760px;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.75;
}

.hero-chips {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px 20px;
  color: #fff;
}

.hero-chip small {
  display: block;
  color: #94a3b8;
  font-size: 12px;
}

.wrap {
  max-width: 1600px;
  margin: 0 auto;
  padding: 56px 24px;
}

.cert {
  background: #fff;
}

.cert__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.cert h3 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}

.cert h3 span {
  color: var(--blue);
}

.cert > .wrap p,
.cert__text p {
  margin-top: 20px;
  color: #475569;
  line-height: 1.75;
}

.check-list {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  list-style: none;
  color: #334155;
  font-size: 14px;
  font-weight: 500;
}

.check-list i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.diploma-card {
  position: relative;
  border: 1px solid #e2e8f0;
  background: #f7faff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(3, 27, 67, 0.12);
}

.diploma-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.diploma-card__top small {
  color: var(--gold-text-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.diploma-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.diploma-card img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 12px;
}

.diploma-card em {
  display: block;
  margin-top: 16px;
  text-align: center;
  color: #94a3b8;
  font-size: 11px;
  font-style: normal;
}

.teachers {
  background: var(--page-soft);
}

.teachers__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.teachers h3 {
  font-size: 30px;
  font-weight: 800;
}

.teachers__head p {
  margin-top: 12px;
  max-width: 640px;
  color: #475569;
}

.tag {
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: #fff;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  align-self: flex-start;
}

.teacher-grid {
  display: grid;
  gap: 24px;
}

.teacher {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: 0.3s;
}

.teacher:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 30px rgba(3, 27, 67, 0.12);
}

.teacher__photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f1f5f9;
}

.teacher__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.teacher:hover img {
  transform: scale(1.05);
}

.teacher__body {
  padding: 24px;
}

.teacher h4 {
  font-size: 20px;
  font-weight: 700;
}

.teacher p {
  margin-top: 8px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.teacher i {
  display: block;
  width: 40px;
  height: 1px;
  margin-top: 20px;
  background: var(--gold);
}

.teacher small {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
}

.teachers__note {
  margin-top: 24px;
  color: #94a3b8;
  font-size: 12px;
}

.plan {
  background: #fff;
}

.plan h3 {
  font-size: 30px;
  font-weight: 800;
}

.plan > .wrap > p,
.plan__intro {
  margin-top: 16px;
  max-width: 760px;
  color: #475569;
  line-height: 1.75;
}

.modules {
  margin-top: 40px;
  display: grid;
  gap: 12px;
}

.module {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 12px;
  transition: 0.3s;
}

.module.is-open {
  border-color: rgba(8, 117, 209, 0.3);
  background: #f7fbff;
  box-shadow: 0 8px 20px rgba(3, 27, 67, 0.08);
}

.module__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.module__num {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #eaf2ff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.module.is-open .module__num {
  background: var(--navy);
  color: var(--gold);
}

.module__btn strong {
  display: block;
  color: var(--navy);
}

.module__hint {
  display: block;
  margin-top: 4px;
  color: #94a3b8;
  font-size: 12px;
}

.module.is-open .module__hint {
  display: none;
}

.module__plus {
  margin-left: auto;
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.2s;
}

.module.is-open .module__plus {
  transform: rotate(45deg);
}

.module__body {
  display: none;
  padding: 20px;
  border-top: 1px solid #e2e8f0;
}

.module.is-open .module__body {
  display: grid;
  gap: 24px;
}

.module__body p {
  color: #475569;
  font-size: 14px;
  line-height: 1.75;
}

.topics {
  display: grid;
  gap: 8px;
}

.topic {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  color: #475569;
  font-size: 12px;
}

.topic span {
  color: var(--gold);
}

.malla {
  background: var(--navy);
  color: #fff;
}

.malla h3 {
  font-size: 30px;
  font-weight: 800;
}

.malla__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.malla p {
  margin-top: 20px;
  color: #cbd5e1;
  line-height: 1.75;
}

.malla-stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.malla-stat {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 16px;
  transition: 0.3s;
}

.malla-stat b {
  display: block;
  font-size: 24px;
}

.malla-stat b.cyan {
  color: var(--cyan);
}

.malla-stat b.gold {
  color: var(--gold);
}

.malla-stat span {
  display: block;
  margin-top: 4px;
  color: #94a3b8;
  font-size: 12px;
}

.malla-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 16px;
}

.malla-list {
  display: grid;
  gap: 12px;
}

.malla-item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 16px;
  transition: 0.3s;
}

.malla-item span {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
  transition: 0.3s;
}

.malla-item:hover span {
  background: #7eb3ff;
  color: #0b2f7a;
}

.malla-item p {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.cta {
  background: #fff;
}

.cta__box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: #f7faff;
  border-radius: 16px;
  padding: 28px;
}

.cta__box small {
  color: var(--gold-text-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.cta__box h3 {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 800;
}

.cta__box p {
  margin-top: 8px;
  color: #64748b;
  font-size: 14px;
}

.cta__tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  align-self: flex-start;
}

/* =========================================================
   FOOTER
========================================================= */

.partners {
  background: #fff;
  border-top: 1px solid #eef1f5;
}

.partners__inner {
  padding: 64px 24px;
}

.partners__intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.partners__kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.partners__kicker i {
  width: 48px;
  height: 2px;
  background: var(--gold);
}

.partners__kicker span {
  color: var(--gold-text-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.partners h2 {
  font-size: 30px;
  font-weight: 800;
}

.partners__intro p {
  margin: 16px auto 0;
  max-width: 640px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.75;
}

.carousel {
  max-width: 1800px;
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.3s;
}

.carousel__btn:hover {
  border-color: var(--gold);
  background: var(--navy);
  color: #fff;
}

.carousel__grid {
  min-width: 0;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.logo-card {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: 0.3s;
}

.logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 15px 40px rgba(3, 27, 67, 0.12);
}

.logo-card img {
  max-height: 145px;
  max-width: 88%;
  object-fit: contain;
}

.dots {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: 0.3s;
}

.dot.is-active {
  width: 32px;
  background: var(--gold);
}

.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 48px 32px 24px;
}

.site-footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.foot-col {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.foot-col__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #7eb3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.foot-col__icon svg {
  width: 20px;
  height: 20px;
}

.foot-col h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.foot-col p {
  margin-top: 8px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.65;
}

.site-footer__line {
  max-width: 1200px;
  margin: 36px auto 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.site-footer__bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__bottom p {
  color: #94a3b8;
  font-size: 13px;
}

.site-footer__bottom small {
  display: block;
  margin-top: 4px;
  color: #7b8794;
  font-size: 12px;
}

.pills-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #8fd0ff;
  font-size: 13px;
  font-weight: 600;
}

.pills-row span {
  color: var(--gold);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (min-width: 640px) {
  .hero__image {
    object-position: 62% center;
  }

  .hero__title {
    font-size: 38px;
  }

  .hero__text {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: row;
  }

  .btn {
    width: auto;
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero__metrics {
    display: grid;
  }

  .btn-whatsapp span {
    display: block;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits {
    grid-template-columns: 1fr 1fr;
  }

  .teacher-grid {
    grid-template-columns: 1fr 1fr;
  }

  .carousel__grid {
    grid-template-columns: 1fr 1fr;
  }

  .topics {
    grid-template-columns: 1fr 1fr;
  }

  .malla-list {
    grid-template-columns: 1fr 1fr;
  }

  .cta__box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .header-note {
    display: block;
  }

  .hero__title {
    font-size: 42px;
  }

  .feature-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .invest__grid {
    grid-template-columns: 1fr 1fr;
  }

  .modality {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .site-footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero__image {
    object-position: center;
  }

  .hero__overlay {
    background: rgba(3, 21, 47, 0.6);
  }

  .hero__content {
    padding: 64px;
  }

  .hero__inner {
    max-width: 760px;
  }

  .hero__title {
    font-size: 48px;
  }

  .hero__text {
    font-size: 20px;
  }

  .registro__grid {
    grid-template-columns: 1.12fr 0.88fr;
  }

  .info__grid {
    grid-template-columns: 1.12fr 0.88fr;
  }

  .info__aside {
    border-left: 1px solid #e3e7ed;
  }

  .cert__grid,
  .malla__grid {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .malla__grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .teacher-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .teachers__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .carousel__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .module.is-open .module__body {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (min-width: 1280px) {
  .hero__title {
    font-size: 52px;
  }
}

/* =========================================================
   MARQUEE INSTITUCIONAL
========================================================= */

.page-header {
  padding: 32px 0;
  background: #fff;
}

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__content {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 56px;
  padding: 12px 28px;
  margin: 0;
}

.marquee__item img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .marquee__item img {
    height: 88px;
    max-width: 180px;
  }
}

/* =========================================================
   REVELADO AL BAJAR
========================================================= */

.has-reveal .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.has-reveal .reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .has-reveal .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.mobile-hero-header {
  position: relative;
  z-index: 10;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 12% 50%, rgba(26, 103, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #03152f 0%, #05275b 100%);
  box-shadow: 0 8px 24px rgba(3, 21, 47, 0.28);
}

.mobile-hero-header__inner {
  max-width: 2000px;
  min-height: 92px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mobile-hero-header .brand__name {
  color: #fff;
}

.mobile-hero-header .brand__name span:last-child {
  color: #8fd0ff;
}

.mobile-hero-header .brand img {
  padding: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 0 2px rgba(143, 208, 255, 0.24);
}

.registro .site-header {
  display: none;
}

@media (min-width: 640px) {
  .hero__content {
    min-height: calc(100vh - 92px);
  }
}

/* =========================================================
   TELÉFONOS
========================================================= */

@media (max-width: 639px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .mobile-hero-header {
    min-height: 72px;
  }

  .mobile-hero-header__inner {
    min-height: 72px;
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .hero__content {
    min-height: calc(100svh - 72px);
    min-height: calc(100dvh - 72px);
    padding: 32px 16px 40px;
  }

  .hero__image {
    object-position: 72% center;
  }

  .hero__badge {
    padding: 7px 12px;
    letter-spacing: 1.4px;
  }

  .hero__title {
    margin-top: 18px;
    font-size: clamp(27px, 8.5vw, 32px);
    overflow-wrap: anywhere;
  }

  .hero__text {
    margin-top: 16px;
    line-height: 1.6;
  }

  .hero__stats {
    margin-top: 20px;
    gap: 8px;
  }

  .hero__stat {
    min-width: 0;
    padding: 12px;
    border-radius: 12px;
  }

  .hero__actions {
    margin-top: 24px;
  }

  .site-header__inner {
    min-height: 72px;
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
    gap: 8px;
  }

  .brand {
    min-width: 0;
    gap: 7px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand__name {
    min-width: 0;
    gap: 5px;
    font-size: clamp(14px, 4.6vw, 18px);
    line-height: 1;
  }

  .btn-whatsapp {
    flex-shrink: 0;
    gap: 4px;
    min-width: 48px;
    min-height: 48px;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 10px;
  }

  .btn-whatsapp .icon {
    width: 27px;
    height: 27px;
  }

  .registro__grid {
    min-height: auto;
  }

  .registro__promo {
    min-height: auto;
  }

  .registro__promo-content {
    padding: 32px 16px 24px;
  }

  .registro__promo h2 {
    margin-top: 18px;
    font-size: 26px;
  }

  .registro__promo-text {
    font-size: 15px;
  }

  .benefit-list {
    margin-top: 24px;
    gap: 16px;
  }

  .benefit {
    gap: 12px;
  }

  .benefit__icon {
    width: 42px;
    height: 42px;
  }

  .feature-bar {
    margin-top: 28px;
    padding: 16px;
  }

  .feature-bar__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature svg {
    width: 24px;
    height: 24px;
  }

  .registro__form-wrap {
    padding: 24px 12px;
  }

  .form-card {
    padding: 20px 16px;
    border-radius: 20px;
    scroll-margin-top: 88px;
  }

  .form-card__head {
    gap: 12px;
  }

  .form-card__icon {
    width: 46px;
    height: 46px;
  }

  .form-card h3,
  .confirm__copy h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .form {
    margin-top: 24px;
  }

  .form-section {
    margin-bottom: 20px;
  }

  .form-section h4 {
    font-size: 16px;
  }

  .form-section--program {
    margin-top: 24px;
  }

  .check {
    gap: 10px;
    font-size: 13px;
  }

  .check input {
    width: 22px;
    height: 22px;
  }

  .btn-submit,
  .btn-whatsapp-full {
    min-height: 56px;
    height: auto;
    padding: 14px 16px;
    font-size: 16px;
  }

  .trust-row {
    gap: 16px;
  }

  .info-bar__inner {
    height: 58px;
    padding: 0 16px;
  }

  .info__main {
    padding: 32px 16px;
  }

  .invest {
    margin-top: 32px;
    border-radius: 18px;
  }

  .invest__body {
    padding: 20px 14px;
  }

  .invest__intro h3 {
    font-size: 22px;
  }

  .price-card {
    padding: 20px 16px;
  }

  .price-card--featured {
    padding-top: 48px;
  }

  .badge {
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    font-size: 10px;
  }

  .price {
    font-size: 36px;
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }

  .wrap {
    padding: 36px 16px;
  }

  .cert__grid,
  .malla__grid {
    gap: 28px;
  }

  .cert h3,
  .teachers h3,
  .plan h3,
  .malla h3,
  .partners h2 {
    font-size: 24px;
    line-height: 1.25;
  }

  .diploma-card {
    padding: 14px;
  }

  .diploma-card img {
    padding: 8px;
  }

  .module__btn {
    align-items: flex-start;
    gap: 10px;
    padding: 14px 12px;
  }

  .module__num {
    width: 36px;
    height: 36px;
  }

  .module__btn strong {
    font-size: 14px;
    line-height: 1.35;
  }

  .module__body {
    padding: 16px 12px;
  }

  .malla-stats {
    gap: 8px;
  }

  .malla-stat {
    min-width: 0;
    padding: 12px;
  }

  .malla-item {
    align-items: flex-start;
    padding: 12px;
  }

  .malla-item p {
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: 11px;
    line-height: 1.45;
  }

  .cta__box {
    padding: 20px 16px;
  }

  .partners__inner {
    padding: 40px 16px;
  }

  .carousel {
    margin-top: 32px;
    gap: 8px;
  }

  .carousel__btn {
    width: 40px;
    height: 40px;
  }

  .logo-card {
    height: 170px;
    padding: 16px;
  }

  .page-header {
    padding: 20px 0;
  }

  .marquee__content {
    gap: 32px;
    padding: 8px 16px;
  }

  .marquee__item img {
    height: 56px;
    max-width: 120px;
  }

  .site-footer {
    padding: 32px 16px max(20px, env(safe-area-inset-bottom));
  }

  .foot-col,
  .site-footer__bottom {
    min-width: 0;
  }

  .foot-col p,
  .site-footer__bottom p,
  .site-footer__bottom small {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 767px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 639px) and (hover: none) {
  .btn-submit:hover,
  .btn-whatsapp-full:hover,
  .benefit-card:hover,
  .price-card:hover,
  .teacher:hover,
  .logo-card:hover {
    transform: none;
  }
}
