/* ============================================================
   FARMERS`SHOW 2026 – style.css v3
   Inspired by Bahia Farm Show – All 10 improvements applied
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800;14..32,900&family=Playfair+Display:ital,wght@0,700;0,800;1,700;1,800&display=swap');

/* ──────────────────────────────────────────────────────────
   DESIGN TOKENS
   ────────────────────────────────────────────────────────── */
:root {
  --green:        #111813; /* Charcoal dark green */
  --green-mid:    #18221B; /* Intermediate dark green */
  --green-light:  #253429; /* Light dark green */
  --gold:         #6CBD45; /* Brand green */
  --gold-light:   #85D35C; /* Brand bright green */
  --cream:        #F7FAF7; /* Fresh greenish cream */
  --sand:         #EDF2ED; /* Fresh greenish sand */
  --sand-dark:    #DBE2DB; /* Darker sand */
  --brown:        #4A2810; /* Earth brown */
  --text:         #101712; /* Dark forest text */
  --text-muted:   #4C554E; /* Muted forest text */
  --surface:      #FAFBF9; /* Light clean surface */

  --h-glass:  rgba(255,255,255,0.06);
  --h-border: rgba(255,255,255,0.10);

  --max-w:      1360px;
  --px:         clamp(1.25rem, 5vw, 4rem);
  --section-py: clamp(4rem, 8vw, 7rem);

  --f-sans:  'Inter', system-ui, sans-serif;
  --f-serif: 'Playfair Display', Georgia, serif;

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-2xl:  48px;
  --r-pill: 9999px;

  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 180ms var(--ease-out);
  --t-mid:  300ms var(--ease-out);
  --t-slow: 600ms var(--ease-out);
}

/* ──────────────────────────────────────────────────────────
   RESET
   ────────────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px;-webkit-text-size-adjust:100%}
body{font-family:var(--f-sans);background:var(--surface);color:var(--text);line-height:1.6;overflow-x:hidden;-webkit-font-smoothing:antialiased}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:var(--f-sans)}

/* ──────────────────────────────────────────────────────────
   LAYOUT
   ────────────────────────────────────────────────────────── */
.container{max-width:var(--max-w);margin:0 auto;padding:0 var(--px)}

/* ──────────────────────────────────────────────────────────
   #2 – TOPBAR (pill gradiente – exato do BFS)
   ────────────────────────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 120;
  padding: 10px var(--px);
}

.topbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  background: linear-gradient(135deg, var(--green) 0%, #1a4024 38%, var(--green-mid) 72%, #2e5c38 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-pill);
  padding: 9px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 50px -28px rgba(15,23,42,0.42);
  /* radial glows like BFS */
  overflow: hidden;
  position: relative;
}

.topbar__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(200,136,44,0.12), transparent 22%),
    radial-gradient(circle at 82% 78%, rgba(61,112,72,0.10), transparent 18%),
    radial-gradient(ellipse at center, rgba(255,255,255,0.05), transparent 50%);
  pointer-events: none;
}

.topbar__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  position: relative;
}

.topbar__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.topbar__sep {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.14);
  flex-shrink: 0;
}

.topbar__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.topbar__meta-item svg { color: var(--gold-light); }

.topbar__badge {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: var(--green);
  padding: 6px 14px;
  border-radius: 99px;
  box-shadow: 0 8px 24px rgba(18, 38, 24, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

/* ──────────────────────────────────────────────────────────
   #2 – NAV (floating rounded — BFS header style)
   ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 48px;
  left: 0; right: 0;
  z-index: 100;
  padding: 10px var(--px);
  transition: top var(--t-mid);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  background: rgba(5,14,7,0.14);
  border: 1px solid var(--h-border);
  border-radius: var(--r-xl);
  padding: 0 8px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 60px -28px rgba(0,0,0,0.22);
  transition: background var(--t-mid), border-color var(--t-mid), box-shadow var(--t-mid);
}

.nav.scrolled { top: 0; }
.nav.scrolled .nav__inner {
  background: rgba(5,14,7,0.86);
  border-color: rgba(255,255,255,0.07);
  box-shadow: 0 4px 30px rgba(0,0,0,0.28);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.nav__logo-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--green);
  flex-shrink: 0;
  letter-spacing: 0;
  box-shadow: 0 4px 16px rgba(200,136,44,0.4);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__link {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}

.nav__link:hover, .nav__link.active {
  background: rgba(255,255,255,0.08);
  color: white;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}

.nav__btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
}

.nav__btn-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  background: var(--gold);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 18px 40px -22px rgba(200,136,44,0.85);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}

.nav__btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.12));
  opacity: 0;
  transition: opacity var(--t-fast);
}

.nav__btn-primary:hover {
  transform: scale(1.015);
  box-shadow: 0 18px 50px -18px rgba(200,136,44,0.95);
}

.nav__btn-primary:hover::after { opacity: 1; }

.nav__hamburger {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  align-items: center;
  justify-content: center;
  color: white;
  flex-direction: column;
  gap: 5px;
  padding: 9px;
}

.nav__hamburger span {
  display: block;
  width: 18px; height: 1.5px;
  background: white;
  border-radius: 2px;
  transition: transform var(--t-mid), opacity var(--t-fast);
}

/* ──────────────────────────────────────────────────────────
   #10 – MOBILE SHEET (drawer lateral — BFS style)
   ────────────────────────────────────────────────────────── */
.sheet-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 199;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--t-mid);
}

