:root {
  --green: #184a13;
  --green-deep: #083b27;
  --green-dark: #062f20;
  --cultivo: #4a871f;
  --sprout: #8ac022;
  --orange: #bc4904;
  --orange-bright: #f36e16;
  --cream: #f7f6f0;
  --white: #fff;
  --graphite: #1d2b1e;
  --muted: #637065;
  --line: #dfe4dc;
  --radius: 18px;
  --shell: min(1320px, calc(100% - 48px));
  --shadow: 0 18px 48px rgba(8, 59, 39, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--graphite);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: #fff;
  color: #083b27;
  transform: translateY(-150%);
  border-radius: 8px;
}
.skip-link:focus {
  transform: none;
}
:focus-visible {
  outline: 3px solid #f8971a;
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(247, 246, 240, 0.94);
  border-bottom: 1px solid rgba(24, 74, 19, 0.09);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 104px;
  padding-block: 7px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: flex;
  flex: 0 0 90px;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
}
.brand img {
  display: block;
  width: 90px;
  height: 90px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-size: 0.88rem;
  font-weight: 650;
}
.main-nav a {
  position: relative;
}
.main-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--orange-bright);
  transition: right 0.2s;
}
.main-nav a:hover:after,
.main-nav a:focus-visible:after {
  right: 0;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  width: 46px;
  height: 46px;
  padding: 10px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px;
  background: var(--green-deep);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  transition:
    transform 0.2s,
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--green-deep);
  color: #fff;
}
.button-primary:hover {
  background: var(--green);
}
.button-accent {
  background: var(--orange);
  color: #fff;
}
.button-accent:hover {
  background: #963a03;
}
.button-secondary {
  border-color: var(--green);
  color: var(--green);
  background: transparent;
}
.button-secondary:hover {
  background: var(--green);
  color: #fff;
}
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 750;
  color: var(--green);
}
.light-link {
  color: #fff;
}
.button-row {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: url("/assets/hero-conceitual.webp") center/cover no-repeat;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 35, 23, 0.95) 0%,
    rgba(2, 35, 23, 0.76) 37%,
    rgba(2, 35, 23, 0.08) 70%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 100px 88px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow:after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  margin-left: 12px;
  vertical-align: middle;
  background: var(--orange-bright);
}
.eyebrow.light {
  color: #d9edce;
}
.hero h1 {
  max-width: 790px;
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8.5vw, 8.2rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.065em;
}
.hero-copy {
  max-width: 600px;
  margin: 0 0 34px;
  color: #eef5eb;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.55;
}
.image-note {
  position: absolute;
  left: 24px;
  bottom: -64px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-stamp {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1320px) / 2));
  bottom: 36px;
  width: 180px;
  height: 180px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  text-align: center;
  background: rgba(8, 59, 39, 0.45);
  backdrop-filter: blur(10px);
}
.hero-stamp strong {
  font-family: Georgia, serif;
  font-size: 4.4rem;
  line-height: 0.8;
  font-weight: 400;
}
.hero-stamp span {
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.hero-stamp small {
  color: #d7e8d2;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
.value-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.value-grid p {
  margin: 0;
  padding: 26px 26px;
  border-left: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 750;
}
.value-grid p:last-child {
  border-right: 1px solid var(--line);
}
.value-grid span {
  color: var(--orange);
  margin-right: 18px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.section {
  padding: clamp(84px, 9vw, 128px) 0;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: start;
}
.section h2,
.quality-band h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.prose {
  color: #465248;
  font-size: 1.03rem;
}
.prose p {
  margin: 0 0 20px;
}
.large-copy {
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
}
.history {
  background: var(--white);
}
.history h2 {
  max-width: 680px;
}
.editorial-grid,
.structure-grid {
  display: grid;
  grid-template-columns: 70px 1.1fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.section-number {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding-top: 5px;
}
.about {
  background: var(--cream);
}
.mudas {
  background: #eef2e9;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: end;
  margin-bottom: 52px;
}
.section-heading > p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 20px;
}
.feature-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid #d9e0d5;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}
.feature-card.featured {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}
.card-index {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  color: var(--orange);
}
.featured .card-index {
  color: #f9a35c;
}
.feature-card h3 {
  margin: auto 0 12px;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}
.feature-card p {
  margin: 0 0 24px;
}
.featured .text-link {
  color: #fff;
}
.process {
  background: var(--green-dark);
  color: #fff;
}
.section-heading.inverted > p {
  color: #c9dacd;
}
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.process-list li {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.process-list span {
  color: #f9a35c;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}
.process-list strong {
  font-family: Georgia, serif;
  font-size: 1.65rem;
  font-weight: 400;
}
.process-list small {
  color: #cbdccf;
  font-size: 0.9rem;
}
.structure {
  background: var(--white);
}
.quality-band {
  padding: clamp(78px, 8vw, 112px) 0;
  color: #fff;
  background: linear-gradient(120deg, #184a13, #073b28);
}
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.quality-band blockquote {
  margin: 0;
  padding-left: 24px;
  border-left: 3px solid var(--orange-bright);
  font-family: Georgia, serif;
  font-size: clamp(1.55rem, 2.3vw, 2.3rem);
  line-height: 1.22;
}
.quality-band .quality-grid > p {
  margin: 0;
  color: #d3e2d4;
}
.relationship {
  background: var(--cream);
}
.relationship-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}
.relationship-cards {
  border-top: 1px solid #cdd5ca;
}
.relationship-cards article {
  display: grid;
  grid-template-columns: 60px 180px 1fr;
  gap: 22px;
  align-items: start;
  padding: 25px 0;
  border-bottom: 1px solid #cdd5ca;
}
.relationship-cards span {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
}
.relationship-cards h3,
.relationship-cards p {
  margin: 0;
}
.relationship-cards h3 {
  font-size: 1rem;
}
.relationship-cards p {
  color: var(--muted);
  font-size: 0.92rem;
}
.social {
  background: #f1eadc;
}
.social-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
}
.social-handle {
  margin: 24px 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green);
}
.qr-card {
  justify-self: end;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(24, 74, 19, 0.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.qr-card img {
  width: 240px;
  height: 240px;
}
.qr-card span {
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact {
  padding: clamp(72px, 8vw, 110px) 0;
  background: var(--orange);
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
}
.contact-action {
  display: flex;
  justify-content: flex-end;
}
.contact-phone {
  min-width: min(100%, 520px);
  display: flex;
  flex-direction: column;
  padding: 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  transition:
    background 0.2s,
    transform 0.2s;
}
.contact-phone:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}
.contact-phone small {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.contact-phone strong {
  margin: 6px 0;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
}
.contact-phone span {
  font-size: 0.86rem;
  font-weight: 750;
}
.site-footer {
  padding: 70px 0 24px;
  background: #061f16;
  color: #dbe6dd;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 60px;
  padding-bottom: 58px;
}
.footer-brand img {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: contain;
}
.footer-brand p {
  color: #9eb2a5;
}
.footer-top h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-top > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-top a {
  margin: 0 0 10px;
  color: #b9c9be;
}
.footer-top a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #91a69a;
  font-size: 0.78rem;
}
.footer-bottom p {
  margin: 0;
}
.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #167c3a;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s;
}
.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
}
@media (max-width: 1050px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 104px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .main-nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .header-cta {
    display: none;
  }
  .hero {
    min-height: 660px;
  }
  .hero-stamp {
    width: 150px;
    height: 150px;
  }
  .editorial-grid,
  .structure-grid {
    grid-template-columns: 44px 1fr;
  }
  .editorial-grid .prose,
  .structure-grid .prose {
    grid-column: 2;
  }
  .quality-grid {
    grid-template-columns: 1fr 1fr;
  }
  .quality-grid > p {
    grid-column: 2;
  }
  .relationship-grid {
    grid-template-columns: 1fr;
  }
  .social-grid {
    grid-template-columns: 1fr 310px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  :root {
    --shell: min(100% - 36px, 1320px);
  }
  html {
    scroll-padding-top: 88px;
  }
  .header-inner {
    min-height: 88px;
    padding-block: 5px;
  }
  .brand {
    flex-basis: 76px;
    width: 76px;
    height: 76px;
  }
  .brand img {
    width: 76px;
    height: 76px;
  }
  .main-nav {
    top: 88px;
  }
  .hero {
    min-height: 680px;
    align-items: flex-end;
  }
  .hero-media {
    background-position: 63% center;
  }
  .hero-scrim {
    background: linear-gradient(
      0deg,
      rgba(2, 35, 23, 0.96) 0%,
      rgba(2, 35, 23, 0.66) 62%,
      rgba(2, 35, 23, 0.18) 100%
    );
  }
  .hero-content {
    padding-block: 190px 64px;
  }
  .hero h1 {
    font-size: clamp(4rem, 20vw, 6rem);
  }
  .hero-copy {
    font-size: 1.02rem;
  }
  .hero-stamp {
    top: 28px;
    right: 18px;
    bottom: auto;
    width: 118px;
    height: 118px;
  }
  .hero-stamp strong {
    font-size: 3.2rem;
  }
  .hero-stamp span,
  .hero-stamp small {
    font-size: 0.57rem;
  }
  .image-note {
    left: 0;
    bottom: 20px;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .value-grid p {
    padding: 18px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .value-grid p:last-child {
    border-right: 0;
  }
  .section {
    padding: 76px 0;
  }
  .split-grid,
  .editorial-grid,
  .structure-grid,
  .quality-grid,
  .social-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .editorial-grid .prose,
  .structure-grid .prose,
  .quality-grid > p {
    grid-column: auto;
  }
  .section-number {
    display: none;
  }
  .section-heading {
    display: block;
    margin-bottom: 34px;
  }
  .section-heading > p {
    margin-top: 20px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: 260px;
  }
  .process-list li {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }
  .process-list small {
    grid-column: 2;
  }
  .relationship-cards article {
    grid-template-columns: 42px 1fr;
  }
  .relationship-cards p {
    grid-column: 2;
  }
  .qr-card {
    justify-self: start;
    width: 100%;
    max-width: 340px;
  }
  .contact-action {
    justify-content: flex-start;
  }
  .contact-phone {
    padding: 24px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom p + p {
    margin-top: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
