:root {
  --container: 1200px;
  --space-section: 104px;
  --space-section-mobile: 64px;
  --text: #111111;
  --muted: #5f6368;
  --line: rgba(17, 17, 17, 0.08);
  --line-strong: rgba(17, 17, 17, 0.14);
  --bg-soft: #f5f5f7;
  --bg-card: #ffffff;
  --bg-dark: #111111;
  --radius: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --shadow-card: 0 14px 34px rgba(17, 17, 17, 0.05);
  --shadow-soft: 0 18px 48px rgba(17, 17, 17, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.home-page section,
.course-page section {
  position: relative;
  padding-top: 0px;
}

/* =========================
   TYPO / BASE
========================= */

.section-eyebrow,
.academy-eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-intro {
  max-width: 920px;
  margin-bottom: 36px;
}

.section-intro--center {
  text-align: center;
  margin-inline: auto;
}

.section-title,
.academy-section-title {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 800;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff;
}

.section-subtitle {
  margin: 0 0 16px;
  max-width: 760px;
  color: #2b2f35;
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.025em;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff;
}

.section-copy,
.academy-section-copy {
  margin: 0;
  max-width: 780px;
  color: var(--bg-dark);
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: -0.01em;
}

.section-copy p,
.hero-pro__text p,
.pilots-card__copy p {
  margin: 0 0 18px;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff;
}

.section-copy p:last-child,
.hero-pro__text p:last-child,
.pilots-card__copy p:last-child {
  margin-bottom: 0;
}

.section-actions {
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--bg-dark);
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.015em;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.98;
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.16);
}

.btn-outline {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
  box-shadow: none;
}

.btn-outline:hover {
  background: #f8f8f8;
  box-shadow: none;
}

/* =========================
   HERO PRO
========================= */

.hero-pro {
  position: relative;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}

.hero-pro--soft {
  background: #f5f5f7;
}

.hero-pro--white {
  background: #ffffff;
}

.hero-pro__inner {
position: relative;
  min-height: 70svh;
  z-index: 2;
  width: 100%;
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 0px;
}

.hero-pro__media,
.hero-pro__media-desktop,
.hero-pro__media-mobile {
  position: absolute;
  inset: 0;
}

.hero-pro__media-desktop,
.hero-pro__media-mobile {
  overflow: hidden;
}

.hero-pro__media-desktop {
  display: block;
}

.hero-pro__media-mobile {
  display: none;
}

.hero-pro__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-pro__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(245, 245, 247, 0.96) 0%,
      rgba(245, 245, 247, 0.88) 28%,
      rgba(245, 245, 247, 0.58) 46%,
      rgba(245, 245, 247, 0.18) 64%,
      rgba(245, 245, 247, 0.04) 100%
    );
}

.hero-pro--white .hero-pro__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.88) 28%,
      rgba(255, 255, 255, 0.58) 46%,
      rgba(255, 255, 255, 0.18) 64%,
      rgba(255, 255, 255, 0.04) 100%
    );
}

.hero-pro__content {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 89px 0 80px;
}

.hero-pro--image-left .hero-pro__content {
  margin-left: auto;
  text-align: left;
}

.hero-pro--image-right .hero-pro__content {
  margin-right: auto;
}

.hero-pro__eyebrow {
  margin: 0 0 16px;
  color: #1d1d1f;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-pro__title {
  margin: 0 0 24px;
  max-width: 9.5ch;
  color: #111111;
  font-size: clamp(52px, 7vw, 69px);
  line-height: 0.9;
  letter-spacing: -0.075em;
  font-weight: 900;
}

.hero-pro__text {
color: var(--bg-dark);
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: -0.01em;
}

.hero-pro__bullets {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 700px;
}

.hero-pro__bullets li {
  position: relative;
  padding-left: 18px;
  color: #202124;
  font-size: 16px;
  line-height: 1.68;
}

.hero-pro__bullets li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #111111;
}

.hero-pro__actions {
  margin-top: 32px;
}

.btn--hero-pro {
  min-height: 66px;
  padding: 0 26px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: #111111;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.18);
}

.btn--hero-pro:hover {
  transform: translateY(-1px);
  opacity: 0.98;
}

.hero-pro__note {
  margin: 16px 0 0;
  color: #5f6368;
  font-size: 14px;
  line-height: 1.65;
}

/* =========================
   RESPALDO
========================= */

.home-trust {
  padding-top: 32px !important;
}