.sheet-overlay.open {
  display: block;
  opacity: 1;
}

.sheet {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 90vw);
  z-index: 200;
  background: rgba(8,20,10,0.97);
  border-left: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(24px);
  padding: 28px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform var(--t-mid);
  overflow-y: auto;
}

.sheet.open { transform: translateX(0); }

.sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.sheet__logo {
  color: white;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sheet__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}

.sheet__close:hover { background: rgba(255,255,255,0.12); color: white; }

.sheet__label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
  margin-top: 20px;
}

.sheet__links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sheet__link {
  padding: 13px 16px;
  border-radius: var(--r-md);
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  font-weight: 500;
  transition: background var(--t-fast), color var(--t-fast);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sheet__link:hover { background: rgba(255,255,255,0.06); color: white; }

.sheet__cta {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sheet__info {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────
   #1 – HERO (parallax bg, typography, overlays)
   ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: #060e08;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: scale(1.06);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero.ready .hero__bg { transform: scale(1.03); }

.hero__overlay-1 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.16) 0%, rgba(0,0,0,0.82) 100%);
}

.hero__overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(3,10,5,0.84) 0%, rgba(5,14,7,0.42) 55%, transparent 100%);
}

.hero__overlay-3 {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(3,10,5,0.92) 0%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  /* BFS: padding-top:calc(152px + clamp(18px, 3vh, 44px)) */
  padding-top: clamp(160px, 22vh, 200px);
  padding-bottom: 60px;
  padding-left: var(--px);
  padding-right: var(--px);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero__inner {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vh, 36px);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.625rem, 0.9vw, 0.8125rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.15s var(--ease-out) forwards;
}

.hero__eyebrow-dot {
  position: relative;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,136,44,0.4);
  background: rgba(200,136,44,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__eyebrow-dot::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 2s infinite;
}

/* #1 – h1 MUITO MAIOR (BFS style) */
.hero__h1 {
  font-family: var(--f-sans);
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: white;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.3s var(--ease-out) forwards;
}

.hero__h1 .line-2 {
  display: block;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__h1 .accent {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 0.88em;
  color: var(--gold-light);
  -webkit-text-fill-color: var(--gold-light);
  background: none;
  display: block;
  margin-top: 4px;
}

.hero__desc {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.72;
  max-width: 600px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.46s var(--ease-out) forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.62s var(--ease-out) forwards;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--f-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  min-height: 52px;
}

.hero-btn:hover { transform: translateY(-2px); }
.hero-btn:active { transform: translateY(0); }

.hero-btn--primary {
  background: var(--gold);
  color: var(--green);
  border: 1px solid var(--gold);
  box-shadow: 0 8px 32px rgba(200,136,44,0.45);
}
.hero-btn--primary:hover { background: var(--gold-light); border-color: var(--gold-light); box-shadow: 0 12px 40px rgba(200,136,44,0.55); }

.hero-btn--glass {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
}
.hero-btn--glass:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.24); color: white; }

.hero-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.62);
  border: 1px solid transparent;
  padding-left: 16px; padding-right: 16px;
}
.hero-btn--ghost:hover { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.9); }

/* Stats bar */
.hero__stats {
  position: relative;
  z-index: 10;
  padding: 0 var(--px) 28px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  opacity: 0;
  animation: fadeSlideUp 0.9s 1s var(--ease-out) forwards;
}

.hero__stats-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 18px 28px;
  backdrop-filter: blur(16px);
}

.hero__stat {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.hero__stat-num {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: white;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero__stat-num.accent { color: var(--gold-light); }

.hero__stat-label {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}

.hero__stat-divider {
  width: 1px; height: 24px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* #5 – Countdown com segundos */
.hero__countdown {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.hero__countdown-item {
  text-align: center;
}

.hero__countdown-num {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
  font-variant-numeric: tabular-nums;
}

.hero__countdown-sep {
  color: rgba(255,255,255,0.25);
  font-size: 1rem;
  line-height: 1;
  margin: 0 -2px;
}

.hero__countdown-label {
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

/* ──────────────────────────────────────────────────────────
   SECTION BASE
   ────────────────────────────────────────────────────────── */
.section { padding: var(--section-py) 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  flex-shrink: 0;
}

.section-label.light { color: rgba(255,255,255,0.42); }
.section-label.light::before { background: linear-gradient(to right, var(--gold-light), transparent); }

.section-h2 {
  font-family: var(--f-sans);
  font-size: clamp(2.2rem, 3.8vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--text);
}

.section-h2.light { color: white; }

.section-lead {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin-top: 16px;
}


/* ──────────────────────────────────────────────────────────
   #4 – BENTO GRID (Perfect Square Aspect Ratio)
   ────────────────────────────────────────────────────────── */
.bento { background: var(--sand); }

.bento__intro {
  margin-bottom: 48px;
  max-width: 640px;
}

.bento__intro h2 {
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.38;
  letter-spacing: -0.01em;
}

.bento__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  cursor: pointer;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.3, 1), box-shadow 0.4s ease;
  text-decoration: none;
  display: block;
  aspect-ratio: 1 / 1; /* Guarantees 1:1 perfect square aspect ratio */
  z-index: 1;
}

.bento-card:hover {
  transform: scale(1.08) !important; /* Forces container to grow, overriding reveal transform */
  z-index: 10 !important;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28) !important;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.3, 1) !important;
}

/* Seja Expositor is 2x2, spanning 2 columns and 2 rows, keeping 1:1 aspect ratio */
.bento-card--2x2 {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card__img {
  position: absolute;
  inset: 0;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.bento-card:hover .bento-card__img { transform: scale(1.08); }

.bento-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.bento-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,14,7,0.85) 0%, rgba(5,14,7,0.12) 60%, transparent 100%);
}

