:root {
  --bg: #F8FAFC;
  --bg-alt: #EEF2F7;
  --card: #FFFFFF;
  --border: #E2E8F0;
  --text: #0F172A;
  --muted: #475569;
  --subtle: #64748B;
  --primary: #0A2540;
  --accent: #0066FF;
  --accent-cyan: #00C2FF;
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 64px rgba(10, 37, 64, 0.12);
  --radius: 14px;
  --radius-lg: 20px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body.body-local {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  padding-bottom: 4rem;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem;
}

.top-nav {
  display: flex; flex-wrap: wrap; gap: 0.5rem 0.85rem;
  align-items: center; color: var(--subtle); font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.top-nav .dot { color: #CBD5E1; }
.top-nav a { color: var(--muted); }

.hero {
  background: radial-gradient(circle at 100% 0%, rgba(0, 102, 255, 0.12), transparent 45%), var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-md);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); background: rgba(0, 102, 255, 0.08);
  border: 1px solid rgba(0, 102, 255, 0.18); border-radius: 999px;
  padding: 0.3rem 0.75rem; margin-bottom: 1rem;
}
h1 {
  margin: 0; font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.1; letter-spacing: -0.03em; color: var(--primary);
}
.lead {
  margin: 1.1rem 0 0; color: var(--muted);
  font-size: 1.05rem; max-width: 780px;
}
.hero-actions {
  margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.65rem;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border-radius: 10px; font-weight: 600; font-size: 0.9rem; padding: 0.7rem 1.2rem;
  border: 1px solid var(--border); text-decoration: none;
  transition: transform 0.2s ease, background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); text-decoration: none; }
.btn-secondary { background: #fff; color: var(--text); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); text-decoration: none; }
.btn-wa { background: #25D366; border-color: #25D366; color: #fff; }
.btn-wa:hover { background: #20bd5a; border-color: #20bd5a; color: #fff; }

.hero-meta {
  margin-top: 1.6rem; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.hero-meta-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 0.95rem 1rem;
}
.hero-meta-card .k {
  font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--subtle); font-weight: 700; margin-bottom: 0.3rem;
}
.hero-meta-card .v { font-size: 0.92rem; color: var(--text); font-weight: 600; line-height: 1.45; }

section + section { margin-top: 1.75rem; }

.section-head {
  font-size: clamp(1.3rem, 2.5vw, 1.65rem); letter-spacing: -0.02em;
  color: var(--primary); margin: 0 0 0.4rem;
}
.section-sub {
  color: var(--muted); margin: 0 0 1.2rem; font-size: 0.95rem;
  max-width: 720px;
}

.section-band {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
}
.section-band--alt { background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%); }

.nap-card {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.5rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: var(--shadow-md);
}
.nap-card h2 { margin: 0 0 0.4rem; font-size: 1.15rem; letter-spacing: -0.01em; color: var(--primary); }
.nap-card address {
  font-style: normal; font-size: 0.95rem; color: var(--muted); line-height: 1.75;
}
.nap-card address strong { color: var(--text); font-weight: 600; }
.nap-card .nap-grid { display: grid; gap: 0.5rem; margin-top: 0.65rem; }
.nap-card .nap-row { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.875rem; color: var(--muted); }
.nap-card .nap-row .lbl { color: var(--subtle); font-weight: 600; min-width: 64px; }
.nap-card .nap-row a { color: var(--text); border-bottom: 1px dotted #cbd5e1; text-decoration: none; }
.nap-card .nap-row a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.nap-card .map-frame {
  position: relative; background: #f1f5f9; border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; min-height: 220px;
  display: flex; align-items: center; justify-content: center;
}
.nap-card .map-frame iframe { width: 100%; height: 100%; min-height: 220px; border: 0; display: block; }
.nap-card .map-placeholder {
  padding: 1.25rem; text-align: center; color: var(--subtle); font-size: 0.85rem;
}
.nap-card .map-placeholder strong { color: var(--text); display: block; margin-bottom: 0.3rem; }

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.85rem; margin-top: 0.5rem;
}
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 1.1rem 1.15rem; box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  border-color: rgba(0, 102, 255, 0.3); box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card a { color: var(--primary); font-weight: 600; font-size: 1rem; text-decoration: none; }
.service-card a:hover { color: var(--accent); }
.service-card p { margin: 0.45rem 0 0; font-size: 0.875rem; color: var(--subtle); line-height: 1.55; }
.service-card .arrow { color: var(--accent); margin-left: 0.3rem; }

.areas-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem;
  margin-top: 0.5rem;
}
.areas-grid h3 {
  font-size: 0.85rem; font-weight: 700; color: var(--primary);
  letter-spacing: 0.02em; margin: 0 0 0.25rem;
}
.areas-grid ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 0.35rem;
}
.areas-grid li {
  background: var(--bg); border: 1px solid var(--border); border-radius: 999px;
  padding: 0.25rem 0.7rem; font-size: 0.8125rem; color: var(--text); font-weight: 500;
}
.areas-grid li.city { background: #eff6ff; border-color: #bfdbfe; color: var(--primary); }

.faq-list { display: grid; gap: 0.6rem; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 0.95rem 1.1rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] { border-color: rgba(0, 102, 255, 0.25); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer; font-weight: 600; color: var(--text); font-size: 0.95rem;
  letter-spacing: -0.01em; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; float: right; color: var(--accent); font-weight: 700; font-size: 1.1rem;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0.55rem 0 0; color: var(--muted); font-size: 0.9375rem; }

.local-proof {
  background: var(--primary); color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg); padding: 1.75rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.local-proof h2 { margin: 0 0 0.5rem; color: #fff; font-size: 1.3rem; }
.local-proof p { margin: 0 0 1rem; color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }
.local-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; margin-top: 1rem; }
.local-proof-item {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px; padding: 1rem;
}
.local-proof-item .num {
  font-size: 1.5rem; font-weight: 700; color: var(--accent-cyan); letter-spacing: -0.02em;
}
.local-proof-item .lbl { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.65); margin-top: 0.2rem; }

