@font-face {
  font-family: "Geist Fallback";
  src: local("Arial");
  size-adjust: 104.76%;
  ascent-override: 95.94%;
  descent-override: 28.16%;
  line-gap-override: 0%;
}

:root {
  /* Brandbook Jean Volpato v1 */
  --color-purple: #454086;
  --color-magenta: #ff0050;
  --color-magenta-deep: #d5006d;
  --color-orange: #f33f27;
  --color-amber: #ffb74b;
  --color-yellow: #f3f061;
  --color-teal: #076179;
  --color-cyan: #55d8e2;

  --color-black: #d5006d;
  --color-ink: #16142e;
  --color-muted: #5b5874;
  --color-line: #e6e4ef;
  --color-bg: #ffffff;
  --color-soft: #f4f3f8;
  --color-soft-2: #eef7f8;

  --gradient-brand: linear-gradient(to top right, #d5006d 0%, #d5006d 42%, #ff0050 100%);
  --gradient-hero:
    radial-gradient(ellipse 85% 75% at 0% 100%, #d5006d 0%, transparent 58%),
    radial-gradient(ellipse 72% 62% at 100% 0%, #ff0050 0%, transparent 52%),
    linear-gradient(to top right, #d5006d 0%, #c80062 36%, #e80054 68%, #ff0050 100%);
  --gradient-sunset: linear-gradient(to top right, #ff3b1f, #ffb347, #ffe047);
  --gradient-program: linear-gradient(to top right, #c40052, #ff3b1f);
  --gradient-ocean: linear-gradient(to top right, #00647a, #00bbd4);
  --gradient-alvorada: var(--gradient-brand);
  --gradient-entardecer: var(--gradient-sunset);
  --gradient-ceu: var(--gradient-ocean);

  --font: Geist, "Geist Fallback", system-ui, sans-serif;
  --font-display: Geist, "Geist Fallback", system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 2px rgba(22, 20, 46, 0.04), 0 12px 32px rgba(22, 20, 46, 0.06);
  --nav-h: 64px;
  --max: 1120px;
  --pad: 1.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 768px) {
  :root { --pad: 1.75rem; --nav-h: 72px; }
}

@media (min-width: 1024px) {
  :root { --pad: 2rem; }
}

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

html { scroll-behavior: smooth; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--color-magenta);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: var(--pad);
  top: -48px;
  z-index: 100;
  background: var(--gradient-brand);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}

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

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 50;
  background: var(--gradient-brand);
  pointer-events: none;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* Type */
h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.kicker {
  margin: 0 0 10px;
  font-family: var(--font);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-purple);
}

.section-title {
  font-size: clamp(1.65rem, 3.4vw, 2.4rem);
  max-width: 16ch;
  color: inherit;
}

.section-lead {
  margin: 0;
  color: var(--color-muted);
  font-size: 1rem;
  max-width: 40ch;
  line-height: 1.65;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}

@media (min-width: 800px) {
  .section-head {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: 48px;
    margin-bottom: 48px;
  }
}

.section {
  padding: 72px 0;
}

@media (min-width: 768px) {
  .section { padding: 96px 0; }
}

.section.soft { background: var(--color-soft); }
.section.soft-2 { background: var(--color-soft-2); }
.section.black {
  background: var(--gradient-brand);
  color: #fff;
}

.section.black .section-title,
.section.black h2,
.section.black h3 { color: #fff; }

.section.black .section-lead { color: rgba(255, 255, 255, 0.9); }
.section.black .kicker { color: #ffe047; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease);
}

.btn-primary {
  background: var(--color-ink);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-magenta);
}

.btn-ghost {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-line);
}

.btn-ghost:hover {
  border-color: var(--color-ink);
  background: var(--color-soft);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost-light:hover {
  background: #fff;
  color: var(--color-ink);
  border-color: #fff;
}

.hero .btn-primary,
.section.black .btn-primary,
.nav:not(.is-solid) .btn-primary,
.mobile-panel .btn-primary {
  background: #fff;
  color: var(--color-magenta-deep);
}

.hero .btn-primary:hover,
.section.black .btn-primary:hover,
.nav:not(.is-solid) .btn-primary:hover,
.mobile-panel .btn-primary:hover {
  background: #fff;
  color: var(--color-magenta);
}

@media (max-width: 767px) {
  .nav-cta .btn { display: none; }
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.nav.is-solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--color-line);
  box-shadow: 0 1px 0 rgba(22, 20, 46, 0.03);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
}

.nav-logo {
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.nav-logo-light { display: none; }
.nav.is-solid .nav-logo-dark { display: none; }
.nav.is-solid .nav-logo-light { display: block; }

@media (min-width: 768px) {
  .nav-logo { height: 44px; max-width: 210px; }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav.is-solid .nav-links a { color: var(--color-muted); }
.nav.is-solid .nav-links a:hover,
.nav.is-solid .nav-links a.is-active {
  color: var(--color-ink);
  background: var(--color-soft);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.nav.is-solid .nav-toggle {
  border-color: var(--color-line);
  background: #fff;
  color: var(--color-ink);
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

.mobile-panel {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  background: var(--gradient-brand);
  padding: 12px var(--pad) 24px;
  overflow: auto;
}

.mobile-panel.is-open { display: flex; flex-direction: column; }

.mobile-panel a {
  display: block;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  background-color: #d5006d;
  background-image: var(--gradient-hero);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: var(--nav-h) 0 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 28%, transparent 72%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, transparent 42%, transparent 68%, rgba(255, 0, 80, 0.08) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-mesh {
  position: absolute;
  width: min(58vw, 720px);
  height: min(58vw, 720px);
  right: -6%;
  top: -12%;
  background: radial-gradient(circle, rgba(255, 0, 80, 0.28) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
  animation: meshDrift 16s ease-in-out infinite alternate;
}

.hero-mesh::after {
  content: "";
  position: absolute;
  width: 75%;
  height: 75%;
  left: -35%;
  bottom: -18%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.16) 0%, transparent 68%);
}

@keyframes meshDrift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-2%, 3%) scale(1.04); }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 72% 38%, #000 6%, transparent 62%);
  pointer-events: none;
  opacity: 0.28;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  width: 100%;
  height: calc(100svh - var(--nav-h));
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
  }

  .hero-copy {
    display: flex;
    align-items: center;
  }
}

.hero-logo {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin: 0 0 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 11ch;
  margin: 0 0 14px;
}

.hero h1 em {
  font-style: italic;
  color: #fff;
}

.hero-sub {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.05rem;
  max-width: 38ch;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  height: min(calc(100svh - var(--nav-h) - 40px), 680px);
  max-width: 100%;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

@media (min-width: 900px) {
  .hero-frame {
    justify-self: stretch;
    align-self: center;
  }
}

@media (max-width: 899px) {
  .hero {
    align-items: stretch;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    justify-content: flex-end;
  }

  .hero-frame {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: auto;
    margin: 0;
  }

  .hero-frame img {
    object-position: center 28%;
  }

  .hero-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    width: 100%;
    padding: 0 12px calc(28px + env(safe-area-inset-bottom, 0px));
    margin-bottom: 4vh;
    text-align: center;
    pointer-events: none;
  }

  .hero-overlay .hero-actions,
  .hero-overlay .hero-logo,
  .hero-overlay h1 {
    pointer-events: auto;
  }

  .hero-logo {
    width: min(72vw, 260px);
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 11.5vw, 3.35rem);
    max-width: none;
    text-align: center;
    margin: 0;
    line-height: 1.05;
  }

  .hero h1 em { display: block; }
  .hero-sub { display: none; }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    max-width: 420px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 10px;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
}

/* About */
.about-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
  }

  .about-photo-shell {
    margin-inline: 0 auto;
  }
}

.about-photo {
  margin: 0;
}

.about-photo-shell {
  position: relative;
  width: min(100%, 420px);
  margin-inline: auto;
  perspective: 900px;
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.about-photo-shell.is-visible {
  opacity: 1;
  transform: none;
}

.about-photo-glow {
  position: absolute;
  inset: 10% 6% -6% 10%;
  border-radius: 28px 28px 28px 10px;
  background: var(--gradient-brand);
  filter: blur(32px);
  opacity: 0.42;
  transition: opacity 300ms var(--ease), transform 400ms var(--ease);
  pointer-events: none;
}

.about-photo-frame {
  position: relative;
  padding: 4px;
  border-radius: 28px 28px 28px 10px;
  background: var(--gradient-brand);
  box-shadow:
    0 22px 44px rgba(213, 0, 109, 0.22),
    0 8px 0 rgba(213, 0, 109, 0.08);
  transform-style: preserve-3d;
  transition: transform 450ms var(--ease), box-shadow 450ms var(--ease);
  overflow: hidden;
}

.about-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  max-height: 560px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 24px 24px 24px 8px;
  transition: transform 450ms var(--ease);
}

.about-photo-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-magenta-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(22, 20, 46, 0.14);
  transition: transform 450ms var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .about-photo-shell:hover .about-photo-glow,
  .about-photo-shell:focus-within .about-photo-glow {
    opacity: 0.58;
    transform: scale(1.03);
  }

  .about-photo-shell:hover .about-photo-frame,
  .about-photo-shell:focus-within .about-photo-frame {
    transform: rotateY(-5deg) rotateX(2deg) translateY(-6px);
    box-shadow:
      0 30px 56px rgba(213, 0, 109, 0.28),
      0 10px 0 rgba(213, 0, 109, 0.1);
  }

  .about-photo-shell:hover .about-photo-frame img,
  .about-photo-shell:focus-within .about-photo-frame img {
    transform: scale(1.03);
  }

  .about-photo-shell:hover .about-photo-tag,
  .about-photo-shell:focus-within .about-photo-tag {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-photo-shell {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about-photo-frame,
  .about-photo-frame img,
  .about-photo-glow,
  .about-photo-tag {
    transition: none;
  }
}

.about-body p {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-body p strong { color: var(--color-ink); }

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

@media (min-width: 600px) {
  .chips { grid-template-columns: 1fr 1fr; gap: 12px 24px; }
}

.chip {
  background: transparent;
  border: 0;
  border-left: 2px solid var(--color-magenta);
  border-radius: 0;
  padding: 4px 0 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1.35;
}

.quote {
  margin: 28px 0 0;
  padding: 0 0 0 18px;
  border-left: 2px solid var(--color-magenta);
  font-family: var(--font);
  font-style: normal;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--color-ink);
}

/* Program — manifesto editorial (sem cards) */
.section.program {
  background: var(--gradient-program);
  color: #fff;
}

.section.program .section-title,
.section.program h3 {
  color: #fff;
}

.section.program .section-lead {
  color: rgba(255, 255, 255, 0.92);
}

.section.program .kicker {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.program-layout {
  display: grid;
  gap: 40px;
}

@media (min-width: 960px) {
  .program-layout {
    grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.35fr);
    gap: 64px;
    align-items: start;
  }
}

.program-intro {
  max-width: 22rem;
}

@media (min-width: 960px) {
  .program-intro {
    position: sticky;
    top: calc(var(--nav-h) + 28px);
  }
}

.program-intro .section-title {
  margin-bottom: 14px;
  max-width: 11ch;
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.16);
}

.program-count {
  display: none;
  margin: 28px 0 0;
  align-items: baseline;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.program-count span {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: 3.2rem;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
}

@media (min-width: 960px) {
  .program-count { display: flex; }
}

.program-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.program-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 180ms var(--ease);
}

@media (min-width: 600px) {
  .program-list li {
    gap: 22px;
    padding: 22px 0;
  }
}

.program-list li:hover {
  background: rgba(255, 255, 255, 0.06);
}

.program-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.12) 42%, rgba(0, 0, 0, 0.08) 100%);
  border: 2px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.78),
    inset 0 -3px 0 rgba(0, 0, 0, 0.14),
    0 5px 0 rgba(0, 0, 0, 0.16),
    0 10px 22px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.program-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.18));
}

