/* ==============================
   HERO SECTION
   ============================== */
.hero_section {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.hero_section_grid {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  align-items: stretch;
}

.hero_section_content {
  padding: clamp(24px, 4vh, 60px) var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(12px, 1.9vh, 30px);
  min-height: 0;
}

.hero_section_label {
  margin-bottom: 0;
}

.hero_section_title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(30.6px, min(4.7vw, 7.2vh), 64.8px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--color-text);
  text-wrap: balance;
}

.hero_section_title em {
  font-style: italic;
  color: var(--color-bg-deep);
}

.hero_section_description {
  max-width: 36ch;
  font-size: clamp(13.5px, min(1.1vw, 1.9vh), 17.1px);
  line-height: 1.6;
  color: var(--color-text-2);
  font-weight: 400;
}

.hero_section_actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 26px;
}

.hero_section_actions .btn_dark {
  font-size: 10.8px;
  padding: clamp(15px, 2.2vh, 20px) 34px;
}

.hero_section_note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 40ch;
  font-size: 12.2px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
}

.hero_section_note_line {
  width: 1px;
  height: 34px;
  background: var(--color-accent);
  display: block;
  flex-shrink: 0;
}

.hero_section_image_wrap {
  position: relative;
  min-height: clamp(360px, 46vw, 720px);
}

.hero_section_image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  filter: saturate(0.94) contrast(1.03);
  animation: omHeroZoom 2.4s cubic-bezier(.16, .8, .24, 1) both;
}

.hero_section_image_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(245, 242, 235, 0.55) 0%, rgba(245, 242, 235, 0) 26%);
}

.hero_section_card {
  position: absolute;
  left: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  background: rgba(15, 46, 42, 0.92);
  color: var(--color-text-inv);
  padding: 16px 20px;
  border-radius: 2px;
  max-width: 250px;
}

.hero_section_card_label {
  font-size: 8.6px;
  letter-spacing: 0.26em;
  font-weight: 600;
  color: var(--color-accent-lt);
}

.hero_section_card_name {
  font-family: var(--font-serif);
  font-size: 19.8px;
  margin-top: 6px;
  line-height: 1.1;
}

.hero_section_card_subtitle {
  font-size: 9.9px;
  color: rgba(245, 242, 235, 0.78);
  margin-top: 5px;
  line-height: 1.5;
}


/* ==============================
   CAMBIO SECTION (before / after)
   ============================== */
.cambio_section {
  background: var(--color-bg-dark);
  color: var(--color-text-inv);
  padding: clamp(64px, 8vw, 132px) var(--pad-x);
}

.cambio_section_inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.cambio_section_label {
  margin-bottom: clamp(28px, 4vw, 54px);
}

.cambio_section_title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28.8px, 3.8vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 22ch;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.cambio_section_title em {
  font-style: italic;
  color: var(--color-accent-lt);
}

.cambio_section_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(32px, 4vw, 0px);
}

.cambio_section_col {
  padding: 0 clamp(0px, 3vw, 48px) 0 0;
}

.cambio_section_col_after {
  padding: 0 0 0 clamp(0px, 3vw, 48px);
  border-left: 1px solid rgba(245, 242, 235, 0.14);
}

.cambio_section_col_header {
  font-size: 9.5px;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: rgba(245, 242, 235, 0.62);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(245, 242, 235, 0.14);
}

.cambio_section_col_after .cambio_section_col_header {
  color: var(--color-accent);
  border-bottom-color: rgba(180, 118, 63, 0.4);
}

.cambio_section_list {
  display: flex;
  flex-direction: column;
}

.cambio_section_item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(245, 242, 235, 0.09);
  font-size: clamp(13.5px, 1vw, 15.3px);
  color: rgba(245, 242, 235, 0.86);
  font-weight: 400;
}

.cambio_section_item:last-child {
  border-bottom: none;
}

.cambio_section_col_after .cambio_section_item {
  font-size: clamp(14.4px, 1.2vw, 17.1px);
  color: var(--color-text-inv);
}


/* ==============================
   MENTORIA SECTION
   ============================== */
.mentoria_section {
  background: var(--color-bg);
  padding: clamp(64px, 8vw, 132px) var(--pad-x);
}

.mentoria_section_inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.mentoria_section_header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 88px);
}

.mentoria_section_title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(30.6px, 4.1vw, 59.4px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--color-text);
  max-width: 20ch;
}

.mentoria_section_title em {
  font-style: italic;
  color: var(--color-bg-deep);
}

.mentoria_section_header_label {
  margin-bottom: 26px;
}

