:root {
  --cream: #f2edda;
  --cream-deep: #eae5cd;
  --card: #faf8ef;
  --sage-light: #dde2b6;
  --sage: #b0be6a;
  --olive: #8b9a52;
  --olive-dark: #393b1e;
  --leaf: #0e1c07;
  --sand: #dfcdaa;
  --ink: #1c1a12;
  --ink-soft: #6e6a58;
  --radius: 28px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --section-pad: clamp(88px, 11vw, 150px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

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

/* ---------- Tipografia ---------- */
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 18px;
}
.eyebrow.light { color: var(--sage); }

.headline {
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.headline em, .hero-headline em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
}

.lead {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 720px;
}
.lead strong { color: var(--ink); font-weight: 600; }
.lead.center { margin: 0 auto 40px; text-align: center; }

.manifesto .eyebrow, .beneficios .eyebrow, .categorias .eyebrow, .local .eyebrow { text-align: center; }
.manifesto .headline, .beneficios .headline, .categorias .headline, .local .headline { text-align: center; margin-bottom: 34px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 16px 30px;
  border-radius: 980px;
  text-decoration: none;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 20px; height: 20px; }

.btn-primary { background: var(--olive-dark); color: var(--cream); }
.btn-primary:hover { background: var(--leaf); }

.btn-cream { background: var(--cream); color: var(--olive-dark); }
.btn-cream:hover { background: #fff; }

.btn-ghost { background: transparent; color: var(--olive-dark); padding: 16px 10px; }
.btn-ghost:hover { color: var(--leaf); }
.btn-ghost span { transition: transform 0.3s var(--ease); display: inline-block; }
.btn-ghost:hover span { transform: translateX(4px); }
.btn-ghost.light { color: var(--sage-light); }
.btn-ghost.light:hover { color: var(--cream); }

.btn-nav { padding: 11px 22px; font-size: 15px; }
.btn-lg { padding: 19px 36px; font-size: 17px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(242, 237, 218, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow 0.4s var(--ease);
}
.nav.scrolled { box-shadow: 0 1px 0 rgba(28, 26, 18, 0.08); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { width: 116px; height: auto; }
.nav-links { display: flex; gap: clamp(18px, 3vw, 36px); }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(242, 237, 218, 0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(28, 26, 18, 0.08);
  padding: 10px clamp(20px, 4vw, 40px) 22px;
}
.mobile-menu.open { display: grid; gap: 4px; }
.mobile-menu a {
  padding: 13px 4px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(28, 26, 18, 0.07);
}
.mobile-menu-cta { color: var(--olive) !important; font-weight: 600 !important; border-bottom: 0 !important; }

/* ---------- Hero ---------- */
.hero { padding: calc(64px + clamp(40px, 7vw, 90px)) 0 clamp(40px, 6vw, 80px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-leaf { width: 56px; color: var(--olive); margin-bottom: 14px; }
.hero-logo { width: clamp(240px, 30vw, 400px); height: auto; margin-bottom: 26px; }
.hero-headline {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero-content .lead { margin-bottom: 34px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 40px; }
.hero-info { list-style: none; display: grid; gap: 12px; }
.hero-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
}
.hero-info svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--olive); margin-top: 2px; }
.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(28, 26, 18, 0.35);
}
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Countdown ---------- */
.countdown-band { background: var(--olive-dark); color: var(--cream); padding: clamp(36px, 5vw, 56px) 0; }
.countdown-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: clamp(18px, 4vw, 40px);
}
.countdown-title {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--sage-light);
}
.countdown { display: flex; align-items: baseline; gap: clamp(10px, 1.6vw, 20px); }
.cd-block { text-align: center; min-width: clamp(54px, 7vw, 84px); }
.cd-num {
  display: block;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.cd-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 8px;
}
.cd-sep { font-size: clamp(28px, 4vw, 48px); font-weight: 600; color: var(--olive); }

/* ---------- Manifesto ---------- */
.manifesto { background: var(--cream); }
.leaves-decor {
  position: absolute;
  top: 40px;
  right: -60px;
  width: clamp(180px, 22vw, 320px);
  opacity: 0.55;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.leaves-decor.flip { right: auto; left: -60px; transform: scaleX(-1); }
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  max-width: 1000px;
  margin: 0 auto;
}
.manifesto-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(28, 26, 18, 0.06);
}
.manifesto-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.manifesto-card figcaption {
  padding: clamp(22px, 3vw, 34px);
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink-soft);
  text-align: center;
}
.manifesto-card strong { color: var(--ink); font-weight: 600; }

