:root {
  --navy: #061a33;
  --navy-2: #0a2748;
  --ink: #031326;
  --med-blue: #18b7e8;
  --yellow: #ffc400;
  --yellow-2: #ffd85a;
  --red: #f0142f;
  --sky: #ddf7ff;
  --sky-2: #f1fbff;
  --white: #ffffff;
  --off-white: #fafcfd;
  --muted: #5c6b7a;
  --line: rgba(6, 26, 51, 0.12);
  --blue-line: rgba(24, 183, 232, 0.24);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 28px 76px rgba(6, 26, 51, 0.16);
  --shadow-soft: 0 16px 38px rgba(6, 26, 51, 0.1);
  --shadow-blue: 0 24px 58px rgba(24, 183, 232, 0.18);
  --radius-xs: 10px;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 28px;
  --content: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% -8%, rgba(24, 183, 232, 0.2), transparent 30rem),
    radial-gradient(circle at 88% 8%, rgba(255, 196, 0, 0.14), transparent 24rem),
    linear-gradient(180deg, var(--sky-2) 0%, #f7fcff 42%, var(--off-white) 100%);
  color: var(--navy);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.64;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(255, 196, 0, 0.88);
  outline-offset: 4px;
}

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

section[id],
footer[id] {
  scroll-margin-top: 112px;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius-xs);
  background: var(--navy);
  color: var(--white);
  font-weight: 850;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 252, 253, 0.76);
  border-bottom: 1px solid rgba(24, 183, 232, 0.16);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(18px) saturate(1.1);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(250, 252, 253, 0.9);
  border-bottom-color: rgba(6, 26, 51, 0.1);
  box-shadow: 0 14px 38px rgba(6, 26, 51, 0.08);
}

body.admin-bar .site-header {
  top: 32px;
}

.header-shell {
  width: min(1320px, calc(100% - 48px));
  min-height: 88px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 170px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.primary-menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu-list li {
  margin: 0;
}

.primary-menu-list a,
.primary-nav > a {
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(3, 19, 38, 0.9);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--med-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:is(:hover, :focus-visible)::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions,
.social-list,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(7, 27, 51, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-youtube {
  background: #ff0000;
}

.social-instagram {
  background: linear-gradient(135deg, #fbca3e, #f0448b 48%, #6c35d4);
}

.social-tiktok {
  background: #030303;
}

.social-facebook {
  background: #1877f2;
}

.social-x {
  background: #ffffff;
  color: #0a0a0a;
  border: 1px solid rgba(7, 27, 51, 0.18);
}

.live-button,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius-xs);
  font-weight: 950;
  text-transform: uppercase;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.live-button {
  padding: 0 18px;
  background:
    linear-gradient(135deg, #ff1836, var(--red));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(240, 20, 47, 0.28);
  position: relative;
  overflow: hidden;
}

.live-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.live-button:is(:hover, :focus-visible)::after {
  transform: translateX(120%);
}

.button {
  min-width: 174px;
  padding: 0 24px;
  letter-spacing: 0.01em;
}

.button-primary {
  background: linear-gradient(135deg, var(--yellow), #ffb400);
  color: var(--navy);
  box-shadow: 0 18px 34px rgba(255, 196, 0, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy);
  border: 1px solid rgba(6, 26, 51, 0.34);
  backdrop-filter: blur(12px);
}

.button:is(:hover, :focus-visible),
.live-button:is(:hover, :focus-visible),
.social:is(:hover, :focus-visible) {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(7, 27, 51, 0.16);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(7, 27, 51, 0.16);
  border-radius: var(--radius-xs);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
}

.zone {
  position: relative;
}

.hero {
  min-height: calc(100svh - 88px);
  display: grid;
  align-items: center;
  padding: 64px 0 78px;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: url("../img/hero-benidorm.jpg") center bottom / cover no-repeat;
  transform: scale(1.02);
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.94;
  filter: saturate(1.18) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(250, 252, 253, 0.46) 0%, rgba(221, 247, 255, 0.36) 35%, rgba(24, 183, 232, 0.18) 68%, rgba(6, 26, 51, 0.3) 100%),
    radial-gradient(circle at 48% 34%, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.06) 35rem),
    linear-gradient(90deg, rgba(250, 252, 253, 0.72), rgba(241, 251, 255, 0.18) 50%, rgba(221, 247, 255, 0.38));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 196, 0, 0.78), rgba(24, 183, 232, 0.72), transparent 52%);
  height: 3px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: -1;
  width: min(880px, 78vw);
  height: 190px;
  border-radius: 999px;
  background: rgba(24, 183, 232, 0.24);
  filter: blur(42px);
  transform: translateX(-50%);
}

.hero-shell {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.hero-copy-block {
  position: relative;
  width: min(920px, 100%);
  text-align: center;
  filter: drop-shadow(0 20px 42px rgba(6, 26, 51, 0.16));
}

.hero-copy-block::after {
  content: "";
  display: block;
  width: min(240px, 42vw);
  height: 4px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--yellow), var(--med-blue), transparent);
}