.mentoria_section_header_desc {
  font-size: clamp(14.4px, 1.1vw, 16.2px);
  line-height: 1.7;
  color: var(--color-text-2);
  font-weight: 400;
  max-width: 44ch;
  margin-bottom: 18px;
}

.mentoria_section_header_desc_strong {
  font-size: clamp(14.4px, 1.1vw, 16.2px);
  line-height: 1.7;
  color: var(--color-text);
  font-weight: 500;
  max-width: 44ch;
}

/* Process grid */
.proceso_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 0;
}

.proceso_card {
  background: var(--color-bg);
  border-left: 1px solid rgba(25, 26, 23, 0.14);
  border-top: 1px solid rgba(25, 26, 23, 0.14);
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.4vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .4s ease, transform .4s cubic-bezier(.2, .7, .2, 1);
}

.proceso_card:hover {
  background: var(--color-bg-soft);
  transform: translateY(-4px);
}

.proceso_card_number_row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.proceso_card_number {
  font-family: var(--font-serif);
  font-size: clamp(36px, 3.6vw, 52.2px);
  line-height: 1;
  color: var(--color-accent);
}

.proceso_card_stage {
  font-size: 9px;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--color-text-muted);
}

.proceso_card_title {
  font-size: clamp(17.1px, 1.4vw, 21.6px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.proceso_card_desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-2);
  font-weight: 400;
}

.proceso_card_result {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(25, 26, 23, 0.12);
  font-size: 11.2px;
  letter-spacing: 0.02em;
  color: var(--color-bg-deep);
  font-weight: 500;
}


/* ==============================
   QUOTE SECTION (parallax)
   ============================== */
.quote_section {
  position: relative;
  min-height: clamp(420px, 50vw, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(64px, 8vw, 120px) var(--pad-x);
  overflow: hidden;
}

.quote_section_bg {
  position: absolute;
  inset: -22% 0;
  width: 100%;
  height: auto;
  min-height: 144%;
  object-fit: cover;
  object-position: 50% 100%;
}

.quote_section_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 46, 42, 0.66) 0%, rgba(25, 26, 23, 0.74) 100%);
}

.quote_section_quote {
  position: relative;
  width: 100%;
  max-width: var(--max-w);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote_section_text {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(27px, 4vw, 55.8px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--color-text-inv);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  max-width: 17em;
  text-wrap: balance;
}

.quote_section_text em {
  font-style: italic;
  color: var(--color-accent-lt);
}


/* ==============================
   COACH SECTION
   ============================== */
.coach_section {
  background: var(--color-bg);
  padding: clamp(64px, 8vw, 124px) var(--pad-x);
}

.coach_section_inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
}

.coach_section_images {
  position: relative;
}

.coach_section_main_image {
  width: 100%;
  height: clamp(420px, 50vw, 660px);
  object-fit: cover;
  object-position: 50% 8%;
}

.coach_section_group_image {
  position: absolute;
  width: 58%;
  max-width: 320px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 45%;
  right: -4%;
  bottom: -7%;
  border: 8px solid var(--color-bg);
}

.coach_section_label {
  margin-bottom: clamp(24px, 3vw, 44px);
}

.coach_section_title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28.8px, 3.8vw, 52.2px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--color-text);
  margin-bottom: 22px;
}

.coach_section_title em {
  font-style: italic;
  color: var(--color-bg-deep);
}

.coach_section_bio {
  font-size: clamp(13.5px, 1.1vw, 16.2px);
  line-height: 1.75;
  color: var(--color-text-2);
  font-weight: 400;
  max-width: 46ch;
  margin-bottom: 18px;
}

.coach_section_bio_2 {
  font-size: clamp(13.5px, 1.1vw, 16.2px);
  line-height: 1.75;
  color: var(--color-text-2);
  font-weight: 400;
  max-width: 46ch;
  margin-bottom: 28px;
}

.coach_section_stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(108px, 100%), 1fr));
  gap: clamp(14px, 1.6vw, 26px);
}

.coach_section_stat {
  border-top: 1px solid rgba(25, 26, 23, 0.16);
  padding-top: 18px;
}

.coach_section_stat_number {
  font-family: var(--font-serif);
  font-size: 30.6px;
  line-height: 1;
  color: var(--color-bg-deep);
}

.coach_section_stat_label {
  font-size: 9.9px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-top: 8px;
}


/* ==============================
   INCLUDES SECTION (qué incluye)
   ============================== */
.includes_section {
  background: var(--color-bg-soft);
  padding: clamp(64px, 8vw, 132px) var(--pad-x);
}

