:root {
  --navy: #002147;
  --navy-2: #001a39;
  --blue: #0064bd;
  --blue-2: #075eae;
  --gold: #d79a3b;
  --gold-dark: #bd812b;
  --body: #252b33;
  --muted: #6a6d73;
  --light: #eef2f5;
  --soft: #f6f6f6;
  --white: #ffffff;
  --shadow: 0 18px 35px rgba(0, 0, 0, .16);
  --shadow-soft: 0 12px 22px rgba(0, 0, 0, .12);
  --radius-lg: 34px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'PT Sans', Arial, sans-serif;
  color: var(--body);
  background: var(--soft);
  overflow-x: hidden;
}

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

section,
footer {
  scroll-margin-top: 108px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 2000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  background: #e9eef2;
  box-shadow: none;
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.site-header.is-scrolled {
  background: rgba(235, 240, 244, .96);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
  backdrop-filter: blur(10px);
}

.navbar {
  padding: 0;
  min-height: 126px;
}

.navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  width: min(330px, 48vw);
}

.navbar-nav .nav-link {
  min-height: 126px;
  display: flex;
  align-items: center;
  padding: 0 28px !important;
  color: var(--navy);
  font-size: 1.34rem;
  line-height: 1;
  letter-spacing: .01em;
  transition: color .2s ease, background .2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--blue);
}

.nav-contact .nav-link {
  min-width: 270px;
  justify-content: center;
  background: var(--gold);
  color: var(--white) !important;
}

.nav-contact .nav-link:hover,
.nav-contact .nav-link:focus {
  background: var(--gold-dark);
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

.section-pad-top {
  padding-top: 126px;
}


/* Slider principal CEAH */
.home-slider-section {
  position: relative;
  background: var(--navy);
}

.ceah-slider {
  position: relative;
  min-height: clamp(560px, calc(100vh - 126px), 760px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.ceah-slider-track,
.ceah-slide {
  position: absolute;
  inset: 0;
}

.ceah-slide {
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-image: var(--slide-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.025);
  transition: opacity .85s ease, visibility .85s ease, transform 3.8s ease;
}

.ceah-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  z-index: 2;
}

.ceah-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 33, 71, .92) 0%, rgba(0, 33, 71, .76) 38%, rgba(0, 100, 189, .34) 68%, rgba(0, 33, 71, .42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .26), rgba(0, 0, 0, .22));
}

.ceah-slide::after {
  content: '';
  position: absolute;
  right: -8vw;
  bottom: -18vw;
  width: clamp(280px, 46vw, 760px);
  height: clamp(280px, 46vw, 760px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 154, 59, .22), rgba(215, 154, 59, 0) 62%);
  pointer-events: none;
}

.ceah-slide-content {
  position: relative;
  z-index: 3;
  padding-top: clamp(76px, 8vw, 130px);
  padding-bottom: clamp(76px, 8vw, 130px);
}

.ceah-slide-content > * {
  max-width: 770px;
}

.ceah-slide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: clamp(.82rem, 1vw, 1rem);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ceah-slide-kicker::before {
  content: '';
  width: 46px;
  height: 2px;
  background: var(--gold);
}

.ceah-slide h2 {
  margin: 0;
  color: var(--white);
  font-family: 'PT Serif', Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 5.55rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.035em;
  text-shadow: 0 14px 34px rgba(0, 0, 0, .28);
}

.ceah-slide p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.35;
}

.ceah-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-slider-outline {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1.5px solid rgba(255, 255, 255, .86);
  backdrop-filter: blur(8px);
}

.btn-slider-outline:hover,
.btn-slider-outline:focus {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.ceah-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  line-height: 1;
  transition: background .2s ease, transform .2s ease, color .2s ease;
}

.ceah-slider-arrow:hover,
.ceah-slider-arrow:focus {
  color: var(--navy);
  background: var(--white);
  transform: translateY(-50%) scale(1.05);
}

.ceah-slider-prev {
  left: clamp(16px, 3vw, 42px);
}