.eyebrow,
.card-kicker {
  display: block;
  margin: 0 0 12px;
  color: #f0b400;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero h1,
.brand-copy h2,
.participate-intro h2,
.programs-header h2,
.sponsor-callout h2 {
  margin: 0;
  color: var(--navy);
  font-family: Impact, "Arial Narrow", "Segoe UI Condensed", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(3.3rem, 7.2vw, 6.4rem);
  font-style: italic;
  text-wrap: balance;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.36);
}

.hero h1 span {
  display: block;
}

.hero h1 strong {
  color: var(--yellow);
  font: inherit;
  text-shadow: 0 12px 26px rgba(255, 196, 0, 0.22);
}

.hero-copy {
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.hero-date {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-date span + span::before {
  content: "·";
  margin-right: 9px;
  color: var(--yellow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.countdown-card {
  width: min(520px, 100%);
  margin: 20px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(24, 183, 232, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(221, 247, 255, 0.76));
  box-shadow: 0 18px 42px rgba(6, 26, 51, 0.11);
  backdrop-filter: blur(16px);
}

.countdown-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.countdown-grid span {
  min-width: 0;
  display: grid;
  gap: 2px;
  padding: 8px 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.countdown-grid strong {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1;
}

.countdown-grid small,
.countdown-card noscript small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.countdown-grid span:first-child strong {
  color: var(--red);
}

.countdown-card.is-live {
  padding: 16px 18px;
}

.countdown-card.is-live p {
  margin: 0;
  color: var(--navy);
  font-size: 0.92rem;
}

.hero-program-card {
  position: absolute;
  left: 0;
  bottom: 26px;
  width: min(280px, 38vw);
  padding: 22px;
  border: 1px solid rgba(24, 183, 232, 0.22);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-blue);
  backdrop-filter: blur(18px);
}

.hero-program-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 950;
  line-height: 1.05;
}

.hero-program-card p,
.hero-program-card small {
  display: block;
  margin: 8px 0 0;
  color: var(--navy-2);
  font-weight: 850;
}

.trailer-chip {
  position: absolute;
  right: 18px;
  bottom: 78px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(24, 183, 232, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.trailer-chip span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(240, 20, 47, 0.12);
}

.brand-summer {
  padding: 84px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 16%, rgba(24, 183, 232, 0.2), transparent 24rem),
    linear-gradient(135deg, rgba(250, 252, 253, 0.98), rgba(221, 247, 255, 0.72)),
    radial-gradient(circle at right top, rgba(255, 196, 0, 0.14), transparent 26rem);
}

.brand-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 54px;
  align-items: center;
}

.brand-copy h2,
.participate-intro h2 {
  font-size: clamp(2.55rem, 4.6vw, 3.7rem);
}

.brand-copy > p,
.participate-intro > p,
.sponsor-callout p,
.programs-header p {
  color: var(--muted);
  font-size: 1.06rem;
}

.script-mark {
  position: relative;
  display: inline-block;
  color: var(--yellow);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 0.78em;
  font-weight: 700;
  text-transform: none;
}

.script-mark::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 0.04em;
  height: 0.09em;
  border-radius: 999px;
  background: var(--red);
}

.values-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.value-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 14px;
  border: 1px solid rgba(24, 183, 232, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 30px rgba(6, 26, 51, 0.07);
  backdrop-filter: blur(12px);
}

.value-pill span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--yellow), rgba(24, 183, 232, 0.26));
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 950;
}

.value-pill strong {
  text-transform: uppercase;
  line-height: 1.1;
}

.summer-experience {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: end;
  min-height: 640px;
}

