:root {
  --cyan: #06aad3;
  --blue: #044178;
  --blue-deep: #06437c;
  --pink: #d3385c;
  --yellow: #fece10;
  --ink: #000000;
  --text: #666666;
  --white: #ffffff;
  --soft: #f5f5f5;
  --font: "Poppins", Helvetica, Arial, sans-serif;
  --shell-pad: clamp(16px, 2.2vw, 38px);
  --header-pad: clamp(16px, 1.8vw, 28px);
  --header-height: clamp(72px, 5vw, 86px);
  --section-y: clamp(46px, 6vw, 86px);
  --carousel-height: clamp(104px, 8.8vw, 142px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 0 var(--shell-pad);
}

.button {
  display: inline-flex;
  min-height: clamp(44px, 3vw, 48px);
  align-items: center;
  justify-content: center;
  padding: 0 clamp(20px, 2vw, 28px);
  border-radius: 11px;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
}

.button--primary {
  background: var(--blue);
  color: var(--white);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--blue-deep);
}

.header {
  position: relative;
  z-index: 10;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.header__inner {
  width: 100%;
  max-width: none;
  padding-right: var(--header-pad);
  padding-left: var(--header-pad);
  min-height: clamp(72px, 5vw, 86px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: clamp(190px, 23vw, 282px);
  max-width: min(42vw, 282px);
}

.header__toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: transparent;
}

.header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.4vw, 58px);
}

.nav__link {
  color: #222222;
  font-size: 13px;
  font-weight: 600;
}

.nav__link--active,
.nav__link:hover,
.nav__link:focus-visible {
  color: var(--pink);
}

.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8a8a8a;
  font-size: 14px;
  font-weight: 600;
}

.nav__lang-link {
  color: #7a7a7a;
}

.nav__lang-link:hover,
.nav__lang-link:focus-visible,
.nav__lang-link--active {
  color: var(--pink);
}

.nav__search {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  color: var(--pink);
}

.nav__search:hover,
.nav__search:focus-visible {
  color: var(--pink);
}