.home-trust__grid {
  display: grid;
  grid-template-columns: minmax(280px, 3fr) minmax(0, 7fr);
  gap: 28px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f7 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.home-trust__aside {
  display: grid;
  gap: 18px;
  align-content: start;
}

.home-trust__logo-wrap {
  padding: 22px;

}

.home-trust__logo {
  width: min(100%, 220px);
  margin: 0 auto;
}

.home-trust__contact {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
}

.home-trust__contact p {
  margin: 0 0 12px;
  color: #202124;
  font-size: 15px;
  line-height: 1.7;
}

.home-trust__contact p:last-child {
  margin-bottom: 0;
}

.home-trust__contact a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   SPLIT 70 / 30
========================= */

.home-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr);
  gap: 40px;
  align-items: start;
}

.home-split--media-left .home-split__media {
  order: 1;
}

.home-split--media-left .home-split__content {
  order: 1;
}

.home-split--media-right .home-split__content {
  order: 2;
}

.home-split--media-right .home-split__media {
  order: 2;
}

.home-split__content {
  min-width: 0;
}

.home-split__media {
  min-width: 0;
}

.home-split__image-wrap {
  border-radius: 28px;
  overflow: hidden;
  background: #ececef;
  box-shadow: var(--shadow-soft);
}

.home-split__image {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

/* =========================
   WHY
========================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.why-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

.why-card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

/* =========================
   ABOUT
========================= */

.home-about .section-intro {
  max-width: 960px;
}

/* =========================
   PILOTOS
========================= */

.home-pilots .home-split__grid {
  align-items: start;
}

.pilots-logo-wrap {
  padding: 28px;
   border-bottom: 1px solid black;
   margin-bottom: 12px;

}

.pilots-logo {
  width: min(100%, 260px);
  margin: 0 auto;
}

.pilots-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pilots-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.pilots-card h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.pilots-card__copy {
  margin-bottom: 18px;
}

.pilots-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
}

.pilots-list li {
  color: #202124;
  font-size: 15px;
  line-height: 1.72;
}

.home-pilots .section-subtitle {
  font-size: 20px;
}

/* =========================
   CERTIFICACIONES
========================= */

.home-certifications .section-intro {
  max-width: 100%;
}

.home-certifications .section-title {
  max-width: 11ch;
}

/* =========================
   TESTIMONIOS
========================= */

.home-testimonials {
  padding: 48px 0 96px;
  overflow: hidden;
}

.academy-section-head {
  text-align: center;
  margin-bottom: 28px;
}

.academy-section-head--left {
  text-align: left;
  max-width: 760px;
  margin-bottom: 36px;
}

.academy-testimonials-section {
  padding: 0;
}

.academy-testimonials-swiper {
  overflow: visible;
}

.academy-testimonial-card {
  position: relative;
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8fa 100%);
  box-shadow:
    0 10px 30px rgba(17, 17, 17, 0.05),
    0 1px 0 rgba(255,255,255,0.6) inset;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.academy-testimonial-card::before {
  content: "“";
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 74px;
  line-height: 1;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.08);
  pointer-events: none;
}

.academy-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(17, 17, 17, 0.1),
    0 1px 0 rgba(255,255,255,0.8) inset;
  border-color: rgba(17, 17, 17, 0.12);
}

.academy-testimonial-stars {
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #111;
  opacity: 0.92;
}

.academy-testimonial-quote {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.academy-testimonial-quote p {
  margin: 0;
  color: #202028;
  font-size: 17px;
  line-height: 1.78;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.academy-testimonial-author {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
  color: #111;
  font-size: 14px;
  font-weight: 700;
}

.academy-testimonials-pagination {
  position: static !important;
  margin-top: 26px;
  text-align: center;
}

.academy-testimonials-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 0.28;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.academy-testimonials-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.08);
}

/* =========================
   CTA FINAL
========================= */

.final-cta-box {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, #f7f7f8 0%, #f1f1f3 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

/* =========================
   FORMULARIOS
========================= */

.academy-testimonio-form-wrap,
.academy-course-form-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.academy-testimonio-form,
.academy-course-form {
  display: grid;
  gap: 16px;
}

.academy-field {
  display: grid;
  gap: 8px;
}

.academy-field label {
  color: #202124;
  font-size: 14px;
  font-weight: 600;
}

.academy-field input,
.academy-field select,
.academy-field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #d7d7dc;
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.academy-field input:focus,
.academy-field select:focus,
.academy-field textarea:focus {
  outline: none;
  border-color: rgba(29, 29, 31, 0.22);
  box-shadow: 0 0 0 4px rgba(29, 29, 31, 0.06);
}

.academy-field textarea {
  min-height: 140px;
  resize: vertical;
}

.academy-field button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  background: var(--bg-dark);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.academy-form-message {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 14px;
}

.academy-form-success {
  background: #edf8ef;
  color: #1f6b2a;
}

.academy-form-error {
  background: #fff0f0;
  color: #9f1d1d;
}

.academy-error-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #9f1d1d;
  font-size: 14px;
  line-height: 1.7;
}

