/* =====================================================
   FRENESIM 2ª Edição — Sistema de Design v3
   Fontes locais: Barlow Condensed + Nord Bold
   Sistema de cores: 1 cor forte por seção
   Grid consistente: escala de 8px
   Responsividade: Mobile First
   ===================================================== */

/* -------------------
   1. FONTES LOCAIS
   (Nord Bold disponível via arquivo da pasta ID)
   ------------------- */
@font-face {
  font-family: 'Nord';
  src: url('../fonts/Nord/NORD-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nord';
  src: url('../fonts/Nord/NORD-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nord';
  src: url('../fonts/Nord/NORD-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BarlowCondensed';
  src: url('../fonts/Barlow/BarlowCondensed-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BarlowCondensed';
  src: url('../fonts/Barlow/BarlowCondensed-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Inter via Google Fonts — corpo de texto */
/* @import removido — Inter já carregada via <link> no HTML (mais performático) */

/* -------------------
   2. TOKENS DE DESIGN
   Escala de 8px: 8, 16, 24, 32, 48, 64, 96
   ------------------- */
:root {
  /* === PALETA === */
  /* Cores fortes — uma por seção */
  --magenta: #FF0098;
  --amarelo: #FFF800;
  --azul: #0000FF;
  --vermelho: #FF0031;
  --verde: #00FFBF;
  --rosa: #FF66C1;

  /* Cores de apoio — nunca dominantes */
  --bordo: #83002C;
  --mostarda: #5B0C26;
  --pessego: #FFC253;
  --laranja: #F4A525;

  /* Base — degradê atmosférico Bordô sofisticado */
  --bg: #2A0510;
  --bg-dark: #150208;
  --bg-deep: #1A030A;
  --bg-rich: #3D0719;
  --bg-light: #560B24;
  --bg-gradient: radial-gradient(ellipse 90% 60% at 50% -10%, rgba(131, 0, 44, 0.45), transparent 70%),
                 radial-gradient(circle at 90% 40%, rgba(91, 12, 38, 0.35), transparent 50%),
                 radial-gradient(circle at 10% 70%, rgba(74, 10, 31, 0.4), transparent 50%),
                 linear-gradient(180deg, #160209 0%, #2A0510 30%, #22040D 65%, #130107 100%);
  --bg-2: #22040D;
  --bg-card: rgba(74, 10, 31, 0.85); /* cards levemente mais claros com translucidez para o degradê */
  --bg-input: #4A0A1F;
  --branco: #FFFFFF;
  --cinza-1: #150208; /* escureci ainda mais o cinza-1 caso seja usado para sombras */
  --cinza-2: #6e1535;
  --cinza-3: #9a2050;
  --cinza-text: #f0b8cc; /* texto claro, perfeitamente legível no fundo #2A0510 */
  /* clarificado para ratio ~5.0:1 (WCAG AA) */
  --cinza-sub: #f5ccd8;

  /* === TIPOGRAFIA === */
  --font-title: 'BarlowCondensed', 'Barlow Condensed', sans-serif;
  --font-label: 'Nord', sans-serif;
  /* Nord Bold — agora arquivo local */
  --font-body: 'Inter', sans-serif;

  /* === ESCALA DE ESPAÇAMENTO (8px base) === */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-12: 96px;
  --sp-16: 128px;

  /* Padding de seção — mobile first */
  --section-v: var(--sp-8);
  /* 64px mobile */
  --side-pad: var(--sp-2);
  /* 16px mobile */

  /* Container */
  --max-w: 1280px;

  /* Transições */
  --t-fast: 150ms ease;
  --t-mid: 300ms ease;
}

@media (min-width: 641px) {
  :root {
    --section-v: var(--sp-12);
    /* 96px desktop */
    --side-pad: var(--sp-4);
    /* 32px desktop */
  }
}

/* -------------------
   3. RESET & BASE
   ------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: #160209;
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  background-size: cover;
  color: var(--branco);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
  word-wrap: break-word;
  position: relative;
  min-height: 100vh;
}

/* Camada marcante de textura / granulação analógica de poster */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='1 0 0 0 0  0 1 0 0 0  0 0 1 0 0  0 0 0 1.2 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.12'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

/* Animações Neon Sutis / Respiração Noturna */
@keyframes neonPulse {
  0%, 100% {
    filter: drop-shadow(0 0 3px currentColor);
    opacity: 0.88;
  }
  50% {
    filter: drop-shadow(0 0 10px currentColor) drop-shadow(0 0 18px currentColor);
    opacity: 1;
  }
}

@keyframes neonBoxPulseMagenta {
  0%, 100% {
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 0, 152, 0.35);
  }
  50% {
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.8), 0 0 22px rgba(255, 0, 152, 0.65), 0 0 36px rgba(255, 0, 152, 0.3);
  }
}

@keyframes neonDotPulse {
  0%, 100% {
    text-shadow: 0 0 4px var(--azul);
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    text-shadow: 0 0 10px var(--azul), 0 0 18px var(--azul);
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes neonBarPulse {
  0%, 100% {
    box-shadow: 0 0 8px rgba(0, 0, 255, 0.4);
    opacity: 0.9;
  }
  50% {
    box-shadow: 0 0 18px rgba(0, 0, 255, 0.8), 0 0 28px rgba(0, 0, 255, 0.4);
    opacity: 1;
  }
}

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

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea {
  font-family: inherit;
}

/* -------------------
   4. TIPOGRAFIA
   ------------------- */
.t-display {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(5rem, 18vw, 16rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.t-h1 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(2rem, 10vw, 5.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.t-h2 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.5rem, 8vw, 3.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.t-h3 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  text-transform: uppercase;
  line-height: 1.1;
}

.t-label {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.t-price {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
}

.t-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
}

.t-small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* -------------------
   5. LAYOUT
   ------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

.section-pad {
  padding: var(--section-v) 0;
}

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background: var(--cinza-2);
}

/* -------------------
   6. TAGS / LABELS
   ------------------- */
.tag {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  line-height: 1.4;
}

/* Variantes de cor para tag — uma por seção */
.tag-azul {
  background: var(--azul);
  color: var(--branco);
}

.tag-amarelo {
  background: var(--amarelo);
  color: var(--bg);
}

.tag-vermelho {
  background: var(--vermelho);
  color: var(--branco);
}

.tag-magenta {
  background: var(--magenta);
  color: var(--branco);
}

.tag-bordo {
  background: var(--bordo);
  color: var(--branco);
}

.tag-laranja {
  background: var(--laranja);
  color: var(--bg);
}

.tag-verde {
  background: var(--verde);
  color: var(--bg);
}

.tag-rosa {
  background: var(--rosa);
  color: var(--bg);
}

.tag-outline {
  background: transparent;
  color: var(--cinza-text);
  border: 1px solid var(--cinza-2);
}

/* -------------------
   7. SECTION HEADER (padrão)
   ------------------- */
.section-header {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}

@media (min-width: 641px) {
  .section-header {
    margin-bottom: var(--sp-8);
  }
}

.section-header .tag {
  width: fit-content;
}

/* -------------------
   8. BOTÕES
   ------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  padding: 14px 28px;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform var(--t-fast), box-shadow var(--t-fast), opacity var(--t-fast);
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible, .form-input:focus-visible {
  outline: 2px solid var(--branco);
  outline-offset: 3px;
}

/* Sólidos */
.btn-azul {
  background: var(--azul);
  color: var(--branco);
}

.btn-amarelo {
  background: var(--amarelo);
  color: var(--bg);
}

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

.btn-verde {
  background: var(--verde);
  color: var(--bg);
}

.btn-vermelho {
  background: var(--vermelho);
  color: var(--branco);
}

.btn-laranja {
  background: var(--laranja);
  color: var(--bg);
}

.btn-bordo {
  background: var(--bordo);
  color: var(--branco);
}

.btn-azul:hover {
  box-shadow: 0 0 24px rgba(0, 0, 255, 0.45);
}

.btn-amarelo:hover {
  box-shadow: 0 0 24px rgba(255, 248, 0, 0.4);
}

.btn-magenta:hover {
  box-shadow: 0 0 24px rgba(255, 0, 152, 0.45);
}

.btn-verde:hover {
  box-shadow: 0 0 24px rgba(0, 255, 191, 0.4);
}

.btn-vermelho:hover {
  box-shadow: 0 0 24px rgba(255, 0, 49, 0.45);
}

.btn-laranja:hover {
  box-shadow: 0 0 24px rgba(244, 165, 37, 0.4);
}

/* Outline */
.btn-outline-branco {
  background: transparent;
  color: var(--branco);
  border: 2px solid var(--branco);
}

.btn-outline-branco:hover {
  background: var(--branco);
  color: var(--bg);
}

.btn-outline-azul {
  background: transparent;
  color: var(--azul);
  border: 2px solid var(--azul);
}

.btn-outline-azul:hover {
  background: var(--azul);
  color: var(--branco);
}

/* Desabilitado */
.btn-disabled {
  background: var(--cinza-1);
  color: var(--cinza-3);
  border: 1px solid var(--cinza-2);
  cursor: not-allowed;
}

.btn-disabled:hover {
  transform: none;
  box-shadow: none;
}

/* -------------------
   9. SCROLL REVEAL
   ------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 0.08s;
}

.reveal-d2 {
  transition-delay: 0.16s;
}

.reveal-d3 {
  transition-delay: 0.24s;
}

.reveal-d4 {
  transition-delay: 0.32s;
}

/* -------------------
   10. NAVEGAÇÃO
   ------------------- */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: var(--sp-2) var(--side-pad);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  transition: background var(--t-mid), padding var(--t-mid), border-color var(--t-mid);
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(42, 5, 16, 0.5); /* 50% transparente para efeito glass (blur) */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--cinza-2);
  padding-top: 12px;
  padding-bottom: 12px;
}

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

.nav-logo img {
  height: 28px;
  width: auto;
}

@media (min-width: 641px) {
  .nav-logo img {
    height: 32px;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  /* gap responsivo — evita links cortados em 961-1100px */
  margin-left: auto;
}

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

.nav-links a {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cinza-text);
  transition: color var(--t-fast);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--branco);
}

.nav-cta {
  display: none;
  flex-shrink: 0;
  padding: 10px 20px;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--azul);
  color: var(--branco);
  transition: box-shadow var(--t-fast), transform var(--t-fast);
}

@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
  }
}

.nav-cta:hover {
  box-shadow: 0 0 20px rgba(0, 0, 255, 0.45);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--branco);
  transition: transform var(--t-fast), opacity var(--t-fast);
}

@media (min-width: 1024px) {
  .nav-hamburger {
    display: none;
  }
}

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
}

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

