/* ==========================================================================
   AURA · Sapucaí 2027 — O Jardim das Delícias de Carnaval
   Identidade: fundo preto, botânica pintada, serifa condensada (Instrument
   Serif) para nomes, grotesca (Archivo) para rótulos em caixa alta.
   ========================================================================== */

:root {
  --ground: #050505;
  --ground-2: #0d0c0b;
  --ink: #f2ece0;
  --ink-2: #b9b2a5;
  --ink-3: #7d776d;
  --line: rgba(242, 236, 224, 0.14);
  --dahlia: #ee5a2c;
  --dahlia-soft: rgba(238, 90, 44, 0.18);
  --leaf: #3e7a3e;
  --cobalt: #2f5fd8;
  --lilac: #9a78c9;

  --serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;

  --max: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* Halo escuro: garante leitura do texto quando ele cruza as flores */
  --halo: 0 1px 2px rgba(5, 5, 5, 0.9), 0 2px 14px rgba(5, 5, 5, 0.9), 0 0 32px rgba(5, 5, 5, 0.8);
  --halo-strong: 0 1px 2px rgba(5, 5, 5, 0.95), 0 3px 18px rgba(5, 5, 5, 0.95), 0 0 48px rgba(5, 5, 5, 0.9), 0 0 90px rgba(5, 5, 5, 0.7);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--dahlia); outline-offset: 3px; }

.wrap { width: min(var(--max), 100% - var(--gutter) * 2); margin-inline: auto; }

/* ---------- tipografia utilitária ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.eyebrow--dahlia { color: var(--dahlia); }

.serif { font-family: var(--serif); font-weight: 400; }
.italic { font-style: italic; }

h1, h2, h3 { margin: 0; font-weight: 400; text-wrap: balance; }

/* ---------- Botão ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--ground);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.4s var(--ease-out), background 0.3s;
  white-space: nowrap;
}
.btn strong { font-weight: 800; letter-spacing: 0; text-transform: none; font-size: 15px; font-style: italic; }
.btn:hover { transform: translateY(-2px); background: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: rgba(242, 236, 224, 0.06); }
.btn--dahlia { background: var(--dahlia); color: #1a0a04; }
.btn--dahlia:hover { background: #ff6a3a; }
.btn--sm { padding: 12px 18px; font-size: 11px; }

/* ==========================================================================
   Navegação
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.nav.is-scrolled {
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(242, 236, 224, 0.06);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo img { height: 22px; width: auto; }
.nav__links { display: none; gap: 30px; align-items: center; margin: 0; padding: 0; list-style: none; }
.nav__links a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: color 0.3s;
  white-space: nowrap;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__cta { display: none; }
.nav__burger {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  margin-right: -10px;
}
.nav__burger span {
  display: block; width: 24px; height: 1.5px; background: var(--ink);
  position: relative; transition: transform 0.4s var(--ease-out), background 0.3s;
}
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 100%; background: var(--ink);
  transition: transform 0.4s var(--ease-out);
}
.nav__burger span::before { transform: translateY(-7px); }
.nav__burger span::after { transform: translateY(7px); }
body.menu-open .nav__burger span { background: transparent; }
body.menu-open .nav__burger span::before { transform: rotate(45deg); }
body.menu-open .nav__burger span::after { transform: rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(5, 5, 5, 0.96);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
body.menu-open .menu { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }
.menu ul { list-style: none; margin: 0; padding: 0; text-align: center; display: grid; gap: 10px; }
.menu a {
  font-family: var(--serif);
  font-size: clamp(38px, 9vw, 64px);
  line-height: 1.05;
  transition: color 0.3s;
}
.menu li:nth-child(even) a { font-style: italic; }
.menu a:hover { color: var(--dahlia); }
.menu a.btn { margin-top: 22px; font-family: var(--sans); font-size: 12px; font-style: normal; line-height: 1; letter-spacing: 0.16em; }
.menu__foot { position: absolute; bottom: 28px; left: 0; right: 0; text-align: center; }

@media (min-width: 900px) {
  .nav__links { display: flex; gap: clamp(16px, 2.2vw, 30px); }
  .nav__cta { display: inline-flex; }
  .nav__burger, .menu { display: none; }
  .nav__logo img { height: 26px; }
}
@media (min-width: 900px) and (max-width: 1100px) {
  .nav__links a { font-size: 10px; letter-spacing: 0.14em; }
}

/* ==========================================================================
   Jardim fixo (flores que nascem com o scroll)
   ========================================================================== */