.bento-card__spotlight {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--t-fast);
  pointer-events: none;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.13), transparent 40%);
}

.bento-card:hover .bento-card__spotlight { opacity: 1; }

.bento-card__icon {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.bento-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.bento-card__name {
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.bento-card--2x2 .bento-card__name {
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
}

.bento-card__arrow {
  color: rgba(255,255,255,0.7);
  transition: transform var(--t-fast), opacity var(--t-fast);
  opacity: 0;
  transform: translateX(6px);
  flex-shrink: 0;
}

.bento-card:hover .bento-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.bento-card--expositor .bento-card__overlay {
  background: linear-gradient(to top, rgba(5,14,7,0.92) 0%, rgba(20,50,28,0.28) 60%, transparent 100%);
}

.bento-card--gold .bento-card__overlay {
  background: linear-gradient(to top, rgba(40,20,0,0.92) 0%, rgba(60,30,5,0.25) 60%, transparent 100%);
}


/* ──────────────────────────────────────────────────────────
   #7 – ESTRUTURA EM NÚMEROS (nova seção — BFS style)
   ────────────────────────────────────────────────────────── */
.numeros {
  background: var(--surface);
  overflow: hidden;
}

.numeros__wrap {
  overflow: hidden;
  border-radius: var(--r-2xl);
  border: 1px solid rgba(0,0,0,0.05);
  background: rgba(255,255,255,0.72);
  padding: clamp(32px,5vw,64px);
  box-shadow: 0 24px 60px -32px rgba(15,23,42,0.12);
  backdrop-filter: blur(2px);
}

.numeros__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px,5vw,64px);
  align-items: start;
}

.numeros__big-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.numeros__big-num {
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.07em;
  color: var(--green);
  display: block;
  font-variant-numeric: tabular-nums;
}

.numeros__big-unit {
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text-muted);
  margin-left: 6px;
}

.numeros__big-desc {
  margin-top: 16px;
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 30ch;
}

.numeros__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px,3vw,40px) clamp(24px,4vw,48px);
}

.numeros__stat {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 18px;
}

.numeros__stat-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.numeros__stat-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sand-dark);
  flex-shrink: 0;
}

.numeros__stat-dot.green { background: var(--green-light); }
.numeros__stat-dot.gold  { background: var(--gold); }

.numeros__stat-num {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.numeros__stat-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 8px;
  max-width: 28ch;
}

/* ──────────────────────────────────────────────────────────
   SOBRE (com 3D tilt stack)
   ────────────────────────────────────────────────────────── */
.sobre { background: var(--surface); }

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

/* #8 – 3D tilt wrapper */
.sobre__img-stack {
  position: relative;
  aspect-ratio: 4/5;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.5s ease-out;
}

.sobre__img-back {
  position: absolute;
  top: 0; right: 0;
  width: 68%; height: 74%;
  border-radius: var(--r-xl);
  overflow: hidden;
  opacity: 0.65;
  transform: translateZ(-20px);
}

.sobre__img-back img { width: 100%; height: 100%; object-fit: cover; }

.sobre__img-front {
  position: absolute;
  bottom: 0; left: 0;
  width: 78%; height: 82%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.22);
  transform: translateZ(40px);
}

.sobre__img-front img { width: 100%; height: 100%; object-fit: cover; }

.sobre__badge {
  position: absolute;
  bottom: 8%; right: -2%;
  background: var(--gold);
  border-radius: var(--r-lg);
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(200,136,44,0.4);
  z-index: 10;
  transform: translateZ(60px);
}

.sobre__badge-num {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.04em;
}

.sobre__badge-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28,58,34,0.7);
  margin-top: 2px;
}

.sobre__text { display: flex; flex-direction: column; gap: 22px; }

.sobre__quote {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.72;
}

.sobre__p { font-size: clamp(1rem, 1.1vw, 1.08rem); color: var(--text-muted); line-height: 1.75; }
.sobre__p strong { color: var(--text); font-weight: 600; }

.sobre__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.sobre__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--sand);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--sand-dark);
}

.sobre__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ──────────────────────────────────────────────────────────
   BUTTONS
   ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  font-family: var(--f-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast), color var(--t-fast);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  min-height: 48px;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--green); color: var(--cream); box-shadow: 0 4px 20px rgba(28,58,34,0.25); }
.btn--primary:hover { background: var(--green-mid); box-shadow: 0 8px 28px rgba(28,58,34,0.35); }

.btn--gold { background: var(--gold); color: var(--green); box-shadow: 0 4px 20px rgba(200,136,44,0.35); }
.btn--gold:hover { background: var(--gold-light); box-shadow: 0 8px 28px rgba(200,136,44,0.45); }

.btn--outline { background: white; color: var(--text); border: 1.5px solid var(--sand-dark); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.btn--outline:hover { border-color: var(--text-muted); background: var(--sand); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(15,23,42,0.08); }

.btn--ghost-light { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.12); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); color: white; }

/* ──────────────────────────────────────────────────────────
   TRILHAS
   ────────────────────────────────────────────────────────── */
.trilhas { background: var(--green); }

