:root {
  --primary-dark: #001022;
  --primary: #144172;
  --primary-soft: #50677d;
  --cyan-start: #2cbce0;
  --cyan-end: #89e7ff;
  --secondary: #c6a99e;
  --surface: #ffffff;
  --surface-alt: #f4f8fb;
  --border: #d9e6ee;
  --muted: #6d7e8c;
  --heading: #0a0a0a;
  --shadow: 0 24px 70px rgba(0, 16, 34, 0.14);
  --radius-section: 24px;
  --radius-card: 18px;
  --radius-soft: 14px;
  --radius-pill: 999px;
  --section-spacing: 40px;
  --hero-panel-opacity: 0.5;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--primary-soft);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(137, 231, 255, 0.3), transparent 26%),
    linear-gradient(180deg, #eef7fb 0%, #ffffff 22%, #f5f7f9 100%);
}

body.is-modal-open {
  overflow: hidden;
}

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

.page-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.campaign-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.campaign-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(20, 65, 114, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.campaign-nav__link:hover,
.campaign-nav__link.is-active {
  transform: translateY(-2px);
  background: linear-gradient(90deg, var(--cyan-start), var(--cyan-end));
  box-shadow: 0 12px 28px rgba(44, 188, 224, 0.18);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #fff;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cyan-start), var(--cyan-end));
  color: var(--primary);
  font-size: 1.15rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.brand-text {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.topnav {
  display: flex;
  gap: 26px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.topnav a:hover {
  color: var(--cyan-end);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 58px;
  padding: 16px 28px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

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

.button::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  opacity: 0.8;
  pointer-events: none;
}

.button-gradient {
  color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 38%),
    linear-gradient(90deg, #35c8ea 0%, #89e7ff 52%, #b4f3ff 100%);
  box-shadow:
    0 18px 35px rgba(44, 188, 224, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.button-outline {
  border: 1px solid var(--cyan-end);
  color: #fff;
  background: transparent;
}

.button-outline:hover {
  color: var(--primary);
  background: linear-gradient(90deg, var(--cyan-start), var(--cyan-end));
}

.button-gradient:hover {
  color: #082949;
  box-shadow:
    0 24px 44px rgba(44, 188, 224, 0.3),
    0 8px 18px rgba(0, 16, 34, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.button:focus-visible {
  outline: 3px solid rgba(137, 231, 255, 0.45);
  outline-offset: 4px;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 32px;
  min-height: 720px;
  padding: 132px 56px 56px;
  border-radius: 32px 32px 26px 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-kids .hero-section,
.page-gestantes .hero-section {
  padding-top: 164px;
}

.hero-section.hero-section--no-media {
  background:
    radial-gradient(circle at 14% 18%, rgba(137, 231, 255, 0.16), transparent 22%),
    radial-gradient(circle at 84% 24%, rgba(255, 211, 110, 0.12), transparent 22%),
    linear-gradient(135deg, #061426 0%, #0c2845 45%, #163e63 100%);
}

.hero-background {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.6s ease, transform 6s ease;
}

.hero-background.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-section--no-media .hero-background--secondary {
  display: none;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.65) 0 1px, transparent 1.5px),
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.42) 0 0.9px, transparent 1.4px),
    radial-gradient(circle at 22% 22%, rgba(137, 231, 255, 0.45) 0 1px, transparent 1.5px),
    radial-gradient(circle at 26% 34%, rgba(255, 255, 255, 0.45) 0 1px, transparent 1.5px),
    radial-gradient(circle at 31% 26%, rgba(255, 255, 255, 0.34) 0 0.9px, transparent 1.4px),
    radial-gradient(circle at 38% 14%, rgba(137, 231, 255, 0.55) 0 1.2px, transparent 1.7px),
    radial-gradient(circle at 44% 10%, rgba(255, 255, 255, 0.36) 0 0.9px, transparent 1.4px),
    radial-gradient(circle at 52% 28%, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.5px),
    radial-gradient(circle at 60% 12%, rgba(137, 231, 255, 0.38) 0 1px, transparent 1.6px),
    radial-gradient(circle at 67% 16%, rgba(255, 255, 255, 0.58) 0 1.1px, transparent 1.6px),
    radial-gradient(circle at 78% 36%, rgba(137, 231, 255, 0.48) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 86% 22%, rgba(255, 255, 255, 0.4) 0 1px, transparent 1.5px),
    radial-gradient(circle at 91% 14%, rgba(255, 255, 255, 0.32) 0 0.9px, transparent 1.4px),
    radial-gradient(circle at 18% 62%, rgba(255, 255, 255, 0.36) 0 1px, transparent 1.5px),
    radial-gradient(circle at 12% 78%, rgba(137, 231, 255, 0.34) 0 1px, transparent 1.6px),
    radial-gradient(circle at 28% 56%, rgba(255, 255, 255, 0.28) 0 0.9px, transparent 1.4px),
    radial-gradient(circle at 34% 74%, rgba(137, 231, 255, 0.4) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 46% 58%, rgba(255, 255, 255, 0.3) 0 0.9px, transparent 1.4px),
    radial-gradient(circle at 58% 66%, rgba(255, 255, 255, 0.5) 0 1px, transparent 1.5px),
    radial-gradient(circle at 64% 82%, rgba(137, 231, 255, 0.34) 0 1px, transparent 1.6px),
    radial-gradient(circle at 74% 78%, rgba(255, 255, 255, 0.34) 0 1px, transparent 1.5px),
    radial-gradient(circle at 82% 58%, rgba(255, 255, 255, 0.3) 0 0.9px, transparent 1.4px),
    radial-gradient(circle at 90% 68%, rgba(137, 231, 255, 0.38) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 94% 82%, rgba(255, 255, 255, 0.3) 0 0.9px, transparent 1.4px);
  opacity: 0.7;
  animation: hero-stars-drift 14s ease-in-out infinite alternate;
  z-index: 1;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 14, 28, 0.56) 0%, rgba(0, 19, 38, 0.34) 44%, rgba(0, 19, 38, 0.14) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 11, 22, 0.28) 100%);
  z-index: 1;
}

.hero-copy,
.hero-card,
.hero-card-stack {
  position: relative;
  z-index: 2;
}

.hero-mobile-brand {
  position: absolute;
  top: 34px;
  left: 56px;
  z-index: 3;
  display: flex;
}

.hero-mobile-brand img {
  display: block;
  width: 136px;
  height: auto;
}

.page-kids .hero-mobile-brand img,
.page-gestantes .hero-mobile-brand img {
  width: 116px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-section .eyebrow,
.cta-section .eyebrow {
  color: #b8f4ff;
  text-shadow: none;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--heading);
  line-height: 1.02;
}

.hero-section h1 {
  max-width: none;
  font-size: clamp(2rem, 3.2vw, 3.85rem);
  color: #fff;
}

.hero-lead {
  max-width: none;
  margin: 22px 0 10px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.15;
  font-weight: 600;
  color: #fff;
}

.hero-description {
  max-width: none;
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  margin-top: 30px;
}

.hero-event-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(0, 0, 0, var(--hero-panel-opacity));
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero-event-card__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 16px;
}

.hero-event-card__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(184, 244, 255, 0.9);
}

.hero-event-card__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(18, 201, 140, 0.14);
  border: 1px solid rgba(61, 231, 179, 0.22);
  color: #91ffd8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: center;
}

