/* =============================================
   INOVA LASER MED — MAIN STYLESHEET
   Versão WordPress do tema React/Tailwind
   ============================================= */

/* ---------- Variáveis de cor ---------- */
:root {
  /* Clinic Blue Palette */
  --blue-50:  #f0f4f8;
  --blue-100: #d9e2ec;
  --blue-200: #bcccdc;
  --blue-300: #9fb3c8;
  --blue-400: #829ab1;
  --blue-500: #627d98;
  --blue-600: #486581;
  --blue-700: #334e68;
  --blue-800: #243b53;
  --blue-900: #102a43;

  /* Clinic Gold Palette */
  --gold-50:  #fffbeb;
  --gold-100: #fef3c7;
  --gold-200: #fde68a;
  --gold-300: #fcd34d;
  --gold-400: #fbbf24;
  --gold-500: #f59e0b;
  --gold-600: #d97706;
  --gold-700: #b45309;

  /* General */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --red-600: #dc2626;
  --green-600: #16a34a;
  --green-700: #15803d;

  --radius: 0.5rem;
  --container-max: 1400px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue-800);
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-500);
  color: var(--white);
  border-color: var(--gold-500);
}
.btn-gold:hover { background: var(--gold-600); border-color: var(--gold-600); color: var(--white); text-decoration: none; }

.btn-blue {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
}
.btn-blue:hover { background: var(--blue-700); border-color: var(--blue-700); color: var(--white); text-decoration: none; }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--blue-800); text-decoration: none; }

.btn-outline-blue {
  background: transparent;
  color: var(--blue-600);
  border-color: var(--blue-600);
}
.btn-outline-blue:hover { background: var(--blue-600); color: var(--white); text-decoration: none; }

.btn-green {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
}
.btn-green:hover { background: var(--green-700); border-color: var(--green-700); color: var(--white); text-decoration: none; }

.btn-lg { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--blue-700);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.top-bar-whatsapp {
  background: var(--green-600);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s;
}
.top-bar-whatsapp:hover { background: var(--green-700); color: var(--white); text-decoration: none; }

/* ---------- Navigation ---------- */
.site-nav {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 40;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img { height: 3rem; width: 3rem; object-fit: contain; }
.nav-logo-text h1 {
  font-size: 1.4rem;
  color: var(--blue-800);
  line-height: 1;
  margin: 0;
}
.nav-logo-text p {
  font-size: 0.8rem;
  color: var(--blue-600);
  margin: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-link {
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--blue-600); text-decoration: none; }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -0.375rem;
  left: 0; right: 0;
  height: 2px;
  background: var(--blue-600);
  border-radius: 9999px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  padding: 0;
  transition: color 0.2s;
}
.nav-dropdown-toggle:hover { color: var(--blue-600); }
.nav-dropdown-toggle svg { transition: transform 0.2s; }
.nav-dropdown.open .nav-dropdown-toggle { color: var(--blue-600); }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 14rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 0.5rem 0;
  z-index: 50;
  animation: fadeInDown 0.2s ease;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover { background: var(--blue-50); color: var(--blue-600); text-decoration: none; }

/* Mobile menu button */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-700);
  padding: 0.5rem;
}
.nav-mobile-toggle:hover { color: var(--blue-600); }

/* Mobile menu */
.nav-mobile-menu {
  display: none;
  border-top: 1px solid var(--gray-200);
  padding: 1rem 0;
  max-height: 70vh;
  overflow-y: auto;
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-link {
  display: block;
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: background 0.15s;
}
.nav-mobile-link:hover { background: var(--blue-50); color: var(--blue-600); text-decoration: none; }
.nav-mobile-accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: var(--gray-700);
  background: none;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}
