/* =========================================
   NaturalLifeGuide – Main Stylesheet
   Font: Lora (headings) + DM Sans (body)
   Palette: Deep forest greens, warm cream, gold accents
   ========================================= */

:root {
  --green-900: #0d2010;
  --green-800: #1a3a1e;
  --green-700: #2d5c35;
  --green-600: #3d7a47;
  --green-500: #4e9a5a;
  --green-400: #6db87a;
  --green-300: #9ad4a4;
  --green-200: #c8eacc;
  --green-100: #eaf5eb;
  --green-50:  #f4fbf5;

  --gold: #c8973a;
  --gold-light: #e8b85c;

  --cream: #faf8f4;
  --cream-dark: #f0ece4;

  --text-dark: #1a2a1c;
  --text-mid: #3a5040;
  --text-light: #6a8070;
  --text-muted: #9aaa9e;

  --border: #d4e8d8;
  --border-light: #eaf3ec;

  --shadow-sm: 0 2px 8px rgba(30, 80, 40, 0.08);
  --shadow-md: 0 4px 20px rgba(30, 80, 40, 0.12);
  --shadow-lg: 0 8px 40px rgba(30, 80, 40, 0.16);

  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  color: var(--green-900);
  line-height: 1.3;
}

a { color: var(--green-600); text-decoration: none; }
a:hover { color: var(--green-500); }

/* ---- LAYOUT ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.main-content { min-height: calc(100vh - 180px); }

/* ---- HEADER / NAV ---- */
.site-header {
  background: var(--green-900);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-leaf { font-size: 1.4rem; }
.logo-text { font-family: 'Lora', serif; font-size: 1.1rem; color: var(--green-200); }
.logo-text strong { color: var(--gold-light); }

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  color: var(--green-200);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
.nav-links a:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

.nav-search {
  display: flex;
  gap: 8px;
}
.nav-search input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  width: 200px;
  outline: none;
  transition: all 0.2s;
}
.nav-search input::placeholder { color: var(--green-300); }
.nav-search input:focus { background: rgba(255,255,255,0.15); border-color: var(--green-400); width: 240px; }
.nav-search button {
  background: var(--green-500);
  color: white;
  border: none;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.nav-search button:hover { background: var(--green-400); }

/* ---- HERO ---- */
/* ═══════════════════════════════════════
   HERO — Layout centralizado limpo
═══════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 50%, #162d1a 100%);
  padding: 80px 24px 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(78,154,90,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-content {
  width: 100%;
}
/* Esconder os cards flutuantes — substituídos por stats */
.hero-visual { display: none !important; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(78, 154, 90, 0.2);
  border: 1px solid rgba(109, 184, 122, 0.3);
  color: var(--green-300);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Lora', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: white;
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero-subtitle {
  color: var(--green-200);
  font-size: 1.15rem;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Search Bar */
.hero-search, .inline-search { width: 100%; }
.search-wrapper {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  border: 2px solid transparent;
  transition: border-color 0.2s;
  max-width: 640px;
  margin: 0 auto;
}
.search-wrapper:focus-within { border-color: var(--green-400); }
.search-icon { padding: 0 14px 0 20px; font-size: 1.1rem; color: var(--green-500); }
.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 18px 8px;
  font-size: 1rem;
  color: var(--text-dark);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
}
.search-input::placeholder { color: var(--text-muted); }
.search-btn {
  background: var(--green-600);
  color: white;
  border: none;
  padding: 18px 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}
.search-btn:hover { background: var(--green-500); }

.search-examples {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--green-300);
  font-size: 0.85rem;
}
.example-tag {
  background: rgba(109, 184, 122, 0.15);
  border: 1px solid rgba(109, 184, 122, 0.25);
  color: var(--green-200);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.example-tag:hover { background: rgba(109, 184, 122, 0.3); color: white; }

/* Stats bar abaixo do search */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-300);
  margin-bottom: 2px;
  font-family: 'DM Sans', sans-serif;
}

@media (max-width: 600px) {
  .hero { padding: 56px 20px 48px; }
  .hero-stats { gap: 24px; }
  .search-btn { padding: 18px 18px; font-size: 0.9rem; }
}



/* ---- SECTIONS ---- */
.section-title {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  color: var(--green-900);
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 12px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 50px; height: 3px;
  background: var(--green-500);
  border-radius: 2px;
}

/* ---- CATEGORY CARDS ---- */
.categories-section { padding: 64px 0; background: white; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  background: var(--green-50);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-decoration: none;
  text-align: center;
  transition: all 0.25s;
  gap: 8px;
}
.category-card:hover {
  background: var(--green-100);
  border-color: var(--green-400);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cat-icon { font-size: 2rem; }
.category-card strong { color: var(--green-900); font-size: 0.95rem; }
.category-card span { color: var(--text-light); font-size: 0.82rem; }

/* ---- TOPICS / RESULTS GRID ---- */
.topics-section, .recent-section { padding: 64px 0; }
.topics-section { background: var(--cream-dark); }

.topics-grid, .results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.topic-card, .result-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.2s;
}
.topic-card:hover, .result-card:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.topic-category, .result-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-600);
  background: var(--green-50);
  border: 1px solid var(--green-200);
  padding: 3px 10px;
  border-radius: 999px;
  width: fit-content;
}