.hero-event-card__body {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.hero-event-card__calendar {
  display: grid;
  gap: 4px;
  padding: 14px 12px 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, #f6fcff 0%, #d7f1ff 100%);
  color: #082949;
  text-align: center;
  box-shadow:
    0 20px 38px rgba(44, 188, 224, 0.18),
    inset 0 -1px 0 rgba(7, 41, 73, 0.08);
}

.hero-event-card__month-year {
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(8, 41, 73, 0.12);
  color: #0d4f79;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-event-card__day {
  display: block;
  padding-top: 6px;
  color: #082949;
  font-size: clamp(2.8rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
}

.hero-event-card__content {
  display: grid;
  gap: 12px;
}

.hero-event-card__title {
  color: #fff;
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  font-weight: 700;
  line-height: 1.08;
}

.hero-event-card__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-event-card__meta-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.4;
}

.hero-event-card__meta-item i {
  color: #89e7ff;
  font-size: 0.98rem;
  margin-top: 2px;
}

.hero-event-card__meta-item strong {
  display: inline-block;
  min-width: 74px;
  color: #b8f4ff;
  font-weight: 700;
  margin-right: 6px;
}

.hero-actions .button {
  max-width: 420px;
  justify-content: center;
  gap: 14px;
}

.hero-copy,
.hero-card {
  align-self: start;
  padding: 30px;
  background: rgba(0, 0, 0, var(--hero-panel-opacity));
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-copy {
  max-width: 720px;
}

.hero-card-stack {
  display: grid;
  gap: 18px;
  align-self: start;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #08304f;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 58%),
    radial-gradient(circle at top right, rgba(255, 211, 110, 0.95), rgba(255, 211, 110, 0) 34%),
    linear-gradient(120deg, #f4fbff 0%, #d9f1ff 45%, #b9e1ff 100%);
  box-shadow:
    0 10px 24px rgba(11, 121, 190, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hero-card h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(2.1rem, 2vw, 2.5rem);
  line-height: 1.02;
}

.hero-card p {
  margin: 0 0 20px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.65;
}

.hero-list li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(44, 188, 224, 0.18), rgba(137, 231, 255, 0.3));
  color: #baf4ff;
  font-size: 0.92rem;
  flex: 0 0 auto;
}

.hero-list li span {
  flex: 1;
}

section + section {
  margin-top: var(--section-spacing);
}

.gallery-marquee-section {
  position: relative;
  left: 50%;
  width: 100vw;
  height: 300px;
  margin-left: -50vw;
  margin-top: var(--section-spacing);
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(20, 65, 114, 0.12);
}

.gallery-marquee-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: gallery-marquee 34s linear infinite;
}

.gallery-slide {
  flex: 0 0 24vw;
  min-width: 280px;
  max-width: 420px;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-strip,
.love-section,
.support-section,
.cta-section,
.site-footer {
  border-radius: var(--radius-section);
  margin-top: 10px;
}

.info-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  padding: 38px 42px;
  border-radius: 26px 26px 20px 20px;
  background: linear-gradient(90deg, rgba(198, 169, 158, 0.18), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(198, 169, 158, 0.3);
}

.section-heading h2 {
  max-width: 16ch;
  font-size: clamp(2rem, 3vw, 3.05rem);
}

.vaccines-section .section-heading h2 {
  max-width: 24ch;
}

.info-strip p:last-child {
  margin: 0;
  align-self: center;
  font-size: 1.04rem;
  line-height: 1.8;
}

.vaccines-section {
  padding: 44px;
  border-radius: 28px 28px 22px 22px;
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(20, 65, 114, 0.08);
}

.vaccines-section .section-heading {
  margin-bottom: 28px;
}

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

.vaccine-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(137, 231, 255, 0.55);
  border-radius: 20px 20px 16px 16px;
  background:
    linear-gradient(180deg, rgba(137, 231, 255, 0.08), rgba(255, 255, 255, 1) 38%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.vaccine-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 65, 114, 0.22);
  box-shadow: 0 18px 45px rgba(20, 65, 114, 0.12);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 48px, 0);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translate3d(-56px, 0, 0);
}

