/* ==========================================================
   Entre Cafés com Lúcia Jennings — BACC-SE
   Paleta BACC-SE: verde, vermelho, azul-marinho e dourado
   ========================================================== */
:root {
  --cream: #fbf8f2;
  --ivory: #f5eee3;
  --linen: #ede3d3;
  --olive: #22341a;
  --olive-2: #3d5230;
  --gold: #b3843a;
  --gold-2: #cfa962;
  --gold-3: #e6cf9f;
  --navy: #1a2745;
  --red: #9e3b33;
  --ink: #26281f;
  --muted: #76705f;
  --line: rgba(34, 52, 26, .14);
  --line-gold: rgba(179, 132, 58, .38);

  --display: "Bodoni Moda", "Didot", "Bodoni 72", Georgia, serif;
  --serif: "Cormorant Garamond", Garamond, Georgia, serif;
  --script: "Pinyon Script", "Snell Roundhand", cursive;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --wrap: min(1160px, calc(100% - 48px));
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-variant-numeric: lining-nums;
}
[id] { scroll-margin-top: 96px; }
:root { --nav-h: 84px; }
/* papel levemente texturizado */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
::selection { color: var(--cream); background: var(--olive); }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; }

.skip-link {
  position: fixed; z-index: 1000; top: 12px; left: 12px;
  padding: 10px 18px; color: var(--cream); background: var(--olive);
  transform: translateY(-160%); transition: transform .2s;
}
.skip-link:focus { transform: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.wrap { width: var(--wrap); margin-inline: auto; }

/* ---------- Tipografia base ---------- */
.script {
  font-family: var(--script);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  color: var(--gold);
}
.overline {
  margin: 0 0 28px;
  display: flex; align-items: center; justify-content: center; gap: 18px;
  color: var(--olive-2);
  font-size: .7rem; font-weight: 400;
  letter-spacing: .32em; text-transform: uppercase;
  line-height: 1.4;
}
.overline--left { justify-content: flex-start; }
.overline--light { color: var(--gold-3); }
.rule { flex: 0 0 auto; width: 44px; height: 1px; background: var(--line-gold); }
.rule--light { background: rgba(230, 207, 159, .45); }

.display {
  margin: 0;
  color: var(--olive);
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 500;
  font-variation-settings: "opsz" 24;
  line-height: 1.16;
  letter-spacing: -.012em;
}
.display .script {
  display: inline-block;
  font-size: 1.28em;
  line-height: .6;
  letter-spacing: 0;
  padding-right: .08em;
  transform: translateY(.06em);
}
.display--light { color: var(--cream); }
.display--light .script { color: var(--gold-2); }

.lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.62rem);
  font-weight: 400;
  line-height: 1.5;
}

/* ---------- Botões ---------- */
.btn {
  min-height: 52px;
  padding: 0 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: none;
  font-family: var(--sans);
  font-size: .72rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn--ghost { color: var(--olive); border-color: var(--line-gold); }
.btn--ghost:hover { color: var(--cream); background: var(--olive); border-color: var(--olive); }
.btn--text { min-height: 44px; padding: 0 6px; color: var(--muted); border-radius: 0; }
.btn--text:hover { color: var(--gold); }
.btn--solid { color: var(--cream); background: var(--olive); }
.btn--solid[disabled] { cursor: default; opacity: 1; background: var(--olive); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; z-index: 100; inset: 0 0 auto;
  height: var(--nav-h);
  background: rgba(251, 248, 242, .82);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  transition: height .5s var(--ease), background .5s var(--ease), box-shadow .5s var(--ease);
}
.nav::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-gold) 20%, var(--line-gold) 80%, transparent);
}
.nav.is-scrolled { --nav-h: 68px; background: rgba(251, 248, 242, .94); box-shadow: 0 10px 40px -20px rgba(34, 52, 26, .25); }
.nav__inner {
  width: min(1280px, calc(100% - 56px)); height: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
}
.nav__logo { justify-self: start; display: block; }
.nav__logo img { width: auto; height: calc(var(--nav-h) - 30px); transition: height .5s var(--ease); }
.nav__links { display: flex; align-items: center; gap: clamp(22px, 3vw, 44px); }
.nav__links a {
  position: relative; padding: 8px 0;
  color: var(--olive);
  font-size: .7rem; font-weight: 400; letter-spacing: .24em; text-transform: uppercase;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: translateX(-50%) scaleX(0); transition: transform .45s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--gold); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: translateX(-50%) scaleX(1); }