.includes_section_inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.includes_section_label {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.includes_section_title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28.8px, 3.8vw, 52.2px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--color-text);
  max-width: 24ch;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.includes_section_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(28px, 3vw, 52px);
}

.includes_section_item_header {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(25, 26, 23, 0.2);
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.includes_section_item_title {
  font-size: 10.8px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--color-bg-deep);
}

.includes_section_item_duration {
  font-size: 9.9px;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.includes_section_item_desc {
  font-size: 14.4px;
  line-height: 1.7;
  color: var(--color-text-2);
  font-weight: 400;
}


/* ==============================
   FILTRO SECTION (¿es para ti?)
   ============================== */
.filtro_section {
  background: var(--color-bg);
  padding: clamp(64px, 8vw, 124px) var(--pad-x);
}

.filtro_section_inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.filtro_section_label {
  margin-bottom: clamp(24px, 3vw, 44px);
}

.filtro_section_title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28.8px, 3.8vw, 52.2px);
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--color-text);
  max-width: 26ch;
  margin-bottom: clamp(36px, 4vw, 64px);
}

.filtro_section_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(28px, 3vw, 56px);
}

.filtro_section_card_yes {
  background: var(--color-bg-deep);
  color: var(--color-text-inv);
  padding: clamp(28px, 3vw, 44px);
}

.filtro_section_card_no {
  border: 1px solid rgba(25, 26, 23, 0.18);
  padding: clamp(28px, 3vw, 44px);
}

.filtro_section_card_header {
  font-size: 9.5px;
  letter-spacing: 0.28em;
  font-weight: 600;
  padding-bottom: 18px;
  margin-bottom: 0;
}

.filtro_section_card_yes .filtro_section_card_header {
  color: var(--color-accent-warm);
  border-bottom: 1px solid rgba(245, 242, 235, 0.24);
}

.filtro_section_card_no .filtro_section_card_header {
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(25, 26, 23, 0.14);
}

.filtro_section_item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(245, 242, 235, 0.12);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 242, 235, 0.94);
}

.filtro_section_card_no .filtro_section_item {
  border-bottom-color: rgba(25, 26, 23, 0.10);
  color: var(--color-text-2);
}

.filtro_section_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}


/* ==============================
   TRANSFORMACION SECTION
   ============================== */
.transformacion_section {
  background: var(--color-bg-deep);
  color: var(--color-text-inv);
  padding: clamp(64px, 8vw, 140px) var(--pad-x);
}

.transformacion_section_inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.transformacion_section_label {
  margin-bottom: clamp(36px, 5vw, 68px);
}

.transformacion_section_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  gap: 0;
}

.transformacion_item {
  background: var(--color-bg-deep);
  border-left: 1px solid rgba(245, 242, 235, 0.16);
  border-top: 1px solid rgba(245, 242, 235, 0.16);
  padding: clamp(30px, 3.4vw, 52px) clamp(20px, 2vw, 32px);
}

.transformacion_item_from {
  font-size: 9.9px;
  letter-spacing: 0.26em;
  font-weight: 600;
  color: rgba(245, 242, 235, 0.65);
  margin-bottom: 12px;
}

.transformacion_item_to {
  font-family: var(--font-serif);
  font-size: clamp(34.2px, 3.8vw, 55.8px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-text-inv);
}

.transformacion_item_to--accent {
  color: var(--color-accent-lt);
}

.transformacion_section_cta_row {
  margin-top: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}

.transformacion_section_cta_text {
  font-size: clamp(14.4px, 1.2vw, 17.1px);
  line-height: 1.7;
  color: rgba(245, 242, 235, 0.9);
  font-weight: 400;
  max-width: 46ch;
}

.transformacion_section .btn_accent {
  font-size: 10.8px;
  padding: 20px 34px;
}


/* ==============================
   COHORTE SECTION (schedule)
   ============================== */
.cohorte_section {
  background: var(--color-bg);
  padding: clamp(64px, 8vw, 132px) var(--pad-x);
}

.cohorte_section_inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.cohorte_section_header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.cohorte_section_label {
  margin-bottom: 24px;
}

.cohorte_section_title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(30.6px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--color-text);
}

.cohorte_section_title em {
  font-style: italic;
  color: var(--color-bg-deep);
}

.cohorte_section_header_desc {
  font-size: 14.4px;
  line-height: 1.7;
  color: var(--color-text-2);
  font-weight: 400;
  max-width: 42ch;
}

.cohorte_section_timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 0;
  border-top: 1px solid rgba(25, 26, 23, 0.16);
}

