/* ============================================================================
   CuidadorDeCriancas.com - Warm Editorial & Verified Trust Design System
   Refined Usability, Responsive Fluidity & A11y
   ============================================================================ */

/* 1. VARIÁVEIS E TOKENS DE DESIGN */
:root {
  /* Cores Principais: Terracota & Sálvia Botânico */
  --color-primary: #c25438;
  --color-primary-hover: #a8432b;
  --color-primary-light: #fdf2ee;
  --color-primary-dark: #8f331c;
  
  --color-sage: #1b4d3e;
  --color-sage-dark: #12352b;
  --color-sage-light: #e8f3ee;
  --color-sage-border: #bbd9cc;

  --color-navy: #1c1917;
  --color-navy-light: #f5f2ec;

  /* Estados e Selos Auditados */
  --color-success: #1b4d3e;
  --color-success-bg: #e8f3ee;
  --color-success-border: #bbd9cc;
  
  --color-warning: #d97706;
  --color-warning-bg: #fef3c7;
  --color-warning-border: #fde68a;

  --color-error: #dc2626;
  --color-error-bg: #fef2f2;
  --color-error-border: #fecaca;

  /* WhatsApp Oficial */
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #1ebd5a;

  /* Superfícies Orgânicas e Papel Linho */
  --bg-page: #faf8f5;
  --bg-card: #ffffff;
  --bg-subtle: #f3efea;
  --bg-sage-banner: #1b4d3e;
  
  --text-main: #1c1917;
  --text-muted: #57534e;
  --text-light: #8c857e;
  
  --border-light: #eae6df;
  --border-subtle: #d6d0c5;
  --border-focus: #c25438;

  /* Tipografia: Literata (Serif Display) + Outfit (Interface/Body) */
  --font-serif: 'Literata', Georgia, serif;
  --font-sans: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Elevações e Sombras Orgânicas */
  --shadow-sm: 0 1px 3px 0 rgba(28, 25, 23, 0.04);
  --shadow-md: 0 4px 8px -1px rgba(28, 25, 23, 0.06), 0 2px 4px -2px rgba(28, 25, 23, 0.04);
  --shadow-lg: 0 12px 20px -3px rgba(28, 25, 23, 0.08), 0 4px 6px -4px rgba(28, 25, 23, 0.03);
  --shadow-xl: 0 20px 30px -5px rgba(28, 25, 23, 0.1), 0 8px 12px -6px rgba(28, 25, 23, 0.04);

  /* Raios de Arredondamento */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transições */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 150ms var(--ease-spring);
  --transition-normal: 250ms var(--ease-spring);
}

/* 2. RESET E NORMAS DE USABILIDADE GERAIS */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* Redução de Movimento (A11y) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Foco Visível para Teclado (A11y) */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* Scrollbar Customizado */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-subtle);
}
::-webkit-scrollbar-thumb {
  background: #d6d0c5;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: #8c857e;
}

/* Seleção de Texto */
::selection {
  background-color: #fce7df;
  color: #8f331c;
}

/* Acessibilidade: Skip Link */
.skip-link {
  position: absolute;
  top: -60px;
  left: 20px;
  background: var(--text-main);
  color: #ffffff;
  padding: 10px 18px;
  z-index: 1000;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: top var(--transition-fast);
}
.skip-link:focus {
  top: 15px;
}

/* 3. CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 4. TIPOGRAFIA EDITORIAL */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  line-height: 1.25;
}

.font-serif {
  font-family: var(--font-serif);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-sage);
  background-color: var(--color-sage-light);
  border: 1px solid var(--color-sage-border);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

/* 5. BOTÕES E TOUCH TARGETS (>= 44px) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-normal);
  white-space: nowrap;
  font-family: var(--font-sans);
  user-select: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff !important;
  box-shadow: 0 2px 5px rgba(194, 84, 56, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(194, 84, 56, 0.35);
}

.btn-sage {
  background-color: var(--color-sage);
  color: #ffffff !important;
}

.btn-sage:hover {
  background-color: var(--color-sage-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border-subtle);
  color: var(--text-main) !important;
}

.btn-outline:hover {
  background-color: var(--bg-subtle);
  border-color: var(--text-muted);
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.btn-sm {
  min-height: 38px;
  padding: 6px 14px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  min-height: 48px;
  padding: 14px 28px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* 6. HEADER & NAVEGAÇÃO */
.site-header {
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-sage);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--color-primary);
  font-style: italic;
}

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

.nav-link {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-greeting {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Botão Hambúrguer Personalizado */
.menu-toggle-btn {
  display: none;
  background: none;
  border: 1px solid var(--border-subtle);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: space-around;
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* 7. HERO EDITORIAL ASSIMÉTRICO */
.hero-editorial {
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--border-light);
  background: radial-gradient(circle at top right, rgba(232, 243, 238, 0.6), transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-left h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 16px 0;
  color: var(--text-main);
}

.hero-left h1 span {
  color: var(--color-primary);
  font-style: italic;
}

.hero-left .hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Ficha de Busca Tátil */
.search-card-editorial {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.search-inputs-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr auto;
  gap: 12px;
}

.search-select, .search-input {
  width: 100%;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-subtle);
  transition: var(--transition-fast);
}

.search-select:focus, .search-input:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(194, 84, 56, 0.15);
}

.search-quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  align-items: center;
}