/* ---------- Benefícios ---------- */
.beneficios { background: var(--cream-deep); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 36px) clamp(22px, 2.5vw, 30px);
  border: 1px solid rgba(28, 26, 18, 0.05);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -24px rgba(28, 26, 18, 0.25);
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--leaf);
  margin-bottom: 20px;
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(28, 26, 18, 0.12);
}
.card p { font-size: 15px; color: var(--ink-soft); }

/* ---------- Categorias / marquee ---------- */
.categorias { background: var(--cream); overflow: hidden; }
.marquee { display: grid; gap: 16px; margin: 10px 0 40px; }
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee-track.reverse { animation-name: marquee-rev; animation-duration: 48s; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.chip {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 13px 26px;
  border-radius: 980px;
  background: var(--card);
  border: 1px solid rgba(28, 26, 18, 0.1);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

/* ---------- Estande (dark) ---------- */
.estande { background: var(--olive-dark); color: var(--cream); }
.estande .headline { color: var(--cream); }
.estande-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.checklist { list-style: none; display: grid; gap: 14px; margin: 34px 0 40px; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 500;
}
.check {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--sage);
  position: relative;
}
.check::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 4px;
  width: 6px;
  height: 12px;
  border: solid var(--olive-dark);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(43deg);
}
.estande-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.estande-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.55);
}
.estande-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Local ---------- */
.local { background: var(--cream); }
.local-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 980px;
  background: var(--sage-light);
  color: var(--leaf);
  font-size: 15px;
  font-weight: 500;
}
.badge .check { width: 20px; height: 20px; border-radius: 6px; background: var(--leaf); }
.badge .check::after { left: 7px; top: 3px; width: 4px; height: 9px; border-color: var(--sage-light); border-width: 0 2px 2px 0; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(28, 26, 18, 0.08);
  box-shadow: 0 24px 50px -30px rgba(28, 26, 18, 0.3);
}
.map-wrap iframe { width: 100%; height: clamp(320px, 42vw, 460px); border: 0; display: block; }

/* ---------- CTA final ---------- */
.final-cta { background: var(--cream-deep); }
.final-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.final-content .lead { margin-bottom: 34px; }
.final-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 34px; }
.final-info { gap: 8px; }
.final-media {
  border-radius: var(--radius);
  overflow: hidden;
}
.final-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Footer ---------- */
.footer {
  background: var(--cream);
  border-top: 1px solid rgba(28, 26, 18, 0.08);
  padding: 56px 0 44px;
}
.footer-inner { display: grid; justify-items: center; gap: 24px; text-align: center; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(16px, 3vw, 32px); }
.footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.footer-links a:hover { color: var(--ink); }
.footer-legal { font-size: 12px; color: var(--ink-soft); opacity: 0.8; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--olive-dark);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(14, 28, 7, 0.5);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.3s var(--ease);
}
.wa-float.show { opacity: 1; transform: none; pointer-events: auto; }
.wa-float:hover { background: var(--leaf); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Barra de CTA fixa (mobile) ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(242, 237, 218, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(28, 26, 18, 0.1);
  transform: translateY(110%);
  transition: transform 0.5s var(--ease);
}
.mobile-cta.show { transform: none; }
.mobile-cta .btn { justify-content: center; padding: 14px 10px; font-size: 15px; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
  .marquee-track > .chip:nth-child(n+11) { display: none; }
}

/* ---------- Responsivo ---------- */
/* ============ UPGRADES: luz, vida e micro-interações ============ */

.glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.glow-sage { background: rgba(176, 190, 106, 0.35); top: -120px; left: -140px; }
.glow-amber { background: rgba(185, 127, 67, 0.16); bottom: -160px; right: -120px; }
.hero { position: relative; overflow: hidden; }
.hero .container { position: relative; z-index: 1; }
.final-cta { position: relative; overflow: hidden; }
.final-cta .container { position: relative; z-index: 1; }
.glow-final { top: auto; bottom: -220px; left: 32%; }

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  display: block;
  background: linear-gradient(90deg, var(--sage), var(--olive));
  transition: width 0.15s linear;
}

.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--olive);
  transition: right 0.35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { opacity: 1; }

.manifesto .headline::after, .beneficios .headline::after, .categorias .headline::after,
.local .headline::after, .faq .headline::after {
  content: "";
  display: block;
  width: 170px;
  height: 16px;
  margin: 24px auto 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Cpath d='M3 13 Q9 11 12 7 Q15 3 21 3' fill='none' stroke='%238b9a52' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M8 11 Q8 7 11 5 Q11 9 8 11 Z M14 6 Q15 2 19 1 Q18 5 14 6 Z' fill='%238b9a52'/%3E%3C/svg%3E") center / 24px 16px no-repeat,
    linear-gradient(rgba(28, 26, 18, 0.22), rgba(28, 26, 18, 0.22)) left center / 55px 1px no-repeat,
    linear-gradient(rgba(28, 26, 18, 0.22), rgba(28, 26, 18, 0.22)) right center / 55px 1px no-repeat;
}

