:root {
  --brand-ink: #17262b;
  --brand-deep: #104B5B;
  --brand-france: #104B5B;
  --brand-teal: #104B5B;
  --brand-teal-2: #104B5B;
  --brand-water: #79cfc5;
  --brand-water-soft: #ddf4f0;
  --brand-gold: #d99a21;
  --brand-white: #f8fbfa;
  --brand-muted: #5e6f73;
  --line: rgba(23, 38, 43, 0.14);
  --shadow: 0 18px 50px rgba(1, 50, 61, 0.14);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--brand-white);
  color: var(--brand-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.75rem;
  font-weight: 500;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

h3 {
  font-size: 1.12rem;
  font-weight: 760;
}

.single-line-title {
  white-space: normal;
}

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

.site-shell {
  min-height: 100vh;
  background: var(--brand-white);
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: white;
  color: var(--brand-teal);
  border: 1px solid var(--line);
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23, 38, 43, 0.09);
}

.site-header .container {
  width: min(100% - 24px, 1360px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
}

.brand-mark img {
  width: clamp(156px, 52vw, 210px);
  height: auto;
}

.desktop-nav {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 6px;
}

.desktop-nav a,
.mobile-nav a {
  font-size: 0.94rem;
  font-weight: 700;
  color: rgba(23, 38, 43, 0.78);
  border-radius: 6px;
}

.desktop-nav a {
  padding: 10px 11px;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--brand-teal);
  background: rgba(121, 207, 197, 0.18);
}

