/* ============================================================
   DIA DE NEGÓCIOS BOUWMAN — Landing page
   Tema "Claro e ensolarado" — dia de campo, família, calor.
   Herda o capricho do HUB (vidro fosco, animações, fontes Bouwman)
   numa paleta clara, quente e acolhedora.
   ============================================================ */

/* ---------- Fontes da marca ---------- */
@font-face {
  font-family: 'Resolve';
  src: url('../fonts/Resolve-Regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Resolve';
  src: url('../fonts/Resolve-Light.otf') format('opentype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Resolve';
  src: url('../fonts/Resolve-Bold.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  --cream: #fbf7ee;
  --cream-2: #eaf3e4;

  --ink: #14331f;
  --ink-soft: rgba(20, 51, 31, 0.72);
  --ink-faint: rgba(20, 51, 31, 0.50);

  --green: #0a7a3d;        /* verde Bouwman */
  --green-bright: #16a34a;
  --green-deep: #064d27;
  --gold: #e2a93b;         /* dourado trigo / sol / chope */
  --gold-deep: #c4861d;
  --sky: #5bb7e0;          /* azul-céu */
  --sky-deep: #2b87b8;

  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.80);
  --glass-line: rgba(20, 51, 31, 0.12);
  --glass-warm: rgba(255, 252, 245, 0.62);
  --glass-shadow: 0 18px 50px rgba(20, 51, 31, 0.10);

  --gradient: linear-gradient(135deg, #1fae57 0%, #0a7a3d 100%);
  --gradient-sky: linear-gradient(135deg, #7fcce8 0%, #2f8fc0 100%);
  --gradient-gold: linear-gradient(135deg, #f3c969 0%, #d8941f 100%);

  --radius: 24px;
  --radius-sm: 16px;
  --maxw: 1180px;

  --font-display: 'Resolve', 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Space Grotesk', 'Resolve', ui-sans-serif, system-ui, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400; line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 25%, #f4f7ec 60%, #eaf3e4 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; margin: 0;
  color: var(--ink);
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }



/* ---------- Utilitários de layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { position: relative; z-index: 1; padding-block: clamp(64px, 9vw, 130px); }
#sobre {
  background: #dadada;
  padding-block: clamp(45px, 6.3vw, 91px);
}
.section--tight { padding-block: clamp(48px, 6vw, 90px); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700; letter-spacing: 0.20em; text-transform: uppercase;
  color: #1b4124;
  padding: 8px 16px; border-radius: 9999px;
  background: #adc54c;
  border: 1px solid rgba(27, 65, 36, 0.15);
}
.section-title {
  font-size: clamp(30px, 5vw, 52px); margin-top: 22px;
  background: linear-gradient(165deg, #14331f 0%, #0a7a3d 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-lead {
  margin-top: 18px; max-width: 640px;
  color: var(--ink-soft); font-size: clamp(16px, 2vw, 19px);
}
.center .section-lead { margin-inline: auto; }

/* Glass base — vidro fosco claro */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), inset 0 1px 1px rgba(255, 255, 255, 0.7);
}
.glass-warm {
  background: var(--glass-warm);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(226, 169, 59, 0.28);
  box-shadow: 0 22px 60px rgba(20, 51, 31, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.7);
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  padding: 15px 30px; border-radius: 9999px; border: 1px solid transparent;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease, background 0.3s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover { transform: scale(1.05); }
.btn:active { transform: scale(0.98); }
.btn--green {
  background: #ffffff; color: #1b4124;
  box-shadow: 0 10px 25px rgba(27, 65, 36, 0.08), inset 0 1px 1px rgba(255,255,255,0.8);
  border: 1px solid rgba(27, 65, 36, 0.15);
}
.btn--green:hover {
  background: #fbf7ee;
  box-shadow: 0 15px 35px rgba(27, 65, 36, 0.12), inset 0 1px 1px rgba(255,255,255,0.9);
}
.btn--blue {
  background: #adc54c; color: #1b4124;
  box-shadow: 0 10px 25px rgba(173, 197, 76, 0.25), inset 0 1px 1px rgba(255,255,255,0.4);
  border: 1px solid rgba(27, 65, 36, 0.1);
}
.btn--blue:hover {
  background: #bce053;
  box-shadow: 0 15px 35px rgba(173, 197, 76, 0.35), inset 0 1px 1px rgba(255,255,255,0.5);
}
.btn--ghost {
  background: var(--glass-bg); color: var(--green-deep);
  border-color: var(--glass-line);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.btn--ghost:hover { background: #fff; border-color: rgba(10,122,61,0.4); color: var(--green); }
.btn--lg { padding: 18px 38px; font-size: 17px; }
.btn--block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 40; height: 76px;
  display: flex; align-items: center;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.topbar.scrolled {
  background: rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar__logo { height: 34px; width: auto; }
.topbar__meta {
  display: flex; align-items: center; gap: clamp(10px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.95); font-size: clamp(11px, 1.5vw, 14px);
}
.topbar__meta .dot { width: 1px; height: 16px; background: rgba(255, 255, 255, 0.3); }
.topbar__meta b { color: #ffffff; font-weight: 700; letter-spacing: -0.01em; }
.topbar__meta span { display: inline-flex; align-items: center; gap: 8px; }
.topbar__meta svg { color: #adc54c; }
.topbar__right { display: flex; align-items: center; gap: clamp(12px, 2vw, 20px); }
.topbar__login {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  font-family: var(--font-body); font-size: 13px; font-weight: 700; color: #ffffff;
  padding: 9px 16px; border-radius: 9999px;
  background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.30);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.topbar__login:hover { background: rgba(255, 255, 255, 0.28); transform: translateY(-1px); }
.topbar__login svg { color: #adc54c; }
.topbar__burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.25); color: #ffffff;
}
@media (max-width: 600px) {
  .topbar__meta .dot,
  .topbar__meta span:last-child {
    display: none;
  }
}
@media (min-width: 1000px) {
  .topbar__burger { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative; height: 100svh; min-height: 680px; max-height: 900px;
  margin-top: 0;
  display: flex; align-items: flex-start;
  padding-top: 96px; padding-bottom: 150px; overflow: visible;
}
.hero__photo {
  position: absolute; inset: 0; z-index: 0;
  background-position: center center; background-size: cover; background-repeat: no-repeat;
  opacity: 1;
}
.hero__grid {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__inner { position: relative; z-index: 2; max-width: 880px; }
.hero h1 {
  font-size: clamp(26px, 4.8vw, 68px); margin-top: 16px;
  color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}
.hero__sub {
  margin-top: 16px; max-width: 660px;
  font-size: clamp(14px, 1.8vw, 21px);
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.hero .eyebrow {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.hero__cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__tagline {
  margin-top: 30px; display: inline-flex;
  transform: translateY(var(--tagline-y, 0));
  transition: transform 0.1s ease-out;
}
.hero__tagline-pulse {
  display: inline-flex; align-items: center;
  padding: 16px 26px; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(13px, 1.8vw, 19px);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  animation: taglinePulse 4s ease-in-out infinite;
}
@keyframes taglinePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  50% {
    transform: scale(1.025);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  }
}
.hero__logo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: clamp(340px, 50vw, 680px);
  margin: 0 auto;
  gap: 24px;
}
.hero__logo-theme-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  animation: floatLogo 6s ease-in-out infinite;
}
.hero__logo-theme-entrance {
  width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: scale(0.1) rotate(-360deg);
  will-change: transform, opacity;
}
.hero__logo-container.in .hero__logo-theme-entrance {
  animation: logoEntrance 2.2s cubic-bezier(0.25, 1, 0.3, 1) forwards;
  animation-delay: 0.25s;
}
.hero__logo-theme {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.3));
}
@keyframes logoEntrance {
  0% {
    transform: scale(0.1) rotate(-360deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  70% {
    transform: scale(1.04) rotate(4deg);
  }
  86% {
    transform: scale(0.99) rotate(-1deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Divisor Fun Opacity */
.hero__divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 15;
}
.hero__divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: clamp(60px, 9vw, 120px);
}

/* ---------- Bloco "O que é" (citação) ---------- */
.quote-card {
  border-radius: var(--radius); padding: clamp(32px, 5vw, 56px);
  max-width: 880px; margin-inline: auto; position: relative;
}
.quote-card::before {
  content: "“"; position: absolute; top: 2px; left: 24px;
  font-family: var(--font-display); font-size: 110px; line-height: 1; color: rgba(226, 169, 59, 0.45);
}
.quote-card p {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(20px, 3vw, 30px); line-height: 1.45; color: var(--ink);
}

/* ---------- Cards grandes (família) ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.feature {
  border-radius: var(--radius); padding: 30px; position: relative; overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.feature:hover { transform: translateY(-6px); border-color: rgba(226, 169, 59, 0.45); box-shadow: 0 26px 60px rgba(20,51,31,0.14), inset 0 1px 1px rgba(255,255,255,0.7); }
.feature__icon {
  width: 60px; height: 60px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center; font-size: 30px;
  background: linear-gradient(135deg, rgba(226, 169, 59, 0.22), rgba(10, 122, 61, 0.14));
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.8);
}
.feature h3 { font-size: 21px; margin-top: 22px; }
.feature p { margin-top: 10px; color: var(--ink-soft); font-size: 15px; }
.feature__glow {
  position: absolute; top: -40%; right: -30%; width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(226, 169, 59, 0.22), transparent 70%);
  opacity: 0; transition: opacity 0.4s ease;
}
.feature:hover .feature__glow { opacity: 1; }

/* ---------- 3 colunas (o que encontrará) ---------- */
.pillar { border-radius: var(--radius); padding: 34px 30px; height: 100%; }
.pillar__tag {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--green);
  padding: 7px 14px; border-radius: 9999px; background: rgba(10, 122, 61, 0.08); border: 1px solid rgba(10, 122, 61, 0.18);
}
.pillar h3 { font-size: 24px; margin-top: 18px; }
.pillar ul { margin-top: 20px; display: flex; flex-direction: column; gap: 13px; }
.pillar li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-soft); font-size: 15.5px; }
.pillar li svg { width: 20px; height: 20px; flex: none; color: var(--green); margin-top: 1px; }

/* ---------- Galeria ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 12px; }
.gallery__item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  background-color: #d8d8d8;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.gallery__item:hover { transform: scale(1.02); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,30,15,0.40));
  opacity: 0; transition: opacity 0.4s ease;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item.wide { grid-column: span 2; }
.gallery__item.tall { grid-row: span 2; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; } .gallery__item.wide { grid-column: span 2; } }
@media (max-width: 560px) { .gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; } .gallery__item.wide, .gallery__item.tall { grid-column: auto; grid-row: auto; } }

/* ---------- Segmentos / expositores ---------- */
.segments { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }
.segment {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px; border-radius: 9999px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.6);
  font-size: 15px; font-weight: 600; color: var(--ink);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.segment:hover { transform: translateY(-3px); border-color: rgba(226, 169, 59, 0.5); }
.segment .ico { font-size: 22px; }

.logos { margin-top: 46px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
@media (max-width: 900px) { .logos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .logos { grid-template-columns: repeat(2, 1fr); } }
.logo-slot {
  aspect-ratio: 3/2; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--glass-border);
  box-shadow: 0 10px 28px rgba(20, 51, 31, 0.06);
  color: var(--ink-faint); font-size: 12px; text-align: center; padding: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.logo-slot:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(20, 51, 31, 0.13); }
.logo-slot img { max-height: 70%; max-width: 82%; object-fit: contain; }

/* ---------- Programação ---------- */
.schedule { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 760px) { .schedule { grid-template-columns: 1fr; } }
.schedule__card { border-radius: var(--radius); padding: 36px 32px; }
.schedule__card h3 { font-size: 22px; display: flex; align-items: center; gap: 12px; }
.schedule__card h3 .badge {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 9999px;
}
.badge--day { color: var(--green); background: rgba(10,122,61,0.1); border: 1px solid rgba(10,122,61,0.22); }
.badge--special { color: var(--gold-deep); background: rgba(226,169,59,0.14); border: 1px solid rgba(226,169,59,0.32); }
.schedule__card ul { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.schedule__card li { display: flex; align-items: center; gap: 14px; color: var(--ink-soft); font-size: 16px; }
.schedule__card li .tick {
  width: 30px; height: 30px; border-radius: 10px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,122,61,0.1); border: 1px solid rgba(10,122,61,0.2); color: var(--green);
}
.schedule__card li .tick svg { width: 16px; height: 16px; }

/* ---------- Por que expor / incluso ---------- */
.stat-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 900px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .stat-row { grid-template-columns: 1fr; } }
.stat { border-radius: var(--radius-sm); padding: 26px 22px; text-align: center; }
.stat .big { font-size: 34px; line-height: 1; }
.stat p { margin-top: 12px; font-size: 14px; color: var(--ink-soft); }

.included { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.included .chip {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px; border-radius: 9999px;
  background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--ink); font-size: 15px;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.6);
}
.included .chip svg { width: 18px; height: 18px; color: var(--green); }

/* ---------- Formulários ---------- */
.form-card { border-radius: var(--radius); padding: clamp(28px, 4vw, 46px); max-width: 720px; margin-inline: auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } .field.full { grid-column: auto; } }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: rgba(255,255,255,0.7); border: 1px solid var(--glass-line);
  border-radius: 14px; padding: 14px 16px; transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(20,51,31,0.38); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: rgba(10,122,61,0.55); background: #fff;
  box-shadow: 0 0 0 4px rgba(10,122,61,0.10);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%230a7a3d' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.form-card .btn { margin-top: 6px; }
.form-note { margin-top: 16px; font-size: 13px; color: var(--ink-faint); text-align: center; }

/* ---------- Encerramento ---------- */
.closing { position: relative; overflow: hidden; text-align: center; }
.closing__photo {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(135deg, #eef5e6, #f7efdf);
  background-position: center; background-size: cover; background-repeat: no-repeat;
  opacity: 0.40;
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,0.85), transparent 78%);
  mask-image: radial-gradient(circle at center, rgba(0,0,0,0.85), transparent 78%);
}
.closing__inner { position: relative; z-index: 2; max-width: 820px; margin-inline: auto; }
.closing h2 {
  font-size: clamp(30px, 5.4vw, 58px);
  background: linear-gradient(165deg, #14331f 0%, #0a7a3d 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.closing .btn { margin-top: 36px; }
/* título do encerramento com efeito de escrita: remove o gradiente recortado
   para as cores por palavra (#ADC54C → verde escuro) aparecerem */
.closing h2.scroll-write {
  background: none;
  -webkit-background-clip: border-box; background-clip: border-box;
  color: var(--ink);
}

/* ---------- Footer ---------- */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--glass-line); padding-block: 50px; background: rgba(255,255,255,0.35); }
.footer .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.footer__logo { height: 34px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 22px; color: var(--ink-soft); font-size: 14px; }
.footer__links a { display: inline-flex; align-items: center; gap: 8px; transition: color 0.25s ease; }
.footer__links a:hover { color: var(--green); }
.footer__links svg { color: var(--green); }
.footer__copy { color: var(--ink-faint); font-size: 13px; width: 100%; padding-top: 8px; }

/* ---------- Animações de entrada ---------- */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.reveal { opacity: 0; }
.reveal.in { animation: fadeInUp 0.85s cubic-bezier(0.16,1,0.3,1) forwards; }
.reveal.d1 { animation-delay: 0.08s; }
.reveal.d2 { animation-delay: 0.16s; }
.reveal.d3 { animation-delay: 0.24s; }
.reveal.d4 { animation-delay: 0.32s; }
@media (max-width: 900px) {
  .hero {
    max-height: none;
    align-items: flex-start;
    padding-top: 96px;
    padding-bottom: 150px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__cta {
    justify-content: center;
  }
  .hero__logo-container {
    max-width: 460px;
    margin: 0 auto;
  }
}

/* HERO no MOBILE: altura cresce com o conteúdo (sem transbordar p/ a próxima seção)
   e ordem reorganizada: logo-tema → título → descrição → botões → tagline */
@media (max-width: 600px) {
  .hero {
    height: auto;
    min-height: 100svh;
    padding-top: 92px;
    padding-bottom: 130px;
  }
  .hero__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  /* dissolve os wrappers para reordenar os filhos diretamente no grid */
  .hero__inner,
  .hero__logo-container { display: contents; }

  .hero__logo-theme-wrapper { order: 1; width: 68%; max-width: 280px; margin: 0 auto; }
  .hero h1 { order: 2; margin-top: 0; }
  .hero__sub { order: 3; margin-inline: auto; }
  .hero__cta { order: 4; justify-content: center; }
  .hero__tagline { order: 5; margin-top: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; animation: none !important; }
  #particles { display: none; }
  .hero__scroll .mouse i { animation: none; }
}

/* ---------- Toast (confirmação envio) ---------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px);
  z-index: 80; padding: 15px 24px; border-radius: 14px;
  background: rgba(255,255,255,0.92); border: 1px solid rgba(10,122,61,0.25); color: var(--ink);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 18px 50px rgba(20,51,31,0.18); font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease, transform 0.35s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast svg { width: 20px; height: 20px; color: var(--green); }

/* ============================================================
   AJUSTES — Alterações de página (Dia de Negócios)
   ============================================================ */

/* 01 — Um dia para toda a família: imagens nos cards + sem efeito de luz */
.feature__img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
  margin-bottom: 18px;
}
.feature {
  box-shadow: none;   /* Remove sombra */
  filter: none;       /* Remove filtros de brilho ou luz */
  transition: none;   /* Remove efeito de hover */
}
.feature:hover {
  transform: none;
  border-color: var(--glass-border);
  box-shadow: none;
}
.feature__glow { display: none; }   /* Remove o brilho residual */
/* aproxima os cards (menos espaço entre eles) */
.section--tight .grid--3 { gap: 14px; }

/* O que é o Dia de Negócios?: seção mais baixa (menos padding) +
   frase de destaque ocupando toda a largura da página (alinhamento total) */
#sobre { padding-block: clamp(22px, 3vw, 44px); }
#sobre .quote-card { max-width: none; margin-inline: 0; }
/* frase da 2ª seção em negrito */
#sobre .quote-card p { font-weight: 700; }
/* espaço inferior igual ao superior (o divisor não deve deixar um vão grande) */
#sobre .shape-divider { margin-top: clamp(22px, 3vw, 44px); }

/* Efeito de "escrita" conforme o scroll — revela LINHA por linha (estilo SaaS).
   Estado inicial: #ADC54C com 50% de opacidade → transiciona para a cor original. */
.scroll-write .word {
  color: #adc54c;
  opacity: 0.5;
  transition: color 0.5s ease, opacity 0.5s ease;
}
.scroll-write .word.is-on {
  color: var(--ink);
  opacity: 1;
}

/* aspas em #ADC54C 100% + leve efeito de escala ao passar o mouse */
#sobre .quote-card::before { color: #adc54c; }
#sobre .quote-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
#sobre .quote-card:hover { transform: scale(1.02); }

/* 02 — Como foi a última edição: mosaico que ladrilha sem espaços em branco.
   3 layouts fixos (m1/m2/m3) com grid-template-areas — sorteados via JS. */
.gallery {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 150px);
  grid-auto-flow: row;
  gap: 12px;
}
/* mapeia cada foto (ordem do DOM) a uma área nomeada a..j */
.gallery__item:nth-child(1)  { grid-area: a; }
.gallery__item:nth-child(2)  { grid-area: b; }
.gallery__item:nth-child(3)  { grid-area: c; }
.gallery__item:nth-child(4)  { grid-area: d; }
.gallery__item:nth-child(5)  { grid-area: e; }
.gallery__item:nth-child(6)  { grid-area: f; }
.gallery__item:nth-child(7)  { grid-area: g; }
.gallery__item:nth-child(8)  { grid-area: h; }
.gallery__item:nth-child(9)  { grid-area: i; }
.gallery__item:nth-child(10) { grid-area: j; }

.gallery--m1 {
  grid-template-areas:
    "a a b c"
    "a a b d"
    "e f f g"
    "e h i j";
}
.gallery--m2 {
  grid-template-areas:
    "a a b b"
    "c d e f"
    "c d g h"
    "i j g h";
}
.gallery--m3 {
  grid-template-areas:
    "a a b c"
    "d e b c"
    "d e f f"
    "g h i j";
}

.gallery__item { cursor: zoom-in; }
.gallery__item::after { display: none; }   /* sem gradiente escuro */
.gallery__item::before { display: none; }  /* sem overlay verde — somente scale */
.gallery__item:hover { transform: scale(1.04); z-index: 2; }

/* ícone "+" (thin line) indicando que há lightbox */
.gallery__zoom {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  color: #fff; opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.gallery__zoom svg { width: 18px; height: 18px; }
.gallery__item:hover .gallery__zoom { opacity: 1; transform: scale(1.12); }

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: none !important;
    grid-auto-rows: 160px;
    grid-template-areas: none !important;
  }
  .gallery__item { grid-area: auto !important; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr !important; grid-auto-rows: 210px; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 120;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 20, 12, 0.88);
  padding: 4vw;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.show { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 92vw; max-height: 88vh;
  border-radius: 14px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.96); transition: transform 0.3s ease;
}
.lightbox.show .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: 18px; right: 28px;
  font-size: 42px; line-height: 1; color: #fff; cursor: pointer;
  opacity: 0.85; transition: opacity 0.2s ease; user-select: none;
}
.lightbox__close:hover { opacity: 1; }
/* setas de navegação (avançar / voltar) */
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff; cursor: pointer; z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox__nav svg { width: 26px; height: 26px; }
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.26); }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }
.lightbox__prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox__next:hover { transform: translateY(-50%) translateX(2px); }
@media (max-width: 560px) {
  .lightbox__nav { width: 46px; height: 46px; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
}

/* Exposição de soluções para o agro: fundo cinza + retângulo de patrocinadores */
.secao-solucoes {
  background-color: #dadada;
}
/* retângulo branco — espaço reservado das marcas patrocinadoras */
.sponsors {
  margin-top: 46px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(20, 51, 31, 0.08);
  border: 1px solid rgba(20, 51, 31, 0.06);
  padding: 44px 40px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
/* cada "linha" de marcas */
.sponsors__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 44px;
}
/* logos em estilo "linha" (contorno/contidas), altura base das linhas 2-4 */
.sponsors__logo {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}
/* 1ª linha: 30% maior que as demais (56px * 1.3 ≈ 73px) */
.sponsors__row--lead .sponsors__logo {
  height: 73px;
  max-width: 280px;
}
@media (max-width: 560px) {
  .sponsors { padding: 32px 22px; gap: 24px; }
  .sponsors__row { gap: 28px; }
  .sponsors__logo { height: 46px; }
  .sponsors__row--lead .sponsors__logo { height: 60px; }
}

/* 04 — Por que expor no Dia de Negócios?: cor de fundo da seção */
.secao-expor {
  background-color: #adc54c;
}

/* O que você encontrará no evento.
   Seção em cinza claro (#DADADA); os 3 blocos em #adc54c com texto #1b4124.
   Contraste texto/fundo dos cards (#1b4124 sobre #adc54c) ≈ 6:1 → AA. */
.secao-encontrara {
  background-color: #dadada;
  background-image: url('../img/Bg - secao para todo mundo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.secao-encontrara .pillar {
  /* card branco sólido (conforme referência) */
  background: #fff;
  border: 1px solid rgba(20, 51, 31, 0.08);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  box-shadow: 0 18px 50px rgba(20, 51, 31, 0.10);
  color: #1b4124;
  /* efeito de escala suave ao passar o mouse */
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.secao-encontrara .pillar:hover {
  transform: scale(1.04);
}
/* título e itens em tom escuro */
.secao-encontrara .pillar h3 { color: #1b4124; }
.secao-encontrara .pillar li { color: #1b4124; gap: 0; }
/* tag em pílula verde #ADC54C com texto escuro (mantém fonte/caixa do site) */
.secao-encontrara .pillar__tag {
  background: #adc54c;
  color: #1b4124;
  border: none;
  padding: 7px 16px;
  border-radius: 9999px;
}

/* Um dia inteiro de experiências (Programação): cards com tom suave para
   contrastar com o fundo branco da seção (antes ficavam "sumindo" no branco) */
.secao-programacao .schedule__card {
  background: #eef1e8;
  border: 1px solid rgba(20, 51, 31, 0.12);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  box-shadow: 0 16px 40px rgba(20, 51, 31, 0.12);
  color: #1b4124;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.secao-programacao .schedule__card:hover { transform: scale(1.04); }
/* pílula verde */
.secao-programacao .pillar__tag {
  background: #adc54c;
  color: #1b4124;
  border: none;
  padding: 7px 16px;
  border-radius: 9999px;
}
/* título escuro */
.secao-programacao .schedule__card h3 {
  display: block;
  margin-top: 0;
  font-size: 24px;
  color: #1b4124;
}
/* itens (sem ícone) em tom escuro */
.secao-programacao .schedule__card ul { margin-top: 20px; gap: 13px; }
.secao-programacao .schedule__card li {
  color: #1b4124;
  gap: 0;
  font-size: 15.5px;
}

/* Quero participar: fundo cinza + botão menor + nota em destaque */
#participar { background-color: #dadada; }
/* botão "Reservar minha vaga": espaço de 20px entre os campos e o botão + cor #ADC54C */
#participar .form-card .btn {
  margin-top: 20px;
  background: #adc54c;
  color: #1b4124;
  border-color: rgba(27, 65, 36, 0.20);
}
#participar .form-card .btn:hover {
  background: #9eb83f;
  box-shadow: 0 15px 35px rgba(27, 65, 36, 0.18);
}
/* nota com destaque (sem o ícone final, removido no HTML) */
.form-note--destaque {
  font-size: 15px;
  font-weight: 600;
  color: #1b4124;
}

/* Por que expor: 2 colunas 50/50 (vantagens | formulário) */
.secao-expor .expor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 44px;
}
.secao-expor .expor-col { display: flex; flex-direction: column; }
/* card branco da lista — estica para acompanhar a altura do formulário */
.secao-expor .expor-incluso {
  flex: 1;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(20, 51, 31, 0.08);
  box-shadow: 0 18px 50px rgba(20, 51, 31, 0.10);
  padding: clamp(24px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
/* título "O que está incluso" dentro do card */
.secao-expor .expor-incluso__title {
  font-size: clamp(22px, 3vw, 28px);
  color: #1b4124;
  margin-bottom: 24px;
}
.secao-expor .incluso-list {
  display: flex; flex-direction: column; gap: 16px; width: 100%;
}
.secao-expor .incluso-list li {
  display: flex; align-items: center; gap: 14px;
  color: #1b4124; font-size: 16px; font-weight: 500;
}
/* ícone thin-line, contraste com o fundo verde da seção */
.secao-expor .incluso-list__ico {
  flex: none; width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(27, 65, 36, 0.08);
  color: #1b4124;
}
.secao-expor .incluso-list__ico svg { width: 22px; height: 22px; }
/* form: max-width livre dentro da coluna */
.secao-expor .form-card { max-width: none; }
/* botão "Quero expor no evento": 20px entre os campos e o botão */
.secao-expor .form-card .btn { margin-top: 20px; }
@media (max-width: 820px) {
  .secao-expor .expor-grid { grid-template-columns: 1fr; }
}

/* Rodapé verde escuro (#1B4124) com logo e textos em branco */
.footer {
  background: #1b4124;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}
.footer__links { color: rgba(255, 255, 255, 0.95); }
.footer__links a { color: rgba(255, 255, 255, 0.95); }
.footer__links a:hover { color: #fff; }
.footer__links svg { color: #fff; }
.footer__copy { color: rgba(255, 255, 255, 0.9); }

/* Divisor de seção — estilo TILT (diagonal) com camadas de opacidade.
   Fica no rodapé da seção (em fluxo) e usa a cor da seção seguinte
   (--div-color); cada seção fica com tilt em cima (da anterior) e embaixo. */
.shape-divider {
  position: relative; width: 100%;
  line-height: 0; pointer-events: none; z-index: 1;
  /* respiro entre o conteúdo da seção e o divisor */
  margin-top: clamp(48px, 7vw, 96px);
}
.shape-divider svg { display: block; width: 100%; height: 70px; }
.shape-divider polygon { fill: var(--div-color, #dadada); }
/* variante espelhada (inclina para o outro lado) — mesclagem visual */
.shape-divider--flip svg { transform: scaleX(-1); }
/* seções com fundo branco */
.section--tight,
.secao-programacao,
.section:has(.gallery) { background-color: #ffffff; }
/* a seção que tem divisor não precisa de padding inferior (o respiro vem do margin-top) */
.section:has(.shape-divider) { padding-bottom: 0 !important; }
@media (max-width: 600px) { .shape-divider svg { height: 46px; } }
