/* ============================================================
   ENTRE AMIGAS — styles.css
   Paleta: vinho + rosa antigo + creme + dourado + sálvia
   Fontes: Gilda Display (serif) + Mulish (sans)
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --cream:      #F4EBE1;
  --cream-deep: #ECDFD2;
  --blush:      #EACFD2;
  --blush-soft: #F3DFDF;
  --rose:       #BE7B85;
  --rose-deep:  #9B4E5B;
  --wine:       #6E2233;
  --wine-deep:  #551826;
  --gold:       #C39A5C;
  --gold-warm:  #D4A85F;
  --sage:       #9AA382;
  --ink:        #382628;
  --ink-soft:   #5A4247;
  --cream-70:   rgba(244, 235, 225, 0.72);
  --cream-88:   rgba(244, 235, 225, 0.9);

  --serif: "Gilda Display", "Times New Roman", serif;
  --sans:  "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --radius-s: 12px;
  --radius-m: 22px;
  --radius-l: 34px;

  --shadow-soft: 0 18px 50px -24px rgba(85, 24, 38, 0.35);
  --shadow-lift: 0 30px 70px -30px rgba(85, 24, 38, 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --z-sticky: 100;
  --z-nav: 200;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.08; font-weight: 400; }

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

/* âncoras não ficam escondidas atrás do topo fixo */
section[id] { scroll-margin-top: 92px; }

.btn, .nav a, .nav-toggle, .g-item, .mobile-nav a { touch-action: manipulation; -webkit-tap-highlight-color: rgba(110,34,51,.12); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--wine); color: var(--cream);
  padding: .7rem 1.1rem; border-radius: 0 0 var(--radius-s) 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--wine); outline-offset: 3px; border-radius: 4px; }

/* ---------- typography scale ---------- */
h1 {
  font-family: var(--serif);
  font-size: clamp(2.9rem, 7.5vw, 5.4rem);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h1 em { font-style: italic; color: var(--wine); }
h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  letter-spacing: -0.015em;
  color: var(--wine);
  text-wrap: balance;
}
h2 em { font-style: italic; color: var(--rose-deep); }
h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--wine); }

.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans);
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--rose-deep);
  margin-bottom: 1.1rem;
}
.kicker::before {
  content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block;
}
.kicker-light { color: var(--blush); }
.kicker-light::before { background: var(--gold-warm); }

.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 46ch;
}

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--wine); --btn-fg: var(--cream); --btn-bd: var(--wine);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-weight: 700; font-size: .98rem;
  letter-spacing: .01em;
  padding: .95rem 1.7rem; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd);
  cursor: pointer;
  transition: transform .35s var(--ease), background-color .3s var(--ease),
              color .3s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.btn:active { transform: translateY(-1px); }
.btn-primary { background: var(--wine); color: var(--cream); border-color: var(--wine); }
.btn-primary:hover { background: var(--wine-deep); border-color: var(--wine-deep); }
.btn-ghost { background: transparent; color: var(--wine); border-color: var(--rose); }
.btn-ghost:hover { background: var(--wine); color: var(--cream); border-color: var(--wine); }
.btn-cream { background: var(--cream); color: var(--wine); border-color: var(--cream); }
.btn-cream:hover { background: #fff; border-color: #fff; }
.btn-sm { padding: .68rem 1.25rem; font-size: .9rem; }
.btn-lg { padding: 1.15rem 2.3rem; font-size: 1.08rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: var(--cream-88);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid rgba(110, 34, 51, 0.08);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 74px; padding-block: .55rem;
}
.brand { display: inline-flex; align-items: center; }
.brand-mark { width: auto; height: 40px; }
.nav {
  display: flex; align-items: center; gap: 1.9rem;
  margin-left: auto;
  font-weight: 600; font-size: .96rem; color: var(--ink);
}
.nav a { position: relative; padding: .3rem 0; color: var(--ink-soft); transition: color .25s; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--rose); transition: width .3s var(--ease);
}
.nav a:hover { color: var(--wine); }
.nav a:hover::after { width: 100%; }
.nav-cta { margin-left: .4rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 11px; margin-left: auto; cursor: pointer;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--wine); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: flex; flex-direction: column; gap: .3rem;
  padding: 1rem var(--gutter) 1.6rem;
  border-top: 1px solid rgba(110, 34, 51, 0.08);
  background: var(--cream);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a { padding: .85rem .2rem; font-weight: 600; color: var(--wine); border-bottom: 1px solid rgba(110,34,51,.08); }
