/* ==========================================================================
   VILA JUNINA PRAIA GRANDE 2026 — Landing Page
   ========================================================================== */

/* ---------- Variáveis (paleta + tipografia) ---------- */
:root {
  --vj-blue:        #1B3A8A;
  --vj-blue-dark:   #0F2F7A;
  --vj-blue-light:  #2C52B0;
  --vj-yellow:      #F5C518;
  --vj-yellow-light:#FFCC2A;
  --vj-green:       #2DB84F;
  --vj-green-dark:  #1F8E3C;
  --vj-orange:      #F39200;
  --vj-red:         #E94E3F;
  --vj-pink:        #E63B7A;
  --vj-brown:       #8B4513;
  --vj-cream:       #FAEBC8;
  --vj-cream-dark:  #F2DDA8;
  --vj-cream-light: #FFF6E0;
  --vj-black:       #0E0E0E;
  --vj-white:       #FFFFFF;

  /* Sombras padrão (azul como cor de outline default) */
  --shadow-vj:    4px 4px 0 0 var(--vj-blue);
  --shadow-vj-lg: 6px 6px 0 0 var(--vj-blue);
  --shadow-vj-xl: 8px 8px 0 0 var(--vj-blue);
  /* Variantes de sombra colorida (inverte cor com o fundo) */
  --shadow-on-yellow: 4px 4px 0 0 var(--vj-blue);
  --shadow-on-white:  4px 4px 0 0 var(--vj-green);
  --shadow-on-cream:  4px 4px 0 0 var(--vj-green);
  --shadow-on-green:  4px 4px 0 0 var(--vj-red);
  --shadow-on-red:    4px 4px 0 0 var(--vj-green);
  --shadow-on-blue:   4px 4px 0 0 var(--vj-yellow);
  --shadow-on-orange: 4px 4px 0 0 var(--vj-blue);
  --shadow-on-pink:   4px 4px 0 0 var(--vj-green);

  --font-display: "Mouse Memoirs", "Anton", "Bebas Neue", sans-serif;
  --font-chunky:  "Mouse Memoirs", "Bowlby One", "Anton", sans-serif;
  --font-script:  "Parisienne", cursive;
  --font-condensed:"Bebas Neue", sans-serif;
  --font-body:    "Fredoka", "Inter", system-ui, sans-serif;

  --max-container: 1280px;
  --radius-lg: 40px;
  --radius-md: 24px;
  --radius-sm: 16px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--vj-black);
  background: var(--vj-cream);
  line-height: 1.5;
  padding: 12px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  width: 100%;
  max-width: var(--max-container);
  margin: 0 auto;
  padding: 0 16px;
}

.section { padding: 60px 0; }
.section--tight { padding: 30px 0; }

/* ---------- Tipografia utilitária ---------- */
.font-display  { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.5px; }
.font-chunky   { font-family: var(--font-chunky); }
.font-script   { font-family: var(--font-script); }
.font-condensed{ font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: 1px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px;
  line-height: 0.95;
}

