:root {
  --blue-deep: #1c273b;
  --blue-mid: #14598d;
  --blue-brand: #0989c7;
  --blue-light: #4bb5eb;
  --yellow: #f3e500;
  --yellow-hover: #d9cc00;
  --white: #ffffff;
  --gray-100: #f4f6fb;
  --gray-200: #e8ecf4;
  --gray-400: #9aa5bc;
  --gray-600: #5a6480;
  --gray-800: #2a3148;
  --text: #1a2035;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--blue-deep);
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

.topbar-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}

.topbar-logo span {
  color: var(--yellow);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 55%, #0f3a80 100%);
  position: relative;
  overflow: hidden;
  padding: 72px 24px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 95, 209, .35) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 200, 0, .08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 200, 0, .15);
  border: 1px solid rgba(245, 200, 0, .3);
  color: var(--yellow);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(30px, 4.2vw, 52px);
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-un-anio {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-un-anio-icon {
  font-size: 24px;
  line-height: 1;
  animation: icon-pulse 2.2s ease-in-out infinite;
  display: inline-block;
}

@keyframes icon-pulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px rgba(245, 200, 0, 0))
  }

  50% {
    transform: scale(1.18);
    filter: drop-shadow(0 0 8px rgba(245, 200, 0, .7))
  }
}

.hero-un-anio-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hero-un-anio-text span {
  color: var(--yellow);
  position: relative;
  padding-bottom: 3px;
}

.hero-un-anio-text span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  background-size: 200% 100%;
  animation: underline-sweep 2s ease-in-out infinite;
  border-radius: 2px;
}

@keyframes underline-sweep {
  0% {
    background-position: 100% 0;
    opacity: .4
  }

  50% {
    background-position: 0% 0;
    opacity: 1
  }

  100% {
    background-position: -100% 0;
    opacity: .4
  }
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 28px;
  max-width: 560px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-pill {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 20px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}

.hero-stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
}

/* Hero form */
.hero-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
  position: relative;
  z-index: 2;
}

.hero-card h3 {
  font-size: 20px;
  color: var(--blue-deep);
  margin-bottom: 6px;
}

.hero-card>p {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 22px;
}

.form-field {
  margin-bottom: 14px;
}

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.form-field input:not([type="radio"]),
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  background: var(--gray-100);
  transition: border-color .2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--blue-brand);
  background: var(--white);
}

.form-field select.highlight {
  border-color: var(--blue-brand);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  cursor: pointer;
}

.radio-option:hover {
  color: var(--blue-brand);
}

.radio-option input[type="radio"] {
  margin: 0;
  cursor: pointer;
}

.radio-option label {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  cursor: pointer;
  margin: 0 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  display: block;
  flex: 1;
}

.radio-option:has(input:checked) label {
  color: var(--blue-brand);
  font-weight: 700;
}

.radio-option:has(input:checked) input[type="radio"] {
  transform: scale(1.1);
}

.form-submit {
  width: 100%;
  background: var(--yellow);
  color: var(--blue-deep);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 15px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  transition: all .2s;
}

.form-submit:hover {
  background: var(--yellow-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245, 200, 0, .35);
}

.form-legal {
  font-size: 11px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 10px;
}

/* ── SECTIONS ── */
.section {
  padding: 80px 24px;
}

.section-light {
  background: var(--gray-100);
}

.section-dark {
  background: var(--blue-deep);
}

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

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-brand);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(26px, 3vw, 40px);
  color: var(--blue-deep);
  margin-bottom: 16px;
}

.section-title.white {
  color: var(--white);
}

.section-desc {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 700px;
  line-height: 1.7;
}

.section-desc.white {
  color: rgba(255, 255, 255, .7);
}

.title-accent {
  color: var(--blue-brand);
}

.title-accent-yellow {
  color: var(--yellow);
}

.btn-primary {
  background: var(--yellow);
  color: var(--blue-deep);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 32px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--yellow-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245, 200, 0, .35);
}

/* ── VIDEO ── */
.video-section {
  padding: 64px 24px;
  background: var(--white);
}

.video-wrap {
  max-width: 860px;
  margin: 40px auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .15);
  position: relative;
  background: var(--blue-deep);
  aspect-ratio: 16/9;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(245, 200, 0, .5);
  transition: transform .2s, box-shadow .2s;
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(245, 200, 0, .7);
}

.video-ghost-logo {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: rgba(255, 255, 255, .12);
  white-space: nowrap;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: linear-gradient(90deg, var(--blue-deep), var(--blue-mid));
  padding: 28px 24px;
  overflow: hidden;
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.trust-scroll-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.trust-group {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-shrink: 0;
}

.mobile-only {
  display: none;
}

.trust-item {
  text-align: center;
}

.trust-item .amount {
  font-family: 'Outfit', sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.trust-item .label {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  margin-top: 4px;
}

.trust-divider {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, .12);
}

/* ── LAS 3 VÍAS ── */
.vias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}

.via-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .1);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}

.via-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(0, 0, 0, .15);
}

.via-header {
  padding: 28px 28px 22px;
}

.via-header-1 {
  background: linear-gradient(135deg, #0d2d6b, #0f3a80);
}

.via-edad {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.via-header h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.via-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
}

.via-body {
  background: var(--white);
  padding: 24px 28px;
  flex: 1;
}

.via-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 13px;
  color: var(--text);
}

.via-row:last-child {
  border-bottom: none;
}

