/* Frevo Sertão — design tokens + glassmorphism + cordel contemporâneo */
:root {
  --amber-sun: #f59e0b;
  --amber-glow: #fbbf24;
  --terracotta: #c2410c;
  --sienna-deep: #7c2d12;
  --cobalt: #1e40af;
  --cobalt-deep: #1e3a8a;
  --ink: #0f172a;
  --ink-soft: #1e293b;
  --mist: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-highlight: rgba(255, 255, 255, 0.35);
  --shadow-deep: 0 25px 80px rgba(15, 23, 42, 0.45);
  --font-display: "Rye", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  line-height: 1.65;
  color: #e2e8f0;
  background: var(--ink);
  overflow-x: hidden;
}

/* Imagem de fundo + véu para contraste; blobs e grão por cima */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-color: var(--ink);
  background-image: linear-gradient(
      165deg,
      rgba(15, 23, 42, 0.78) 0%,
      rgba(15, 23, 42, 0.55) 40%,
      rgba(30, 58, 95, 0.45) 70%,
      rgba(15, 23, 42, 0.82) 100%
    ),
    url("../assets/fundo%20site%20inicio.png");
  background-size: cover, cover;
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll, scroll;
}

.ambient-bg__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  mix-blend-mode: screen;
}

.ambient-bg__blob--1 {
  width: min(90vw, 520px);
  height: min(90vw, 520px);
  top: -10%;
  left: -15%;
  background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
}

.ambient-bg__blob--2 {
  width: min(80vw, 480px);
  height: min(80vw, 480px);
  bottom: 5%;
  right: -10%;
  background: radial-gradient(circle, #1d4ed8 0%, #dc2626 50%, transparent 70%);
}

.ambient-bg__blob--3 {
  width: min(70vw, 400px);
  height: min(70vw, 400px);
  top: 40%;
  right: 20%;
  background: radial-gradient(circle, #ea580c 0%, transparent 65%);
}

.ambient-bg__grain {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Umbrella-style page curtain */
.umbrella-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.umbrella-transition.is-active {
  pointer-events: auto;
}

.umbrella-transition__panel {
  flex: 1;
  background: linear-gradient(135deg, var(--cobalt-deep) 0%, var(--terracotta) 50%, var(--amber-sun) 100%);
  opacity: 0.97;
  will-change: transform;
}

.umbrella-transition__panel--left {
  transform-origin: right center;
  transform: scaleX(1);
}

.umbrella-transition__panel--right {
  transform-origin: left center;
  transform: scaleX(1);
}

/* Header (rola com a página — não fixo) */
.site-header {
  position: relative;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
}

.site-header__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

.site-header__logo {
  display: block;
  width: auto;
  height: clamp(40px, 10vw, 56px);
  max-width: min(220px, 58vw);
  object-fit: contain;
  object-position: left center;
}

.site-header__nav {
  display: flex;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  justify-content: center;
}

.site-header__nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.25s ease, transform 0.25s var(--ease-elastic);
}

.site-header__nav a:hover {
  color: var(--amber-glow);
  transform: translateY(-2px);
}

.site-header__player {
  flex: 1 1 200px;
  max-width: min(100%, 400px);
  min-width: min(100%, 260px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.site-header__player iframe {
  display: block;
  width: 100%;
  border: 0;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .site-header__player {
    order: 4;
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Glass panels */
.glass-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-deep), inset 0 1px 0 var(--glass-highlight);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.glass-panel--hero {
  padding: clamp(2rem, 6vw, 4rem);
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6rem, 12vw, 8rem) 1.5rem 4rem;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-glow);
}

.hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}

.hero__lead {
  margin: 0 auto 2rem;
  max-width: 36ch;
  color: #cbd5e1;
  font-size: 1.05rem;
}

/* Neon CTA */
.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  color: #0f172a;
  background: linear-gradient(135deg, var(--amber-glow) 0%, var(--amber-sun) 100%);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s var(--ease-elastic), box-shadow 0.35s ease, color 0.25s ease;
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.5), 0 0 40px rgba(251, 191, 36, 0.45);
}

.btn-cta:hover {
  transform: scale(1.06);
  color: var(--ink);
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.8), 0 0 60px rgba(251, 191, 36, 0.55);
}

.btn-cta:active {
  transform: scale(0.98);
}

.btn-cta__glow {
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 180deg, transparent, rgba(255, 255, 255, 0.5), transparent 40%);
  animation: spinGlow 4s linear infinite;
  opacity: 0.35;
  z-index: -1;
}

@keyframes spinGlow {
  to {
    transform: rotate(360deg);
  }
}

.btn-cta__label {
  position: relative;
  z-index: 1;
}

.btn-cta--secondary {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, var(--cobalt) 100%);
  color: #f8fafc;
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.4), 0 0 30px rgba(37, 99, 235, 0.35);
}

