:root {
  --green-900: #163d2b;
  --green-700: #26724f;
  --green-500: #4c9a2a;
  --green-100: #eef5ea;
  --berry: #7c2f58;
  --sky: #d9eefb;
  --ink: #1d2923;
  --muted: #58635d;
  --line: #d4e3cd;
  --paper: #fbfcf8;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(22, 61, 43, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(124, 47, 88, 0.5);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--white);
  color: var(--green-900);
  padding: 10px 14px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(212, 227, 205, 0.7);
  background: rgba(251, 252, 248, 0.9);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 16px 38px rgba(22, 61, 43, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100% - 36px));
  min-height: 78px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 46px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--green-900);
  font-size: 1.02rem;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--green-900);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button-primary {
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(22, 61, 43, 0.18);
}

.button-secondary {
  border-color: rgba(22, 61, 43, 0.18);
  background: var(--white);
  color: var(--green-900);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-900);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: stretch;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 70px 0 62px;
}

.hero-copy {
  min-width: 0;
  max-width: 960px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 980px;
  margin: 0;
  color: var(--green-900);
  font-size: clamp(2.45rem, 5.2vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--green-900);
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.13rem;
}

.hero-actions,
.inline-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(220px, 0.62fr) minmax(320px, 1fr);
  gap: 26px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(217, 238, 251, 0.58), rgba(238, 245, 234, 0.86)),
    var(--white);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 18px -16px -16px 18px;
  z-index: -1;
  border-radius: var(--radius);
  background: rgba(22, 61, 43, 0.08);
}

.hero-panel img {
  width: 74px;
  height: 112px;
  object-fit: contain;
}

.hero-panel p {
  margin: 0;
  color: var(--green-900);
  font-size: 1.18rem;
  font-weight: 850;
  line-height: 1.25;
}

.hero-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  position: relative;
  color: var(--muted);
  padding: 0 0 0 22px;
}

.hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--green-500);
}

.section,
.band,
.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-intro {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(280px, 1fr);
  gap: 52px;
  align-items: start;
}

.intro-grid p,
.section-heading p,
.profile-copy p,
.content-copy p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.7fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.solution-card {
  min-height: 256px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 12px 32px rgba(22, 61, 43, 0.06);
}

.card-number {
  display: block;
  margin-bottom: 34px;
  color: var(--berry);
  font-weight: 900;
}

.solution-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.band {
  border-radius: var(--radius);
  background: var(--green-900);
  color: var(--white);
  padding: 58px;
}

.band .section-kicker {
  color: #bfe7ad;
}

.band h2,
.band .section-heading p,
.band p {
  color: var(--white);
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.specialty-column {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 26px;
}

.specialty-column h3 {
  color: var(--white);
  font-size: 1.24rem;
}

.specialty-column ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.specialty-column li {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  padding-left: 18px;
}

.specialty-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #bfe7ad;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(300px, 1fr);
  gap: 58px;
  align-items: center;
}

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

.profile-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  object-fit: cover;
}

.profile-panel div {
  padding: 18px 6px 4px;
}

.profile-panel strong,
.profile-panel span {
  display: block;
}

.profile-panel strong {
  color: var(--green-900);
  font-size: 1.2rem;
}

.profile-panel span {
  color: var(--muted);
}

.profile-copy p + p {
  margin-top: 18px;
}

.process {
  padding-top: 0;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 214px;
  border-top: 4px solid var(--green-500);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--white);
  padding: 56px 20px 20px;
  box-shadow: 0 12px 32px rgba(22, 61, 43, 0.06);
}

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  counter-increment: process;
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--berry);
  font-weight: 900;
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list strong {
  color: var(--green-900);
  font-size: 1.08rem;
}

.process-list span {
  margin-top: 10px;
  color: var(--muted);
}

.content-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(300px, 0.82fr);
  gap: 38px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(124, 47, 88, 0.24), rgba(22, 61, 43, 0) 44%),
    var(--green-900);
}

.content-list {
  display: grid;
  gap: 12px;
}

.content-list article {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  padding: 18px;
}

.content-list span,
.content-list strong {
  display: block;
}

.content-list span {
  color: #bfe7ad;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.content-list strong {
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.3;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(300px, 1fr);
  gap: 48px;
  align-items: start;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid div {
  border-left: 3px solid var(--green-500);
  padding: 2px 0 4px 16px;
}

.proof-grid strong {
  color: var(--green-900);
  font-size: 1.05rem;
}

.proof-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.58fr);
  gap: 24px;
  align-items: stretch;
  padding: 0 0 84px;
}

.contact-card,
.contact-info {
  border-radius: var(--radius);
}

.contact-card {
  background: var(--green-100);
  padding: 44px;
}

.contact-card h2 {
  margin-bottom: 16px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 34px;
  font-style: normal;
}

.contact-info span:first-child {
  color: var(--green-900);
  font-size: 1.2rem;
  font-weight: 900;
}

.contact-info a,
.contact-info span {
  color: var(--muted);
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--green-900);
}

.contact-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 42px;
}

.contact-link svg {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-900);
  padding: 8px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.contact-link span {
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 28px 0 34px;
  color: var(--muted);
}

.site-footer div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-900);
  font-weight: 900;
}

.site-footer img {
  width: 25px;
  height: 34px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  background: #1f8f54;
  color: var(--white);
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(22, 61, 43, 0.25);
}

@media (max-width: 980px) {
  .nav-shell {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 70px 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    border-radius: 6px;
    padding: 13px 12px;
  }

  .nav-cta {
    display: none;
  }

  .hero-panel,
  .intro-grid,
  .section-heading,
  .split-section,
  .content-band,
  .proof-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .hero-panel ul {
    grid-column: 1 / -1;
  }

  .solution-grid,
  .specialties-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .hero,
  .section,
  .band,
  .contact-section,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3.35rem);
  }

  .solution-grid,
  .specialties-grid,
  .specialty-column ul,
  .hero-panel,
  .hero-panel ul,
  .process-list,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .band,
  .contact-card {
    padding: 28px;
  }

  .solution-card,
  .process-list li {
    min-height: auto;
  }

  .hero-actions .button,
  .inline-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}