.garden {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.garden img {
  position: absolute;
  width: var(--w);
  left: var(--x);
  top: var(--y);
  transform-origin: 50% 60%;
  will-change: transform, opacity;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.55));
  opacity: 0;
  transform: scale(0) rotate(var(--r, 0deg));
}
.garden img.is-static { opacity: 1; transform: scale(1) rotate(var(--r, 0deg)); }

main { position: relative; z-index: 1; text-shadow: var(--halo); }
.footer, .menu, .modal__panel { text-shadow: var(--halo); }
h1, h2, .day__date, .day__weekday, .dayrow__date, .manifesto h2, .buy__head h2, .page-hero h1 { text-shadow: var(--halo-strong); }
.btn, .pill, .fact, .steps li, .map, .field input { text-shadow: none; }

/* Sombra radial atrás dos blocos de título: escurece a flor logo atrás do
   texto sem apagar o jardim nas bordas */
.page-hero .wrap, .buy__head, .day__meta, .manifesto h2, .lineup-head { position: relative; isolation: isolate; }
.page-hero .wrap::before, .buy__head::before, .day__meta::before, .manifesto h2::before, .lineup-head::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  inset: -18% -12% -18% -14%;
  background: radial-gradient(ellipse at 40% 50%, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.75) 40%, transparent 72%);
}
.day--left .day__meta::before { background: radial-gradient(ellipse at 60% 50%, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.75) 40%, transparent 72%); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding-top: calc(var(--nav-h) + 10px);
  padding-bottom: 96px;
  overflow: hidden;
}
@media (max-height: 700px) { .hero__scroll { display: none; } .hero { padding-bottom: 40px; } }
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 20px;
  text-align: center;
}
.hero__dates, .hero__tag {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; line-height: 1.55;
  color: var(--ink);
  max-width: 260px;
}
.hero__dates span, .hero__tag span { display: block; white-space: nowrap; }
.hero__dates { order: 1; }
.hero__stage { order: 2; }
.hero__tag { order: 3; }

/* Palco quadrado que segura logo + flores da composição */
.hero__stage {
  position: relative;
  width: min(92vw, 560px);
  aspect-ratio: 1;
}
.hero__logo {
  position: absolute;
  left: 50%; top: 50%;
  width: 82%;
  transform: translate(-50%, -50%);
  z-index: 3;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.9));
}
.hero__logo img { width: 100%; }
.bloom {
  position: absolute;
  width: var(--w);
  left: var(--x);
  top: var(--y);
  z-index: var(--z, 2);
  transform-origin: 50% 60%;
  will-change: transform, opacity;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
}
.hero__scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: grid; justify-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-3);
}
.hero__scroll i {
  width: 1px; height: 46px; background: linear-gradient(var(--ink-2), transparent);
  animation: drip 2.2s infinite;
}
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(150px, 1fr) minmax(420px, 600px) minmax(150px, 1fr);
    gap: clamp(20px, 2.5vw, 32px);
    text-align: left;
  }
  .hero__dates { order: 1; justify-self: end; text-align: right; }
  .hero__stage { order: 2; }
  .hero__tag { order: 3; justify-self: start; text-align: left; }
}

/* ==========================================================================
   Manifesto
   ========================================================================== */