.production-media {
  grid-column: 1 / -1;
  grid-row: 1;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-blue);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.production-media img {
  width: 100%;
  min-height: 500px;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
}

.summer-card {
  position: relative;
  z-index: 2;
  grid-column: 1 / 2;
  grid-row: 1;
  align-self: end;
  width: min(486px, calc(100% - 36px));
  margin: 0 0 28px 28px;
  padding: 24px;
  border: 1px solid rgba(24, 183, 232, 0.24);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(241, 251, 255, 0.86));
  box-shadow: 0 24px 58px rgba(6, 26, 51, 0.16);
  backdrop-filter: blur(18px);
}

.summer-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--med-blue));
}

.summer-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.summer-card p {
  margin: 12px 0 0;
  color: var(--navy-2);
}

.summer-lead {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 900;
}

.editorial-line {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(24, 183, 232, 0.12);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 900;
}

.summer-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.summer-points li {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 196, 0, 0.16);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 900;
}

.summer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.summer-actions .button {
  min-width: 0;
  padding-inline: 16px;
}

.trailer-phone {
  position: relative;
  z-index: 3;
  grid-column: 2 / 3;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  width: clamp(300px, 24vw, 360px);
  max-width: 100%;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 42px;
  background:
    linear-gradient(145deg, #102f55, #020914 56%, #061a33);
  box-shadow:
    0 38px 86px rgba(6, 26, 51, 0.36),
    0 0 0 8px rgba(255, 255, 255, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 -18px 36px rgba(0, 0, 0, 0.28);
  transform: rotate(1.2deg);
}

.trailer-phone::before {
  content: "";
  position: absolute;
  inset: 14px 14px auto;
  height: 38%;
  border-radius: 28px 28px 56px 56px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 52%);
  pointer-events: none;
  z-index: 4;
}

.trailer-phone::after {
  content: "";
  position: absolute;
  top: 23px;
  left: 50%;
  z-index: 5;
  width: 86px;
  height: 22px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 72% 50%, rgba(255, 255, 255, 0.18) 0 3px, transparent 4px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(3, 19, 38, 0.84));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
}

.trailer-label {
  position: absolute;
  left: 50%;
  top: -16px;
  z-index: 4;
  transform: translateX(-50%);
  width: max-content;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  font-size: 0.66rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(6, 26, 51, 0.12);
}

.phone-speaker {
  display: block;
  width: 70px;
  height: 5px;
  margin: 0 auto 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 31px;
  background:
    linear-gradient(180deg, rgba(6, 26, 51, 0.4), rgba(2, 9, 20, 0.96)),
    var(--navy);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 20px 40px rgba(255, 255, 255, 0.04);
}

.phone-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.16), transparent 34%, transparent 70%, rgba(255, 255, 255, 0.08));
  opacity: 0.68;
}

.trailer-video,
.phone-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  border-radius: 30px;
  background: #020617;
  object-fit: cover;
  color: var(--white);
}

.phone-video::-webkit-media-controls-panel {
  background-color: rgba(0, 0, 0, 0.38);
}

.video-fallback {
  position: absolute;
  inset: auto 14px 16px;
  z-index: 3;
  display: none;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(6, 26, 51, 0.88);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
  backdrop-filter: blur(12px);
}

.trailer-phone.is-loading .phone-screen {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(24, 183, 232, 0.16);
}

.trailer-phone.video-ready .phone-screen {
  border-color: rgba(24, 183, 232, 0.26);
}

.trailer-phone.video-error .trailer-video {
  opacity: 0.08;
}

.trailer-phone.video-error .video-fallback {
  display: block;
}

.participate {
  padding: 76px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(24, 183, 232, 0.22), transparent 26rem),
    linear-gradient(180deg, var(--navy) 0%, #09213e 100%);
  color: var(--white);
}

.participate::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 26, 51, 0.9), rgba(6, 26, 51, 0.62)),
    url("../img/bloque-proceso.jpg") right center / cover no-repeat;
  opacity: 0.36;
}

.participate-shell {
  position: relative;
  z-index: 1;
}

.participate-intro {
  max-width: 820px;
  margin-bottom: 26px;
}

.participate-intro h2,
.participate-intro p {
  color: var(--white);
}

.participate-note {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(24, 183, 232, 0.14);
  border: 1px solid rgba(24, 183, 232, 0.26);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 850;
}

.participate-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: 24px;
  align-items: stretch;
}

.process-card,
.participation-form {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.18);
}