.reveal-right {
  transform: translate3d(56px, 0, 0);
}

.reveal-up {
  transform: translate3d(0, 48px, 0);
}

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

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--cyan-start), var(--cyan-end));
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.vaccine-card h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
}

.vaccine-card p {
  margin: 0;
  line-height: 1.75;
}

.emphasis-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.emphasis-card h3,
.emphasis-card p {
  color: inherit;
}

.love-section {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 36px;
  padding: 46px;
  border-radius: 26px 26px 20px 20px;
  background:
    radial-gradient(circle at right top, rgba(137, 231, 255, 0.28), transparent 30%),
    linear-gradient(180deg, #f7fbfd, #eef4f7);
  border: 1px solid rgba(20, 65, 114, 0.08);
  align-items: center;
}

.love-section--no-image {
  grid-template-columns: 1fr;
}

.love-section--no-image .love-copy {
  max-width: none;
}

.love-section > .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -4px;
}

.love-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  text-wrap: balance;
}

.love-copy {
  width: 100%;
  max-width: none;
  align-self: center;
}

.speaker-figure {
  width: min(100%, 360px);
  margin: 0;
  align-self: center;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(20, 65, 114, 0.14);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.speaker-figure img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: cover;
}

.love-copy p {
  max-width: none;
  margin: 0 0 12px;
  line-height: 1.8;
}