.topic-card h3, .result-title {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.result-desc { color: var(--text-light); font-size: 0.88rem; line-height: 1.5; }
.topic-views, .result-views { color: var(--text-muted); font-size: 0.8rem; margin-top: auto; }

.result-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.result-link { margin-left: auto; color: var(--green-600); font-weight: 600; }

/* ---- RECENT GRID ---- */
.recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.recent-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-decoration: none;
  transition: all 0.2s;
}
.recent-card:hover { border-color: var(--green-400); box-shadow: var(--shadow-sm); }
.recent-card h3 { font-family: 'Lora', serif; font-size: 0.95rem; color: var(--text-dark); margin: 6px 0; }
.recent-category { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; color: var(--green-600); letter-spacing: 0.05em; }
.recent-card time { font-size: 0.8rem; color: var(--text-muted); }

/* ---- HOW IT WORKS ---- */
.how-section { padding: 64px 0; background: var(--green-900); }
.how-section .section-title { color: white; }
.how-section .section-title::after { background: var(--gold); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.step {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.step-num {
  width: 48px; height: 48px;
  background: var(--green-600);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700; color: white;
  margin: 0 auto 16px;
}
.step h3 { color: white; font-family: 'Lora', serif; margin-bottom: 8px; }
.step p { color: var(--green-200); font-size: 0.9rem; line-height: 1.6; }

/* ---- SEARCH PAGE ---- */
.results-search-bar { padding: 32px 0 0; }
.inline-search .search-wrapper { max-width: 640px; }

.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
}
.pill {
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  background: white;
  border: 1px solid var(--border);
  transition: all 0.2s;
  text-decoration: none;
}
.pill:hover, .pill.active { background: var(--green-600); color: white; border-color: var(--green-600); }

.results-meta p { color: var(--text-light); margin-bottom: 20px; }

.no-results {
  text-align: center;
  padding: 60px 20px;
}
.no-results-icon { font-size: 3rem; margin-bottom: 16px; }
.no-results h2 { font-family: 'Lora', serif; color: var(--text-dark); margin-bottom: 12px; }
.no-results p, .no-results-sub { color: var(--text-light); margin-bottom: 8px; }

.category-title {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  margin-bottom: 28px;
}
.category-title span { color: var(--text-muted); font-size: 1rem; font-weight: 400; }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 0;
}
.page-btn {
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-mid);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
}
.page-btn:hover, .page-btn.active { background: var(--green-600); color: white; border-color: var(--green-600); }
.page-info { color: var(--text-muted); font-size: 0.85rem; }

/* ---- GUIDE PAGE ---- */
.breadcrumb { background: white; border-bottom: 1px solid var(--border); padding: 12px 0; }
.breadcrumb-list { display: flex; gap: 8px; list-style: none; font-size: 0.85rem; }
.breadcrumb-list li { display: flex; align-items: center; gap: 8px; }
.breadcrumb-list li:not(:last-child)::after { content: '›'; color: var(--text-muted); }
.breadcrumb-list a { color: var(--green-600); }
.breadcrumb-list [aria-current] { color: var(--text-muted); }

.guide-page { padding: 40px 0 64px; }

.guide-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .guide-layout { grid-template-columns: 1fr; }
}

/* Guide header */
.guide-header { margin-bottom: 32px; }
.guide-category-badge {
  display: inline-block;
  background: var(--green-100);
  border: 1px solid var(--green-200);
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.guide-h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 12px; }
.guide-meta { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; flex-wrap: wrap; }
.guide-sep { color: var(--border); }
.guide-ai-badge { color: var(--green-600); font-weight: 500; }
.guide-meta-desc { color: var(--text-mid); font-size: 1rem; line-height: 1.6; border-left: 3px solid var(--green-400); padding-left: 16px; }

/* Guide body */
.guide-body { font-size: 1rem; line-height: 1.8; color: var(--text-dark); }
.guide-body h2 { font-family: 'Lora', serif; font-size: 1.4rem; color: var(--green-900); margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border-light); }
.guide-body p { margin-bottom: 16px; }
.guide-body ul, .guide-body ol { padding-left: 24px; margin-bottom: 16px; }
.guide-body li { margin-bottom: 8px; }

