/* ============================================================
   CASA DO AGRO — Estilos principais (style.css)
   Estrutura por blocos:
   1. Reset & Base        6. Seção História
   2. Tipografia          7. Números / Stats
   3. Layout & Container  8. Dashboard
   4. Botões & Chips      9. Patrocinar
   5. Header & Nav       10. Mapas
                         11. Contato / CTA
                         12. Footer & FAB
   ============================================================ */

/* ============================================================
   1. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-on-dark);
  background: var(--bg-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

::selection { background: var(--brand-orange); color: #fff; }

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

/* Acessibilidade: pular para conteúdo */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  background: var(--brand-orange);
  color: #fff;
  padding: var(--sp-3) var(--sp-5);
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ============================================================
   2. TIPOGRAFIA
   ============================================================ */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: var(--lh-tight);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-orange);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--grad-fire);
  border-radius: 2px;
}
/* variante sem o traço decorativo no começo */
.eyebrow--plain::before { display: none; }
.script {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--brand-orange);
}
.text-grad-fire {
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-grad-agro {
  background: var(--grad-agro);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   3. LAYOUT & CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: var(--container-wide); }

.section { position: relative; padding-block: var(--section-y); }
.section--dark  { background: var(--grad-dark-bg); color: var(--text-on-dark); }
.section--cream { background: var(--bg-cream); color: var(--text-on-light); }
.section--orange {
  background: var(--grad-orange-bg);
  color: var(--text-on-orange);
}

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: var(--lh-snug);
  margin-top: var(--sp-3);
  letter-spacing: -0.01em;
}
.section-head p {
  margin-top: var(--sp-4);
  font-size: var(--fs-lead);
  color: var(--text-on-dark-soft);
  max-width: 60ch;
}
.section--cream .section-head p { color: var(--text-on-light-soft); }
.section-head--center p { margin-inline: auto; }

/* divisórias curvas entre seções de cor diferente */
.wave-divider { display: block; width: 100%; height: auto; }

/* ============================================================
   4. BOTÕES, CHIPS & CARDS
   ============================================================ */
.btn {
  --btn-bg: var(--grad-fire);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.95em 1.7em;
  font-weight: 700;
  font-size: var(--fs-body);
  letter-spacing: 0.01em;
  color: #fff;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  box-shadow: var(--sh-glow-orange), var(--sh-inset-top);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-med) var(--ease-spring),
              box-shadow var(--t-med) var(--ease-out),
              filter var(--t-fast) var(--ease-out);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 24px 55px rgba(245,130,32,0.5), var(--sh-inset-top); }
.btn:active { transform: translateY(-1px) scale(0.98); }
.btn svg { width: 1.1em; height: 1.1em; }

.btn--ghost {
  --btn-bg: transparent;
  color: var(--text-on-dark);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.28);
}
.btn--ghost:hover {
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
}
.section--cream .btn--ghost { color: var(--text-on-light); box-shadow: inset 0 0 0 1.5px rgba(43,29,16,0.22); }
.section--cream .btn--ghost:hover { background: rgba(43,29,16,0.05); box-shadow: inset 0 0 0 1.5px rgba(43,29,16,0.5); }

.btn--green { --btn-bg: var(--grad-agro); color: #14320a; box-shadow: var(--sh-glow-green), var(--sh-inset-top); }
.btn--white { --btn-bg: #fff; color: var(--brand-orange-deep); box-shadow: var(--sh-md); }

/* efeito ripple (JS insere spans) */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255,255,255,0.5);
  pointer-events: none;
  animation: ripple-anim 620ms var(--ease-out);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.5em 0.95em;
  font-size: var(--fs-small);
  font-weight: 600;
  border-radius: var(--r-pill);
  background: var(--surface-glass);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(var(--blur-sm));
}
/* ícone SVG dentro de chips/badges (substitui emojis) */
.chip__icon {
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
  color: var(--brand-orange);
}
.section--cream .chip .chip__icon { color: var(--brand-orange-deep); }

/* card base reutilizável */
.card {
  position: relative;
  border-radius: var(--r-lg);
  background: var(--surface-card);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--sh-md);
  transition: transform var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out);
}
.card--hover:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg), var(--sh-glow-orange);
  border-color: rgba(245,130,32,0.4);
}