.nav-mobile-accordion-btn svg { transition: transform 0.2s; }
.nav-mobile-accordion-btn.open svg { transform: rotate(180deg); }
.nav-mobile-sub {
  display: none;
  padding-left: 1rem;
}
.nav-mobile-sub.open { display: block; }
.nav-mobile-sub a {
  display: block;
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: background 0.15s;
}
.nav-mobile-sub a:hover { background: var(--blue-50); color: var(--blue-600); text-decoration: none; }

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blue-800);
  color: var(--white);
}
.footer-inner {
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo-badge {
  width: 3rem; height: 3rem;
  background: var(--gold-500);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.25rem; color: var(--white);
  flex-shrink: 0;
}
.footer-brand-name h3 { color: var(--white); font-size: 1.5rem; margin: 0; }
.footer-brand-name p { color: var(--blue-200); font-size: 0.875rem; margin: 0; }
.footer-desc { color: var(--blue-100); max-width: 32rem; line-height: 1.7; font-size: 0.95rem; }
.footer-col h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 1rem; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--blue-100); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); text-decoration: none; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem; color: var(--blue-100);
}
.footer-contact-item svg { color: var(--gold-400); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid var(--blue-700);
  padding: 2rem 0;
  text-align: center;
  color: var(--blue-200);
  font-size: 0.875rem;
}

/* ---------- WhatsApp Float Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  background: var(--green-600);
  color: var(--white);
  width: 3.5rem; height: 3.5rem;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover { background: var(--green-700); transform: scale(1.08); color: var(--white); text-decoration: none; }
.whatsapp-float svg { width: 1.75rem; height: 1.75rem; }

/* ---------- Hero Sections ---------- */
.hero {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-600) 100%);
  color: var(--white);
  padding: 5rem 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 { color: var(--white); font-size: 2.5rem; margin-bottom: 1.25rem; line-height: 1.15; }
.hero h1 .accent { color: var(--gold-400); }
.hero p { font-size: 1.125rem; color: var(--blue-100); margin-bottom: 2rem; line-height: 1.7; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-img img { border-radius: var(--radius); box-shadow: 0 12px 40px rgba(0,0,0,0.25); width: 100%; }

/* Hero centered (inner pages) */
.hero-center {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-600) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.hero-center h1 { color: var(--white); font-size: 2.25rem; margin-bottom: 1rem; }
.hero-center h1 .accent { color: var(--gold-400); }
.hero-center p { font-size: 1.1rem; color: var(--blue-100); max-width: 40rem; margin: 0 auto; line-height: 1.7; }

/* ---------- Sections ---------- */
.section { padding: 4rem 0; }
.section-gray { background: var(--gray-50); }
.section-blue-light { background: var(--blue-50); }
.section-blue-dark { background: var(--blue-800); color: var(--white); }
.section-white { background: var(--white); }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 { font-size: 2rem; color: var(--blue-800); margin-bottom: 0.75rem; }
.section-title p { font-size: 1.1rem; color: var(--gray-500); max-width: 42rem; margin: 0 auto; }
.section-blue-dark .section-title h2 { color: var(--white); }
.section-blue-dark .section-title p { color: var(--blue-100); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.14); transform: translateY(-3px); }
.card-body { padding: 1.5rem; }

.card-blue-light { background: var(--blue-50); box-shadow: none; }
.card-blue-light:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

/* ---------- Grids ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

/* ---------- Treatment Cards (Homepage) ---------- */
.treatment-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}
.treatment-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.12); transform: translateY(-3px); }
.treatment-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.treatment-card h3 { font-size: 1.15rem; color: var(--blue-800); margin-bottom: 0.75rem; }
.treatment-card p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 1rem; }
.treatment-link { display: inline-flex; align-items: center; gap: 0.25rem; color: var(--blue-600); font-weight: 500; font-size: 0.9rem; }
.treatment-link:hover { color: var(--blue-800); text-decoration: none; }