.process-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--yellow), rgba(24, 183, 232, 0.46));
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
}

.timeline-step > span {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 950;
}

.timeline-step h3 {
  margin: 0;
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.timeline-step p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.participation-form {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 16px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 251, 255, 0.96) 54%, rgba(255, 249, 225, 0.94));
  color: var(--navy);
}

.participation-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--yellow), var(--med-blue), var(--red));
  pointer-events: none;
}

.form-head {
  grid-column: 1 / -1;
  display: grid;
  gap: 3px;
  padding-bottom: 6px;
}

.form-head strong {
  font-size: 1.12rem;
  line-height: 1.2;
}

.form-head small {
  color: var(--muted);
  font-weight: 750;
}

.participation-form > .wpcf7 {
  grid-column: 1 / -1;
  min-width: 0;
}

.field {
  display: grid;
  gap: 6px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  color: rgba(6, 26, 51, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(6, 26, 51, 0.14);
  border-radius: var(--radius-xs);
  background: #fbfdff;
  color: var(--navy);
  padding: 11px 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--med-blue);
  box-shadow: 0 0 0 4px rgba(24, 183, 232, 0.16);
  outline: 0;
}

.privacy-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-transform: none;
  font-weight: 780;
  color: var(--muted);
}

.privacy-check input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--yellow);
}

.final-zone {
  padding: 84px 0 72px;
  background:
    radial-gradient(circle at top right, rgba(24, 183, 232, 0.22), transparent 26rem),
    radial-gradient(circle at 12% 36%, rgba(255, 196, 0, 0.12), transparent 22rem),
    linear-gradient(180deg, #f8fcff, #eaf8ff 100%);
}

.programs-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.programs-header h2 {
  font-size: clamp(2.35rem, 4vw, 3.2rem);
}

.programs-header p {
  margin: 10px 0 0;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.program-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  min-height: 262px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 26, 51, 0.02) 18%, rgba(6, 26, 51, 0.22) 48%, rgba(6, 26, 51, 0.98) 100%);
}

.program-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.program-card h3,
.program-card p,
.soon,
.tag {
  position: relative;
  z-index: 1;
}

.program-card h3 {
  margin: auto 16px 0;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.program-card p {
  margin: 8px 16px 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.45;
}

.program-card:is(:hover, :focus-within) {
  transform: translateY(-6px);
  border-color: rgba(24, 183, 232, 0.52);
  box-shadow: 0 24px 56px rgba(6, 26, 51, 0.2), 0 0 0 1px rgba(255, 196, 0, 0.18);
}

.program-card:is(:hover, :focus-within) img {
  transform: scale(1.05);
  filter: brightness(1.08) saturate(1.1);
}

.program-featured {
  grid-column: span 2;
  min-height: 332px;
}

.program-featured::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  z-index: 1;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--med-blue), transparent);
}

.program-featured h3 {
  margin-inline: 22px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.program-featured p {
  max-width: 380px;
  margin-inline: 22px;
  margin-bottom: 22px;
}

.tag,
.soon {
  position: absolute;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.63rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(6, 26, 51, 0.22);
}

.tag {
  top: 12px;
  left: 12px;
}

.soon {
  top: 12px;
  right: 12px;
  background: rgba(6, 26, 51, 0.72);
  backdrop-filter: blur(8px);
}

.soon-process {
  background: var(--yellow);
  color: var(--navy);
}

.tag-red {
  background: var(--red);
}

.tag-yellow {
  background: var(--yellow);
  color: var(--navy);
}

.tag-blue {
  background: var(--med-blue);
}

.tag-purple {
  background: #8e3ff2;
}

.tag-green {
  background: #1f9b57;
}

.tag-navy {
  background: var(--navy-2);
}

.tag-pink {
  background: #f04f98;
}

.sponsor-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  margin-top: 38px;
  padding: 34px;
  border: 1px solid rgba(24, 183, 232, 0.2);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(221, 247, 255, 0.78)),
    radial-gradient(circle at right, rgba(24, 183, 232, 0.2), transparent 24rem);
  box-shadow: 0 22px 52px rgba(6, 26, 51, 0.1);
}

.sponsor-callout h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
}

.sponsor-callout p {
  margin-bottom: 0;
}