.mobile-nav a.btn { border: 1.5px solid var(--wine); margin-top: .8rem; justify-content: center; }
.mobile-nav .btn-primary { color: var(--cream); border-color: var(--wine); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.hero-copy .lead { margin-top: 1.4rem; }
.hero h1 { margin-top: .4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-note {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-top: 1.8rem; padding: .6rem 1.05rem;
  background: var(--blush-soft); color: var(--wine);
  border-radius: 999px; font-size: .95rem; font-weight: 600;
}
.hero-note svg { color: var(--rose-deep); flex: none; }

.hero-media { position: relative; justify-self: center; width: 100%; max-width: 460px; }
.hero-photo {
  position: relative; overflow: hidden;
  border-radius: 46% 54% 48% 52% / 58% 44% 56% 42%;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 5;
  border: 6px solid #fff8;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-badge {
  position: absolute; left: -22px; bottom: 18px;
  width: clamp(88px, 22vw, 118px); aspect-ratio: 1; border-radius: 50%;
  overflow: hidden; border: 4px solid var(--cream);
  box-shadow: var(--shadow-soft);
  animation: floaty 6s ease-in-out infinite;
}
.hero-badge img { width: 100%; height: 100%; object-fit: cover; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* organic blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(48px); opacity: .5; z-index: -1; pointer-events: none; }
.blob-1 { width: 40vw; height: 40vw; max-width: 520px; max-height: 520px; top: -8%; right: -6%; background: radial-gradient(circle, var(--blush), transparent 70%); }
.blob-2 { width: 30vw; height: 30vw; max-width: 380px; max-height: 380px; bottom: -10%; left: -8%; background: radial-gradient(circle, rgba(190,123,133,.5), transparent 70%); }
.blob-3 { width: 34vw; height: 34vw; max-width: 460px; top: -14%; right: -10%; background: radial-gradient(circle, rgba(195,154,92,.35), transparent 70%); opacity: .55; }
.blob-4 { width: 46vw; height: 46vw; max-width: 620px; bottom: -30%; left: -12%; background: radial-gradient(circle, rgba(190,123,133,.4), transparent 70%); opacity: .4; }
.blob-5 { width: 40vw; height: 40vw; max-width: 520px; top: -18%; left: -8%; background: radial-gradient(circle, rgba(195,154,92,.4), transparent 70%); opacity: .5; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker { background: var(--wine); color: var(--cream); overflow: hidden; padding: .95rem 0; width: 100%; }
.ticker-track { display: flex; width: max-content; will-change: transform; }
.ticker-track.run { animation: tk var(--tk-dur, 40s) linear infinite; }
.ticker:hover .ticker-track, .ticker:focus-within .ticker-track { animation-play-state: paused; }
.tk-group { display: flex; align-items: center; flex: 0 0 auto; }
.tk-seq { display: flex; align-items: center; }
.tk-word { font-family: var(--serif); font-style: italic; font-size: 1.3rem; opacity: .96; padding: 0 1rem; white-space: nowrap; }
.tk-dot { color: var(--gold-warm); font-size: .9rem; }
@keyframes tk { from { transform: translateX(0); } to { transform: translateX(calc(-1 * var(--tk-shift, 50%))); } }

/* ============================================================
   SECTIONS (base)
   ============================================================ */
.section { padding: clamp(3.6rem, 8vw, 7rem) 0; position: relative; }

/* O PROJETO */
.projeto { background: var(--cream); }
.projeto-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: start; }
.projeto-lead h2 { margin-top: .2rem; }
.projeto-body { display: grid; gap: 1.15rem; color: var(--ink-soft); font-size: 1.06rem; max-width: 62ch; }
.big-para { font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.5; color: var(--ink); font-family: var(--serif); }
.projeto-body p { text-wrap: pretty; }

/* ============================================================
   O ENCONTRO
   ============================================================ */
.encontro { background: var(--cream-deep); overflow: hidden; }
.encontro-card {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  border-radius: var(--radius-l); overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: var(--blush-soft);
}
.encontro-info { padding: clamp(2rem, 4vw, 3.4rem); }
.encontro-info h2 { color: var(--wine); }
.encontro-sub { margin-top: 1rem; color: var(--ink-soft); max-width: 40ch; }
.encontro-facts { margin: 1.8rem 0 2rem; display: grid; gap: 1rem; }
.encontro-facts > div { display: grid; grid-template-columns: 6.5rem 1fr; gap: .8rem; align-items: baseline; padding-bottom: 1rem; border-bottom: 1px solid rgba(110,34,51,.14); }
.encontro-facts dt { font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; color: var(--rose-deep); }
.encontro-facts dd { font-size: 1.08rem; font-weight: 600; color: var(--wine); }

.encontro-count {
  background: var(--wine); color: var(--cream);
  padding: clamp(2rem, 4vw, 3.4rem);
  display: flex; flex-direction: column; justify-content: center; gap: 1.4rem;
  position: relative;
}
.count-label { font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; color: var(--blush); }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; }
.cd-unit { text-align: center; background: rgba(244,235,225,.08); border: 1px solid rgba(244,235,225,.16); border-radius: var(--radius-s); padding: .9rem .3rem; }
.cd-num { display: block; font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1; color: var(--cream); font-variant-numeric: tabular-nums; }
.count-over { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--cream); }
.cd-lab { display: block; margin-top: .35rem; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--blush); }
.count-tag { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--gold-warm); }

