/* AgroPro Gestão — landing (verde #004d26 + lima #8cc63f) */
:root {
  --agro-green: #004d26;
  --agro-green-2: #006633;
  --agro-green-dark: #003015;
  --agro-lime: #8cc63f;
  --agro-lime-soft: rgba(140, 198, 63, 0.18);
  --agro-white: #ffffff;
  --agro-bg: #f4f7f5;
  --agro-bg-card: #ffffff;
  --agro-tint: #e8f2eb;
  --agro-text: #1a2e22;
  --agro-muted: #5a6b61;
  --agro-border: #cfe0d4;
  --agro-shadow: 0 10px 40px rgba(0, 77, 38, 0.08);
  --agro-shadow-hover: 0 16px 48px rgba(0, 77, 38, 0.12);
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --font: 'Montserrat', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font);
  color: var(--agro-text);
  background: var(--agro-bg);
  overflow-x: hidden;
  line-height: 1.6;
}

/* NAV — branco, verde escuro */
.nav-premium {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 0;
  padding-top: max(12px, env(safe-area-inset-top));
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: var(--agro-white);
  border-bottom: 1px solid var(--agro-border);
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset;
}
.nav-premium.scrolled {
  box-shadow: var(--agro-shadow);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(14px, 4vw, 24px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px 20px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--agro-green);
  min-width: 0;
  flex: 1 1 auto;
}
.nav-brand img {
  width: 48px; height: 48px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(0, 77, 38, 0.12);
  border: 1px solid var(--agro-border);
  background: var(--agro-white);
}
.nav-brand-text { min-width: 0; }
.nav-brand-title {
  font-weight: 800;
  font-size: clamp(1rem, 3.2vw, 1.15rem);
  letter-spacing: -0.02em;
  display: block;
  line-height: 1.15;
  color: var(--agro-green);
}
.nav-brand-title .brand-accent { color: var(--agro-lime); font-weight: 800; }
.nav-brand small {
  display: block;
  font-size: clamp(0.62rem, 2vw, 0.72rem);
  font-weight: 600;
  color: var(--agro-muted);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Marca horizontal (PNG completo: ícone + AgroPro Gestão + tagline) */
.nav-brand--logo-mark {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
}
.nav-brand--logo-mark .nav-brand-logo-img {
  display: block;
  width: auto;
  height: clamp(46px, 10vw, 78px);
  max-width: min(100%, 620px);
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  box-shadow: none;
  border: none;
  background: transparent;
}
@media (min-width: 992px) {
  .nav-brand--logo-mark .nav-brand-logo-img {
    height: clamp(54px, 6.8vw, 84px);
    max-width: min(62vw, 700px);
  }
}
@media (max-width: 575px) {
  .nav-brand--logo-mark .nav-brand-logo-img {
    height: clamp(40px, 11vw, 52px);
    max-width: calc(100vw - 72px);
  }
}

.nav-landing-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius);
  border: 1px solid var(--agro-border);
  background: var(--agro-bg);
  color: var(--agro-green);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.nav-landing-toggle:hover {
  background: var(--agro-tint);
  border-color: var(--agro-green);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
}
.nav-links a:not(.btn-pill-solid):not(.btn-pill-ghost) {
  color: var(--agro-muted);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:not(.btn-pill-solid):not(.btn-pill-ghost):hover { color: var(--agro-green); }

.btn-pill-ghost {
  border: 2px solid var(--agro-green);
  color: var(--agro-green);
  background: transparent;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}
.btn-pill-ghost:hover {
  background: var(--agro-green);
  color: var(--agro-white);
}
.btn-pill-solid {
  background: var(--agro-lime);
  color: var(--agro-green-dark);
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(140, 198, 63, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.btn-pill-solid:hover {
  color: var(--agro-green-dark);
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(140, 198, 63, 0.45);
}

/* Dropdown download */
.landing-dd-btn { box-shadow: none; font-family: inherit; cursor: pointer; }
.landing-dd-btn:focus-visible {
  outline: 2px solid var(--agro-lime);
  outline-offset: 2px;
}
.landing-dd-btn--nav {
  color: var(--agro-muted);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0;
  border: none;
  background: transparent;
}
.landing-dd-btn--nav:hover,
.landing-dd-btn--nav:focus,
.landing-dd-btn--nav.show {
  color: var(--agro-green);
}
.landing-dd-ico-nav {
  font-size: 0.75rem;
  opacity: 0.9;
  margin-right: 5px;
}
.landing-dd-btn--nav::after {
  margin-left: 0.35em;
  vertical-align: 0.12em;
  opacity: 0.75;
}
.landing-dd-cta-tall {
  font-size: 1rem !important;
  padding: 18px 32px !important;
}
.landing-dd-menu {
  margin-top: 10px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--agro-border);
  background: var(--agro-white);
  padding: 8px;
  min-width: 248px;
  box-shadow: var(--agro-shadow-hover);
}
.dropup .landing-dd-menu {
  margin-top: 0;
  margin-bottom: 10px;
}
.landing-dd-item {
  border-radius: var(--radius);
  color: var(--agro-text) !important;
  padding: 12px 14px;
  white-space: normal;
}
.landing-dd-item:hover,
.landing-dd-item:focus {
  background: var(--agro-tint) !important;
  color: var(--agro-green) !important;
}
.landing-dd-item-title {
  display: block;
  font-weight: 700;
}
.landing-dd-item-title .fab { color: var(--agro-lime); margin-right: 6px; }
.landing-dd-item-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--agro-muted);
  font-weight: 500;
  margin-top: 4px;
}
.footer-links .landing-dd-btn--footer {
  color: rgba(255,255,255,0.75);
  font-size: 0.8125rem;
  padding: 0;
  border: none;
  background: none;
}
.footer-links .landing-dd-btn--footer:hover,
.footer-links .landing-dd-btn--footer.show {
  color: var(--agro-lime);
}
.footer-links .landing-dd-btn--footer::after {
  margin-left: 0.25em;
  vertical-align: 0.1em;
  opacity: 0.75;
}