/* ============================================================
   5. HEADER & NAV
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  transition: background var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out),
              backdrop-filter var(--t-med) var(--ease-out);
}
.header.is-scrolled {
  background: rgba(10, 7, 5, 0.72);
  backdrop-filter: blur(var(--blur-md)) saturate(140%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), var(--sh-md);
}
.header__inner {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}
.brand { display: flex; align-items: center; gap: var(--sp-3); }
.brand img { height: 46px; width: auto; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text b { font-weight: 800; letter-spacing: 0.02em; font-size: 0.95rem; }
.brand__text span { font-size: 0.62rem; letter-spacing: 0.32em; color: var(--text-on-dark-mute); text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: var(--sp-2); }
.nav__link {
  position: relative;
  padding: 0.5em 0.9em;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-on-dark-soft);
  border-radius: var(--r-sm);
  transition: color var(--t-fast) var(--ease-out);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.9em; right: 0.9em; bottom: 0.35em;
  height: 2px;
  background: var(--grad-fire);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease-out);
}
.nav__link:hover, .nav__link.is-active { color: var(--text-on-dark); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: var(--sp-3); }
.header__actions .btn { padding: 0.7em 1.3em; font-size: 0.9rem; }

/* botão hambúrguer */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  position: relative;
  background: var(--surface-glass);
  border: 1px solid rgba(255,255,255,0.12);
}
.nav-toggle span {
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transform: translate(-50%,-50%);
  transition: transform var(--t-med) var(--ease-out), opacity var(--t-fast);
}
.nav-toggle span:nth-child(1) { transform: translate(-50%, -7px); }
.nav-toggle span:nth-child(3) { transform: translate(-50%, 5px); }
.nav-toggle.is-open span:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translate(-50%,-50%) rotate(-45deg); }

/* menu mobile */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 99;
  background: rgba(10,7,5,0.96);
  backdrop-filter: blur(var(--blur-lg));
  padding: var(--sp-5) var(--gutter) var(--sp-7);
  transform: translateY(-120%);
  transition: transform var(--t-med) var(--ease-out);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a {
  display: block;
  padding: var(--sp-4) var(--sp-2);
  font-size: 1.15rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav .btn { margin-top: var(--sp-5); width: 100%; }

/* ============================================================
   6. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: calc(var(--header-h) + var(--sp-4));
  padding-bottom: var(--sp-7);
  background: var(--grad-dark-bg);
  overflow: hidden;
}
.hero__glow {
  position: absolute; inset: 0;
  background: var(--grad-hero-glow);
  pointer-events: none;
  z-index: 0;
}
/* faixas verticais estilizadas do fundo original */
.hero__bars {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    100deg,
    transparent 0, transparent 62px,
    rgba(120,60,15,0.16) 62px, rgba(120,60,15,0.16) 108px
  );
  mask-image: radial-gradient(80% 80% at 50% 45%, #000 30%, transparent 78%);
  z-index: 0;
}
.hero__inner { position: relative; z-index: 2; }
.hero__logo {
  width: min(400px, 68vw);
  margin: 0 auto var(--sp-4);
  filter: drop-shadow(0 22px 44px rgba(245,130,32,0.35));
}
.hero__eyebrow { justify-content: center; margin-bottom: var(--sp-3); }
.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.hero__subtitle {
  max-width: 50ch;
  margin: 0 auto var(--sp-5);
  font-size: var(--fs-lead);
  color: var(--text-on-dark-soft);
  text-wrap: balance;
}
.hero__cta { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }

/* mini-stats abaixo do hero */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero__stat { text-align: center; }
.hero__stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1;
  background: var(--grad-fire);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__stat span { font-size: var(--fs-small); color: var(--text-on-dark-mute); letter-spacing: 0.05em; }

/* indicador de scroll */
.scroll-cue {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--text-on-dark-mute);
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
}
.scroll-cue__mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--r-pill);
  position: relative;
}
.scroll-cue__mouse::after {
  content: ""; position: absolute; left: 50%; top: 7px;
  width: 4px; height: 7px; border-radius: 2px;
  background: var(--brand-orange);
  transform: translateX(-50%);
  animation: scroll-dot 1.8s var(--ease-inout) infinite;
}

/* ============================================================
   7. HISTÓRIA (cream)
   ============================================================ */