.header-actions {
  display: none;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--brand-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.mobile-nav {
  display: none;
  padding: 8px 0 18px;
  border-top: 1px solid var(--line);
  max-height: calc(100dvh - 88px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 13px 4px;
}

.mobile-nav .button {
  display: inline-flex;
  margin-top: 12px;
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 800;
  max-width: 100%;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button-primary:hover {
  background: #104B5B;
}

.button-secondary {
  color: white;
  border-color: var(--brand-france);
  background: var(--brand-france);
}

.button-secondary:hover {
  color: white;
  border-color: #104B5B;
  background: #104B5B;
}

.site-header .header-actions .button,
.site-header .mobile-nav .button {
  color: white;
  border-color: var(--brand-france);
  background: var(--brand-france);
  box-shadow: 0 12px 26px rgba(16, 75, 91, 0.24);
}

.site-header .header-actions .button:hover,
.site-header .mobile-nav .button:hover {
  color: white;
  border-color: #104B5B;
  background: #104B5B;
}

.site-header .header-actions .button-secondary,
.site-header .mobile-nav .button-primary {
  white-space: nowrap;
}

.button-congress-header,
.site-header .header-actions .button-congress-header,
.site-header .mobile-nav .button-congress-header {
  flex-direction: column;
  gap: 1px;
  min-width: min(246px, 100%);
  min-height: 52px;
  padding: 8px 14px;
  border-color: #f47a0b;
  background: #f47a0b;
  color: white;
  box-shadow: 0 12px 26px rgba(244, 122, 11, 0.25);
  font-size: 0.76rem;
  line-height: 1.08;
}

.button-congress-header span {
  display: block;
}

.button-congress-header:hover,
.site-header .header-actions .button-congress-header:hover,
.site-header .mobile-nav .button-congress-header:hover {
  border-color: #d96a00;
  background: #d96a00;
  color: white;
}

.button-light {
  color: var(--brand-deep);
  background: white;
}

.button-outline-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.button-france {
  color: white;
  background: var(--brand-france);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-france:hover {
  background: #104B5B;
}

.button-water {
  color: white;
  background: var(--brand-france);
  border-color: rgba(255, 255, 255, 0.24);
}

.button-water:hover {
  background: #104B5B;
}

.button-sun {
  color: white;
  background: var(--brand-france);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-sun:hover {
  background: #104B5B;
}

.button-coverage-orange {
  border-color: #f47a0b;
  background: #f47a0b;
  color: white;
  box-shadow: 0 12px 26px rgba(244, 122, 11, 0.25);
}

.button-coverage-orange:hover {
  border-color: #d96500;
  background: #d96500;
  color: white;
}

.button-program-download {
  border-color: #f47a0b;
  background: #f47a0b;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(244, 122, 11, 0.25);
}

.button-program-download:hover {
  border-color: #d96500;
  background: #d96500;
  color: #ffffff;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: stretch;
  color: white;
  overflow: hidden;
  background: var(--brand-deep);
}

.hero.short {
  min-height: 660px;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.hero-media video,
.image-panel video,
.program-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 75, 91, 0.46);
}

.hero.educativa .hero-media::after {
  background: rgba(16, 75, 91, 0.48);
}

.hero.comunidad .hero-media::after {
  background: rgba(24, 82, 54, 0.48);
}

.hero.organizaciones .hero-media::after {
  background: rgba(16, 75, 91, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding: 86px 0 26px;
}

.hero-grid {
  display: grid;
  gap: 34px;
  align-items: end;
}

.hero-copy {
  max-width: 780px;
  text-shadow: 0 2px 18px rgba(0, 20, 34, 0.32);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--brand-water-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--brand-gold);
}

.hero p {
  margin-top: 20px;
  max-width: 680px;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero .button-row {
  margin-top: 28px;
}

.hero-gateways {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 14px;
  width: 100%;
}

.gateway {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 148px;
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(16, 75, 91, 0.72);
  color: white;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 38px rgba(0, 20, 34, 0.24);
}

.gateway strong {
  font-size: clamp(1.22rem, 3.5vw, 1.64rem);
  line-height: 1.08;
}

.gateway span {
  display: block;
  max-width: 22ch;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

.gateway.gateway-primary {
  background: rgba(16, 75, 91, 0.72);
  border-color: rgba(255, 255, 255, 0.36);
}

.home-gateways .gateway {
  min-height: 148px;
  padding: 24px 20px;
  background: rgba(16, 75, 91, 0.72);
}

.home-gateways .gateway span {
  display: block;
}

.gateway:hover {
  background: rgba(16, 75, 91, 0.84);
  border-color: rgba(255, 255, 255, 0.42);
}

.health-hero .hero-gateways {
  gap: 18px;
  margin-top: 14px;
}

.health-hero .gateway {
  background: rgba(16, 75, 91, 0.72);
}

.health-hero .gateway strong {
  font-size: clamp(1.22rem, 3.5vw, 1.64rem);
  line-height: 1.08;
}

.health-hero .gateway span {
  display: block;
  max-width: 22ch;
  margin: 10px auto 0;
  font-size: 0.98rem;
}

.section {
  position: relative;
  padding: 72px 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section.tight {
  padding: 54px 0;
}

.section.white {
  background: white;
}

.section.soft {
  background: #eef7f5;
}

.section.ink {
  background: var(--brand-deep);
  color: white;
}

.section.health-band {
  background: #e8f6f5;
}

.section.edu-band {
  background: #eaf0f6;
}

.section.community-band {
  background: #edf6ef;
}

.section.org-band {
  background: #eef4f5;
}

.section.soft,
.section.health-band,
.section.edu-band,
.section.community-band,
.section.org-band {
  overflow: hidden;
}

.section.soft::before,
.section.health-band::before,
.section.edu-band::before,
.section.community-band::before,
.section.org-band::before {
  content: "";
  position: absolute;
  top: -76px;
  right: max(24px, calc((100vw - var(--max)) / 2));
  width: min(44vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(16, 75, 91, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.section-header {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
  max-width: 820px;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  color: var(--brand-muted);
  font-size: 1rem;
}

.section.ink .section-header p {
  color: rgba(255, 255, 255, 0.74);
}

.kicker {
  color: var(--brand-teal-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-registered {
  display: inline-block;
  margin-left: 0.03em;
  font-size: 0.42em;
  line-height: 0;
  vertical-align: super;
}

.health-center-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-teal);
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  line-height: 1.08;
  font-weight: 900;
  text-transform: none;
}

.edu-format-kicker {
  display: block;
  color: var(--brand-france);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.08;
  text-transform: none;
}

.edu-featured-kicker {
  display: block;
  color: var(--brand-france);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.08;
  text-transform: none;
}

.edu-search-kicker {
  display: block;
  color: var(--brand-france);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.08;
  text-transform: none;
}

.edu-offer-kicker {
  display: block;
  color: var(--brand-france);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.08;
  text-transform: none;
}

.section.ink .kicker {
  color: var(--brand-water);
}

.two-col {
  display: grid;
  gap: 28px;
  align-items: center;
}

.two-col.top {
  align-items: start;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 280px;
}

.image-panel img,
.image-panel video {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.image-panel.portrait img {
  max-height: 620px;
}

.health-art-section {
  background: linear-gradient(135deg, rgba(16, 75, 91, 0.08), rgba(0, 150, 199, 0.08));
}

.health-art-video-panel {
  width: min(100%, 460px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  min-height: 0;
  background: var(--brand-deep);
}

.health-art-video-panel video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  background: var(--brand-deep);
}

.sede-video-panel {
  width: min(100%, 460px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  min-height: 0;
  background: var(--brand-deep);
}

.sede-video-panel video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  background: var(--brand-deep);
}

.lead {
  color: var(--brand-muted);
  font-size: 1rem;
}

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

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid.two,
.card-grid.three,
.card-grid.four {
  grid-template-columns: 1fr;
}

.programs-grid {
  align-items: stretch;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 20px;
}

.card.dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: white;
}

.card.dark p {
  color: rgba(255, 255, 255, 0.76);
}

.card.france-card {
  background: var(--brand-deep);
  border-color: rgba(255, 255, 255, 0.16);
  color: white;
  box-shadow: 0 14px 38px rgba(16, 75, 91, 0.16);
}

.card.france-card p {
  color: rgba(255, 255, 255, 0.78);
}

.health-plan-grid {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.health-plan-content {
  display: grid;
  gap: 18px;
  align-content: start;
}

.health-plan-header {
  max-width: none;
  margin-bottom: 0;
}

.health-plan-header h2 {
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.health-plan-cards {
  display: grid;
  gap: 14px;
}

.health-plan-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 148px;
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--brand-deep);
  color: white;
  box-shadow: 0 14px 38px rgba(16, 75, 91, 0.16);
}

.health-plan-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.health-plan-card p {
  color: rgba(255, 255, 255, 0.78);
}

.health-plan-video {
  min-height: 360px;
}

.health-team-section .section-header {
  max-width: 960px;
}

.health-team-section {
  padding-top: clamp(28px, 4vw, 44px);
}

.health-team-title-kicker {
  display: block;
  color: var(--brand-deep);
  font-size: clamp(2.15rem, 4.8vw, 3.7rem);
  line-height: 1;
  text-transform: none;
}

.health-team-grid {
  display: grid;
  gap: 18px;
}

.health-team-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 280px 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.health-team-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: #f8fbfa;
}

.health-team-card > div {
  display: grid;
  grid-template-rows: auto auto minmax(64px, 1fr) auto;
  gap: 10px;
  align-content: start;
  padding: 18px;
}

.health-team-card span {
  color: var(--brand-france);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.health-team-card h3 {
  color: var(--brand-deep);
  font-size: 1.25rem;
}

.health-team-card p {
  color: var(--brand-muted);
}

.profile-details {
  align-self: end;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.profile-details summary {
  width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--brand-water);
  color: white;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.profile-details summary::-webkit-details-marker {
  display: none;
}

.profile-details p {
  margin-top: 12px;
}

.card p,
.unit-card p,
.program-card p {
  margin-top: 10px;
  color: var(--brand-muted);
}

.unit-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 320px;
  border-radius: var(--radius);
  color: white;
  background: var(--brand-deep);
}

.unit-card::before {
  content: "";
  position: absolute;
  top: -74px;
  right: -68px;
  width: 178px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.unit-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.unit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(16, 75, 91, 0.46);
}

.unit-card.educativa::after {
  background: rgba(16, 75, 91, 0.45);
}

.unit-card.comunidad::after {
  background: rgba(24, 82, 54, 0.46);
}

.unit-card.organizaciones::after {
  background: rgba(16, 75, 91, 0.48);
}

.unit-content {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.unit-content h3 {
  font-size: 1.55rem;
}

.unit-content p {
  color: rgba(255, 255, 255, 0.78);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: inherit;
  font-size: 0.82rem;
  font-weight: 800;
}

.unit-card .tag {
  background: var(--brand-gold);
  border-color: rgba(255, 255, 255, 0.34);
  color: white;
}

.tag.solid {
  background: var(--brand-water-soft);
  color: var(--brand-teal);
  border-color: transparent;
}

.metric-row {
  display: grid;
  gap: 14px;
}

.metric {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-top: 3px solid var(--brand-deep);
  background: var(--brand-gold);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(217, 154, 33, 0.28);
}

.metric::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 44px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.metric strong {
  display: block;
  color: white;
  font-size: 2rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: white;
  font-size: 0.9rem;
}

.method-strip {
  display: grid;
  gap: 1px;
  background: var(--brand-water);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
}

.method-head {
  display: grid;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
}

.method-head .section-header {
  margin-bottom: 0;
}

.method-head .section-header h2 {
  font-size: clamp(2.8rem, 6vw, 4.7rem);
}

.method-logo-card {
  margin: 0;
  border-radius: var(--radius);
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.34);
  padding: 18px;
  box-shadow: 0 18px 46px rgba(0, 20, 34, 0.18);
  height: 170px;
  overflow: hidden;
}

.method-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
}

.vetas-model-section {
  margin-top: clamp(86px, 9vw, 132px);
  padding: clamp(22px, 3vw, 44px) 0 clamp(42px, 5vw, 78px);
  background: white;
}

.vetas-model-section img {
  width: 100%;
  height: auto;
  display: block;
}

.method-step {
  padding: 18px;
  background:
    linear-gradient(rgba(16, 75, 91, 0.48), rgba(16, 75, 91, 0.48)),
    var(--brand-water);
  text-shadow: 0 2px 6px rgba(0, 20, 34, 0.42);
}

.method-step strong {
  display: block;
  color: white;
}

.method-step span {
  display: block;
  margin-top: 6px;
  color: white;
  font-size: 0.93rem;
}

.vetas-explain {
  background: linear-gradient(180deg, #eef7f5 0%, #ffffff 100%);
}

.vetas-graphic {
  display: grid;
  gap: 22px;
}

.vetas-flow {
  display: grid;
  gap: 12px;
}

.vetas-step-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 188px;
  padding: 18px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  border-top: 6px solid var(--brand-water);
  box-shadow: 0 14px 38px rgba(16, 75, 91, 0.1);
}

.vetas-number {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-deep);
  color: white;
  font-weight: 900;
}

.vetas-step-card h3 {
  color: var(--brand-deep);
}

.vetas-step-card p {
  color: var(--brand-muted);
  font-size: 0.94rem;
}

.vetas-one {
  border-top-color: #d99a21;
}

.vetas-two {
  border-top-color: #e2c441;
}

.vetas-three {
  border-top-color: #69b86e;
}

.vetas-four {
  border-top-color: #38aeb2;
}

.vetas-five {
  border-top-color: #3f6fa8;
}

.vetas-objective {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 24px;
  border-radius: var(--radius);
  border: 2px solid rgba(0, 108, 154, 0.22);
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(16, 75, 91, 0.1);
}

.vetas-objective span {
  color: #007f8c;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vetas-objective strong {
  color: var(--brand-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.18;
  font-weight: 500;
}

.program-card {
  display: grid;
  grid-template-rows: 320px 1fr;
  gap: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.program-card img,
.program-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-card.health-kids img {
  object-position: center 31%;
}

.program-card.health-adults img {
  object-position: center 50%;
}

.program-card > div {
  padding: 20px;
}

.health-band .program-card > div {
  display: grid;
  align-content: start;
}

.health-band .program-card > div > .tag.solid:first-child {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 76px;
  width: 100%;
  margin-bottom: 22px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--brand-france);
  color: white;
  font-size: clamp(1.34rem, 3vw, 1.78rem);
  line-height: 1.08;
  text-align: center;
  text-transform: none;
  box-shadow: 0 16px 32px rgba(16, 75, 91, 0.16);
}

.health-band .program-card h3 {
  margin-top: 0;
}

.health-band .program-card p {
  margin-top: 14px;
}

.program-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.health-band .program-actions .button {
  background: #ADE8F4;
  border-color: #ADE8F4;
  color: var(--brand-deep);
  box-shadow: 0 14px 28px rgba(173, 232, 244, 0.34);
}

.health-band .program-actions .button:hover {
  background: #90e0ef;
  border-color: #90e0ef;
  color: var(--brand-deep);
}

.button,
.button-primary,
.button-secondary,
.button-light,
.button-outline-light,
.button-france,
.button-water,
.button-sun,
.site-header .header-actions .button,
.site-header .mobile-nav .button,
.health-band .program-actions .button {
  background: #104B5B;
  border-color: #104B5B;
  color: white;
  box-shadow: 0 12px 26px rgba(16, 75, 91, 0.24);
}

.button:hover,
.button-primary:hover,
.button-secondary:hover,
.button-light:hover,
.button-outline-light:hover,
.button-france:hover,
.button-water:hover,
.button-sun:hover,
.site-header .header-actions .button:hover,
.site-header .mobile-nav .button:hover,
.health-band .program-actions .button:hover {
  background: #104B5B;
  border-color: #104B5B;
  color: white;
}

.button-congress-header,
.site-header .header-actions .button-congress-header,
.site-header .mobile-nav .button-congress-header {
  flex-direction: column;
  gap: 1px;
  min-width: min(246px, 100%);
  min-height: 52px;
  padding: 8px 14px;
  border-color: #f47a0b;
  background: #f47a0b;
  color: white;
  box-shadow: 0 12px 26px rgba(244, 122, 11, 0.25);
  font-size: 0.76rem;
  line-height: 1.08;
}

.button-congress-header span {
  display: block;
}

.button-congress-header:hover,
.site-header .header-actions .button-congress-header:hover,
.site-header .mobile-nav .button-congress-header:hover {
  border-color: #d96a00;
  background: #d96a00;
  color: white;
}

.educativa-platform .button,
.educativa-platform .edu-profile-detail summary,
.community-platform .button {
  border-color: #f47a0b;
  background: #f47a0b;
  color: white;
  box-shadow: 0 12px 26px rgba(244, 122, 11, 0.25);
}

.educativa-platform .button:hover,
.educativa-platform .edu-profile-detail summary:hover,
.community-platform .button:hover {
  border-color: #d96a00;
  background: #d96a00;
  color: white;
}

.community-platform .foundation-gateways,
.community-platform .foundation-participation-grid {
  align-items: stretch;
}

.community-platform .foundation-gateways .gateway {
  grid-template-rows: minmax(2.1em, auto) 1fr;
  align-content: start;
  min-height: 168px;
}

.community-platform .foundation-gateways .gateway strong,
.community-platform .foundation-participation-grid .card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4em;
  margin: 0;
  text-align: center;
}

.community-platform .foundation-gateways .gateway span {
  align-self: start;
}

.community-platform .foundation-participation-grid .card {
  display: grid;
  grid-template-rows: minmax(2.4em, auto) 1fr;
  min-height: 184px;
  text-align: center;
}

.split-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.split-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--brand-muted);
}

.split-list li strong {
  color: var(--brand-ink);
}

.split-list li.pathology-highlight {
  margin: 4px 0 8px;
  padding: 16px 18px;
  border: 2px solid rgba(16, 75, 91, 0.18);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(173, 232, 244, 0.48), rgba(255, 255, 255, 0.92));
  color: var(--brand-ink);
  box-shadow: 0 14px 28px rgba(16, 75, 91, 0.12);
}

.split-list li.pathology-highlight strong {
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand-transition-section {
  margin-top: clamp(30px, 5vw, 72px);
  padding: clamp(42px, 6vw, 76px) 0;
  background: var(--brand-deep);
  box-shadow: 0 0 0 100vmax var(--brand-deep);
  clip-path: inset(0 -100vmax);
}

.brand-transition {
  position: relative;
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
  min-height: 230px;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.96) 0%, rgba(221, 244, 240, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 60px rgba(0, 20, 34, 0.28);
}

.video-transition {
  min-height: 0;
  aspect-ratio: 16 / 5.4;
  background: var(--brand-deep);
}

.video-transition video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.transition-logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
}

.transition-logo img {
  max-width: min(82%, 620px);
  max-height: 160px;
  object-fit: contain;
}

.transition-logo.old-logo {
  animation: oldLogoFade 5s ease-in-out infinite;
}

.transition-logo.new-logo {
  animation: newLogoFade 5s ease-in-out infinite;
}

.transition-logo.old-logo img {
  max-width: min(68%, 440px);
  max-height: 170px;
  transform: scale(1.75);
}

.transition-logo.new-logo img {
  max-height: 185px;
}

@keyframes oldLogoFade {
  0%,
  42% {
    opacity: 1;
  }
  58%,
  100% {
    opacity: 0;
  }
}

@keyframes newLogoFade {
  0%,
  42% {
    opacity: 0;
  }
  58%,
  100% {
    opacity: 1;
  }
}

.institutional-statement {
  max-width: 980px;
}

.institutional-statement h2 {
  font-size: 1.65rem;
  line-height: 1.18;
}

.cta-band {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 28px;
  background: var(--brand-deep);
  color: white;
  border-radius: clamp(24px, 5vw, 56px) var(--radius) clamp(24px, 5vw, 56px) var(--radius);
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -96px;
  right: -82px;
  width: 230px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.cta-band.gold {
  background: var(--brand-france);
}

.cta-band.green {
  background: var(--brand-france);
}

.cta-band.blue {
  background: var(--brand-france);
}

.cta-band.health-coverage {
  background: var(--brand-deep);
}

#cobertura.section {
  padding-bottom: clamp(30px, 4vw, 46px);
}

.final-identity-section {
  padding-bottom: 38px;
}

.identity-socle {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 132px;
  padding: 26px 28px;
  border-radius: 0;
  background: var(--brand-france);
  box-shadow: 0 0 0 100vmax var(--brand-france), 0 14px 38px rgba(16, 75, 91, 0.16);
  clip-path: inset(0 -100vmax);
  color: white;
  text-align: center;
}

.identity-socle::before {
  content: "";
  position: absolute;
  left: max(18px, calc((100vw - var(--max)) / 2));
  bottom: -78px;
  width: min(42vw, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.identity-socle h2 {
  position: relative;
  z-index: 1;
  width: 100%;
  font-size: clamp(1.65rem, 7vw, 2.2rem);
  line-height: 1.08;
}

.full-width-socle {
  margin-top: 20px;
}

.story-socle {
  background: var(--brand-gold);
  box-shadow: 0 0 0 100vmax var(--brand-gold), 0 14px 38px rgba(217, 154, 33, 0.18);
  color: white;
}

.final-identity {
  width: auto;
  background: var(--brand-france);
  box-shadow: 0 0 0 100vmax var(--brand-france), 0 14px 38px rgba(16, 75, 91, 0.16);
  color: white;
}

.health-identity {
  width: auto;
  background: var(--brand-gold);
  box-shadow: 0 0 0 100vmax var(--brand-gold), 0 14px 38px rgba(217, 154, 33, 0.18);
  color: white;
}

.final-identity h2 {
  max-width: none;
}

.campaign-section {
  padding-top: 38px;
}

.cta-band .kicker {
  color: var(--brand-water);
}

.coverage-strip {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.coverage-track {
  display: flex;
  gap: 10px;
  width: max-content;
  padding: 12px;
  animation: coverageMarquee 42s linear infinite;
}

.coverage-strip:hover .coverage-track {
  animation-play-state: paused;
}

.coverage-track span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: white;
  color: var(--brand-deep);
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 20, 34, 0.12);
}

.coverage-note {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.coverage-note strong {
  color: white;
}

.coverage-logo-panel {
  margin-top: 18px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(16, 75, 91, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(173, 232, 244, 0.34), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 40px rgba(16, 75, 91, 0.08);
}

.coverage-logo-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.coverage-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.coverage-logo-card {
  display: grid;
  min-height: 190px;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(16, 75, 91, 0.16);
  border-radius: 8px;
  background: white;
  color: var(--brand-deep);
  text-align: center;
  box-shadow: 0 10px 18px rgba(16, 75, 91, 0.08);
}

.coverage-logo-card img {
  display: block;
  width: min(100%, 230px);
  max-height: 92px;
  object-fit: contain;
}

.coverage-logo-card strong {
  font-size: 1.05rem;
}

@keyframes coverageMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.info-list {
  display: grid;
  gap: 10px;
}

.info-list li {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.info-list strong {
  color: var(--brand-deep);
}

.info-list span,
.info-list a {
  color: var(--brand-muted);
}

.contact-grid {
  display: grid;
  gap: 22px;
}

.evaluation-hero {
  padding: 82px 0;
  background: linear-gradient(135deg, #ffffff 0%, #eef7f5 100%);
}

.evaluation-hero h1 {
  max-width: 820px;
}

.evaluation-hero p {
  max-width: 680px;
  color: var(--brand-muted);
  font-size: 1.1rem;
}

.evaluation-hero-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: white;
}

.evaluation-hero-card img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: top center;
}

.evaluation-text-socle {
  display: grid;
  gap: 18px;
  width: 100%;
  padding: clamp(34px, 5.5vw, 68px);
  border-radius: var(--radius);
  background: var(--brand-deep);
  color: white;
  text-align: center;
  box-shadow: var(--shadow);
}

.evaluation-text-socle .kicker {
  display: block;
  color: var(--brand-water);
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.evaluation-text-socle p {
  max-width: 1180px;
  margin: 0 auto;
  color: white;
  font-size: clamp(1.22rem, 2.4vw, 2.15rem);
  font-weight: 760;
  line-height: 1.35;
}

.evaluation-title-block {
  max-width: 1040px;
}

.evaluation-title-block .kicker {
  display: block;
  color: var(--brand-deep);
  font-size: clamp(1.95rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: 0;
  text-transform: none;
}

.evaluation-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 4px solid var(--brand-gold);
  background: var(--brand-deep);
  color: white;
  box-shadow: 0 14px 38px rgba(16, 75, 91, 0.18);
}

.evaluation-card p {
  color: rgba(255, 255, 255, 0.82);
}

.educativa-platform {
  background: var(--brand-white);
}

.edu-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 620px;
  padding: 96px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 27, 45, 0.88) 0%, rgba(5, 35, 58, 0.72) 46%, rgba(5, 35, 58, 0.34) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.3)),
    url("assets/educativa-hero-corporativa-enhanced.jpg") center 45% / cover no-repeat;
  color: white;
}

.edu-hero-media,
.edu-hero-media::after {
  position: absolute;
  inset: 0;
}

.edu-hero-media {
  z-index: 0;
}

.edu-hero-media video,
.edu-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04) contrast(1.02);
}

.edu-hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 27, 45, 0.92) 0%, rgba(5, 35, 58, 0.74) 48%, rgba(5, 35, 58, 0.38) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.36));
}