/* HERO */
.hero {
  min-height: auto;
  padding: clamp(118px, 16vw, 140px) clamp(16px, 4vw, 24px) 56px;
  position: relative;
  background:
    radial-gradient(120% 80% at 100% 0%, var(--agro-lime-soft) 0%, transparent 55%),
    linear-gradient(180deg, var(--agro-white) 0%, var(--agro-bg) 100%);
}
.hero::after { display: none; }
.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--agro-white);
  border: 1px solid var(--agro-border);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--agro-green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-eyebrow i { color: var(--agro-lime); }
.hero h1 {
  font-family: var(--font);
  font-size: clamp(1.65rem, 4.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--agro-green);
  text-transform: uppercase;
}
.hero h1 em {
  font-style: normal;
  color: var(--agro-lime);
}
.hero-lead {
  font-size: 1.05rem;
  color: var(--agro-muted);
  max-width: 34rem;
  margin-bottom: 28px;
  line-height: 1.65;
  font-weight: 500;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn-hero-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-lg);
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--agro-green-dark);
  background: var(--agro-lime);
  border: none;
  box-shadow: 0 10px 28px rgba(140, 198, 63, 0.4);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.btn-hero-main:hover {
  color: var(--agro-green-dark);
  filter: brightness(1.03);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(140, 198, 63, 0.5);
}
.btn-hero-sec {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--agro-green);
  background: var(--agro-white);
  border: 2px solid var(--agro-green);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}
.btn-hero-sec:hover {
  background: var(--agro-green);
  color: var(--agro-white);
}

.hero-meta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
}
.hero-meta dt {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--agro-muted);
  margin-bottom: 4px;
  font-weight: 700;
}
.hero-meta dd {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--agro-green);
}

/* Hero — captura real do dashboard */
.hero-preview { position: relative; }
.hero-preview-frame {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: linear-gradient(145deg, var(--agro-lime), var(--agro-green));
  box-shadow: var(--agro-shadow-hover);
  max-width: 100%;
}
.hero-preview-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 2px);
  background: var(--agro-white);
  vertical-align: middle;
}

/* Público-alvo — caixa verde */
.audience-section {
  padding: 0 24px 48px;
  max-width: 1180px;
  margin: 0 auto;
}
.audience-card {
  background: var(--agro-green);
  color: var(--agro-white);
  border-radius: var(--radius-xl);
  padding: 28px 28px 32px;
  box-shadow: var(--agro-shadow-hover);
}
.audience-card h2 {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
  opacity: 0.95;
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.audience-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
}
@media (max-width: 900px) {
  .audience-grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 576px) { .audience-grid { grid-template-columns: 1fr; } }
.audience-item {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}
.audience-item i {
  font-size: 2rem;
  color: var(--agro-lime);
  margin-bottom: 12px;
  display: block;
}
.audience-item h3 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.audience-item p {
  font-size: 0.85rem;
  margin-top: 8px;
  opacity: 0.88;
  line-height: 1.5;
  font-weight: 500;
}