.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.story__visual { position: relative; display: grid; place-items: center; min-width: 0; }
.story__logo-wrap {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--r-xl);
  background: radial-gradient(70% 70% at 50% 45%, rgba(255,210,30,0.18), transparent 70%);
}
.story__logo-wrap::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--r-xl);
  background: conic-gradient(from 180deg, rgba(245,130,32,0.12), rgba(126,217,87,0.12), rgba(255,210,30,0.12), rgba(245,130,32,0.12));
  filter: blur(30px);
  z-index: -1;
}
.story__logo { width: min(440px, 80vw); }
.story__body p { margin-top: var(--sp-4); color: var(--text-on-light-soft); }
.story__body p:first-child { margin-top: 0; }
.story__body strong { color: var(--text-on-light); font-weight: 700; }
.story__meta {
  display: flex; flex-wrap: wrap; gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.story__meta .chip {
  background: rgba(245,130,32,0.1);
  border-color: rgba(245,130,32,0.25);
  color: var(--text-on-light);
}

/* ============================================================
   8. NÚMEROS / STATS (orange)
   ============================================================ */
.numbers__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
/* halo suave atrás do celular */
.numbers__phone { position: relative; }
.numbers__phone::before {
  content: "";
  position: absolute;
  inset: 2% 8%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,0.28), transparent 72%);
  filter: blur(24px);
  z-index: 0;
}

/* ---------- MOCKUP iPHONE 17 PRO MAX (CSS puro) ---------- */
.iphone {
  position: relative;
  z-index: 1;
  width: min(300px, 78vw);
  aspect-ratio: 300 / 620;
  margin-inline: auto;
  background: linear-gradient(150deg, #2b2b2f 0%, #0c0c0e 42%, #1a1a1d 100%);
  border-radius: 52px;
  padding: 11px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.08),
    0 40px 70px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}