/* Resource boxes */
.resource-box {
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.resource-box h3 { font-size: 1rem; margin-bottom: 12px; }
.resource-box ul { padding-left: 20px; }
.resource-box li { margin-bottom: 6px; font-size: 0.95rem; }
.vitamins-box { background: #f0f7ff; border: 1px solid #c8dff8; }
.vitamins-box h3 { color: #2563ab; }
.foods-box { background: #f0fff4; border: 1px solid #c8f0d4; }
.foods-box h3 { color: #166534; }
.lifestyle-box { background: #fffbf0; border: 1px solid #f0e4c8; }
.lifestyle-box h3 { color: #92580a; }
.teas-box { background: #f0f8ff; border: 1px solid #c8e4f8; }
.teas-box h3 { color: #1a5a7a; }

.quick-highlights {
  background: var(--green-50);
  border: 2px solid var(--green-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
}
.quick-highlights h3 { color: var(--green-800); font-size: 0.95rem; margin-bottom: 10px; }
.highlights-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; }
.highlights-list li {
  background: var(--green-600);
  color: white;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

.precautions-box {
  background: #fff8f0;
  border: 1px solid #f0d8c0;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.precautions-box h3 { color: #92580a; margin-bottom: 8px; font-size: 1rem; }
.precautions-box p { color: #6a4020; font-size: 0.92rem; }

.references-box {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.references-box h3 { color: var(--text-mid); margin-bottom: 12px; font-size: 1rem; }
.references-box ol { padding-left: 20px; }
.references-box li { font-size: 0.85rem; color: var(--text-light); margin-bottom: 6px; }

/* FAQ */
.faq-section { margin-top: 40px; }
.faq-section > h2 { font-family: 'Lora', serif; font-size: 1.5rem; margin-bottom: 20px; }
.faq-list { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: white;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  gap: 16px;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--green-50); }
.faq-arrow { color: var(--green-500); font-size: 0.75rem; flex-shrink: 0; }
.faq-answer {
  display: none;
  padding: 0 24px 18px;
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.7;
  background: white;
}

/* Disclaimer */
.content-disclaimer {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 40px;
}
.content-disclaimer strong { color: var(--text-mid); }

/* Ad slots */
.ad-slot { margin: 24px 0; }

/* ---- SIDEBAR ---- */
.guide-sidebar { position: sticky; top: 80px; }

.sidebar-widget {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.sidebar-widget h3 { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 14px; }

/* TOC */
.toc-list { list-style: none; }
.toc-list li { border-bottom: 1px solid var(--border-light); }
.toc-list li:last-child { border-bottom: none; }
.toc-list a {
  display: block;
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--green-700);
  text-decoration: none;
  transition: color 0.15s;
}
.toc-list a:hover { color: var(--green-500); }

/* Affiliate */
.affiliate-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-decoration: none;
  margin-bottom: 8px;
  transition: all 0.2s;
}
.affiliate-card:hover { border-color: var(--green-400); background: var(--green-50); }
.affiliate-card img { width: 48px; height: 48px; object-fit: contain; border-radius: 6px; }
.aff-info { flex: 1; }
.aff-info strong { display: block; font-size: 0.88rem; color: var(--text-dark); }
.aff-info small { color: var(--text-muted); font-size: 0.78rem; }
.aff-source { display: inline-block; background: var(--green-100); color: var(--green-700); font-size: 0.68rem; font-weight: 700; padding: 2px 6px; border-radius: 4px; margin-top: 2px; }
.aff-arrow { color: var(--green-500); font-weight: 700; }
.affiliate-disclosure { font-size: 0.72rem; color: var(--text-muted); margin-top: 8px; line-height: 1.4; }

/* Sidebar search */
.sidebar-search-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  outline: none;
  margin-bottom: 8px;
  transition: border 0.2s;
}
.sidebar-search-input:focus { border-color: var(--green-400); }
.sidebar-search-btn {
  width: 100%;
  padding: 10px;
  background: var(--green-600);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.sidebar-search-btn:hover { background: var(--green-500); }

/* Related */
.related-section { padding: 48px 0; border-top: 1px solid var(--border); }
.related-section h2 { font-family: 'Lora', serif; font-size: 1.4rem; margin-bottom: 20px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.related-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-decoration: none;
  transition: all 0.2s;
}
.related-card:hover { border-color: var(--green-400); box-shadow: var(--shadow-sm); }
.related-category { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--green-600); }
.related-card h3 { font-family: 'Lora', serif; font-size: 0.92rem; color: var(--text-dark); }
.related-card span { font-size: 0.82rem; color: var(--green-600); font-weight: 600; margin-top: auto; }

/* Not found */
.not-found { text-align: center; padding: 80px 20px; }
.not-found h1 { font-family: 'Lora', serif; margin-bottom: 12px; }
.not-found p { color: var(--text-light); }
.not-found a { color: var(--green-600); font-weight: 600; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--green-900);
  color: var(--green-200);
  padding: 60px 0 0;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}
@media (max-width: 768px) { .footer-container { grid-template-columns: 1fr; } }

.footer-brand .logo { margin-bottom: 12px; }
.footer-tagline { color: var(--green-300); font-size: 0.88rem; line-height: 1.6; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col h4 { color: white; font-family: 'Lora', serif; font-size: 0.95rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--green-300); font-size: 0.88rem; transition: color 0.15s; }
.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-disclaimer { font-size: 0.78rem; color: var(--green-300); line-height: 1.6; margin-bottom: 8px; }
.footer-disclaimer strong { color: var(--green-200); }
.footer-copy { font-size: 0.78rem; color: var(--green-400); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-search input { width: 130px; }
  .nav-search input:focus { width: 150px; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 0.97rem; }
  .search-btn { padding: 16px 18px; font-size: 0.9rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .guide-layout { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .topics-grid, .results-grid { grid-template-columns: 1fr; }
}