.nav__search svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-search {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 9;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.site-search[hidden] {
  display: none;
}

.site-search__inner {
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-search__form {
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  gap: 14px;
}

.site-search__input {
  width: 100%;
  height: 52px;
  border: 0;
  border-bottom: 1px solid #d8d8d8;
  border-radius: 0;
  color: #222222;
  font-size: 18px;
  outline: 0;
}

.site-search__input:focus {
  border-color: var(--cyan);
}

.site-search__close {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  color: #222222;
}

.site-search__close:hover,
.site-search__close:focus-visible {
  color: var(--pink);
}

.site-search__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-carousel {
  position: relative;
  height: var(--carousel-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #ececec;
  background: var(--white);
}

.logo-carousel__viewport {
  width: min(calc(100% - clamp(60px, 7vw, 96px)), 1320px);
  margin: 0 auto;
  overflow: hidden;
}

.logo-carousel__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.25vw, 20px);
  padding: 0 clamp(6px, 0.7vw, 10px);
  transform: translate3d(0, 0, 0);
  transition: transform 560ms ease;
  will-change: transform;
}

.logo-carousel__track.is-jumping {
  transition: none;
}

.logo-carousel__item {
  width: clamp(154px, 12.5vw, 200px);
  height: clamp(68px, 5.625vw, 90px);
  flex: 0 0 clamp(154px, 12.5vw, 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7d7d7;
  background: var(--white);
}

.logo-carousel__item img {
  width: 100%;
  height: 100%;
  padding: clamp(6px, 0.7vw, 8px) clamp(10px, 0.9vw, 14px);
  object-fit: contain;
}

.logo-carousel__item img[src$="ortos.png"],
.logo-carousel__item img[src$="uan.png"] {
  transform: scale(0.72);
}

.logo-carousel__item img[src$="aldoo.png"] {
  transform: scale(0.66);
}

.logo-carousel__control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: clamp(28px, 2.25vw, 36px);
  height: clamp(48px, 3.5vw, 56px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transform: translateY(-50%);
  background: transparent;
  color: #aeb4ba;
}

.logo-carousel__control:hover,
.logo-carousel__control:focus-visible {
  color: var(--cyan);
}

.logo-carousel__control--prev {
  left: max(clamp(6px, 1.5vw, 24px), calc((100vw - 1320px) / 2 - 28px));
}

.logo-carousel__control--next {
  right: max(clamp(6px, 1.5vw, 24px), calc((100vw - 1320px) / 2 - 28px));
}

.logo-carousel__control svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  --hero-cta-left: 84%;
  --hero-cta-top: 82%;
  position: relative;
  min-height: clamp(640px, 49vw, 760px);
  overflow: hidden;
  background-image: url("../images/mujjjj-2-scaled.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left center;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform-origin: center center;
}

.hero__surface {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.hero__mobile-content {
  display: none;
}

.hero__cta {
  position: absolute;
  top: var(--hero-cta-top);
  right: auto;
  bottom: auto;
  left: var(--hero-cta-left);
  transform: translate(-50%, -50%);
  width: fit-content;
  max-width: calc(100% - var(--shell-pad) - var(--shell-pad));
  margin: 0;
  pointer-events: auto;
  box-shadow: 0 14px 32px rgba(4, 65, 120, 0.28);
}

.schedule {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.schedule__inner {
  position: relative;
  width: min(100%, 1510px);
  min-height: clamp(780px, 59vw, 920px);
  padding-top: clamp(54px, 4vw, 68px);
  padding-bottom: clamp(76px, 6vw, 96px);
}

.schedule__heading {
  width: 100%;
  margin-bottom: clamp(58px, 5vw, 82px);
}

.schedule__heading h2 {
  max-width: 820px;
  color: var(--blue);
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.02;
}

.schedule__note p {
  color: var(--blue-deep);
  font-size: clamp(20px, 1.76vw, 24px);
  font-weight: 300;
  line-height: 0.92;
}

.schedule__note img {
  margin-top: 18px;
}

.schedule__grid {
  display: grid;
  grid-template-columns: minmax(150px, 190px) repeat(3, minmax(220px, 331px));
  column-gap: clamp(26px, 4.4vw, 92px);
  row-gap: clamp(52px, 5vw, 92px);
  justify-content: space-between;
  align-items: start;
  width: 100%;
}

.schedule__spacer {
  display: block;
}

.timezone h3 {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: clamp(46px, 4.7vw, 64px);
  font-weight: 700;
  line-height: 0.78;
}

.timezone__line {
  width: min(100%, 331px);
  height: 3px;
  margin-bottom: 16px;
}

.timezone p {
  display: block;
  color: var(--ink);
  font-size: clamp(18px, 1.76vw, 24px);
  font-weight: 300;
  line-height: 1.25;
}

.timezone em {
  display: block;
  color: var(--ink);
  font-size: clamp(12px, 0.82vw, 13px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.54;
}

.schedule__character {
  position: absolute;
  left: clamp(0px, 0.8vw, 14px);
  bottom: 0;
  width: clamp(170px, 16vw, 245px);
  height: auto;
  object-fit: contain;
}

.color-strip-img {
  width: 100%;
  height: 16px;
  object-fit: cover;
}

.problem {
  background-image: url("/images/seccion-3.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.problem__inner {
  min-height: clamp(520px, 48vw, 650px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.problem__content {
  width: min(100%, 585px);
  padding: clamp(56px, 5vw, 72px) 0;
}

.problem__content h2 {
  color: var(--cyan);
  font-size: clamp(32px, 3.3vw, 45px);
  font-weight: 600;
  line-height: 1.02;
}

.problem__content h2 span {
  color: var(--cyan);
}

.problem__rule {
  width: 66px;
  height: 5px;
  margin: 22px 0 24px;
  background: var(--pink);
}

.problem__copy {
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 300;
  line-height: 1.2;
}

.problem__lead {
  margin-top: clamp(26px, 2.4vw, 34px);
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 300;
}

.problem__bullets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 14px);
  margin-bottom: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--blue-deep);
}

.problem__bullets li {
  color: var(--ink);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.28;
}

.pillars {
  padding: clamp(54px, 6vw, 82px) 0 clamp(48px, 5vw, 74px);
  background: var(--white);
}

.pillars__grid {
  width: min(100%, 1025px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 auto;
}

.pillar-card {
  min-height: 305px;
  padding: clamp(34px, 4vw, 58px) clamp(22px, 2.4vw, 34px) clamp(28px, 3vw, 36px) clamp(28px, 3.5vw, 54px);
  background-image: url("/images/Rectangle-82.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.pillar-card__num {
  margin-bottom: clamp(12px, 1.2vw, 18px);
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 300;
  line-height: 1;
}

.pillar-card h3 {
  margin-bottom: clamp(16px, 2vw, 30px);
  font-size: clamp(24px, 1.9vw, 29px);
  font-weight: 600;
  line-height: 1;
}

.pillar-card p,
.pillar-card li {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
}

.pillar-card li {
  margin-bottom: 8px;
}

.pillar-card li::before {
  content: "✅ ";
}

.program-link {
  width: fit-content;
  max-width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px auto 0;
  padding: 0 28px;
  border-radius: 11px;
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}

.speakers {
  padding: clamp(26px, 3vw, 34px) 0 clamp(64px, 6vw, 82px);
  background: var(--white);
}

.speakers h2 {
  max-width: 540px;
  margin: 0 auto clamp(32px, 3.2vw, 44px);
  color: var(--cyan);
  font-size: clamp(20px, 1.5vw, 22px);
  font-weight: 300;
  line-height: 1.28;
  text-align: center;
}

.speakers h2 strong {
  font-weight: 600;
}

.speakers__grid {
  width: min(100%, 920px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(12px, 1.6vw, 20px) clamp(18px, 2.6vw, 40px);
  margin: 0 auto;
}

.speaker {
  min-height: 76px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  border: 1px solid var(--cyan);
  border-radius: 11px;
  background: var(--white);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

.speaker img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.speaker h3 {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.15;
}

.speaker p {
  color: var(--ink);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.2;
}

.agenda {
  background: var(--blue-deep);
  color: var(--white);
}

.agenda__inner {
  min-height: clamp(460px, 40vw, 545px);
  position: relative;
  padding-top: clamp(82px, 7vw, 96px);
  padding-bottom: clamp(54px, 5vw, 70px);
  text-align: center;
}

.agenda__badge {
  position: absolute;
  top: clamp(-68px, -4.25vw, -54px);
  left: 50%;
  width: clamp(108px, 8.5vw, 136px);
  height: clamp(108px, 8.5vw, 136px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-deep);
  color: var(--white);
  font-size: clamp(22px, 1.8vw, 26px);
  font-weight: 400;
}

.agenda__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 26px);
  margin: 0 auto clamp(22px, 2vw, 28px);
  color: var(--white);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 300;
}

.agenda__facts li {
  display: flex;
  flex-direction: column;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.agenda__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.agenda__facts small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
}

.agenda__logo {
  width: min(32%, 381px);
  min-width: 260px;
  margin: 0 auto 22px;
}

.countdown {
  width: min(100%, 810px);
  min-height: clamp(144px, 12vw, 170px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 auto;
  padding: clamp(28px, 2.6vw, 35px) clamp(42px, 4.6vw, 68px) clamp(24px, 2.1vw, 28px);
  background-image: url("/images/MARCO-PARA-CUENTA-REGRESIVA.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.countdown__unit {
  display: grid;
  gap: 8px;
  align-content: center;
  color: var(--white);
}

.countdown__num {
  font-size: clamp(34px, 3.7vw, 54px);
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  font-size: 8px;
  font-weight: 300;
}

.camplus {
  background: var(--cyan);
  color: var(--white);
  text-align: center;
}

.camplus__photo {
  height: clamp(300px, 30vw, 490px);
  background-image: url("/images/IMAGEN-SECCION-6-1.png");
  background-position: center;
  background-size: cover;
}

.camplus__band {
  padding: 0 var(--shell-pad) clamp(44px, 4vw, 58px);
}

.camplus__mark {
  width: clamp(136px, 13vw, 200px);
  margin: clamp(-109px, -7vw, -64px) auto clamp(18px, 1.8vw, 24px);
}

.camplus h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(30px, 2.5vw, 40px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.camplus p {
  max-width: 468px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(18px, 1.35vw, 20px);
  font-weight: 300;
  line-height: 1.25;
}

.camplus-article {
  background:
    linear-gradient(180deg, var(--cyan) 0 34%, #042c56 34% 100%);
  color: var(--white);
}

.camplus-article__inner {
  padding-bottom: clamp(54px, 6vw, 86px);
}

.camplus-article__card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  overflow: hidden;
  border-radius: 8px;
  background: #061e3d;
  box-shadow: 0 28px 70px rgba(0, 20, 48, 0.3);
  text-align: left;
}

.camplus-article__media {
  min-height: 100%;
  background: #02152f;
}

.camplus-article__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1189 / 659;
  object-fit: contain;
  object-position: center top;
}

.camplus-article__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 2.6vw, 38px);
  background:
    linear-gradient(90deg, var(--pink) 0 28px, var(--yellow) 28px 56px, #65c5de 56px 84px, transparent 84px) left bottom / 100% 7px no-repeat,
    radial-gradient(circle at 100% 0%, rgba(6, 170, 211, 0.22), transparent 42%),
    #061e3d;
}

.camplus-article__eyebrow {
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.camplus-article h3 {
  max-width: 460px;
  color: var(--white);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.camplus-article__copy p:not(.camplus-article__eyebrow) {
  max-width: 440px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(15px, 0.95vw, 16px);
  font-weight: 300;
  line-height: 1.45;
}

.camplus-article__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}

.camplus-article__button {
  background: var(--cyan);
  color: var(--white);
}

.camplus-article__button:hover,
.camplus-article__button:focus-visible {
  background: #0696ba;
}

.camplus-article__download {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.camplus-article__download:hover,
.camplus-article__download:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.cta-final {
  background: var(--white);
}

.cta-final__inner {
  width: min(100%, 1080px);
  max-width: 1080px;
  min-height: 0;
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  padding-top: clamp(30px, 3vw, 44px);
  padding-bottom: clamp(30px, 3vw, 44px);
}

.cta-final__copy {
  text-align: left;
}

.cta-final h3 {
  margin-bottom: 0;
  padding-bottom: 10px;
  color: var(--ink);
  font-size: clamp(20px, 1.5vw, 22px);
  font-weight: 600;
  line-height: 1.2;
}

.cta-final p {
  color: var(--ink);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.cta-final .button {
  justify-self: center;
  min-width: 137px;
  min-height: 48px;
  border: 1px solid #0c71c3;
  border-radius: 9px;
}

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

.footer__grid {
  width: 100%;
  max-width: 1355px;
  min-height: clamp(340px, 28vw, 420px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(34px, 5.5vw, 74px);
  align-items: start;
  padding-top: clamp(46px, 5vw, 76px);
  padding-bottom: clamp(48px, 5vw, 72px);
}

.footer__brand img {
  width: min(100%, 420px);
  margin-bottom: clamp(28px, 6.5vw, 95px);
}

.footer__divider {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: #5e5e5e;
}

.footer__divider--accent {
  width: 10%;
  height: 4px;
  margin: 0 0 23px;
  background: var(--pink);
}

.footer h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.footer a,
.footer p {
  display: block;
  color: var(--white);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  word-break: break-word;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
}

.social {
  width: 32px;
  height: 32px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  color: var(--white);
  transition: opacity 180ms ease;
}

.social:hover,
.social:focus-visible {
  opacity: 0.72;
}

.social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social--facebook svg {
  fill: currentColor;
  stroke: none;
}

.social--instagram { background: #ea2c59; }
.social--linkedin { background: #007bb6; }
.social--youtube { background: #a82400; }
.social--tiktok { background: #fe2c55; }

@media (max-width: 1023px) {
  :root {
    --shell-pad: clamp(18px, 3vw, 24px);
    --header-pad: clamp(18px, 3vw, 24px);
    --header-height: 78px;
    --carousel-height: clamp(114px, 13vw, 128px);
  }

  .page-shell {
    padding: 0 var(--shell-pad);
  }

  .header__inner {
    padding-right: var(--header-pad);
    padding-left: var(--header-pad);
    min-height: 78px;
  }

  .brand img {
    width: clamp(180px, 24vw, 238px);
    max-width: 56vw;
  }

  .header__toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    padding: 26px 24px 30px;
    background: var(--white);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list {
    display: grid;
    gap: 18px;
  }

  .nav__lang {
    justify-self: start;
  }

  .nav__search {
    width: 44px;
    height: 44px;
    justify-content: flex-start;
  }

  .site-search {
    position: fixed;
    top: 78px;
  }

  .logo-carousel {
    height: var(--carousel-height);
  }

  .logo-carousel__viewport {
    width: calc(100% - clamp(64px, 9vw, 96px));
  }

  .logo-carousel__control--prev {
    left: clamp(8px, 1.8vw, 18px);
  }

  .logo-carousel__control--next {
    right: clamp(8px, 1.8vw, 18px);
  }

  .hero {
    min-height: clamp(620px, 66vw, 680px);
  }

  .hero__cta {
    width: fit-content;
  }

  .schedule__heading {
    width: 100%;
    margin-left: 0;
  }

  .schedule__grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 331px));
    gap: clamp(24px, 4vw, 40px) clamp(24px, 5vw, 54px);
    justify-content: center;
  }

  .schedule__character {
    opacity: 0.22;
  }

  .problem__inner {
    justify-content: center;
  }

  .problem__content {
    margin-left: auto;
  }

  .pillars__grid,
  .speakers__grid,
  .agenda__facts,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .speakers__grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  }

  .cta-final__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .cta-final__copy {
    text-align: center;
  }

  .pillar-card {
    min-height: 0;
  }

  .countdown {
    padding: clamp(30px, 4vw, 36px) clamp(42px, 5.3vw, 54px) clamp(26px, 3vw, 30px);
  }

  .camplus-article__card {
    grid-template-columns: 1fr;
  }

  .camplus-article__media img {
    height: auto;
  }

  .footer__brand img {
    margin-bottom: 40px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell-pad: clamp(14px, 4.6vw, 18px);
    --header-pad: clamp(14px, 4.6vw, 18px);
    --header-height: 70px;
    --carousel-height: clamp(104px, 28vw, 114px);
  }

  .page-shell {
    padding: 0 var(--shell-pad);
  }

  .header__inner {
    padding-right: var(--header-pad);
    padding-left: var(--header-pad);
    min-height: 70px;
  }

  .brand img {
    width: clamp(150px, 48vw, 180px);
    max-width: 54vw;
  }

  .nav {
    inset: 70px 0 auto;
    padding: 20px 18px 24px;
  }

  .site-search {
    top: 70px;
  }

  .logo-carousel {
    height: var(--carousel-height);
  }

  .logo-carousel__viewport {
    width: calc(100% - clamp(48px, 16vw, 64px));
  }

  .logo-carousel__track {
    gap: clamp(10px, 3.4vw, 14px);
  }

  .logo-carousel__item {
    width: clamp(146px, 46vw, 178px);
    height: clamp(66px, 20vw, 78px);
    flex-basis: clamp(146px, 46vw, 178px);
  }

  .logo-carousel__control {
    width: clamp(24px, 7vw, 28px);
  }

  .logo-carousel__control--prev {
    left: clamp(4px, 1.8vw, 6px);
  }

  .logo-carousel__control--next {
    right: clamp(4px, 1.8vw, 6px);
  }

  .site-search__inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-search__form {
    gap: 10px;
  }

  .site-search__input {
    height: 48px;
    font-size: 16px;
  }

  .nav__link {
    display: block;
    padding: 9px 0;
    font-size: 16px;
  }

  .hero {
    --hero-mobile-height: clamp(540px, 138vw, 620px);
    --hero-cta-left: 50%;
    --hero-cta-top: calc(100% - 66px);
    min-height: var(--hero-mobile-height);
    height: var(--hero-mobile-height);
    background-color: #05215f;
    background-image: none;
    isolation: isolate;
  }


  .hero__video {
    display: block;
    object-fit: cover;
    object-position: 94% center;
    transform: scale(1.04);
  }

  .hero__surface {
    position: absolute;
    inset: 0;
    z-index: 2;
    min-height: 0;
    height: 100%;
    padding: 0;
    pointer-events: none;
  }

  .hero__mobile-content {
    position: absolute;
    top: 48%;
    left: 50%;
    width: min(330px, calc(100vw - (var(--shell-pad) * 2)));
    display: block;
    transform: translate(-50%, -50%);
    color: var(--white);
    text-align: center;
    text-shadow: 0 4px 18px rgba(0, 22, 70, 0.38);
  }

  .hero__mobile-brand {
    font-size: clamp(31px, 8.4vw, 43px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
  }

  .hero__mobile-subtitle {
    margin-top: 10px;
    font-size: clamp(17px, 4.8vw, 22px);
    font-weight: 300;
    line-height: 1.02;
  }

  .hero__cta,
  .button {
    width: 100%;
    margin-left: 0;
    white-space: normal;
    text-align: center;
  }

  .hero__cta {
    pointer-events: auto;
    top: var(--hero-cta-top);
    right: auto;
    bottom: auto;
    left: var(--hero-cta-left);
    transform: translate(-50%, -50%);
    width: min(248px, calc(100vw - (var(--shell-pad) * 3)));
    min-height: 42px;
    padding: 0 18px;
    border-radius: 10px;
    font-size: clamp(13px, 3.45vw, 14px);
    white-space: normal;
    box-shadow: 0 10px 24px rgba(4, 65, 120, 0.24);
  }

  .schedule__inner {
    min-height: 0;
    padding-top: clamp(38px, 10vw, 42px);
    padding-bottom: clamp(44px, 12vw, 48px);
  }

  .schedule__heading {
    width: 100%;
    margin-left: 0;
    margin-bottom: 34px;
  }

  .schedule__heading h2 {
    font-size: clamp(22px, 6.2vw, 24px);
    line-height: 1.1;
  }

  .schedule__note {
    max-width: 220px;
  }

  .schedule__note img {
    margin-top: 12px;
  }

  .schedule__spacer {
    display: none;
  }

  .schedule__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .timezone {
    padding: 18px 18px 20px;
    border: 1px solid rgba(6, 170, 211, 0.28);
    border-radius: 18px;
    background: #f7fcfe;
  }

  .timezone h3 {
    font-size: clamp(31px, 9.4vw, 35px);
  }

  .timezone__line {
    width: min(100%, 331px);
  }

  .schedule__character {
    position: static;
    width: min(62%, 220px);
    height: auto;
    margin: 30px auto 0;
    opacity: 1;
  }

  .problem {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 62%, rgba(255, 255, 255, 0.45) 100%), url("/images/seccion-3.png");
    background-position: 58% center;
  }

  .problem__inner {
    min-height: 0;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .problem__content {
    padding: 0;
  }

  .problem__content h2 {
    font-size: 32px;
    line-height: 1.1;
  }

  .problem__copy {
    font-size: 18px;
  }

  .problem__lead {
    margin-top: 26px;
  }

  .problem__bullets {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }

  .pillars {
    padding: 54px 0 48px;
  }

  .pillars .page-shell {
    padding: 0 clamp(12px, 3.7vw, 18px);
  }

  .pillars__grid {
    width: 100%;
    gap: 18px;
  }

  .pillar-card {
    min-height: 0;
    padding: clamp(24px, 7vw, 30px) clamp(18px, 6vw, 24px) clamp(22px, 6vw, 26px);
    overflow: hidden;
    border-radius: 18px;
    background: var(--cyan);
    box-shadow:
      inset 0 3px 0 var(--yellow),
      inset 0 -3px 0 var(--pink),
      0 12px 22px rgba(0, 0, 0, 0.18);
  }

  .pillar-card__num {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .pillar-card h3 {
    margin-bottom: 14px;
    font-size: clamp(22px, 7vw, 25px);
    line-height: 1.1;
  }

  .pillar-card p,
  .pillar-card li {
    font-size: clamp(14px, 4vw, 15px);
    line-height: 1.48;
  }

  .pillar-card li {
    margin-bottom: 6px;
  }

  .program-link {
    width: 100%;
    min-height: 54px;
    margin-top: 28px;
    padding: 12px 18px;
    line-height: 1.25;
  }

  .speakers {
    padding: 26px 0 64px;
  }

  .speakers h2 {
    font-size: 20px;
  }

  .speakers__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .speaker {
    min-height: 72px;
    box-shadow: 0 8px 22px rgba(4, 65, 120, 0.12);
  }

  .agenda__inner {
    min-height: 0;
    padding-top: 82px;
    padding-bottom: 54px;
  }

  .agenda__badge {
    top: -54px;
    width: 108px;
    height: 108px;
    font-size: 22px;
  }

  .agenda__facts {
    gap: 10px;
    margin-bottom: 26px;
    font-size: 17px;
  }

  .agenda__facts li {
    min-height: 0;
    padding: 14px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
  }

  .agenda__logo {
    width: min(100%, 300px);
  }

  .countdown {
    min-height: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 22px;
    background-image: none;
    background-color: rgba(255, 255, 255, 0.08);
  }

  .countdown__unit {
    min-height: 84px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
  }

  .countdown__num {
    font-size: 34px;
  }

  .countdown__label {
    font-size: 9px;
  }

  .camplus__photo {
    height: 300px;
  }

  .camplus__band {
    padding: 0 var(--shell-pad) 44px;
  }

  .camplus__mark {
    width: clamp(136px, 42vw, 190px);
    margin-top: -64px;
    margin-bottom: 18px;
  }

  .camplus h2 {
    font-size: 30px;
    line-height: 1.05;
  }

  .camplus p {
    font-size: 18px;
  }

  .camplus-article {
    background: #042c56;
  }

  .camplus-article__inner {
    padding-top: 32px;
    padding-bottom: 46px;
  }

  .camplus-article__copy {
    padding: 26px 22px 30px;
  }

  .camplus-article__eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .camplus-article h3 {
    font-size: clamp(22px, 6.6vw, 28px);
  }

  .camplus-article__copy p:not(.camplus-article__eyebrow) {
    margin-top: 14px;
    font-size: 15px;
  }

  .camplus-article__actions {
    display: grid;
    gap: 12px;
    margin-top: 24px;
  }

  .camplus-article__download {
    width: 100%;
  }

  .cta-final__inner {
    width: 100%;
    gap: 18px;
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .cta-final h3 {
    font-size: 20px;
  }

  .cta-final p {
    font-size: 15px;
  }

  .footer__grid {
    width: 100%;
    gap: 34px;
    padding-top: 46px;
    padding-bottom: 48px;
  }

  .footer__brand img {
    width: min(100%, 280px);
    margin-bottom: 28px;
  }

  .footer h2 {
    font-size: 14px;
  }

  .footer a,
  .footer p {
    font-size: 14px;
  }

  .social {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 380px) {
  .page-shell {
    padding: 0 var(--shell-pad);
  }

  .brand img {
    width: clamp(150px, 48vw, 180px);
    max-width: 54vw;
  }

  .pillar-card {
    padding: clamp(24px, 7vw, 30px) clamp(18px, 6vw, 24px) clamp(22px, 6vw, 26px);
  }

  .pillar-card h3 {
    font-size: clamp(22px, 7vw, 25px);
  }

  .pillar-card p,
  .pillar-card li {
    font-size: clamp(14px, 4vw, 15px);
  }

  .countdown__num {
    font-size: clamp(30px, 9.4vw, 34px);
  }
}