.love-copy p:last-child {
  margin-bottom: 0;
}

.support-section {
  position: relative;
  padding: 42px 46px 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(137, 231, 255, 0.22), transparent 24%),
    linear-gradient(180deg, #ffffff, #f4f8fb);
  border: 1px solid rgba(20, 65, 114, 0.08);
}

.support-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 188, 224, 0.16), rgba(44, 188, 224, 0));
  pointer-events: none;
}

.support-section__heading,
.support-section__lead,
.support-section__grid {
  position: relative;
  z-index: 1;
}

.support-section__heading {
  margin-bottom: 18px;
}

.support-section__heading h2 {
  max-width: 70%;
}

.support-section__lead {
  margin: 0 0 30px;
  max-width: 70%;
  line-height: 1.85;
}

.support-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  margin-top: 0;
}

.support-audience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 220px;
  padding: 26px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 249, 252, 0.98)),
    #fff;
  border: 1px solid rgba(137, 231, 255, 0.42);
  box-shadow: 0 18px 42px rgba(20, 65, 114, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.support-audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 65, 114, 0.18);
  box-shadow: 0 22px 48px rgba(20, 65, 114, 0.12);
}

.support-audience-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(44, 188, 224, 0.18), rgba(137, 231, 255, 0.4));
  color: var(--primary);
  font-size: 1.35rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.support-audience-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--heading);
  font-size: 1.22rem;
  text-align: center;
}

.support-audience-card p {
  margin: 0;
  line-height: 1.8;
  text-align: center;
}

