* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0b1020;
  --bg-soft: #121a31;
  --card: #ffffff;
  --text: #0f172a;
  --text-light: #475569;
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --accent: #2563eb;
  --line: #e2e8f0;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #f8fafc;
}
.container { width: min(1120px, 92%); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(11, 16, 32, 0.85);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.header-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }
.brand { color: #fff; text-decoration: none; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.brand-mark { font-size: 1.2rem; }
.menu { display: flex; gap: 16px; align-items: center; }
.menu a { color: #e2e8f0; text-decoration: none; font-weight: 500; }
.menu a:hover { color: #fff; }
.menu-toggle { display: none; background: transparent; border: 0; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; }
.hero {
  padding: 88px 0 56px;
  background: radial-gradient(circle at 10% 10%, #1d4ed8 0%, #0b1020 55%, #0b1020 100%);
  color: #fff;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 34px; align-items: center; }
.tag { color: var(--primary); font-weight: 700; margin-bottom: 10px; letter-spacing: .3px; }
h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 14px; }
.subtitle { color: #dbeafe; margin-bottom: 22px; max-width: 60ch; }
.hero-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; min-height: 320px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 20px; border-radius: 12px; text-decoration: none;
  font-weight: 700; border: 1px solid transparent; transition: .25s ease;
}
.btn-sm { padding: 8px 14px; border-radius: 10px; background: #1e293b; }
.btn-primary { background: linear-gradient(135deg, var(--primary), #fbbf24); color: #1f2937; }
.btn-primary:hover { transform: translateY(-1px); background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.hero-highlights { margin-top: 16px; list-style: none; color: #e2e8f0; }
.section { padding: 78px 0; }
.section-alt { background: #eef2ff; }
.section-head { margin-bottom: 30px; }
.section-head h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); line-height: 1.2; }
.card-grid { display: grid; gap: 18px; }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
}
.icon { font-size: 1.4rem; margin-bottom: 10px; }
.card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.card p { color: var(--text-light); }
.split { display: grid; grid-template-columns: 1.3fr .9fr; gap: 22px; align-items: start; }
.check-list { margin-top: 14px; padding-left: 18px; }
.feature-box {
  background: #0f172a; color: #e2e8f0; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
}
.feature-box h3 { color: #fff; margin-bottom: 10px; }
.authority-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 20px; }
.stats { display: grid; gap: 14px; }
.stat-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; box-shadow: var(--shadow); }
.stat-card strong { display: block; margin-bottom: 6px; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.location-grid iframe { width: 100%; min-height: 320px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-list { list-style: none; margin-top: 12px; display: grid; gap: 8px; }
.faq-list { display: grid; gap: 10px; }
details {
  background: #fff; border-radius: 12px; padding: 14px 16px; border: 1px solid var(--line);
}
summary { cursor: pointer; font-weight: 600; }
details p { margin-top: 10px; color: var(--text-light); }
.cta-final { background: linear-gradient(135deg, #0b1020, #1e3a8a); color: #fff; }
.cta-box { text-align: center; }
.cta-box p { color: #cbd5e1; margin: 8px auto 18px; max-width: 60ch; }
.site-footer { background: #020617; color: #cbd5e1; padding-top: 46px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 18px; }
.site-footer h3, .site-footer h4 { color: #fff; margin-bottom: 10px; }
.site-footer ul { list-style: none; display: grid; gap: 7px; }
.site-footer a { color: #fbbf24; text-decoration: none; }
.footer-bottom { margin-top: 24px; border-top: 1px solid rgba(255,255,255,.14); text-align: center; padding: 14px 0; font-size: .95rem; }
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; text-decoration: none; font-size: 1.4rem;
  background: #25D366; color: #fff; box-shadow: 0 10px 25px rgba(0,0,0,.2); z-index: 1100;
}
@media (max-width: 980px) {
  .hero-grid, .split, .authority-grid, .location-grid { grid-template-columns: 1fr; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .menu {
    position: absolute; right: 4%; top: 76px; background: #0f172a; border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px; padding: 12px; flex-direction: column; align-items: flex-start; width: min(280px, 92vw);
    display: none;
  }
  .menu.open { display: flex; }
  .cols-4, .cols-3, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
}