/* ---------- Differentials / Why Choose Us ---------- */
.differential {
  text-align: center;
}
.differential-icon {
  display: flex; justify-content: center; margin-bottom: 1rem;
}
.differential-icon svg { width: 2rem; height: 2rem; color: var(--gold-500); }
.differential h3 { font-size: 1.15rem; color: var(--blue-800); margin-bottom: 0.5rem; }
.differential p { font-size: 0.95rem; color: var(--gray-500); }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--blue-50);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.testimonial-stars svg { width: 1.25rem; height: 1.25rem; color: var(--gold-500); fill: var(--gold-500); }
.testimonial-text { font-style: italic; color: var(--gray-700); margin-bottom: 1rem; }
.testimonial-author { font-weight: 600; color: var(--blue-800); }

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--blue-800);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); font-size: 2rem; margin-bottom: 1rem; }
.cta-section p { color: var(--blue-100); font-size: 1.1rem; max-width: 40rem; margin: 0 auto 2rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---------- Lipedema Highlight ---------- */
.lipedema-section .two-col { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.lipedema-section ul { margin: 1.5rem 0; }
.lipedema-section ul li {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem; color: var(--gray-600);
}
.dot { width: 0.5rem; height: 0.5rem; background: var(--gold-500); border-radius: 9999px; flex-shrink: 0; }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 48rem; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.25rem;
  background: none; border: none;
  font-size: 1rem; font-weight: 600;
  color: var(--blue-800);
  cursor: pointer; text-align: left;
  font-family: inherit;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--blue-50); }
.faq-question svg { flex-shrink: 0; transition: transform 0.2s; color: var(--blue-600); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
}
.faq-item.open .faq-answer { display: block; }

/* ---------- Benefits / Checklist ---------- */
.checklist { display: flex; flex-direction: column; gap: 0.75rem; }
.checklist-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.95rem; color: var(--gray-700);
}
.check-icon { color: var(--green-600); flex-shrink: 0; margin-top: 2px; }
.check-icon svg { width: 1.25rem; height: 1.25rem; }