.trilhas__header {
  margin-bottom: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.trilhas__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.trilha-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background var(--t-mid), border-color var(--t-mid), transform var(--t-mid);
}

.trilha-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.13); transform: translateY(-4px); }

.trilha-card__num { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.28); }
.trilha-card__icon { font-size: 2rem; line-height: 1; }
.trilha-card__title { font-size: clamp(1.2rem, 1.6vw, 1.5rem); font-weight: 800; color: white; line-height: 1.2; letter-spacing: -0.02em; }
.trilha-card__desc { font-size: 0.9rem; color: rgba(255,255,255,0.54); line-height: 1.7; }
.trilha-card__bar { height: 2px; border-radius: 2px; margin-top: auto; }
.trilha-card--solo .trilha-card__bar   { background: linear-gradient(to right, #6B3D1E, transparent); }
.trilha-card--bio .trilha-card__bar    { background: linear-gradient(to right, var(--green-light), transparent); }
.trilha-card--mercado .trilha-card__bar { background: linear-gradient(to right, var(--gold), transparent); }

/* ──────────────────────────────────────────────────────────
   PROGRAMAÇÃO
   ────────────────────────────────────────────────────────── */
.programacao { background: var(--surface); }

.prog__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }

.prog__tabs {
  display: inline-flex;
  gap: 4px;
  background: var(--sand);
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--r-pill);
  padding: 6px;
}

.prog__tab {
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  border: none;
  white-space: nowrap;
}

.prog__tab.active { background: var(--green); color: white; box-shadow: 0 4px 16px rgba(28,58,34,0.25); }
.prog__tab:not(.active):hover { background: var(--sand-dark); color: var(--text); }

.prog__panel { display: none; }
.prog__panel.active { display: block; }

.prog__day-lead { font-size: 1.1rem; font-weight: 700; color: var(--green); margin-bottom: 32px; padding-bottom: 16px; border-bottom: 2px solid var(--sand-dark); font-family: var(--f-serif); font-style: italic; }

.prog__list { display: flex; flex-direction: column; }

.prog__item { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--sand); }
.prog__item:last-child { border-bottom: none; }
.prog__item-bullet { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); margin-top: 8px; flex-shrink: 0; }
.prog__item-text { font-size: 1rem; color: var(--text); line-height: 1.55; }
.prog__item-text strong { color: var(--green); font-weight: 700; }

.prog__special { margin-top: 40px; background: var(--green); border-radius: var(--r-xl); padding: clamp(28px,4vw,48px); display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start; }

.prog__special-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--gold); color: var(--green); font-size: 0.625rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--r-pill); margin-bottom: 16px; width: fit-content; }

.prog__special-h3 { font-size: clamp(1.5rem,2.5vw,2.2rem); font-weight: 900; color: white; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 8px; }
.prog__special-sub { font-style: italic; color: rgba(255,255,255,0.58); font-size: 0.9375rem; margin-bottom: 20px; }
.prog__special-meta { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.prog__special-meta-row { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.prog__special-meta-row svg { color: var(--gold-light); flex-shrink: 0; }
.prog__special-desc { font-size: 0.9375rem; color: rgba(255,255,255,0.74); line-height: 1.72; margin-bottom: 24px; }
.prog__live { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 12px; }
.prog__live-dot { width: 6px; height: 6px; border-radius: 50%; background: #ff4444; animation: pulse 2s infinite; }
.prog__notice { margin-top: 24px; padding: 16px 20px; background: rgba(255,255,255,0.05); border: 1px dashed rgba(255,255,255,0.14); border-radius: var(--r-md); font-size: 0.8125rem; color: rgba(255,255,255,0.42); font-style: italic; }

/* ──────────────────────────────────────────────────────────
   PALESTRANTES
   ────────────────────────────────────────────────────────── */
.palestrantes { background: var(--sand); }

.speakers__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 16px; }

.speaker-card { background: white; border: 1px solid var(--sand-dark); border-radius: var(--r-xl); overflow: hidden; transition: transform var(--t-mid), box-shadow var(--t-mid); }
.speaker-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,0.13); }

.speaker-card__photo { width: 100%; aspect-ratio: 3/4; background: linear-gradient(135deg,var(--green) 0%,#2A5032 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,0.4); position: relative; overflow: hidden; }
.speaker-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; position: absolute; inset: 0; transition: transform 0.6s ease; }
.speaker-card:hover .speaker-card__photo img { transform: scale(1.05); }
.speaker-card__photo-icon { font-size: 2.5rem; }
.speaker-card__photo-text { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.speaker-card__body { padding: 18px 20px; }
.speaker-card__name { font-size: 0.9375rem; font-weight: 800; color: var(--text); letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 5px; }
.speaker-card__tag { display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); background: rgba(108,189,69,0.12); padding: 3px 9px; border-radius: var(--r-pill); }
.speaker-card__pending { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); background: var(--sand); padding: 3px 8px; border-radius: var(--r-pill); margin-top: 4px; opacity: 0.7; font-style: italic; }

.speakers__notice { display: flex; align-items: center; gap: 12px; margin-top: 32px; padding: 16px 20px; background: white; border: 1px solid var(--sand-dark); border-left: 3px solid var(--gold); border-radius: var(--r-md); font-size: 0.875rem; color: var(--text-muted); font-style: italic; }

/* ──────────────────────────────────────────────────────────
   VÍDEOS
   ────────────────────────────────────────────────────────── */
