:root {
  --bg: #203e37;
  --bg-soft: #38695c;
  --panel: #4f8f7d;
  --panel-2: #73b49f;
  --text: #fffaf4;
  --muted: #eaf6f0;
  --soft: #c3dfd3;
  --gold: #f0e7d7;
  --gold-2: #ffffff;
  --green: #70ad98;
  --deep: #17312b;
  --cream: #fff7ea;
  --sage: #a8d2c0;
  --line: rgba(255, 250, 244, .22);
  --shadow: 0 24px 80px rgba(15, 49, 41, .34);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 5%, rgba(255, 250, 244, .28), transparent 26rem),
    radial-gradient(circle at 90% 12%, rgba(168, 210, 192, .26), transparent 32rem),
    radial-gradient(circle at 55% 62%, rgba(28, 83, 70, .44), transparent 42rem),
    linear-gradient(180deg, #77b8a2 0%, #4f8f7d 38%, #203e37 100%);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); margin: 0 0 1rem; }
h1, h2, h3, h4 {
  font-family: Sora, Manrope, Inter, sans-serif;
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: 0;
}
h1 { font-size: clamp(2.35rem, 6vw, 5rem); max-width: 980px; }
h2 { font-size: clamp(1.9rem, 4vw, 3.15rem); }
h3 { font-size: 1.18rem; }
.eyebrow {
  color: var(--gold-2);
  text-transform: uppercase;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .14em;
  margin-bottom: .8rem;
}

.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; position: relative; }
.section.alt { background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255,255,255,.03)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.grid { display: grid; gap: 22px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(32, 62, 55, .72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(247, 239, 228, .1);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(32, 62, 55, .94); box-shadow: 0 14px 40px rgba(17, 49, 42, .26); }
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 230px; }
.brand img { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; border: 1px solid rgba(255,255,255,.52); box-shadow: 0 10px 26px rgba(14, 47, 39, .18); }
.brand strong { font-family: Sora, sans-serif; font-size: .98rem; display: block; line-height: 1.15; }
.brand span { color: var(--soft); font-size: .78rem; display: block; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  padding: 10px 13px;
  color: var(--muted);
  font-size: .93rem;
  border-radius: var(--radius);
  transition: color .2s ease, background .2s ease;
}
.nav a:hover, .nav a.active { color: var(--text); background: rgba(247, 239, 228, .08); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--text);
  border-radius: var(--radius);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 19px; height: 2px; margin: 5px auto; background: currentColor; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
  white-space: normal;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: linear-gradient(135deg, #fffaf4, #d9efe5); color: #1f4b40; box-shadow: 0 18px 45px rgba(255, 250, 244, .2); }
.btn.secondary { border-color: var(--line); color: var(--text); background: rgba(247, 239, 228, .06); }
.btn.green { background: linear-gradient(135deg, #f7e7d0, #fefaf2); color: #1f4b40; }

.hero { min-height: calc(100vh - 78px); padding: 88px 0 50px; display: flex; align-items: center; }
.hero:before {
  content: "";
  position: absolute;
  inset: 78px 0 auto;
  height: 420px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,250,244,.16), transparent 45%, rgba(24,63,54,.16));
  mask-image: linear-gradient(#000, transparent);
}
.hero-inner { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); gap: 40px; align-items: center; }
.hero-copy .lead { font-size: clamp(1.04rem, 2vw, 1.32rem); max-width: 760px; }
.hero-actions, .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-media {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--panel);
}
.hero-media img { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; opacity: .95; transform: scale(1.01); transition: transform .7s ease, filter .7s ease; }
.hero-media:hover img { transform: scale(1.055); filter: saturate(1.08) contrast(1.03); }
.media-badge {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px;
  border: 1px solid rgba(247,239,228,.2);
  background: rgba(31, 73, 63, .78);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
}
.media-badge strong { display: block; font-family: Sora, sans-serif; }
.media-badge span { color: var(--muted); font-size: .9rem; }

