:root {
  --primary: #12224e;
  --primary-dark: #0c1736;
  --accent: #c29b57;
  --text: #1a2236;
  --muted: #5d6578;
  --line: #e7eaf1;
  --white: #ffffff;
  --soft: #f6f8fc;
  --shadow: 0 18px 45px rgba(12, 23, 54, 0.10);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(194,155,87,.10), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fafbfe 100%);
}
a { color: inherit; text-decoration: none; }
p { margin: 0; line-height: 1.7; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.15; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line);
}
.topbar-inner, .footer-inner {
  min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-icon, .icon {
  width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); box-shadow: var(--shadow); font-size: 1.4rem;
}
.mini, .tag {
  text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; font-weight: 700; color: var(--accent);
}
.light { color: #f7dfb3; }
.brand h1 { font-size: clamp(1rem, 2vw, 1.35rem); }
.hero { padding: 56px 0 24px; }
.hero-grid, .details-grid, .contact-grid { display: grid; gap: 24px; align-items: center; }
.hero-grid { grid-template-columns: 1.1fr .9fr; }
.hero-text h2 { font-size: clamp(2.2rem, 4.8vw, 4.5rem); margin: 12px 0 18px; letter-spacing: -.04em; }
.lead { font-size: 1.05rem; max-width: 760px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.btn {
  min-height: 52px; padding: 0 24px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-weight: 700;
}
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; box-shadow: 0 14px 30px rgba(18,34,78,.20); }
.btn-secondary { background: #fff; color: var(--primary); border: 1px solid #d8dfec; }
.full { width: 100%; }
.card {
  background: rgba(255,255,255,.92); border: 1px solid rgba(227,232,242,.95); border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-panel { padding: 30px; }
.hero-panel h3 { font-size: clamp(1.5rem, 2vw, 2rem); margin: 10px 0 18px; }
.hero-panel ul { margin: 0 0 20px; padding-left: 20px; }
.hero-panel li { margin-bottom: 10px; color: var(--text); font-weight: 700; }
.panel-lines { display: grid; gap: 12px; }
.stats, .info-grid, .areas-grid { display: grid; gap: 18px; }
.stats { grid-template-columns: repeat(3, 1fr); }
.stat-card, .info-card, .area-card, .detail-card, .contact-card { padding: 26px; }
.stat-card strong { display: block; margin-bottom: 8px; }
.section { padding: 28px 0; }
.heading { max-width: 780px; margin-bottom: 22px; }
.center { text-align: center; margin-inline: auto; }
.heading h2, .detail-card h2, .emphasis-box h2, .contact-grid h2 { font-size: clamp(1.85rem, 3vw, 3rem); margin: 8px 0 12px; }
.info-grid, .areas-grid { grid-template-columns: repeat(3, 1fr); }
.info-card h3, .area-card h3 { margin: 16px 0 10px; }
.alt { background: linear-gradient(180deg, rgba(18,34,78,.03), rgba(194,155,87,.05)); }
.num { display: inline-block; font-size: 2.8rem; font-weight: 800; color: rgba(18,34,78,.12); margin-bottom: 10px; }
.details-grid { grid-template-columns: 1.05fr .95fr; }
.emphasis-box {
  padding: 34px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff;
}
.emphasis-box p { color: rgba(255,255,255,.88); }
.contact-grid { grid-template-columns: 1fr .95fr; }
.contact-line { display: flex; justify-content: space-between; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-line:last-of-type { margin-bottom: 22px; }
.contact-line strong { text-align: right; color: var(--text); }
.footer { padding: 28px 0 40px; }
.footer-inner { border-top: 1px solid var(--line); padding-top: 24px; align-items: flex-start; }
.floating-wa {
  position: fixed; right: 16px; bottom: 16px; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; font-size: 1.45rem; box-shadow: 0 18px 32px rgba(18,34,78,.22);
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .hero-grid, .stats, .info-grid, .areas-grid, .details-grid, .contact-grid { grid-template-columns: 1fr; }
  .topbar-inner, .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .container { width: min(1180px, calc(100% - 22px)); }
  .hero { padding-top: 36px; }
  .hero-panel, .stat-card, .info-card, .area-card, .detail-card, .contact-card, .emphasis-box { padding: 22px; }
  .contact-line { flex-direction: column; }
  .contact-line strong { text-align: left; }
}