/* ============================================================
   PILARES
   ============================================================ */
.pilares { background: var(--cream); }
.pilares-head { max-width: 40ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.pilares-list {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(1.6rem, 3vw, 2.6rem);
}
.pilares-list li { padding-top: 1.6rem; border-top: 2px solid rgba(110,34,51,.14); }
.pil-ico { display: inline-flex; width: 46px; height: 46px; color: var(--rose-deep); margin-bottom: 1rem; }
.pil-ico svg { width: 100%; height: 100%; }
.pilares-list h3 { margin-bottom: .4rem; }
.pilares-list p { color: var(--ink-soft); font-size: 1rem; max-width: 34ch; }

/* ============================================================
   MANIFESTO (drench)
   ============================================================ */
.manifesto { position: relative; background: var(--wine); color: var(--cream); padding: clamp(4rem, 10vw, 8rem) 0; overflow: hidden; text-align: center; }
.manifesto-inner { max-width: 26ch; margin-inline: auto; }
.manifesto-eyebrow { font-family: var(--sans); font-size: .82rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--blush); margin-bottom: 1.6rem; }
.manifesto blockquote {
  font-family: var(--serif); font-size: clamp(2.1rem, 5.2vw, 3.8rem);
  line-height: 1.16; letter-spacing: -.01em;
}
.manifesto blockquote em { font-style: italic; color: var(--gold-warm); }
.manifesto-sign { margin-top: 2rem; font-family: var(--serif); font-style: italic; font-size: clamp(1.05rem, 2vw, 1.35rem); color: var(--blush); max-width: 34ch; margin-inline: auto; }

/* ============================================================
   QUEM SOMOS
   ============================================================ */
.fundadoras { background: var(--cream); }
.fundadoras-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.fundadoras-media { position: relative; }
.fundadoras-media img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 15%;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-lift);
}
.fundadoras-media::after {
  content: ""; position: absolute; inset: auto -14px -14px auto; width: 62%; height: 62%;
  border: 2px solid var(--gold); border-radius: var(--radius-l); z-index: -1;
}
.fundadoras-copy h2 { margin: .2rem 0 1.3rem; }
.fundadoras-copy p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 50ch; }
.fundadoras-verse {
  margin-top: 1.6rem; padding-left: 1.3rem; border-left: 3px solid var(--rose);
  font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--wine);
}
.fundadoras-verse span { display: block; font-size: .82rem; font-style: normal; font-family: var(--sans); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--rose-deep); margin-top: .5rem; }