/* Lista do menu mobile — substitui inline style removido do HTML */
.nav-mobile-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-mobile a {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--branco);
  transition: color var(--t-fast);
  line-height: 1;
}

@media (min-width: 481px) {
  .nav-mobile a {
    font-size: 2.8rem;
  }
}

.nav-mobile a:hover {
  color: var(--azul);
}

.nav-mobile-close {
  position: absolute;
  top: var(--sp-3);
  right: var(--side-pad);
  font-size: 1.5rem;
  color: var(--cinza-text);
  line-height: 1;
  z-index: 9991;
}

/* -------------------
   11. MARQUEE
   ------------------- */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--cinza-2);
  border-bottom: 1px solid var(--cinza-2);
  padding: 10px 0;
  white-space: nowrap;
  background: rgba(26, 3, 10, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 var(--sp-2);
  color: var(--cinza-text);
}

@media (min-width: 641px) {
  .marquee-track span {
    font-size: 0.7rem;
    padding: 0 var(--sp-3);
  }
}

.marquee-track span.dot {
  color: var(--azul);
  display: inline-block;
  animation: neonDotPulse 3.2s ease-in-out infinite alternate;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* -------------------
   12. HERO — Cor: Azul principal
   ------------------- */
#hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: var(--sp-4);
  background: var(--bg) url('../images/hero/banner-site-frenesim-capa.webp') no-repeat 75% center / cover;
}