.site-footer {
  padding: 46px 0;
  background:
    radial-gradient(circle at 22% 0%, rgba(24, 183, 232, 0.18), transparent 26rem),
    linear-gradient(180deg, var(--navy-2), var(--navy));
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto auto;
  gap: 24px;
  align-items: center;
}

.footer-brand img {
  width: 150px;
  padding: 9px;
  border-radius: var(--radius-xs);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.footer-motto {
  margin: 14px 0 0;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 1.24rem;
}

.footer-motto span {
  color: var(--yellow);
}

.footer-contact p {
  margin: 0 0 6px;
  font-weight: 950;
}

.footer-contact a,
.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

.footer-contact a:is(:hover, :focus-visible),
.footer-links a:is(:hover, :focus-visible) {
  color: var(--sky);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.inner-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(24, 183, 232, 0.14), transparent 28rem),
    linear-gradient(180deg, var(--sky-2), var(--off-white) 42%, #ffffff);
}

.inner-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(24, 183, 232, 0.18);
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(250, 252, 253, 0.72), rgba(221, 247, 255, 0.52) 52%, rgba(6, 26, 51, 0.18)),
    radial-gradient(circle at 26% 30%, rgba(255, 255, 255, 0.78), transparent 30rem),
    linear-gradient(90deg, rgba(250, 252, 253, 0.86), rgba(241, 251, 255, 0.42), rgba(24, 183, 232, 0.2));
}

.inner-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(24, 183, 232, 0.22), transparent),
    url("../img/hero-benidorm.jpg") center bottom / cover no-repeat;
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.02);
}

.inner-hero-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.88;
}

.inner-hero-participar {
  background-image:
    linear-gradient(135deg, rgba(24, 183, 232, 0.22), transparent),
    url("../img/bloque-proceso.jpg");
}

.inner-hero-programs {
  background-image:
    linear-gradient(135deg, rgba(24, 183, 232, 0.18), transparent),
    url("../img/cta-benidorm.jpg");
}

.inner-hero-sponsors,
.inner-hero-contact {
  background-image:
    linear-gradient(135deg, rgba(24, 183, 232, 0.2), transparent),
    url("../img/bloque-somos.jpg");
}

.inner-hero-shell {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 48px));
  padding: 92px 0 76px;
}

.inner-title {
  margin: 0;
  color: var(--navy);
  font-family: Impact, "Arial Narrow", "Segoe UI Condensed", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

.inner-copy {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--navy-2);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  font-weight: 650;
}

.inner-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.inner-meta span + span::before {
  content: "·";
  margin-right: 8px;
  color: var(--yellow);
}

.inner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.inner-section {
  padding: 72px 0;
}

.compact-section {
  padding-top: 36px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading h2,
.editorial-panel h2,
.form-panel h2,
.cta-band h2 {
  margin: 0;
  color: var(--navy);
  font-family: Impact, "Arial Narrow", "Segoe UI Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.editorial-grid,
.page-split,
.trailer-page-grid,
.sponsor-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 26px;
  align-items: stretch;
}

.editorial-panel,
.content-panel,
.form-panel,
.status-panel,
.contact-card,
.legal-content {
  border: 1px solid rgba(24, 183, 232, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(241, 251, 255, 0.84));
  box-shadow: 0 22px 52px rgba(6, 26, 51, 0.1);
}

.editorial-panel,
.content-panel,
.form-panel,
.status-panel,
.contact-card {
  padding: 30px;
}

.editorial-panel p,
.form-panel p,
.status-panel p,
.contact-card p,
.content-panel,
.legal-content {
  color: var(--muted);
}

.page-countdown {
  align-self: center;
  margin: 0;
}

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

.feature-card {
  min-height: 160px;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(24, 183, 232, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(24, 183, 232, 0.18), transparent 15rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(221, 247, 255, 0.72));
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card:is(:hover, :focus-within) {
  transform: translateY(-5px);
  border-color: rgba(24, 183, 232, 0.38);
  box-shadow: var(--shadow-blue);
}

.feature-card span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 950;
}

.feature-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.trailer-section {
  background:
    radial-gradient(circle at 78% 24%, rgba(24, 183, 232, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(6, 26, 51, 0.03), rgba(221, 247, 255, 0.35));
}

.trailer-copy {
  align-self: center;
}

.trailer-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: Impact, "Arial Narrow", "Segoe UI Condensed", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}

.trailer-copy p {
  max-width: 620px;
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  border: 1px solid rgba(24, 183, 232, 0.2);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at right, rgba(24, 183, 232, 0.2), transparent 26rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(221, 247, 255, 0.8));
  box-shadow: var(--shadow-soft);
}