/* faixa de titânio nas bordas */
.iphone::before {
  content: "";
  position: absolute; inset: 3px;
  border-radius: 46px;
  box-shadow: inset 0 0 0 3px rgba(90,90,96,0.5);
  pointer-events: none;
  z-index: 3;
}
/* botões laterais */
.iphone__btn { position: absolute; background: linear-gradient(180deg,#3a3a3e,#1c1c1f); border-radius: 3px; }
.iphone__btn--silent { left: -3px; top: 108px; width: 3px; height: 26px; }
.iphone__btn--volup  { left: -3px; top: 150px; width: 3px; height: 46px; }
.iphone__btn--voldn  { left: -3px; top: 206px; width: 3px; height: 46px; }
.iphone__btn--power  { right: -3px; top: 168px; width: 3px; height: 66px; }

.iphone__screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 42px;
  overflow: hidden;
  background: #fff;
  color: #111;
  font-size: clamp(9px, 2.6vw, 11px);
  display: flex;
  flex-direction: column;
}
/* Dynamic Island */
.iphone__island {
  position: absolute;
  top: 9px; left: 50%; transform: translateX(-50%);
  width: 32%; height: 20px;
  background: #000;
  border-radius: var(--r-pill);
  z-index: 5;
}

/* status bar */
.ig-status {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 18px 2px;
  color: #111;
}
.ig-status__time { font-weight: 700; font-size: 0.95em; }
.ig-status__icons { display: inline-flex; align-items: center; gap: 4px; }
.ig-status__icons svg { height: 11px; width: auto; }

/* topbar (usuário) */
.ig-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 14px 8px;
  border-bottom: 1px solid #efefef;
}
.ig-topbar__user { display: inline-flex; align-items: center; gap: 4px; font-weight: 700; font-size: 1.25em; }
.ig-verified { width: 13px; height: 13px; }
.ig-topbar__menu svg { width: 17px; height: 17px; color: #111; }

/* perfil */
.ig-profile { padding: 14px 16px 4px; }
.ig-profile__top { display: flex; align-items: center; gap: 18px; }
.ig-avatar {
  width: 62px; height: 62px; flex-shrink: 0;
  border-radius: 50%;
  padding: 2.5px;
  background: conic-gradient(from 20deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5, #feda75);
  display: grid; place-items: center;
}
.ig-avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: contain;
  padding: 8px;
  background: var(--bg-cream);
  border: 2.5px solid #fff;
}
.ig-stats { display: flex; flex: 1; justify-content: space-around; text-align: center; }
.ig-stats b { display: block; font-size: 1.2em; font-weight: 700; letter-spacing: -0.01em; }
.ig-stats span { font-size: 0.9em; color: #262626; }

.ig-bio { margin-top: 12px; line-height: 1.4; }
.ig-bio b { font-weight: 700; font-size: 1.02em; }
.ig-bio span { display: block; color: #262626; }

/* abas do perfil (feed / reels / repost / marcações) — estilo Instagram */
.ig-profile-tabs {
  display: flex;
  margin-top: 12px;
  border-top: 1px solid #dbdbdb;
}
.ig-ptab {
  position: relative;
  flex: 1;
  display: grid; place-items: center;
  padding: 10px 0 9px;
  color: #8e8e8e;
  background: none; border: none;
  transition: color var(--t-fast) var(--ease-out);
}
.ig-ptab svg { width: 21px; height: 21px; display: block; }
/* linha de seleção sob o ícone ativo */
.ig-ptab__underline {
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1.5px;
  background: #111;
  transform: translateX(-50%);
  transition: width var(--t-med) var(--ease-out);
}
.ig-ptab.is-active { color: #111; }
.ig-ptab.is-active .ig-ptab__underline { width: 44%; }

/* feed: uma única foto fatiada nas 9 grades (efeito mosaico do Instagram) */
.ig-grid {
  flex: 1;              /* ocupa todo o espaço restante até a tabbar */
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2px;
  padding: 0 1px;
}
.ig-grid__item {
  position: relative;
  overflow: hidden;
  /* a mesma imagem em todos, dimensionada para cobrir a grade 3x3 inteira */
  background-image: url("../images/crowd-feed.webp");
  background-repeat: no-repeat;
  background-size: 300% 300%;
}
/* cada célula revela a sua fatia da imagem */
.ig-grid__item:nth-child(1) { background-position: 0%   0%; }
.ig-grid__item:nth-child(2) { background-position: 50%  0%; }
.ig-grid__item:nth-child(3) { background-position: 100% 0%; }
.ig-grid__item:nth-child(4) { background-position: 0%   50%; }
.ig-grid__item:nth-child(5) { background-position: 50%  50%; }
.ig-grid__item:nth-child(6) { background-position: 100% 50%; }
.ig-grid__item:nth-child(7) { background-position: 0%   100%; }
.ig-grid__item:nth-child(8) { background-position: 50%  100%; }
.ig-grid__item:nth-child(9) { background-position: 100% 100%; }
.ig-grid__item--logo img { width: 82%; height: auto; }

/* tabbar inferior */
.ig-tabbar {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-around;
  padding: 9px 12px 14px;
  border-top: 1px solid #efefef;
  color: #111;
}
.ig-tabbar svg { width: 19px; height: 19px; }
.ig-tabbar__me {
  width: 19px; height: 19px; border-radius: 50%;
  background: linear-gradient(45deg,#feda75,#fa7e1e,#d62976);
  border: 1.5px solid #111;
}

.stats-glass {
  border-radius: var(--r-xl);
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(var(--blur-md));
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--sh-md), var(--sh-inset-top);
}
.stats-glass__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 3.5rem);
}
.stat-item { position: relative; }
.stat-item + .stat-item::before {}
.stat-item__value {
  font-family: var(--font-display);
  font-size: var(--fs-stat);
  line-height: 0.95;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 0.12em;
}
.stat-item__value small {
  font-size: 0.42em;
  font-family: var(--font-sans);
  font-weight: 700;
  opacity: 0.95;
}
.stat-item__label {
  margin-top: var(--sp-2);
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}
/* linhas divisórias do grid glass */
.stats-glass__grid { position: relative; }
.stats-glass__grid::before {
  content: ""; position: absolute; left: 50%; top: 6%; bottom: 6%;
  width: 1px; background: rgba(255,255,255,0.25);
}

/* ============================================================
   9. DASHBOARD (dark)
   ============================================================ */
.dash {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: var(--sp-5);
}
.dash__col { display: grid; gap: var(--sp-4); align-content: start; }
.dash__col-title {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--brand-yellow);
  margin-bottom: var(--sp-1);
  padding-left: var(--sp-2);
}
.metric {
  background: var(--surface-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  box-shadow: var(--sh-sm);
  transition: border-color var(--t-med), transform var(--t-med) var(--ease-out);
}
.metric:hover { border-color: rgba(245,130,32,0.35); transform: translateY(-4px); }
.metric__label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-on-dark-mute); }
.metric__value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1;
  margin-top: var(--sp-2);
}
.metric__sub { font-size: var(--fs-small); color: var(--text-on-dark-mute); margin-top: 4px; }
.metric--accent { background: linear-gradient(155deg, rgba(245,130,32,0.16), rgba(20,13,8,0.72)); border-color: rgba(245,130,32,0.3); }
.metric--accent .metric__value { color: var(--brand-orange); }