@media (min-width: 641px) {
  #hero {
    padding-bottom: var(--sp-6);
    background-image: url('../images/hero/banner-site-frenesim-capa.png');
    background-position: center center;
  }
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

#hero .hero-content {
  position: relative;
  z-index: 2;
}

/* Acento azul no topo — com respiração neon */
.hero-accent-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--azul);
  animation: neonBarPulse 4.5s ease-in-out infinite alternate;
}

/* Detalhe verde-menta pontual — com respiração neon */
.hero-accent-corner {
  position: absolute;
  top: 4px;
  right: 0;
  width: 120px;
  height: 4px;
  background: var(--verde);
  animation: neonPulse 3.8s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Pré-label */
.hero-pre {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 0 var(--side-pad);
  margin-bottom: var(--sp-2);
  flex-wrap: wrap;
  margin-top: -24px;
}

@media (min-width: 641px) {
  .hero-pre {
    gap: var(--sp-2);
    margin-bottom: var(--sp-4);
  }
}

.hero-pre .line {
  flex: 1;
  height: 1px;
  background: var(--cinza-2);
  min-width: 40px;
}

/* Logo da assinatura no hero — elemento principal */
.hero-logo-wrap {
  padding: 0 var(--side-pad);
  margin-bottom: var(--sp-4);
}

@media (min-width: 641px) {
  .hero-logo-wrap {
    margin-bottom: var(--sp-6);
  }
}

.hero-logo-img {
  height: clamp(80px, 18vw, 280px);
  width: auto;
  display: block;
}

/* Barra de dados abaixo do nome */
.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--side-pad) 0;
}

@media (min-width: 769px) {
  .hero-bottom {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    gap: var(--sp-4);
    padding-top: var(--sp-4);
  }
}

/* =====================================================
   STICKER "SAVE THE DATE" — Estética Poster / Flyer
   ===================================================== */
.sticker-save-the-date {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  background: var(--magenta);
  color: var(--branco);
  padding: 0;
  border-radius: 2px;
  transform: rotate(-2deg);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.8), 0 0 14px rgba(255, 0, 152, 0.35);
  animation: neonBoxPulseMagenta 4.5s ease-in-out infinite alternate;
  align-self: flex-start;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  user-select: none;
  cursor: default;
}

.sticker-save-the-date:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.9), 0 0 24px rgba(255, 0, 152, 0.7);
}

.sticker-ribbon {
  background: var(--branco);
  color: #120208;
  padding: 3px 12px;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 2px solid rgba(0, 0, 0, 0.18);
}

.sticker-ribbon-text {
  display: inline-block;
  letter-spacing: 0.18em;
}

.sticker-body {
  padding: 8px 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: linear-gradient(135deg, var(--magenta) 0%, #D40068 100%);
  position: relative;
  min-width: 170px;
}

.sticker-date-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sticker-date-main {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--branco);
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.35);
}

.sticker-location {
  font-family: var(--font-label);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amarelo);
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.4);
}

.sticker-edition-tag {
  position: absolute;
  bottom: 6px;
  right: 8px;
  font-family: var(--font-label);
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  background: var(--bg);
  color: var(--verde);
  padding: 2px 5px;
  border: 1px solid var(--verde);
  transform: rotate(3deg);
  border-radius: 1px;
  box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
}

/* Data em box — hero (aumentada e de alto impacto estilo poster) */
.hero-date-box {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 14px 22px;
  background: var(--azul);
  align-self: flex-start;
  border-radius: 4px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 255, 0.45);
  animation: neonBarPulse 4.5s ease-in-out infinite alternate;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  user-select: none;
}

.hero-date-box:hover {
  transform: scale(1.03);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 0, 255, 0.7);
}

.hero-date-box-label {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.hero-date-box-value {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.8vw, 2.9rem);
  color: var(--branco);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.35);
}

.hero-date-box-city {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--verde);
  text-transform: uppercase;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.4);
}

.hero-desc-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--cinza-text);
  line-height: 1.55;
  max-width: 100%;
}

@media (min-width: 769px) {
  .hero-desc {
    font-size: 0.9rem;
    max-width: 400px;
  }
}

.hero-tagline {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  text-transform: uppercase;
  color: var(--amarelo);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

/* Destaque para a frase chave do hero */
.hero-desc-destaque {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.8vw, 1.4rem);
  color: var(--branco);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-top: 4px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  width: 100%;
}

.hero-ctas .btn {
  width: 100%;
  text-align: center;
}

@media (min-width: 769px) {
  .hero-ctas {
    flex-direction: row;
    width: auto;
    align-self: end;
  }

  .hero-ctas .btn {
    width: auto;
  }
}

/* Faixa de cores no rodapé do hero */
.hero-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  display: flex;
}