.ceah-slider-next {
  right: clamp(16px, 3vw, 42px);
}

.ceah-slider-dots {
  position: absolute;
  left: 50%;
  bottom: clamp(22px, 4vw, 42px);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.ceah-slider-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  transition: width .25s ease, background .25s ease;
}

.ceah-slider-dots button.is-active {
  width: 40px;
  background: var(--gold);
}

@media (max-width: 991.98px) {
  .ceah-slider {
    min-height: clamp(540px, calc(100vh - 84px), 680px);
  }

  .ceah-slide-overlay {
    background:
      linear-gradient(90deg, rgba(0, 33, 71, .93), rgba(0, 33, 71, .76)),
      linear-gradient(180deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .18));
  }

  .ceah-slide-content {
    padding-left: 34px;
    padding-right: 34px;
  }

  .ceah-slider-arrow {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .ceah-slider {
    min-height: 590px;
  }

  .ceah-slide {
    background-position: center right;
  }

  .ceah-slide-content {
    padding: 70px 24px 92px;
  }

  .ceah-slide-kicker {
    gap: 10px;
    font-size: .76rem;
    letter-spacing: .11em;
  }

  .ceah-slide-kicker::before {
    width: 32px;
  }

  .ceah-slide h2 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .ceah-slide p {
    font-size: 1.02rem;
  }

  .ceah-slide-actions .btn {
    width: 100%;
  }
}

.min-vh-hero {
  min-height: 700px;
}

.hero-section {
  background: #f4f4f4;
}

.hero-copy {
  min-height: 100px;
  background: #f3f4f5;
}

.hero-inner {
  width: min(620px, 100%);
  margin-left: clamp(28px, 6vw, 128px);
  padding-right: clamp(24px, 4vw, 60px);
}

.display-title {
  margin: 0;
  color: var(--navy);
  font-family: 'PT Serif', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 2.5vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -.02em;
}

.display-title span {
  color: var(--gold);
}

.hero-inner p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #686a70;
  font-size: 18px;
  line-height: 1.15;
}

.btn {
  border-radius: 0;
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.12rem;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .14);
}

.btn-gold {
  color: var(--white);
  background: var(--gold);
  border: 1px solid var(--gold);
}

