:root {
  --green-950: #073f39;
  --green-900: #0b4e46;
  --green-800: #116158;
  --taupe: #a7846b;
  --taupe-soft: #d7c0aa;
  --cream: #fff8f1;
  --sand: #f1e3d5;
  --white: #ffffff;
  --ink: #1e2b29;
  --muted: #66736f;
  --line: rgba(7, 63, 57, 0.14);
  --shadow: 0 22px 60px rgba(7, 63, 57, 0.16);
  --shadow-soft: 0 14px 38px rgba(7, 63, 57, 0.10);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(167, 132, 107, 0.28), transparent 30rem),
    radial-gradient(circle at 86% 20%, rgba(7, 63, 57, 0.13), transparent 28rem),
    linear-gradient(180deg, #fffaf5 0%, #f6ebdf 48%, #ffffff 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 241, 0.9);
  border-bottom: 1px solid rgba(7, 63, 57, 0.12);
  backdrop-filter: blur(16px);
}

.navbar {
  width: min(100% - 32px, var(--container));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  width: 210px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(7, 63, 57, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu a {
  color: var(--green-950);
  font-size: 0.93rem;
  font-weight: 800;
  padding: 10px 13px;
  border-radius: 999px;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--cream);
  background: var(--green-950);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--green-950);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-button.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.open span:nth-child(2) {
  opacity: 0;
}

.menu-button.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding: 88px 0;
  overflow: hidden;
}

.hero-decoration {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(1px);
}

.hero-decoration-one {
  width: 410px;
  height: 410px;
  right: -150px;
  top: 80px;
  background: rgba(7, 63, 57, 0.10);
}

.hero-decoration-two {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: 40px;
  background: rgba(167, 132, 107, 0.16);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--taupe);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 99px;
  background: var(--taupe);
}

h1,
h2,
h3 {
  color: var(--green-950);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 6vw, 5.65rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.2rem;
}

.hero-text {
  max-width: 610px;
  margin-top: 24px;
  color: #46524f;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn-primary {
  color: var(--cream);
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  box-shadow: 0 16px 34px rgba(7, 63, 57, 0.22);
}

.btn-secondary {
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-image-card {
  padding: 12px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(7, 63, 57, 0.12);
  box-shadow: var(--shadow);
}

.hero-image-card img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 10px);
}

.section {
  padding: 96px 0;
}

.intro-section {
  position: relative;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.section-title p:not(.eyebrow),
.intro-card p,
.modality-card p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.centered {
  max-width: 840px;
  margin: 0 auto 42px;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered .eyebrow::before {
  width: 26px;
}

.centered p:not(.eyebrow) {
  margin-top: 18px;
}

.intro-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chips span,
.modality-options span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--green-950);
  font-weight: 900;
  background: #f6eee6;
  border: 1px solid rgba(167, 132, 107, 0.28);
}

.focus-section {
  background:
    linear-gradient(135deg, rgba(7, 63, 57, 0.96), rgba(13, 82, 74, 0.94)),
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 24rem);
}

.focus-section h2,
.focus-section .section-title p:not(.eyebrow) {
  color: var(--cream);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.focus-card {
  min-height: 230px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.focus-card h3 {
  color: var(--cream);
  font-size: 1.45rem;
}

.focus-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--green-950);
  font-weight: 950;
  border-radius: 18px;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.service-card {
  position: relative;
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -78px;
  bottom: -78px;
  border-radius: 999px;
  background: rgba(7, 63, 57, 0.08);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 63, 57, 0.28);
  box-shadow: var(--shadow);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--taupe);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
}

.modality-section {
  padding-top: 40px;
}

.modality-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
  padding: 44px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 241, 0.9)),
    radial-gradient(circle at 88% 30%, rgba(167, 132, 107, 0.20), transparent 20rem);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.modality-card p {
  margin-top: 18px;
}

.modality-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.modality-options span {
  min-height: 74px;
  font-size: 1.02rem;
}

.contact-section {
  padding-top: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
}

.contact-copy,
.contact-panel {
  padding: 38px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

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

.contact-panel {
  display: grid;
  gap: 14px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(7, 63, 57, 0.12);
  background: #fffaf5;
  transition: transform 0.22s ease, background 0.22s ease;
}

.contact-link:not(.contact-text):hover {
  transform: translateY(-2px);
  background: #f4e7da;
}

.contact-link span {
  color: var(--taupe);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-link strong {
  color: var(--green-950);
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 999px;
  color: var(--cream);
  font-weight: 950;
  background: linear-gradient(135deg, #128c7e, #075e54);
  box-shadow: 0 18px 36px rgba(7, 63, 57, 0.22);
}

.footer {
  padding: 28px 0;
  color: var(--cream);
  background: var(--green-950);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.96rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.18s;
}

@media (max-width: 1020px) {
  .hero-grid,
  .intro-grid,
  .modality-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 68px 0 84px;
  }

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

  .focus-grid {
    grid-template-columns: 1fr;
  }

  .focus-card {
    min-height: 190px;
  }
}

@media (max-width: 760px) {
  .navbar {
    min-height: 72px;
  }

  .brand {
    width: 166px;
    height: 48px;
    border-radius: 14px;
  }

  .menu-button {
    display: block;
  }

  .menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 248, 241, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu a {
    width: 100%;
    padding: 12px 14px;
  }

  .hero {
    padding: 52px 0 70px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 70px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .modality-card,
  .contact-copy,
  .contact-panel,
  .intro-card {
    padding: 26px;
    border-radius: 24px;
  }

  .modality-options {
    grid-template-columns: 1fr;
  }

  .contact-link {
    display: grid;
    gap: 4px;
  }

  .contact-link strong {
    text-align: left;
  }

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

  .footer {
    padding-bottom: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .btn,
  .service-card,
  .menu,
  .menu-button span {
    transition: none;
  }
}
