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

:root {
  --bg: #ffffff;
  --bg-soft: #f4f7f5;
  --border: #e4eae7;
  --text: #1a2332;
  --muted: #6b7a8d;
  --primary: #16a34a;
  --primary-light: #dcfce7;
  --primary-dark: #15803d;
  --accent: #0ea5e9;
  --accent-light: #e0f2fe;
  --red-light: #fee2e2;
  --purple-light: #ede9fe;
  --warm-light: #fef3c7;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 68px;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.logo .material-icons-round { font-size: 1.5rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); background: var(--bg-soft); }

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
}

.nav-cta:hover { background: var(--primary-dark) !important; }

/* ── HERO ── */
.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=1400&q=80');
  background-size: cover;
  background-position: center 35%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,24,16,0.80) 0%, rgba(15,23,42,0.65) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.13);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(14px);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-badge .material-icons-round { font-size: 0.95rem; }

h1 {
  position: relative;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

h1 span { color: #86efac; }

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 1rem 2.2rem;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 8px 28px rgba(22,163,74,0.45);
}

.hero-cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(22,163,74,0.55);
}

.hero-cta-btn .material-icons-round { font-size: 1.1rem; }

/* ── HERO CARDS ── */
.hero-cards-section { background: var(--bg-soft); padding: 0 2rem; }

.hero-cards-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 2rem 0 3rem;
}

/* ── SEARCH SECTION ── */
.search-section {
  background: #fff;
  padding: 4rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.search-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #adb5bd;
  display: flex;
}

.search-wrap input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3.2rem;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  font-size: 0.975rem;
  font-family: inherit;
  outline: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-wrap input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(22,163,74,0.1);
}

.search-wrap input::placeholder { color: #adb5bd; }

/* ── STATS ── */
.stats-strip {
  display: flex;
  justify-content: center;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.75rem 3rem;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.stat-icon .material-icons-round { font-size: 1.35rem; }
.stat-num { font-size: 1.55rem; font-weight: 700; color: var(--text); letter-spacing: -0.5px; line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--muted); margin-top: 0.15rem; }

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 5rem 2rem; }
.bg-soft { background: var(--bg-soft); }
.section-header { margin-bottom: 2.5rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.section-label .material-icons-round { font-size: 0.9rem; }

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.15;
}

.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.7; }

/* ── ARTICLE CARDS ── */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.article-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.09);
  border-color: transparent;
}

.card-image { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.22rem 0.7rem;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
  margin-bottom: 0.8rem;
}

.card-tag .material-icons-round { font-size: 0.8rem; }