.via-row-label {
  font-weight: 600;
  color: var(--gray-800);
  min-width: 100px;
  font-size: 12px;
  flex-shrink: 0;
}

.via-row-val {
  color: var(--gray-600);
  flex: 1;
}

.via-cta {
  display: block;
  margin: 16px 28px 28px;
  background: var(--yellow);
  color: var(--blue-deep);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .2s;
  flex-shrink: 0;
}

.via-cta:hover {
  background: var(--yellow-hover);
}

/* ── POR QUÉ UNIVERSITARIOS ── */
.motivos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.motivo-item {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  border: 1.5px solid var(--gray-200);
  transition: all .2s;
}

.motivo-item:hover {
  border-color: var(--blue-brand);
  box-shadow: 0 8px 32px rgba(16, 70, 178, .12);
  transform: translateY(-2px);
}

.motivo-icon {
  font-size: 34px;
  margin-bottom: 14px;
  display: block;
}

.motivo-item h4 {
  font-size: 15px;
  color: var(--blue-deep);
  font-weight: 700;
  margin-bottom: 6px;
}

.motivo-item p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ── INFO + IMAGEN ── */
.curso-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.curso-img {
  overflow: hidden;
}

.curso-img img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--blue-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 12px;
  margin-top: 1px;
}

/* ── MATERIAS ── */
.materias-tabs {
  margin-top: 48px;
}

.materias-tab-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.tab-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: all .2s;
}

.tab-btn.active {
  background: var(--blue-brand);
  border-color: var(--blue-brand);
  color: var(--white);
}

.tab-btn:hover:not(.active) {
  border-color: var(--blue-brand);
  color: var(--blue-brand);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.materia-card {
  background: var(--white);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .07);
  border: 1.5px solid var(--gray-200);
  border-top: 4px solid var(--blue-brand);
}

.materia-card h4 {
  font-size: 14px;
  color: var(--blue-deep);
  margin-bottom: 10px;
}

.materia-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.materia-list li {
  font-size: 12px;
  color: var(--gray-800);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.materia-list li::before {
  content: '›';
  color: var(--blue-brand);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
  flex-shrink: 0;
}

/* ── METODOLOGÍA CAROUSEL ── */
.meto-carousel-wrap {
  margin-top: 52px;
  position: relative;
}

.meto-carousel {
  position: relative;
  min-height: 280px;
}

.meto-slide {
  display: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, .07) 0%, rgba(255, 255, 255, .03) 100%);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  padding: 52px 64px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  animation: slideIn .35s ease;
}

.meto-slide.active {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.meto-slide-num {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.meto-slide-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: block;
}

.meto-slide-title {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 14px;
  font-family: 'Outfit', sans-serif;
}

.meto-slide-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

.meto-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
}

.meto-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meto-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--blue-deep);
}

.meto-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.meto-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  cursor: pointer;
  transition: all .2s;
}

.meto-dot.active {
  background: var(--yellow);
  transform: scale(1.3);
}

.meto-progress-bar {
  width: 100%;
  max-width: 680px;
  margin: 24px auto 0;
  height: 4px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
}

.meto-progress-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 2px;
  transition: width .4s ease;
}

/* ── GARANTÍA ── */
.garantia-box {
  background: linear-gradient(135deg, var(--blue-brand), #0d3ba0);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 48px;
  box-shadow: 0 16px 48px rgba(16, 70, 178, .3);
}

.garantia-icon {
  font-size: 64px;
  line-height: 1;
}

.garantia-box h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
}

.garantia-box p {
  font-size: 15px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
}

.garantia-box strong {
  color: var(--yellow);
}

/* ── OPINIONES ── */
.opiniones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.opinion-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
  border: 1.5px solid var(--gray-200);
}

.opinion-stars {
  color: var(--yellow);
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.opinion-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.opinion-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.opinion-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-brand), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.opinion-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--blue-deep);
}

.opinion-curso {
  font-size: 12px;
  color: var(--gray-400);
}

/* ── FAQ ── */
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--blue-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background .2s;
}

.faq-question:hover {
  background: var(--gray-100);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  background: var(--blue-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform .2s;
}

.faq-answer {
  padding: 0 24px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: all .3s ease;
}

.faq-item.open .faq-answer {
  padding: 0 24px 20px;
  max-height: 400px;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

/* ── CTA FINAL ── */
.cta-final {
  background: linear-gradient(135deg, var(--blue-brand), #0d3ba0);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 200, 0, .12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--white);
  margin-bottom: 14px;
}

.cta-final p {
  font-size: 17px;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, .5);
  text-align: center;
  padding: 28px 24px;
  font-size: 13px;
}

footer span {
  color: var(--yellow);
}

footer a {
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
}

footer a:hover {
  color: var(--yellow);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {

  .hero-inner,
  .curso-grid {
    grid-template-columns: 1fr;
  }



  .vias-grid,
  .motivos-grid,
  .opiniones-grid {
    grid-template-columns: 1fr;
  }

  .garantia-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trust-divider {
    display: block;
  }

  .trust-bar {
    padding: 20px 0;
  }

  .mobile-only {
    display: flex;
  }

  .trust-scroll-wrapper {
    justify-content: flex-start;
    animation: infiniteScroll 30s linear infinite;
    width: max-content;
  }

  @keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .tab-panel.active {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .meto-slide {
    padding: 36px 28px;
  }

  .meto-slide-title {
    font-size: 22px;
  }

  .tab-panel.active {
    grid-template-columns: 1fr;
  }
}