.videos { background: var(--green); }
.videos__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 14px; }
.video-card { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 9/16; max-height: 460px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); position: relative; }
.video-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: rgba(255,255,255,0.38); font-size: 0.875rem; text-align: center; padding: 24px; }

/* ──────────────────────────────────────────────────────────
   LOGOS
   ────────────────────────────────────────────────────────── */
.logos { background: var(--surface); }
.logos__grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; }
.logos__grid--carousel-mobile { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
@media (max-width: 768px) {
  .logos__grid--carousel-mobile {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-right: -20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .logos__grid--carousel-mobile::-webkit-scrollbar {
    height: 6px;
  }
  .logos__grid--carousel-mobile::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
  }
  .logos__grid--carousel-mobile::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
  }
  .logos__grid--carousel-mobile .org-item,
  .logos__grid--carousel-mobile .logo-pill {
    flex-shrink: 0;
    scroll-snap-align: center;
  }
}
.logo-pill { width: 150px !important; height: 70px !important; padding: 0 !important; background: white; border: 1.5px solid var(--sand-dark); border-radius: var(--r-md); font-size: 0.85rem; font-weight: 700; color: var(--green); display: flex; align-items: center; justify-content: center; text-align: center; transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast); line-height: 1.3; }
.logo-pill:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.logo-pill img {
  max-height: 85% !important;
  max-width: 90% !important;
  object-fit: contain !important;
}
.logo-pill--placeholder { color: var(--text-muted); font-size: 0.8125rem; font-style: italic; font-weight: 400; border-style: dashed; opacity: 0.55; }

/* ──────────────────────────────────────────────────────────
   ESTRUTURA
   ────────────────────────────────────────────────────────── */
.estrutura { background: var(--green); }
.estrutura__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,5vw,6rem); align-items: center; }
.estrutura__image { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; }
.estrutura__image img { width: 100%; height: 100%; object-fit: cover; }
.estrutura__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.estrutura-item { padding: 20px; border: 1px solid rgba(255,255,255,0.06); border-radius: var(--r-lg); display: flex; align-items: flex-start; gap: 12px; transition: background var(--t-fast), border-color var(--t-fast); }
.estrutura-item:hover { background: rgba(255,255,255,0.04); border-color: rgba(200,136,44,0.22); }
.estrutura-item__icon { font-size: 1.5rem; flex-shrink: 0; }
.estrutura-item__name { font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.82); line-height: 1.3; }

/* ──────────────────────────────────────────────────────────
   CREDENCIAMENTO CTA
   ────────────────────────────────────────────────────────── */
.credenciamento-cta { background: var(--sand); text-align: center; }
.cred__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 720px; margin: 48px auto 0; }
.cred-card { border-radius: var(--r-xl); padding: clamp(28px,4vw,48px) 28px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; transition: transform var(--t-mid), box-shadow var(--t-mid); text-decoration: none; }
.cred-card:hover { transform: translateY(-6px); }
.cred-card--visitor { background: white; border: 2px solid var(--green); }
.cred-card--visitor:hover { box-shadow: 0 20px 50px rgba(28,58,34,0.14); }
.cred-card--expositor { background: var(--green); box-shadow: 0 12px 40px rgba(28,58,34,0.24); }
.cred-card--expositor:hover { box-shadow: 0 24px 60px rgba(28,58,34,0.34); }
.cred-card__icon { font-size: 2.5rem; line-height: 1; }
.cred-card__title { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }
.cred-card--visitor .cred-card__title { color: var(--green); }
.cred-card--expositor .cred-card__title { color: white; }
.cred-card__desc { font-size: 0.875rem; line-height: 1.65; }
.cred-card--visitor .cred-card__desc { color: var(--text-muted); }
.cred-card--expositor .cred-card__desc { color: rgba(255,255,255,0.62); }

/* ──────────────────────────────────────────────────────────
   INSTAGRAM / AO VIVO
   ────────────────────────────────────────────────────────── */
.instagram { background: var(--surface); }
.instagram__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.instagram__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; }