/* Stats strip — verde escuro */
.strip {
  border-block: none;
  background: var(--agro-green);
  padding: 32px 24px;
}
.strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.strip-num {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 800;
  color: var(--agro-white);
  line-height: 1.1;
}
.strip-num span { color: var(--agro-lime); font-style: normal; font-weight: 800; }
.strip-label { font-size: 0.78rem; color: rgba(255,255,255,0.82); margin-top: 8px; font-weight: 600; }

/* App band */
.landing-app-band {
  border-top: 1px solid var(--agro-border);
  border-bottom: 1px solid var(--agro-border);
  background: linear-gradient(90deg, var(--agro-tint), var(--agro-white));
}
.landing-app-band-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.landing-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--agro-green);
  margin-bottom: 8px;
}
.landing-app-lead {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--agro-text);
  max-width: 560px;
  line-height: 1.45;
  margin: 0;
}
.landing-app-lead span { color: var(--agro-muted); font-weight: 600; font-size: 0.88rem; display: block; margin-top: 6px; }
.landing-app-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  align-items: center;
}
.landing-app-ver-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--agro-lime-soft);
  color: var(--agro-green);
  border: 1px solid rgba(140, 198, 63, 0.45);
}
.landing-app-ver-pill--soft {
  background: var(--agro-bg);
  color: var(--agro-muted);
  border-color: var(--agro-border);
}
.landing-app-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-lg);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--agro-green-dark);
  background: var(--agro-lime);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(140, 198, 63, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.landing-app-cta:hover {
  color: var(--agro-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(140, 198, 63, 0.45);
}
.footer-version-line {
  margin-top: 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}
.footer-version-line .fv-muted {
  font-weight: 500;
  color: rgba(255,255,255,0.4);
}

/* SECTIONS */
.section {
  padding: 80px 24px;
  position: relative;
}
.section-alt {
  background: var(--agro-white);
}
.section-light {
  background: linear-gradient(180deg, var(--agro-bg) 0%, var(--agro-tint) 100%);
  color: var(--agro-text);
}
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-head .tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--agro-lime);
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--font);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--agro-green);
  text-transform: uppercase;
}
.section-head p {
  font-size: 1rem;
  color: var(--agro-muted);
  line-height: 1.65;
  font-weight: 500;
}
.section-light .section-head .tag { color: var(--agro-green); }

/* Cinco pilares — folder */
.features-five {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 991px) {
  .features-five { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .features-five { grid-template-columns: 1fr; }
}
.feature-pillar {
  background: var(--agro-bg-card);
  border: 1px solid var(--agro-border);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 77, 38, 0.05);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feature-pillar:hover {
  transform: translateY(-4px);
  border-color: var(--agro-lime);
  box-shadow: var(--agro-shadow-hover);
}
.feature-pillar .fi {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--agro-green);
  background: var(--agro-lime-soft);
  border: 2px solid rgba(140, 198, 63, 0.35);
}
.feature-pillar h3 {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--agro-green);
  margin-bottom: 8px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.feature-pillar p {
  font-size: 0.8rem;
  color: var(--agro-muted);
  line-height: 1.55;
  font-weight: 500;
}

/* Bento — cards claros */
.bento {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.bento-card {
  border-radius: var(--radius-xl);
  padding: 24px 22px;
  border: 1px solid var(--agro-border);
  background: var(--agro-bg-card);
  box-shadow: 0 4px 24px rgba(0, 77, 38, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.section-light .bento-card {
  background: var(--agro-bg-card);
  border-color: var(--agro-border);
}
.bento-card:hover {
  transform: translateY(-3px);
  border-color: var(--agro-lime);
  box-shadow: var(--agro-shadow-hover);
}
.bento-span-4 { grid-column: span 4; }
.bento-span-6 { grid-column: span 6; }
.bento-span-8 { grid-column: span 8; }
.bento-span-12 { grid-column: span 12; }
@media (max-width: 991px) {
  .bento-span-4, .bento-span-6, .bento-span-8 { grid-column: span 12; }
}
.bento-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 12px;
  background: var(--agro-lime-soft);
  border: 1px solid rgba(140, 198, 63, 0.35);
}
.section-light .bento-icon {
  background: var(--agro-lime-soft);
  border-color: rgba(140, 198, 63, 0.35);
}
.bento-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--agro-green);
}
.bento-card p {
  font-size: 0.88rem;
  color: var(--agro-muted);
  line-height: 1.6;
  font-weight: 500;
}
.section-light .bento-card p { color: var(--agro-muted); }