.btn-cta--secondary:hover {
  box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.7), 0 0 50px rgba(37, 99, 235, 0.45);
}

/* Parallax decor */
.hero__parallax {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero__parallax--front {
  z-index: 3;
}

.decor {
  position: absolute;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.35));
}

.decor--umbrella-1 {
  width: min(28vw, 200px);
  top: 12%;
  left: 5%;
  transform: rotate(-12deg);
}

.decor--umbrella-2 {
  width: min(32vw, 220px);
  bottom: 8%;
  right: 4%;
  transform: rotate(18deg);
}

.decor--cactus-1 {
  width: min(18vw, 120px);
  bottom: 18%;
  left: 12%;
  transform: rotate(5deg);
  opacity: 0.9;
}

/* Sections */
.section {
  padding: clamp(4rem, 10vw, 7rem) 1.5rem;
}

.section__container {
  max-width: 1120px;
  margin: 0 auto;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #fff;
  text-align: center;
  margin: 0 0 0.75rem;
}

.section__title--left {
  text-align: left;
}

.section__subtitle {
  text-align: center;
  color: #94a3b8;
  margin: 0 0 2.5rem;
  max-width: 42ch;
  margin-inline: auto;
}

/* Encontro */
.encontro__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .encontro__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.encontro__text {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.flow-text {
  margin: 0 0 1.25rem;
  color: #e2e8f0;
  font-size: 1.05rem;
}

.flow-text:last-child {
  margin-bottom: 0;
}

.flow-text strong {
  color: var(--amber-glow);
}

.mask-organic {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-deep);
}

.mask-organic img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  clip-path: polygon(
    8% 2%,
    95% 0%,
    100% 18%,
    92% 45%,
    100% 72%,
    88% 100%,
    12% 98%,
    0% 78%,
    8% 52%,
    0% 22%
  );
}

.encontro__caption {
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: #94a3b8;
  font-style: italic;
  margin: 0;
  background: rgba(15, 23, 42, 0.5);
}

/* Lineup cards */
.lineup__cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .lineup__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lineup-card {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  cursor: default;
  transition: transform 0.45s var(--ease-elastic), box-shadow 0.45s ease, border-color 0.35s ease;
  transform-style: preserve-3d;
}

.lineup-card:hover {
  transform: scale(1.04) translateZ(0);
  border-color: rgba(251, 191, 36, 0.45);
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.15), 0 0 0 1px rgba(251, 191, 36, 0.2);
}

.lineup-card__shine {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.18), transparent 45%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.lineup-card:hover .lineup-card__shine {
  opacity: 1;
}

.lineup-card__icon {
  font-size: 1.75rem;
  color: var(--amber-glow);
  margin-bottom: 0.75rem;
}

.lineup-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: #fff;
}

.lineup-card__text {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.95rem;
}

/* Imersão */
.imersao__layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

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

.imersao__copy {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.imersao__copy p {
  margin: 0;
  color: #e2e8f0;
}

.imersao__collage {
  position: relative;
  min-height: 340px;
}

.imersao__piece {
  position: absolute;
  width: 55%;
  max-width: 280px;
}

.imersao__piece--leather {
  top: 0;
  left: 0;
  z-index: 1;
}

.imersao__piece--straw {
  bottom: 0;
  right: 0;
  z-index: 2;
}

.mask-organic--sm img {
  aspect-ratio: 3 / 4;
  clip-path: polygon(5% 0%, 100% 8%, 95% 92%, 0% 100%);
}

.mask-organic--md img {
  aspect-ratio: 1;
  clip-path: polygon(15% 0%, 100% 12%, 88% 100%, 0% 88%);
}

.imersao__umbrella-float {
  position: absolute;
  width: min(40%, 160px);
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  z-index: 3;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.4));
}

/* Logística + mapa escuro */
.logistica__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .logistica__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.logistica__info {
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.logistica__heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--amber-glow);
  margin: 1.25rem 0 0.5rem;
}

.logistica__heading:first-child {
  margin-top: 0;
}

.logistica__list {
  margin: 0;
  padding-left: 1.25rem;
  color: #cbd5e1;
}

.logistica__list li {
  margin-bottom: 0.5rem;
}

.map-stylized {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  border: 1px solid rgba(251, 191, 36, 0.25);
  overflow: hidden;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.5);
}

.map-stylized__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(251, 191, 36, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 191, 36, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
}

.map-stylized__river {
  position: absolute;
  width: 120%;
  height: 18%;
  left: -10%;
  bottom: 28%;
  background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.35), transparent);
  border-radius: 50%;
  filter: blur(8px);
}

.map-stylized__pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: radial-gradient(circle, #fbbf24 0%, #d97706 100%);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.35), 0 0 20px rgba(251, 191, 36, 0.6);
  animation: pinPulse 2.5s ease-in-out infinite;
}

