:root {
  --green-980: #002619;
  --green-950: #003322;
  --green-900: #00452f;
  --green-800: #086247;
  --green-700: #0d7658;
  --mint-200: #dffff2;
  --mint-100: #effff8;
  --cream: #fbfffc;
  --white: #ffffff;
  --ink: #102d24;
  --muted: #63776f;
  --shadow: 0 24px 70px rgba(0, 51, 34, 0.18);
  --soft-shadow: 0 14px 40px rgba(0, 51, 34, 0.10);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: absolute;
  top: -120px;
  left: 16px;
  z-index: 999;
  background: var(--white);
  color: var(--green-950);
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 255, 252, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 51, 34, 0.10);
}

.navbar {
  width: min(100% - 34px, 1220px);
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-logo {
  width: 116px;
  height: 58px;
  object-fit: contain;
  border-radius: 16px;
  background: var(--green-950);
  box-shadow: 0 8px 25px rgba(0, 51, 34, 0.16);
}

.brand-name {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--green-950);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--green-900);
  font-weight: 800;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--green-950);
  background: var(--mint-100);
}

.nav-links .nav-button {
  color: var(--white);
  background: var(--green-900);
  padding-inline: 20px;
  box-shadow: 0 12px 28px rgba(0, 69, 47, 0.20);
}

.nav-links .nav-button:hover,
.nav-links .nav-button:focus-visible {
  color: var(--white);
  background: var(--green-700);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 15px;
  background: var(--green-950);
  padding: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--white);
  transition: 0.25s ease;
}

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

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 44px;
  padding: 86px max(28px, calc((100vw - var(--max-width)) / 2)) 110px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 10%, rgba(223, 255, 242, 0.18), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(223, 255, 242, 0.13), transparent 28%),
    linear-gradient(135deg, var(--green-980), var(--green-800));
}

.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -60px;
  height: 130px;
  background: var(--cream);
  transform: rotate(-2deg);
  transform-origin: left center;
}

.hero-decoration {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  pointer-events: none;
}

.hero-decoration-one {
  width: 430px;
  height: 430px;
  top: 94px;
  left: -160px;
}

.hero-decoration-two {
  width: 650px;
  height: 650px;
  right: -280px;
  bottom: -210px;
}

.hero-decoration-three {
  width: 190px;
  height: 190px;
  right: 36%;
  top: 80px;
  opacity: 0.46;
}

.hero-content,
.hero-logo-card {
  position: relative;
  z-index: 2;
}

.hero-location,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--green-800);
}

.hero-location {
  color: var(--mint-200);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 7.7vw, 6.85rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.hero-slogan {
  margin-bottom: 20px;
  color: var(--mint-200);
  font-size: clamp(1.35rem, 3.4vw, 2.55rem);
  font-weight: 800;
}

.hero-text {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  color: var(--green-950);
  background: var(--white);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--mint-200);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.07);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.15);
}

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

.btn-dark:hover,
.btn-dark:focus-visible {
  background: var(--green-700);
}

.btn-light {
  color: var(--green-950);
  background: var(--white);
  white-space: nowrap;
}

.hero-logo-card {
  justify-self: end;
  width: min(100%, 530px);
  padding: 18px;
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.26);
}

.logo-box {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: clamp(16px, 4vw, 30px);
  border-radius: 34px;
  background: var(--green-950);
  overflow: hidden;
}

.logo-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.hero-pills span {
  padding: 13px;
  text-align: center;
  border-radius: 18px;
  color: var(--mint-100);
  background: rgba(255, 255, 255, 0.10);
  font-weight: 900;
}

.summary-section,
.services-section,
.modalities-section,
.contact-section {
  padding: 92px 0;
}

.summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(270px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.summary-card,
.highlight-card,
.service-card,
.mode-card,
.location-panel,
.contact-card {
  border-radius: var(--radius-xl);
}

.summary-card {
  padding: clamp(28px, 5vw, 54px);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(0, 51, 34, 0.08);
}

.summary-card h2,
.section-heading h2,
.modalities-copy h2,
.location-panel h2,
.contact-copy h2 {
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}

.summary-card p,
.section-heading p,
.modalities-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.highlight-card {
  min-height: 300px;
  padding: 32px;
  color: var(--white);
  background: linear-gradient(145deg, var(--green-950), var(--green-700));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.highlight-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  color: var(--mint-200);
  font-size: 1.7rem;
}

.highlight-card h3 {
  margin-bottom: 12px;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.highlight-card p {
  margin-bottom: 0;
  color: var(--mint-200);
  font-weight: 800;
}

.services-section {
  background: linear-gradient(180deg, rgba(223, 255, 242, 0.55), rgba(251, 255, 252, 0.98));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

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

.service-card {
  min-height: 260px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(0, 51, 34, 0.08);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 51, 34, 0.18);
}

.service-card-wide {
  grid-column: span 2;
}

.service-number {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 28px;
  border-radius: 18px;
  color: var(--green-950);
  background: var(--mint-100);
  font-weight: 900;
}

.service-card h3,
.mode-card h3 {
  margin-bottom: 12px;
  color: var(--green-950);
  font-size: 1.36rem;
  line-height: 1.1;
}

.service-card p,
.mode-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.modalities-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 34px;
  align-items: center;
}

.modalities-copy .btn {
  margin-top: 12px;
}

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

.mode-card {
  min-height: 270px;
  padding: 34px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(0, 51, 34, 0.08);
}

.mode-card span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 34px;
  border-radius: 24px;
  color: var(--mint-200);
  background: var(--green-950);
  font-size: 2rem;
}

.location-section {
  padding: 38px 0 94px;
}

.location-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(30px, 6vw, 56px);
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(223, 255, 242, 0.18), transparent 35%),
    linear-gradient(135deg, var(--green-980), var(--green-700));
  box-shadow: var(--shadow);
}

.location-panel h2 {
  color: var(--white);
}

.location-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.section-tag-light {
  color: var(--mint-200);
}

.contact-section {
  background: var(--mint-100);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 36px;
  align-items: center;
}

.contact-card {
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid rgba(0, 51, 34, 0.08);
  box-shadow: var(--shadow);
}

.contact-card img {
  width: min(100%, 450px);
  margin-bottom: 24px;
  border-radius: 26px;
  background: var(--green-950);
}

.contact-data {
  margin-bottom: 26px;
}

.contact-data p {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 51, 34, 0.10);
  color: var(--muted);
}

.contact-data strong {
  color: var(--green-950);
}

.contact-data a {
  color: var(--green-800);
  font-weight: 900;
}

.btn-full {
  width: 100%;
}

.footer {
  padding: 34px 0;
  color: var(--white);
  background: var(--green-980);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer strong {
  font-size: 1.2rem;
}

.footer p {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer a {
  color: var(--mint-200);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--white);
  background: #1fae63;
  box-shadow: 0 16px 38px rgba(31, 174, 99, 0.32);
  font-weight: 900;
  transition: transform 0.25s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
}

.reveal {
  opacity: 1;
  transform: none;
}

body.animations-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 13px 15px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 110px;
  }

  .hero-logo-card {
    justify-self: start;
    width: 100%;
  }

  .summary-grid,
  .modalities-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 26px, var(--max-width));
  }

  .navbar {
    width: min(100% - 24px, 1220px);
  }

  .brand-logo {
    width: 82px;
    height: 48px;
  }

  .brand-name {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
    gap: 28px;
  }

  h1 {
    font-size: clamp(2.65rem, 17vw, 4.4rem);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .logo-box {
    min-height: 220px;
    border-radius: 24px;
  }

  .hero-logo-card {
    padding: 12px;
    border-radius: 30px;
  }

  .summary-section,
  .services-section,
  .modalities-section,
  .contact-section {
    padding: 64px 0;
  }

  .service-grid,
  .mode-list,
  .hero-pills {
    grid-template-columns: 1fr;
  }

  .service-card-wide {
    grid-column: auto;
  }

  .service-card,
  .mode-card,
  .highlight-card {
    min-height: auto;
  }

  .location-section {
    padding-bottom: 64px;
  }

  .location-panel,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-light {
    width: 100%;
  }

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

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