/* Faixa valor */
.value-strip {
  background: var(--agro-green);
  color: var(--agro-white);
  padding: 28px 24px;
}
.value-strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.value-strip h2 {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
  max-width: 520px;
}
.value-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: flex-end;
}
.value-icons .vi {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.92;
}
.value-icons .vi i { color: var(--agro-lime); font-size: 1.1rem; }

/* Steps */
.steps-wrap {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .steps-wrap { grid-template-columns: 1fr; } }
.step-card {
  text-align: center;
  padding: 28px 18px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--agro-border);
  background: var(--agro-bg-card);
  box-shadow: 0 4px 20px rgba(0, 77, 38, 0.05);
}
.step-num {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--agro-green-dark);
  background: var(--agro-lime);
  box-shadow: 0 6px 18px rgba(140, 198, 63, 0.35);
}
.step-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; color: var(--agro-green); }
.step-card p { font-size: 0.86rem; color: var(--agro-muted); line-height: 1.6; font-weight: 500; }

/* Modules */
.modules { max-width: 1080px; margin: 0 auto; }
.module-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 64px;
}
.module-pair:nth-child(even) { direction: rtl; }
.module-pair:nth-child(even) > * { direction: ltr; }
@media (max-width: 768px) {
  .module-pair, .module-pair:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
}
.module-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--agro-lime);
  margin-bottom: 8px;
}
.module-pair h3 {
  font-family: var(--font);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--agro-green);
  margin-bottom: 10px;
  line-height: 1.2;
}
.module-pair p { color: var(--agro-muted); font-size: 0.94rem; margin-bottom: 14px; line-height: 1.65; font-weight: 500; }
.module-pair ul { list-style: none; padding: 0; }
.module-pair li {
  font-size: 0.84rem;
  color: var(--agro-text);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.module-pair li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--agro-lime);
  flex-shrink: 0;
}
.module-visual {
  border-radius: var(--radius-xl);
  padding: 24px;
  min-height: 240px;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, var(--agro-bg), var(--agro-tint));
  border: 1px solid var(--agro-border);
}