.text-blue   { color: var(--vj-blue); }
.text-red    { color: var(--vj-red); }
.text-yellow { color: var(--vj-yellow); }
.text-green  { color: var(--vj-green); }
.text-white  { color: var(--vj-white); }
.text-black  { color: var(--vj-black); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 16px;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 999px;
  border: 3px solid var(--btn-outline, var(--vj-blue));
  box-shadow: 4px 4px 0 0 var(--btn-outline, var(--vj-blue));
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  text-align: center;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: none; }
/* ---------- Ícones (Lucide Icons inline) ----------
   Estilo "chunky cartoon" para combinar com o site:
   stroke grosso, cantos arredondados, currentColor
*/
.icon,
.btn__icon {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--info   { width: 38px; height: 38px; }
.icon--card   { width: 48px; height: 48px; }
.icon--family { width: 60px; height: 60px; }
.icon--big    { width: 80px; height: 80px; }
.icon--decor  { stroke-width: 2; opacity: 0.18; }
.btn--red    { background: var(--vj-red);    color: var(--vj-white); --btn-outline: var(--vj-green); }
.btn--yellow { background: var(--vj-yellow); color: var(--vj-black); --btn-outline: var(--vj-blue); }
.btn--green  { background: var(--vj-green);  color: var(--vj-white); --btn-outline: var(--vj-red); }
.btn--blue   { background: var(--vj-blue);   color: var(--vj-white); --btn-outline: var(--vj-yellow); }
.btn--white  { background: var(--vj-white);  color: var(--vj-black); --btn-outline: var(--vj-green); }
.btn--lg { font-size: 20px; padding: 18px 28px; }

/* ---------- Cards "festa junina" ---------- */
.card {
  border: 3px solid var(--vj-green);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-on-white);
  padding: 24px;
  background: var(--vj-white);
}
.card--yellow { background: var(--vj-yellow); color: var(--vj-black); border-color: var(--vj-blue);   box-shadow: var(--shadow-on-yellow); }
.card--green  { background: var(--vj-green);  color: var(--vj-white); border-color: var(--vj-red);    box-shadow: var(--shadow-on-green);  }
.card--red    { background: var(--vj-red);    color: var(--vj-white); border-color: var(--vj-green);  box-shadow: var(--shadow-on-red);    }
.card--blue   { background: var(--vj-blue);   color: var(--vj-white); border-color: var(--vj-yellow); box-shadow: var(--shadow-on-blue);   }
.card--orange { background: var(--vj-orange); color: var(--vj-white); border-color: var(--vj-blue);   box-shadow: var(--shadow-on-orange); }
.card--pink   { background: var(--vj-pink);   color: var(--vj-white); border-color: var(--vj-green);  box-shadow: var(--shadow-on-pink);   }
.card--cream  { background: var(--vj-cream-dark); color: var(--vj-black); border-color: var(--vj-green); box-shadow: var(--shadow-on-cream); }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 99;
  padding: 12px;
}
.navbar__inner {
  max-width: var(--max-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 22px;
  background: rgba(250, 235, 200, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(14, 14, 14, 0.25);
  border-radius: 999px;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
@media (max-width: 575px) {
  .navbar__inner { padding: 6px 14px; }
}
.navbar.is-scrolled .navbar__inner {
  background: var(--vj-cream);
  border-color: var(--vj-green);
  box-shadow: 0 8px 24px rgba(45,184,79,0.18);
}
.navbar__logo img { height: 46px; }
.navbar__menu { display: none; align-items: center; gap: 4px; }
.navbar__link {
  display: inline-block;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--vj-black);
  transition: color 0.2s ease;
}
.navbar__link:hover { color: var(--vj-blue); }
.navbar__actions { display: flex; align-items: center; gap: 8px; }
.navbar__cta { display: none; }

/* Hamburger */
.hamburger {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid var(--vj-blue);
  background: var(--vj-yellow);
  position: relative;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vj-black);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, calc(100% - 24px));
  height: 100dvh;
  background: var(--vj-yellow);
  border: 3px solid var(--vj-blue);
  border-radius: 28px;
  box-shadow: 6px 6px 0 0 var(--vj-blue);
  margin: 12px;
  padding: 80px 20px 24px;
  z-index: 90;
  overflow-y: auto;
  transition: right 0.35s ease;
}
.drawer.is-open { right: 0; }
.drawer__list { display: flex; flex-direction: column; gap: 8px; }
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--vj-black);
  border-bottom: 2px solid rgba(14,14,14,0.15);
}
.drawer__link:hover { color: var(--vj-blue); }
.drawer__arrow {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--vj-black);
  color: var(--vj-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.drawer__cta { margin-top: 16px; width: 100%; }

/* CTA fixo mobile (sempre visível) */
.cta-floating {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 95;
  width: calc(100% - 32px);
  max-width: 360px;
}

/* ---------- Bandeirinhas (div + background tiling) ----------
   PNG natural 1536x120 — repete horizontalmente em qualquer largura
*/
.hero__bandeirinhas-top,
.hero__bandeirinhas-bottom,
.footer__bandeirinhas-top,
.footer__bandeirinhas-bottom {
  display: block;
  background-repeat: repeat-x;
  background-position: center top;
  background-size: auto 100%;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

/* Hero / Solidário / Final — usam as mesmas classes em containers diferentes
   Alturas pequenas para a imagem repetir várias vezes na tela (efeito tiling)
*/
.hero__bandeirinhas-top {
  background-image: url('../img/bandeirinha_hero_topo.png');
  height: 30px;
}
.hero__bandeirinhas-bottom {
  background-image: url('../img/bandeirinha_hero_rodape.png');
  height: 30px;
}
.footer__bandeirinhas-top {
  background-image: url('../img/bandeirinha_footer_topo.png');
  height: 26px;
}
.footer__bandeirinhas-bottom {
  background-image: url('../img/bandeirinha_footer_rodape.png');
  height: 26px;
}

/* Overrides por seção (mesmas classes reaproveitadas) */
.solidario .hero__bandeirinhas-top    { background-image: url('../img/bandeirinha_solidario_topo.png'); }
.solidario .hero__bandeirinhas-bottom { background-image: url('../img/bandeirinha_solidario_rodape.png'); }
.final .hero__bandeirinhas-top        { background-image: url('../img/bandeirinha_final_topo.png'); }
.final .hero__bandeirinhas-bottom     { background-image: url('../img/bandeirinha_final_rodape.png'); }

/* Mobile — mantém tamanho confortável já validado */
@media (max-width: 767px) {
  .hero__bandeirinhas-top,
  .hero__bandeirinhas-bottom,
  .footer__bandeirinhas-top,
  .footer__bandeirinhas-bottom { height: 40px; }
}

/* Desktop grande — pouco maior para acompanhar a tela */
@media (min-width: 1280px) {
  .hero__bandeirinhas-top,
  .hero__bandeirinhas-bottom { height: 40px; }
  .footer__bandeirinhas-top,
  .footer__bandeirinhas-bottom { height: 32px; }
}

/* Decorativos do hero (estrela, pipa, brilho) — agora como imgs */
.hero__decor {
  position: absolute;
  width: 70px;
  height: auto;
  opacity: 0.85;
  pointer-events: none;
  user-select: none;
  display: none;
}
.hero__decor--star  { width: 60px; }
.hero__decor--kite  { width: 90px; }
.hero__decor--spark { width: 50px; }

/* ---------- Hero: troca entre price-box (mobile) e artistas (desktop) ---------- */
.hero__artistas {
  display: none;
  /* maior que o container para aproveitar todo o espaço do hero */
  width: calc(100% + 80px);
  max-width: none;
  height: auto;
  margin: 0 -40px 12px;
  /* PNG transparente — sem borda, sombra ou fundo */
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
@media (min-width: 1280px) {
  .hero__artistas {
    width: calc(100% + 200px);
    margin: 0 -100px 12px;
  }
}
.price-box--mobile { display: inline-block; }

@media (min-width: 768px) {
  .hero__artistas { display: block; }
  .price-box--mobile { display: none !important; }
}

/* Placeholders ilustrativos */
.placeholder-img {
  width: 100%;
  height: auto;
  border: 3px solid var(--vj-blue);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-on-yellow);
  display: block;
}
.placeholder-img--rounded { border-radius: var(--radius-md); }
.placeholder-img--full { width: 100%; }

/* ---------- 1. HERO ---------- */
.hero {
  background-color: var(--vj-cream);
  background-image: url('../../background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  padding: 140px 0 70px;
  text-align: center;
  color: var(--vj-black);
}
.hero h1 { color: var(--vj-blue); }
.hero strong { color: var(--vj-blue); }
.hero .hero__desc { color: var(--vj-black); opacity: 0.85; }
.hero .hero__disclaimer { color: var(--vj-black); opacity: 0.7; }
.hero__bandeirinhas-top {
  position: absolute;
  inset: 78px 0 auto 0;
}
.hero__bandeirinhas-bottom {
  position: absolute;
  inset: auto 0 0 0;
  transform: rotate(180deg);
}
.hero__logo {
  width: min(520px, 78vw);
  margin: 0 auto 24px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.35));
}
.hero h1 {
  font-size: clamp(26px, 5vw, 56px);
  margin-bottom: 18px;
}
.hero__desc {
  font-size: clamp(15px, 2vw, 20px);
  max-width: 860px;
  margin: 0 auto 22px;
  opacity: 0.95;
}
.price-box {
  display: inline-block;
  background: var(--vj-yellow);
  color: var(--vj-black);
  border: 3px solid var(--vj-blue);
  border-radius: var(--radius-md);
  padding: 18px 17px 0;
  box-shadow: 6px 6px 0 0 var(--vj-blue);
  margin-bottom: 20px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .price-box { padding: 14px 12px 0; }
}
.price-box__footer-img {
  display: block;
  width: calc(100% + 34px);
  max-width: none;
  height: auto;
  margin: 14px -17px 0;
  /* preserva o cantinho arredondado da box */
  border-bottom-left-radius: calc(var(--radius-md) - 3px);
  border-bottom-right-radius: calc(var(--radius-md) - 3px);
}
@media (max-width: 575px) {
  .price-box__footer-img {
    width: calc(100% + 24px);
    margin: 12px -12px 0;
  }
}
.price-box__label {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.price-box__price {
  font-family: var(--font-chunky);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
}
.price-box__price small {
  font-family: var(--font-display);
  font-size: 0.45em;
}
.price-box__hint {
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
}
.hero__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__disclaimer {
  font-size: 13px;
  opacity: 0.85;
  max-width: 720px;
  margin: 18px auto 0;
}
.hero__decor {
  position: absolute;
  font-size: 60px;
  opacity: 0.25;
  pointer-events: none;
  display: none;
}
@media (min-width: 768px) {
  .hero__decor { display: block; }
  .hero__decor--star  { top: 22%; left: 6%; }
  .hero__decor--kite  { bottom: 18%; right: 8%; font-size: 80px; }
  .hero__decor--spark { top: 40%; right: 14%; font-size: 40px; }
}

/* ---------- 2. INFO BAR ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .info-grid { grid-template-columns: repeat(4, 1fr); }
}
.info-card {
  border: 3px solid var(--info-outline, var(--vj-blue));
  border-radius: var(--radius-md);
  box-shadow: 4px 4px 0 0 var(--info-outline, var(--vj-blue));
  padding: 18px 14px;
  text-align: center;
}
/* Info-cards: cor de outline por bg (inline style) */
.info-card[style*="--vj-yellow"] { --info-outline: var(--vj-blue); }
.info-card[style*="--vj-green"]  { --info-outline: var(--vj-red); }
.info-card[style*="--vj-red"]    { --info-outline: var(--vj-green); }
.info-card[style*="--vj-blue"]   { --info-outline: var(--vj-yellow); }

.info-card__emoji { font-size: 36px; line-height: 1; margin-bottom: 6px; }
.info-card__label {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  opacity: 0.85;
}
.info-card__value {
  font-family: var(--font-chunky);
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.1;
  margin-top: 4px;
}
.info-bar__cta { text-align: center; margin-top: 24px; }

/* ---------- 3. SOBRE ---------- */
.about-grid {
  background: var(--vj-cream-dark);
  border: 3px solid var(--vj-green);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  gap: 18px;
  position: relative;
  overflow: hidden;
  align-items: center;
}
.about-grid::before {
  content: "🎪";
  position: absolute;
  top: -30px; right: -30px;
  font-size: 200px;
  opacity: 0.08;
  pointer-events: none;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 7fr 5fr; gap: 36px; padding: 56px; }
}
.about-grid h2 { font-size: clamp(36px, 5vw, 64px); color: var(--vj-blue); }
.about-grid p  { font-size: clamp(15px, 1.5vw, 18px); margin: 0 0 12px; }

/* ---------- 4. ATRATIVOS ---------- */
.section-title { text-align: center; margin-bottom: 36px; }
.section-title h2 {
  color: var(--vj-blue);
  font-size: clamp(36px, 6vw, 80px);
}
.section-title p { color: rgba(14,14,14,0.7); font-size: 18px; }

.attractions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .attractions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .attractions-grid { grid-template-columns: repeat(3, 1fr); } }
.attraction { padding: 28px; }
.attraction__emoji { font-size: 48px; margin-bottom: 12px; line-height: 1; }
.attraction h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-bottom: 8px;
}
.attraction p { font-size: 16px; opacity: 0.92; margin: 0; }