.academy-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.academy-course-form button.is-loading {
  opacity: 0.82;
  pointer-events: none;
}

/* =========================
   COURSE / THANK YOU
========================= */

.course-page section {
  padding: 80px 0;
}

.course-hero {
  padding-top: 84px;
  padding-bottom: 42px;
}

.course-results .pilots-list {
  max-width: 760px;
}

.academy-thankyou {
  max-width: 760px;
  padding: 112px 20px;
  text-align: center;
}

.academy-thankyou h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.academy-thankyou p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.academy-thankyou-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================
   BLOG
========================= */

.blog-page {
}

.blog-hero {
  padding: 88px 0 40px;
}

.blog-archive {
  padding: 24px 0 80px;
  margin-top: -48px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  border-color: rgba(37, 99, 235, 0.18);
}

.blog-card__media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dbe7ff;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.04);
}

.blog-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 240px;
  background: linear-gradient(135deg, #dbe7ff 0%, #edf3ff 100%);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 22px;
}

.blog-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.blog-card__category {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
color: white;    background: #333333;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.blog-card__date {
  font-size: 13px;
  color: #64748b;
  line-height: 1.2;
}

.blog-card__title {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.blog-card__title a {
  color: #0f172a;
  text-decoration: none;
}

.blog-card__title a:hover {
  color: #1d4ed8;
}

.blog-card__excerpt {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

.blog-card__footer {
  margin-top: auto;
  padding-top: 22px;
}

.blog-card__link {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #333333;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.blog-card__link:hover {
  gap: 10px;
}

.blog-empty {
  padding: 56px 24px;
  text-align: center;
  border: 1px dashed rgba(15, 23, 42, 0.14);
  border-radius: 24px;
  background: #fff;
}

.blog-empty h2 {
  margin: 0 0 10px;
  font-size: 28px;
  color: #0f172a;
}

.blog-empty p {
  margin: 0;
  color: #64748b;
  font-size: 16px;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  margin: 0 6px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: #1d4ed8;
  color: #fff;
  border-color: #1d4ed8;
}

/* =========================
   ARTICLE
========================= */

.article-page {
  background: #f7f7f5;
  color: #111827;
}

.article-hero {
  padding: 80px 0 40px;
  background: #f7f7f5;
}

.article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.article-hero__content {
  max-width: 720px;
}

.article-hero__eyebrow {
  margin: 0 0 18px;
  color: #9a9aa0;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-hero__title {
  margin: 0 0 28px;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #111;
}

.article-hero__lead {
  margin: 0 0 28px;
  max-width: 620px;
  color: #6b7280;
  font-size: 20px;
  line-height: 1.8;
}

.article-hero__meta {
  font-size: 14px;
  color: #9a9aa0;
}

.article-hero__media {
  position: relative;
}

.article-hero__media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.article-body-wrap {
  padding: 24px 0 88px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: 48px;
  align-items: start;
}

.article-main {
  min-width: 0;
}

.article-content {
  font-size: 19px;
  line-height: 1.95;
  color: #4a4d57;
}

.article-content > *:first-child {
  margin-top: 0;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin-top: 56px;
  margin-bottom: 18px;
  color: #1f2a56;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.article-content h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 600;
}

.article-content h3 {
  font-size: 28px;
  font-weight: 600;
}

.article-content h4 {
  font-size: 22px;
  font-weight: 600;
}

.article-content p {
  margin: 0 0 24px;
}

.article-content ul,
.article-content ol {
  margin: 0 0 28px 22px;
  padding: 0;
}

.article-content li {
  margin-bottom: 12px;
}

.article-content a {
  color: #1f2a56;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-content strong {
  color: #20232d;
}

.article-content blockquote {
  margin: 40px 0;
  padding: 28px 28px 28px 24px;
  border-left: 3px solid #1f2a56;
  background: #efefee;
  color: #2f3446;
  font-size: 22px;
  line-height: 1.6;
}

.article-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 36px auto;
  border-radius: 24px;
}

.article-content figure {
  margin: 36px 0;
}

.article-content figcaption {
  margin-top: 12px;
  color: #8a8a90;
  font-size: 14px;
  text-align: center;
}

.article-sidebar {
  position: sticky;
  top: 120px;
}

.article-sidebar__card {
  padding: 24px;
  border: 1px solid rgba(31, 42, 86, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.article-sidebar__label {
  margin: 0 0 6px;
  color: #8a8a90;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.article-sidebar__value {
  margin: 0 0 20px;
  color: #1f2a56;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.article-footer-cta {
  margin-top: 56px;
}

.article-footer-cta__box {
  padding: 36px;
  border-radius: 32px;
  background: #1f2a56;
  color: #fff;
}

.article-footer-cta__eyebrow {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-footer-cta__box h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  color: #fff;
}

.article-footer-cta__box p {
  margin: 0 0 22px;
  max-width: 600px;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.75;
}

.article-footer-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  background: #fff;
  color: #1f2a56;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, opacity .2s ease;
}

.article-footer-cta__button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.article-related {
  padding: 0 0 88px;
}

.article-related__head {
  margin-bottom: 28px;
}

.article-related__title {
  max-width: 720px;
}

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

@media (max-width: 1180px) {
  .article-hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 991px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .home-page section,
  .course-page section {
    padding: 78px 0;
  }

  .hero-pro,
  .hero-pro__inner,
  .hero-pro__content {
    min-height: auto;
  }

  .hero-pro__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(245, 245, 247, 0.18) 0%,
        rgba(245, 245, 247, 0.46) 38%,
        rgba(245, 245, 247, 0.92) 100%
      );
  }

  .hero-pro--white .hero-pro__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.16) 0%,
        rgba(255,255,255,0.42) 38%,
        rgba(255,255,255,0.94) 100%
      );
  }

  .hero-pro__content {
    max-width: 100%;
    padding: 460px 0 54px;
    justify-content: end;
  }

  .hero-pro__title {
    max-width: 12ch;
    font-size: clamp(44px, 9vw, 72px);
  }

  .hero-pro__text {
    font-size: 17px;
  }

  .home-trust__grid,
  .home-split__grid,
  .why-grid,
  .pilots-grid {
    grid-template-columns: 1fr;
  }

  .home-split--media-left .home-split__content,
  .home-split--media-right .home-split__content,
  .home-split--media-left .home-split__media,
  .home-split--media-right .home-split__media {
    order: initial;
  }

  .home-split__media {
    max-width: 520px;
  }

  .pilots-logo-wrap {
    max-width: 520px;
  }

  .section-title,
  .academy-section-title {
    font-size: clamp(30px, 5vw, 48px);
  }
}

