:root {
  --ocean-mist: #8fa9be;
  --deep-slate: #3f5e7a;
  --soft-orchid: #b695d6;
  --muted-iris: #8c90ae;
  --stormy-blue: #747891;
  --blue: #3f5e7a;
  --blue-hover: #2e4a62;
  --blue-light: #e4eef5;
  --blue-mid: #b8ceda;
  --accent-light: #f0e9f8;
  --ink: #1c2e3d;
  --body-text: #4a5e6e;
  --muted: #747891;
  --border: #cddae6;
  --surface: #ebf2f7;
  --white: #fff;
  --navy: #1c2e3d;
  --shadow-sm: 0 2px 10px rgba(28, 46, 61, 0.07);
  --shadow-md: 0 8px 28px rgba(28, 46, 61, 0.1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { display: block; }
h1, h2, h3 { margin-top: 0; color: var(--ink); }
p { margin-top: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.inner {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.page-shell {
  flex: 1 0 auto;
  min-height: 60vh;
}

.page-card {
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(143, 169, 190, 0.24);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.section-label {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-sub {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
  margin-bottom: 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 26px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  transition: background 160ms, transform 160ms, box-shadow 160ms;
}

.btn:hover { transform: translateY(-2px); }

.btn-outline {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-outline:hover { background: var(--blue-light); }

.btn-whatsapp,
.nav-cta {
  background: linear-gradient(135deg, #2e4a62 0%, var(--deep-slate) 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(63, 94, 122, 0.32);
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--deep-slate) 0%, var(--ocean-mist) 100%);
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
}

.brand-info strong,
.brand-info small { display: block; }
.brand-info strong { font-size: 0.92rem; color: var(--ink); }
.brand-info small { font-size: 0.7rem; color: var(--muted); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta .btn-icon {
  display: block;
}

.site-nav a:hover:not(.nav-cta) {
  background: var(--surface);
}

.front-static-section,
.blog-section,
.blog-latest,
.blog-section-page,
.article-shell {
  padding: clamp(52px, 7vw, 92px) 0;
}

.site-footer {
  margin-top: auto;
  background: var(--navy);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand strong { color: var(--white); }
.footer-brand p { color: rgba(255, 255, 255, 0.6); }
.footer-credit a { text-decoration: underline; }

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 140ms;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.social-links svg,
.social-links img {
  width: 18px;
  height: 18px;
}

.social-links svg {
  fill: rgba(255, 255, 255, 0.7);
}

@media (max-width: 720px) {
  .inner { width: calc(100% - 32px); }

  .header-inner {
    gap: 12px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-info {
    min-width: 0;
  }

  .brand-info strong,
  .brand-info small {
    white-space: nowrap;
  }

  .brand-info strong {
    font-size: 0.84rem;
  }

  .brand-info small {
    font-size: 0.64rem;
  }

  .site-nav {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }

  .site-nav > a:not(.nav-cta),
  .site-nav > .menu-item,
  .site-nav > .menu,
  .site-nav > ul {
    display: none;
  }
}