.hero-stripe span {
  flex: 1;
}

/* -------------------
   13. SOBRE — Cor: Amarelo principal
   ------------------- */
#sobre {
  background: var(--bg);
}

#primeira-edicao {
  background: var(--bg);
}

#ingressos {
  background: var(--bg);
}

#edital {
  background: var(--bg);
}

#patrocinadores {
  background: var(--bg);
}

#local {
  background: var(--bg);
}

#contato {
  background: var(--bg);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: start;
  overflow: visible;
  min-width: 0;
}

@media (min-width: 961px) {
  .sobre-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
  }
}

.sobre-titulo {
  color: var(--branco);
}

.sobre-titulo em {
  color: var(--amarelo);
  font-style: normal;
}

.sobre-paragrafos {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.sobre-paragrafos p {
  color: var(--cinza-sub);
}

/* Premio */
.sobre-premio {
  border-left: 3px solid var(--amarelo);
  padding: var(--sp-3) var(--sp-3);
  background: rgba(255, 248, 0, 0.04);
  overflow: visible;
}

.sobre-premio .label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amarelo);
  display: block;
  margin-bottom: var(--sp-1);
}

.sobre-premio p {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--branco);
  line-height: 1.2;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

@media (min-width: 641px) {
  .sobre-premio p {
    font-size: 1.3rem;
  }
}

/* Critério curatorial */
.sobre-criterio {
  border-left: 3px solid var(--pessego);
  padding: var(--sp-3) var(--sp-3);
}

.sobre-criterio .label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pessego);
  display: block;
  margin-bottom: var(--sp-1);
}

.sobre-criterio p {
  color: var(--cinza-text);
}

/* Equipe — info rows */
.equipe-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--cinza-2);
}

.equipe-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--sp-2) var(--sp-3);
  border-bottom: 1px solid var(--cinza-2);
}

@media (min-width: 481px) {
  .equipe-row {
    flex-direction: row;
    align-items: baseline;
    gap: var(--sp-3);
  }
}

.equipe-row:last-child {
  border-bottom: none;
}

.equipe-label {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cinza-text);
  min-width: 150px;
  width: 150px;
  flex-shrink: 0;
}

.equipe-nomes {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--branco);
}

.sobre-right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  overflow: visible;
  min-width: 0;
}

/* Equipe — cards com foto placeholder */
.equipe-secao-label {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amarelo);
  display: block;
  margin-bottom: var(--sp-3);
  margin-top: var(--sp-4);
}

.equipe-foto {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cinza-1);
  border: 1px solid var(--cinza-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

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

.equipe-foto-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinza-3);
}

.equipe-foto-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.5;
}

.equipe-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.equipe-card-nome {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--branco);
  line-height: 1.1;
}

.equipe-card-cargo {
  font-family: var(--font-label);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cinza-text);
}

/* Mobile pequeno (< 481px): 2 cards por tela — fontes legíveis */
@media (max-width: 480px) {
  .equipe-card-nome {
    font-size: 0.78rem;
  }

  .equipe-card-cargo {
    font-size: 0.52rem;
  }

  .equipe-slide-tag {
    font-size: 0.45rem;
    padding: 2px 6px;
  }

  .equipe-bio-text {
    font-size: 0.68rem;
  }

  .equipe-bio-contact {
    font-size: 0.52rem;
  }

  .equipe-flip-back {
    padding: var(--sp-1);
  }
}

/* Mobile médio (481-640px): 3 cards — fontes ajustadas */
@media (min-width: 481px) and (max-width: 640px) {
  .equipe-card-nome {
    font-size: 0.72rem;
  }

  .equipe-card-cargo {
    font-size: 0.48rem;
  }

  .equipe-slide-tag {
    font-size: 0.44rem;
    padding: 2px 6px;
  }

  .equipe-bio-text {
    font-size: 0.64rem;
  }

  .equipe-bio-contact {
    font-size: 0.48rem;
  }

  .equipe-flip-back {
    padding: var(--sp-1);
  }
}

/* -------------------
   13.5 EQUIPE FLIP CARDS
   ------------------- */
.equipe-flip-card {
  perspective: 800px;
  width: 100%;
  cursor: pointer;
}

.equipe-flip-inner {
  position: relative;
  width: 100%;
  transition: transform 1.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.equipe-flip-front,
.equipe-flip-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  width: 100%;
}

.equipe-flip-front {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.equipe-flip-back {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  /* min-height evita corte de conteúdo biográfico longo */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: rotateY(180deg);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  background: var(--cinza-1);
  border: 1px solid var(--cinza-2);
  border-radius: 2px;
  padding: var(--sp-2);
}

/* Desktop: flip on hover - DESABILITADO. Agora o flip ocorre no modal. */
/*
@media (hover: hover) and (pointer: fine) {
  .equipe-flip-card:hover .equipe-flip-inner {
    transform: rotateY(180deg);
  }
}
*/

/* Mobile/touch: flip via class */
.equipe-flip-card.flipped .equipe-flip-inner {
  transform: rotateY(180deg);
}

.equipe-flip-bio {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  justify-content: center;
  flex: 1;
  padding: var(--sp-1) 0;
}

.equipe-bio-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--cinza-sub);
  line-height: 1.4;
  margin-bottom: var(--sp-2);
}

.equipe-bio-contact {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pessego);
}

/* -------------------
   13.6 EQUIPE MODAL (Pop-up Flip)
   ------------------- */
.equipe-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-mid), visibility var(--t-mid);
  padding: var(--side-pad);
}