@media (max-width: 767px) {
  .container {
    width: 100%;
    padding: 28px;
  }

  .home-page section,
  .course-page section {
    padding: 0px;
  }

  .hero-pro {
    min-height: 85vh;
  }

  .hero-pro__media-desktop {
    display: none;
  }

  .hero-pro__media-mobile {
    display: block;
  }

  .hero-pro__inner {
    min-height: 100svh;
  }

  .hero-pro__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(245,245,247,0.08) 0%,
        rgba(245,245,247,0.26) 30%,
        rgba(245,245,247,0.72) 58%,
        rgba(245,245,247,0.96) 100%
      );
  }

  .hero-pro--white .hero-pro__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.06) 0%,
        rgba(255,255,255,0.24) 30%,
        rgba(255,255,255,0.74) 58%,
        rgba(255,255,255,0.97) 100%
      );
  }

  .hero-pro__content {
    padding: 28px 0 42px;
    justify-content: end;
  }

  .hero-pro__eyebrow {
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .hero-pro__title {
    margin-bottom: 18px;
    max-width: 8.8ch;
    font-size: clamp(38px, 12vw, 58px);
    line-height: 0.92;
  }

  .hero-pro__text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--bg-dark);
    font-weight: 500;
  }

  .hero-pro__bullets {
    gap: 10px;
    margin-top: 20px;
  }

  .hero-pro__bullets li {
    font-size: 16px;
    line-height: 1.65;
    font-weight: bold;
  }

  .hero-pro__actions {
    margin-top: 24px;
  }

  .btn--hero-pro {
    min-height: 60px;
    padding: 0 22px;
    font-size: 16px;
  }

  .hero-pro__note {
    font-size: 13px;
  }

  .home-trust__grid,
  .why-card,
  .pilots-card,
  .pilots-logo-wrap,
  .home-trust__logo-wrap,
  .home-trust__contact,
  .final-cta-box {
    padding: 22px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .section-copy,
  .academy-section-copy,
  .why-card p,
  .pilots-card__copy,
  .article-content {
    font-size: 18px;
    line-height: 1.72;
      text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff;

  }

  .pilots-list li {
    font-size: 14.5px;
    line-height: 1.68;
  }

  .home-split__image {
    aspect-ratio: 16 / 10;
  }

  .home-testimonials {
    padding: 28px 0 64px;
  }

  .academy-testimonial-card {
    min-height: 250px;
    padding: 22px;
    border-radius: 22px;
  }

  .academy-testimonial-card::before {
    top: 14px;
    right: 16px;
    font-size: 56px;
  }

  .academy-testimonial-quote p {
    font-size: 15.5px;
    line-height: 1.68;
    -webkit-line-clamp: 6;
  }

  .blog-hero {
    padding: 56px 0 24px;
  }

  .blog-archive {
    padding: 20px 0 56px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-card {
    border-radius: 20px;
  }

  .blog-card__media {
    aspect-ratio: 16 / 9;
  }

  .blog-card__body {
    padding: 20px 18px 18px;
  }

  .blog-card__top {
    margin-bottom: 10px;
  }

  .blog-card__title {
    font-size: 21px;
  }

  .blog-card__excerpt {
    font-size: 14px;
    line-height: 1.65;
  }

  .blog-card__footer {
    padding-top: 16px;
  }

  .blog-pagination {
    flex-wrap: wrap;
    gap: 8px;
  }

  .blog-pagination .page-numbers {
    margin: 0;
  }

  .article-hero {
    padding: 36px 0 28px;
  }

  .article-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .article-hero__title {
    font-size: 40px;
    line-height: 1.05;
  }

  .article-hero__lead {
    font-size: 16px;
  }

  .article-hero__media {
    order: -1;
  }

  .article-hero__media img {
    max-height: 460px;
  }

  .article-body-wrap {
    padding: 8px 0 56px;
  }

  .article-content h2 {
    margin-top: 40px;
    font-size: 30px;
  }

  .article-content h3 {
    font-size: 24px;
  }

  .article-content blockquote {
    padding: 22px 18px;
    font-size: 19px;
  }

  .article-footer-cta__box {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .academy-thankyou {
    padding: 88px 20px;
  }

  .academy-thankyou p {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .blog-hero {
    padding: 72px 0 32px;
  }
}
/* ========================================
   FIX LAYOUT FULL WIDTH / SPLIT SECTIONS
======================================== */

/* El contenido de los split no debe quedar atrapado en max-width genéricos */
.home-split__content .section-intro,
.home-certifications .section-intro,
.home-pilots .section-intro,
.home-why .section-intro {
  max-width: none;
}

/* El texto principal dentro de splits puede usar todo el ancho útil */
.home-split__content .section-copy,
.home-split__content .section-subtitle,
.home-split__content .section-title,
.home-pilots .section-copy,
.home-pilots .section-subtitle,
.home-pilots .section-title,
.home-certifications .section-copy,
.home-certifications .section-subtitle,
.home-certifications .section-title,
.home-why .section-copy,
.home-why .section-title {
  max-width: none;
}

/* Grid 70/30 real ocupando todo el container */
.home-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(320px, 5fr);
  gap: 40px;
  align-items: start;
}

/* En contenido, que realmente use el ancho */
.home-split__content {
  min-width: 0;
  width: 100%;
}

/* En media, idem */
.home-split__media {
  min-width: 0;
  width: 100%;
}

/* =========================
   POR QUÉ BOSTON
========================= */

/* Título y copy ocupando toda la columna principal */
.home-why .section-intro {
  width: 100%;
}

/* Las cards deben usar todo el ancho de la columna izquierda */
.home-why .why-grid {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Si la imagen está a la derecha, que no empuje el contenido */
.home-why .home-split__media {
  align-self: start;
}

/* =========================
   PILOTOS
========================= */

/* El bloque izquierdo usa todo el ancho disponible */
.home-pilots .home-split__content {
  width: 100%;
}

/* El intro no angosto */
.home-pilots .section-intro {
  width: 100%;
  max-width: none;
}

/* Las dos calugas deben ocupar todo el ancho del lado izquierdo */
.home-pilots .pilots-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

/* Que las cards no se encojan raro */
.home-pilots .pilots-card {
  min-width: 0;
  height: 100%;
}

/* El lado derecho del split contiene solo el logo arriba */
.home-pilots .home-split__media {
  display: flex;
  align-items: flex-start;
  justify-content: stretch;
}

.home-pilots .pilots-logo-wrap {
  width: 100%;
}

/* =========================
   CERTIFICACIONES
========================= */

/* El texto debe usar toda la columna derecha */
.home-certifications .home-split__content {
  width: 100%;
}

/* Nada de título encajonado */
.home-certifications .section-title {
  max-width: none;
}

/* El intro completo ocupa el ancho del lado derecho */
.home-certifications .section-intro {
  width: 100%;
  max-width: none;
}

/* Imagen izquierda sólida y bien proporcionada */
.home-certifications .home-split__image-wrap {
  width: 100%;
}

.home-certifications .home-split__image {
  width: 100%;
  object-fit: cover;
}

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

@media (max-width: 991px) {
  .home-split__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-why .why-grid,
  .home-pilots .pilots-grid {
    grid-template-columns: 1fr;
  }

  .home-split__media,
  .home-pilots .home-split__media {
    max-width: none;
    width: 100%;
  }

  .home-split__image-wrap,
  .pilots-logo-wrap {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .home-split__grid {
    gap: 22px;
  }

  .home-split__content .section-title,
  .home-pilots .section-title,
  .home-certifications .section-title,
  .home-why .section-title {
    max-width: none;
  }

  .home-split__image {
    aspect-ratio: 16 / 10;
  }
}
section {
  margin-bottom: 80px;
}
/* ========================================
   CURSOS PAGE
   Pegar al final del stylesheet
======================================== */

/* scroll anchor offset */
.course-page [id] {
  scroll-margin-top: 110px;
}

/* espaciado general solo en cursos */
.course-page section {
  padding: 88px 0;
}

.course-page .section-copy,
.course-page .section-subtitle,
.course-page .section-title {
  max-width: none;
}

/* =========================
   HERO CURSOS
========================= */

.courses-hero {
  position: relative;
  min-height: 92svh;
  padding: 0 !important;
  overflow: hidden;
  background: #ffffff;
}

.courses-hero__inner {
  position: relative;
  min-height: 92svh;
  z-index: 2;
  width: 100%;
  padding-left: 80px;
  padding-right: 80px;
}

.courses-hero__media,
.courses-hero__media-desktop,
.courses-hero__media-mobile {
  position: absolute;
  inset: 0;
}

.courses-hero__media-desktop,
.courses-hero__media-mobile {
  overflow: hidden;
}

.courses-hero__media-desktop {
  display: block;
}

.courses-hero__media-mobile {
  display: none;
}

.courses-hero__img {
  width: 100%;
height: 86vh;
  object-fit: cover;
}

.courses-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.9) 26%,
      rgba(255, 255, 255, 0.62) 45%,
      rgba(255, 255, 255, 0.18) 64%,
      rgba(255, 255, 255, 0.04) 100%
    );
}

.courses-hero__content {
  position: relative;
  z-index: 3;
  min-height: 92svh;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 72px;
}

.courses-hero__title {
  max-width: 10.5ch;
}

.courses-hero__copy {
  max-width: 760px;
}

.courses-hero__copy p {
  margin: 0 0 18px;
}

.courses-hero__copy p:last-child {
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff;
  margin-bottom: 0;
}

/* =========================
   NAV ANCLAS
========================= */

.courses-anchor-nav {
  position: sticky !important;
  top: 80px !important;
  z-index: 20;
  padding: 18px 0 !important;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
}

.courses-anchor-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.courses-anchor-nav__title {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.courses-anchor-nav__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.courses-anchor-nav__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #202124;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.courses-anchor-nav__links a:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

/* =========================
   INTRO / SPLIT
========================= */

.courses-intro {
  padding-top: 4px !important;
}

.courses-split {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 3fr);
  gap: 40px;
  align-items: start;
}

.courses-split--reverse .courses-split__content {
  order: 2;
}

.courses-split--reverse .courses-split__media {
  order: 1;
}

.courses-split__content {
  min-width: 0;
  width: 100%;
}

.courses-split__media {
  min-width: 0;
  width: 100%;
}

.courses-split__image-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #ececef;
  box-shadow: var(--shadow-soft);
}