/* Card Destaque Ao Vivo */
.live-card {
  position: relative;
  background: linear-gradient(135deg, #16241a 0%, #111813 100%);
  border: 1.5px solid var(--green);
  border-radius: var(--r-xl);
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.live-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(235, 87, 87, 0.16);
  border: 1px solid rgba(235, 87, 87, 0.3);
  color: #EB5757;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  width: fit-content;
  text-transform: uppercase;
}

.live-card__dot {
  width: 8px; height: 8px;
  background: #EB5757;
  border-radius: 50%;
  box-shadow: 0 0 8px #EB5757;
  animation: pulse 1.6s infinite;
}

.live-card__title {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 24px;
  background: linear-gradient(135deg, #ffffff 0%, var(--green-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.live-card__desc {
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 14px;
}

.live-card__footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.live-card__footer-1 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.live-card__footer-2 {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

/* Card do Reel */
.ig-reel-card {
  background: var(--sand);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  border: 1.5px solid var(--sand-dark);
}

.ig-reel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.ig-reel-card__bg {
  position: relative;
  height: 200px;
  background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.45)), url('../assets/images/about.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 52px; height: 52px;
  background: var(--gold);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(108,189,69,0.3);
  transition: transform var(--t-fast), background var(--t-fast);
}

.play-btn svg {
  margin-left: 3px;
}

.ig-reel-card:hover .play-btn {
  transform: scale(1.1);
  background: var(--gold-light);
}

.ig-reel-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ig-reel-card__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
  display: block;
}

.ig-reel-card__desc {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

/* ──────────────────────────────────────────────────────────
   LOCALIZAÇÃO
   ────────────────────────────────────────────────────────── */
.localizacao {
  position: relative;
  background: url('../assets/images/about.jpg') no-repeat center center / cover;
  color: white;
}
.localizacao::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 38, 24, 0.82);
  z-index: 1;
}
.localizacao > * {
  position: relative;
  z-index: 2;
}
.localizacao .loc-item__label {
  color: var(--gold);
}
.localizacao .loc-item__value {
  color: rgba(255, 255, 255, 0.85);
}
.localizacao .loc-item__value strong {
  color: white;
}
.localizacao .loc-item__icon {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}
.localizacao__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.localizacao__info { display: flex; flex-direction: column; gap: 24px; }
.loc-item { display: flex; gap: 14px; align-items: flex-start; }
.loc-item__icon { width: 44px; height: 44px; border-radius: var(--r-md); background: white; border: 1.5px solid var(--sand-dark); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.loc-item__label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.loc-item__value { font-size: 0.9375rem; color: var(--text); line-height: 1.55; }
.localizacao__map { border-radius: var(--r-xl); overflow: hidden; height: 380px; box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.localizacao__map iframe { width: 100%; height: 100%; border: none; }

/* ──────────────────────────────────────────────────────────
   ORGANIZAÇÃO
   ────────────────────────────────────────────────────────── */
.organizacao { background: var(--surface); }
.org__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 48px; margin-top: 48px; }
.org-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.org-item__type { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); }
.org-item__box { min-width: 200px; min-height: 80px; background: white; border: 1.5px solid var(--sand-dark); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; padding: 16px 24px; font-size: 1.05rem; font-weight: 800; color: var(--green); text-align: center; line-height: 1.3; transition: border-color var(--t-fast), box-shadow var(--t-fast); }
.org-item__box:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,0.07); }

/* ──────────────────────────────────────────────────────────
   #9 – FOOTER + Newsletter
   ────────────────────────────────────────────────────────── */
.footer { background: var(--green); color: white; padding: clamp(3rem,6vw,5rem) 0 28px; }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand-name { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 6px; }
.footer__brand-sub { font-size: 0.8125rem; color: rgba(255,255,255,0.42); font-style: italic; margin-bottom: 16px; }
.footer__brand-info { font-size: 0.875rem; color: rgba(255,255,255,0.58); line-height: 1.75; margin-bottom: 20px; }
.footer__socials { display: flex; gap: 8px; }
.footer__social { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.58); transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast); }
.footer__social:hover { background: var(--gold); border-color: var(--gold); color: var(--green); }
.footer__col-title { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__lnk { font-size: 0.875rem; color: rgba(255,255,255,0.52); transition: color var(--t-fast); }
.footer__lnk:hover { color: white; }

/* Newsletter */
.footer__newsletter { margin-top: 20px; }
.footer__newsletter-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
.footer__newsletter-form { display: flex; gap: 8px; }
.footer__newsletter-input { flex: 1; padding: 10px 16px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); color: white; font-size: 0.8125rem; font-family: var(--f-sans); outline: none; transition: border-color var(--t-fast), background var(--t-fast); min-width: 0; }
.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.footer__newsletter-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.09); }
.footer__newsletter-btn { padding: 10px 18px; border-radius: var(--r-pill); background: var(--gold); color: var(--green); font-size: 0.8rem; font-weight: 700; cursor: pointer; border: none; transition: background var(--t-fast), transform var(--t-fast); white-space: nowrap; flex-shrink: 0; }
.footer__newsletter-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-size: 0.8125rem; color: rgba(255,255,255,0.26); }
.footer__hash { font-family: var(--f-serif); font-style: italic; font-size: 0.9rem; color: rgba(255,255,255,0.28); }

/* ──────────────────────────────────────────────────────────
   FORM PAGE
   ────────────────────────────────────────────────────────── */