@keyframes pinPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}

.map-stylized__label {
  position: absolute;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(251, 191, 36, 0.85);
  font-weight: 600;
}

.map-stylized__label--1 {
  left: 28%;
  top: 48%;
  transform: translateX(-50%);
}

.map-stylized__label--2 {
  left: 52%;
  top: 44%;
  transform: translateX(-50%);
}

.map-stylized__label--3 {
  left: 68%;
  top: 62%;
  transform: translateX(-50%);
}

.map-stylized__note {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: #94a3b8;
}

.footer-cta {
  margin-top: 2.5rem;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-cta__text {
  margin: 0;
  font-weight: 600;
  color: #e2e8f0;
}

.site-main {
  position: relative;
}

/* Banner identidade — mensagens rotativas (content.json) */
.banner-strip {
  position: relative;
  z-index: 40;
  margin-top: 0;
  padding: 0.65rem clamp(1rem, 4vw, 2rem);
  background: linear-gradient(
    90deg,
    rgba(30, 58, 138, 0.55) 0%,
    rgba(194, 65, 12, 0.45) 45%,
    rgba(245, 158, 11, 0.4) 100%
  );
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.banner-strip__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 6px,
    rgba(255, 255, 255, 0.12) 6px,
    rgba(255, 255, 255, 0.12) 7px
  );
  pointer-events: none;
}

.banner-strip__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

.banner-strip__edition {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--amber-glow);
  text-transform: uppercase;
  white-space: nowrap;
}

.banner-strip__msg {
  margin: 0;
  flex: 1 1 220px;
  text-align: center;
  font-weight: 700;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow: 0 0 24px rgba(251, 191, 36, 0.35);
  transition: opacity 0.2s ease;
}

.banner-strip__msg.is-changing {
  opacity: 0.35;
}

.banner-strip__domain {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.65);
  white-space: nowrap;
}

.festival__panel,
.cocar__panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.documentos__grid {
  display: grid;
  gap: 1.5rem;
  max-width: min(100%, 520px);
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.documentos__card {
  padding: clamp(1.5rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.documentos__heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0;
  color: #fff;
}

.documentos__intro {
  margin: 0;
  color: #cbd5e1;
  flex: 1;
}

.btn-cta--doc {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.95) 0%, var(--cobalt) 100%);
  color: #f8fafc;
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.4), 0 0 28px rgba(37, 99, 235, 0.3);
}

@media (min-width: 1200px) {
  #midia-2024 .section__container {
    max-width: min(96vw, 1200px);
  }
}

.midia__video-feature {
  padding: clamp(1.1rem, 3vw, 1.85rem);
  margin-bottom: 1.5rem;
}

.midia__video-wrap--medium {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.midia__video-wrap--medium .midia__youtube-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.midia__video-footer {
  margin: 0.85rem 0 0;
  text-align: center;
}

.midia__video-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: #93c5fd;
  text-decoration: none;
}

.midia__video-link:hover {
  color: var(--amber-glow);
  text-decoration: underline;
}

.midia__text {
  margin: 0 0 1.25rem;
  color: #cbd5e1;
}

.midia__spotify-block {
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.midia__block {
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.midia__label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  color: var(--amber-glow);
}

.midia__embed {
  border-radius: 12px;
  overflow: hidden;
  min-height: 200px;
  background: rgba(0, 0, 0, 0.25);
}

.midia__embed iframe {
  display: block;
  width: 100%;
  border: 0;
  vertical-align: middle;
}

.midia__fallback {
  margin: 0;
  padding: 2rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
}

.vencedoras__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: min(100%, 960px);
  margin-inline: auto;
}

.vencedoras--hall .section__subtitle {
  max-width: 42rem;
  margin-inline: auto;
}

.vencedoras__featured {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(
    155deg,
    rgba(30, 58, 138, 0.45) 0%,
    rgba(15, 23, 42, 0.75) 45%,
    rgba(120, 53, 15, 0.2) 100%
  );
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.2), 0 28px 80px rgba(0, 0, 0, 0.45);
}

.vencedoras__featured-head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.vencedoras__featured-badge {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.25rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0f172a;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: 999px;
}

.vencedoras__concurso-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: #fef3c7;
  text-shadow: 0 2px 24px rgba(251, 191, 36, 0.35);
}

.podium {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 840px) {
  .podium {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.podium-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 1.35rem;
  margin: 0;
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease-elastic);
}

.podium-card:hover {
  transform: translateY(-4px);
}

.podium-card__place {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.85);
}

.podium-card__work {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.35;
  color: #fff;
  flex: 1;
}

.podium-card__artist {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e8f0;
}

.podium-card__city {
  margin: 0;
  font-size: 0.85rem;
  color: #94a3b8;
}