.card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.07));
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .18);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}
.card:hover { transform: translateY(-7px); border-color: rgba(255, 255, 255, .55); box-shadow: 0 24px 60px rgba(15, 49, 41, .28); }
.card .icon { width: 44px; height: 44px; border-radius: var(--radius); display: grid; place-items: center; background: rgba(255,250,244,.18); color: var(--gold-2); margin-bottom: 15px; font-weight: 900; }
.split-panel { border-left: 2px solid var(--gold); padding-left: 24px; }
.list { display: grid; gap: 12px; padding: 0; margin: 20px 0 0; list-style: none; }
.list li { color: var(--muted); padding-left: 28px; position: relative; }
.list li:before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); position: absolute; left: 4px; top: .65em; }
.service-card a, .article-card a { color: var(--gold-2); font-weight: 800; }
.quote { font-size: 1.05rem; color: var(--text); }
.author { color: var(--gold-2); font-weight: 800; margin-top: 18px; }
.cta-band {
  background: linear-gradient(135deg, rgba(255,250,244,.2), rgba(168,210,192,.22)), #4f8f7d;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 54px);
  box-shadow: var(--shadow);
}

.page-hero { padding: 86px 0 58px; border-bottom: 1px solid var(--line); }
.page-hero p { max-width: 780px; font-size: 1.12rem; }
.breadcrumb { color: var(--soft); font-size: .88rem; margin-bottom: 20px; }
.breadcrumb a { color: var(--gold-2); }
.content { max-width: 860px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: rgba(255,255,255,.035);
  margin-bottom: 12px;
}
.faq summary { cursor: pointer; font-weight: 800; color: var(--text); }
.faq p { margin-top: 12px; }

.form {
  display: grid;
  gap: 14px;
}
.form input, .form select, .form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(247,239,228,.22);
  border-radius: var(--radius);
  background: rgba(49, 95, 83, .74);
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
}
.form select option { color: #171410; background: #fffaf1; }
.form textarea { min-height: 120px; resize: vertical; }
.map { border: 0; width: 100%; height: 360px; border-radius: var(--radius); filter: grayscale(.15) contrast(1.05); }

.image-strip {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: stretch;
}
.image-tile {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--panel);
}
.image-tile.tall { min-height: 420px; }
.image-tile img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .7s ease, filter .7s ease; }
.image-tile:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(23,49,43,.72)); }
.image-tile:hover img { transform: scale(1.06); filter: saturate(1.08); }
.image-caption { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 1; }
.image-caption strong { display: block; font-family: Sora, sans-serif; font-size: 1.1rem; }
.image-caption span { color: var(--muted); font-size: .92rem; }
.visual-card {
  overflow: hidden;
  padding: 0;
}
.visual-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.visual-card .visual-body { padding: 22px; }
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.metric {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255,255,255,.1);
}
.metric strong { display: block; font-family: Sora, sans-serif; font-size: 1.6rem; }
.metric span { color: var(--muted); font-size: .9rem; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  color: #0b2114;
  box-shadow: 0 15px 35px rgba(37, 211, 102, .34);
  transition: transform .2s ease;
  overflow: hidden;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
.whatsapp-float img { width: 100%; height: 100%; object-fit: contain; }

.site-footer {
  padding: 58px 0 28px;
  border-top: 1px solid var(--line);
  background: #18352e;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .8fr 1fr; gap: 28px; }
.footer-grid h3 { font-size: 1rem; color: var(--gold-2); }
.footer-grid a { display: block; color: var(--muted); margin: 7px 0; }
.copy { color: var(--soft); border-top: 1px solid var(--line); margin-top: 34px; padding-top: 22px; font-size: .9rem; }

@media (max-width: 920px) {
  .grid.two, .grid.three, .grid.four, .hero-inner, .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 56px; }
  .nav {
    position: fixed;
    inset: 78px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(32,62,55,.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, var(--max)); }
  .section { padding: 64px 0; }
  .nav-wrap { height: 70px; }
  .nav { top: 70px; }
  .brand { min-width: auto; }
  .brand strong { font-size: .86rem; }
  .brand span { display: none; }
  .hero-actions .btn, .cta-row .btn { width: 100%; }
  .hero-media img { aspect-ratio: 1 / 1; }
  .image-strip, .metric-row { grid-template-columns: 1fr; }
  .image-tile.tall { min-height: 300px; }
}