.signup-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 30px;
  padding: 42px;
  border-radius: 26px 26px 20px 20px;
  background:
    radial-gradient(circle at top left, rgba(137, 231, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #ffffff, #f6fafc);
  border: 1px solid rgba(20, 65, 114, 0.08);
  box-shadow: 0 24px 70px rgba(20, 65, 114, 0.08);
}

.signup-copy h2 {
  max-width: 12ch;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.signup-copy p:last-child {
  margin: 0;
  max-width: 50ch;
  line-height: 1.8;
}

.signup-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(137, 231, 255, 0.45);
  box-shadow: 0 18px 42px rgba(20, 65, 114, 0.08);
}

.signup-field {
  display: grid;
  gap: 8px;
}

.signup-field span {
  color: var(--heading);
  font-size: 0.94rem;
  font-weight: 600;
}

.signup-field input,
.signup-field select {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid rgba(20, 65, 114, 0.12);
  border-radius: 16px;
  background: #fff;
  color: var(--primary);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.signup-field input::placeholder {
  color: #7b8b98;
}

.signup-field input:focus,
.signup-field select:focus {
  outline: none;
  border-color: rgba(44, 188, 224, 0.65);
  box-shadow: 0 0 0 4px rgba(137, 231, 255, 0.18);
}

.signup-field.has-error input,
.signup-field.has-error select {
  border-color: rgba(193, 55, 55, 0.7);
  box-shadow: 0 0 0 4px rgba(193, 55, 55, 0.14);
}

.signup-field__error {
  min-height: 1.1rem;
  color: #c13737;
  font-size: 0.82rem;
  line-height: 1.3;
}

.signup-form__button {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.signup-form__button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.signup-form__status {
  grid-column: 1 / -1;
  min-height: 1.4rem;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.signup-form__status.is-loading {
  color: var(--primary);
}

.signup-form__status.is-success {
  color: #137b4c;
}

.signup-form__status.is-error {
  color: #c13737;
}

.success-modal[hidden] {
  display: none !important;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(1, 14, 30, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.success-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.success-modal__dialog {
  position: relative;
  width: min(100%, 480px);
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 34px 28px 28px;
  border-radius: 24px;
  border: 1px solid rgba(44, 188, 224, 0.22);
  background:
    radial-gradient(circle at top left, rgba(137, 231, 255, 0.26), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 253, 0.98));
  box-shadow: 0 30px 60px rgba(2, 17, 38, 0.34);
  text-align: center;
}

.success-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 65, 114, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.success-modal__close:hover {
  border-color: rgba(44, 188, 224, 0.8);
  transform: scale(1.04);
}

.success-modal__icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #2cbce0, #89e7ff);
  color: var(--primary-dark);
  font-size: 2rem;
}

.success-modal__dialog h3 {
  margin: 4px 0 0;
  color: var(--heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.success-modal__dialog p {
  margin: 0;
  max-width: 32ch;
  line-height: 1.7;
  color: var(--primary-soft);
}

.success-modal__action {
  width: min(100%, 220px);
  margin-top: 4px;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border-radius: 26px 26px 20px 20px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  box-shadow: var(--shadow);
}

.cta-section > .button {
  flex: 0 0 auto;
  min-width: min(100%, 320px);
  justify-content: center;
  gap: 14px;
  padding-inline: 26px;
}

.button i {
  position: relative;
  z-index: 1;
  font-size: 1.32rem;
  line-height: 1;
}

.button-icon-image {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex: 0 0 auto;
}

.cta-section .eyebrow,
.cta-section h2,
.cta-section p {
  color: #fff;
}

.cta-section h2 {
  max-width: 18ch;
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.cta-section p {
  margin: 0;
  max-width: 55ch;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 34px;
  border-radius: 22px 22px 18px 18px;
  background: #fff;
  border: 1px solid rgba(20, 65, 114, 0.08);
}

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

.site-footer p {
  margin: 0;
  text-align: right;
  font-size: 0.92rem;
  line-height: 1.55;
}

.site-footer p strong {
  font-size: 0.96rem;
  line-height: 1.7;
}

.page-masterclass .info-strip {
  background: linear-gradient(90deg, rgba(14, 78, 122, 0.08), rgba(255, 248, 220, 0.42));
  border-color: rgba(14, 78, 122, 0.12);
}

.page-masterclass .vaccines-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 251, 0.98));
}

.page-masterclass .vaccine-card {
  border-color: rgba(74, 201, 197, 0.28);
  background:
    linear-gradient(180deg, rgba(74, 201, 197, 0.08), rgba(255, 255, 255, 1) 38%);
}

.page-masterclass .emphasis-card {
  background: linear-gradient(135deg, #0a2037, #16557b);
}

.page-masterclass .love-section {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  justify-content: center;
}

.page-masterclass .speaker-figure {
  justify-self: center;
}

.page-masterclass .love-copy {
  justify-self: center;
  max-width: 560px;
}

.page-masterclass .support-section {
  background:
    radial-gradient(circle at left top, rgba(74, 201, 197, 0.12), transparent 26%),
    radial-gradient(circle at right center, rgba(255, 211, 110, 0.14), transparent 18%),
    linear-gradient(180deg, #f8fbfc, #edf4f5);
  border: 1px solid rgba(20, 65, 114, 0.08);
}

.page-masterclass .support-audience-card {
  border-color: rgba(74, 201, 197, 0.24);
}

.page-masterclass .signup-section {
  background:
    radial-gradient(circle at right top, rgba(255, 211, 110, 0.16), transparent 20%),
    radial-gradient(circle at left center, rgba(74, 201, 197, 0.14), transparent 24%),
    linear-gradient(180deg, #f8fbfc, #edf4f5);
}

.page-masterclass .cta-section {
  background: linear-gradient(90deg, #071c31, #14506f);
}

.not-found-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.not-found {
  width: min(720px, 100%);
  padding: 40px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.not-found h1 {
  margin-bottom: 16px;
}

.not-found p {
  margin: 0 0 18px;
  line-height: 1.7;
}

.not-found__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@keyframes gallery-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes hero-stars-drift {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 0.62;
  }

  to {
    transform: translate3d(0, -8px, 0);
    opacity: 0.8;
  }
}

@media (max-width: 1080px) {
  .cta-section,
  .site-footer,
  .info-strip,
  .support-section,
  .love-section,
  .hero-section {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .topnav {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

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

  .support-section__grid {
    grid-template-columns: 1fr;
  }

  .signup-section {
    grid-template-columns: 1fr;
  }

  .gallery-slide {
    flex-basis: 36vw;
  }

  .cta-section .button {
    width: 100%;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    overflow-x: clip;
  }

  .campaign-nav {
    padding: 20px 24px;
    margin-bottom: 0;
  }

  .topbar,
  .hero-section,
  .vaccines-section,
  .info-strip,
  .support-section,
  .signup-section,
  .love-section,
  .cta-section,
  .site-footer {
    padding: 24px;
  }

  .hero-section {
    left: auto;
    width: 100%;
    margin-left: 0;
    border-radius: 0;
    gap: 40px;
    min-height: 640px;
    padding: 36px 28px 28px;
  }

  .page-kids .hero-section,
  .page-gestantes .hero-section {
    padding-top: 36px;
  }

  .hero-background {
    background-position: 62% center;
  }

  .gallery-marquee-section {
    left: auto;
    width: 100%;
    margin-left: 0;
  }

  .hero-mobile-brand {
    position: static;
    width: 100%;
    justify-content: center;
    margin-bottom: -8px;
  }

  .hero-mobile-brand img {
    width: min(102px, 30vw);
  }

  .page-kids .hero-mobile-brand img,
  .page-gestantes .hero-mobile-brand img {
    width: min(94px, 28vw);
  }

  :root {
    --section-spacing: 24px;
  }

  section + section {
    margin-top: 0;
  }

  .gallery-marquee-section,
  .info-strip,
  .vaccines-section,
  .support-section,
  .signup-section,
  .love-section,
  .cta-section,
  .site-footer {
    margin-top: var(--section-spacing);
    border-radius: 0;
  }

  .topbar {
    position: static;
  }

  .gallery-marquee-section {
    margin-bottom: 0;
  }
  .hero-section h1 {
    max-width: none;
    width: 100%;
    font-size: clamp(2.45rem, 9.6vw, 3.45rem);
    line-height: 1.02;
    text-wrap: pretty;
  }

  .hero-section::after {
    background:
      linear-gradient(180deg, rgba(0, 16, 31, 0.36) 0%, rgba(0, 16, 31, 0.54) 32%, rgba(0, 16, 31, 0.72) 100%),
      linear-gradient(90deg, rgba(0, 16, 31, 0.18) 0%, rgba(0, 16, 31, 0.08) 100%);
  }

  .hero-badge {
    font-size: 0.76rem;
  }

  .hero-card h2 {
    font-size: 1.9rem;
  }

  .hero-card p,
  .hero-list li {
    font-size: 0.98rem;
  }

  .hero-lead {
    max-width: unset;
    font-size: 1.55rem;
    line-height: 1.12;
    margin-top: 24px;
  }

  .hero-description {
    max-width: none;
    font-size: 1.08rem;
    line-height: 1.75;
  }

  .hero-copy {
    width: 100%;
    padding: 24px 20px;
    background: rgba(0, 0, 0, var(--hero-panel-opacity));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .hero-card {
    width: 100%;
    padding: 24px 20px;
    background: rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .hero-card-stack {
    width: 100%;
  }

  .hero-actions {
    margin-top: 34px;
  }

  .hero-event-card {
    margin-top: 0;
    padding: 16px;
    border-radius: 20px;
  }

  .hero-event-card__top {
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .hero-event-card__body {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-event-card__calendar {
    width: 100%;
    max-width: 140px;
    padding: 12px 10px 14px;
  }

  .hero-event-card__title {
    font-size: 1.2rem;
  }

  .hero-event-card__meta-item {
    font-size: 0.94rem;
    line-height: 1.35;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .section-heading h2,
  .love-copy h2,
  .cta-section h2 {
    max-width: unset;
    font-size: 2rem;
  }

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

  .support-section,
  .signup-section {
    padding: 24px;
  }

  .support-section__heading {
    margin-bottom: 16px;
  }

  .support-section__heading h2,
  .support-section__lead {
    max-width: none;
  }

  .support-section__grid {
    grid-template-columns: 1fr;
  }

  .support-section__lead {
    margin-bottom: 22px;
  }

  .speaker-figure.reveal {
    transform: translate3d(0, 24px, 0) scale(0.98);
  }

  .speaker-figure.reveal.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .signup-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .success-modal {
    padding: 14px;
  }

  .success-modal__dialog {
    padding: 30px 18px 22px;
    border-radius: 20px;
  }

  .success-modal__close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
  }

  .gallery-marquee-section {
    height: 240px;
  }

  .gallery-slide {
    flex-basis: 72vw;
    min-width: 220px;
  }

  .reveal-left,
  .reveal-right {
    transform: translate3d(0, 32px, 0);
  }

  .button,
  .hero-actions .button {
    width: 100%;
    max-width: none;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  .site-footer {
    align-items: center;
    text-align: center;
  }

  .site-footer .footer-brand {
    width: 100%;
    justify-content: center;
  }

  .site-footer .footer-brand img {
    max-width: 140px;
    height: auto;
  }

  .site-footer p {
    width: 100%;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .site-footer p strong {
    font-size: 0.88rem;
  }

  .not-found {
    padding: 28px 24px;
  }

  .not-found__links .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  :root {
    --section-spacing: 18px;
  }

  .hero-section {
    min-height: 600px;
    padding: 28px 20px 24px;
    gap: 24px;
  }

  .page-kids .hero-section,
  .page-gestantes .hero-section {
    padding-top: 28px;
  }

  .hero-background {
    background-position: 68% center;
  }

  .hero-copy,
  .hero-card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .hero-card-stack {
    gap: 14px;
  }

  .hero-lead {
    font-size: 1.35rem;
  }

  .hero-description,
  .hero-card p,
  .hero-list li {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .hero-event-card {
    padding: 14px;
    border-radius: 18px;
    gap: 14px;
  }

  .hero-event-card__pill {
    min-height: 28px;
    padding: 5px 10px;
    font-size: 0.68rem;
  }

  .hero-event-card__body {
    gap: 12px;
  }

  .hero-event-card__calendar {
    max-width: none;
    width: 100%;
    padding: 10px 10px 12px;
    border-radius: 16px;
  }

  .hero-event-card__month-year {
    padding-bottom: 8px;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
  }

  .hero-event-card__day {
    font-size: 2.5rem;
  }

  .hero-event-card__content {
    gap: 10px;
  }

  .hero-event-card__title {
    font-size: 1.05rem;
    line-height: 1.12;
  }

  .hero-event-card__meta {
    gap: 8px;
  }

  .hero-event-card__meta-item {
    grid-template-columns: 16px 1fr;
    gap: 8px;
    font-size: 0.9rem;
    line-height: 1.32;
  }

  .hero-event-card__meta-item strong {
    min-width: 68px;
    margin-right: 4px;
  }
}

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

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gallery-marquee-track {
    animation: none;
  }

  .hero-section::before {
    animation: none;
  }

  .hero-background {
    transition: none;
    transform: none;
  }

}