.podium-card--gold {
  border: 1px solid rgba(251, 191, 36, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 16px 48px rgba(180, 83, 9, 0.25);
  background: linear-gradient(165deg, rgba(180, 83, 9, 0.35) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.podium-card--silver {
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: linear-gradient(165deg, rgba(71, 85, 105, 0.35) 0%, rgba(15, 23, 42, 0.55) 100%);
}

.podium-card--bronze {
  border: 1px solid rgba(180, 83, 9, 0.35);
  background: linear-gradient(165deg, rgba(154, 52, 18, 0.25) 0%, rgba(15, 23, 42, 0.55) 100%);
}

.vencedoras__special-wrap {
  text-align: center;
}

.vencedoras__special-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--amber-glow);
}

.vencedoras__special-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .vencedoras__special-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.special-award {
  margin: 0;
  padding: 1.35rem 1.5rem;
  text-align: left;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(96, 165, 250, 0.25);
  background: linear-gradient(145deg, rgba(30, 58, 138, 0.25) 0%, rgba(15, 23, 42, 0.65) 100%);
}

.special-award__label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-glow);
}

.special-award__name {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
}

.special-award__city {
  margin: 0;
  font-size: 0.88rem;
  color: #94a3b8;
}

@media (min-width: 768px) {
  .vencedoras__grid:not(:has(.vencedoras__featured)) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
}

.winner-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
  grid-template-rows: auto 1fr;
}

@media (min-width: 520px) {
  .winner-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    grid-template-rows: 1fr;
    align-items: stretch;
  }
}

.winner-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  aspect-ratio: 4 / 3;
}

.winner-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.winner-card__category {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-glow);
}

.winner-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: #fff;
}

.winner-card__text {
  margin: 0;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.patrocinadores__marquee {
  position: relative;
  overflow: hidden;
  padding: 0.75rem 0;
  margin-top: 0.5rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.5);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.patrocinadores__track {
  --patroc-duration: 40s;
  display: flex;
  width: max-content;
  animation: patrocMarquee var(--patroc-duration, 40s) linear infinite;
  will-change: transform;
}

.patrocinadores__seq {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.patrocinadores__img {
  display: block;
  width: auto;
  height: clamp(72px, 14vw, 120px);
  max-width: none;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

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

@media (prefers-reduced-motion: reduce) {
  .patrocinadores__track {
    animation: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .patrocinadores__seq[aria-hidden="true"] {
    display: none;
  }

  .patrocinadores__img {
    max-width: 100%;
    height: auto;
  }
}

.site-footer {
  text-align: center;
  padding: 2rem 1rem 3rem;
  font-size: 0.85rem;
  color: #64748b;
}

.site-footer__link {
  color: var(--amber-glow);
  text-decoration: none;
}

.site-footer__link:hover {
  text-decoration: underline;
}

.site-footer__hint {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  opacity: 0.85;
}

.site-footer__hint code {
  font-size: 0.85em;
  color: #94a3b8;
}

/* Primeiro toque: botão invisível em tela cheia; áudio oculto (sem barra de controlo) */
body.theme-music-locked {
  overflow: hidden;
}

.theme-music-capture {
  position: fixed;
  inset: 0;
  z-index: 8500;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  -webkit-tap-highlight-color: transparent;
}

.theme-music-capture:focus {
  outline: none;
}

.theme-music-capture:focus-visible {
  outline: 2px solid rgba(251, 191, 36, 0.45);
  outline-offset: -2px;
}

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

.theme-music-audio-host .theme-music-audio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.theme-music-control {
  position: fixed;
  bottom: max(1rem, env(safe-area-inset-bottom));
  right: max(1rem, env(safe-area-inset-right));
  left: auto;
  z-index: 8300;
  max-width: min(22rem, calc(100vw - 2rem));
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.theme-music-control[hidden] {
  display: none !important;
}

.theme-music-control__credit {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #cbd5e1;
  font-style: italic;
}

.theme-music-control__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(30, 64, 175, 0.2) 100%);
  color: #fefce8;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.theme-music-control__btn:hover {
  border-color: var(--amber-glow);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.theme-music-control__btn:focus-visible {
  outline: 2px solid var(--amber-glow);
  outline-offset: 2px;
}

.theme-music-control__icon {
  font-size: 1rem;
  line-height: 1;
}

.theme-music-control__label {
  flex: 0 1 auto;
}

@media (max-width: 480px) {
  .theme-music-control {
    left: max(0.75rem, env(safe-area-inset-left));
    right: max(0.75rem, env(safe-area-inset-right));
    max-width: none;
  }
}

/* Reduced motion: disable heavy blur for performance if user prefers */
@media (prefers-reduced-motion: reduce) {
  .btn-cta__glow {
    animation: none;
  }
  .map-stylized__pin {
    animation: none;
  }
}

/* GSAP will set initial state for [data-reveal] */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
}