.edu-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
  align-items: center;
  min-height: 430px;
}

.edu-hero .stack {
  max-width: 820px;
}

.edu-hero h1 {
  max-width: 820px;
  color: white;
}

.edu-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.edu-principles-section {
  margin-top: clamp(64px, 8vw, 120px);
  box-shadow: 0 -34px 0 var(--brand-white);
}

.edu-referents-section {
  padding-top: clamp(72px, 8vw, 118px);
}

.edu-referents-grid {
  display: grid;
  gap: 22px;
}

.edu-referent-card {
  display: grid;
  gap: 18px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 46px rgba(16, 75, 91, 0.1);
  overflow: hidden;
}

.edu-referent-photo {
  position: relative;
  width: min(86%, 450px);
  aspect-ratio: 4 / 3;
  margin: 26px auto 0;
  padding: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(173, 232, 244, 0.38)),
    var(--brand-white);
  overflow: hidden;
  border: 1px solid rgba(16, 75, 91, 0.12);
  border-radius: 999px 999px 34px 34px;
  box-shadow: 0 22px 48px rgba(16, 75, 91, 0.18);
}

.edu-referent-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 999px 999px 26px 26px;
}

.edu-referent-photo-circle {
  width: min(72%, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
}

.edu-referent-photo-circle img {
  border-radius: 50%;
  object-position: center 10%;
}

.edu-referent-body {
  display: grid;
  gap: 12px;
  padding: 0 22px;
}

.edu-referent-body:last-child {
  padding-bottom: 22px;
}

.edu-referent-body h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--brand-deep);
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 500;
}

.edu-profile-detail {
  display: grid;
  gap: 12px;
}

.edu-profile-detail summary {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--brand-water);
  color: white;
  font-weight: 900;
  line-height: 1;
  list-style: none;
  cursor: pointer;
  white-space: nowrap;
}

.edu-profile-detail summary::-webkit-details-marker {
  display: none;
}

.edu-profile-detail div {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 8px;
  background: var(--brand-water-soft);
  color: var(--brand-ink);
}

.edu-profile-detail h4 {
  margin: 0;
  color: var(--brand-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.16;
}

.edu-profile-detail p strong {
  display: block;
  margin-bottom: 3px;
  color: var(--brand-deep);
  font-weight: 900;
}

.edu-profile-detail .profile-stat strong {
  font-size: 1.45rem;
  line-height: 1;
}

.edu-referent-video {
  width: calc(100% - 44px);
  margin: 0 22px 22px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: var(--brand-deep);
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(16, 75, 91, 0.16);
}

.edu-referent-card > .edu-referent-video:first-child {
  margin-top: 22px;
}

.edu-image-placeholder,
.program-image-placeholder {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 255, 255, 0.48);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(121, 207, 197, 0.12)),
    rgba(16, 75, 91, 0.25);
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.edu-image-placeholder span,
.program-image-placeholder {
  font-weight: 900;
  letter-spacing: 0;
}

.edu-image-placeholder strong {
  margin-top: 8px;
  font-size: 1.1rem;
}

.edu-subnav {
  position: sticky;
  top: 88px;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 251, 250, 0.94);
  backdrop-filter: blur(14px);
}

.edu-subnav .container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

.edu-subnav a {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--brand-deep);
  font-size: 0.88rem;
  font-weight: 900;
}

.edu-area-grid,
.edu-mini-grid,
.edu-principles-grid,
.edu-library-grid,
.edu-program-grid {
  display: grid;
  gap: 16px;
}