.courses-split__image {
  width: 100%;
  height: 80vh;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* =========================
   BLOQUES DE CURSO
========================= */

.course-block {
  border-top: 1px solid var(--line);
}

.course-block:first-of-type {
  border-top: 0;
}

.course-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.course-benefit-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

.course-benefit-card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.course-benefit-card p {
  margin: 0;
  color: var(--bg-dark);
  font-size: 16px;
  line-height: 1.8;
}

.course-block .section-actions {
  margin-top: 30px;
}

/* =========================
   PILOTOS CURSO
========================= */

.course-block--pilotos {
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f7 100%);
}

.course-pilots__top {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 30px;
}

.course-pilots__intro {
  min-width: 0;
}

.course-pilots__brand {
  min-width: 0;
}

.course-pilots__logo-wrap {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.course-pilots__logo {
  width: min(100%, 240px);
  margin: 0 auto;
}

.course-pilots__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.course-pilots__card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.course-pilots__card--full {
  grid-column: 1 / -1;
}

.course-pilots__card h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.course-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
}

.course-list li {
  color: #202124;
  font-size: 15px;
  line-height: 1.72;
}

.course-list--ordered {
  padding-left: 22px;
}

.course-pilots__discount {
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
}

.course-pilots__discount p {
  margin: 0;
  color: #202124;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}

/* =========================
   FORMULARIO CURSOS
========================= */

.course-form {
  border-top: 1px solid var(--line);
}

.course-form__content {
  margin-top: 28px;
}

.course-form .section-copy {
  max-width: 760px;
}

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

@media (max-width: 991px) {
  .courses-hero,
  .courses-hero__inner,
  .courses-hero__content {
    min-height: auto;
  }

  .courses-hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.14) 0%,
        rgba(255,255,255,0.42) 36%,
        rgba(255,255,255,0.94) 100%
      );
  }

  .courses-hero__content {
    max-width: 100%;
    padding: 460px 0 54px;
    justify-content: end;
  }

  .courses-split,
  .course-pilots__top,
  .course-pilots__grid,
  .course-benefits-grid {
    grid-template-columns: 1fr;
  }

  .courses-split--reverse .courses-split__content,
  .courses-split--reverse .courses-split__media {
    order: initial;
  }

  .courses-split__media,
  .course-pilots__brand {
    max-width: 520px;
  }

  .courses-anchor-nav .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .courses-anchor-nav__links {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .course-page section {
    padding: 0px 0;
  }

  .courses-hero {
    min-height: 86svh;
  }

  .courses-hero__media-desktop {
    display: none;
  }

  .courses-hero__media-mobile {
    display: block;
  }

  .courses-hero__inner {
    min-height: 100svh;
    padding-left: 0;
    padding-right: 0;
  }

  .courses-hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.08) 0%,
        rgba(255,255,255,0.24) 28%,
        rgba(255,255,255,0.72) 58%,
        rgba(255,255,255,0.97) 100%
      );
  }

  .courses-hero__content {
    padding: 24px 28px 42px;
  }

  .courses-hero__title {
    max-width: 9ch;
  }

  .courses-anchor-nav {
    padding: 14px 0 !important;
  }

  .courses-anchor-nav__title {
    font-size: 12px;
  }

  .courses-anchor-nav__links {
    gap: 8px;
  }

  .courses-anchor-nav__links a {
    min-height: 36px;
    padding: 0 8px;
    font-size: 10px;
  }

  .courses-split__image {
    aspect-ratio: 16 / 10;
  }

  .course-benefit-card,
  .course-pilots__card,
  .course-pilots__logo-wrap,
  .course-pilots__discount {
    padding: 22px;
    border-radius: 20px;
  }

  .course-benefit-card h3,
  .course-pilots__card h3 {
    font-size: 22px;
  }

  .course-benefit-card p,
  .course-list li,
  .course-pilots__discount p {
    font-size: 16.5px;
    line-height: 1.7;
  }
}