/* ---------- Steps ---------- */
.steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step { display: flex; align-items: flex-start; gap: 1rem; }
.step-number {
  width: 2.5rem; height: 2.5rem;
  background: var(--blue-800);
  color: var(--white);
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.step-content h3 { font-size: 1.05rem; color: var(--blue-800); margin-bottom: 0.25rem; }
.step-content p { font-size: 0.9rem; color: var(--gray-600); }

/* ---------- Stats Bar ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat { text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--gold-400); line-height: 1; }
.stat-label { font-size: 0.875rem; color: var(--blue-100); margin-top: 0.25rem; }
.stats-section { background: var(--blue-800); padding: 3rem 0; }

/* ---------- Alert / Notice boxes ---------- */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.alert-blue { background: var(--blue-50); border-left: 4px solid var(--blue-600); color: var(--blue-800); }
.alert-gold { background: var(--gold-50); border-left: 4px solid var(--gold-500); color: var(--blue-900); }
.alert-red { background: #fef2f2; border-left: 4px solid var(--red-600); color: #7f1d1d; }

/* ---------- Badge ---------- */
.badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-gold { background: var(--gold-100); color: var(--gold-700); }
.badge-blue { background: var(--blue-100); color: var(--blue-700); }
.badge-green { background: #dcfce7; color: #15803d; }

/* ---------- Info Cards (contact etc) ---------- */
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.info-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.info-item svg { color: var(--blue-600); flex-shrink: 0; margin-top: 2px; }
.info-item strong { color: var(--blue-800); font-size: 0.95rem; }
.info-item p { font-size: 0.9rem; color: var(--gray-600); margin: 0; }

/* ---------- Blog / Article ---------- */
.article-hero { background: var(--blue-800); color: var(--white); padding: 3rem 0; }
.article-hero h1 { color: var(--white); font-size: 1.875rem; margin-bottom: 1rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.875rem; color: var(--blue-200); margin-bottom: 1rem; }
.article-meta span { display: flex; align-items: center; gap: 0.375rem; }
.article-body { max-width: 48rem; margin: 0 auto; padding: 3rem 1.5rem; }
.article-body h2 { font-size: 1.5rem; color: var(--blue-800); margin: 2rem 0 1rem; }
.article-body h3 { font-size: 1.2rem; color: var(--blue-800); margin: 1.5rem 0 0.75rem; }
.article-body p { color: var(--gray-700); margin-bottom: 1rem; line-height: 1.8; }
.article-body ul { padding-left: 1.25rem; margin-bottom: 1rem; list-style: disc; }
.article-body ul li { color: var(--gray-700); margin-bottom: 0.5rem; line-height: 1.7; }
.toc {
  background: var(--blue-50);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.toc h3 { font-size: 1rem; color: var(--blue-800); margin-bottom: 0.75rem; }
.toc ol { padding-left: 1.25rem; list-style: decimal; }
.toc ol li { margin-bottom: 0.375rem; }
.toc ol li a { color: var(--blue-600); font-size: 0.9rem; }

/* ---------- Comparison Table ---------- */
.comparison-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; }
.comparison-table th, .comparison-table td { padding: 0.75rem 1rem; border: 1px solid var(--gray-200); text-align: left; }
.comparison-table th { background: var(--blue-800); color: var(--white); font-weight: 600; }
.comparison-table tr:nth-child(even) { background: var(--gray-50); }

/* ---------- Author Box ---------- */
.author-box {
  background: var(--blue-50);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; gap: 1.25rem;
  align-items: flex-start;
  margin-top: 2.5rem;
}
.author-avatar {
  width: 4rem; height: 4rem;
  background: var(--blue-800);
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.25rem; color: var(--white);
  flex-shrink: 0;
}
.author-info h4 { font-size: 1.05rem; color: var(--blue-800); margin-bottom: 0.25rem; }
.author-info p { font-size: 0.875rem; color: var(--gray-600); }

/* ---------- Related Links ---------- */
.related-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.related-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.4rem 0.875rem;
  border: 1px solid var(--blue-200);
  border-radius: 9999px;
  font-size: 0.8rem;
  color: var(--blue-600);
  transition: all 0.2s;
}
.related-link:hover { background: var(--blue-600); color: var(--white); border-color: var(--blue-600); text-decoration: none; }

/* ---------- Location Neighborhoods ---------- */
.neighborhood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.neighborhood-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; color: var(--gray-700);
  padding: 0.5rem 0.75rem;
  background: var(--blue-50);
  border-radius: var(--radius);
}
.neighborhood-item::before { content: '📍'; font-size: 0.875rem; }

/* ---------- Distance Cards ---------- */
.distance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.distance-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.distance-card .city { font-weight: 600; color: var(--blue-800); font-size: 0.95rem; }
.distance-card .time { font-size: 1.25rem; font-weight: 700; color: var(--gold-600); }
.distance-card .via { font-size: 0.75rem; color: var(--gray-500); }

/* ---------- 404 Page ---------- */
.not-found { text-align: center; padding: 6rem 0; }
.not-found h1 { font-size: 6rem; color: var(--blue-200); }
.not-found h2 { font-size: 2rem; color: var(--blue-800); margin-bottom: 1rem; }
.not-found p { font-size: 1.1rem; color: var(--gray-500); margin-bottom: 2rem; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--blue-800); margin-bottom: 0.375rem; }
.form-control {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 1rem; font-family: inherit;
  color: var(--gray-700);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(72, 101, 129, 0.15);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 6rem; }
select.form-control { cursor: pointer; }
.form-note { font-size: 0.8rem; color: var(--gray-500); margin-top: 0.25rem; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: var(--blue-50);
  padding: 0.75rem 0;
  font-size: 0.875rem;
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; list-style: none; }
.breadcrumb li + li::before { content: '›'; color: var(--gray-400); margin-right: 0.5rem; }
.breadcrumb a { color: var(--blue-600); }
.breadcrumb span { color: var(--gray-500); }

/* ---------- Two-column layout helpers ---------- */
.two-col { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
.two-col-center { align-items: center; }
.three-col { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold-500); }
.text-blue { color: var(--blue-600); }
.text-blue-dark { color: var(--blue-800); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray-500); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.font-bold { font-weight: 700; }
.gap-1 { gap: 0.5rem; }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .hero h1 { font-size: 3rem; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .distance-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr 1fr; }
  .three-col { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
  .neighborhood-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 3.75rem; }
  .hero-img { display: block; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .nav-links { display: flex; }
  .nav-mobile-toggle { display: none; }
  .top-bar { display: block; }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
  .neighborhood-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1023px) {
  .top-bar { display: none; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
}

/* ---------- Print ---------- */
@media print {
  .site-nav, .top-bar, .site-footer, .whatsapp-float { display: none; }
}