/* ---------- 5. INGRESSO POPULAR ---------- */
.popular-ticket {
  background: var(--vj-yellow);
  border: 4px solid var(--vj-blue);
  border-radius: var(--radius-lg);
  box-shadow: 8px 8px 0 0 var(--vj-blue);
  padding: 50px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.popular-ticket h2 {
  color: var(--vj-blue);
  font-size: clamp(34px, 5.5vw, 72px);
}
.popular-ticket p { font-size: clamp(15px, 1.6vw, 18px); max-width: 760px; margin: 0 auto 22px; }
.price-double {
  display: inline-flex;
  align-items: flex-end;
  gap: 24px;
  background: var(--vj-white);
  border: 3px solid var(--vj-green);
  border-radius: var(--radius-md);
  padding: 22px 32px;
  box-shadow: var(--shadow-on-white);
  margin-bottom: 18px;
}
.price-double__divider {
  width: 2px;
  height: 60px;
  background: rgba(14,14,14,0.2);
  display: none;
}
@media (min-width: 768px) { .price-double__divider { display: block; } }
.price-double__item p:first-child {
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.price-double__item .price-value {
  font-family: var(--font-chunky);
  font-size: clamp(42px, 7vw, 64px);
  line-height: 1;
  margin: 0;
}
.popular-ticket__warn { font-size: 14px; max-width: 640px; margin: 0 auto 18px; }

/* ---------- 6. INCLUI ---------- */
.includes {
  display: grid;
  gap: 24px;
  align-items: center;
}
@media (min-width: 768px) {
  .includes { grid-template-columns: 4fr 8fr; gap: 56px; }
  /* coluna esquerda (título) alinhada à direita para ficar próxima dos boxes */
  .includes > div:first-child { text-align: right; }
}
.includes__title { font-size: clamp(36px, 5vw, 56px); color: var(--vj-blue); }
.includes__list { display: flex; flex-direction: column; gap: 12px; }
.includes__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--vj-white);
  font-size: clamp(15px, 1.5vw, 18px);
}
.includes__check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--vj-yellow);
  color: var(--vj-black);
  border: 2px solid var(--vj-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-top: 2px;
}
.includes__warn {
  background: var(--vj-red);
  color: var(--vj-white);
  border: 3px solid var(--vj-green);
  border-radius: 20px;
  padding: 16px 18px;
  margin-top: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

/* ---------- 7. PROGRAMAÇÃO ---------- */
.programacao-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) { .programacao-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .programacao-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px){ .programacao-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1280px){ .programacao-grid { grid-template-columns: repeat(7, 1fr); } }
/* ---------- Cards da Programação (PNG como background) ---------- */
.prog-card {
  position: relative;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  /* proporção natural do PNG (125x110) */
  aspect-ratio: 125 / 110;
  min-height: 0;
  /* bottom alto empurra o conteúdo para cima — centraliza no miolo amarelo */
  padding: 6% 8% 40% 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  /* limpa estilos antigos */
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  clip-path: none;
}
.prog-card::before { content: none; }