.form-page { min-height: 100vh; background: var(--surface); }
.form-hero { background: var(--green); padding-top: 100px; padding-bottom: 0; text-align: center; }
.form-hero .container { max-width: 680px; }
.form-back { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8125rem; color: rgba(255,255,255,0.48); margin-bottom: 24px; transition: color var(--t-fast); }
.form-back:hover { color: rgba(255,255,255,0.9); }
.form-hero__title { font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: white; letter-spacing: -0.03em; margin-bottom: 12px; }
.form-hero__sub { font-size: 0.9375rem; color: rgba(255,255,255,0.58); line-height: 1.65; }
.form-tabs-wrap { max-width: 680px; margin: 40px auto 0; display: flex; border-radius: var(--r-xl) var(--r-xl) 0 0; overflow: hidden; }
.form-tab { flex: 1; padding: 18px 24px; text-align: center; cursor: pointer; font-size: 0.9375rem; font-weight: 600; transition: background var(--t-mid), color var(--t-mid); border: none; font-family: var(--f-sans); }
.form-tab--visitor { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.58); }
.form-tab--visitor.active { background: white; color: var(--green); }
.form-tab--expositor { background: rgba(107,61,30,0.38); color: rgba(255,255,255,0.58); }
.form-tab--expositor.active { background: var(--brown); color: white; }
.form-area { max-width: 680px; margin: 0 auto; padding: 0 var(--px) clamp(3rem,6vw,5rem); }
.form-panel { display: none; }
.form-panel.active { display: block; }
.form-box { background: white; border-radius: 0 0 var(--r-xl) var(--r-xl); border: 1.5px solid var(--sand-dark); border-top: none; padding: 40px; }
.form-box--visitor { border-top: 4px solid var(--green); border-radius: var(--r-xl); margin-top: -1px; }
.form-box--expositor { border-top: 4px solid var(--brown); border-radius: var(--r-xl); margin-top: -1px; }
.form-box__title { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.form-box--visitor .form-box__title { color: var(--green); }
.form-box--expositor .form-box__title { color: var(--brown); }
.form-box__sub { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.6; }
.form__group { margin-bottom: 20px; }
.form__label { display: block; font-size: 0.8125rem; font-weight: 700; color: var(--text); margin-bottom: 7px; letter-spacing: 0.01em; }
.form__req { color: var(--gold); }
.form__input, .form__select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--sand-dark); border-radius: var(--r-md); font-family: var(--f-sans); font-size: 0.9375rem; color: var(--text); background: var(--surface); transition: border-color var(--t-fast), box-shadow var(--t-fast); outline: none; appearance: none; }
.form__input:focus, .form__select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(28,58,34,0.09); background: white; }
.form__input.error { border-color: #d32f2f; }
.form__err { font-size: 0.75rem; color: #d32f2f; margin-top: 4px; display: none; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__select-wrap { position: relative; }
.form__select-wrap::after { content: '▾'; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; font-size: 0.8rem; }
.form__submit { width: 100%; padding: 15px; font-size: 1rem; font-weight: 700; border-radius: var(--r-md); margin-top: 8px; }
.form__success { display: none; text-align: center; padding: 48px 24px; }
.form__success.show { display: block; }
.form__success-icon { font-size: 3.5rem; margin-bottom: 20px; }
.form__success-title { font-size: 1.75rem; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 12px; }
.form__success-title.green { color: var(--green); }
.form__success-title.brown { color: var(--brown); }
.form__success-desc { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.75; }

/* ──────────────────────────────────────────────────────────
   SCROLL REVEAL
   ────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* ──────────────────────────────────────────────────────────
   KEYFRAMES
   ────────────────────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__btn-outline { display: none; }
  .nav__hamburger { display: flex; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .numeros__grid { grid-template-columns: 1fr; }
  .numeros__stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .bento__grid { grid-template-columns: repeat(2, 1fr); }
  .sobre__grid { grid-template-columns: 1fr; }
  .sobre__img-stack { aspect-ratio: 16/9; max-height: 380px; }
  .sobre__img-back { display: none; }
  .sobre__img-front { width: 100%; height: 100%; position: relative; bottom: auto; left: auto; }
  .sobre__badge { right: 16px; }
  .trilhas__grid { grid-template-columns: 1fr 1fr; }
  .estrutura__wrap { grid-template-columns: 1fr; }
  .topbar .topbar__meta .topbar__meta-item:nth-child(n+2) { display: none; }
  .numeros__stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav { top: 0 !important; }
  .nav__actions {
    display: flex !important;
    gap: 8px;
    align-items: center;
    margin-right: 12px;
  }
  .nav__actions .nav__btn-outline {
    display: none !important;
  }
  .nav__actions .nav__btn-primary {
    font-size: 0.75rem !important;
    padding: 6px 14px !important;
    height: auto !important;
  }
  .nav__actions .nav__btn-primary svg {
    display: none !important;
  }

  .hero__content { padding-top: 120px; }
  .hero__stats-inner { justify-content: center; }
  .hero__stat-divider { display: none; }

  .bento__grid { grid-template-columns: 1fr; }

  .trilhas__grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    padding-bottom: 24px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .trilhas__grid .trilha-card {
    flex-shrink: 0 !important;
    width: 290px !important;
    scroll-snap-align: center !important;
  }
  .trilhas__grid::-webkit-scrollbar {
    height: 6px;
  }
  .trilhas__grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
  }
  .trilhas__grid::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
  }
  .prog__special { grid-template-columns: 1fr; }
  .speakers__grid { grid-template-columns: repeat(2, 1fr); }
  .instagram__grid { grid-template-columns: 1fr; }
  .localizacao__grid { grid-template-columns: 1fr; }
  .cred__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .estrutura__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .numeros__stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero-btn { width: 100%; justify-content: center; }
  .speakers__grid { grid-template-columns: 1fr; }
  .prog__tab { flex: 1; font-size: 0.8rem; padding: 8px 10px; }
  .footer__newsletter-form { flex-direction: column; }
}


/* ==========================================
   GALERIA DE FOTOS (FARMERS DAY)
   ========================================== */
.galeria {
  background: #111813;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.galeria__filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.galeria-filter-btn {
  padding: 10px 24px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.16s ease;
}
.galeria-filter-btn:hover {
  border-color: #6CBD45;
  color: #fff;
}
.galeria-filter-btn.active {
  background: #6CBD45;
  border-color: #6CBD45;
  color: #fff;
  box-shadow: 0 4px 15px rgba(108, 189, 69, 0.3);
}
.galeria__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.16s ease;
}
.gallery-item__img-wrap {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(108, 189, 69, 0.15);
}
.gallery-item:hover .gallery-item__img-wrap {
  transform: scale(1.08);
}
.gallery-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(17,24,19,0.8) 0%, rgba(17,24,19,0) 60%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: opacity 0.16s ease;
  pointer-events: none;
}
.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}
.gallery-item__caption {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 15, 12, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
}
.lightbox__content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.lightbox.active .lightbox__img {
  transform: scale(1);
}
.lightbox__caption {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}
.lightbox__close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.16s ease;
}
.lightbox__close:hover {
  opacity: 1;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: all 0.16s ease;
  user-select: none;
}
.lightbox__nav:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-50%) scale(1.05);
}
.lightbox__nav--prev {
  left: -70px;
}
.lightbox__nav--next {
  right: -70px;
}