.nav__aside { justify-self: end; display: flex; align-items: center; gap: 22px; }
.nav__count {
  margin: 0; display: flex; align-items: center; gap: 10px;
  color: var(--olive-2);
  font-size: .72rem; letter-spacing: .12em; font-variant-numeric: tabular-nums; white-space: nowrap;
}
.nav__count i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(179, 132, 58, .5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(179, 132, 58, .45); } 70% { box-shadow: 0 0 0 9px rgba(179, 132, 58, 0); } 100% { box-shadow: 0 0 0 0 rgba(179, 132, 58, 0); } }
.nav__cta {
  min-height: 42px; padding: 0 22px;
  display: inline-flex; align-items: center;
  color: var(--cream); background: var(--olive);
  border-radius: 999px;
  font-size: .66rem; letter-spacing: .22em; text-transform: uppercase;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.nav__cta:hover { color: var(--olive); background: var(--gold-3); }
.nav__toggle {
  display: none;
  width: 44px; height: 44px; padding: 0;
  border: 1px solid var(--line-gold); border-radius: 50%; background: none; cursor: pointer;
  position: relative;
}
.nav__toggle i {
  position: absolute; left: 13px; width: 16px; height: 1px; background: var(--olive);
  transition: transform .4s var(--ease), top .4s var(--ease);
}
.nav__toggle i:nth-of-type(1) { top: 18px; }
.nav__toggle i:nth-of-type(2) { top: 24px; }
.nav__toggle[aria-expanded="true"] i:nth-of-type(1) { top: 21px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] i:nth-of-type(2) { top: 21px; transform: rotate(-45deg); }

.menu {
  position: fixed; z-index: 95; inset: 0;
  padding: calc(var(--nav-h) + 40px) 28px 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--cream);
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.menu[hidden] { display: flex; }
.menu.is-open { opacity: 1; visibility: visible; }
.menu__links { display: flex; flex-direction: column; }
.menu__links a {
  padding: 16px 0;
  display: flex; align-items: baseline; gap: 18px;
  color: var(--olive);
  font-family: var(--display); font-variation-settings: "opsz" 24; font-weight: 500;
  font-size: clamp(1.9rem, 8vw, 2.6rem); line-height: 1.1;
  border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
}
.menu__links a span { width: 28px; color: var(--gold); font-size: .8rem; letter-spacing: .1em; }
.menu.is-open .menu__links a { opacity: 1; transform: none; }
.menu.is-open .menu__links a:nth-child(2) { transition-delay: .05s; }
.menu.is-open .menu__links a:nth-child(3) { transition-delay: .1s; }
.menu.is-open .menu__links a:nth-child(4) { transition-delay: .15s; }
.menu.is-open .menu__links a:nth-child(5) { transition-delay: .2s; }
.menu__foot { text-align: center; }
.menu__foot .script { margin: 0; font-size: 2.6rem; line-height: 1.2; }
.menu__foot p:last-child { margin: 8px 0 0; color: var(--muted); font-size: .68rem; letter-spacing: .2em; line-height: 1.9; text-transform: uppercase; }
body.menu-open { overflow: hidden; }


/* ---------- Hero ---------- */
.hero {
  position: relative;
  margin-top: var(--nav-h);
  overflow: hidden;
  background: #efe7da;
}
.hero__art img {
  width: 100%;
  animation: heroIn 2.4s var(--ease) both;
  transform-origin: 60% 40%;
}
.hero::after {
  content: "";
  position: absolute; inset: auto 0 0; height: 18%;
  background: linear-gradient(to bottom, rgba(251, 248, 242, 0), var(--cream));
  pointer-events: none;
}
@keyframes heroIn {
  from { opacity: 0; transform: scale(1.045); filter: blur(4px); }
  to { opacity: 1; transform: none; filter: none; }
}

/* ---------- Contagem regressiva ---------- */
.countdown {
  position: relative; z-index: 2;
  padding: 0 0 clamp(80px, 10vw, 130px);
}
.countdown__card {
  position: relative;
  width: min(940px, calc(100% - 40px));
  margin: clamp(-40px, -2.6vw, -20px) auto 0;
  padding: clamp(36px, 4.5vw, 56px) clamp(20px, 5vw, 64px) clamp(34px, 4vw, 48px);
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--line-gold);
  box-shadow: 0 30px 60px -45px rgba(34, 52, 26, .35);
}
.countdown__when {
  margin: 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px 16px;
  color: var(--olive-2);
  font-size: .66rem; letter-spacing: .26em; text-transform: uppercase;
}
.countdown__when i { color: var(--gold-2); font-size: .5rem; font-style: normal; letter-spacing: 0; }
.countdown__title { margin: 18px 0 0; font-weight: 400; display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 0 14px; }
.countdown__title .script { font-size: clamp(2.8rem, 4.6vw, 3.8rem); line-height: 1.05; }
.countdown__sub {
  color: var(--muted);
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.4;
}