/* Tipografia (sempre em azul, contrastando com o miolo amarelo do PNG) */
.prog-card__name {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1;
  color: var(--vj-blue);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0;
  padding: 0 2px;
}
.prog-card__date {
  font-family: var(--font-chunky);
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1;
  color: var(--vj-blue);
  margin: 0;
}
.prog-card__day { display: none; }

/* ---------- 2 variantes (PNG como fundo) ---------- */
.prog-card--green { background-image: url('../../bandeirinha-verde.png'); }
.prog-card--blue  { background-image: url('../../bandeirinha-azul.png');  }

/* ---------- 8. ALIMENTAÇÃO ---------- */
.callout {
  border: 3px solid var(--callout-outline, var(--vj-blue));
  border-radius: var(--radius-lg);
  box-shadow: 6px 6px 0 0 var(--callout-outline, var(--vj-blue));
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
}
.callout--red    { background: var(--vj-red);   color: var(--vj-white); --callout-outline: var(--vj-green); }
.callout--green  { background: var(--vj-green); color: var(--vj-white); --callout-outline: var(--vj-red); }
.callout--blue   { background: var(--vj-blue);  color: var(--vj-white); --callout-outline: var(--vj-yellow); }
.callout__grid   { display: grid; gap: 20px; position: relative; z-index: 2; align-items: center; }
@media (min-width: 768px) { .callout__grid { grid-template-columns: 1fr 1fr; gap: 36px; } .callout { padding: 56px; } }
.callout h2 { font-size: clamp(32px, 4.5vw, 56px); }
.callout__warn {
  background: var(--vj-yellow);
  color: var(--vj-black);
  border: 2px solid var(--vj-blue);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 500;
}
.callout__decor {
  position: absolute;
  font-size: 120px;
  opacity: 0.13;
  pointer-events: none;
  display: none;
}
@media (min-width: 768px) { .callout__decor { display: block; } }