.courses-split-intro {
  display: grid;
  grid-template-columns: minmax(300px, 3fr) minmax(0, 7fr);
  gap: 40px;
  align-items: start;
}
/* =========================
   FORM CURSO 50 / 50
========================= */

.course-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: anchor-center;
}

.course-form__intro,
.course-form__content {
  min-width: 0;
}

.course-form__intro .section-title,
.course-form__intro .section-copy {
  max-width: none;
}

.course-form__content {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.course-form__content .academy-course-form-wrap,
.course-form__content .academy-testimonio-form-wrap {
  max-width: none;
  margin: 0;
}

.course-form__content form {
  width: 100%;
}

@media (max-width: 991px) {
  .course-form__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 767px) {
  .course-form__content {
    padding: 22px;
    border-radius: 20px;
  }
}
.courses-anchor-nav__links a.is-active {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}
.courses-split__mobile-bg,
.course-pilots__mobile-bg {
  display: none;
}

@media (max-width: 767px) {
  .courses-split,
  .course-block--pilotos {
    position: relative;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.4);
  }
  .courses-hero__title {
    margin-bottom: 18px;
    max-width: 8.8ch;
    font-size: clamp(38px, 12vw, 58px);
    line-height: 0.92;
  }

  .courses-split__mobile-bg,
  .course-pilots__mobile-bg {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .courses-split__mobile-bg-img,
  .course-pilots__mobile-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .courses-split::after,
  .course-block--pilotos::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.08) 0%,
      rgba(255,255,255,0.28) 30%,
      rgba(255,255,255,0.78) 58%,
      rgba(255,255,255,0.97) 100%
    );
    
    
  }

  .courses-split > .container,
  .course-pilots__container {
    position: relative;
    z-index: 2;
  }

  .courses-split__media {
    display: none;
  }
}@media (max-width: 767px) {
  .courses-split::after,
  .course-block--pilotos::after {
    pointer-events: none;
    z-index: 1;
  }

  .courses-split__mobile-bg,
  .course-pilots__mobile-bg {
    pointer-events: none;
    z-index: 0;
  }

  .courses-split > .container,
  .course-pilots__container {
    position: relative;
    z-index: 2;
  }

  .courses-split__content,
  .course-pilots__top,
  .course-pilots__grid,
  .course-pilots__discount,
  .course-block .section-actions {
    position: relative;
    z-index: 3;
  }
}
/* =========================
   HOME SPLIT MOBILE BG
========================= */