.timer {
  margin: clamp(22px, 3vw, 32px) auto 0;
  max-width: 620px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.timer__unit { display: flex; flex-direction: column; align-items: center; padding: 4px 0; }
.timer__unit + .timer__unit { border-left: 1px solid var(--line-gold); }
.timer__num {
  display: block;
  color: var(--olive);
  font-family: var(--display); font-variation-settings: "opsz" 60; font-weight: 400;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-variant-numeric: lining-nums tabular-nums;
  line-height: 1; letter-spacing: -.02em;
}
.timer__num.tick { animation: tick .6s var(--ease); }
@keyframes tick { from { opacity: .35; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.timer__label {
  margin-top: 10px;
  color: var(--gold);
  font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; padding-left: .26em;
}
.countdown.is-live .timer, .countdown.is-over .timer { display: none; }

.calendar { margin-top: clamp(26px, 3vw, 34px); display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 26px; }
.countdown.is-over .calendar { display: none; }
.btn--icon { gap: 10px; }
.btn--icon svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Experiência ---------- */
.experience {
  padding: clamp(80px, 11vw, 150px) 0;
  background: var(--ivory);
  border-top: 1px solid var(--line);
}
.experience__head { max-width: 900px; }
.experience__body {
  margin: clamp(40px, 5vw, 64px) 0 0 auto;
  max-width: 640px;
  color: var(--muted);
}
.experience__body .lead { margin: 0 0 18px; }
.experience__body p:last-child { margin: 0; }

.pillars {
  margin-top: clamp(64px, 8vw, 110px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.pillar { padding: 44px clamp(22px, 3vw, 44px) 8px 0; }
.pillar + .pillar { padding-left: clamp(22px, 3vw, 44px); border-left: 1px solid var(--line); }
.pillar__num {
  display: block; margin-bottom: 30px;
  color: var(--gold);
  font-family: var(--display); font-size: .95rem; letter-spacing: .12em;
}
.pillar h3 {
  margin: 0 0 16px;
  color: var(--olive);
  font-family: var(--display); font-variation-settings: "opsz" 14;
  font-size: clamp(1.5rem, 2.1vw, 1.85rem); font-weight: 500;
  line-height: 1.2; letter-spacing: -.01em;
}
.pillar h3 .script { font-size: 1.3em; line-height: .5; }
.pillar p { margin: 0; color: var(--muted); font-size: .96rem; line-height: 1.75; }

/* ---------- Citação ---------- */
.quote {
  position: relative;
  padding: clamp(90px, 12vw, 160px) 0;
  color: var(--cream);
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(207, 169, 98, .12), transparent 70%),
    var(--olive);
  text-align: center;
  overflow: hidden;
}
.quote::before, .quote::after {
  content: ""; position: absolute; left: 50%;
  width: min(760px, 86%); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(207, 169, 98, .4), transparent);
  transform: translateX(-50%);
}
.quote::before { top: 36px; }
.quote::after { bottom: 36px; }
.quote__inner { position: relative; width: min(900px, calc(100% - 40px)); margin: 0 auto; }
.quote__mark {
  display: block; height: .42em; margin-bottom: 18px;
  color: var(--gold-2);
  font-family: var(--serif); font-size: clamp(6rem, 11vw, 9rem); font-weight: 400;
  line-height: .9; opacity: .75;
}
.quote blockquote { margin: 0; }
.quote blockquote p {
  margin: 0;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.85rem, 3.6vw, 3.1rem);
  line-height: 1.28; letter-spacing: -.005em;
}
.quote figcaption { margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 20px; }
.quote figcaption .script { color: var(--gold-2); font-size: clamp(2.2rem, 3.4vw, 2.9rem); line-height: 1; }

/* ---------- Anfitriã ---------- */
.host { padding: clamp(90px, 12vw, 160px) 0; }
.host__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1fr); gap: clamp(48px, 8vw, 120px); align-items: center; }
.host__visual { position: relative; max-width: 480px; }
.host__visual::before {
  content: ""; position: absolute; inset: -18px 18px 18px -18px;
  border: 1px solid var(--line-gold);
  border-radius: 999px 999px 4px 4px;
}
.host__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 999px 999px 4px 4px;
  background: #e9e9ec;
}
.host__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; transition: transform 1.6s var(--ease); }
.host__visual:hover .host__frame img { transform: scale(1.03); }
.host__stat {
  position: absolute; right: -36px; bottom: 44px;
  padding: 18px 24px;
  display: flex; align-items: center; gap: 14px;
  background: var(--cream);
  border: 1px solid var(--line-gold);
  box-shadow: 0 24px 50px -24px rgba(34, 52, 26, .3);
}
.host__stat strong { color: var(--olive); font-family: var(--display); font-size: 2.6rem; font-weight: 400; line-height: 1; }
.host__stat .plus { margin-left: 2px; color: var(--gold); font-family: var(--serif); font-size: .7em; vertical-align: top; }
.host__stat span { color: var(--muted); font-size: .66rem; letter-spacing: .16em; line-height: 1.6; text-transform: uppercase; }