.program-list li:hover .program-icon {
  border-color: #fff;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.9),
    inset 0 -3px 0 rgba(0, 0, 0, 0.12),
    0 6px 0 rgba(0, 0, 0, 0.18),
    0 12px 26px rgba(0, 0, 0, 0.22);
}

.program-list h3 {
  margin: 0 0 4px;
  font-family: var(--font);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.program-list p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
}

.program-list li.is-accent {
  padding-top: 24px;
  padding-bottom: 24px;
}

.program-list li.is-accent h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

/* Stats */
.stats {
  background: var(--gradient-ocean);
  padding: 72px 0;
  color: #fff;
}

@media (min-width: 768px) {
  .stats { padding: 88px 0; }
}

.stats-wrap {
  display: grid;
  gap: 36px;
}

@media (min-width: 900px) {
  .stats-wrap {
    grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
    gap: 48px 64px;
    align-items: start;
  }
}

.stats-head {
  max-width: 18ch;
}

.stats-head .kicker {
  color: rgba(255, 255, 255, 0.82);
}

.stats-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
}

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

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.stat-card {
  position: relative;
  padding: 22px 20px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.34);
  }
}

.stat-card--featured {
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 16px 36px rgba(0, 0, 0, 0.16);
}

@media (min-width: 640px) {
  .stat-card--featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 24px;
    align-items: end;
    padding: 24px 24px 22px;
  }

  .stat-card--featured .stat-label {
    grid-column: 1;
    grid-row: 1;
  }

  .stat-card--featured b {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: right;
  }

  .stat-card--featured p {
    grid-column: 1;
    grid-row: 2;
    max-width: 36ch;
    margin: 0;
  }
}