.tag-saude    { background: var(--red-light);    color: #dc2626; }
.tag-mental   { background: var(--purple-light);  color: #7c3aed; }
.tag-sono     { background: var(--accent-light);  color: #0369a1; }
.tag-digestao { background: var(--primary-light); color: var(--primary-dark); }
.tag-relacao  { background: var(--warm-light);    color: #b45309; }
.tag-dor      { background: var(--warm-light);    color: #b45309; }

.card-title { font-size: 1rem; font-weight: 700; line-height: 1.4; color: var(--text); margin-bottom: 0.6rem; }
.card-excerpt { font-size: 0.875rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.btn-ver-mais {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-ver-mais .material-icons-round { font-size: 0.9rem; }
.btn-ver-mais:hover { background: var(--primary); color: #fff; }

.read-time { display: flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; color: var(--muted); }
.read-time .material-icons-round { font-size: 0.9rem; }

/* ── CATEGORIES ── */
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.cat-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.cat-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 28px rgba(22,163,74,0.1);
  transform: translateY(-3px);
}

.cat-icon-wrap { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.cat-icon-wrap .material-icons-round { font-size: 1.6rem; }

.icon-red    { background: var(--red-light);    color: #dc2626; }
.icon-purple { background: var(--purple-light);  color: #7c3aed; }
.icon-blue   { background: var(--accent-light);  color: #0369a1; }
.icon-green  { background: var(--primary-light); color: var(--primary-dark); }
.icon-orange { background: var(--warm-light);    color: #b45309; }

.cat-name  { font-size: 1rem; font-weight: 700; color: var(--text); }
.cat-desc  { font-size: 0.825rem; color: var(--muted); line-height: 1.6; }
.cat-count { display: flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; font-weight: 600; color: var(--primary); }
.cat-count .material-icons-round { font-size: 0.85rem; }

/* ── HOW IT WORKS ── */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; position: relative; }

.how-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.6% + 28px);
  right: calc(16.6% + 28px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--primary) 0, var(--primary) 8px, transparent 8px, transparent 16px);
  opacity: 0.25;
}

.how-step { text-align: center; }

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(22,163,74,0.3);
}

.step-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.step-desc  { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ── DISCLAIMER ── */
.disclaimer {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.825rem;
  color: #92400e;
  line-height: 1.6;
}

.disclaimer .material-icons-round { font-size: 1.1rem; color: #d97706; flex-shrink: 0; margin-top: 0.1rem; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, #16a34a 0%, #0ea5e9 100%);
  padding: 6rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 2.5rem; }

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--primary-dark);
  padding: 0.95rem 2.2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.btn-cta-white .material-icons-round { font-size: 1.1rem; }

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--bg-soft);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.contact-info p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.5rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 0.6rem;
}

.contact-detail .material-icons-round { font-size: 1.1rem; color: var(--primary); }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text); }

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
}

.form-group textarea { min-height: 130px; }

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-submit .material-icons-round { font-size: 1.1rem; }

.contact-success {
  background: var(--primary-light);
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
}

.contact-success .material-icons-round { color: var(--primary); }
.hidden { display: none !important; }

/* ── FOOTER ── */
footer {
  background: #1a2332;
  color: rgba(255,255,255,0.65);
  padding: 4rem 2rem 2.5rem;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.footer-logo .material-icons-round { color: var(--primary); }

.footer-desc { font-size: 0.85rem; line-height: 1.8; max-width: 300px; }

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.footer-links a .material-icons-round { font-size: 0.85rem; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

.footer-powered {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.footer-powered a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-powered a:hover { color: #fff; }

/* ── POSTS PAGE ── */
.posts-hero {
  background: var(--bg-soft);
  padding: 4rem 2rem 3rem;
  border-bottom: 1px solid var(--border);
}

.posts-hero-inner { max-width: 1140px; margin: 0 auto; }

.posts-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
  text-shadow: none;
}

.posts-hero p { color: var(--muted); font-size: 1rem; margin-bottom: 2rem; }

.category-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
}

.filter-btn .material-icons-round { font-size: 0.85rem; }

.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ── SINGLE POST ── */
.post-header {
  background: var(--bg-soft);
  padding: 3.5rem 2rem 0;
  border-bottom: 1px solid var(--border);
}

.post-header-inner { max-width: 800px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.15s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .material-icons-round { font-size: 0.85rem; }

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.post-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 1rem;
}

.post-excerpt {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.post-cover {
  width: 100%;
  max-width: 800px;
  height: 420px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  display: block;
  margin: 0 auto;
}

/* ── POST CONTENT ── */
.post-body { padding: 3rem 2rem 4rem; }

.post-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}

.post-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  margin: 2.5rem 0 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.post-content h2:first-child { margin-top: 0; border-top: none; }

.post-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.75rem 0 0.5rem;
}

.post-content p { margin-bottom: 1.25rem; }

.post-content ul,
.post-content ol {
  margin: 0 0 1.25rem 1.5rem;
}

.post-content li { margin-bottom: 0.45rem; line-height: 1.75; }

.post-content strong { color: var(--text); font-weight: 700; }

.post-content em { color: var(--muted); }

.post-disclaimer {
  max-width: 720px;
  margin: 2rem auto 0;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: #92400e;
  line-height: 1.6;
}

.post-disclaimer .material-icons-round { font-size: 1rem; color: #d97706; flex-shrink: 0; margin-top: 0.1rem; }

/* ── RELATED POSTS ── */
.related-section {
  background: var(--bg-soft);
  padding: 4rem 2rem;
  border-top: 1px solid var(--border);
}

.related-section .section-header { margin-bottom: 2rem; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 1000px; margin: 0 auto; }

/* ── 404 ── */
.not-found {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.not-found h1 {
  font-size: 5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -3px;
  text-shadow: none;
  margin-bottom: 0.5rem;
}

.not-found h2 { font-size: 1.5rem; color: var(--text); margin-bottom: 1rem; }
.not-found p  { color: var(--muted); margin-bottom: 2rem; }

/* ── COOKIE BANNER ── */
#_mm_consent {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid #e4eae7;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 2rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.07);
}

._mm_inner { max-width: 1000px; margin: 0 auto; display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
._mm_text { flex: 1; min-width: 260px; }

._mm_title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: #1a2332;
  margin-bottom: 0.35rem;
}

._mm_text p { font-size: 0.8rem; color: #6b7a8d; line-height: 1.65; margin: 0; }
._mm_text p strong { color: #1a2332; }
._mm_btns { display: flex; gap: 0.5rem; flex-shrink: 0; }

#_mm_accept {
  background: #16a34a; color: #fff; border: none;
  padding: 0.55rem 1.4rem; border-radius: 9px;
  font-size: 0.85rem; font-weight: 700; cursor: pointer;
  font-family: inherit; transition: background 0.2s;
}

#_mm_accept:hover { background: #15803d; }

#_mm_reject {
  background: transparent; color: #6b7a8d;
  border: 1px solid #e4eae7; padding: 0.55rem 1rem;
  border-radius: 9px; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: all 0.2s;
}

#_mm_reject:hover { border-color: #adb5bd; color: #1a2332; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid, .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cards-inner { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 2rem; }
  .how-grid::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stat { padding: 1.5rem 2rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .categories-grid { grid-template-columns: 1fr; }
  .articles-grid, .posts-grid { grid-template-columns: 1fr; }
  .hero-cards-inner { grid-template-columns: 1fr; }
  .stats-strip { flex-wrap: wrap; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); flex: 1; min-width: 50%; }
  .stat:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .container { padding: 3.5rem 1.25rem; }
  h1 { letter-spacing: -1px; }
  .hero { min-height: 60vh; padding: 4rem 1.25rem; }
  .post-cover { height: 220px; }
  .related-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  #_mm_consent { padding: 1rem 1.25rem; }
  ._mm_btns { width: 100%; }
  #_mm_accept, #_mm_reject { flex: 1; text-align: center; }
}