.equipe-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.equipe-modal-content {
  position: relative;
  width: 100%;
  max-width: 400px;
  /* Tamanho confortável para desktop e mobile */
  aspect-ratio: 3/4;
  /* Mantém a proporção do card */
  /* Removemos bg e padding daqui pois o .equipe-flip-card clonado já traz tudo */
}

.equipe-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--branco);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
}

/* Fontes maiores EXCLUSIVAS para o modal */
.equipe-modal-content .equipe-card-nome {
  font-size: 1.2rem;
}

.equipe-modal-content .equipe-card-cargo {
  font-size: 0.8rem;
}

.equipe-modal-content .equipe-slide-tag {
  font-size: 0.65rem;
  padding: 4px 8px;
}

.equipe-modal-content .equipe-bio-text {
  font-size: 0.95rem;
}

.equipe-modal-content .equipe-bio-contact {
  font-size: 0.75rem;
}

/* -------------------
   14. SEÇÃO 1ª EDIÇÃO — Cor: Rosa claro principal
   ------------------- */
#primeira-edicao {
  background: var(--bg);
  border-top: 4px solid var(--rosa);
  /* border-top no mobile — não rouba largura */
}

@media (min-width: 961px) {
  #primeira-edicao {
    border-top: none;
    border-left: 4px solid var(--rosa);
    /* border-left apenas no desktop */
  }
}

.edicao-header {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}

@media (min-width: 641px) {
  .edicao-header {
    flex-direction: row;
    align-items: flex-end;
    gap: var(--sp-4);
    margin-bottom: var(--sp-8);
    flex-wrap: wrap;
  }
}

.edicao-ano-bg {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(4rem, 14vw, 11rem);
  line-height: 0.85;
  color: #FF66C1;
  user-select: none;
  flex-shrink: 0;
}

.edicao-header-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding-bottom: 8px;
}

.edicao-header-info .tag {
  width: fit-content;
}

/* Grid de números */
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--cinza-2);
  margin-bottom: var(--sp-6);
}

@media (min-width: 641px) {
  .numeros-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: var(--sp-8);
  }
}

.numero-item {
  background: var(--bg);
  padding: var(--sp-3) var(--sp-2);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

@media (min-width: 641px) {
  .numero-item {
    padding: var(--sp-4) var(--sp-3);
  }
}

.numero-valor {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  line-height: 1;
  display: block;
}

.numero-item:nth-child(1) .numero-valor {
  color: var(--rosa);
}

.numero-item:nth-child(2) .numero-valor {
  color: var(--rosa);
}

.numero-item:nth-child(3) .numero-valor {
  color: var(--rosa);
}

.numero-item:nth-child(4) .numero-valor {
  color: var(--rosa);
}

.numero-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--cinza-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (min-width: 641px) {
  .numero-label {
    font-size: 0.75rem;
  }
}

/* Conteúdo 2 colunas */
.edicao-conteudo {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 961px) {
  .edicao-conteudo {
    grid-template-columns: 1fr 1.5fr;
    gap: var(--sp-8);
  }
}

/* Ficha Técnica — 1ª Edição */
.ficha-tecnica {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--cinza-2);
  overflow: visible;
}

.ficha-row {
  display: flex;
  flex-direction: row; /* Força lado a lado no mobile igual edital */
  align-items: stretch;
  border-bottom: 1px solid var(--cinza-2);
}

.ficha-row:last-child {
  border-bottom: none;
}

.ficha-cat {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rosa);
  background: var(--cinza-1);
  padding: var(--sp-2) var(--sp-2);
  min-width: 140px;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--cinza-2);
  flex-shrink: 0;
  line-height: 1.3;
}

@media (max-width: 375px) {
  .ficha-cat {
    min-width: 110px;
    width: 110px;
  }
}

@media (min-width: 481px) {
  .ficha-cat {
    font-size: 0.75rem;
    padding: var(--sp-2) var(--sp-3);
    min-width: 160px;
    width: 160px;
  }
}

/* Normal weight for Patrocinador/Apoio labels */
.ficha-cat-normal {
  font-weight: 400;
}

.ficha-val {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--branco);
  padding: var(--sp-2) var(--sp-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  flex: 1;
}

@media (min-width: 481px) {
  .ficha-val {
    font-size: 0.88rem;
    padding: var(--sp-2) var(--sp-3);
  }
}

.ficha-row-destaque .ficha-cat {
  color: var(--rosa);
}

.ficha-row-destaque .ficha-val {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--branco);
  letter-spacing: 0.04em;
}

@media (min-width: 481px) {
  .ficha-row-destaque .ficha-val {
    font-size: 1.1rem;
  }
}

/* Programação */
.programacao-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rosa);
  display: block;
  margin-bottom: var(--sp-3);
}

/* Galeria */
.galeria-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rosa);
  display: block;
  margin-bottom: var(--sp-3);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

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

.galeria-item {
  aspect-ratio: 1;
  background: var(--cinza-1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.galeria-item:first-child {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galeria-item:hover img {
  transform: scale(1.05);
}

/* -------------------
   14.5 LIGHTBOX
   ------------------- */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: var(--sp-3);
  cursor: pointer;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  font-size: 2rem;
  color: var(--branco);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
  padding: var(--sp-1);
  transition: opacity var(--t-fast);
}

.lightbox-close:hover {
  opacity: 0.7;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  cursor: default;
  border-radius: 2px;
}

/* -------------------
   15. INGRESSOS — Cor: Magenta principal
   ------------------- */
#ingressos {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ingressos-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingressos-deco-text {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(3rem, 18vw, 20rem);
  /* reduzido de 20vw - menos impacto em 320px */
  text-transform: uppercase;
  color: #150208;
  opacity: 1;
  white-space: nowrap;
  user-select: none;
  letter-spacing: -0.02em;
}

.ingressos-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
}