@media (max-width: 768px) {
  .lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .lightbox__nav--prev {
    left: -10px;
    background: rgba(17,24,19,0.5);
  }
  .lightbox__nav--next {
    right: -10px;
    background: rgba(17,24,19,0.5);
  }
}


/* Galeria Wrapper – "Ver mais" layout */
.galeria__wrapper {
  position: relative;
  max-height: 680px;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.galeria__wrapper.expanded {
  max-height: 4000px;
}
.galeria__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(to bottom, transparent, #111813);
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 5;
}
.galeria__wrapper.expanded .galeria__fade {
  opacity: 0;
}
.galeria__ver-mais {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  padding: 14px 36px;
  transition: all 0.16s ease;
}
.galeria__ver-mais svg {
  transition: transform 0.3s ease;
}
.galeria__ver-mais.rotated svg {
  transform: rotate(180deg);
}


/* Footer – Crédito Desenvolvedor */
.footer__dev {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 8px;
}
.footer__dev a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.16s ease;
}
.footer__dev a:hover {
  color: #6CBD45;
}


/* Speaker Card – Role description */
.speaker-card__role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================
   RESPONSIVIDADE GERAL – MELHORIAS
   ========================================== */

/* Tablet */
@media (max-width: 900px) {
  .speakers__grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .galeria__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .localizacao__grid { grid-template-columns: 1fr !important; }
  .localizacao__map { min-height: 300px; }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-h2 { font-size: 1.5rem; }
  .section-lead { font-size: 0.875rem; }
  .speakers__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .speaker-card__body { padding: 12px 14px; }
  .speaker-card__name { font-size: 0.8125rem; }
  .speaker-card__role { font-size: 0.6875rem; -webkit-line-clamp: 2; }
  .speaker-card__tag { font-size: 0.6rem; padding: 2px 7px; }
  .galeria__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .galeria__wrapper { max-height: 520px; }
  .galeria__filters { gap: 8px; }
  .galeria-filter-btn { padding: 8px 16px; font-size: 0.75rem; }
  .gallery-item { border-radius: 10px; }
  .footer__inner { grid-template-columns: 1fr !important; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* Small mobile */
@media (max-width: 480px) {
  .speakers__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .speaker-card__photo { aspect-ratio: 1/1; }
  .speaker-card__name { font-size: 0.75rem; }
  .speaker-card__role { display: none; }
  .galeria__grid { grid-template-columns: 1fr; gap: 14px; }
  .galeria__wrapper { max-height: 450px; }
  .galeria__filters { flex-direction: column; align-items: stretch; }
  .galeria-filter-btn { width: 100%; text-align: center; }
  .cred__grid { grid-template-columns: 1fr !important; }
  .localizacao__map iframe { min-height: 250px; }
}

/* ──────────────────────────────────────────────────────────
   SYMPLA POPUP MODAL
   ────────────────────────────────────────────────────────── */
.form-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 38, 24, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.form-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.form-modal-box {
  background: white;
  width: 100%;
  max-width: 540px;
  border-radius: var(--r-xl);
  padding: clamp(24px, 5vw, 36px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.form-modal-overlay.show .form-modal-box {
  transform: translateY(0);
}
.form-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(0,0,0,0.05);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.15rem;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.form-modal-close:hover {
  background: rgba(0,0,0,0.1);
  color: var(--text);
}
.modal-schedule-card {
  padding: 16px;
  background: var(--sand);
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.modal-schedule-day {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.modal-schedule-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--green);
  margin: 2px 0;
}
.modal-schedule-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 4px;
}

/* ──────────────────────────────────────────────────────────
   MOBILE COMPACT PROGRAMMING SECTION
   ────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .prog__day-lead {
    font-size: 0.95rem;
    margin-bottom: 16px;
    padding-bottom: 8px;
  }
  .prog__item {
    padding: 10px 0;
    gap: 10px;
  }
  .prog__item-text {
    font-size: 0.85rem;
  }
  .prog__tab {
    padding: 10px 8px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .prog__item {
    padding: 8px 0;
    gap: 8px;
  }
  .prog__item-text {
    font-size: 0.8rem;
  }
  .prog__day-lead {
    font-size: 0.85rem;
    margin-bottom: 12px;
    padding-bottom: 6px;
  }
}

/* ──────────────────────────────────────────────────────────
   APOIO GRID (2 COLUMNS MOBILE)
   ────────────────────────────────────────────────────────── */
.logos__grid--two-columns-mobile {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .logos__grid--two-columns-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    justify-items: center;
    width: calc(100% - 40px);
    max-width: 310px;
    margin: 0 auto;
  }
  .logos__grid--two-columns-mobile .org-item {
    width: 100%;
  }
  .logos__grid--two-columns-mobile .org-item__box {
    width: 100% !important;
    min-width: 0 !important;
    height: 50px !important;
    min-height: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logos__grid--two-columns-mobile .org-item__box img {
    max-height: 60% !important;
    max-width: 80% !important;
    object-fit: contain;
  }
}