/* ---------- 9. PARQUE ---------- */
.parque__box {
  background: var(--vj-yellow);
  color: var(--vj-black);
  border: 3px solid var(--vj-blue);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-on-yellow);
}
.parque__icon { font-size: 100px; line-height: 1; }
.parque__title { font-family: var(--font-chunky); font-size: clamp(26px, 3.5vw, 36px); margin: 8px 0 4px; }
.parque__hint  { font-family: var(--font-display); font-size: 14px; }

/* ---------- 10. FAMILIAR ---------- */
.familia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .familia-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .familia-grid { grid-template-columns: repeat(3, 1fr); } }
.familia-card { padding: 32px; height: 100%; }
.familia-card__emoji { font-size: 60px; margin-bottom: 12px; line-height: 1; }
.familia-card h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 8px; }
.familia-card p { font-size: clamp(15px, 1.5vw, 18px); margin: 0; opacity: 0.95; }

/* ---------- 11. SOLIDÁRIO ---------- */
.solidario {
  text-align: center;
  position: relative;
}
.solidario__emoji { font-size: 80px; margin-bottom: 8px; line-height: 1; }
.solidario h2 { font-size: clamp(36px, 6vw, 72px); }
.solidario__quote {
  font-family: var(--font-script);
  color: var(--vj-yellow);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  margin: 18px 0;
}