/* Plans */
.plans-wrap {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) { .plans-wrap { grid-template-columns: 1fr; max-width: 400px; } }
.plan-premium {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  background: var(--agro-bg-card);
  border: 1px solid var(--agro-border);
  box-shadow: 0 8px 32px rgba(0, 77, 38, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.plan-premium:hover { transform: translateY(-4px); box-shadow: var(--agro-shadow-hover); }
.plan-premium.featured {
  border: 2px solid var(--agro-lime);
  box-shadow: 0 16px 48px rgba(140, 198, 63, 0.2);
}
.plan-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--agro-green);
  color: var(--agro-lime);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(140, 198, 63, 0.5);
}
.plan-name { font-size: 1.15rem; font-weight: 800; color: var(--agro-green); margin-top: 8px; }
.plan-price {
  font-family: var(--font);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--agro-green);
  margin: 12px 0 4px;
  line-height: 1;
}
.plan-price small { font-size: 0.9rem; font-weight: 600; color: var(--agro-muted); }
.plan-desc { font-size: 0.8rem; color: var(--agro-muted); margin-bottom: 20px; min-height: 2.8em; font-weight: 500; }
.plan-list { list-style: none; padding: 0; text-align: left; margin-bottom: 22px; }
.plan-list li {
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--agro-tint);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--agro-text);
  font-weight: 500;
}
.plan-list li i { color: var(--agro-green); width: 16px; text-align: center; font-size: 0.72rem; }
.plan-list li.no { color: var(--agro-muted); }
.plan-list li.no i { color: #cbd5e1; }
.btn-plan {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-lg);
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-plan-fill {
  background: var(--agro-lime);
  color: var(--agro-green-dark);
  border: none;
  box-shadow: 0 8px 24px rgba(140, 198, 63, 0.35);
}
.btn-plan-fill:hover { color: var(--agro-green-dark); transform: translateY(-1px); }
.btn-plan-line {
  background: var(--agro-white);
  color: var(--agro-green);
  border: 2px solid var(--agro-green);
  font-weight: 800;
}
.btn-plan-line:hover { background: var(--agro-tint); color: var(--agro-green-dark); }

/* CTA final — foto campestre sutil */
.cta-final {
  padding: 88px 24px;
  text-align: center;
  position: relative;
  background:
    linear-gradient(135deg, rgba(0, 77, 38, 0.92) 0%, rgba(0, 48, 24, 0.94) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%231a4d2e'/%3E%3Cstop offset='1' stop-color='%23003318'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23g)' width='1200' height='400'/%3E%3Cpath fill='%238cc63f' fill-opacity='0.08' d='M0 280 Q300 200 600 260 T1200 240 V400 H0Z'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cta-final h2 {
  font-family: var(--font);
  font-size: clamp(1.45rem, 3.5vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--agro-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.cta-final p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 28px; font-size: 1rem; font-weight: 500; line-height: 1.6; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer-premium {
  padding: 44px 24px 28px;
  text-align: center;
  background: var(--agro-green-dark);
  border-top: 3px solid var(--agro-lime);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.footer-premium .brand-line {
  font-weight: 800;
  color: var(--agro-white);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  font-size: 1rem;
}
.footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin: 18px 0; }
.footer-links a, .footer-links button {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.footer-links a:hover, .footer-links button:hover { color: var(--agro-lime); }

.trust-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}
.trust-checks span { display: inline-flex; align-items: center; gap: 6px; }
.trust-checks i { color: var(--agro-lime); }

/* Modal */
#modalEntrar .modal-content {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--agro-border);
  box-shadow: var(--agro-shadow-hover);
}
#modalEntrar .btn-sistema-leite {
  background: linear-gradient(135deg, var(--agro-green), var(--agro-green-2));
  color: #fff;
  border: none;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  font-weight: 800;
  text-align: left;
  text-decoration: none;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}
#modalEntrar .btn-sistema-leite:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 12px 32px rgba(0, 77, 38, 0.35); }
#modalEntrar .sistema-em-breve {
  border: 2px dashed var(--agro-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  text-align: center;
  background: var(--agro-bg);
  color: var(--agro-muted);
}

@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-preview { max-width: 420px; margin: 0 auto; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .nav-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 12px;
  }
  .nav-brand { grid-column: 1; grid-row: 1; min-width: 0; }
  .nav-landing-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
  }
  .nav-links {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    gap: 4px;
    padding: 12px 0 6px;
    margin-top: 6px;
    border-top: 1px solid var(--agro-border);
  }
  .nav-inner.nav-landing-open .nav-links { display: flex; }
  .nav-links > a:not(.btn-pill-solid):not(.btn-pill-ghost) {
    padding: 12px 14px;
    border-radius: var(--radius);
    font-size: 0.88rem;
  }
  .nav-links > a:not(.btn-pill-solid):not(.btn-pill-ghost):hover {
    background: var(--agro-tint);
  }
  .nav-links .landing-dd { width: 100%; }
  .nav-links .landing-dd-btn--nav {
    width: 100%;
    text-align: left;
    padding: 12px 14px !important;
    border-radius: var(--radius);
    border: 1px solid var(--agro-border);
    background: var(--agro-bg);
    color: var(--agro-green) !important;
    font-size: 0.88rem !important;
  }
  .nav-links .landing-dd-btn--nav:hover { background: var(--agro-tint); }
  .nav-links .btn-pill-ghost,
  .nav-links .btn-pill-solid {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 4px;
  }
}
@media (max-width: 576px) {
  .strip-inner { grid-template-columns: 1fr; }
  .landing-app-band-inner { text-align: center; justify-content: center; }
  .landing-app-lead { text-align: center; }
  .landing-app-meta { justify-content: center; }
  .nav-links .dropdown-menu.landing-dd-menu {
    width: 100%;
    min-width: 0;
  }
  .value-strip-inner { flex-direction: column; text-align: center; }
  .value-icons { justify-content: center; }
}

/* FAQ — SEO e dúvidas na landing */
.landing-search-wrap {
  position: relative;
  max-width: 720px;
  margin: 0 auto 16px;
}
.landing-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #5a6b61;
  pointer-events: none;
}
.landing-search-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: 1px solid #d4e4dc;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  background: #fff;
}
.landing-search-input:focus {
  outline: 2px solid var(--agro-green);
  border-color: var(--agro-green);
}
.landing-search-hint {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: #5a6b61;
  text-align: center;
}
.landing-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto 24px;
  padding: 0;
}
.landing-kw {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--agro-green);
  background: #e8f5ee;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid #c8e6d4;
  transition: background 0.15s, color 0.15s;
}
.landing-kw:hover,
.landing-kw:focus {
  background: var(--agro-green);
  color: #fff;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--agro-bg-card);
  border: 1px solid var(--agro-border);
  border-radius: var(--radius-lg);
  padding: 0 20px;
  box-shadow: var(--agro-shadow);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--agro-green);
  padding: 18px 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  float: right;
  font-weight: 800;
  color: var(--agro-lime);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin: 0 0 18px;
  font-size: 0.95rem;
  color: var(--agro-muted);
  line-height: 1.65;
}
.faq-item a { color: var(--agro-green); font-weight: 600; }