/* ============================================================
   MOMENTOS / GALLERY
   ============================================================ */
.momentos { background: var(--cream-deep); }
.momentos-head { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: end; justify-content: space-between; margin-bottom: clamp(1.8rem, 3vw, 2.6rem); }
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  grid-auto-rows: 1fr;
}
.g-item { position: relative; overflow: hidden; border-radius: var(--radius-m); aspect-ratio: 3/4; box-shadow: var(--shadow-soft); background: var(--blush); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.g-item::after {
  content: var(--ig-label, "Ver no Instagram"); position: absolute; inset: 0;
  display: grid; place-items: center; text-align: center;
  font-weight: 700; font-size: .92rem; color: var(--cream);
  background: linear-gradient(to top, rgba(85,24,38,.72), rgba(85,24,38,.12) 60%, transparent);
  opacity: 0; transition: opacity .4s var(--ease);
}
.g-item:hover img { transform: scale(1.06); }
.g-item:hover::after, .g-item:focus-visible::after { opacity: 1; }
/* em telas de toque (sem hover) o rótulo fica sempre visível */
@media (hover: none) {
  .g-item::after {
    opacity: 1; align-items: end; padding-bottom: .9rem; font-size: .82rem;
    background: linear-gradient(to top, rgba(85,24,38,.62), rgba(85,24,38,.05) 42%, transparent);
  }
}
.g-tall { grid-row: span 2; aspect-ratio: 3/5; }
.g-wide { grid-column: span 2; aspect-ratio: auto; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { position: relative; overflow: hidden; background: linear-gradient(155deg, var(--wine), var(--wine-deep)); color: var(--cream); padding: clamp(4rem, 9vw, 7.5rem) 0; text-align: center; }
.cta-inner { max-width: 40ch; margin-inline: auto; }
.cta-inner .kicker { justify-content: center; }
.cta-final h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-lead { color: var(--blush); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-final .btn-cream { box-shadow: var(--shadow-lift); }
.cta-mini { margin-top: 1.2rem; font-family: var(--serif); font-style: italic; color: var(--blush); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--wine-deep); color: var(--cream-70); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; }
.footer-mark { height: 46px; width: auto; margin-bottom: 1.2rem; }
.footer-brand p { font-size: .98rem; line-height: 1.7; }
.footer-reach { margin-top: 1rem; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--blush); }
.footer-nav h4, .footer-connect h4 { font-family: var(--sans); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; color: var(--blush); margin-bottom: 1rem; }
.footer-nav a, .footer-connect a { display: block; padding: .6rem 0; color: var(--cream-70); transition: color .25s; }
.footer-nav a:hover, .footer-connect a:hover { color: var(--cream); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(244,235,225,.12); font-size: .84rem; color: var(--blush); }

/* ============================================================
   SELETOR DE IDIOMA (bandeiras estilizadas)
   ============================================================ */
.lang { position: relative; margin-left: .3rem; }
.lang-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  background: transparent; border: 1.5px solid rgba(110, 34, 51, .2);
  color: var(--wine); padding: .42rem .62rem; border-radius: 999px;
  font-family: var(--sans); font-weight: 800; font-size: .8rem; letter-spacing: .03em;
  cursor: pointer; transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.lang-btn:hover { border-color: var(--rose); background: var(--blush-soft); }
.lang-caret { color: var(--rose-deep); transition: transform .3s var(--ease); }
.lang.open .lang-caret { transform: rotate(180deg); }
.flag {
  width: 20px; height: 20px; border-radius: 50%; flex: none;
  background-size: cover; background-position: center;
  box-shadow: inset 0 0 0 1.5px rgba(85, 24, 38, .22), 0 1px 2px rgba(85, 24, 38, .18);
  filter: saturate(.9);
}
.flag[data-flag="pt"] { background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Crect%20width='24'%20height='24'%20fill='%23009c3b'/%3E%3Cpath%20d='M12%203.2%2020.8%2012%2012%2020.8%203.2%2012Z'%20fill='%23ffdf00'/%3E%3Ccircle%20cx='12'%20cy='12'%20r='4.1'%20fill='%23002776'/%3E%3C/svg%3E"); }
.flag[data-flag="en"] { background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Crect%20width='24'%20height='24'%20fill='%23ffffff'/%3E%3Cg%20fill='%23b22234'%3E%3Crect%20y='0'%20width='24'%20height='1.85'/%3E%3Crect%20y='3.7'%20width='24'%20height='1.85'/%3E%3Crect%20y='7.4'%20width='24'%20height='1.85'/%3E%3Crect%20y='11.1'%20width='24'%20height='1.85'/%3E%3Crect%20y='14.8'%20width='24'%20height='1.85'/%3E%3Crect%20y='18.5'%20width='24'%20height='1.85'/%3E%3Crect%20y='22.15'%20width='24'%20height='1.85'/%3E%3C/g%3E%3Crect%20width='10'%20height='12.95'%20fill='%233c3b6e'/%3E%3C/svg%3E"); }
.flag[data-flag="es"] { background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Crect%20width='24'%20height='24'%20fill='%23c60b1e'/%3E%3Crect%20y='6'%20width='24'%20height='12'%20fill='%23ffc400'/%3E%3C/svg%3E"); }
.lang-menu {
  position: absolute; top: calc(100% + .5rem); right: 0; min-width: 176px;
  list-style: none; margin: 0; padding: .4rem;
  background: var(--cream); border: 1px solid rgba(110, 34, 51, .12);
  border-radius: 14px; box-shadow: var(--shadow-lift);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: var(--z-nav);
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu button {
  display: flex; align-items: center; gap: .6rem; width: 100%; text-align: left;
  background: transparent; border: 0; padding: .6rem .7rem; border-radius: 10px;
  font-family: var(--sans); font-weight: 600; font-size: .95rem; color: var(--ink);
  cursor: pointer; transition: background-color .2s;
}
.lang-menu button:hover { background: var(--blush-soft); color: var(--wine); }
.lang-menu button[aria-current="true"] { background: var(--blush); color: var(--wine); }

/* ============================================================
   NOMES DAS CRIADORAS (Kelly, marcada de forma discreta)
   ============================================================ */
.fund-names { margin: 1.9rem 0 0; }
.fund-names-label {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .72rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; color: var(--rose-deep);
  margin-bottom: .55rem;
}
.fund-names-label::before { content: ""; width: 24px; height: 2px; background: var(--gold); }
.fund-names ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: .4rem 1.6rem;
}
.fund-names li {
  position: relative; font-family: var(--serif); font-size: 1.22rem; color: var(--wine);
}
.fund-names li:not(:last-child)::after {
  content: "·"; position: absolute; right: -.9rem; color: var(--rose);
}

/* ============================================================
   WHATSAPP FLUTUANTE (dentro da paleta, não verde)
   ============================================================ */
.wa-fab {
  position: fixed; z-index: var(--z-sticky);
  right: max(1.1rem, env(safe-area-inset-right));
  bottom: max(1.1rem, env(safe-area-inset-bottom));
  display: inline-flex; align-items: center; gap: .5rem;
  height: 56px; padding: 0 1rem;
  background: var(--wine); color: var(--cream); border-radius: 999px;
  box-shadow: 0 14px 34px -10px rgba(85, 24, 38, .6);
  transition: transform .35s var(--ease), background-color .3s var(--ease), box-shadow .35s var(--ease);
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.wa-fab:hover { transform: translateY(-3px); background: var(--wine-deep); box-shadow: 0 20px 42px -12px rgba(85, 24, 38, .7); }
.wa-ico { flex: none; position: relative; z-index: 1; }
.wa-label {
  position: relative; z-index: 1;
  font-family: var(--sans); font-weight: 700; font-size: .92rem; white-space: nowrap;
  max-width: 0; overflow: hidden; opacity: 0;
  transition: max-width .4s var(--ease), opacity .3s var(--ease);
}
.wa-fab:hover .wa-label, .wa-fab:focus-visible .wa-label { max-width: 170px; opacity: 1; }
.wa-fab::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px; z-index: 0;
  box-shadow: 0 0 0 0 rgba(190, 123, 133, .5); animation: waPulse 2.8s ease-out infinite;
}
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(190, 123, 133, .45); }
  70% { box-shadow: 0 0 0 15px rgba(190, 123, 133, 0); }
  100% { box-shadow: 0 0 0 0 rgba(190, 123, 133, 0); }
}
@media (hover: none) { .wa-label { max-width: 168px; opacity: 1; } }

/* ============================================================
   FORMULÁRIO DE INSCRIÇÃO (dialog)
   ============================================================ */
.reg-modal {
  width: min(94vw, 460px); max-height: 92vh; overflow-y: auto;
  margin: auto; /* restaura a centralização do dialog (o reset zerou a margem) */
  border: 0; border-radius: var(--radius-l); padding: 0;
  background: var(--cream); color: var(--ink); box-shadow: var(--shadow-lift);
}
.reg-modal::backdrop { background: rgba(85, 24, 38, .55); backdrop-filter: blur(3px); }
.reg-modal[open] { animation: regIn .35s var(--ease); }
@keyframes regIn { from { opacity: 0; transform: translateY(14px) scale(.985); } to { opacity: 1; transform: none; } }
html:has(.reg-modal[open]) { overflow: hidden; }
.reg-close {
  position: absolute; top: .7rem; right: .7rem; width: 42px; height: 42px;
  display: grid; place-items: center; background: transparent; border: 0;
  color: var(--wine); border-radius: 50%; cursor: pointer; transition: background-color .2s;
  touch-action: manipulation;
}
.reg-close:hover { background: var(--blush-soft); }
.reg-form, .reg-success { padding: clamp(1.7rem, 4.5vw, 2.5rem); }
.reg-form .kicker { justify-content: flex-start; margin-bottom: .7rem; }
.reg-modal h2 { font-size: clamp(1.55rem, 4vw, 2.1rem); color: var(--wine); }
.reg-sub { color: var(--ink-soft); margin: .4rem 0 1.5rem; font-size: .98rem; }
.reg-field { display: block; margin-bottom: .9rem; }
.reg-field span { display: block; font-size: .82rem; font-weight: 700; color: var(--wine); margin-bottom: .38rem; }
.reg-field input {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: #fff; border: 1.5px solid rgba(110, 34, 51, .2); border-radius: 12px;
  padding: .82rem .9rem; transition: border-color .2s, box-shadow .2s;
}
.reg-field input:focus { outline: 0; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(190, 123, 133, .25); }
.reg-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.reg-submit { width: 100%; margin-top: .7rem; }
.reg-error { color: #8f1a2a; background: #f6dcdc; border-radius: 10px; padding: .65rem .85rem; margin-top: .9rem; font-size: .9rem; font-weight: 600; }
.reg-fine { margin-top: 1rem; font-size: .8rem; color: var(--ink-soft); text-align: center; }
.reg-success { text-align: center; }
.reg-check { color: var(--sage); display: flex; justify-content: center; margin-bottom: .4rem; }
.reg-success h2 { outline: none; }
.reg-success p { color: var(--ink-soft); margin: .6rem 0 1.5rem; text-wrap: pretty; }
.reg-success .btn { width: 100%; margin-bottom: .65rem; }
/* gatilho invisível do popup do Eventbrite */
.eb-trigger { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

/* ============================================================
   REVEAL (motion; visível por padrão, anima só com JS)
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal.stagger > * { opacity: 1 !important; transform: none !important; transition: none; }
  .hero-badge, .ticker-track.run, .wa-fab::before { animation: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .lang { margin-left: auto; }
  .nav-toggle { margin-left: .15rem; }
  .header-inner { gap: .5rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 380px; }
  .hero-copy { text-align: center; }
  .hero-copy .lead, .hero-copy .kicker { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .projeto-grid { grid-template-columns: 1fr; }
  .encontro-card { grid-template-columns: 1fr; }
  .fundadoras-grid { grid-template-columns: 1fr; }
  .fundadoras-media { max-width: 460px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .g-tall { grid-row: span 1; aspect-ratio: 3/4; }
  .g-wide { grid-column: span 2; aspect-ratio: 16/10; }
  .encontro-facts > div { grid-template-columns: 1fr; gap: .2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 0; }
}