.manifesto { padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 8vw, 120px); }
.manifesto__grid { display: grid; gap: 40px; }
.manifesto h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.01em;
  max-width: 14ch;
}
.manifesto h2 em { font-style: italic; color: var(--dahlia); }
.manifesto p { color: var(--ink-2); max-width: 46ch; font-size: 17px; line-height: 1.65; margin: 0; }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.fact { background: var(--ground); padding: 22px 20px; display: grid; gap: 6px; }
.fact b { font-family: var(--serif); font-weight: 400; font-size: 34px; line-height: 1; }
.fact span { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
@media (min-width: 900px) {
  .manifesto__grid { grid-template-columns: 1.1fr 0.9fr; align-items: end; }
  .facts { grid-template-columns: repeat(4, 1fr); grid-column: 1 / -1; margin-top: 30px; }
}

/* ==========================================================================
   Lineup por dia
   ========================================================================== */
.lineup-head { padding: 40px 0 10px; display: flex; flex-wrap: wrap; gap: 16px 40px; align-items: baseline; justify-content: space-between; }
.lineup-head h2 { font-family: var(--serif); font-size: clamp(36px, 5vw, 64px); line-height: 1; }
.dayindex { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; }
.dayindex a {
  display: inline-block; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 11px; letter-spacing: 0.14em; color: var(--ink-2); transition: all 0.3s;
  font-variant-numeric: tabular-nums;
}
.dayindex a:hover, .dayindex a.is-active { border-color: var(--ink); color: var(--ink); }

.day {
  position: relative;
  padding: clamp(70px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
  overflow: clip;
}
.day__flower {
  position: absolute;
  z-index: 0;
  width: clamp(220px, 34vw, 520px);
  top: 10%;
  right: -8%;
  pointer-events: none;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.7));
  transform-origin: 50% 60%;
}
.day--left .day__flower { right: auto; left: -10%; }
@media (max-width: 899px) {
  .day__flower, .day--left .day__flower { width: 44vw; top: -2%; right: -10%; left: auto; opacity: 0.95; }
}
.day__inner { position: relative; z-index: 1; display: grid; gap: 40px; }

.day__meta { display: grid; gap: 8px; align-content: start; }
.day__date {
  font-family: var(--serif);
  font-size: clamp(56px, 10vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.day__weekday {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(26px, 5vw, 56px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-wrap: balance;
}
.day__note { color: var(--ink-2); font-size: 14px; max-width: 32ch; margin-top: 10px; }
.day__buy { margin-top: 20px; }

.headliners {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 62vw);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scrollbar-width: none;
}
.headliners::-webkit-scrollbar { display: none; }
.card {
  position: relative;
  aspect-ratio: 3 / 4;
  scroll-snap-align: start;
  overflow: hidden;
  background: var(--ground-2);
  border: 1px solid rgba(242, 236, 224, 0.08);
}
.card img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); filter: saturate(0.9); }
.card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.25) 45%, transparent 70%);
}
.card__name {
  position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.95;
  text-wrap: balance;
}
.card__role {
  position: absolute; left: 18px; top: 16px; z-index: 2;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2);
}
.card:nth-child(even) .card__name { font-style: italic; }

.support { display: grid; gap: 18px; }
.support__row { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; }
.support__row .eyebrow { flex-basis: 100%; }
.support__name { font-family: var(--serif); font-size: clamp(22px, 2.6vw, 32px); line-height: 1.1; }
.support__name:nth-of-type(even) { font-style: italic; }
.support__dot { color: var(--dahlia); font-family: var(--serif); font-size: 24px; line-height: 1; }
.pill {
  display: inline-block; padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--ink); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  vertical-align: middle;
}
.desfiles { display: grid; gap: 8px; }
.desfiles ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; font-size: 14px; color: var(--ink-2); columns: 2; }
.desfiles ul { display: block; column-count: 2; column-gap: 24px; }
.desfiles li { break-inside: avoid; padding: 2px 0; }
.desfiles--single ul { column-count: 1; }

@media (min-width: 900px) {
  .day__inner { grid-template-columns: 0.75fr 1.25fr; gap: 56px; align-items: start; }
  .day--left .day__inner { grid-template-columns: 1.25fr 0.75fr; }
  .day--left .day__meta { order: 2; text-align: right; justify-items: end; }
  .day--left .day__note { text-align: right; }
  .day--left .day__body { order: 1; }
  .headliners {
    grid-auto-flow: row;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    grid-auto-columns: auto;
    overflow: visible;
    margin-inline: 0; padding-inline: 0;
  }
  .day__body { display: grid; gap: 36px; }
  .day__flower { top: 50%; transform: translateY(-50%); }
}

/* ==========================================================================
   Vídeo fullscreen
   ========================================================================== */