/* ---------- 12. LOCALIZAÇÃO ---------- */
.local {
  display: grid;
  gap: 24px;
  align-items: center;
}
@media (min-width: 768px) { .local { grid-template-columns: 5fr 7fr; gap: 36px; } }
.local h2 { font-size: clamp(36px, 5vw, 64px); color: var(--vj-blue); }
.local__address {
  background: var(--vj-yellow);
  border: 3px solid var(--vj-blue);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow-on-yellow);
  margin-bottom: 18px;
}
.local__address-label {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.local__address-value {
  font-family: var(--font-chunky);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.2;
  margin: 0;
}
.local__buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.local__map {
  border: 3px solid var(--vj-green);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 6px 6px 0 0 var(--vj-green);
  height: 320px;
}
@media (min-width: 768px) { .local__map { height: 420px; } }
.local__map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- 13. FAQ ---------- */
.faq-wrap {
  background: var(--vj-yellow);
  border: 3px solid var(--vj-blue);
  border-radius: var(--radius-lg);
  box-shadow: 6px 6px 0 0 var(--vj-blue);
  padding: 32px 20px;
}
@media (min-width: 768px) { .faq-wrap { padding: 56px; } }
.faq-wrap > h2 { text-align: center; color: var(--vj-black); font-size: clamp(36px, 6vw, 72px); margin-bottom: 4px; }
.faq-wrap > p { text-align: center; opacity: 0.7; margin-bottom: 24px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 920px; margin: 0 auto; }
.faq-item {
  background: var(--vj-cream);
  border: 2px solid var(--vj-green);
  border-radius: 16px;
  overflow: hidden;
}
.faq-item__btn {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}
.faq-item__btn h5 {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  margin: 0;
  text-transform: uppercase;
  line-height: 1.1;
}
.faq-item__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--vj-blue);
  color: var(--vj-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.faq-item[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item[aria-expanded="true"] .faq-item__answer { max-height: 400px; }
.faq-item__answer p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.55;
}
.faq-wrap__cta { text-align: center; margin-top: 28px; }

/* ---------- 14. CHAMADA FINAL ---------- */
.final {
  background: var(--vj-red);
  color: var(--vj-white);
  border: 4px solid var(--vj-green);
  border-radius: var(--radius-lg);
  box-shadow: 8px 8px 0 0 var(--vj-green);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 60px 28px;
}
.final__hi { font-family: var(--font-script); color: var(--vj-yellow); font-size: clamp(28px, 4vw, 44px); margin: 0; }
.final h2 { font-size: clamp(40px, 7vw, 88px); margin: 6px 0 16px; }
.final p { font-size: clamp(15px, 1.8vw, 20px); margin: 0 auto 8px; max-width: 820px; opacity: 0.95; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--vj-blue);
  color: var(--vj-white);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  padding: 60px 24px 28px;
  margin-top: 30px;
  text-align: center;
}
.footer__bandeirinhas-top    { position: absolute; inset: 0 0 auto 0; }
.footer__bandeirinhas-bottom { position: absolute; inset: auto 0 0 0; transform: rotate(180deg); }
.footer__inner { position: relative; z-index: 2; padding-top: 30px; }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin: 24px 0; }
.footer__nav a { font-size: 14px; text-transform: uppercase; font-weight: 500; opacity: 0.9; }
.footer__nav a:hover { color: var(--vj-yellow); }
.footer__divider { width: 100%; height: 1px; background: rgba(255,255,255,0.15); margin: 16px 0; }
.footer__label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.7; margin-bottom: 4px; }
.footer__value { font-size: 17px; font-weight: 600; margin-bottom: 16px; }
.footer__copyright { font-size: 13px; opacity: 0.6; }
.footer__copyright a { color: var(--vj-yellow); text-decoration: underline; }
.footer__spacer { height: 80px; }
@media (min-width: 768px) { .footer__spacer { display: none; } }

/* ---------- Responsividade Nav ---------- */
@media (min-width: 768px) {
  .navbar__cta { display: inline-flex; }
  .cta-floating { display: none; }
}
@media (min-width: 1024px) {
  .navbar__menu { display: flex; }
  .hamburger { display: none; }
}

/* ---------- Layout utilitário extra ---------- */
.row-stack { display: flex; flex-direction: column; gap: 16px; }
.text-center { text-align: center; }
.mt-8 { margin-top: 32px; }
.mb-8 { margin-bottom: 32px; }