.host__copy { max-width: 540px; color: var(--muted); }
.host__name {
  position: relative;
  margin: 0 0 34px;
  color: var(--olive);
  font-family: var(--display); font-variation-settings: "opsz" 28;
  font-size: clamp(3rem, 5.6vw, 4.8rem); font-weight: 500;
  line-height: 1.02; letter-spacing: -.015em;
}
.host__name em { font-style: italic; font-weight: 500; color: var(--olive-2); }
.host__com { display: block; margin-bottom: 4px; font-size: .55em; line-height: 1; }
.host__copy .lead { margin: 0 0 20px; }
.signature {
  margin: 36px 0 0;
  color: var(--gold);
  font-family: var(--script); font-size: 2.6rem; line-height: 1;
  transform: rotate(-4deg); transform-origin: left;
  opacity: .9;
}

/* ---------- Detalhes ---------- */
.details {
  position: relative;
  padding: clamp(96px, 12vw, 160px) 0;
  color: var(--cream);
  background:
    radial-gradient(ellipse 55% 60% at 85% 100%, rgba(207, 169, 98, .10), transparent 70%),
    radial-gradient(ellipse 50% 55% at 10% 0%, rgba(207, 169, 98, .08), transparent 70%),
    var(--olive);
  overflow: hidden;
}
.details::before {
  content: "Cafés";
  position: absolute; left: -3%; bottom: -14%;
  color: rgba(255, 255, 255, .022);
  font-family: var(--script); font-size: clamp(12rem, 26vw, 24rem); line-height: 1;
  pointer-events: none;
}
.details__head { text-align: center; }
.details__layout {
  position: relative;
  margin-top: clamp(56px, 7vw, 96px);
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.details__list { margin: 0; border-top: 1px solid rgba(230, 207, 159, .2); }
.details__row {
  padding: 30px 0;
  display: grid; grid-template-columns: 130px 1fr; gap: 24px; align-items: baseline;
  border-bottom: 1px solid rgba(230, 207, 159, .2);
}
.details__row dt { color: var(--gold-2); font-size: .64rem; letter-spacing: .32em; text-transform: uppercase; }
.details__row dd { margin: 0; display: flex; flex-direction: column; gap: 4px; }
.details__row strong {
  color: var(--cream);
  font-family: var(--display); font-variation-settings: "opsz" 24;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 400;
  line-height: 1.15; letter-spacing: -.005em;
}
.details__row dd span { color: rgba(251, 248, 242, .6); font-family: var(--serif); font-style: italic; font-size: 1.15rem; }

.venue {
  position: relative;
  padding: clamp(44px, 5vw, 64px) clamp(24px, 4vw, 52px);
  text-align: center;
  border: 1px solid rgba(207, 169, 98, .45);
  border-radius: 999px 999px 4px 4px / 220px 220px 4px 4px;
  background: rgba(255, 255, 255, .025);
}
.venue::before {
  content: ""; position: absolute; inset: 10px;
  border: 1px solid rgba(207, 169, 98, .16);
  border-radius: inherit;
  pointer-events: none;
}
.venue__label { display: block; margin-top: 24px; color: var(--gold-3); font-size: .64rem; letter-spacing: .34em; text-transform: uppercase; }
.venue__name {
  margin: 14px 0 0;
  color: var(--cream);
  font-family: var(--display); font-variation-settings: "opsz" 28;
  font-size: clamp(2.3rem, 3.6vw, 3.1rem); font-weight: 400; line-height: 1.1;
}
.venue__name img { width: min(300px, 88%); margin: 4px auto 0; filter: brightness(0) invert(1); opacity: .94; }
.venue__ornament { margin: 20px auto 22px; display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--gold-2); font-size: .55rem; }
.venue__ornament i { width: 40px; height: 1px; background: rgba(207, 169, 98, .5); }
.venue__address {
  color: var(--cream);
  font-family: var(--serif); font-style: normal; font-size: clamp(1.25rem, 1.8vw, 1.45rem); line-height: 1.5;
}
.venue__floor {
  margin: 16px 0 0;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--gold-3);
  font-size: .72rem; letter-spacing: .26em; text-transform: uppercase;
}
.venue__floor i { color: var(--gold-2); font-size: .5rem; font-style: normal; }
.venue .btn { margin-top: 32px; }
.btn--light { color: var(--cream); border-color: rgba(207, 169, 98, .55); }
.btn--light:hover { color: var(--olive); background: var(--gold-3); border-color: var(--gold-3); }