.edu-feature-panel,
.edu-format-card,
.edu-mini-program,
.edu-path-grid article,
.edu-program-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 14px 38px rgba(16, 75, 91, 0.08);
}

.edu-feature-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-top: 6px solid var(--brand-gold);
}

.edu-feature-panel span,
.program-badges span {
  width: max-content;
  border-radius: 999px;
  background: var(--brand-water-soft);
  color: var(--brand-deep);
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.edu-feature-panel p,
.edu-format-card p,
.edu-mini-program p,
.edu-program-card p {
  color: var(--brand-muted);
}

.edu-format-orbit {
  align-items: stretch;
  gap: clamp(14px, 2vw, 24px);
}

.edu-format-card {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  min-height: clamp(170px, 20vw, 235px);
  padding: 34px 24px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 25% 18%, rgba(173, 232, 244, 0.34), transparent 34%),
    linear-gradient(145deg, #104B5B 0%, #0c6473 58%, #0f7f86 100%);
  color: white;
  text-align: center;
  box-shadow: 0 18px 40px rgba(16, 75, 91, 0.16);
}

.edu-format-card:nth-child(2) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.26), transparent 32%),
    linear-gradient(145deg, #0f5967 0%, #104B5B 58%, #0d737c 100%);
}

.edu-format-card:nth-child(3) {
  background:
    radial-gradient(circle at 22% 78%, rgba(173, 232, 244, 0.28), transparent 34%),
    linear-gradient(145deg, #0c6473 0%, #104B5B 62%, #0d6d78 100%);
}

.edu-format-card:nth-child(4) {
  background:
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(145deg, #104B5B 0%, #0b5f70 58%, #0e7d86 100%);
}

.edu-format-card::before,
.edu-format-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.edu-format-card::before {
  width: 86px;
  height: 86px;
  top: 18px;
  left: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.edu-format-card::after {
  width: 150px;
  height: 150px;
  right: -48px;
  bottom: -58px;
  border: 2px solid rgba(255, 255, 255, 0.18);
}

.edu-format-card h3 {
  color: white;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
}

.edu-format-card p {
  max-width: 22ch;
  color: white;
  font-size: 0.94rem;
}

.edu-format-card a {
  color: white;
  font-weight: 900;
}

.edu-mini-grid {
  grid-template-columns: 1fr;
}

.edu-mini-program {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 18px;
}

.program-mini-image {
  margin: 0;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #104B5B;
}

.program-mini-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-mini-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 35, 56, 0.84), rgba(0, 35, 56, 0.58) 44%, rgba(0, 35, 56, 0.1) 74%),
    linear-gradient(0deg, rgba(0, 18, 30, 0.56), rgba(0, 18, 30, 0) 55%);
  pointer-events: none;
}

.program-cover-title {
  position: absolute;
  left: 18px;
  right: 20%;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 8px;
  color: white;
  text-align: left;
  text-shadow: 0 2px 16px rgba(0, 22, 36, 0.58);
}

.program-cover-title span {
  width: max-content;
  max-width: 100%;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(121, 207, 197, 0.94);
  color: #00314f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.program-cover-title h3 {
  margin: 0;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3.2vw, 2.2rem);
  line-height: 1.04;
  max-width: 14ch;
  overflow-wrap: anywhere;
}

.program-mini-image .program-cover-title {
  left: 12px;
  right: 14px;
  bottom: 12px;
  gap: 6px;
}

.program-mini-image .program-cover-title h3 {
  font-size: clamp(1.05rem, 2.2vw, 1.42rem);
  max-width: 17ch;
}

.program-mini-image .program-cover-title span {
  padding: 4px 8px;
  font-size: 0.64rem;
}

.program-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.program-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
}

.program-meta div {
  display: grid;
  gap: 2px;
  padding: 10px;
  border-radius: 6px;
  background: #f2f7f6;
}

.program-meta dt {
  color: var(--brand-muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.program-meta dd {
  margin: 0;
  color: var(--brand-ink);
  font-weight: 800;
}

.program-meta.compact {
  grid-template-columns: 1fr 1fr;
}

.program-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin: 2px 0 0;
  padding: 12px 14px;
  border-radius: 6px;
  background: #f2f7f6;
  color: var(--brand-ink);
  font-size: 0.92rem;
  font-weight: 760;
}

.program-meta-line span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.program-meta-line strong {
  color: var(--brand-teal);
  font-weight: 900;
}

.edu-filter-bar {
  display: grid;
  gap: 12px;
  margin: 24px 0 12px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: white;
}

.edu-filter-bar label {
  display: grid;
  gap: 6px;
  color: var(--brand-deep);
  font-weight: 900;
}

.edu-filter-bar select {
  min-height: 44px;
}

.catalog-count {
  margin: 12px 0 18px;
  color: var(--brand-muted);
  font-weight: 900;
}

.edu-program-grid {
  grid-template-columns: 1fr;
}

.edu-program-card {
  overflow: hidden;
}

.edu-area-offer {
  scroll-margin-top: 112px;
}

.edu-area-offer .section-header {
  max-width: 960px;
}

.edu-program-card .program-image-placeholder {
  margin: 0;
  aspect-ratio: 16 / 9;
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, #104B5B, #79cfc5);
  overflow: hidden;
}

.edu-program-card .program-image-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.edu-program-card .program-image-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 35, 56, 0.84), rgba(0, 35, 56, 0.58) 44%, rgba(0, 35, 56, 0.1) 74%),
    linear-gradient(0deg, rgba(0, 18, 30, 0.56), rgba(0, 18, 30, 0) 55%);
  pointer-events: none;
}

.program-card-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.program-detail {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.program-detail summary {
  width: max-content;
  cursor: pointer;
  color: var(--brand-teal);
  font-weight: 900;
}

.program-detail-grid {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.program-detail-grid > div {
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 6px;
  background: #f8fbfa;
}

.program-detail-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--brand-muted);
}

.edu-principles-grid {
  grid-template-columns: 1fr;
}

.edu-principles-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(0, 38, 61, 0.42), rgba(0, 38, 61, 0.42)),
    #ADE8F4;
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: white;
}

.edu-principles-grid article h3 {
  color: white;
}

.edu-principles-grid p {
  color: white;
}

.edu-library-grid a {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: white;
  font-weight: 900;
}

.edu-path-grid article {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.journey-list {
  display: grid;
  gap: 12px;
  counter-reset: journey;
}

.journey-list li {
  counter-increment: journey;
  display: grid;
  gap: 5px;
  padding: 18px 18px 18px 62px;
  position: relative;
  background: var(--brand-deep);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: white;
  box-shadow: 0 14px 38px rgba(16, 75, 91, 0.16);
}

.journey-list li::before {
  content: counter(journey);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-gold);
  color: var(--brand-deep);
  font-weight: 900;
}

.journey-list span {
  color: rgba(255, 255, 255, 0.78);
}

.evaluation-form-band {
  background: #eef7f5;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.field-grid {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--brand-ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.check-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 700;
  color: var(--brand-muted);
}

.check-label input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(23, 38, 43, 0.2);
  border-radius: 6px;
  padding: 10px 12px;
  background: white;
  color: var(--brand-ink);
  font: inherit;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(121, 207, 197, 0.32);
  border-color: var(--brand-teal);
}

.form-note {
  color: var(--brand-muted);
  font-size: 0.88rem;
}

.congress-page {
  --congress-teal: #0b7f83;
  --congress-deep: #0d5363;
  --congress-green: #4f9324;
  --congress-orange: #f47a0b;
  --congress-soft: #f7fbfb;
  padding-bottom: 54px;
  background: var(--congress-soft);
  color: var(--brand-ink);
}

.congress-subnav {
  position: sticky;
  top: 88px;
  z-index: 30;
  border-bottom: 1px solid rgba(13, 83, 99, 0.12);
  background: rgba(247, 251, 251, 0.94);
  backdrop-filter: blur(14px);
}

.congress-subnav .container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

.congress-subnav a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: white;
  color: var(--congress-deep);
  border: 1px solid rgba(13, 83, 99, 0.12);
  font-size: 0.84rem;
  font-weight: 900;
}

.congress-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 96px) 0 clamp(44px, 6vw, 82px);
  background:
    radial-gradient(circle at 75% 12%, rgba(244, 122, 11, 0.18), transparent 30%),
    radial-gradient(circle at 8% 18%, rgba(121, 207, 197, 0.3), transparent 30%),
    linear-gradient(135deg, #073744 0%, #0d5363 48%, #0b7f83 100%);
  color: white;
}

.congress-hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -60px;
  height: 150px;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(255, 255, 255, 0.48), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  border-radius: 50% 50% 0 0;
  opacity: 0.78;
}

.congress-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

.congress-hero .stack {
  max-width: min(100%, 760px);
}

.congress-eyebrow {
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.94);
  font-weight: 900;
}

.congress-hero h1 {
  max-width: min(100%, 720px);
  color: white;
  font-size: clamp(2.45rem, 3.7vw, 3.75rem);
  line-height: 0.94;
}

.congress-hero-title {
  display: grid;
  gap: 0.1em;
}

.congress-hero-title span {
  display: block;
  white-space: nowrap;
}

.congress-hero-title span:last-child {
  font-size: 0.78em;
  line-height: 1;
}

.congress-slogan {
  width: max-content;
  max-width: 100%;
  padding: 10px 14px;
  border-left: 5px solid var(--congress-orange);
  background: rgba(255, 255, 255, 0.12);
  color: white !important;
  font-size: clamp(1.35rem, 3vw, 2.35rem) !important;
  font-weight: 900;
  line-height: 1.05;
}

.congress-hero h2 {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.92);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 900;
}

.congress-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.congress-button-free {
  background: var(--congress-teal);
  color: white;
  box-shadow: 0 12px 24px rgba(11, 127, 131, 0.22);
}

.congress-button-paid {
  background: var(--congress-orange);
  color: white;
  box-shadow: 0 12px 24px rgba(244, 122, 11, 0.24);
}

.congress-header-cta {
  min-height: 40px;
  padding: 9px 12px;
  font-size: 0.84rem;
  white-space: nowrap;
}

.congress-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.congress-indicators span,
.congress-participants span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: white;
  font-size: 0.86rem;
  font-weight: 800;
}