.stat-label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.stat-card b,
.stat-card .stat-static {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.6rem);
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.stat-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Pautas */
.pauta-explorer { display: grid; gap: 0; }

.pauta-picks {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--color-line);
}

.pauta-picks::-webkit-scrollbar { display: none; }

@media (min-width: 900px) {
  .pauta-picks {
    flex-wrap: wrap;
    overflow: visible;
  }
}

.pauta-pick {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 14px 16px;
  min-height: 48px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-muted);
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease;
}

.pauta-pick svg {
  width: 18px;
  height: 18px;
  color: currentColor;
  opacity: 0.7;
}

.pauta-pick:hover { color: var(--color-ink); }
.pauta-pick:hover svg { opacity: 1; }

.pauta-pick.is-active {
  color: var(--color-purple);
  border-bottom-color: var(--color-magenta);
}

.pauta-pick.is-active svg {
  color: var(--color-magenta);
  opacity: 1;
}

.pauta-stage {
  background: var(--color-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  min-height: 280px;
}

@media (min-width: 768px) {
  .pauta-stage { padding: 40px 40px 32px; min-height: 300px; }
}

.pauta-panel { display: none; }
.pauta-panel.is-active { display: block; animation: fadeIn 280ms var(--ease); }
.pauta-panel[hidden] { display: none !important; }

.pauta-panel h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  margin-bottom: 12px;
  max-width: 24ch;
  color: var(--color-ink);
}