.video {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: #000;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.video video, .video__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video__shade { position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 45%, rgba(5, 5, 5, 0.7)); }
.video__ui {
  position: absolute; inset: 0; z-index: 2;
  display: grid; align-content: end; gap: 18px;
  padding: 0 var(--gutter) clamp(32px, 6vw, 72px);
}
.video__ui h2 { font-family: var(--serif); font-size: clamp(34px, 5vw, 64px); line-height: 1; max-width: 16ch; }
.video__ui h2 em { font-style: italic; color: var(--dahlia); }
.video__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.video__note { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }

/* ==========================================================================
   Onde comprar (teaser) + Grade de dias (página ingressos)
   ========================================================================== */
.buy { padding: clamp(80px, 12vw, 160px) 0; }
.buy__head { display: grid; gap: 18px; margin-bottom: 40px; }
.buy__head h2 { font-family: var(--serif); font-size: clamp(40px, 7vw, 96px); line-height: 0.95; max-width: 12ch; }
.buy__head p { color: var(--ink-2); max-width: 50ch; margin: 0; }
.days { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.dayrow {
  display: grid; gap: 12px;
  grid-template-columns: 1fr;
  padding: 22px 20px;
  background: var(--ground);
  transition: background 0.3s;
}
.dayrow:hover { background: var(--ground-2); }
.dayrow__date { font-family: var(--serif); font-size: 40px; line-height: 1; font-variant-numeric: tabular-nums; }
.dayrow__wd { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); }
.dayrow__acts { font-family: var(--serif); font-size: 22px; line-height: 1.15; color: var(--ink); }
.dayrow__acts i { color: var(--ink-2); }
.dayrow__cta { display: flex; align-items: center; }
@media (min-width: 900px) {
  .dayrow { grid-template-columns: 150px 1fr 260px; align-items: center; padding: 26px 28px; }
  .dayrow__cta { justify-content: end; }
}
.soldout .dayrow__cta .btn { opacity: 0.4; pointer-events: none; }

/* ==========================================================================
   Páginas internas (ingressos, meeting point, credenciamento)
   ========================================================================== */
.page-hero { padding: calc(var(--nav-h) + clamp(60px, 10vw, 140px)) 0 clamp(40px, 6vw, 80px); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(48px, 9vw, 120px); line-height: 0.92; letter-spacing: -0.01em; max-width: 12ch; }
.page-hero h1 em { font-style: italic; color: var(--dahlia); }
.page-hero p { color: var(--ink-2); max-width: 52ch; font-size: 17px; line-height: 1.65; margin: 20px 0 0; }
.page-hero .eyebrow { margin-bottom: 18px; display: block; }

.section { padding: clamp(50px, 7vw, 100px) 0; border-top: 1px solid var(--line); }
.section h2 { font-family: var(--serif); font-size: clamp(32px, 4.5vw, 56px); line-height: 1; margin-bottom: 28px; }
.split { display: grid; gap: 36px; }
@media (min-width: 900px) { .split { grid-template-columns: 0.9fr 1.1fr; gap: 64px; } }
.prose { color: var(--ink-2); max-width: 60ch; }
.prose p { margin: 0 0 14px; line-height: 1.65; }
.prose strong { color: var(--ink); font-weight: 500; }

.info-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.info-list li { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.info-list li span:first-child { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); padding-top: 3px; }
.info-list li span:last-child { color: var(--ink); }

.map {
  position: relative; aspect-ratio: 4 / 3; border: 1px solid var(--line); overflow: hidden;
  background:
    radial-gradient(circle at 62% 48%, rgba(238, 90, 44, 0.28), transparent 26%),
    repeating-linear-gradient(0deg, rgba(242, 236, 224, 0.05) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(242, 236, 224, 0.05) 0 1px, transparent 1px 44px),
    var(--ground-2);
}
.map__road { position: absolute; background: rgba(242, 236, 224, 0.12); }
.map__pin {
  position: absolute; left: 62%; top: 48%; transform: translate(-50%, -100%);
  display: grid; justify-items: center; gap: 6px;
}
.map__pin i { width: 14px; height: 14px; border-radius: 50%; background: var(--dahlia); box-shadow: 0 0 0 8px var(--dahlia-soft); }
.map__pin span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; background: var(--ground); padding: 6px 10px; border: 1px solid var(--line); }
.map__label { position: absolute; left: 14px; bottom: 12px; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }

.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.steps li { counter-increment: step; background: var(--ground); padding: 26px 22px; display: grid; gap: 8px; grid-template-columns: 56px 1fr; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif); font-size: 34px; line-height: 1; color: var(--dahlia); grid-row: span 2;
}
.steps h3 { font-family: var(--serif); font-size: 26px; line-height: 1.05; }
.steps p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.6; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 0; display: flex; justify-content: space-between; gap: 20px; font-family: var(--serif); font-size: 22px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--dahlia); font-size: 26px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 20px; color: var(--ink-2); max-width: 60ch; line-height: 1.6; }

.notice {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px; border: 1px dashed rgba(238, 90, 44, 0.5); color: var(--ink-2); font-size: 13px; max-width: 60ch;
}
.notice b { color: var(--dahlia); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: 11px; }

/* ==========================================================================
   Modal de interesse (nome + telefone antes da Ticketmaster)
   ========================================================================== */
.modal {
  position: fixed; inset: 0; z-index: 60;
  display: grid; place-items: center;
  padding: 20px;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s;
}
.modal[hidden] { display: none; }
.modal.is-open { opacity: 1; }
.modal.is-open .modal__panel { transform: translateY(0) scale(1); }
body.modal-open { overflow: hidden; }
.modal__panel {
  position: relative;
  width: min(100%, 480px);
  background: var(--ground);
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 44px);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s var(--ease-out);
  overflow: hidden;
}
.modal__flower {
  position: absolute; right: -14%; top: -18%; width: 46%;
  pointer-events: none; opacity: 0.9;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7));
}
.modal__close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 40px; height: 40px; display: grid; place-items: center;
  color: var(--ink-2); font-size: 22px; line-height: 1;
}
.modal__close:hover { color: var(--ink); }
.modal__day { display: inline-block; margin-bottom: 14px; }
.modal h2 { font-family: var(--serif); font-size: clamp(30px, 5vw, 40px); line-height: 1; max-width: 12ch; position: relative; }
.modal h2 em { font-style: italic; color: var(--dahlia); }
.modal p { color: var(--ink-2); font-size: 14px; line-height: 1.6; margin: 12px 0 24px; max-width: 34ch; }
.field { display: grid; gap: 8px; margin-bottom: 16px; }
.field label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }
.field input {
  width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid var(--line);
  background: transparent; color: var(--ink);
  font-family: var(--serif); font-size: 24px; line-height: 1; outline: none;
  transition: border-color 0.3s;
}
.field input::placeholder { color: var(--ink-3); }
.field input:focus { border-bottom-color: var(--ink); }
.is-invalid .field input:invalid,
.is-invalid .field input:placeholder-shown { border-bottom-color: var(--dahlia); }
.modal__actions { display: grid; gap: 12px; margin-top: 8px; }
.modal__actions .btn { justify-content: center; }
.modal__fine { font-size: 11px; color: var(--ink-3); line-height: 1.5; margin: 0; }
.is-sending .btn { opacity: 0.7; pointer-events: none; }

/* ==========================================================================
   Rodapé
   ========================================================================== */
.footer { border-top: 1px solid var(--line); padding: 60px 0 40px; position: relative; z-index: 1; background: linear-gradient(transparent, rgba(5, 5, 5, 0.9) 30%); }
.footer__grid { display: grid; gap: 32px; }
.footer__logo img { height: 34px; width: auto; }
.footer__tag { margin-top: 14px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-2); line-height: 1.7; }
.footer h4 { margin: 0 0 12px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 14px; color: var(--ink-2); }
.footer a:hover { color: var(--ink); }
.footer__legal { margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; gap: 14px 30px; justify-content: space-between; font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; }
.footer__credit { display: inline-flex; align-items: center; gap: 10px; color: var(--ink-3); transition: color 0.3s; }
.footer__credit:hover { color: var(--ink); }
.footer__credit img { height: 18px; width: auto; opacity: 0.85; transition: opacity 0.3s; }
.footer__credit:hover img { opacity: 1; }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

/* ==========================================================================
   Reveal (conteúdo entra com scroll) — só quando JS e motion estão ativos
   ========================================================================== */
html.js .reveal { opacity: 0; transform: translateY(28px); }
html.js .reveal.is-in { opacity: 1; transform: none; transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
html.js .card img { transform: scale(1.12); }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; }
  .garden img, .bloom { opacity: 1 !important; transform: scale(1) rotate(var(--r, 0deg)) !important; }
  .hero__scroll i { animation: none; }
  html { scroll-behavior: auto; }
}