.congress-visual {
  position: relative;
  min-height: 420px;
  border-radius: 44px 150px 44px 150px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.congress-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.congress-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 55, 68, 0.52), rgba(7, 55, 68, 0.05)),
    radial-gradient(circle at 50% 50%, rgba(121, 207, 197, 0.2), transparent 34%);
}

.congress-identity-visual {
  display: grid;
  place-items: center;
  min-height: clamp(460px, 58vw, 620px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(173, 232, 244, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.congress-identity-visual img {
  object-fit: contain;
  padding: clamp(10px, 2vw, 18px);
}

.congress-identity-visual::after {
  display: none;
}

.congress-hero-stage {
  position: relative;
  width: 100%;
  min-height: clamp(460px, 58vw, 620px);
  overflow: hidden;
  border-radius: inherit;
  background:
    radial-gradient(circle at 74% 24%, rgba(244, 122, 11, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(7, 55, 68, 0.92), rgba(11, 127, 131, 0.76));
}

.congress-stage-building {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: 57% center;
  filter: saturate(0.95) contrast(1.05);
  opacity: 0.58;
}

.congress-stage-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(7, 55, 68, 0.88) 0%, rgba(13, 83, 99, 0.48) 45%, rgba(255, 255, 255, 0.12) 100%),
    radial-gradient(ellipse at 50% 50%, rgba(173, 232, 244, 0.22), transparent 42%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.32), transparent 40%);
}

.congress-stage-brand {
  position: absolute;
  z-index: 3;
  left: clamp(16px, 4vw, 30px);
  right: clamp(16px, 4vw, 30px);
  top: clamp(16px, 4vw, 28px);
  display: grid;
  grid-template-columns: minmax(130px, 1fr) auto minmax(70px, 0.38fr);
  gap: clamp(8px, 1.4vw, 14px);
  align-items: center;
  padding: clamp(10px, 2vw, 16px) clamp(14px, 2.5vw, 22px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(7, 55, 68, 0.18);
  backdrop-filter: blur(14px);
}

.congress-stage-brand span {
  color: var(--congress-deep);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.congress-stage-brand img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0 !important;
  max-height: 58px;
  padding: 0 !important;
  object-fit: contain !important;
}

.congress-stage-redianer {
  justify-self: end;
  max-width: 96px;
  border-radius: 50%;
}

.congress-stage-core {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 52%;
  width: min(68%, 340px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  padding: clamp(8px, 1.6vw, 14px);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(173, 232, 244, 0.72));
  box-shadow:
    0 0 0 18px rgba(255, 255, 255, 0.12),
    0 0 0 46px rgba(173, 232, 244, 0.1),
    0 34px 80px rgba(7, 55, 68, 0.36);
}

.congress-stage-core::before,
.congress-stage-core::after {
  content: "";
  position: absolute;
  inset: -30px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 46% 54% 52% 48%;
  transform: rotate(-18deg);
}

.congress-stage-core::after {
  inset: -50px;
  border-color: rgba(244, 122, 11, 0.34);
  transform: rotate(22deg);
}

.congress-stage-core img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0 !important;
  padding: 0 !important;
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  object-fit: cover !important;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
}

.congress-stage-caption {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 4vw, 32px);
  right: auto;
  bottom: clamp(18px, 4vw, 32px);
  display: inline-grid;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(7, 55, 68, 0.7);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(7, 55, 68, 0.18);
  backdrop-filter: blur(10px);
}

.congress-stage-caption span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.congress-orbit {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%);
  display: grid;
  place-content: center;
  gap: 5px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--congress-deep);
  border: 10px solid rgba(121, 207, 197, 0.46);
  box-shadow: 0 0 0 26px rgba(255, 255, 255, 0.14), 0 0 0 54px rgba(121, 207, 197, 0.12);
}

.congress-orbit strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.congress-choice-grid,
.congress-days,
.congress-activity-grid,
.congress-speaker-grid,
.card-grid.two {
  display: grid;
  gap: 18px;
}