@media (min-width: 641px) {
  .ingressos-inner {
    gap: var(--sp-6);
  }
}

.ingressos-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  border: 1px solid var(--cinza-2);
  background: var(--cinza-1);
  padding: 8px 16px;
}

.ingressos-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--magenta);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

.ingressos-titulo {
  max-width: 680px;
}

.ingressos-titulo .t-h1 em {
  color: var(--magenta);
  font-style: normal;
}

.ingressos-sub {
  max-width: 440px;
  color: var(--cinza-text);
}

/* Formulário avise-me */
.avise-form {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

/* Garantir empilhamento vertical em mobile pequeno */
@media (max-width: 480px) {
  .form-row {
    flex-direction: column;
  }

  .form-row .form-input {
    width: 100%;
  }
}

@media (min-width: 481px) {
  .form-row {
    flex-direction: row;
  }
}

.form-input {
  flex: 1;
  padding: 14px 16px;
  background: var(--bg-input);
  border: 1px solid var(--cinza-2);
  color: var(--branco);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--t-fast);
  min-width: 0;
}

.form-input::placeholder {
  color: var(--cinza-text);
}

.form-input:focus {
  border-color: var(--magenta);
}

.form-hint {
  color: var(--cinza-text);
  font-size: 0.75rem;
  text-align: center;
}

/* -------------------
   16. EDITAL — Cor: Amarelo principal
   ------------------- */
#edital {
  background: var(--bg-2);
}

.edital-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-6);
  align-items: start;
}

@media (min-width: 961px) {
  .edital-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
    margin-bottom: var(--sp-8);
  }
}

/* Timeline do edital */
.edital-timeline {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--cinza-2);
}

.tl-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--cinza-2);
}

.tl-row:last-child {
  border-bottom: none;
}

.tl-data {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amarelo);
  background: var(--cinza-1);
  padding: var(--sp-2) var(--sp-2);
  min-width: 140px;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--cinza-2);
  flex-shrink: 0;
  line-height: 1.3;
}

@media (max-width: 375px) {
  .tl-data {
    min-width: 110px;
    width: 110px;
  }
}

@media (min-width: 481px) {
  .tl-data {
    font-size: 0.75rem;
    padding: var(--sp-2) var(--sp-3);
    min-width: 160px;
    width: 160px;
  }
}

.tl-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--branco);
  padding: var(--sp-2) var(--sp-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  flex: 1;
}

@media (min-width: 481px) {
  .tl-desc {
    font-size: 0.88rem;
    padding: var(--sp-2) var(--sp-3);
  }
}

.tl-desc small {
  color: var(--cinza-text);
  font-size: 0.75rem;
}

.tl-row.destaque .tl-data {
  color: var(--amarelo);
}

.tl-row.destaque .tl-desc {
  color: var(--branco);
  font-weight: 500;
}

/* Vagas */
.vagas-display {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}

.vaga-box {
  flex: 1;
  padding: var(--sp-3) var(--sp-2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (min-width: 481px) {
  .vaga-box {
    padding: var(--sp-4) var(--sp-3);
  }
}

.vaga-box:first-child {
  background: rgba(255, 248, 0, 0.18);
  border: 1px solid var(--amarelo);
}

.vaga-box:last-child {
  background: rgba(255, 248, 0, 0.10);
  border: 1px solid rgba(255, 248, 0, 0.4);
}

.vaga-num {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1;
  color: var(--amarelo);
}

.vaga-desc {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 481px) {
  .vaga-desc {
    font-size: 0.8rem;
  }
}

/* Info geral */
.edital-info-box {
  border: 1px solid var(--cinza-2);
  padding: var(--sp-3);
  background: var(--cinza-1);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.edital-info-box p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--cinza-text);
  line-height: 1.5;
}

@media (min-width: 481px) {
  .edital-info-box p {
    font-size: 0.875rem;
  }
}

.edital-info-box strong {
  color: var(--branco);
}

.edital-info-box .highlight {
  color: var(--verde);
}

/* Tabs */
.tabs-wrap {
  display: flex;
  margin-bottom: var(--sp-4);
  border: 1px solid var(--cinza-2);
  width: 100%;
}

@media (min-width: 481px) {
  .tabs-wrap {
    width: fit-content;
    margin-bottom: var(--sp-6);
  }
}

.tab-btn {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 16px;
  color: var(--cinza-text);
  background: var(--cinza-1);
  border: none;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
  flex: 1;
}

@media (min-width: 481px) {
  .tab-btn {
    flex: none;
    padding: 12px 24px;
    font-size: 0.75rem;
  }
}

.tab-btn+.tab-btn {
  border-left: 1px solid var(--cinza-2);
}

.tab-btn.active {
  background: var(--amarelo);
  color: #1a0008;
}

/* Painel de pacotes */
.pacotes-panel {
  display: none;
}

.pacotes-panel.active {
  display: block;
}

.pacotes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2);
}

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

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

.pacotes-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2);
}

@media (min-width: 641px) {
  .pacotes-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin-left: auto;
    /* centralizar grid de acessórios */
    margin-right: auto;
  }
}

/* Card de pacote */
.pacote-card {
  border: 1px solid var(--cinza-2);
  background: var(--bg-card);
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  position: relative;
  transition: border-color var(--t-mid), transform var(--t-mid);
}

@media (min-width: 641px) {
  .pacote-card {
    padding: var(--sp-4);
  }
}

.pacote-card:hover {
  border-color: var(--cinza-3);
  transform: translateY(-3px);
}