.quick-tag-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
}

.quick-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  background-color: var(--bg-subtle);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

.quick-tag:hover {
  background-color: var(--color-sage-light);
  color: var(--color-sage);
  border-color: var(--color-sage-border);
}

.hero-guarantees {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.hero-guarantees span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Coluna Direita: Passaporte de Confiança */
.card-passaporte {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.passaporte-badge-stamp {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--color-sage-light);
  border: 2px dashed var(--color-sage);
  color: var(--color-sage);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transform: rotate(3deg);
}

.passaporte-profile {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.passaporte-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.passaporte-info h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.passaporte-info .geo {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.passaporte-audits {
  background-color: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 20px;
}

.audit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-sage);
  margin-bottom: 6px;
}

.audit-item:last-child {
  margin-bottom: 0;
}

.passaporte-bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 20px;
}

.passaporte-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.passaporte-price .lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
}

.passaporte-price .val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
}

/* 8. SEÇÃO: AUDITORIA E PROVAS DE CONFIANÇA */
.section-audit-proof {
  padding: 72px 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.audit-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.audit-proof-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 12px 0 18px;
}

.audit-proof-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.audit-steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audit-step-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-sage);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* 9. VITRINE DE CUIDADORES */
.section-vitrine {
  padding: 72px 0;
}

.vitrine-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.vitrine-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
}

.vitrine-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.grid-cuidadores {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.card-cuidador {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
}

.card-cuidador:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-subtle);
}

.card-cuidador.is-pro {
  border-color: #fde68a;
  background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
}

.cuidador-top {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.cuidador-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-light);
  flex-shrink: 0;
}

.cuidador-name-block h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2px;
}

.cuidador-name-block .location {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cuidador-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-audit {
  background-color: var(--color-sage-light);
  color: var(--color-sage);
  border: 1px solid var(--color-sage-border);
}

.badge-pro {
  background-color: var(--color-warning-bg);
  color: var(--color-warning);
  border: 1px solid var(--color-warning-border);
}

.badge-chip {
  background-color: var(--bg-subtle);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

.cuidador-quote {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.cuidador-card-price .lbl {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 700;
}

.cuidador-card-price .val {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
}

/* 10. BANNER BOTÂNICO PARA PROFISSIONAIS */
.section-botanical-banner {
  background-color: var(--bg-sage-banner);
  color: #ffffff;
  padding: 72px 0;
}

.botanical-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.botanical-content {
  max-width: 660px;
}

.botanical-tag {
  background-color: rgba(255, 255, 255, 0.12);
  color: #fde68a;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 16px;
}

.botanical-content h2 {
  font-family: var(--font-serif);
  color: #ffffff;
  font-size: clamp(2rem, 4.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.botanical-content p {
  color: #d6e4dc;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* 11. BARRA FLUTUANTE DE AÇÃO MOBILE (STICKY CTA) */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-light);
  padding: 12px 20px max(12px, env(safe-area-inset-bottom));
  z-index: 99;
  box-shadow: 0 -4px 12px rgba(28, 25, 23, 0.08);
}

.sticky-mobile-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-mobile-price .lbl {
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 700;
}

.sticky-mobile-price .val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
}

/* 12. RODAPÉ */
.site-footer {
  background-color: #1c1917;
  color: #a8a29e;
  padding: 72px 0 36px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h4 {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #a8a29e;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #292524;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #78716c;
  flex-wrap: wrap;
  gap: 16px;
}

/* 13. DRAWER MOBILE */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(28, 25, 23, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: min(300px, 85vw);
  height: 100%;
  background: #faf8f5;
  z-index: 1001;
  padding: 24px;
  box-shadow: var(--shadow-xl);
  transition: right 300ms var(--ease-spring);
  display: flex;
  flex-direction: column;
}

.mobile-nav-drawer.open {
  right: 0;
}

.drawer-close-btn {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-main);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.mobile-nav-links a {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* 14. ADAPTAÇÃO RESPONSIVA E ERGONOMIA MOBILE */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .audit-proof-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .nav-links, .d-none-mobile {
    display: none !important;
  }
  .menu-toggle-btn {
    display: flex;
  }
  .search-inputs-row {
    grid-template-columns: 1fr;
  }
  .sticky-mobile-cta {
    display: block;
  }
}

@media (max-width: 480px) {
  .container, .container-narrow {
    padding: 0 16px;
  }
  .hero-editorial {
    padding: 40px 0 48px;
  }
  .search-card-editorial {
    padding: 16px;
  }
  .card-cuidador, .card-passaporte {
    padding: 20px;
  }
}