.congress-participation-title {
  color: var(--congress-deep);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.congress-jornadas-title {
  white-space: nowrap;
  font-size: clamp(0.78rem, 3.7vw, 2.75rem);
  line-height: 1.05;
}

.congress-conference-list {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.congress-conference-card {
  display: grid;
  grid-template-columns: minmax(170px, 260px) 1fr;
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(16, 75, 91, 0.14);
  border-radius: 8px;
  background: linear-gradient(100deg, #ffffff 0%, rgba(173, 232, 244, 0.24) 100%);
  box-shadow: 0 24px 60px rgba(16, 75, 91, 0.1);
}

.congress-conference-card:nth-child(even) {
  border-radius: 8px;
  background: linear-gradient(100deg, #ffffff 0%, rgba(173, 232, 244, 0.24) 100%);
}

.congress-conference-speaker {
  width: min(100%, 270px);
  align-self: start;
  justify-self: center;
  display: grid;
  gap: 12px;
  justify-items: center;
  padding-top: clamp(44px, 3.1vw, 58px);
  text-align: center;
}

.congress-speaker-photo-frame {
  width: min(100%, 210px);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, var(--congress-deep), var(--brand-water), var(--congress-orange));
  box-shadow: 0 22px 44px rgba(16, 75, 91, 0.22);
}

.congress-speaker-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 5px solid #ffffff;
}

.congress-speaker-photo-frame img.speaker-photo-contain {
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 6px;
}

.congress-conference-speaker > strong {
  color: var(--congress-deep);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.15;
}

.congress-speaker-meta {
  display: grid;
  gap: 8px;
  justify-items: center;
  width: 100%;
}

.congress-speaker-meta p {
  margin: 0;
  color: var(--brand-muted);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.38;
}

.country-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(16, 75, 91, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--congress-deep);
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(16, 75, 91, 0.08);
}

.country-pill span {
  font-size: 1.25rem;
  line-height: 1;
}

.country-flag {
  display: block;
  width: 64px;
  height: 42px;
  border: 1px solid rgba(16, 75, 91, 0.18);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(16, 75, 91, 0.12);
}

.flag-france {
  background: linear-gradient(90deg, #002395 0 33.33%, #ffffff 33.33% 66.66%, #ed2939 66.66% 100%);
}

.flag-cuba {
  position: relative;
  background: linear-gradient(180deg, #002a8f 0 20%, #ffffff 20% 40%, #002a8f 40% 60%, #ffffff 60% 80%, #002a8f 80% 100%);
}

.flag-cuba::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 48%;
  background: #cf142b;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.flag-cuba::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #ffffff;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  transform: translateY(-50%);
}

.flag-argentina {
  position: relative;
  background: linear-gradient(180deg, #74acdf 0 33.33%, #ffffff 33.33% 66.66%, #74acdf 66.66% 100%);
}

.flag-argentina::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #f6b40e;
  box-shadow: 0 0 0 2px rgba(246, 180, 14, 0.28);
  transform: translate(-50%, -50%);
}

.flag-usa {
  position: relative;
  background: repeating-linear-gradient(180deg, #b22234 0 7.69%, #ffffff 7.69% 15.38%);
}

.flag-usa::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 42%;
  height: 54%;
  background:
    radial-gradient(circle at 18% 20%, #ffffff 0 1px, transparent 1.5px),
    radial-gradient(circle at 42% 36%, #ffffff 0 1px, transparent 1.5px),
    radial-gradient(circle at 66% 20%, #ffffff 0 1px, transparent 1.5px),
    radial-gradient(circle at 82% 40%, #ffffff 0 1px, transparent 1.5px),
    #3c3b6e;
}

.flag-mexico {
  position: relative;
  background: linear-gradient(90deg, #006847 0 33.33%, #ffffff 33.33% 66.66%, #ce1126 66.66% 100%);
}

.flag-mexico::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #b38b2e 0 38%, #006847 39% 58%, transparent 59%);
  transform: translate(-50%, -50%);
}

.flag-spain {
  position: relative;
  background: linear-gradient(180deg, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
}

.flag-spain::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 10px;
  height: 14px;
  border-radius: 2px;
  background: linear-gradient(180deg, #c60b1e 0 38%, #ffffff 38% 62%, #c60b1e 62% 100%);
  border: 1px solid rgba(120, 64, 0, 0.28);
  transform: translateY(-50%);
}

.congress-conference-content {
  display: grid;
  gap: 15px;
}

.congress-conference-content > span {
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--congress-deep);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.congress-conference-content h3 {
  margin: 0;
  color: var(--congress-deep);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.congress-speaker-profile {
  display: grid;
  gap: 6px;
  max-width: 820px;
}

.congress-speaker-profile strong {
  color: var(--brand-ink);
  font-size: 1.05rem;
}

.congress-speaker-profile p {
  margin: 0;
  color: var(--brand-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.congress-speaker-video {
  width: min(100%, 680px);
  overflow: hidden;
  border-radius: 24px;
  background: #071f2a;
  box-shadow: 0 18px 42px rgba(16, 75, 91, 0.16);
}

.congress-speaker-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.congress-speaker-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.congress-speaker-video-placeholder {
  min-height: clamp(190px, 24vw, 320px);
  display: grid;
  place-items: center;
  padding: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 22%, rgba(173, 232, 244, 0.32), transparent 34%),
    linear-gradient(135deg, rgba(16, 75, 91, 0.98), rgba(0, 119, 182, 0.82));
}

.congress-speaker-video-placeholder div {
  display: grid;
  gap: 8px;
  text-align: center;
}

.congress-speaker-video-placeholder span {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.congress-speaker-video-placeholder strong {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1;
}

@media (max-width: 760px) {
  .congress-hero h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 7.4vw, 2.45rem);
    line-height: 0.98;
  }

  .congress-hero-title span:last-child {
    font-size: 0.67em;
  }

  .congress-visual,
  .congress-identity-visual,
  .congress-hero-stage {
    min-height: clamp(480px, 118vw, 620px);
    border-radius: 34px 92px 34px 92px;
  }

  .congress-stage-brand {
    grid-template-columns: 1fr auto;
    border-radius: 28px;
  }

  .congress-stage-brand span {
    display: none;
  }

  .congress-stage-redianer {
    max-width: 66px;
  }

  .congress-stage-core {
    top: 53%;
    width: min(72%, 280px);
  }

  .congress-stage-core::before {
    inset: -18px;
  }

  .congress-stage-core::after {
    inset: -32px;
  }

  .congress-stage-caption {
    border-radius: 24px 58px 24px 58px;
  }

  .congress-jornadas-title {
    white-space: normal;
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .congress-conference-card,
  .congress-conference-card:nth-child(even) {
    grid-template-columns: 1fr;
    border-radius: 34px;
    text-align: center;
  }

  .congress-conference-content {
    justify-items: center;
  }

  .congress-conference-speaker {
    padding-top: 0;
  }

  .congress-speaker-profile {
    text-align: center;
  }
}

.congress-new-paradigm .container {
  width: min(100% - 32px, 1180px);
}

.congress-new-paradigm-header {
  max-width: none;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.congress-single-line-title {
  white-space: nowrap;
  font-size: clamp(1.05rem, 3.1vw, 2.55rem);
  line-height: 1.05;
}

.congress-paradigm-reading {
  display: grid;
  gap: 14px;
}

.congress-paradigm-reading article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 16px;
  padding: clamp(18px, 2.6vw, 26px);
  border: 1px solid rgba(16, 75, 91, 0.14);
  border-radius: 999px 28px 28px 999px;
  background: linear-gradient(90deg, rgba(16, 75, 91, 0.09), rgba(255, 255, 255, 0.94));
  box-shadow: 0 18px 42px rgba(16, 75, 91, 0.08);
}

.congress-paradigm-reading article:nth-child(even) {
  border-radius: 28px 999px 999px 28px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(173, 232, 244, 0.46));
}

.congress-paradigm-reading span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--congress-deep);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
}

.congress-paradigm-reading p {
  margin: 0;
  color: var(--brand-ink);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.65;
}

@media (max-width: 699px) {
  .congress-single-line-title {
    white-space: normal;
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .congress-paradigm-reading article,
  .congress-paradigm-reading article:nth-child(even) {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }
}

.congress-choice,
.congress-axis,
.congress-activity,
.congress-card-free,
.congress-workshop,
.congress-venue,
.congress-speaker-grid article,
.congress-form,
.faq-list details {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}

.congress-choice,
.congress-activity,
.congress-card-free,
.congress-workshop,
.congress-venue,
.congress-speaker-grid article {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.congress-choice {
  grid-template-rows: auto auto 1fr auto;
  padding: clamp(22px, 4vw, 34px);
  border-top: 6px solid var(--congress-teal);
}

.congress-venue-stack {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.congress-venue-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(280px, 1fr) minmax(240px, 0.95fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(16, 75, 91, 0.14);
  border-radius: 44px 160px 160px 44px;
  background: linear-gradient(100deg, #ffffff 0%, rgba(173, 232, 244, 0.28) 100%);
  box-shadow: 0 24px 60px rgba(16, 75, 91, 0.1);
  overflow: hidden;
}

.congress-venue-row:nth-child(even) {
  border-radius: 160px 44px 44px 160px;
  background: linear-gradient(100deg, rgba(173, 232, 244, 0.34) 0%, #ffffff 100%);
}

.congress-venue-photo {
  margin: 0;
  min-height: 260px;
  border-radius: 30px 120px 120px 30px;
  overflow: hidden;
  background: var(--congress-deep);
}

.congress-venue-row:nth-child(even) .congress-venue-photo {
  border-radius: 120px 30px 30px 120px;
}

.congress-venue-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
}

.congress-venue-copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.congress-venue-copy span {
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--congress-deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.congress-venue-copy h3 {
  margin: 0;
  color: var(--congress-deep);
  font-size: clamp(1.75rem, 2.8vw, 2.7rem);
  line-height: 1.05;
}

.congress-venue-copy p,
.congress-venue-copy address {
  margin: 0;
  color: var(--brand-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.congress-venue-copy p a {
  color: var(--congress-deep);
  font-weight: 900;
  text-decoration-color: rgba(16, 75, 91, 0.35);
  text-underline-offset: 3px;
}

.congress-venue-copy address {
  padding-left: 14px;
  border-left: 4px solid var(--congress-orange);
  font-style: normal;
  color: var(--brand-ink);
}

.congress-venue-copy .button {
  width: fit-content;
}

.congress-venue-map {
  min-height: 260px;
  border: 6px solid #ffffff;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(16, 75, 91, 0.1);
  box-shadow: 0 18px 42px rgba(16, 75, 91, 0.12);
}

.congress-venue-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}

@media (max-width: 980px) {
  .congress-venue-row,
  .congress-venue-row:nth-child(even) {
    grid-template-columns: 1fr;
    border-radius: 34px;
  }

  .congress-venue-photo,
  .congress-venue-row:nth-child(even) .congress-venue-photo {
    border-radius: 28px;
  }
}

@media (max-width: 640px) {
  .congress-venue-row {
    padding: 16px;
  }

  .congress-venue-copy .button {
    width: 100%;
  }
}

.congress-choice.paid {
  border-top-color: var(--congress-orange);
}

.congress-choice span,
.congress-activity span,
.congress-workshop span,
.congress-days span {
  color: var(--congress-teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.congress-choice.paid span,
.congress-activity.paid span,
.congress-workshop span {
  color: var(--congress-orange);
}

.congress-choice .button,
.congress-activity .button,
.congress-card-free .button,
.congress-workshop .button {
  align-self: end;
}

.congress-choice ul,
.congress-axis ul {
  display: grid;
  gap: 8px;
  list-style: disc;
  padding-left: 20px;
}

.congress-identity-band {
  margin: clamp(28px, 4.5vw, 72px) 0 clamp(44px, 7vw, 96px);
  padding: clamp(30px, 5vw, 54px) 0;
  background: var(--congress-deep);
  color: white;
}

.congress-identity-band p {
  max-width: 1180px;
  margin: 0 auto;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  text-align: center;
}

@media (max-width: 640px) {
  .congress-identity-band {
    margin: 28px 0 44px;
  }
}

.congress-paradigm-section {
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: clamp(72px, 8vw, 120px);
}

.congress-paradigm-section .container {
  width: min(100% - 32px, 1420px);
}

.congress-paradigm-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  box-shadow: 0 24px 58px rgba(13, 83, 99, 0.14);
}

.congress-paradigm-image img {
  display: block;
  width: 100%;
  height: auto;
}

.congress-axis {
  padding: 22px;
  color: white;
  border: 0;
}

.congress-axis.teal {
  background: var(--congress-teal);
}

.congress-axis.green {
  background: var(--congress-green);
}

.congress-axis.orange {
  background: var(--congress-orange);
}

.congress-axis h3 {
  color: white;
  font-size: 1.35rem;
}

.congress-days article {
  padding: 20px;
  border-left: 5px solid var(--congress-teal);
  border-radius: 8px;
  background: #f7fbfb;
}

.congress-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 20px 0 12px;
}

.congress-filters button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(13, 83, 99, 0.16);
  border-radius: 999px;
  background: white;
  color: var(--congress-deep);
  font-weight: 900;
  cursor: pointer;
}

.congress-filters button.active {
  background: var(--congress-teal);
  color: white;
}

.congress-activity[hidden] {
  display: none;
}

.congress-activity-grid {
  align-items: stretch;
}

.congress-card-free {
  border-top: 5px solid var(--congress-teal);
}

.congress-card-free.waitlist {
  border-top-color: var(--brand-muted);
}

.congress-workshop {
  border-top: 5px solid var(--congress-orange);
}

.congress-speaker-grid article img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.congress-section-title-xl {
  color: inherit;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.96;
}

.congress-section-subtitle {
  color: inherit;
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
}

.congress-participants {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.congress-participants span {
  background: var(--congress-deep);
}

.congress-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 30px);
}

.congress-forms .container {
  align-items: stretch;
}

.congress-forms .section-header {
  align-content: start;
  margin-bottom: 4px;
}

.congress-form label {
  display: grid;
  gap: 6px;
  color: var(--congress-deep);
  font-weight: 900;
}

.congress-form input,
.congress-form select,
.congress-form textarea {
  width: 100%;
  border: 1px solid rgba(13, 83, 99, 0.18);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--brand-ink);
  font: inherit;
  background: #f7fbfb;
}

.congress-form textarea {
  min-height: 92px;
  resize: vertical;
}

.check-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--brand-muted) !important;
  font-weight: 700 !important;
}

.check-row input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.congress-summary,
.form-success {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 8px;
  background: #fff7ef;
  color: var(--congress-deep);
  border: 1px solid rgba(244, 122, 11, 0.22);
}

.form-success {
  background: #eef9f8;
  border-color: rgba(11, 127, 131, 0.2);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 16px 18px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--congress-deep);
  font-weight: 900;
}

.congress-closing {
  margin-bottom: clamp(30px, 5vw, 62px);
  padding: clamp(28px, 4.5vw, 54px) 0;
  color: white;
  background: var(--congress-deep);
}

.congress-closing .container {
  display: grid;
  gap: 0;
  max-width: 980px;
  text-align: center;
}

.congress-closing h2 {
  margin: 0;
  color: white;
  font-size: clamp(1.85rem, 4.2vw, 3.35rem);
  line-height: 1.05;
}

.congress-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 -16px 30px rgba(0, 0, 0, 0.16);
}

.congress-mobile-cta a {
  min-height: 54px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  text-align: center;
  background: var(--congress-teal);
}

.congress-mobile-cta a + a {
  background: var(--congress-orange);
}

.congress-footer-logos {
  display: grid;
  gap: 10px;
}

.footer-network-logo {
  width: 180px;
  max-height: 72px;
  object-fit: contain;
  padding: 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
}

.congress-wordmark {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 900;
}

.site-footer {
  background: #0f242a;
  color: white;
  padding: 46px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-logo {
  width: 310px;
  max-width: 100%;
  height: auto;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links strong {
  margin-bottom: 4px;
  color: white;
}

.footer-social {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.social-link,
.footer-contact-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.social-icon img {
  width: 18px;
  height: 18px;
}

.social-text {
  display: grid;
  gap: 1px;
}

.social-text small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  line-height: 1.2;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.page-intro {
  padding: 38px 0 0;
  background: white;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--brand-muted);
  font-size: 0.86rem;
}

.breadcrumb a {
  color: var(--brand-teal);
  font-weight: 800;
}

.accent-health {
  color: #007f8c;
}

.accent-edu {
  color: #c5952d;
}

.accent-community {
  color: #3f7a55;
}

.reflejarte-header {
  max-width: 980px;
}

.reflejarte-title {
  position: relative;
  display: inline-block;
  width: fit-content;
  color: transparent;
  background: linear-gradient(90deg, #104B5B 0%, #104B5B 48%, #f47a0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Gabriola, "Lucida Calligraphy", "Segoe Script", cursive;
  font-size: clamp(4.05rem, 10vw, 7.65rem);
  font-weight: 400;
  line-height: 0.82;
  text-transform: none;
}

.reflejarte-title::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -0.05em;
  height: 0.06em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(244, 122, 11, 0.08), #f47a0b 48%, rgba(244, 122, 11, 0.12));
  transform: rotate(-1.4deg);
}

.accent-org {
  color: #365866;
}

@media (min-width: 700px) {
  .single-line-title {
    white-space: nowrap;
  }

  .congress-page {
    padding-bottom: 0;
  }

  .congress-mobile-cta {
    display: none;
  }

  .congress-choice-grid,
  .card-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .congress-days,
  .congress-speaker-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .congress-activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .congress-forms .section-header {
    min-height: 178px;
  }

  .hero {
    min-height: 620px;
  }

  .hero.short {
    min-height: 560px;
  }

  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .gateway {
    min-height: 96px;
    padding: 16px;
  }

  .gateway strong {
    font-size: 1rem;
  }

  .gateway span {
    display: block;
    font-size: 0.9rem;
  }

  .home-gateways .gateway {
    min-height: 124px;
    padding: 20px;
  }

  .card-grid.two,
  .metric-row,
  .field-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .edu-area-grid,
  .edu-mini-grid,
  .edu-principles-grid,
  .edu-library-grid,
  .edu-program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .edu-filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
  }

  .card-grid.three,
  .card-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .health-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band {
    grid-template-columns: 1fr auto;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  }

  .congress-hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.62fr);
  }

  .health-plan-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  }

  .health-plan-content,
  .health-plan-video {
    min-height: 560px;
  }

  .health-plan-content {
    grid-template-rows: auto 1fr;
  }

  .health-plan-cards {
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .health-plan-grid .full-width-socle {
    grid-column: 1 / -1;
  }

  .health-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .edu-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  }

  .two-col {
    grid-template-columns: 1fr 1fr;
  }

  .two-col.wide-left {
    grid-template-columns: 1.14fr 0.86fr;
  }

  .two-col.wide-right {
    grid-template-columns: 0.86fr 1.14fr;
  }

  .community-platform .foundation-pair {
    align-items: stretch;
  }

  .community-platform .foundation-pair > .stack {
    align-content: start;
    grid-template-rows: auto auto 1fr auto;
    height: 100%;
  }

  .community-platform .foundation-pair .section-header h2 {
    display: flex;
    align-items: flex-start;
    min-height: 2.7em;
  }

  .community-platform .foundation-pair .button-row {
    align-self: end;
  }

  .card-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid.four {
    grid-template-columns: repeat(4, 1fr);
  }

  .edu-mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .edu-program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .edu-filter-bar {
    grid-template-columns: repeat(6, minmax(0, 1fr)) auto;
  }

  .program-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-strip {
    grid-template-columns: repeat(5, 1fr);
  }

  .method-head {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  }

  .full-width-socle {
    grid-column: 1 / -1;
  }

  .final-identity h2 {
    white-space: nowrap;
    font-size: clamp(1.85rem, 2.35vw, 2.35rem);
  }

  .story-socle h2 {
    font-size: clamp(2.05rem, 3vw, 2.8rem);
  }

  .vetas-graphic {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.32fr);
    align-items: stretch;
  }

  .vetas-flow {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .metric-row.five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
  }
}

@media (min-width: 1180px) {
  .desktop-nav,
  .header-actions {
    display: flex;
  }

  .desktop-nav a {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 0.88rem;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  h1 {
    font-size: 5rem;
  }

  .health-team-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .institutional-statement h2 {
    font-size: 2.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* AlunCo-Play */
.aplay-shell {
  background:
    radial-gradient(circle at 12% 0%, rgba(121, 207, 197, 0.28), transparent 32rem),
    linear-gradient(180deg, #061e27 0%, #0f242a 42rem, var(--brand-white) 42rem);
}

.aplay-hero {
  position: relative;
  min-height: clamp(560px, 86vh, 780px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: #061e27;
}

.aplay-hero-media,
.aplay-hero-media::after,
.aplay-hero-water {
  position: absolute;
  inset: 0;
}

.aplay-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.02);
}

.aplay-hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 18, 25, 0.9) 0%, rgba(2, 18, 25, 0.62) 42%, rgba(2, 18, 25, 0.16) 100%),
    linear-gradient(180deg, rgba(2, 18, 25, 0.18) 0%, rgba(2, 18, 25, 0.86) 100%);
}

.aplay-hero-water {
  top: auto;
  height: 34%;
  opacity: 0.78;
  background:
    repeating-linear-gradient(178deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
    radial-gradient(ellipse at 35% 100%, rgba(121, 207, 197, 0.42), transparent 50%),
    linear-gradient(180deg, transparent, rgba(16, 75, 91, 0.28));
  mix-blend-mode: screen;
}

.aplay-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: 760px;
  padding-top: 130px;
  padding-bottom: clamp(56px, 10vh, 96px);
}

.aplay-hero-content h1 {
  max-width: 760px;
  color: white;
  font-size: clamp(3rem, 8vw, 6.6rem);
}

.aplay-hero-content p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
}

.aplay-kicker {
  width: fit-content;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: white;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aplay-claim {
  color: var(--brand-water) !important;
  font-weight: 850;
}

.aplay-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.aplay-hero-meta span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
  font-weight: 800;
}

.aplay-sound,
.aplay-save,
.aplay-mini-button {
  min-height: 42px;
}

.aplay-sound,
.aplay-save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 10px 14px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 850;
  cursor: pointer;
}