.pacote-card.premium-card {
  border-color: var(--amarelo);
  background: var(--amarelo);
}

.pacote-card.premium-card .pacote-nome,
.pacote-card.premium-card .pacote-nome-oficial,
.pacote-card.premium-card .pacote-preco,
.pacote-card.premium-card .pacote-inclui-label,
.pacote-card.premium-card .pacote-inclui li {
  color: var(--cinza-1);
}

.pacote-card.premium-card .pacote-inclui li::before {
  color: var(--cinza-1);
}

.pacote-card.premium-card::before {
  content: 'EXCLUSIVO';
  position: absolute;
  top: -1px;
  left: var(--sp-3);
  transform: translateY(-100%);
  background: var(--cinza-1);
  color: var(--amarelo);
  font-family: var(--font-label);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  padding: 3px 8px;
}

@media (min-width: 641px) {
  .pacote-card.premium-card::before {
    left: var(--sp-4);
  }
}

.pacote-nome {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--branco);
  line-height: 1.1;
}

@media (min-width: 641px) {
  .pacote-nome {
    font-size: 1.25rem;
  }
}

.pacote-nome-oficial {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--cinza-text);
  margin-top: 2px;
}

.pacote-preco {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--amarelo);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--cinza-2);
  line-height: 1;
}

.pacote-inclui-label {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cinza-text);
}

.pacote-inclui {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  flex: 1;
}

.pacote-inclui li {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--cinza-sub);
  line-height: 1.4;
  padding-left: var(--sp-2);
  position: relative;
}

@media (min-width: 641px) {
  .pacote-inclui li {
    font-size: 0.82rem;
  }
}

.pacote-inclui li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--amarelo);
}

/* Rodapé do edital */
.edital-footer {
  margin-top: var(--sp-6);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--cinza-2);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

@media (min-width: 769px) {
  .edital-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--sp-8);
    padding-top: var(--sp-6);
  }
}

.edital-footer-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.edital-footer-info p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--cinza-text);
}

@media (min-width: 641px) {
  .edital-footer-info p {
    font-size: 0.875rem;
  }
}

.edital-footer-info strong {
  color: var(--branco);
}

.edital-footer-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  width: 100%;
}

.edital-footer-ctas .btn {
  width: 100%;
  text-align: center;
}

@media (min-width: 769px) {
  .edital-footer-ctas {
    flex-direction: row;
    width: auto;
  }

  .edital-footer-ctas .btn {
    width: auto;
  }
}

/* -------------------
   17. PATROCINADORES — Cor: Laranja principal
   ------------------- */
#patrocinadores {
  background: var(--bg);
}

.patrocinadores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

@media (min-width: 641px) {
  .patrocinadores-grid {
    margin-top: var(--sp-6);
  }
}

.patrocinador-card {
  border: 1px solid var(--cinza-2);
  background: var(--bg-card);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: border-color var(--t-mid);
}

@media (min-width: 641px) {
  .patrocinador-card {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-6);
    padding: var(--sp-6) var(--sp-6);
  }
}

.patrocinador-card.destaque {
  border-color: var(--laranja);
}

.patrocinador-card:hover {
  border-color: var(--cinza-3);
}

.patrocinador-logo {
  width: 120px;
  height: 60px;
  background: var(--cinza-1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: var(--sp-2);
  align-self: center;
}

@media (min-width: 641px) {
  .patrocinador-logo {
    width: 160px;
    height: 72px;
    align-self: auto;
  }
}

.patrocinador-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.patrocinador-logo-text {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 1rem;
  color: var(--cinza-text);
  letter-spacing: 0.06em;
}

@media (min-width: 641px) {
  .patrocinador-logo-text {
    font-size: 1.2rem;
  }
}

.patrocinador-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  flex: 1;
  text-align: center;
}

@media (min-width: 641px) {
  .patrocinador-info {
    text-align: left;
  }
}

.patrocinador-cat {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--laranja);
}

.patrocinador-nome {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--branco);
  line-height: 1;
}

@media (min-width: 641px) {
  .patrocinador-nome {
    font-size: 1.8rem;
  }
}

.patrocinador-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--cinza-text);
  line-height: 1.55;
}

@media (min-width: 641px) {
  .patrocinador-desc {
    font-size: 0.875rem;
  }
}

/* Slot vazio */
.patrocinador-slot {
  border: 2px dashed var(--cinza-2);
  background: transparent;
}

.slot-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

@media (min-width: 641px) {
  .slot-inner {
    text-align: left;
  }
}

.slot-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cinza-3);
}

.slot-link {
  color: var(--laranja);
  font-size: 0.875rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* -------------------
   18. CRONOGRAMA — REMOVIDO
   ------------------- */
#cronograma {
  display: none !important;
}

/* -------------------
   19. LOCAL — Cor: Azul (repetida)
   ------------------- */
#local {
  background: var(--bg);
}

.local-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: center;
}

@media (min-width: 961px) {
  .local-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
}

.local-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  border: 1px solid var(--cinza-2);
  background: var(--cinza-1);
  padding: 8px 14px;
  width: fit-content;
  margin-top: var(--sp-4);
}

.local-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amarelo);
  animation: pulse-dot 2s ease-in-out infinite;
}

.local-desc {
  color: var(--cinza-text);
  max-width: 100%;
  margin-top: var(--sp-3);
}

@media (min-width: 961px) {
  .local-desc {
    max-width: 400px;
  }
}

.local-map-placeholder {
  aspect-ratio: 16/9;
  background: var(--cinza-1);
  border: 1px solid var(--cinza-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 641px) {
  .local-map-placeholder {
    aspect-ratio: 4/3;
  }
}

.local-map-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
  padding: var(--sp-4);
}