.headline.reveal { filter: blur(10px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 1.2s var(--ease); }
.headline.reveal.in { filter: blur(0); }

.hero-headline .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), filter 0.7s var(--ease);
  transition-delay: var(--wd, 0s);
}
.hero-headline.in .w { opacity: 1; transform: none; filter: blur(0); }

.hero-media img { animation: kenburns 26s ease-in-out infinite alternate; will-change: transform; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }

.btn-primary, .btn-cream { position: relative; overflow: hidden; }
.btn-primary::after, .btn-cream::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease);
}
.btn-primary:hover::after, .btn-cream:hover::after { left: 135%; }
.btn:focus-visible, .faq-q:focus-visible, .back-top:focus-visible, .nav-burger:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 3px;
  border-radius: 980px;
}

.card-icon { transition: background 0.4s var(--ease), transform 0.4s var(--ease); }
.card:hover .card-icon { background: var(--sage); transform: rotate(-6deg) scale(1.08); }
.card:hover { border-color: rgba(139, 154, 82, 0.35); }

.chip { transition: background 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s var(--ease); }
.chip:hover { background: var(--sage-light); border-color: transparent; transform: translateY(-3px); }
.marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.estande::before {
  content: "";
  position: absolute;
  right: -8%;
  top: 12%;
  width: 62%;
  height: 76%;
  background: radial-gradient(closest-side, rgba(176, 190, 106, 0.16), transparent 72%);
  pointer-events: none;
}
.estande { position: relative; overflow: hidden; }
.estande .container { position: relative; z-index: 1; }

.checklist li.in .check::after { animation: checkPop 0.45s var(--ease) both; animation-delay: calc(var(--d, 0s) + 0.25s); }
@keyframes checkPop {
  0% { transform: rotate(43deg) scale(0); }
  70% { transform: rotate(43deg) scale(1.3); }
  100% { transform: rotate(43deg) scale(1); }
}

.img-reveal img { transform: scale(1.1); transition: transform 1.5s var(--ease); }
.img-reveal.in img { transform: scale(1); }
.hero-media.img-reveal img { transform: none; }

.cd-num.tick { animation: tickIn 0.45s var(--ease); }
@keyframes tickIn {
  0% { opacity: 0.15; transform: translateY(-10px); }
  100% { opacity: 1; transform: none; }
}

.orn-heart { display: block; margin-top: 16px; color: var(--olive); }
.orn-heart svg { width: 64px; height: 14px; margin: 0 auto; display: block; }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.faq .eyebrow { text-align: center; }
.faq .headline { text-align: center; margin-bottom: 34px; }
.faq-container { max-width: 840px; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--card);
  border: 1px solid rgba(28, 26, 18, 0.07);
  border-radius: 18px;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.faq-item.open { border-color: rgba(139, 154, 82, 0.4); box-shadow: 0 18px 36px -24px rgba(28, 26, 18, 0.28); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.faq-q svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--olive); transition: transform 0.4s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-in { overflow: hidden; }
.faq-a p { padding: 0 24px 22px; font-size: 16px; color: var(--ink-soft); }
.faq-a a { color: var(--olive); font-weight: 600; }

.wa-float.show::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--olive);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}

.back-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.back-top svg { width: 16px; height: 16px; }
.back-top:hover { color: var(--ink); transform: translateY(-2px); }

@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; }
  .wa-float.show::before { animation: none; display: none; }
  .hero-headline .w, .img-reveal img, .headline.reveal { transition: none; opacity: 1; transform: none; filter: none; }
  .checklist li.in .check::after, .cd-num.tick { animation: none; }
}

@media (max-width: 980px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .estande-grid, .final-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-height: 420px; }
  .estande-media { order: -1; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 560px) {
  .cards-grid, .manifesto-grid { grid-template-columns: 1fr; }
  .hero { padding-top: calc(64px + 28px); }
  .hero-media { max-height: 340px; }
  .btn { padding: 15px 26px; font-size: 15px; }
  .btn-nav { padding: 10px 18px; font-size: 14px; }
  .wa-float { display: none; }
  .mobile-cta { display: grid; }
  .footer { padding-bottom: 120px; }
  .leaves-decor { display: none; }
}