.dash__perf-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--sp-4); }
.dash__pub-grid { display: grid; gap: var(--sp-4); align-content: start; }

/* tabela de cidades */
.city-table { margin-top: var(--sp-4); }
.city-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.city-row:last-child { border-bottom: none; }
.city-row__name { font-weight: 600; }
.city-row__name span { display: block; font-size: 0.72rem; color: var(--text-on-dark-mute); font-weight: 400; }
.city-row__bar { position: relative; height: 8px; border-radius: var(--r-pill); background: rgba(255,255,255,0.08); overflow: hidden; }
.city-row__bar i {
  position: absolute; inset: 0 auto 0 0;
  width: var(--pct, 0%);
  background: var(--grad-fire);
  border-radius: var(--r-pill);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1s var(--ease-out);
}
.is-inview .city-row__bar i { transform: scaleX(1); }
.city-row__pct { font-weight: 700; font-size: var(--fs-small); min-width: 3.5ch; text-align: right; }

/* donut gênero (SVG) */
.donut-wrap { display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap; }
.donut { width: 150px; height: 150px; flex-shrink: 0; }
.donut circle { fill: none; stroke-width: 22; }
.donut__legend { display: grid; gap: var(--sp-3); }
.legend-item { display: flex; align-items: center; gap: var(--sp-3); }
.legend-item b { font-family: var(--font-display); font-size: 1.4rem; }
.legend-item span { font-size: var(--fs-small); color: var(--text-on-dark-soft); }
.legend-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }

/* barras faixa etária */
.age-bars { display: grid; gap: var(--sp-3); margin-top: var(--sp-2); }
.age-row { display: grid; grid-template-columns: 3.2rem 1fr 3ch; align-items: center; gap: var(--sp-3); font-size: var(--fs-small); }
.age-row__track { height: 10px; border-radius: var(--r-pill); background: rgba(255,255,255,0.08); overflow: hidden; }
.age-row__track i {
  display: block; height: 100%;
  background: var(--grad-fire);
  border-radius: var(--r-pill);
  transform-origin: left; transform: scaleX(0);
  transition: transform 0.9s var(--ease-out);
}
.is-inview .age-row__track i { transform: scaleX(1); }

/* ============================================================
   9b. PARTICIPANTES
   ============================================================ */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.cast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-1);
  padding: var(--sp-7) var(--sp-5) var(--sp-5);
  border-radius: var(--r-lg);
  background: var(--surface-card);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--sh-md);
  transition: transform var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out);
}
.cast-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg), var(--sh-glow-orange);
  border-color: rgba(245,130,32,0.4);
}
.cast-card__avatar {
  width: 92px; height: 92px;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(from 20deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5, #feda75);
  display: grid; place-items: center;
  margin-bottom: var(--sp-4);
  flex-shrink: 0;
  transition: transform var(--t-med) var(--ease-spring);
}
.cast-card:hover .cast-card__avatar { transform: scale(1.06); }
.cast-card__avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-cream);
  border: 3px solid var(--bg-dark-2);
}
.cast-card__name {
  font-weight: 700;
  font-size: 1.02rem;
}
.cast-card__handle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--brand-orange);
}
.cast-card__handle svg { width: 15px; height: 15px; flex-shrink: 0; }
.cast-card__followers {
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-on-dark);
}
.cast-card__followers b {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-on-dark);
  margin-right: 4px;
}

/* ============================================================
   10. PATROCINAR
   ============================================================ */
.sponsor__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: stretch;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
/* risco laranja vertical entre os benefícios e a foto */
.sponsor__divider {
  align-self: stretch;
  width: 2px;
  min-height: 100%;
  border-radius: var(--r-pill);
  background: linear-gradient(180deg, transparent, var(--brand-orange) 15%, var(--brand-orange) 85%, transparent);
  box-shadow: 0 0 16px rgba(245,130,32,0.5);
}
.sponsor__content { height: 100%; }
.benefit-list {
  display: grid;
  gap: var(--sp-4);
  height: 100%;
  align-content: space-between;
}
.benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-4);
  align-items: start;
  padding: var(--sp-4);
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: background var(--t-med), border-color var(--t-med), transform var(--t-med) var(--ease-out);
}
.benefit:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,210,30,0.25);
  transform: translateX(6px);
}
.benefit__icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
  background: var(--grad-fire);
  color: #fff;
  box-shadow: var(--sh-glow-orange);
  flex-shrink: 0;
}
.benefit__icon svg { width: 22px; height: 22px; }
.benefit h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 3px; }
.benefit p { font-size: var(--fs-small); color: var(--text-on-dark-soft); line-height: 1.55; }