.page-process {
  background:
    radial-gradient(circle at top left, rgba(24, 183, 232, 0.14), transparent 18rem),
    linear-gradient(180deg, var(--navy-2), var(--navy));
}

.form-panel {
  min-width: 0;
}

.participar-form-panel,
.contact-form-panel {
  position: relative;
  overflow: hidden;
}

.participar-form-panel {
  border-color: rgba(255, 196, 0, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 251, 255, 0.9) 52%, rgba(255, 248, 219, 0.92));
  box-shadow: 0 28px 62px rgba(6, 26, 51, 0.13);
}

.participar-form-panel::before,
.contact-form-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  pointer-events: none;
}

.participar-form-panel::before {
  background: linear-gradient(90deg, var(--yellow), var(--med-blue), var(--red));
}

.participar-form-panel .eyebrow,
.participation-form .card-kicker {
  color: #9c7100;
}

.contact-form-panel {
  border-color: rgba(24, 183, 232, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 250, 255, 0.92));
  box-shadow: 0 24px 56px rgba(24, 183, 232, 0.12);
}

.contact-form-panel::before {
  background: linear-gradient(90deg, var(--med-blue), var(--navy), var(--yellow));
}

.contact-form-panel .eyebrow {
  color: #087ea2;
}

.editor-form-slot {
  margin-top: 20px;
}

.form-panel > .wpcf7,
.editor-form-slot > .wpcf7 {
  margin-top: 20px;
}

.clean-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 20px;
  color: var(--navy-2);
  font-weight: 760;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--med-blue);
}

.status-panel {
  display: grid;
  align-content: center;
  gap: 16px;
}

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

.contact-card a {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 950;
}

.legal-hero {
  padding: 86px 0 30px;
  background:
    radial-gradient(circle at top left, rgba(24, 183, 232, 0.16), transparent 24rem),
    linear-gradient(180deg, var(--sky-2), var(--off-white));
}

.legal-content {
  max-width: 900px;
  padding: 42px;
  font-size: 1.02rem;
  line-height: 1.78;
}

.legal-content h2,
.content-panel h2 {
  color: var(--navy);
}

.optional-content {
  padding-top: 0;
}

.optional-content .content-panel:empty {
  display: none;
}

.page-editor-content {
  padding: 0 0 72px;
}

.editor-content-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(24, 183, 232, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(241, 251, 255, 0.86));
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  line-height: 1.78;
}

.editor-content-card > :first-child {
  margin-top: 0;
}

.editor-content-card > :last-child {
  margin-bottom: 0;
}

.editor-content-card h2,
.editor-content-card h3 {
  color: var(--navy);
  line-height: 1.15;
}

.editor-content-card h2 {
  margin: 0 0 16px;
  font-family: Impact, "Arial Narrow", "Segoe UI Condensed", sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  text-transform: uppercase;
}