.cohorte_section_month {
  background: var(--color-bg);
  border-left: 1px solid rgba(25, 26, 23, 0.14);
  padding: clamp(28px, 3vw, 44px) clamp(20px, 2vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cohorte_section_month_label {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  font-weight: 600;
  color: var(--color-accent);
}

.cohorte_section_month_name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(25.2px, 2.5vw, 36px);
  line-height: 1;
  color: var(--color-text);
}

.cohorte_section_month_desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-2);
  font-weight: 400;
}

.cohorte_section_month_date {
  margin-top: auto;
  padding-top: 16px;
  font-size: 11.2px;
  letter-spacing: 0.04em;
  color: var(--color-bg-deep);
  font-weight: 500;
}


/* ==============================
   TESTIMONIOS SECTION
   ============================== */
.testimonios_section {
  background: var(--color-bg-soft);
  padding: clamp(64px, 8vw, 132px) var(--pad-x);
}

.testimonios_section_inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.testimonios_section_label {
  margin-bottom: clamp(32px, 4vw, 60px);
}

.testimonios_section_stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(28px, 4vw, 52px);
  margin-bottom: clamp(36px, 4vw, 64px);
}

.testimonios_section_stat {
  border-top: 1px solid rgba(25, 26, 23, 0.2);
  padding-top: 22px;
}

.testimonios_section_stat_number {
  font-family: var(--font-serif);
  font-size: clamp(36px, 3.6vw, 52.2px);
  line-height: 1;
  color: var(--color-bg-deep);
}

.testimonios_section_stat_desc {
  font-size: 11.7px;
  line-height: 1.55;
  color: var(--color-text-2);
  margin-top: 10px;
  max-width: 26ch;
}

@media (max-width: 640px) {
  .testimonios_section_stats {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0;
  }

  .testimonios_section_stat {
    padding: 22px 0;
  }

  .testimonios_section_stat:last-child {
    border-bottom: 1px solid rgba(25, 26, 23, 0.2);
  }
}

.testimonios_section_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  gap: clamp(28px, 3vw, 48px);
}

.testimonial_card {
  background: var(--color-bg);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial_card--dark_top {
  border-top: 2px solid var(--color-bg-deep);
}

.testimonial_card--accent_top {
  border-top: 2px solid var(--color-accent);
}

.testimonial_card_quote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(21.6px, 2.1vw, 30.6px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--color-text);
}

.testimonial_card_body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-text-2);
  font-weight: 400;
}

.testimonial_card_footer {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(25, 26, 23, 0.14);
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial_card_photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial_card_author {
  font-size: 12.6px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-text);
}

.testimonial_card_role {
  font-size: 10.8px;
  color: var(--color-text-muted);
  margin-top: 3px;
}

.testimonial_card_photo--wilfredo { object-position: 50% 30%; }
.testimonial_card_photo--andrea   { object-position: 50% 25%; }


/* ==============================
   ADMISION SECTION (+ FAQ)
   ============================== */
.admision_section {
  background: var(--color-bg-soft);
  padding: clamp(64px, 8vw, 124px) var(--pad-x);
}

.admision_section_inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(36px, 5vw, 80px);
}

.admision_section_label {
  margin-bottom: clamp(24px, 3vw, 44px);
}

.admision_section_title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(27px, 3.4vw, 46.8px);
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--color-text);
  margin-bottom: clamp(28px, 3vw, 44px);
}

.admision_section_steps {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.admision_section_step {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(25, 26, 23, 0.16);
}

.admision_section_step:last-child {
  border-bottom: 1px solid rgba(25, 26, 23, 0.16);
}

.admision_section_step_number {
  font-family: var(--font-serif);
  font-size: 27px;
  line-height: 1;
  color: var(--color-accent);
  flex-shrink: 0;
}

.admision_section_step_title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.admision_section_step_desc {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-2);
  max-width: 42ch;
}

.admision_section_cta_wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admision_section .btn_dark {
  align-self: flex-start;
  font-size: 10.8px;
  padding: 19px 32px;
}

.admision_section_cta_note {
  font-size: 10.8px;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
}

/* FAQ column */
.admision_section_faq_label {
  margin-bottom: clamp(24px, 3vw, 44px);
}

.admision_section_faq_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq_item {
  background: var(--color-bg);
  border: 1px solid rgba(25, 26, 23, 0.12);
  border-radius: 2px;
  padding: clamp(18px, 1.8vw, 24px) clamp(18px, 2vw, 26px);
}

.faq_item_summary {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14.4px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
}