.pauta-panel p {
  margin: 0;
  color: var(--color-muted);
  max-width: 62ch;
  font-size: 1.02rem;
  line-height: 1.65;
}

.pauta-panel ul {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.pauta-panel li {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid rgba(22, 20, 46, 0.08);
  color: var(--color-ink);
  font-size: 0.95rem;
}

.pauta-panel li svg {
  width: 18px;
  height: 18px;
  color: var(--color-magenta);
  flex-shrink: 0;
  margin-top: 2px;
}

.pauta-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(22, 20, 46, 0.08);
}

.pauta-nav button {
  background: transparent;
  border: 0;
  min-height: 44px;
  padding: 8px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-purple);
  transition: color 180ms ease;
}

.pauta-nav button:hover { color: var(--color-magenta); }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

/* Mandato */
.work-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 700px) {
  .work-list { grid-template-columns: 1fr 1fr; gap: 14px; }
}

.work-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  transition: background 200ms ease, border-color 200ms ease;
}

.work-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.work-item h3 {
  font-family: var(--font);
  font-style: normal;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: -0.02em;
}

.work-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.5;
}

.timeline {
  margin-top: 40px;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.t-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.t-item span {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffe047;
  margin-bottom: 6px;
}

.t-item h3 {
  font-family: var(--font);
  font-style: normal;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: #fff;
}

.t-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.invest {
  margin-top: 40px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  gap: 20px;
}

@media (min-width: 800px) {
  .invest {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 32px;
  }
}

.invest .kicker { color: #ffe047; }

.invest b {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.04em;
  margin: 6px 0 10px;
  color: #fff;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
}

.invest p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 52ch;
  line-height: 1.6;
}

/* Vote */
.vote {
  display: grid;
  gap: 40px;
}

@media (min-width: 800px) {
  .vote {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
}

.vote-logo { margin-top: 20px; }

.vote-logo img {
  display: block;
  width: min(100%, 300px);
  height: auto;
}

.steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--color-line);
}

.step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-line);
}

.step b {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-purple);
}

.step:nth-child(2) b { color: var(--color-magenta); }
.step:nth-child(3) b { color: var(--color-orange); }
.step:nth-child(4) b { color: var(--color-teal); }

.step strong {
  display: block;
  font-size: 0.95rem;
}

.step p {
  margin: 4px 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* CTA / form */
.section.band {
  background: var(--color-soft-2);
}

.cta-box {
  display: grid;
  gap: 36px;
}

@media (min-width: 800px) {
  .cta-box {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
  }
}

.contact-line {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.contact-line a {
  color: var(--color-purple);
  font-weight: 700;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.socials a {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-line);
  background: #fff;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.socials a:hover {
  border-color: var(--color-cyan);
  background: rgba(85, 216, 226, 0.12);
  color: var(--color-teal);
}

.socials svg { width: 18px; height: 18px; }

.form { display: grid; gap: 14px; }

.form label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 700;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

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

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--color-magenta);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 0, 80, 0.14);
}

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

@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-msg {
  display: none;
  background: #e8f8f1;
  color: #146246;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
}

.form-msg.is-on { display: block; }

/* Footer */
footer {
  background: var(--gradient-program);
  color: rgba(255, 255, 255, 0.88);
  padding: 56px 0 28px;
}

.foot-grid {
  display: grid;
  gap: 28px;
  padding-bottom: 28px;
}

@media (min-width: 700px) {
  .foot-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
  }
}

.foot-logo {
  display: block;
  width: min(100%, 200px);
  height: auto;
  margin: 0 0 14px;
}

.foot-grid h3 {
  font-family: var(--font);
  font-style: normal;
  font-weight: 700;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.foot-grid a,
.foot-grid p {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.88);
}

.foot-grid a { cursor: pointer; }
.foot-grid a:hover { color: #fff; }

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 18px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
}

.legal-id {
  margin: 0 0 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
}

.legal a {
  color: #fff;
  text-decoration: underline;
}

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