.editor-content-card h3 {
  margin: 24px 0 10px;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.editor-content-card p {
  margin: 0 0 16px;
}

.editor-content-card ul,
.editor-content-card ol {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 22px;
}

.editor-content-card a {
  color: var(--med-blue);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.editor-content-card .button,
.editor-content-card .wpcf7-submit {
  text-decoration: none;
}

.editor-content-card .wpcf7 {
  margin-top: 18px;
}

.form-pending-note,
.legal-placeholder {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px dashed rgba(24, 183, 232, 0.35);
  border-radius: var(--radius-xs);
  background: rgba(221, 247, 255, 0.48);
  color: var(--muted);
  font-weight: 800;
}

.wpcf7,
.wpcf7-form {
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 16px;
}

.wpcf7-form {
  align-items: start;
}

.wpcf7 p {
  margin: 0;
}

.wpcf7 label {
  display: grid;
  gap: 7px;
  color: rgba(6, 26, 51, 0.78);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wpcf7 input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  border: 1px solid rgba(6, 26, 51, 0.14);
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  padding: 12px 13px;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.participation-form .wpcf7 label,
.participar-form-panel .wpcf7 label {
  color: rgba(6, 26, 51, 0.86);
}

.participation-form .wpcf7 input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.participation-form .wpcf7 textarea,
.participation-form .wpcf7 select,
.participar-form-panel .wpcf7 input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.participar-form-panel .wpcf7 textarea,
.participar-form-panel .wpcf7 select {
  border-color: rgba(255, 196, 0, 0.28);
  background: linear-gradient(180deg, #ffffff, #fffdf4);
}

.contact-form-panel .wpcf7 label {
  color: rgba(6, 26, 51, 0.72);
}

.contact-form-panel .wpcf7 input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.contact-form-panel .wpcf7 textarea,
.contact-form-panel .wpcf7 select {
  border-color: rgba(24, 183, 232, 0.28);
  border-left-width: 3px;
  background: #f8fdff;
}

.wpcf7 textarea {
  min-height: 132px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: var(--med-blue);
  box-shadow: 0 0 0 4px rgba(24, 183, 232, 0.16);
  outline: 0;
}

.wpcf7 .wpcf7-not-valid {
  border-color: var(--red) !important;
  background: #fffafb;
}

.wpcf7-acceptance {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-list-item label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-transform: none;
  font-weight: 760;
}

.wpcf7 input[type="checkbox"] {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--yellow);
}

.wpcf7-submit {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: var(--radius-xs);
  background: linear-gradient(135deg, var(--yellow), #ffb400);
  color: var(--navy);
  padding: 0 24px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 18px 34px rgba(255, 196, 0, 0.24);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.wpcf7-submit:is(:hover, :focus-visible) {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(6, 26, 51, 0.14);
}

.participation-form .wpcf7-submit,
.participar-form-panel .wpcf7-submit {
  background: linear-gradient(135deg, var(--yellow), #ffb400);
  color: var(--navy);
  box-shadow: 0 18px 34px rgba(255, 196, 0, 0.28);
}

.contact-form-panel .wpcf7-submit {
  border-bottom: 3px solid var(--yellow);
  background: linear-gradient(135deg, var(--navy), #0d6e96);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(24, 183, 232, 0.18);
}

.contact-form-panel .wpcf7-submit:is(:hover, :focus-visible) {
  box-shadow: 0 22px 42px rgba(6, 26, 51, 0.2);
}

.wpcf7-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.wpcf7 .wpcf7-spinner {
  margin: 0 0 0 10px;
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
}

.wpcf7-response-output {
  margin: 4px 0 0 !important;
  padding: 12px 14px !important;
  border: 1px solid rgba(24, 183, 232, 0.24) !important;
  border-radius: var(--radius-xs);
  background: rgba(221, 247, 255, 0.62);
  color: var(--navy);
  font-weight: 800;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: rgba(13, 124, 68, 0.28) !important;
  background: rgba(234, 248, 240, 0.92);
  color: #0d6d40;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
  border-color: rgba(241, 23, 40, 0.3) !important;
  background: rgba(255, 245, 246, 0.94);
  color: var(--red);
}

.reveal {
  opacity: 1;
  transform: none;
}

body.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

.program-card:nth-child(2) {
  transition-delay: 60ms;
}

.program-card:nth-child(3) {
  transition-delay: 110ms;
}

.program-card:nth-child(4) {
  transition-delay: 160ms;
}

.program-card:nth-child(n + 5) {
  transition-delay: 210ms;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .header-shell {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 24px;
    right: 24px;
    display: none;
    padding: 18px;
    border: 1px solid rgba(24, 183, 232, 0.18);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .primary-menu-list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .primary-menu-list a {
    display: block;
  }

  .primary-nav a {
    padding: 12px;
    border-radius: var(--radius-xs);
  }

  .primary-nav a::after {
    display: none;
  }

  body.menu-open .primary-nav {
    display: flex;
  }

  .header-actions {
    position: absolute;
    right: 88px;
    top: 50%;
    transform: translateY(-50%);
  }

  .social-list {
    display: none;
  }
}

@media (max-width: 1023px) {
  .inner-hero {
    min-height: 460px;
  }

  .editorial-grid,
  .page-split,
  .trailer-page-grid,
  .sponsor-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 760px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 9vw, 4.7rem);
  }

  .brand-grid,
  .participate-grid {
    grid-template-columns: 1fr;
  }

  .summer-experience {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .production-media,
  .summer-card,
  .trailer-phone {
    grid-column: 1;
    grid-row: auto;
  }

  .production-media img {
    min-height: 360px;
  }

  .summer-card {
    width: min(560px, calc(100% - 38px));
    margin: -42px auto 0;
  }

  .trailer-phone {
    width: min(340px, 72vw);
    margin: 22px auto 0;
    justify-self: center;
  }

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

  .program-featured {
    grid-column: span 2;
  }

  .sponsor-callout,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .container,
  .header-shell {
    width: min(100% - 28px, var(--content));
  }

  .inner-hero {
    min-height: auto;
  }

  .inner-hero-media video {
    display: none;
  }

  .inner-hero-shell {
    width: min(100% - 28px, var(--content));
    padding: 58px 0 46px;
  }

  .inner-title {
    font-size: clamp(2.35rem, 12vw, 3.1rem);
  }

  .inner-copy {
    font-size: 1rem;
  }

  .inner-meta {
    display: grid;
    gap: 4px;
  }

  .inner-meta span + span::before {
    content: "";
    margin: 0;
  }

  .inner-actions,
  .cta-band {
    display: grid;
    grid-template-columns: 1fr;
  }

  .inner-section {
    padding: 48px 0;
  }

  .editorial-panel,
  .content-panel,
  .form-panel,
  .status-panel,
  .contact-card,
  .legal-content {
    padding: 22px;
    border-radius: var(--radius-md);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 132px;
  }

  .page-programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
  }

  .page-programs-grid .program-card,
  .page-programs-grid .program-featured {
    flex: initial;
    min-height: 292px;
  }

  .legal-hero {
    padding: 58px 0 16px;
  }

  .wpcf7,
  .wpcf7-form {
    gap: 14px;
  }

  section[id],
  footer[id] {
    scroll-margin-top: 92px;
  }

  .header-shell {
    min-height: 74px;
    gap: 12px;
  }

  .brand img {
    width: 128px;
  }

  .header-actions {
    right: 68px;
  }

  .live-button {
    width: 44px;
    min-height: 44px;
    padding: 0;
    font-size: 0;
  }

  .live-button span {
    font-size: 0.98rem;
  }

  .hero {
    min-height: auto;
    padding: 44px 0 42px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(250, 252, 253, 0.86) 0%, rgba(221, 247, 255, 0.68) 44%, rgba(221, 247, 255, 0.28) 82%, rgba(250, 252, 253, 0.9) 100%);
  }

  .hero-video {
    display: none;
  }

  .hero-shell {
    min-height: auto;
    display: block;
    padding-top: 20px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3rem);
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-date {
    display: grid;
    gap: 4px;
  }

  .hero-date span + span::before {
    content: "";
    margin: 0;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-bottom: 20px;
  }

  .countdown-card {
    padding: 10px;
  }

  .countdown-grid {
    gap: 6px;
  }

  .countdown-grid span {
    padding: 7px 4px;
  }

  .countdown-grid strong {
    font-size: 1rem;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-program-card {
    position: static;
    width: 100%;
    margin-top: 12px;
    padding: 18px;
  }

  .trailer-chip {
    position: static;
    width: max-content;
    max-width: 100%;
    margin: 12px auto 0;
  }

  .brand-summer,
  .participate,
  .final-zone {
    padding: 54px 0;
  }

  .brand-copy h2,
  .participate-intro h2,
  .programs-header h2 {
    font-size: 2.42rem;
  }

  .values-row,
  .participation-form,
  .sponsor-callout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .production-media,
  .process-card,
  .participation-form,
  .sponsor-callout {
    border-radius: var(--radius-md);
  }

  .summer-card {
    width: calc(100% - 24px);
    margin: -52px auto 0;
    padding: 22px;
  }

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

  .trailer-phone {
    width: min(330px, 88vw);
    transform: none;
  }

  .process-card,
  .participation-form {
    padding: 20px;
  }

  .timeline-step {
    grid-template-columns: 40px 1fr;
  }

  .timeline::before {
    left: 18px;
  }

  .programs-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 0 12px;
  }

  .program-card {
    flex: 0 0 min(82vw, 320px);
    min-height: 292px;
    scroll-snap-align: start;
  }

  .program-featured {
    flex-basis: min(88vw, 340px);
  }

  .footer-links,
  .footer-socials {
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .brand-copy h2,
  .participate-intro h2,
  .programs-header h2,
  .sponsor-callout h2 {
    font-size: 2.08rem;
  }

  .trailer-chip {
    font-size: 0.72rem;
    padding: 10px 12px;
  }
}
