:root {
  --green: #132b1b;
  --green2: #1b3d27;
  --gold: #c9a24a;
  --gold2: #e1c779;
  --cream: #f7f2e8;
  --sand: #ede3cf;
  --ink: #182019;
  --muted: black;
  --white: #fff;
  --line: rgba(19, 43, 27, .14);
  --shadow: 0 24px 60px rgba(19, 43, 27, .14)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65
}

a {
  color: inherit;
  text-decoration: none
}

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

.container {
  width: min(1180px, 92%);
  margin: auto
}

.topbar {
  background: var(--green);
  color: #f7ecd2;
  font-size: .86rem
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  flex-wrap: wrap
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 242, 232, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: Playfair Display, serif;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .02em
}

.brand-mark {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.35rem;
  color: var(--gold);
  background: #fff8e8
}

.brand small {
  display: block;
  font-family: Montserrat, Arial, sans-serif;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500
}

.menu {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: .94rem
}

.menu a {
  color: var(--green);
  font-weight: 600
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: #1b1607;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: 0 10px 25px rgba(201, 162, 74, .24);
  margin-top: 5px;
}

.btn.alt {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
  box-shadow: none
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green) 0%, #0c1f13 58%, #2a2414 100%);
  color: white
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 22%, rgba(201, 162, 74, .35), transparent 30%), linear-gradient(90deg, rgba(19, 43, 27, .25), rgba(19, 43, 27, .88))
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .8fr;
  gap: 58px;
  align-items: center;
  min-height: 650px;
  padding: 70px 0
}

.eyebrow {
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .82rem;
  font-weight: 700
}

.hero h1,
.page-hero h1 {
  font-family: Playfair Display, serif;
  font-size: 65px;
  line-height: .98;
  margin: 20px 0 40px
}

.hero p {
  font-size: 1.05rem;
  color: #f1eadc;
  max-width: 660px;
}

.hero-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 18px;
  border-radius: 28px;
  box-shadow: var(--shadow)
}

.hero-card img {
  border-radius: 22px;
  aspect-ratio: 4/5;
  object-fit: cover
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px
}

.stat {
  border-left: 1px solid rgba(225, 199, 121, .45);
  padding-left: 16px
}

.stat strong {
  font-family: Playfair Display, serif;
  color: var(--gold2);
  font-size: 2rem;
  display: block
}

.section {
  padding: 90px 0
}

.section-title {
  max-width: 780px;
  margin-bottom: 38px
}

.section-title h2 {
  font-family: Playfair Display, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.06;
  color: var(--green);
  margin: 25px 0 25px;
}

.section-title p {
  color: var(--muted);
  font-size: 1.05rem;

}

.grid {
  display: grid;
  gap: 24px
}

.cards {
  grid-template-columns: repeat(4, 1fr)
}

.card {
  background: white;
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 26px;
  box-shadow: 0 12px 30px rgba(19, 43, 27, .07);
  transition: .25s
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--green);
  color: var(--gold2);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 16px
}

.card h3 {
  font-family: Playfair Display, serif;
  color: var(--green);
  font-size: 1.45rem;
  line-height: 1.15;
  margin: 0 0 10px
}

.card p {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 14px;

}

.link {
  font-weight: 800;
  color: var(--green);
  border-bottom: 1px solid var(--gold)
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center
}

.panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 36px;
  box-shadow: var(--shadow)
}

.panel h2 {
  font-family: Playfair Display, serif;
  color: var(--green);
  font-size: 2.55rem;
  line-height: 1.08;
  margin: 0 0 18px
}

.list {
  display: grid;
  gap: 12px;
  margin-top: 18px
}

.list span {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink)
}

.list span:before {
  content: "✓";
  color: var(--gold);
  font-weight: 900
}

.dark {
  background: var(--green);
  color: white
}

.dark .section-title h2,
.dark h3 {
  color: #fff
}

.dark .section-title p,
.dark p {
  color: #e5dcc9
}

.values {
  grid-template-columns: repeat(3, 1fr)
}

.value {
  padding: 30px;
  border: 1px solid rgba(225, 199, 121, .25);
  border-radius: 24px;
  background: rgba(255, 255, 255, .05)
}

.blog {
  grid-template-columns: repeat(2, 1fr)
}

.article {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line)
}

.article .body {
  padding: 28px
}

.article h3 {
  font-family: Playfair Display, serif;
  font-size: 1.75rem;
  color: var(--green);
  line-height: 1.1;
  margin: 0 0 12px
}

