:root {
  --navy: #232d64;
  --navy-deep: #181e48;
  --lime: #b7c33e;
  --lime-deep: #9aa832;
  --paper: #f3f0e8;
  --paper-2: #e8e4d8;
  --ink: #16182b;
  --muted: #5a5f7a;
  --line: #d9d4c6;
  --emergency: #b42318;
  --whatsapp: #0f6e62;
  --surface: #fffcf6;
  --display: "Fraunces", Georgia, serif;
  --sans: "Figtree", "Segoe UI", system-ui, sans-serif;
  --theme-palette-color-1: #232d64;
  --theme-palette-color-2: #181e48;
  --theme-palette-color-3: #b7c33e;
  --theme-palette-color-4: #16182b;
  --theme-palette-color-5: #d9d4c6;
  --theme-palette-color-6: #f3f0e8;
  --theme-palette-color-7: #fffcf6;
  --theme-palette-color-8: #ffffff;
}
* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.55;
  padding-bottom: 4rem;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: var(--display);
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-wrap: balance;
  margin: 0;
}
p { text-wrap: pretty; }
button, [role="button"] { cursor: pointer; }
.wrap { width: 100%; max-width: 72rem; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .wrap { padding: 0 2rem; } }

.bar {
  display: flex; justify-content: space-between; align-items: center;
  gap: .75rem; background: var(--navy); color: var(--paper);
  padding: .4rem 1.25rem; font-size: .75rem;
}
.bar .lime { color: var(--lime); font-weight: 600; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--navy) 10%, transparent);
}
.header-row { display: flex; align-items: center; justify-content: space-between; height: 4.25rem; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { width: 40px; height: 40px; border-radius: 8px; }
.brand strong { display: block; font-family: var(--display); font-weight: 500; font-size: 1.05rem; color: var(--navy); }
.brand small { display: block; font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.nav { display: none; gap: .15rem; }
.nav a { padding: .5rem .75rem; font-size: .9rem; font-weight: 500; color: var(--muted); border-radius: 6px; }
.nav a:hover, .nav a.current-menu-item, .nav .current-menu-item > a { color: var(--navy); }
.header-cta { display: flex; align-items: center; gap: .75rem; }
.phone-link { display: none; font-size: .875rem; font-weight: 600; color: var(--navy); }
@media (min-width: 1024px) {
  .nav { display: flex; }
  .phone-link { display: inline-flex; }
  .menu-btn { display: none !important; }
}
.menu-btn { width: 44px; height: 44px; border: 0; background: transparent; color: var(--navy); font-size: 1.4rem; }
.mobile-nav { display: none; border-top: 1px solid var(--line); background: var(--paper); }
body.menu-open .mobile-nav { display: block; }
.mobile-nav a { display: block; padding: 1rem 0; border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent); font-weight: 600; color: var(--navy); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 44px; padding: 0 1.25rem; border-radius: 6px; font-weight: 600; font-size: .9375rem;
  border: 0; transition: transform .15s ease, background .15s ease;
}
.btn:active { transform: scale(.98); }
.btn-navy { background: var(--navy); color: var(--paper); }
.btn-navy:hover { background: var(--navy-deep); }
.btn-lime { background: var(--lime); color: var(--navy); }
.btn-lime:hover { background: var(--lime-deep); }
.btn-inv { background: var(--paper); color: var(--navy); }
.btn-em { background: var(--emergency); color: #fff; }
.btn-wa { background: var(--whatsapp); color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border: 1px solid color-mix(in srgb, var(--navy) 20%, transparent); }

.hero {
  position: relative; min-height: 34rem; color: var(--paper); background: var(--navy);
  display: flex; align-items: flex-end;
}
@media (min-width: 768px) { .hero { min-height: 88vh; } }
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .shade { position: absolute; inset: 0; background: linear-gradient(to top, var(--navy-deep), color-mix(in srgb, var(--navy) 80%, transparent), color-mix(in srgb, var(--navy) 45%, transparent)); }
.hero .wrap { position: relative; padding-top: 4rem; padding-bottom: 3rem; }
.kicker { font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--lime); }
.hero h1 { margin-top: 1rem; font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 500; max-width: 16ch; }
.hero p.lede { margin-top: 1.25rem; max-width: 36rem; color: color-mix(in srgb, var(--paper) 80%, transparent); font-size: 1.125rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.stats { display: grid; grid-template-columns: 1fr 1fr; background: var(--line); gap: 1px; border-bottom: 1px solid var(--line); }
@media (min-width: 1024px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats div { background: var(--surface); padding: 1.75rem 1.5rem; }
.stats strong { display: block; font-family: var(--display); font-size: 2rem; color: var(--navy); font-weight: 500; }
.stats span { color: var(--muted); font-size: .875rem; }

.section { padding: 4rem 0; }
.grid-3 { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--surface); border-radius: 12px;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--navy) 8%, transparent);
  overflow: hidden;
}
.card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card .pad { padding: 1.25rem; }
.card h3 { font-size: 1.25rem; color: var(--navy); font-weight: 500; }
.card p { color: var(--muted); font-size: .9rem; margin: .5rem 0 0; }
.task { padding: 1.5rem; transition: background .15s, color .15s; }
.task:hover { background: var(--navy); color: var(--paper); }
.task:hover p { color: color-mix(in srgb, var(--paper) 70%, transparent); }
.task h3 { font-size: 1.5rem; }

