:root {
  --color-primary: #136736;
  --color-primary-2: #31ac66;
  --color-primary-dark: #0c4a27;
  --color-soft: #e5f4ec;
  --color-soft-2: #f6fbf8;
  --color-text: #183126;
  --color-text-muted: #5f786b;
  --color-border: rgba(19, 103, 54, 0.12);
  --color-white: #ffffff;
  --color-shadow: 0 18px 50px rgba(19, 103, 54, 0.14);
  --gradient-main: linear-gradient(135deg, #0f6334 0%, #31ac66 100%);
  --gradient-soft: linear-gradient(180deg, #f7fbf8 0%, #eef8f2 100%);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 92px;
  --transition: 240ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
}

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

iframe {
  border: 0;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section--soft {
  background: var(--gradient-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-tag,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(49, 172, 102, 0.12);
  color: var(--color-primary-dark);
  font-weight: 700;
  letter-spacing: 0.01em;
}

h1,
h2,
h3,
strong {
  font-family: "Montserrat", Arial, sans-serif;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

p {
  color: var(--color-text-muted);
}

.topbar {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.topbar__content,
.topbar__group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar__content {
  padding: 0.75rem 0;
}

.topbar__group a {
  opacity: 0.95;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(19, 103, 54, 0.08);
}

.header__content {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand__logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(19, 103, 54, 0.14);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__text strong {
  font-size: 1.1rem;
}

.brand__text span {
  font-size: 0.84rem;
  color: var(--color-text-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  font-weight: 600;
  color: var(--color-text);
  position: relative;
}

.nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}

.nav a:not(.button):hover::after,
.nav a:not(.button):focus-visible::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-primary-dark);
  border-radius: 999px;
  transition: var(--transition);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

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

.button--primary {
  color: var(--color-white);
  background: var(--gradient-main);
  box-shadow: var(--color-shadow);
}

.button--secondary {
  color: var(--color-primary-dark);
  border: 1px solid rgba(19, 103, 54, 0.2);
  background: rgba(49, 172, 102, 0.08);
}

.button--ghost {
  color: var(--color-primary-dark);
  background: var(--color-white);
  box-shadow: 0 10px 28px rgba(19, 103, 54, 0.08);
}

.hero {
  padding-top: 3.8rem;
  background:
    radial-gradient(circle at top left, rgba(49, 172, 102, 0.18), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 2.2rem;
  align-items: center;
}

.hero__content p {
  font-size: 1.05rem;
  max-width: 62ch;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.6rem 0 2rem;
}

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

.stat-card,
.feature-card,
.service-card,
.content-card,
.testimonial-card,
.specialties__panel {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--color-shadow);
}

.stat-card {
  padding: 1.15rem;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.stat-card span {
  color: var(--color-text-muted);
  font-size: 0.94rem;
}

.hero__visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  border-radius: 32px;
  background:
    linear-gradient(150deg, rgba(19, 103, 54, 0.12), rgba(49, 172, 102, 0.22)),
    linear-gradient(135deg, #edf8f1 0%, #dff2e6 100%);
  overflow: hidden;
}

.hero__visual::before,
.hero__visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.hero__visual::before {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -120px;
}

.hero__visual::after {
  width: 280px;
  height: 280px;
  left: -70px;
  bottom: -70px;
}

.hero-card {
  position: relative;
  z-index: 2;
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 50px rgba(19, 103, 54, 0.18);
}

.hero-card--main {
  width: min(90%, 420px);
}

.hero-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: var(--color-white);
  background: var(--gradient-main);
}

.hero-card--floating {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: min(78%, 290px);
  padding: 1.25rem;
}

.hero-card--floating span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--color-primary);
  font-weight: 700;
}

.brands-strip {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
}

.brands-strip__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.1rem 0;
}

.brands-strip__content span {
  text-align: center;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.about__grid,
.cards-grid,
.content-grid,
.testimonials__grid,
.contact__grid {
  display: grid;
  gap: 1.4rem;
}

.about__grid,
.cards-grid--services,
.content-grid,
.testimonials__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.service-card,
.content-card,
.testimonial-card {
  padding: 1.6rem;
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 800;
  background: rgba(49, 172, 102, 0.14);
  color: var(--color-primary-dark);
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--gradient-main);
}

.specialties__layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: stretch;
}

.specialties__content {
  border-radius: var(--radius-lg);
  padding: 2rem;
  background:
    linear-gradient(120deg, rgba(19, 103, 54, 0.04), rgba(49, 172, 102, 0.12)),
    var(--color-white);
  border: 1px solid var(--color-border);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: var(--color-white);
  background: var(--color-primary);
}

.specialties__panel {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-card__label {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-primary);
}

.content-card a {
  font-weight: 700;
  color: var(--color-primary-dark);
}

.testimonials {
  background:
    radial-gradient(circle at top right, rgba(49, 172, 102, 0.18), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
}

.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  right: 1rem;
  top: 0.4rem;
  font-size: 4rem;
  line-height: 1;
  color: rgba(49, 172, 102, 0.16);
  font-family: Georgia, serif;
}

.testimonial-card p {
  font-size: 1.03rem;
  margin-bottom: 1rem;
}

.contact {
  padding-bottom: 6rem;
}

.contact__grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
}

.contact__info,
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact__info {
  padding: 2rem;
  border: 1px solid var(--color-border);
  background: linear-gradient(180deg, rgba(49, 172, 102, 0.08), rgba(255,255,255,1));
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-list article {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(19, 103, 54, 0.08);
}

.contact-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-list h3 {
  margin-bottom: 0.2rem;
}

.contact__actions {
  margin-top: 1.5rem;
}

.contact__map {
  min-height: 560px;
  box-shadow: var(--color-shadow);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
}

.footer {
  background: #0c2518;
  color: rgba(255, 255, 255, 0.84);
  padding-top: 3rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 1.5rem;
}

.footer__grid h3 {
  color: var(--color-white);
}

.footer__grid a,
.footer__grid span,
.footer__grid p {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 0.55rem;
}

.footer__logo {
  width: 74px;
  margin-bottom: 1rem;
  border-radius: 50%;
}

.footer__bottom {
  margin-top: 2rem;
  padding: 1rem 0 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 990;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  max-width: 320px;
  border-radius: 999px;
  color: var(--color-white);
  background: linear-gradient(135deg, #22c15e 0%, #1b9f4d 100%);
  box-shadow: 0 16px 36px rgba(30, 160, 79, 0.32);
}

.whatsapp-float span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.2rem;
}

.whatsapp-float small {
  font-size: 0.92rem;
  line-height: 1.3;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal--delay {
  transition-delay: 120ms;
}

.reveal--delay-2 {
  transition-delay: 220ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav {
    position: fixed;
    top: calc(var(--header-height) + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding: 1.2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--color-shadow);
    border: 1px solid var(--color-border);
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .hero__grid,
  .specialties__layout,
  .contact__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 420px;
  }

  .hero__stats,
  .about__grid,
  .cards-grid--services,
  .content-grid,
  .testimonials__grid,
  .brands-strip__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 82px;
  }

  .section {
    padding: 4.5rem 0;
  }

  .topbar__content,
  .topbar__group,
  .header__content,
  .hero__actions {
    align-items: flex-start;
  }

  .brand__text span {
    display: none;
  }

  .hero__stats,
  .about__grid,
  .cards-grid--services,
  .content-grid,
  .testimonials__grid,
  .brands-strip__content {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 360px;
  }

  .hero-card--main {
    width: calc(100% - 2rem);
    margin-top: 1rem;
  }

  .hero-card--floating {
    position: static;
    width: calc(100% - 2rem);
    margin: 1rem;
  }

  .contact__map,
  .contact__map iframe {
    min-height: 360px;
  }

  .whatsapp-float {
    right: 0.8rem;
    left: 0.8rem;
    bottom: 0.8rem;
    max-width: none;
    justify-content: center;
  }
}
