
* { box-sizing: border-box; }
:root {
  --bg: #0f1e3c;
  --fg: #0b1324;
  --ink: #0b1324;
  --muted: #58627a;
  --brand: #1a73e8;
  --brand-ink: #0a47a9;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --ring: rgba(26, 115, 232, 0.35);
}
html, body { margin: 0; padding: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: var(--ink); background: var(--soft); }
.container { width: min(1100px, 92%); margin: 0 auto; }
h1, h2, h3, h4 { margin: 0 0 .5rem; }
p { line-height: 1.6; color: #2c3446; }
img { max-width: 100%; display: block; }
.rounded { border-radius: 12px; }

.site-header { background: var(--paper); border-bottom: 1px solid #e6e9f2; position: sticky; top: 0; z-index: 10; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; gap: 1rem; }
.brand { display: flex; gap: 1rem; align-items: center; }
.logo { width: 44px; height: 44px; border-radius: 10px; background: var(--bg); color: #fff; display:flex; align-items:center; justify-content:center; font-weight: 700; }
.cta { text-decoration: none; border: 2px solid var(--brand); padding: .6rem 1rem; border-radius: 10px; color: var(--brand); font-weight: 600; }
.cta:hover { background: var(--brand); color: white; }
.cta.primary { background: var(--brand); color: white; border-color: var(--brand); }
.cta.primary:hover { background: var(--brand-ink); border-color: var(--brand-ink); }
.cta.ghost { background: transparent; color: var(--brand); }

.hero { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center; padding: 3rem 0; }
.hero-text h2 { font-size: clamp(2rem, 3vw, 3rem); }
.hero-cta { display:flex; gap: 1rem; margin-top: 1rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; padding: 2rem 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1rem; }
.card { background: var(--paper); border-radius: 12px; padding: 1rem; border: 1px solid #e6e9f2; }
.card h4 { margin-top: .6rem; }

.highlight { background: var(--paper); border: 1px solid #e6e9f2; padding: 2rem; border-radius: 12px; margin: 2rem auto; text-align:center; }
.tiny { font-size: .9rem; color: var(--muted); }

.map iframe { width: 100%; height: 320px; border: 0; border-radius: 12px; }

.whatsapp-fab {
  position: fixed; right: 20px; bottom: 20px;
  background: #25D366; color: white; text-decoration: none;
  padding: .9rem 1.1rem; border-radius: 999px; font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}
.whatsapp-fab:focus, .cta:focus { outline: none; box-shadow: 0 0 0 4px var(--ring); }

.site-footer { padding: 2rem 0; text-align:center; color: var(--muted); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
}