.sponsor__photo {
  position: relative;
  height: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 2px solid var(--brand-orange);
  box-shadow: var(--sh-lg), var(--sh-glow-orange);
}
.sponsor__photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.sponsor__photo-badge {
  position: absolute; left: 50%; bottom: var(--sp-5); transform: translateX(-50%);
  z-index: 2;
  display: inline-flex; align-items: center; gap: var(--sp-2);
  max-width: calc(100% - 2rem);
  padding: 0.75em 1.5em;
  background: rgba(10,7,5,0.82);
  backdrop-filter: blur(var(--blur-sm));
  border: 1.5px solid rgba(245,130,32,0.6);
  border-radius: var(--r-pill);
  font-weight: 700; font-size: var(--fs-small);
  color: var(--text-on-dark);
  white-space: normal;
  text-align: center;
  box-shadow: var(--sh-lg);
}
.sponsor__photo-badge .chip__icon { color: var(--brand-orange); flex-shrink: 0; }

/* ============================================================
   11. MAPAS
   ============================================================ */
.maps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}
.map-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--sh-md);
  background: var(--bg-dark-2);
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med);
}
.map-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.map-card__img { position: relative; overflow: hidden; }
.map-card__img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10; transition: transform var(--t-slow) var(--ease-out); }
.map-card:hover .map-card__img img { transform: scale(1.05); }
.map-card__body {
  padding: var(--sp-5) var(--sp-6);
}
.map-card__body h3 { font-size: var(--fs-h3); font-weight: 800; }
.map-card__body p { color: var(--text-on-dark-soft); font-size: var(--fs-small); margin-top: var(--sp-2); }
.map-card__tag {
  position: absolute; top: var(--sp-4); left: var(--sp-4);
  z-index: 2;
}
.map-card__location {
  display: flex; align-items: center; gap: var(--sp-2);
  margin-top: var(--sp-3);
  font-weight: 600;
}
.map-card__location svg { width: 18px; height: 18px; color: var(--brand-orange); flex-shrink: 0; }

/* ---------- SEÇÃO MAPA DO EVENTO (imagem + texto lado a lado) ---------- */
.event-map {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* ---------- SEÇÃO MAPA DE PATROCINADORES (imagem ampla + texto abaixo) ---------- */
.sponsor-map {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}
.event-map__figure--wide { width: 100%; }
.event-map__figure--wide img { aspect-ratio: 16/9; }
.event-map__info--below { max-width: 900px; margin-inline: auto; text-align: center; }
.event-map__info--below .event-map__lead { margin-inline: auto; max-width: 65ch; }
.event-map__spots--row {
  grid-template-columns: repeat(3, 1fr);
  text-align: left;
}
/* imagem do mapa em destaque, com moldura e brilho */
.event-map__figure {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--sh-lg), var(--sh-glow-orange);
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}
.event-map__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.event-map__figure:hover img { transform: scale(1.04); }
.event-map__badge {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  z-index: 2;
  background: rgba(10,7,5,0.72);
  backdrop-filter: blur(var(--blur-sm));
}
/* moldura decorativa laranja sutil */
.event-map__figure::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 2px rgba(245,130,32,0.25);
  pointer-events: none;
}

/* coluna de informações */
.event-map__title {
  font-size: var(--fs-h3);
  font-weight: 800;
  line-height: var(--lh-snug);
}
.event-map__lead {
  margin-top: var(--sp-3);
  color: var(--text-on-dark-soft);
  font-size: var(--fs-body);
}
.event-map__spots {
  display: grid;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.event-spot {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-3);
  align-items: center;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  background: var(--surface-card);
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color var(--t-med), transform var(--t-med) var(--ease-out);
}
.event-spot:hover {
  border-color: rgba(245,130,32,0.35);
  transform: translateX(5px);
}
.event-spot__icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
  background: var(--grad-fire);
  color: #fff;
  box-shadow: var(--sh-glow-orange);
  flex-shrink: 0;
}
.event-spot__icon svg { width: 20px; height: 20px; }
.event-spot b { display: block; font-size: 0.98rem; font-weight: 700; }
.event-spot span { font-size: var(--fs-small); color: var(--text-on-dark-mute); }