.btn-gold:hover,
.btn-gold:focus {
  color: var(--white);
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-outline-navy {
  color: var(--navy);
  background: transparent;
  border: 1.5px solid var(--navy);
}

.btn-outline-navy:hover,
.btn-outline-navy:focus {
  color: var(--white);
  background: var(--navy);
}

.hero-image-wrap {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.hero-image,
.split-photo {
  width: 100%;
  height: 100%;
  min-height: 700px;
  background-image: url('../assets/placeholder-hero.svg');
  background-size: cover;
  background-position: center;
}

.chevron {
  position: absolute;
  left: -3px;
  top: -2%;
  width: 39%;
  height: 104%;
  clip-path: polygon(0 0, 54% 0, 100% 50%, 54% 100%, 0 100%, 45% 50%);
  pointer-events: none;
}

.chevron-white {
  background: rgba(255, 255, 255, .93);
  width: 39%;
}

.chevron-blue {
  background: var(--blue);
  width: 26%;
  left: 0;
  opacity: .96;
  transform: translate(-10%, -18%) scale(.62);
}

.chevron-navy {
  background: var(--navy);
  width: 24%;
  left: 0;
  opacity: .96;
  transform: translate(-13%, 20%) scale(.66);
}

.stats-strip {
  padding: 70px 0 90px;
  background: #e7edf1;
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 42px 54px;
  background: var(--white);
  border-radius: 42px;
  box-shadow: var(--shadow-soft);
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 116px;
  color: var(--blue);
  border-right: 2px solid var(--gold);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item i {
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  line-height: 1;
}

.stat-item strong {
  display: block;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .86;
  font-weight: 700;
}

.stat-item span {
  display: block;
  color: #707076;
  font-size: clamp(.8rem, 1.2vw, 1.2rem);
  white-space: nowrap;
}

.about-section {
  background: var(--white);
}

.about-left {
  min-height: 600px;
  position: relative;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-logo {
  width: min(650px, 72%);
  margin: 95px auto 76px;
  display: block;
}

.about-title-block {
  min-height: 250px;
  padding: 44px 11vw 54px;
  color: var(--white);
  background: var(--blue);
}

.line-kicker {
  display: block;
  width: 0;
  height: 2px;
  overflow: hidden;
  opacity: 0;
}

.about-title-block h2,
.white-title,
.footer-contact h2 {
  margin: 0;
  font-family: 'PT Serif', Georgia, serif;
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.02em;
}

.about-title-block h2 {
  font-size: clamp(4.2rem, 9vw, 4rem);
}

.about-text {
  min-height: 600px;
  padding: 72px clamp(32px, 7vw, 120px);
  color: var(--white);
  background: var(--navy);
}

.about-text p {
  margin-bottom: 32px;
  font-size: clamp(1.18rem, 1.8vw, 1.68rem);
  line-height: 1.16;
}

.section-space {
  padding: clamp(76px, 9vw, 140px) 0;
}

.section-kicker {
  display: block;
  color: var(--gold);
  font-size: clamp(1.7rem, 2.6vw, 2.55rem);
  line-height: 1.1;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.section-title {
  margin: 7px 0 0;
  color: var(--navy);
  font-family: 'PT Serif', Georgia, serif;
  font-size: clamp(3.1rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
}

.lead-muted {
  color: #6b6b70;
  font-size: clamp(1.55rem, 2.2vw, 2.4rem);
  line-height: 1.2;
}

.region-section {
  background: #f4f4f4;
}

.region-list {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.region-list li {
  position: relative;
  padding-left: 38px;
  color: #66686d;
  font-size: clamp(1.55rem, 2.3vw, 2.7rem);
  font-weight: 700;
  line-height: 1.15;
}

.region-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .34em;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
}

.region-map {
  display: block;
  width: 100%;
  min-height: 320px;
}

.competitividad-band {
  padding: clamp(60px, 7vw, 88px) 0;
  color: var(--white);
  background: var(--navy);
}

.competitividad-band h2 {
  margin: 0;
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: clamp(2.3rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.07;
}

.competitividad-band .col-lg-7 {
  border-left: 2px solid rgba(255, 255, 255, .82);
}

.competitividad-band p {
  margin: 0;
  padding-left: clamp(32px, 5vw, 72px);
  font-size: 20px;
  line-height: 1.18;
}

.split-vision {
  background: var(--blue);
}

.split-photo {
  min-height: 520px;
  background-image: url('../assets/placeholder-meeting.svg');
}

.split-message {
  min-height: 520px;
  background: var(--blue);
  color: var(--white);
  padding: clamp(48px, 7vw, 118px);
}

.split-message p {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2rem, 3.3vw, 4rem);
  line-height: 1.12;
}

.benefits-section,
.active-partners,
.honorificos-section {
  background: #f5f5f5;
}

.why-pill {
  width: 100%;
  max-width: 620px;
  min-height: 220px;
  padding: 52px 70px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 0 120px 120px 0;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  font-weight: 700;
  line-height: 1.05;
}

.benefit-intro {
  max-width: 710px;
  color: #67696e;
  font-size: clamp(1.55rem, 2.35vw, 2.65rem);
  line-height: 1.22;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 68px);
  padding: 0 clamp(14px, 4vw, 90px);
}

.benefit-card {
  min-height: 270px;
  padding: 36px 22px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.benefit-card i {
  color: var(--blue);
  font-size: clamp(3.7rem, 5vw, 5.4rem);
  line-height: 1;
}

.benefit-card h3 {
  margin: 22px 0 0;
  color: var(--navy);
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  line-height: 1.05;
  font-weight: 400;
}

.join-section {
  padding: clamp(80px, 10vw, 155px) 0;
  color: var(--white);
  background: var(--navy);
}

.white-title {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  margin-bottom: 48px;
}

.join-section p {
  font-size: clamp(1.35rem, 2.1vw, 2.3rem);
  line-height: 1.22;
  margin-bottom: 38px;
}

.video-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 34px;
  box-shadow: none;
}

.video-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 34px;
  transition: transform .5s ease, filter .5s ease;
}

.video-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 11px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  font-size: 70px;
  background: rgba(255, 255, 255, .08);
  transition: transform .25s ease, background .25s ease;
}

.video-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(0, 100, 189, .24);
}

.testimonial-card {
  padding: 36px 42px;
  color: #6c6f74;
  background: #f4f4f4;
  border-radius: 24px;
}

.testimonial-card p {
  margin: 0 0 24px;
  color: #6d6f74;
  font-size: clamp(1.08rem, 1.4vw, 1.52rem);
  line-height: 1.18;
}

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

.testimonial-author i {
  color: var(--blue);
  font-size: 2.35rem;
}

.testimonial-author strong,
.testimonial-author small {
  display: block;
  line-height: 1.05;
}

.testimonial-author strong {
  color: var(--blue);
  font-size: 1.16rem;
  font-weight: 400;
}

.testimonial-author small {
  color: var(--gold);
  font-size: .86rem;
}

.cta-band {
  padding: clamp(48px, 6vw, 74px) 0;
  color: var(--white);
  background: var(--blue);
}

.cta-band p {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
  font-weight: 700;
  font-style: italic;
}

.photo-logo-wrap {
  position: relative;
  padding-bottom: 62px;
}

.photo-card {
  display: block;
  width: 100%;
  max-height: 515px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.floating-logo {
  position: absolute;
  left: -4%;
  bottom: 0;
  width: 52%;
  min-width: 270px;
  padding: 26px 38px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.honor-copy {
  color: #25272b;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  line-height: 1.22;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
  padding: 62px 70px;
  background: var(--white);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
}

.partner-logo {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--navy);
  font-size: clamp(1.55rem, 2vw, 2.4rem);
  font-weight: 700;
}

.partner-logo:nth-child(1) { color: #e96235; }
.partner-logo:nth-child(2) { color: #0f8b4e; }
.partner-logo:nth-child(3) { color: #a9382b; }
.partner-logo:nth-child(4) { color: #153f73; }

.network-band {
  padding: clamp(64px, 8vw, 105px) 0;
  color: var(--white);
  background: var(--navy);
}

.network-band h2 {
  margin: 0 0 28px;
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: clamp(2.2rem, 3.6vw, 4.5rem);
  font-weight: 700;
}

.network-band p {
  max-width: 1380px;
  margin: 0 auto;
  font-size: clamp(1.25rem, 2vw, 2.12rem);
  line-height: 1.18;
}

.active-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(30px, 4vw, 72px);
}

.active-card {
  min-height: 392px;
  padding: 56px 42px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}

.active-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.logo-circle {
  width: 205px;
  height: 205px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  color: #ec1d25;
  font-family: 'PT Serif', Georgia, serif;
  font-weight: 700;
  font-size: 2.45rem;
  line-height: 1;
  background: #f0f0f0;
  border-radius: 50%;
}

.logo-circle.alt {
  color: #0d75b9;
}

.active-card h3 {
  margin: 0 auto 26px;
  color: var(--navy);
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  line-height: 1.09;
  font-weight: 400;
}

.active-card .btn-sm {
  width: 100%;
  min-height: 48px;
  font-size: 1rem;
}

.site-footer {
  color: var(--white);
}

.footer-contact .row {
  min-height: 545px;
}

.footer-left,
.footer-right {
  padding: clamp(64px, 8vw, 125px) clamp(36px, 9vw, 150px);
}

.footer-left {
  background: var(--navy);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--blue);
}

.footer-contact h2 {
  margin-bottom: 78px;
  color: var(--white);
  font-size: clamp(2.5rem, 4vw, 2.5rem);
}

.contact-line {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 14px;
  align-items: baseline;
  margin-bottom: 42px;
}

.contact-line i {
  grid-row: span 2;
  font-size: 1.7rem;
}

.contact-line strong {
  font-size: clamp(1.7rem, 2vw, 1.7rem);
  line-height: 1;
}

.contact-line span,
.contact-line a {
  grid-column: 2;
  color: var(--white);
  text-decoration: none;
  font-size: clamp(1.5rem, 2.8vw, 1.5rem);
  line-height: 1;
}

.social-icons {
  display: flex;
  gap: 45px;
}

.social-icons a {
  width: 98px;
  height: 98px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border-radius: 50%;
  font-size: 3.35rem;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.social-icons a:hover,
.social-icons a:focus {
  transform: translateY(-6px) scale(1.03);
  color: var(--navy);
}

.footer-bottom {
  padding: 62px 0;
  color: var(--navy);
  background: #e9eef2;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.1;
}

.footer-legal a {
  color: var(--navy);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--blue);
}

.video-modal-content {
  color: var(--white);
  background: var(--navy);
  border-radius: 24px;
  overflow: hidden;
}

.video-placeholder {
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.video-placeholder > div {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.video-placeholder i {
  font-size: 5rem;
}

.video-placeholder p {
  max-width: 360px;
  margin: 12px auto 0;
  font-size: 1.15rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s ease, transform .85s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .12s;
}

.reveal-delay-2 {
  transition-delay: .24s;
}

@media (max-width: 1399.98px) {
  .navbar-nav .nav-link {
    padding: 0 18px !important;
    font-size: 1.13rem;
  }
  .nav-contact .nav-link {
    min-width: 215px;
  }
  .benefit-grid,
  .active-grid {
    gap: 32px;
  }
  .active-card {
    padding-left: 28px;
    padding-right: 28px;
  }
  .logo-circle {
    width: 175px;
    height: 175px;
  }
}

@media (max-width: 1199.98px) {
  .stats-card {
    padding: 34px 30px;
  }
  .stat-item {
    gap: 14px;
  }
  .benefit-grid,
  .active-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-strip {
    padding: 45px 42px;
  }
}

@media (max-width: 991.98px) {
  section,
  footer {
    scroll-margin-top: 84px;
  }
  .navbar {
    min-height: 84px;
    padding: 10px 0;
  }
  .navbar-brand img {
    width: min(190px, 70vw);
  }
  .navbar-collapse {
    margin: 12px -1.5rem 0;
    background: #e9eef2;
    box-shadow: 0 20px 24px rgba(0, 0, 0, .08);
  }
  .navbar-nav .nav-link,
  .nav-contact .nav-link {
    min-height: 58px;
    padding: 0 32px !important;
    justify-content: flex-start;
    font-size: 1.1rem;
  }
  .nav-contact .nav-link {
    min-width: 0;
  }
  .section-pad-top {
    padding-top: 84px;
  }
  .min-vh-hero,
  .hero-copy,
  .hero-image-wrap,
  .hero-image {
    min-height: auto;
  }
  .hero-copy {
    padding: 80px 0 66px;
  }
  .hero-inner {
    margin: 0 auto;
    padding: 0 30px;
  }
  .hero-image-wrap {
    min-height: 560px;
  }
  .hero-image {
    min-height: 560px;
  }
  .chevron {
    width: 42%;
  }
  .stats-strip {
    padding: 36px 0 60px;
  }
  .stats-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-radius: 28px;
  }
  .stat-item {
    justify-content: flex-start;
    padding: 18px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(215, 154, 59, .45);
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(215, 154, 59, .45);
  }
  .stat-item:nth-child(n + 3) {
    border-bottom: 0;
  }
  .about-logo {
    width: min(520px, 82%);
    margin-top: 65px;
    margin-bottom: 56px;
  }
  .about-title-block {
    min-height: auto;
    padding-left: 42px;
  }
  .about-text {
    min-height: auto;
    padding: 64px 42px;
  }
  .competitividad-band .col-lg-7 {
    border-left: 0;
    border-top: 2px solid rgba(255, 255, 255, .82);
    padding-top: 28px;
  }
  .competitividad-band p {
    padding-left: 0;
  }
  .split-photo,
  .split-message {
    min-height: 430px;
  }
  .why-pill {
    border-radius: 0 100px 100px 0;
  }
  .video-card,
  .video-card img {
    min-height: 520px;
    height: 520px;
  }
  .partner-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-contact .row {
    min-height: auto;
  }
  .footer-left,
  .footer-right {
    padding: 70px 36px;
  }
  .footer-contact h2 {
    margin-bottom: 44px;
  }
}

@media (max-width: 767.98px) {
  .hero-copy {
    padding: 64px 0 52px;
  }
  .hero-image-wrap,
  .hero-image {
    min-height: 430px;
  }
  .chevron-white {
    width: 52%;
  }
  .chevron-blue,
  .chevron-navy {
    width: 36%;
  }
  .stats-card {
    grid-template-columns: 1fr;
    padding: 26px;
    border-radius: 24px;
  }
  .stat-item,
  .stat-item:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid rgba(215, 154, 59, .45);
  }
  .stat-item:last-child {
    border-bottom: 0;
  }
  .stat-item span {
    white-space: normal;
  }
  .about-left {
    min-height: auto;
  }
  .about-title-block h2 {
    font-size: clamp(3rem, 5vw, 4rem);
  }
  .about-text p {
    font-size: 1.18rem;
  }
  .section-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
  .section-kicker {
    font-size: 1.42rem;
  }
  .lead-muted,
  .region-list li {
    font-size: 1.45rem;
  }
  .region-list li::before {
    width: 16px;
    height: 16px;
  }
  .region-list li {
    padding-left: 28px;
  }
  .split-photo,
  .split-message {
    min-height: 360px;
  }
  .split-message {
    padding: 52px 30px;
  }
  .split-message p {
    font-size: 2rem;
  }
  .why-pill {
    width: calc(100% + 12px);
    max-width: none;
    min-height: 190px;
    padding: 38px 42px;
    font-size: 2.35rem;
    border-radius: 0 80px 80px 0;
  }
  .benefit-intro {
    font-size: 1.55rem;
  }
  .benefit-grid,
  .active-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .benefit-card {
    min-height: 230px;
  }
  .join-section p {
    font-size: 1.35rem;
  }
  .white-title {
    margin-bottom: 30px;
  }
  .video-card,
  .video-card img {
    min-height: 430px;
    height: 430px;
  }
  .testimonial-card {
    padding: 28px 26px;
  }
  .photo-logo-wrap {
    padding-bottom: 48px;
  }
  .floating-logo {
    left: 18px;
    width: 78%;
    min-width: 0;
    padding: 20px 24px;
  }
  .honor-copy {
    font-size: 1.3rem;
  }
  .partner-strip {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
  .active-card {
    min-height: 360px;
  }
  .contact-line {
    grid-template-columns: auto 1fr;
  }
  .contact-line i {
    font-size: 2rem;
  }
  .contact-line strong {
    font-size: 2rem;
  }
  .contact-line span,
  .contact-line a {
    font-size: clamp(1.35rem, 7vw, 2rem);
    overflow-wrap: anywhere;
  }
  .social-icons {
    gap: 18px;
  }
  .social-icons a {
    width: 72px;
    height: 72px;
    font-size: 2.35rem;
  }
  .footer-bottom {
    text-align: center;
    padding: 44px 0;
  }
  .footer-bottom img {
    width: min(280px, 85vw);
  }
}

@media (max-width: 430px) {
  .btn {
    width: 100%;
  }
  .hero-inner {
    padding: 0 22px;
  }
  .hero-image-wrap,
  .hero-image {
    min-height: 360px;
  }
  .stats-card {
    padding: 18px;
  }
  .stat-item {
    gap: 16px;
    padding: 16px 8px;
  }
  .stat-item i {
    font-size: 2.6rem;
  }
  .stat-item strong {
    font-size: 3rem;
  }
  .about-title-block,
  .about-text {
    padding-left: 28px;
    padding-right: 28px;
  }
  .why-pill {
    font-size: 2.05rem;
    padding-left: 30px;
  }
  .logo-circle {
    width: 168px;
    height: 168px;
  }
}

/* Directorio público de socios activos */
.directory-section-copy {
  max-width: 780px;
  color: #6b6b70;
  font-size: 1.2rem;
  line-height: 1.35;
}

.partner-card {
  justify-content: flex-start;
  gap: 0;
}

.partner-avatar-wrap {
  width: 205px;
  height: 205px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  overflow: hidden;
  background: #f0f0f0;
  border: 8px solid #f7f9fb;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 33, 71, .08);
}

.partner-avatar-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.partner-card h3 {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
}

.partner-card .partner-more {
  margin-top: auto;
}

.partner-card .btn.disabled,
.partner-card .btn:disabled {
  pointer-events: none;
  opacity: .58;
  box-shadow: none;
  transform: none;
}

.directory-empty-card {
  width: min(100%, 780px);
  margin-left: auto;
  margin-right: auto;
  padding: 46px 34px;
  text-align: center;
  color: var(--navy);
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.directory-empty-card i {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 4rem;
  line-height: 1;
}

.directory-empty-card h3 {
  margin: 0 0 10px;
  font-family: 'PT Serif', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
}

.directory-empty-card p {
  max-width: 560px;
  margin: 0 auto;
  color: #686a70;
  font-size: 1.1rem;
  line-height: 1.45;
}

.directory-hero {
  padding-bottom: clamp(62px, 8vw, 110px);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.directory-hero .display-title,
.directory-hero .section-kicker {
  color: var(--white);
}

.directory-hero .display-title span {
  color: var(--gold);
}

.directory-hero p {
  max-width: 820px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.32;
}

.directory-hero-card {
  min-height: 300px;
  padding: 42px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--navy);
  background: var(--white);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.directory-hero-card i {
  color: var(--blue);
  font-size: 4.8rem;
  line-height: 1;
}

.directory-hero-card strong {
  margin-top: 16px;
  color: var(--gold);
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: .88;
}

.directory-hero-card span {
  margin-top: 10px;
  color: #686a70;
  font-size: 1.2rem;
  line-height: 1.2;
}

.directory-section {
  background: #f5f5f5;
}

.directory-search-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 22px;
  margin-top: -112px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.directory-search-input {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  background: #f3f6f8;
  border: 1px solid rgba(0, 33, 71, .1);
  border-radius: 18px;
}

.directory-search-input i {
  color: var(--blue);
  font-size: 1.35rem;
}

.directory-search-input input {
  width: 100%;
  min-height: 56px;
  border: 0;
  outline: 0;
  color: var(--navy);
  background: transparent;
  font: inherit;
  font-size: 1.12rem;
}

.directory-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  color: var(--navy);
}

.directory-results-head p,
.directory-results-head span {
  margin: 0;
  color: #66686d;
  font-size: 1.05rem;
}

.directory-results-head strong {
  color: var(--navy);
}

.directory-grid {
  padding-left: 0;
  padding-right: 0;
}

.directory-pagination {
  margin-top: 54px;
}

.directory-pagination .page-link {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  border-color: rgba(0, 33, 71, .12);
  border-radius: 12px !important;
  box-shadow: none;
}

.directory-pagination .page-link:hover,
.directory-pagination .page-link:focus {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.directory-pagination .page-item.active .page-link {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.directory-pagination .page-item.disabled .page-link {
  color: #9aa0a8;
  background: #eef2f5;
}

@media (max-width: 1199.98px) {
  .partner-avatar-wrap {
    width: 175px;
    height: 175px;
  }
}

@media (max-width: 767.98px) {
  .directory-hero {
    padding-bottom: 138px;
  }
  .directory-search-card {
    grid-template-columns: 1fr;
    margin-top: -118px;
    padding: 18px;
  }
  .directory-results-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .partner-card h3 {
    min-height: auto;
  }
}

@media (max-width: 430px) {
  .partner-avatar-wrap {
    width: 168px;
    height: 168px;
  }
}

/* ==============================
   MENÚ CEAH - Versión delgada/elegante
   Pegar al final de styles.css
================================= */

.site-header {
  background: rgba(233, 238, 242, 0.96);
  box-shadow: 0 6px 18px rgba(0, 33, 71, 0.06);
  backdrop-filter: blur(10px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(0, 33, 71, 0.12);
}

.navbar {
  min-height: 82px;
  padding: 10px 0;
}

.navbar .container-fluid {
  align-items: center;
}

.navbar-brand img {
  width: min(245px, 44vw);
  height: auto;
  display: block;
  transition: width .25s ease, transform .25s ease;
}

.site-header.is-scrolled .navbar-brand img {
  width: min(220px, 42vw);
}

.navbar-nav {
  align-items: center !important;
  gap: 4px;
}

.navbar-nav .nav-link {
  position: relative;
  min-height: auto;
  height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px !important;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .01em;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--blue);
  background: rgba(0, 100, 189, .08);
  transform: translateY(-1px);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
  transform: scaleX(1);
}

/* Botón Afiliación */
.nav-contact .nav-link {
  min-width: auto;
  height: 48px;
  margin-left: 10px;
  padding: 0 22px !important;
  justify-content: center;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(215, 154, 59, .28);
}

.nav-contact .nav-link::after {
  display: none;
}

.nav-contact .nav-link:hover,
.nav-contact .nav-link:focus {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  box-shadow: 0 12px 28px rgba(215, 154, 59, .38);
}

/* Ajustes para que las secciones no queden tapadas por el menú fijo */
section,
footer {
  scroll-margin-top: 92px;
}

.section-pad-top {
  padding-top: 82px;
}

/* Ajuste del slider principal por la nueva altura del menú */
.ceah-slider {
  min-height: clamp(540px, calc(100vh - 82px), 740px);
}

/* Botón hamburguesa más limpio */
.navbar-toggler {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  background: rgba(0, 33, 71, .06);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(0, 100, 189, .16) !important;
}

/* Responsive */
@media (max-width: 991.98px) {
  .navbar {
    min-height: 76px;
    padding: 9px 0;
  }

  .navbar-brand img,
  .site-header.is-scrolled .navbar-brand img {
    width: min(185px, 66vw);
  }

  .navbar-collapse {
    margin: 10px -1.5rem 0;
    padding: 14px 1.5rem 18px;
    background: rgba(255, 255, 255, .97);
    border-top: 1px solid rgba(0, 33, 71, .08);
    box-shadow: 0 18px 28px rgba(0, 33, 71, .10);
  }

  .navbar-nav {
    align-items: stretch !important;
    gap: 8px;
  }

  .navbar-nav .nav-link,
  .nav-contact .nav-link {
    width: 100%;
    height: 48px;
    min-height: 48px;
    margin-left: 0;
    padding: 0 18px !important;
    justify-content: flex-start;
    font-size: 1rem;
    border-radius: 14px;
  }

  .nav-contact .nav-link {
    justify-content: center;
    margin-top: 4px;
  }

  section,
  footer {
    scroll-margin-top: 82px;
  }

  .section-pad-top {
    padding-top: 76px;
  }

  .ceah-slider {
    min-height: clamp(520px, calc(100vh - 76px), 660px);
  }
}

@media (max-width: 430px) {
  .navbar {
    min-height: 72px;
  }

  .navbar-brand img,
  .site-header.is-scrolled .navbar-brand img {
    width: min(165px, 62vw);
  }

  .section-pad-top {
    padding-top: 72px;
  }
}