.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .split { grid-template-columns: 1fr 1fr; } }
.split img { border-radius: 12px; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.navy-band { background: var(--navy); color: var(--paper); }
.navy-deep { background: var(--navy-deep); color: var(--paper); }
.surface { background: var(--surface); }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.chip { border-radius: 999px; border: 1px solid var(--line); background: var(--paper); padding: .25rem .75rem; font-size: .75rem; font-weight: 600; color: var(--navy); }
.chip-inv { border-color: color-mix(in srgb, var(--paper) 15%, transparent); color: var(--paper); background: transparent; }

.site-footer { background: var(--navy); color: var(--paper); padding: 3.5rem 0 0; }
.site-footer .grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer .grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; } }
.site-footer h2 { font-family: var(--sans); font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: var(--lime); }
.site-footer ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.site-footer li, .site-footer p { color: color-mix(in srgb, var(--paper) 80%, transparent); font-size: .9rem; margin: .4rem 0; }
.site-footer a:hover { color: var(--lime); }
.legal { border-top: 1px solid color-mix(in srgb, var(--paper) 10%, transparent); margin-top: 2rem; padding: 1.25rem 0; font-size: .75rem; color: color-mix(in srgb, var(--paper) 50%, transparent); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

.page-hero { background: var(--navy); color: var(--paper); padding: 3.5rem 0; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 500; max-width: 18ch; margin-top: .75rem; }
.page-hero p { max-width: 40rem; color: color-mix(in srgb, var(--paper) 75%, transparent); margin-top: 1rem; }

.list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.list li { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.list li:last-child { border-bottom: 0; }

.form { background: var(--surface); padding: 1.75rem; border-radius: 12px; box-shadow: 0 0 0 1px color-mix(in srgb, var(--navy) 8%, transparent); }
.form label { display: block; font-size: .875rem; font-weight: 600; color: var(--navy); margin: 0 0 .35rem; }
.form input, .form select, .form textarea {
  width: 100%; min-height: 44px; border: 1px solid var(--line); border-radius: 6px;
  background: var(--surface); padding: .5rem .85rem; font: inherit; margin-bottom: 1rem;
}
.form textarea { min-height: 8rem; }
.wpcf7-form input, .wpcf7-form textarea, .wpcf7-form select {
  width: 100%; min-height: 44px; border: 1px solid var(--line); border-radius: 6px;
  background: var(--surface); padding: .5rem .85rem; font: inherit; margin-bottom: .75rem;
}

.doc { display: flex; gap: 1rem; padding: 1rem; }
.avatar {
  width: 48px; height: 48px; border-radius: 999px; background: var(--navy); color: var(--lime);
  display: flex; align-items: center; justify-content: center; font-family: var(--display); flex-shrink: 0;
}
.searchbar { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .searchbar { flex-direction: row; } }
.searchbar input, .searchbar select {
  min-height: 44px; border: 1px solid var(--line); border-radius: 6px; background: var(--surface);
  padding: 0 .85rem; font: inherit; flex: 1;
}

.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
@media (min-width: 768px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; }
.gallery figcaption { margin-top: .4rem; font-size: .8rem; color: var(--muted); }
.social { display: flex; flex-wrap: wrap; gap: .75rem 1.1rem; margin-top: 1rem; }
.social a { color: var(--lime); font-size: .85rem; font-weight: 600; }

.mobile-cta {
  position: fixed; inset: auto 0 0 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 95%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid color-mix(in srgb, var(--navy) 10%, transparent);
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-cta a { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: .65rem; font-size: .7rem; font-weight: 600; color: var(--navy); }
.mobile-cta a.em { color: var(--emergency); }
.mobile-cta a.wa { color: var(--whatsapp); }
@media (min-width: 768px) { .mobile-cta { display: none; } }

.entry { max-width: 44rem; }
.entry p { color: var(--muted); }
.entry h2 { font-size: 1.75rem; color: var(--navy); margin: 0 0 .75rem; }
.map { width: 100%; min-height: 22rem; border: 0; border-radius: 12px; }
.rows { list-style: none; padding: 0; margin: 1rem 0 0; border-top: 1px solid var(--line); }
.rows li { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
.rows span:first-child { color: var(--muted); }
.chips span { border-radius: 8px; background: var(--paper); padding: .75rem 1rem; font-size: .875rem; font-weight: 600; color: var(--navy); box-shadow: 0 0 0 1px color-mix(in srgb, var(--navy) 8%, transparent); }
.wpcf7 ~ .form { display: none; }
.page-hero, .section { display: block !important; visibility: visible !important; }