.event-map__location {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
  padding: var(--sp-4);
  border-radius: var(--r-md);
  background: rgba(245,130,32,0.1);
  border: 1px solid rgba(245,130,32,0.28);
  font-weight: 600;
  font-size: var(--fs-small);
}
.event-map__location svg { width: 22px; height: 22px; color: var(--brand-orange); flex-shrink: 0; }
.event-map__info .btn { margin-top: var(--sp-6); }

/* ============================================================
   12. CTA CONTATO
   ============================================================ */
.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: var(--r-xl);
  padding: clamp(3rem, 7vw, 6rem) var(--gutter);
  background: var(--grad-orange-bg);
  box-shadow: var(--sh-lg);
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 100% at 50% 0%, rgba(255,255,255,0.22), transparent 60%);
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 2; max-width: 680px; margin-inline: auto; }
.cta h2 { font-size: var(--fs-h1); font-weight: 800; line-height: 1.1; }
.cta p { margin-top: var(--sp-4); font-size: var(--fs-lead); color: rgba(255,255,255,0.92); }
.cta__actions { margin-top: var(--sp-6); display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }
.cta__mail {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin-top: var(--sp-5);
  font-weight: 600;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color var(--t-fast);
}
.cta__mail:hover { border-color: #fff; }

/* ============================================================
   13. FOOTER & FAB
   ============================================================ */
.footer {
  position: relative;
  background: var(--bg-black);
  padding-block: var(--sp-8) var(--sp-6);
  border-top: 1px solid var(--brand-orange);
}
.footer__grid {
  display: grid;
  place-items: center;
  gap: var(--sp-7);
  text-align: center;
}
/* logo e texto lado a lado, centralizados, como se fossem uma peça só */
.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  text-align: left;
}
.footer__brand img { width: 130px; flex-shrink: 0; }
.footer__brand p { color: var(--text-on-dark); font-size: var(--fs-body); max-width: 34ch; }
.footer h4 { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-orange); margin-bottom: var(--sp-4); text-align: left; }
.footer ul { display: grid; gap: var(--sp-3); text-align: left; }
.footer a { color: var(--text-on-dark-soft); font-size: var(--fs-small); transition: color var(--t-fast); }
.footer a:hover { color: var(--text-on-dark); }
.footer__bottom {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-align: center;
  font-size: var(--fs-small); color: var(--text-on-dark-mute);
}
.footer a.footer__credit { color: var(--brand-orange); transition: color var(--t-fast); }
.footer a.footer__credit:hover { color: var(--brand-amber); }
.footer__credit strong { font-weight: 800; }

/* botão voltar ao topo */
.fab {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: var(--z-fab);
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
  background: var(--grad-fire);
  color: #fff;
  box-shadow: var(--sh-glow-orange);
  opacity: 0; visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition: opacity var(--t-med), transform var(--t-med) var(--ease-spring), visibility var(--t-med);
}
.fab.is-visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.fab:hover { transform: translateY(-4px) scale(1.05); }
.fab svg { width: 22px; height: 22px; }

/* botão flutuante do WhatsApp — some no hero, aparece ao rolar */
.fab--whatsapp {
  right: clamp(1.25rem, 3.5vw, 2.25rem);
  bottom: clamp(1.25rem, 3.5vw, 2.25rem);
  width: 83px; height: 83px;
}
.fab--whatsapp.is-visible { animation: pulse-glow 2.6s var(--ease-inout) infinite; }
.fab--whatsapp:hover { transform: translateY(-4px) scale(1.06); }
.fab--whatsapp svg { width: 42px; height: 42px; }

/* barra de progresso de leitura */
.progress-bar {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: var(--grad-fire);
  z-index: calc(var(--z-header) + 1);
  transition: width 80ms linear;
}

/* cursor customizado */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}
.cursor-dot { width: 7px; height: 7px; background: #fff; }
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.6);
  transition: width var(--t-fast), height var(--t-fast), background var(--t-fast);
}
.cursor-ring.is-hover { width: 54px; height: 54px; background: rgba(255,255,255,0.1); }