.faq_item_number {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 16.2px;
  color: var(--color-accent);
  flex-shrink: 0;
  width: 22px;
}

.faq_item_question {
  flex: 1;
}

.faq_item_toggle {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(15, 46, 42, 0.35);
  color: var(--color-bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15.3px;
  font-weight: 400;
  line-height: 1;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
  font-family: var(--font-sans);
}

.faq_item_answer {
  margin: 16px 0 2px;
  padding-left: 38px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-text-faint);
  max-width: 54ch;
}


/* ==============================
   CTA FINAL SECTION
   ============================== */
.cta_final_section {
  position: relative;
  background: var(--color-bg-dark);
  color: var(--color-text-inv);
  padding: clamp(72px, 9vw, 150px) var(--pad-x);
  overflow: hidden;
}

.cta_final_section_bg {
  position: absolute;
  inset: -22% 0;
  width: 100%;
  height: auto;
  min-height: 144%;
  object-fit: cover;
  object-position: 50% 45%;
}

.cta_final_section_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 26, 23, 0.58) 0%, rgba(15, 46, 42, 0.66) 100%);
}

.cta_final_section_radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(66% 58% at 50% 52%, rgba(9, 28, 25, 0.72) 0%, rgba(9, 28, 25, 0.34) 58%, rgba(9, 28, 25, 0) 100%);
}

.cta_final_section_inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3vw, 38px);
}

.cta_final_section_label {
  font-size: 9.5px;
  letter-spacing: 0.30em;
  font-weight: 600;
  color: var(--color-accent);
}

.cta_final_section_title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32.4px, 4.9vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.45);
}

.cta_final_section_title em {
  font-style: italic;
  color: var(--color-accent-lt);
}

.cta_final_section_desc {
  max-width: 52ch;
  font-size: clamp(13.5px, 1.1vw, 16.2px);
  line-height: 1.7;
  color: rgba(245, 242, 235, 0.94);
  font-weight: 400;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}

.cta_final_section .btn_accent {
  font-size: 11.2px;
  padding: 22px 40px;
}

.cta_final_section .btn_accent:hover {
  background: var(--color-text-inv);
  color: var(--color-bg-dark);
}

.cta_final_section_note {
  font-size: 10.8px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--color-text-inv);
  text-transform: uppercase;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.7);
}


/* ==============================
   MOBILE OVERRIDES
   ============================== */
@media (min-width: 741px) {
  .hero_section_content    { order: -1; }
}

@media (max-width: 759px) {
  .hero_section_image_wrap { min-height: 60vh; }

  .coach_section_group_image {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 10px;
    border: none;
    aspect-ratio: 4 / 3;
    right: auto;
    bottom: auto;
  }

  .cambio_section_col_after {
    border-left: none;
    border-top: 1px solid rgba(245, 242, 235, 0.14);
    padding-top: 26px;
    padding-left: 0;
  }
}


/* ==============================
   MOBILE CENTERING
   ============================== */
@media (max-width: 759px) {

  /* Hero */
  .hero_section_content         { align-items: center; text-align: center; }
  .hero_section_actions         { justify-content: center; }
  .hero_section_note            { justify-content: center; }

  /* Cambio */
  .cambio_section_title         { text-align: center; margin-right: auto; margin-left: auto; }
  .cambio_section_col_header    { text-align: center; }

  /* Mentoria */
  .mentoria_section_title       { text-align: center; margin-right: auto; margin-left: auto; }

  /* Coach */
  .coach_section_title          { text-align: center; }
  .coach_section_stat           { text-align: center; }

  /* Includes */
  .includes_section_title       { text-align: center; margin-right: auto; margin-left: auto; }

  /* Filtro */
  .filtro_section_title         { text-align: center; margin-right: auto; margin-left: auto; }
  .filtro_section_card_header   { text-align: center; }

  /* Transformacion */
  .transformacion_item_from         { text-align: center; }
  .transformacion_item_to           { text-align: center; }
  .transformacion_section_cta_text  { text-align: center; }
  .transformacion_section_cta_row   { justify-items: center; }

  /* Cohorte */
  .cohorte_section_title        { text-align: center; }
  .cohorte_section_month_label  { text-align: center; }
  .cohorte_section_month_name   { text-align: center; }
  .cohorte_section_month_date   { text-align: center; }

  /* Admision */
  .admision_section_title       { text-align: center; }
  .admision_section .btn_dark   { align-self: center; }
  .admision_section_cta_note    { text-align: center; }
}

@media (max-width: 640px) {
  .testimonios_section_stat      { text-align: center; }
  .testimonios_section_stat_desc { max-width: none; }
}