.home-about,
.home-certifications {
  position: relative;
  overflow: hidden;
}

.home-split__mobile-bg {
  display: none;
}

.home-split__mobile-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .home-about .home-split__mobile-bg,
  .home-certifications .home-split__mobile-bg {
    display: none !important;
  }

  .home-about .home-split__media,
  .home-certifications .home-split__media {
    display: block;
  }
}

@media (max-width: 767px) {
  .home-about .home-split__mobile-bg,
  .home-certifications .home-split__mobile-bg {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .home-about::after,
  .home-certifications::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.08) 0%,
      rgba(255,255,255,0.28) 30%,
      rgba(255,255,255,0.78) 58%,
      rgba(255,255,255,0.97) 100%
    );
  }

  .home-about .container,
  .home-certifications .container {
    position: relative;
    z-index: 2;
  }

  .home-about .home-split__media,
  .home-certifications .home-split__media {
    display: none !important;
  }
}

#site-menu a.active {
  opacity: 1;
}

#site-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
#site-menu a {
  position: relative;
  transition: opacity 0.2s ease;
}
.home-trust__badge {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
}

.home-trust__badge-title {
  margin: 14px 0 8px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.home-trust__badge-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.home-trust__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}
.home-trust__aside {
  display: grid;
  gap: 18px;
  align-content: start;
}