.details__note {
  margin: clamp(48px, 6vw, 72px) auto 0; max-width: 640px;
  text-align: center;
  color: rgba(251, 248, 242, .72);
  font-family: var(--serif); font-style: italic; font-size: 1.2rem; line-height: 1.55;
}
.details__note span { color: var(--gold-2); font-style: normal; font-size: .7rem; margin-right: 6px; vertical-align: middle; }

/* ---------- Participar ---------- */
.participate { padding: clamp(96px, 12vw, 150px) 0 0; }
.participate__content { max-width: 760px; margin: 0 auto; text-align: center; }
.participate__content > p:not(.overline) { max-width: 560px; margin: 26px auto 0; color: var(--muted); }
.participate__content .display { margin-top: 8px; }
.participate__count {
  margin-top: 28px !important;
  color: var(--olive-2) !important;
  font-family: var(--serif); font-style: italic; font-size: 1.2rem;
  font-variant-numeric: lining-nums tabular-nums;
}
.participate__content .btn { margin-top: 30px; }
.participate__status { margin-top: 18px !important; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; }
.participate__status i { margin: 0 10px; color: var(--gold); font-style: normal; font-size: .55rem; vertical-align: middle; }
.btn--rsvp { min-height: 58px; padding: 0 44px; font-size: .76rem; box-shadow: 0 18px 40px -22px rgba(34, 52, 26, .6); }
.btn--rsvp:hover, .rsvp .btn--solid:hover { color: var(--olive); background: var(--gold-3); transform: translateY(-2px); }