.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, #133861 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 2rem;
  text-align: center;
}
.cta-band h2 { margin: 0 0 0.5rem; color: #fff; font-size: 1.4rem; }
.cta-band p { color: rgba(255, 255, 255, 0.78); margin: 0 0 1.25rem; }
.cta-band .btn-primary { background: #fff; color: var(--primary); border-color: #fff; }
.cta-band .btn-primary:hover { background: var(--accent-cyan); border-color: var(--accent-cyan); color: var(--primary); }
.cta-band .btn-secondary { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.cta-band .btn-secondary:hover { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: #fff; }

.use-cases { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.use-case {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 1.1rem 1.25rem; box-shadow: var(--shadow-sm);
}
.use-case h3 { margin: 0 0 0.35rem; font-size: 1rem; color: var(--primary); letter-spacing: -0.01em; }
.use-case p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.pricing-band {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem;
  margin-top: 0.5rem;
}
.pricing-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 1.1rem; box-shadow: var(--shadow-sm);
}
.pricing-card .tier {
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 0.4rem;
}
.pricing-card .amount { font-size: 1.3rem; font-weight: 700; color: var(--primary); letter-spacing: -0.02em; }
.pricing-card .when { margin-top: 0.45rem; font-size: 0.85rem; color: var(--muted); }
.pricing-card .for { margin-top: 0.6rem; font-size: 0.8125rem; color: var(--subtle); padding-top: 0.6rem; border-top: 1px dashed var(--border); }

.local-footer {
  margin-top: 2rem; padding: 1.5rem; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-style: normal; font-size: 0.8125rem; color: var(--subtle); line-height: 1.75;
  box-shadow: var(--shadow-sm);
}
.local-footer strong { color: var(--text); font-weight: 600; }
.local-footer a { color: var(--muted); border-bottom: 1px dotted #cbd5e1; text-decoration: none; }
.local-footer a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.whatsapp-float {
  position: fixed; right: 1.15rem; bottom: 1.5rem;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  z-index: 95; transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(37, 211, 102, 0.5); text-decoration: none; }
.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }

@media (max-width: 860px) {
  .nap-card { grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .local-proof-grid { grid-template-columns: 1fr; }
  .use-cases { grid-template-columns: 1fr; }
  .pricing-band { grid-template-columns: 1fr; }
  .hero { padding: 1.5rem; }
  .section-band { padding: 1.25rem; }
}