.cta {
  background: linear-gradient(135deg, var(--sand), #fff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px
}

.contact-box {
  background: var(--green);
  color: white;
  border-radius: 30px;
  padding: 36px
}

.contact-box h2 {
  font-family: Playfair Display, serif;
  font-size: 2.4rem;
  line-height: 1.05;
  margin: 0 0 16px
}

.footer {
  background: #07110b;
  color: #d8d0c0;
  padding: 50px 0 22px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px
}

.footer h4 {
  color: var(--gold2);
  margin: 0 0 14px
}

.footer a {
  display: block;
  margin: 8px 0;
  color: #d8d0c0
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 34px;
  padding-top: 18px;
  font-size: .85rem;
  color: #a9ad9d
}

.page-hero {
  background: var(--green);
  color: white;
  padding: 82px 0;
}

.page {
  background: white;
}

.content {
  width: min(900px, 92%);
  margin: auto;
  padding: 70px 0
}

.content h2 {
  font-family: Playfair Display, serif;
  color: var(--green);
  font-size: 2.1rem
}

.content li {
  margin: 8px 0
}

.mobile-toggle {
  display: none
}

.logo {
  height: 90px;
  width: auto;
}

.escritorio-img {
  width: 100%;
  height: 450px;
  /* altere para o tamanho desejado */
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.footer-logo {
  height: 200px;
  width: auto;
  display: block;
  object-fit: contain;
}

.btn-atendimento {
  background: var(--gold);
  color: var(--green);
  padding: 16px 36px;
  font-size: 17px;
  font-weight: 700;
  border: 2px solid var(--gold);
  border-radius: 50px;
  transition: all .3s ease;
  margin-top: 30px;
}

.btn-atendimento:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.agro-page {
  padding: 72px 0;
  background: #f8f7f2;
}

.agro-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.agro-intro {
  max-width: 920px;
  margin: 0 auto 48px;
  text-align: center;
}

.agro-intro h2,
.agro-section h2 {
  color: #132b1b;
}

.agro-intro p,
.agro-section p,
.agro-section li {
  line-height: 1.75;
}

.agro-highlight {
  margin: 36px 0;
  padding: 28px;
  border-left: 4px solid #c9a24a;
  background: #fff;
  box-shadow: 0 10px 30px rgba(19, 43, 27, 0.08);
}

.agro-highlight strong {
  color: #132b1b;
}

.agro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.agro-card {
  padding: 30px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(19, 43, 27, 0.08);
}

.agro-card h3 {
  margin-top: 0;
  color: #132b1b;
}

.agro-card h4 {
  margin-bottom: 8px;
  color: #8b6b20;
}

.agro-card ul,
.agro-checks {
  padding-left: 20px;
}

.agro-section {
  margin-top: 68px;
}

.agro-section-title {
  max-width: 820px;
  margin-bottom: 28px;
}

.agro-checks {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}

.agro-checks li {
  position: relative;
  padding-left: 30px;
}

.agro-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #8b6b20;
  font-weight: 800;
}

.agro-quote {
  margin: 64px auto 0;
  max-width: 900px;
  padding: 36px;
  text-align: center;
  background: #132b1b;
  color: #fff;
  border-radius: 16px;
}

.agro-quote p {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.45;
}

.agro-final {
  margin-top: 64px;
  padding: 44px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(201, 162, 74, 0.35);
  border-radius: 16px;
}

.agro-final h2 {
  margin-top: 0;
}

.agro-cta {
  margin-top: 28px;
}

.mobile-toggle{

    color:var(--green);
    border:1px solid var(--green);
    background:white;

}

@media (max-width: 800px) {

  .agro-grid,
  .agro-checks {
    grid-template-columns: 1fr;
  }

  .agro-page {
    padding: 48px 0;
  }

  .agro-card,
  .agro-final,
  .agro-quote {
    padding: 24px;
  }
}

@media(max-width:900px) {
  .menu {
    display: none
  }

  .mobile-toggle {
    display: block
  }

  .hero .container,
  .split,
  .contact,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .hero .container {
    min-height: auto
  }

  .cards,
  .values,
  .blog {
    grid-template-columns: 1fr
  }

  .stats {
    grid-template-columns: 1fr
  }

  .hero-card {
    order: -1
  }

  .section {
    padding: 60px 0
  }

  .nav {
    align-items: flex-start
  }

  .brand {
    font-size: .95rem
  }
}
/* =========================================================
   AJUSTES MOBILE — navegação, títulos, espaçamentos e cards
   ========================================================= */

@media (max-width: 900px) {
  .header { background: rgba(247, 242, 232, .98); }

  .nav {
    position: relative;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
  }

  .brand {
    min-width: 0;
    font-size: .92rem;
    line-height: 1.15;
  }

  .brand small {
    font-size: .55rem;
    letter-spacing: .10em;
    line-height: 1.35;
  }

  .logo { height: 60px; }

  /* Corrige a palavra Menu, que herdava branco de .btn.alt */
  .mobile-toggle,
  .mobile-toggle.btn,
  .mobile-toggle.btn.alt {
    display: inline-flex;
    flex: 0 0 auto;
    padding: 9px 15px;
    margin: 0;
    border: 1px solid var(--green);
    border-radius: 999px;
    background: transparent;
    color: var(--green) !important;
    box-shadow: none;
    font-size: .88rem;
    font-family: Montserrat, Arial, sans-serif;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-toggle:hover,
  .mobile-toggle:focus,
  .mobile-toggle:active {
    background: var(--green);
    color: #fff !important;
    border-color: var(--green);
  }

  .menu.active,
  .menu.open,
  .menu.show,
  .menu.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    transform: translateX(-50%);
    width: min(100vw, 520px);
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    padding: 18px 5%;
    gap: 4px;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(19, 43, 27, .16);
    z-index: 100;
  }

  .menu.active a,
  .menu.open a,
  .menu.show a,
  .menu.is-open a {
    display: block;
    width: 100%;
    padding: 13px 8px;
    margin: 0;
    color: var(--green) !important;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    border-bottom: 1px solid rgba(19, 43, 27, .09);
  }

  .menu.active .btn,
  .menu.open .btn,
  .menu.show .btn,
  .menu.is-open .btn {
    justify-content: center;
    margin-top: 10px;
    padding: 12px 18px;
    background: var(--gold);
    color: #1b1607 !important;
    border: 1px solid var(--gold);
    text-align: center;
  }

  .hero .container {
    gap: 30px;
    padding: 42px 0 50px;
  }

  .page-hero { padding: 50px 0 46px; }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.08;
    margin: 14px 0 20px;
    overflow-wrap: anywhere;
  }

  .hero p,
  .page-hero p {
    max-width: 100%;
    font-size: .98rem;
    line-height: 1.7;
    text-align: left;
  }

  .eyebrow {
    font-size: .70rem;
    letter-spacing: .14em;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .btn,
  .btn-atendimento {
    width: 100%;
    padding: 13px 20px;
    font-size: .95rem;
  }

  .hero-card {
    padding: 10px;
    border-radius: 20px;
  }

  .hero-card img { border-radius: 15px; }

  .section { padding: 52px 0; }
  .section-title { margin-bottom: 28px; }

  .section-title h2,
  .panel h2,
  .contact-box h2,
  .content h2,
  .agro-intro h2,
  .agro-section h2,
  .agro-final h2 {
    font-size: clamp(1.65rem, 7.4vw, 2.15rem);
    line-height: 1.14;
    margin-top: 14px;
    margin-bottom: 16px;
    overflow-wrap: anywhere;
  }

  .section-title p,
  .content p,
  .agro-intro p,
  .agro-section p,
  .agro-section li,
  .agro-final p {
    font-size: .96rem;
    line-height: 1.72;
    text-align: left;
  }

  .card,
  .panel,
  .article .body,
  .contact-box {
    padding: 22px;
    border-radius: 20px;
  }

  .card h3,
  .article h3,
  .agro-card h3 {
    font-size: 1.35rem;
    line-height: 1.2;
  }

  .card p {
    font-size: .93rem;
    line-height: 1.65;
  }

  .split { gap: 28px; }
  .stats { gap: 18px; }
  .stat strong { font-size: 1.65rem; }

  .agro-page { padding: 42px 0 52px; }
  .agro-content { padding: 0 5%; }

  .agro-intro {
    margin-bottom: 36px;
    text-align: left;
  }

  .agro-highlight {
    margin: 26px 0;
    padding: 20px;
    border-left-width: 3px;
  }

  .agro-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }

  .agro-card {
    padding: 22px;
    border-radius: 12px;
  }

  .agro-card ul { padding-left: 20px; }
  .agro-section { margin-top: 48px; }
  .agro-section-title { margin-bottom: 22px; }

  .agro-checks {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .agro-checks li { padding-left: 27px; }

  .agro-quote {
    margin-top: 46px;
    padding: 25px 21px;
    border-radius: 13px;
  }

  .agro-quote p {
    font-size: 1.28rem;
    line-height: 1.48;
    text-align: center;
  }

  .agro-final {
    margin-top: 46px;
    padding: 25px 21px;
    border-radius: 13px;
  }

  .content {
    width: 90%;
    padding: 48px 0;
  }

  .content ul { padding-left: 20px; }
  .footer { padding: 42px 0 20px; }
  .footer-grid { gap: 22px; }
  .footer-logo { height: 125px; }

  .footer a,
  .footer p { font-size: .92rem; }

  .copy {
    margin-top: 26px;
    font-size: .78rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .container { width: 90%; }
  .brand { font-size: .82rem; }
  .brand small { font-size: .49rem; }

  .mobile-toggle,
  .mobile-toggle.btn,
  .mobile-toggle.btn.alt {
    padding: 8px 12px;
    font-size: .82rem;
  }

  .hero h1,
  .page-hero h1 { font-size: 1.92rem; }

  .section-title h2,
  .panel h2,
  .contact-box h2,
  .content h2,
  .agro-intro h2,
  .agro-section h2,
  .agro-final h2 { font-size: 1.65rem; }

  .agro-card h3,
  .card h3,
  .article h3 { font-size: 1.22rem; }

  .agro-card,
  .agro-highlight,
  .agro-final,
  .agro-quote,
  .card,
  .panel,
  .contact-box { padding: 19px; }
}