.local-map-icon {
  width: 36px;
  height: 36px;
  color: var(--cinza-2);
}

@media (min-width: 641px) {
  .local-map-icon {
    width: 48px;
    height: 48px;
  }
}

.local-map-inner p {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cinza-3);
}

/* -------------------
   20. CONTATO / FOOTER
   ------------------- */
#contato {
  background: var(--bg-2);
  border-top: 1px solid var(--cinza-2);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

@media (min-width: 641px) {
  .contato-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
}

.contato-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.contato-label {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cinza-text);
}

.contato-link {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  text-transform: uppercase;
  color: var(--branco);
  transition: color var(--t-fast);
  line-height: 1;
  word-break: break-all;
}

.contato-link:hover {
  color: var(--magenta);
}

/* Footer */
footer {
  background: var(--bg);
  border-top: 1px solid var(--cinza-2);
}

.footer-stripe {
  height: 5px;
  display: flex;
}

.footer-stripe span {
  flex: 1;
}

.footer-inner {
  padding: var(--sp-4) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  text-align: center;
}

@media (min-width: 769px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-logo {
  height: 24px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(1);
  transition: opacity var(--t-fast), filter var(--t-fast);
}

.footer-logo:hover {
  opacity: 0.8;
  filter: none;
}

.footer-credito {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--cinza-text);
}

@media (min-width: 641px) {
  .footer-credito {
    font-size: 0.75rem;
  }
}

.footer-nav {
  display: flex;
  gap: var(--sp-3);
}

@media (min-width: 641px) {
  .footer-nav {
    gap: var(--sp-4);
  }
}

.footer-nav a {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cinza-text);
  transition: color var(--t-fast);
}

.footer-nav a:hover {
  color: var(--branco);
}

/* -------------------
   21. TOAST
   ------------------- */
.toast {
  position: fixed;
  bottom: var(--sp-3);
  right: var(--sp-3);
  left: var(--sp-3);
  background: var(--verde);
  color: var(--bg);
  padding: 12px 20px;
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: transform var(--t-mid), opacity var(--t-mid);
  pointer-events: none;
  text-align: center;
}

@media (min-width: 641px) {
  .toast {
    left: auto;
    right: var(--sp-4);
    bottom: var(--sp-4);
    font-size: 0.75rem;
  }
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* -------------------
   23. CARROSSEL DE EQUIPE
   ------------------- */
.equipe-carousel-wrap {
  margin-top: var(--sp-4);
  min-width: 0;
}

.equipe-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.equipe-carousel-track {
  display: flex;
  gap: var(--sp-2);
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

@media (min-width: 641px) {
  .equipe-carousel-track {
    gap: var(--sp-3);
  }
}



/* Padrão: 3 por tela no mobile médio */
.equipe-slide {
  flex: 0 0 calc((100% - 2 * 16px) / 3);
  max-width: calc((100% - 2 * 16px) / 3);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cinza-2);
  padding: 6px;
  transition: border-color var(--t-mid);
  min-width: 0;
  box-sizing: border-box;
}

/* Mobile pequeno (< 481px): 25% maior que 50% = ~62.5% */
@media (max-width: 480px) {
  .equipe-carousel-wrap {
    min-width: 0;
  }

  .equipe-slide {
    flex: 0 0 calc((100% - 16px) / 1.6);
    max-width: calc((100% - 16px) / 1.6);
  }
}

@media (min-width: 641px) {
  .equipe-slide {
    flex: 0 0 calc((100% - var(--sp-3)) / 2);
    max-width: calc((100% - var(--sp-3)) / 2);
    padding: var(--sp-2);
  }
}

@media (min-width: 1200px) {
  .equipe-slide {
    /* Desktop: Exatamente 2 cards por tela (pedido explícito) */
    flex: 0 0 calc((100% - var(--sp-3)) / 2);
    max-width: calc((100% - var(--sp-3)) / 2);
  }
}

.equipe-slide:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.equipe-slide-tag {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.5rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 2px 6px;
  width: fit-content;
  margin-bottom: var(--sp-1);
}

@media (min-width: 641px) {
  .equipe-slide-tag {
    font-size: 0.55rem;
    padding: 3px 8px;
  }
}

.equipe-slide-tag.tag-amarelo {
  background: var(--amarelo);
  color: #1a0008;
}

.equipe-slide-tag.tag-rosa {
  background: var(--rosa);
  color: #1a0008;
}

/* Controles do carrossel */
.equipe-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
  max-width: 100%;
  /* impede que controles vazem da viewport */
  overflow: hidden;
  flex-wrap: wrap;
  /* dots quebram linha se necessário */
}

@media (min-width: 641px) {
  .equipe-carousel-controls {
    gap: var(--sp-3);
    margin-top: var(--sp-4);
  }
}

.equipe-carousel-btn {
  font-family: var(--font-label);
  font-size: 1rem;
  color: var(--cinza-text);
  background: var(--cinza-1);
  border: 1px solid var(--cinza-2);
  padding: 6px 12px;
  cursor: pointer;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
  line-height: 1;
}

@media (min-width: 641px) {
  .equipe-carousel-btn {
    padding: 8px 16px;
  }
}

.equipe-carousel-btn:hover {
  color: var(--branco);
  border-color: var(--amarelo);
  background: rgba(255, 248, 0, 0.08);
}

/* Dots */
.equipe-carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.equipe-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cinza-2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--t-fast), transform var(--t-fast);
  flex-shrink: 0;
}

.equipe-carousel-dot.active {
  background: var(--amarelo);
  transform: scale(1.3);
}