/* ---------- Confirmar presença (modal) ---------- */
.rsvp {
  width: min(620px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
  padding: clamp(40px, 6vw, 60px) clamp(22px, 6vw, 56px) clamp(34px, 5vw, 48px);
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line-gold);
  box-shadow: 0 50px 120px -40px rgba(20, 30, 14, .55);
  overflow-y: auto;
}
.rsvp::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(179, 132, 58, .16); pointer-events: none; }
.rsvp::backdrop { background: rgba(26, 36, 20, .55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.rsvp[open] { animation: rsvpIn .55s var(--ease); }
.rsvp[open]::backdrop { animation: fadeIn .45s var(--ease); }
@keyframes rsvpIn { from { opacity: 0; transform: translateY(18px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.rsvp__close {
  position: absolute; z-index: 2; top: 18px; right: 18px;
  width: 40px; height: 40px; display: grid; place-items: center;
  color: var(--olive); background: none; border: 1px solid var(--line-gold); border-radius: 50%; cursor: pointer;
  transition: background .3s, color .3s;
}
.rsvp__close:hover { color: var(--cream); background: var(--olive); }
.rsvp__close svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.rsvp__view { position: relative; text-align: center; }
.rsvp .overline { margin-bottom: 16px; }
.rsvp__title {
  margin: 0; color: var(--olive);
  font-family: var(--display); font-variation-settings: "opsz" 24; font-weight: 500;
  font-size: clamp(2rem, 5vw, 2.7rem); line-height: 1.15;
}
.rsvp__title .script { font-size: 1.3em; line-height: .6; }
.rsvp__title--small { font-size: clamp(1.5rem, 4vw, 1.9rem); }
.rsvp__intro { max-width: 440px; margin: 12px auto 0; color: var(--muted); font-family: var(--serif); font-style: italic; font-size: 1.15rem; line-height: 1.5; }

.rsvp__form { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; text-align: left; }
.field--full { grid-column: 1 / -1; }
.field { position: relative; }
.field input {
  width: 100%; height: 56px; padding: 22px 0 6px;
  color: var(--ink); background: transparent;
  border: 0; border-bottom: 1px solid var(--line-gold); border-radius: 0;
  font: 300 1rem/1 var(--sans);
  outline: none;
  transition: border-color .3s var(--ease);
}
.field label {
  position: absolute; left: 0; top: 20px;
  color: var(--muted); font-size: .95rem;
  pointer-events: none; transform-origin: left top;
  transition: transform .3s var(--ease), color .3s var(--ease), letter-spacing .3s;
}
.field label small { font-size: .8em; opacity: .8; }
.field input:focus { border-color: var(--olive); }
.field input:focus + label,
.field input:not(:placeholder-shown) + label {
  transform: translateY(-16px) scale(.72);
  color: var(--gold); letter-spacing: .14em; text-transform: uppercase;
}
.field input.is-invalid { border-color: var(--red); }

.check { margin-top: 8px; display: flex; align-items: center; gap: 12px; color: var(--olive-2); font-size: .92rem; cursor: pointer; }
.check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check__box { flex: 0 0 auto; width: 20px; height: 20px; display: grid; place-items: center; border: 1px solid var(--line-gold); transition: background .25s, border-color .25s; }
.check__box::after { content: ""; width: 9px; height: 5px; margin-top: -2px; border-left: 1.5px solid var(--cream); border-bottom: 1.5px solid var(--cream); transform: rotate(-45deg) scale(0); transition: transform .25s var(--ease); }
.check input:checked + .check__box { background: var(--olive); border-color: var(--olive); }
.check input:checked + .check__box::after { transform: rotate(-45deg) scale(1); }
.check input:focus-visible + .check__box { outline: 1px solid var(--gold); outline-offset: 3px; }
.check input.is-invalid + .check__box { border-color: var(--red); }

.rsvp__error { min-height: 1.2em; margin: 0; color: var(--red); font-size: .85rem; text-align: center; }
.rsvp__form .btn { width: 100%; min-height: 56px; }
.rsvp__form .btn[disabled] { opacity: .6; cursor: progress; }

.rsvp__done { padding: 10px 0; }
.rsvp__seal { width: 56px; height: 56px; margin: 0 auto; display: grid; place-items: center; color: var(--gold); border: 1px solid var(--line-gold); border-radius: 50%; font-size: .8rem; }
.rsvp__thanks { margin: 14px 0 0; font-size: 3.4rem; line-height: 1.1; }
.rsvp__done .btn { margin-top: 26px; }
body.rsvp-open { overflow: hidden; }

@media (max-width: 600px) {
  .rsvp__form { grid-template-columns: 1fr; }
  .rsvp { padding-top: 76px; }
  .rsvp .overline { font-size: .56rem; letter-spacing: .2em; }
  .participate__status { display: flex; flex-direction: column; font-size: .6rem; letter-spacing: .16em; line-height: 2.1; }
  .participate__status i { display: none; }
  .rsvp__done .btn { letter-spacing: .14em; padding: 0 18px; }
  .btn--rsvp { width: 100%; max-width: 340px; }
}

.partners { margin-top: clamp(72px, 9vw, 110px); border-top: 1px solid var(--line); }
.partners { padding: clamp(64px, 8vw, 96px) 0 clamp(56px, 7vw, 88px); }
.partners__main { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: clamp(32px, 7vw, 96px); }
.partner { display: flex; flex-direction: column; align-items: center; text-align: center; min-height: 150px; }
.partner__role { margin-bottom: 18px; color: var(--muted); font-size: .62rem; letter-spacing: .32em; text-transform: uppercase; }
.partner__link { margin: auto 0; display: flex; align-items: center; justify-content: center; padding: 8px; border-radius: 4px; transition: opacity .35s var(--ease), transform .35s var(--ease); }
.partner__link:hover { opacity: .72; transform: translateY(-2px); }
.partner__logo { display: block; width: auto; max-width: 100%; height: auto; }
.partner__logo--bacc { height: 96px; }
.partner__logo--ahc { width: min(240px, 70vw); }
.venue__name a { display: block; transition: opacity .35s var(--ease); }
.venue__name a:hover { opacity: .75; }
.partners__divider { width: 1px; background: var(--line-gold); }

.partners__experience { margin-top: clamp(56px, 7vw, 84px); padding-top: clamp(48px, 6vw, 72px); border-top: 1px solid var(--line); }
.partners__experience .overline { color: var(--muted); font-size: .62rem; }
.partners__list {
  margin: clamp(24px, 3vw, 36px) auto 0; padding: 0; list-style: none;
  max-width: 980px;
  display: grid; grid-template-columns: repeat(3, 1fr); align-items: center;
}
.partners__list li { display: flex; justify-content: center; align-items: center; min-height: 110px; padding: 0 clamp(16px, 3vw, 40px); }
.partners__list li + li { border-left: 1px solid var(--line); }
.partner__logo--concierge { width: min(200px, 100%); }
.partner__logo--luminatech { width: min(230px, 100%); }
.partner__logo--matre { width: min(118px, 100%); }

/* ---------- Rodapé ---------- */
.brandline { display: grid; grid-template-columns: repeat(4, 1fr); height: 3px; }
.brandline i:nth-child(1) { background: #2f6b3a; }
.brandline i:nth-child(2) { background: var(--red); }
.brandline i:nth-child(3) { background: var(--navy); }
.brandline i:nth-child(4) { background: var(--gold); }
.footer { background: var(--linen); }
.footer__inner {
  width: var(--wrap); margin: 0 auto;
  padding: 36px 0;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
}
.footer__logo img { width: 132px; }
.footer__tagline { margin: 0; color: var(--olive-2); font-family: var(--serif); font-style: italic; font-size: 1.08rem; text-align: center; }
.footer__tagline i { margin: 0 10px; color: var(--gold); font-size: .55rem; font-style: normal; vertical-align: middle; }
.footer__top {
  justify-self: end;
  width: 46px; height: 46px; display: grid; place-items: center;
  color: var(--olive); border: 1px solid var(--line-gold); border-radius: 50%;
  transition: background .3s, color .3s;
}
.footer__top:hover { color: var(--cream); background: var(--olive); }
.footer__top svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.3; }

/* ---------- Revelação ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.pillars .reveal:nth-child(2) { transition-delay: .12s; }
.pillars .reveal:nth-child(3) { transition-delay: .24s; }

/* ---------- Responsivo ---------- */
@media (max-width: 1280px) {
  .nav__links { gap: 22px; }
  .nav__count { display: none; }
}

@media (max-width: 980px) {
  :root { --nav-h: 72px; }
  .nav.is-scrolled { --nav-h: 64px; }
  .nav__inner { grid-template-columns: 1fr auto; width: calc(100% - 40px); }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__cta { min-height: 40px; padding: 0 16px; font-size: .6rem; }
  .pillars { grid-template-columns: 1fr; }
  .pillar, .pillar + .pillar { padding: 36px 0; border-left: 0; }
  .pillar + .pillar { border-top: 1px solid var(--line); }
  .host__grid { grid-template-columns: 1fr; }
  .host__visual { width: min(440px, calc(100% - 40px)); margin: 0 auto; }
  .host__copy { max-width: 620px; margin: 0 auto; }
  .details__layout { grid-template-columns: 1fr; }
  .venue { max-width: 560px; width: 100%; margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr auto; }
  .footer__tagline { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 820px) {
  .hero::after { height: 10%; }
}

@media (max-width: 600px) {
  .countdown__card { width: calc(100% - 28px); margin-top: -16px; }
  .countdown__when { gap: 4px 10px; font-size: .58rem; letter-spacing: .18em; }
  .timer__label { font-size: .5rem; letter-spacing: .12em; padding-left: .12em; }
  .calendar { flex-direction: column; }
  .calendar .btn--ghost { width: 100%; max-width: 320px; }
  .nav__cta { display: none; }
  body { font-size: 16px; }
  :root { --wrap: calc(100% - 40px); }
  .overline { gap: 12px; font-size: .62rem; letter-spacing: .24em; }
  .rule { width: 24px; }
  .experience__body { margin-left: 0; }
  .host__stat { right: -20px; bottom: 28px; padding: 14px 18px; }
  .host__stat strong { font-size: 2.1rem; }
  .details__row { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
  .venue { border-radius: 999px 999px 4px 4px / 160px 160px 4px 4px; }
  .venue__floor { font-size: .64rem; letter-spacing: .2em; }
  .partners__main { grid-template-columns: 1fr; gap: 28px; }
  .partner { min-height: 0; }
  .partners__divider { width: 84px; height: 1px; margin: 0 auto; }
  .partners__list { grid-template-columns: 1fr; max-width: 280px; }
  .partners__list li { min-height: 104px; padding: 18px 0; }
  .partners__list li + li { border-left: 0; border-top: 1px solid var(--line); }
  .footer__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer__top { justify-self: center; }
  .footer__tagline { grid-row: auto; line-height: 1.9; }
}

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