.home-trust__badge {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
}

.home-trust__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  margin-bottom: 14px;
}

.home-trust__logo {
  width: min(100%, 220px);
  max-height: 96px;
  object-fit: contain;
}

.home-trust__badge-title {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.home-trust__badge-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .home-trust__badge {
    padding: 20px;
  }

  .home-trust__logo-wrap {
    min-height: 100px;
  }

  .home-trust__badge-title {
    font-size: 17px;
  }

  .home-trust__badge-text {
    font-size: 13.5px;
  }
}
.home-trust__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.home-trust__card {
  display: grid;
  grid-template-rows: 120px auto;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  min-width: 0;
  height: 100%;
}

.home-trust__card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}

.home-trust__card-img {
  display: block;
  width: 100%;
  max-width: 220px;
  max-height: 84px;
  object-fit: contain;
  margin: 0 auto;
}

.home-trust__card-content {
  min-width: 0;
}

.home-trust__card-title {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.home-trust__card-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .home-trust__cards {
    grid-template-columns: 1fr;
  }

  .home-trust__card {
    grid-template-rows: 96px auto;
    padding: 20px;
  }

  .home-trust__card-img {
    max-width: 180px;
    max-height: 68px;
  }
}/* =========================
   TRUST CLEAN (APPLE STYLE)
========================= */

.trust-clean {
  padding: 100px 0;
}

.trust-clean__title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.trust-clean__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
 color: var(--bg-dark);
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: -0.01em;

}

/* GRID */
.trust-clean__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

/* CARD */
.trust-clean__card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 28px;
  padding: 48px 32px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.trust-clean__card p {
  color: var(--bg-dark);
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: -0.01em;
}


/* Hover Apple */
.trust-clean__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.1);
}

/* Glow subtle */
.trust-clean__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0,0,0,0.04), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.trust-clean__card:hover::after {
  opacity: 1;
}

/* LOGO */
.trust-clean__logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.trust-clean__img {
  max-width: 180px;
  max-height: 100px;
  object-fit: contain;
}

/* TITLE */
.trust-clean__card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

/* TEXT */
.trust-clean__card-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 auto;
}

/* ANIMACIÓN SCROLL (pro) */
.trust-clean__card {
  opacity: 0;
  transform: translateY(30px);
  animation: trustFadeUp 0.8s ease forwards;
}

.trust-clean__card:nth-child(2) {
  animation-delay: 0.15s;
}

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

/* MOBILE */
@media (max-width: 768px) {
  .trust-clean__grid {
    grid-template-columns: 1fr;
  }

  .trust-clean__title {
    font-size: 34px;
  }

  .trust-clean__card {
    padding: 36px 24px;
  }
}
::selection {
  background: rgba(174, 239, 94, 0.55);
  color: inherit;
}

::-moz-selection {
  background: rgba(118, 228, 87, 0.55);
  color: inherit;
}
.academy-testimonial-quote p,
.academy-testimonial-text {
  margin: 0;
  color: #202028;
  font-size: 17px;
  line-height: 1.78;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.academy-testimonial-card.is-expanded .academy-testimonial-text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.academy-testimonial-toggle {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: none;
  color: #111;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-align: left;
  opacity: 0.88;
}

.academy-testimonial-toggle:hover {
  opacity: 1;
  text-decoration: underline;
}