.aplay-save {
  width: 100%;
  border-color: rgba(16, 75, 91, 0.18);
  color: var(--brand-teal);
  background: rgba(121, 207, 197, 0.16);
}

.aplay-save.saved {
  color: white;
  border-color: var(--brand-water);
  background: var(--brand-water);
}

.aplay-nav {
  position: sticky;
  top: 78px;
  z-index: 8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 30, 39, 0.92);
  backdrop-filter: blur(16px);
}

.aplay-nav .container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  scrollbar-width: none;
}

.aplay-nav .container::-webkit-scrollbar {
  display: none;
}

.aplay-nav a {
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
  font-size: 0.88rem;
}

.aplay-nav a:hover,
.aplay-nav a.active {
  color: #061e27;
  background: var(--brand-water);
}

.aplay-intro {
  background: #061e27;
  color: white;
}

.aplay-intro .section-header p {
  color: rgba(255, 255, 255, 0.78);
}

.aplay-experience {
  display: grid;
  gap: 10px;
}

.aplay-experience button {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 13px 16px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.aplay-experience button.active,
.aplay-experience button:hover {
  color: #061e27;
  background: var(--brand-water);
}

.aplay-universe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 330px));
  justify-content: center;
  align-items: stretch;
  gap: 22px;
}

.aplay-universes-header {
  max-width: min(100%, 1120px);
}

.aplay-universes-title {
  max-width: none;
  text-align: center;
}

.aplay-universe-card {
  position: relative;
  min-height: 188px;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 8px;
  overflow: hidden;
  border-radius: 999px 999px 999px 74px;
  padding: 34px 30px 30px;
  color: white;
  background: #061e27;
  text-align: center;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.aplay-universe-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.aplay-universe-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 18, 25, 0.12), rgba(2, 18, 25, 0.9));
}

.aplay-universe-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
  z-index: 1;
}

.aplay-universe-card span,
.aplay-universe-card strong {
  position: relative;
  z-index: 2;
}

.aplay-universe-card span {
  color: var(--brand-water);
  font-size: clamp(1.55rem, 3.2vw, 2.2rem);
  font-family: Georgia, "Times New Roman", serif;
}

.aplay-universe-card strong {
  max-width: 25ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}

.aplay-row {
  padding: 32px max(18px, calc((100vw - var(--max)) / 2)) 12px;
  color: white;
}

.aplay-row-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.aplay-row-head h2 {
  color: white;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.aplay-row-head a {
  color: var(--brand-water);
  font-weight: 900;
}

.aplay-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(258px, 31vw);
  gap: 16px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.aplay-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  scroll-snap-align: start;
}

.aplay-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #061e27;
}

.aplay-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.aplay-card:hover .aplay-card-media img {
  transform: scale(1.045);
}

.aplay-card-media span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  color: white;
  background: rgba(6, 30, 39, 0.82);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.aplay-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.aplay-card-body h3 {
  color: var(--brand-ink);
  font-size: 1.08rem;
}

.aplay-card-body p {
  color: var(--brand-muted);
  font-size: 0.91rem;
}

.aplay-card-meta,
.aplay-badges,
.aplay-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.aplay-card-meta span,
.aplay-badges span {
  color: var(--brand-teal);
  font-size: 0.76rem;
  font-weight: 900;
}

.aplay-badges span {
  padding: 5px 8px;
  border-radius: 999px;
  color: white;
  background: var(--brand-deep);
}

.aplay-card-actions {
  display: grid;
  grid-template-columns: 1fr;
}

.aplay-mini-button {
  width: 100%;
  background: var(--brand-water) !important;
  border-color: var(--brand-water) !important;
  color: white !important;
}

.aplay-recommended-grid {
  display: grid;
  gap: 16px;
}

.aplay-empty {
  display: grid;
  gap: 5px;
  padding: 22px;
  border: 1px solid rgba(121, 207, 197, 0.34);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.aplay-filter-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(16, 75, 91, 0.16);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.aplay-filter-panel input,
.aplay-filter-panel select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--brand-ink);
  background: white;
  font: inherit;
}

.aplay-results-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.aplay-results-grid .aplay-card {
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.aplay-detail-wrap {
  background:
    radial-gradient(circle at 88% 0%, rgba(121, 207, 197, 0.2), transparent 28rem),
    linear-gradient(180deg, #061e27 0%, #0f242a 44rem, var(--brand-white) 44rem);
}

.aplay-detail-hero {
  padding: clamp(120px, 18vw, 180px) 0 48px;
  color: white;
}

.aplay-detail-grid {
  display: grid;
  gap: 26px;
  align-items: start;
}

.aplay-player {
  overflow: hidden;
  border-radius: 8px;
  background: #061e27;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.aplay-player video,
.aplay-player img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.aplay-player.vertical {
  max-width: min(460px, 100%);
  margin: 0 auto;
}

.aplay-player.vertical video,
.aplay-player.vertical img {
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #061e27;
}

.aplay-detail-copy {
  display: grid;
  gap: 16px;
}

.aplay-detail-copy h1 {
  color: white;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.aplay-detail-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.aplay-meta-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.aplay-meta-panel span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.aplay-meta-panel strong {
  color: white;
}

.aplay-photo-story {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.aplay-photo-story figure {
  display: none;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.aplay-photo-story figure.active {
  display: grid;
}

.aplay-photo-story img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.aplay-photo-story figcaption {
  padding: 14px 16px;
  color: var(--brand-ink);
  font-weight: 800;
}

.aplay-story-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.aplay-story-controls button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: white;
  background: var(--brand-water);
  font: inherit;
  font-weight: 900;
}

.aplay-story-controls progress {
  width: 100%;
  height: 8px;
  accent-color: var(--brand-water);
}

.aplay-transcript {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 22px;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

@media (min-width: 720px) {
  .edu-referents-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aplay-experience {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .aplay-universe-grid {
    grid-template-columns: repeat(2, minmax(280px, 330px));
  }

  .aplay-card-actions {
    grid-template-columns: 1fr 1fr;
  }

  .aplay-recommended-grid,
  .aplay-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aplay-filter-panel {
    grid-template-columns: 1.3fr repeat(5, minmax(130px, 1fr)) auto;
    align-items: end;
  }
}

@media (min-width: 720px) and (max-width: 979px) {
  .aplay-universe-grid .aplay-universe-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 330px);
  }
}

@media (min-width: 980px) {
  .aplay-universe-grid {
    grid-template-columns: repeat(3, minmax(280px, 330px));
  }

  .aplay-universes-title {
    white-space: nowrap;
  }

  .aplay-detail-grid {
    grid-template-columns: minmax(0, 1.36fr) minmax(320px, 0.64fr);
  }

  .aplay-recommended-grid,
  .aplay-results-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  .edu-hero {
    display: block;
    min-height: 0;
    padding: 76px 0 0;
    background: var(--brand-deep);
  }

  .edu-hero-media {
    position: relative;
    inset: auto;
    height: clamp(246px, 62vw, 360px);
  }

  .edu-hero-media video,
  .edu-hero-media img {
    object-position: center center;
  }

  .edu-hero-media::after {
    background:
      linear-gradient(180deg, rgba(16, 75, 91, 0.08) 0%, rgba(16, 75, 91, 0.38) 100%);
  }

  .edu-hero-grid {
    display: block;
    min-height: 0;
    padding-top: 24px;
    padding-bottom: 30px;
    background:
      linear-gradient(180deg, rgba(16, 75, 91, 0.94) 0%, rgba(16, 75, 91, 0.99) 100%);
  }

  .edu-hero .stack {
    max-width: none;
  }

  .edu-hero h1 {
    font-size: clamp(2.15rem, 9vw, 3rem);
    line-height: 1.04;
  }

  .edu-hero p {
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .edu-hero .button-row {
    margin-top: 18px;
  }

  .health-hero {
    display: block;
    min-height: 0;
    padding-top: 76px;
    background: var(--brand-deep);
  }

  .health-hero .hero-media {
    position: relative;
    inset: auto;
    height: clamp(246px, 62vw, 360px);
  }

  .health-hero .hero-media video {
    object-position: center center;
  }

  .health-hero .hero-media::after {
    background:
      linear-gradient(180deg, rgba(16, 75, 91, 0.08) 0%, rgba(16, 75, 91, 0.34) 100%);
  }

  .health-hero .hero-content {
    display: block;
    padding: 24px 0 28px;
    background:
      linear-gradient(180deg, rgba(16, 75, 91, 0.92) 0%, rgba(16, 75, 91, 0.98) 100%);
  }

  .health-hero .hero-grid {
    gap: 22px;
  }

  .health-hero .hero-copy {
    max-width: none;
    text-shadow: none;
  }

  .health-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.25rem);
  }

  .health-hero p {
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .health-hero .hero .button-row,
  .health-hero .button-row {
    margin-top: 18px;
  }

  .health-hero .hero-gateways {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 0;
  }

  .health-hero .gateway,
  .health-hero .gateway.gateway-primary {
    min-height: 0;
    padding: 16px;
    text-align: left;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: none;
  }

  .health-hero .gateway strong {
    font-size: 1.18rem;
  }

  .health-hero .gateway span {
    max-width: none;
    margin: 5px 0 0;
    font-size: 0.91rem;
  }

  .aplay-nav {
    top: 72px;
  }

  .aplay-carousel {
    grid-auto-columns: minmax(248px, 82vw);
  }

  .aplay-row {
    padding-right: 18px;
    padding-left: 18px;
  }

  .aplay-filter-panel {
    padding: 14px;
  }
}


/* Mobile text-flow guardrails */
@media (max-width: 760px) {
  .site-shell,
  main,
  section,
  .container,
  .header-inner,
  .mobile-nav,
  .stack,
  .button-row,
  .card,
  .gateway,
  .unit-card,
  .program-card,
  .edu-feature-panel,
  .edu-format-card,
  .edu-mini-program,
  .edu-program-card,
  .aplay-card,
  .aplay-universe-card,
  .congress-conference-card,
  .congress-conference-speaker,
  .congress-conference-content,
  .congress-venue-row,
  .congress-venue-copy,
  .identity-socle,
  .cta-band,
  .evaluation-card,
  .evaluation-text-socle,
  .health-plan-card,
  .metric {
    min-width: 0;
    max-width: 100%;
  }

  h1,
  h2,
  h3,
  p,
  li,
  a,
  strong,
  span,
  address,
  .button,
  .kicker,
  .tag,
  .program-badges span,
  .congress-eyebrow,
  .congress-conference-content > span,
  .congress-speaker-meta p {
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .button,
  .site-header .header-actions .button,
  .site-header .mobile-nav .button,
  .health-band .program-actions .button,
  .congress-choice .button,
  .congress-activity .button,
  .congress-card-free .button,
  .congress-workshop .button,
  .congress-venue-copy .button,
  .aplay-mini-button {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    line-height: 1.15;
    padding-left: 14px;
    padding-right: 14px;
  }

  .button-row {
    width: 100%;
    justify-content: center;
    align-items: stretch;
  }

  .button-row .button {
    flex: 1 1 min(100%, 270px);
  }

  .site-header .container {
    width: min(100% - 18px, 1360px);
  }

  .header-inner {
    min-height: 76px;
    gap: 10px;
  }

  .brand-mark img {
    width: clamp(136px, 45vw, 178px);
  }

  .menu-toggle {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }

  .mobile-nav {
    max-height: calc(100dvh - 76px);
  }

  .mobile-nav a {
    width: 100%;
  }

  .site-header .mobile-nav .button-congress-header {
    min-width: 0;
    width: 100%;
    font-size: 0.72rem;
  }

  .site-header .mobile-nav .button-primary,
  .site-header .mobile-nav .button-secondary {
    white-space: normal;
  }

  .hero {
    min-height: 0;
  }

  .hero-content {
    padding-left: 0;
    padding-right: 0;
  }

  .hero h1,
  .edu-hero h1,
  .health-hero h1,
  .aplay-hero-content h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.03;
  }

  .section-header h2,
  .identity-socle h2,
  .institutional-statement h2,
  .congress-single-line-title,
  .congress-jornadas-title {
    font-size: clamp(1.55rem, 7.4vw, 2.2rem);
    line-height: 1.1;
  }

  .health-plan-header h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
    line-height: 1;
  }

  .metric {
    border-radius: 28px;
    padding-right: 64px;
  }

  .metric strong {
    font-size: clamp(1.65rem, 8vw, 2rem);
  }

  .cta-band,
  .identity-socle,
  .evaluation-text-socle {
    padding-left: 20px;
    padding-right: 20px;
  }

  .edu-feature-panel span,
  .program-badges span,
  .tag,
  .kicker,
  .coverage-logo-kicker {
    width: fit-content;
    max-width: 100%;
    white-space: normal;
  }

  .edu-format-card {
    min-height: auto;
    padding: 26px 20px;
    border-radius: 40px;
  }

  .edu-format-card p,
  .edu-program-card p,
  .aplay-card-body p,
  .congress-speaker-profile p,
  .congress-venue-copy p,
  .congress-venue-copy address {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .aplay-universe-card {
    border-radius: 54px 54px 54px 24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .congress-hero-grid,
  .congress-conference-card,
  .congress-venue-row {
    overflow: hidden;
  }

  .congress-hero h1,
  .congress-hero-title {
    font-size: clamp(1.72rem, 8vw, 2.2rem);
    line-height: 1.04;
  }

  .congress-hero h2 {
    font-size: clamp(1.28rem, 6vw, 1.72rem);
    line-height: 1.14;
  }

  .congress-stage-caption {
    max-width: calc(100% - 28px);
  }

  .congress-stage-caption span {
    white-space: normal;
    text-align: center;
  }

  .congress-speaker-photo-frame {
    width: min(220px, 70vw);
  }

  .congress-conference-content h3 {
    font-size: clamp(1.28rem, 6vw, 1.78rem);
    line-height: 1.14;
  }

  .footer-grid,
  .footer-links,
  .footer-social {
    min-width: 0;
  }
}

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

  .button {
    font-size: 0.88rem;
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-gateways,
  .card-grid,
  .split-list,
  .metric-row,
  .aplay-universe-grid,
  .congress-paradigm-reading {
    gap: 12px;
  }

  .gateway,
  .card,
  .program-card > div,
  .edu-feature-panel,
  .edu-program-card,
  .evaluation-card,
  .congress-conference-card,
  .congress-venue-copy {
    padding-left: 16px;
    padding-right: 16px;
  }

  .congress-hero h1,
  .congress-hero-title {
    font-size: clamp(1.55rem, 8.4vw, 2rem);
  }
}
