/* ─────────────────────────────────────────────
   TRANSPORTE INTERNACIONAL PET — CSS PRINCIPAL
   Paleta: Forest Green + Amber + White/Gray
   ───────────────────────────────────────────── */

:root {
  --green-900: #14532D;
  --green-800: #166534;
  --green-700: #15803D;
  --green-600: #16A34A;
  --green-100: #DCFCE7;
  --green-50:  #F0FDF4;
  --amber-600: #D97706;
  --amber-500: #F59E0B;
  --amber-100: #FEF3C7;
  --amber-50:  #FFFBEB;
  --gray-900:  #111827;
  --gray-700:  #374151;
  --gray-500:  #6B7280;
  --gray-300:  #D1D5DB;
  --gray-100:  #F3F4F6;
  --gray-50:   #F9FAFB;
  --white:     #FFFFFF;
  --red-600:   #DC2626;
  --red-50:    #FEF2F2;
  --blue-600:  #2563EB;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Merriweather', Georgia, serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --container: 1200px;
  --sidebar-w: 300px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--gray-900); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--green-900); }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Container ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ─────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green-600); color: var(--white);
  padding: 12px 24px; border-radius: var(--radius-sm); border: none;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: all .2s;
}
.btn-primary:hover { background: var(--green-700); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary.btn-wpp { background: #25D366; }
.btn-primary.btn-wpp:hover { background: #1ebe5a; }
.btn-primary.btn-large { padding: 16px 32px; font-size: 17px; }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--white); color: var(--green-700); border: 2px solid var(--green-600);
  padding: 11px 22px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; transition: all .2s;
}
.btn-secondary:hover { background: var(--green-50); color: var(--green-800); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; }

/* ─────────────────────────────────────────────
   BADGES
   ───────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; padding: 4px 10px;
  border-radius: 20px; font-size: 12px; font-weight: 600; white-space: nowrap;
}
.badge-moderada { background: var(--amber-100); color: #92400E; }
.badge-alta { background: var(--red-50); color: var(--red-600); }
.badge-muito-alta { background: #fce7e7; color: #991B1B; }
.badge-baixa { background: var(--green-100); color: var(--green-800); }
.badge-prazo { background: var(--gray-100); color: var(--gray-700); }
.badge-bloco { background: #EFF6FF; color: var(--blue-600); }
.badge-obrigatorio { background: var(--red-50); color: var(--red-600); font-size: 12px; font-weight: 600; padding: 2px 8px; border-radius: 4px; }
.badge-recomendado { background: var(--amber-100); color: #92400E; font-size: 12px; font-weight: 600; padding: 2px 8px; border-radius: 4px; }

/* Badge dificuldade no país */
.badge-dif-moderada { background: var(--amber-100); color: #92400E; padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; }
.badge-dif-alta { background: var(--red-50); color: var(--red-600); padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; }
.badge-dif-muito-alta { background: #fce7e7; color: #991B1B; padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; }
.badge-dif-baixa { background: var(--green-100); color: var(--green-800); padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; }

/* ─────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 2px solid var(--green-600);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { font-size: 24px; }
.logo-text { font-size: 14px; font-weight: 600; color: var(--gray-900); line-height: 1.2; }
.logo-text strong { display: block; font-size: 16px; color: var(--green-700); }

.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav ul li a { color: var(--gray-700); font-size: 14px; font-weight: 500; padding: 8px 12px; border-radius: var(--radius-sm); transition: all .15s; display: block; white-space: nowrap; }
.main-nav ul li a:hover { background: var(--green-50); color: var(--green-700); }
.btn-wpp-header { background: #25D366 !important; color: white !important; border-radius: var(--radius-sm) !important; }
.btn-wpp-header:hover { background: #1ebe5a !important; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown .dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  min-width: 200px; padding: 8px; z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; }
.has-dropdown .dropdown li a { font-size: 14px; border-radius: 6px; padding: 8px 12px; display: block; }

/* Mobile toggle */
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.mobile-menu-toggle span { display: block; width: 24px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: .2s; }

/* ─────────────────────────────────────────────
   HERO HOME
   ───────────────────────────────────────────── */
.hero-home {
  position: relative;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 50%, #0F766E 100%);
  min-height: 580px; display: flex; align-items: center;
  padding: 80px 0;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: url('/images/hero-bg.jpg') center/cover no-repeat;
  opacity: .15;
}
.hero-content { position: relative; z-index: 1; color: var(--white); max-width: 760px; }
.hero-badge {
  display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 500; margin-bottom: 20px;
}
.hero-title { font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.hero-subtitle { font-size: 18px; opacity: .9; margin-bottom: 32px; max-width: 600px; }

.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 32px;
  padding: 20px 24px; background: rgba(255,255,255,.1); border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 28px; font-weight: 800; }
.stat span { font-size: 13px; opacity: .85; }

.hero-search { position: relative; margin-bottom: 20px; }
.search-wrapper { position: relative; }
.search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-size: 18px; }
#country-search {
  width: 100%; padding: 16px 16px 16px 48px;
  border: none; border-radius: var(--radius-md); font-size: 16px;
  background: var(--white); color: var(--gray-900);
  box-shadow: var(--shadow-lg);
}
#country-search:focus { outline: 3px solid var(--amber-500); }
.search-results {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 50;
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.search-result-item { padding: 12px 16px; cursor: pointer; font-size: 15px; transition: background .15s; }
.search-result-item:hover { background: var(--green-50); }

.hero-quick { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 14px; }
.hero-quick span { opacity: .8; }
.hero-quick a {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  color: var(--white); padding: 6px 12px; border-radius: 20px; font-size: 13px; font-weight: 500;
  transition: background .15s;
}
.hero-quick a:hover { background: rgba(255,255,255,.25); }

/* ─────────────────────────────────────────────
   SECTION HEADERS
   ───────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--gray-900); margin-bottom: 12px; }
.section-header p { font-size: 17px; color: var(--gray-500); max-width: 600px; margin: 0 auto; }
.section-footer { text-align: center; margin-top: 32px; }

/* ─────────────────────────────────────────────
   COUNTRIES SECTION
   ───────────────────────────────────────────── */
.section-countries { padding: 80px 0; background: var(--gray-50); }
.countries-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.country-card {
  background: var(--white); border-radius: var(--radius-md); padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid var(--gray-300); transition: all .2s; text-decoration: none; color: inherit;
}
.country-card:hover { border-color: var(--green-600); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.country-card-emoji { font-size: 40px; flex-shrink: 0; }
.country-card-body { flex: 1; min-width: 0; }
.country-card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--gray-900); }
.country-resumo { font-size: 13px; color: var(--gray-500); line-height: 1.5; margin-bottom: 12px; }
.country-meta { display: flex; gap: 6px; flex-wrap: wrap; }
.country-arrow { color: var(--green-600); font-size: 20px; font-weight: 700; align-self: center; flex-shrink: 0; }

/* ─────────────────────────────────────────────
   PET TYPES
   ───────────────────────────────────────────── */
.section-pet-types { padding: 80px 0; }
.pet-types-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.pet-type-card {
  background: var(--green-50); border: 1px solid var(--green-100); border-radius: var(--radius-md);
  padding: 28px 24px; text-align: center; text-decoration: none; color: inherit;
  transition: all .2s;
}
.pet-type-card:hover { background: var(--green-100); border-color: var(--green-600); transform: translateY(-2px); }
.pet-type-icon { font-size: 48px; display: block; margin-bottom: 12px; }
.pet-type-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--green-800); }
.pet-type-card p { font-size: 14px; color: var(--gray-600, #4B5563); }

/* ─────────────────────────────────────────────
   DOCS HUB
   ───────────────────────────────────────────── */
.section-docs { padding: 80px 0; background: var(--gray-50); }
.docs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.doc-card {
  background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-md);
  padding: 24px; text-decoration: none; color: inherit; transition: all .2s;
}
.doc-card:hover { border-color: var(--green-600); box-shadow: var(--shadow-sm); }
.doc-icon { font-size: 32px; display: block; margin-bottom: 12px; }
.doc-card h4 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.doc-card p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

/* ─────────────────────────────────────────────
   QUIZ CTA
   ───────────────────────────────────────────── */
.section-quiz-cta {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--amber-600), var(--amber-500));
}
.quiz-cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.quiz-cta-text h2 { font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.quiz-cta-text p { font-size: 16px; color: rgba(255,255,255,.9); max-width: 500px; }
.section-quiz-cta .btn-primary { background: var(--white); color: var(--amber-600); }
.section-quiz-cta .btn-primary:hover { background: var(--amber-50); }

/* ─────────────────────────────────────────────
   ARTICLES
   ───────────────────────────────────────────── */
.section-articles { padding: 80px 0; }
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.artigos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

.article-card {
  background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-md);
  padding: 24px; text-decoration: none; color: inherit; transition: all .2s;
  display: flex; flex-direction: column; gap: 10px;
}
.article-card:hover { border-color: var(--green-600); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.article-card-meta { display: flex; gap: 8px; align-items: center; }
.article-tag { background: var(--green-100); color: var(--green-800); padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; text-transform: capitalize; }
.article-time { color: var(--gray-500); font-size: 12px; }
.article-card h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); line-height: 1.4; }
.article-card p { font-size: 14px; color: var(--gray-500); line-height: 1.5; flex: 1; }
.article-read-more { font-size: 14px; font-weight: 600; color: var(--green-600); margin-top: auto; }

/* ─────────────────────────────────────────────
   STORIES
   ───────────────────────────────────────────── */
.section-stories { padding: 80px 0; background: var(--gray-50); }
.stories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

.story-card {
  background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-md);
  padding: 24px; text-decoration: none; color: inherit; transition: all .2s;
  display: flex; flex-direction: column; gap: 12px;
}
.story-card:hover { border-color: var(--green-600); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.story-card-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 8px; }
.story-card .story-pet-info h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.story-card .story-pet-info span { font-size: 13px; color: var(--gray-500); }
.story-route { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--green-700); }
.route-arrow { color: var(--amber-600); }
.story-excerpt { font-size: 14px; color: var(--gray-600, #4B5563); line-height: 1.5; }
.story-quote { border-left: 3px solid var(--green-600); padding-left: 12px; font-style: italic; font-size: 13px; color: var(--gray-600, #4B5563); }
.story-read-more { font-size: 13px; font-weight: 600; color: var(--green-600); }

/* ─────────────────────────────────────────────
   CHECKLIST CTA HOME
   ───────────────────────────────────────────── */
.section-checklist-cta { padding: 80px 0; background: var(--green-900); }
.checklist-cta-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.checklist-cta-icon { font-size: 80px; text-align: center; }
.checklist-cta-text h2 { font-size: 32px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.checklist-cta-text p { font-size: 16px; color: rgba(255,255,255,.8); margin-bottom: 20px; }
.checklist-preview { display: flex; flex-direction: column; gap: 8px; }
.checklist-preview li { color: rgba(255,255,255,.9); font-size: 14px; }
.checklist-cta-form { background: var(--white); padding: 32px; border-radius: var(--radius-md); }
.checklist-cta-form form { display: flex; flex-direction: column; gap: 12px; }
.checklist-cta-form input, .checklist-cta-form select {
  padding: 12px 16px; border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm);
  font-size: 15px; font-family: inherit; transition: border-color .15s;
}
.checklist-cta-form input:focus, .checklist-cta-form select:focus { outline: none; border-color: var(--green-600); }
.form-privacy { font-size: 12px; color: var(--gray-500); text-align: center; }

/* ─────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────── */
.section-faq { padding: 80px 0; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item { border: 1px solid var(--gray-300); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item + .faq-item { margin-top: -1px; }
.faq-question {
  width: 100%; text-align: left; padding: 18px 20px; background: var(--white);
  border: none; font-size: 16px; font-weight: 600; color: var(--gray-900);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  cursor: pointer; transition: background .15s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question.active { background: var(--green-50); color: var(--green-800); }
.faq-icon { font-size: 20px; font-weight: 400; flex-shrink: 0; transition: transform .2s; }
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 20px 18px; background: var(--green-50); }
.faq-answer.open { display: block; }
.faq-answer p { font-size: 15px; color: var(--gray-700); line-height: 1.6; }
.faq-answer a { color: var(--green-600); text-decoration: underline; }

/* ─────────────────────────────────────────────
   CTA SPECIALIST BLOCK
   ───────────────────────────────────────────── */
.cta-specialist-block {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  padding: 48px; border-radius: var(--radius-lg); margin: 48px 0;
}
.cta-specialist-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; }
.cta-specialist-icon { font-size: 64px; }
.cta-specialist-content h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.cta-specialist-content p { font-size: 15px; color: rgba(255,255,255,.85); margin-bottom: 20px; }
.cta-specialist-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-specialist-trust { display: flex; flex-direction: column; gap: 8px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.9); white-space: nowrap; }
.trust-icon { color: var(--amber-500); font-weight: 700; }

/* ─────────────────────────────────────────────
   PÁGINA DE PAÍS
   ───────────────────────────────────────────── */
.pais-hero {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  padding: 60px 0;
}
.pais-hero-content {
  display: flex; gap: 24px; align-items: flex-start; color: var(--white);
}
.pais-hero-flag { font-size: 80px; flex-shrink: 0; }
.pais-bloco { font-size: 12px; font-weight: 600; background: rgba(255,255,255,.2); padding: 4px 12px; border-radius: 20px; display: inline-block; margin-bottom: 12px; }
.pais-hero-text h1 { font-size: clamp(24px, 3.5vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 12px; }
.pais-intro-text { font-size: 16px; opacity: .9; margin-bottom: 16px; }
.pais-meta-badges { display: flex; gap: 8px; flex-wrap: wrap; }

.pais-layout {
  display: grid; grid-template-columns: 1fr var(--sidebar-w);
  gap: 48px; padding-top: 48px; padding-bottom: 80px; align-items: start;
}

/* TOC */
.toc-box { background: var(--green-50); border: 1px solid var(--green-100); border-radius: var(--radius-md); padding: 24px; margin-bottom: 40px; }
.toc-title { font-size: 15px; font-weight: 700; color: var(--green-800); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .05em; }
.toc-list { display: flex; flex-direction: column; gap: 6px; counter-reset: toc; }
.toc-list li a { font-size: 14px; color: var(--green-700); font-weight: 500; }
.toc-list li a:hover { color: var(--green-900); text-decoration: underline; }

/* Content sections */
.content-section { margin-bottom: 48px; }
.content-section h2 { font-size: 24px; font-weight: 800; color: var(--gray-900); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--green-100); }

/* Requirements list */
.requirements-list { display: flex; flex-direction: column; gap: 12px; }
.requirements-list li { display: flex; gap: 12px; align-items: flex-start; background: var(--gray-50); padding: 14px 16px; border-radius: var(--radius-sm); border-left: 4px solid var(--green-600); }
.req-number { background: var(--green-600); color: var(--white); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Docs table */
.docs-table-wrapper { overflow-x: auto; }
.docs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.docs-table th { background: var(--green-800); color: var(--white); padding: 12px 16px; text-align: left; font-weight: 600; }
.docs-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-100); vertical-align: top; }
.docs-table tr:hover td { background: var(--gray-50); }

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline::before { content: ''; position: absolute; left: 16px; top: 20px; bottom: 20px; width: 2px; background: var(--green-100); }
.timeline-item { display: flex; gap: 16px; padding: 0 0 20px; position: relative; }
.timeline-dot { width: 34px; height: 34px; background: var(--green-600); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; }
.timeline-dot::after { content: '●'; color: var(--white); font-size: 10px; }
.timeline-content { padding-top: 6px; }
.timeline-date { display: inline-block; background: var(--green-100); color: var(--green-800); padding: 2px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.timeline-content p { font-size: 15px; color: var(--gray-700); }

/* Error cards */
.errors-list { display: flex; flex-direction: column; gap: 12px; }
.error-card { background: var(--red-50); border: 1px solid #FECACA; border-radius: var(--radius-sm); padding: 16px; }
.error-header { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 8px; }
.error-icon { font-size: 18px; flex-shrink: 0; }
.error-header strong { font-size: 15px; color: var(--red-600); }
.error-consequence { font-size: 14px; color: var(--gray-700); padding-left: 28px; }
.consequence-label { font-weight: 600; }

/* Alert box */
.alert-box { padding: 16px; border-radius: var(--radius-sm); margin-bottom: 24px; }
.alert-warning { background: var(--amber-50); border: 1px solid #FDE68A; color: #92400E; }

/* Mid CTA */
.mid-cta-box {
  background: var(--green-50); border: 2px solid var(--green-600); border-radius: var(--radius-md);
  padding: 24px; text-align: center; margin: 40px 0;
}
.mid-cta-box p { font-size: 16px; font-weight: 600; color: var(--green-800); margin-bottom: 16px; }

/* When to hire */
.when-hire-list { display: flex; flex-direction: column; gap: 8px; }
.when-hire-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--gray-700); padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.when-hire-list li::before { content: '✔'; color: var(--green-600); font-weight: 700; flex-shrink: 0; }

/* Related articles */
.related-articles { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.related-article-card {
  background: var(--gray-50); border: 1px solid var(--gray-300); border-radius: var(--radius-sm);
  padding: 16px; text-decoration: none; color: inherit; transition: all .15s;
}
.related-article-card:hover { border-color: var(--green-600); background: var(--green-50); }
.related-tag { background: var(--green-100); color: var(--green-800); padding: 2px 8px; border-radius: 20px; font-size: 11px; font-weight: 600; text-transform: capitalize; display: inline-block; margin-bottom: 6px; }
.related-article-card h4 { font-size: 14px; font-weight: 600; color: var(--gray-900); }
.related-article-card p { font-size: 13px; color: var(--gray-500); margin-top: 4px; }

/* ─────────────────────────────────────────────
   SIDEBAR
   ───────────────────────────────────────────── */
.pais-sidebar, .artigo-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 88px; }
.sidebar-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-md); padding: 20px; }
.sidebar-card h3 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.sidebar-card p { font-size: 14px; color: var(--gray-500); margin-bottom: 12px; }
.sidebar-wpp { background: linear-gradient(135deg, var(--green-900), var(--green-700)); border-color: transparent; }
.sidebar-wpp h3, .sidebar-wpp p { color: var(--white); }
.sidebar-wpp p { opacity: .85; }
.sidebar-summary { display: flex; flex-direction: column; gap: 8px; }
.sidebar-summary li { font-size: 14px; color: var(--gray-600, #4B5563); padding: 6px 0; border-bottom: 1px solid var(--gray-100); }
.sidebar-paises { display: flex; flex-direction: column; gap: 6px; }
.sidebar-paises li a { font-size: 14px; color: var(--green-700); font-weight: 500; }
.artigo-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { background: var(--gray-100); color: var(--gray-600, #4B5563); padding: 4px 10px; border-radius: 20px; font-size: 12px; }

/* ─────────────────────────────────────────────
   ARTIGO PAGE
   ───────────────────────────────────────────── */
.artigo-layout { display: grid; grid-template-columns: 1fr var(--sidebar-w); gap: 48px; padding-top: 32px; padding-bottom: 80px; align-items: start; }
.artigo-header { margin-bottom: 32px; }
.artigo-meta { display: flex; gap: 8px; align-items: center; margin-bottom: 12px; flex-wrap: wrap; }
.artigo-pais { background: var(--amber-100); color: #92400E; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.artigo-time { color: var(--gray-500); font-size: 13px; }
.artigo-header h1 { font-size: clamp(24px, 3.5vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 12px; }
.artigo-lead { font-size: 18px; color: var(--gray-600, #4B5563); line-height: 1.6; }
.artigo-body { font-family: var(--font-serif); font-size: 17px; line-height: 1.8; color: var(--gray-800, #1F2937); }
.artigo-body h2 { font-family: var(--font-sans); font-size: 24px; font-weight: 800; color: var(--gray-900); margin: 40px 0 16px; padding-bottom: 8px; border-bottom: 2px solid var(--green-100); }
.artigo-body h3 { font-family: var(--font-sans); font-size: 20px; font-weight: 700; color: var(--gray-900); margin: 28px 0 12px; }
.artigo-body p { margin-bottom: 20px; }
.artigo-body ul, .artigo-body ol { margin: 16px 0 20px 20px; }
.artigo-body li { margin-bottom: 8px; }
.artigo-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-family: var(--font-sans); font-size: 15px; }
.artigo-body th { background: var(--green-800); color: var(--white); padding: 10px 14px; text-align: left; }
.artigo-body td { padding: 10px 14px; border-bottom: 1px solid var(--gray-100); }
.artigo-body blockquote { border-left: 4px solid var(--green-600); padding: 12px 20px; background: var(--green-50); margin: 24px 0; font-style: italic; color: var(--green-900); }
.artigo-body .alert, .artigo-body .destaque { background: var(--amber-50); border: 1px solid var(--amber-100); border-radius: var(--radius-sm); padding: 16px; margin: 20px 0; font-family: var(--font-sans); font-size: 15px; }
.artigo-body a { color: var(--green-600); text-decoration: underline; }
.content-coming-soon { background: var(--gray-50); border: 1px dashed var(--gray-300); border-radius: var(--radius-md); padding: 32px; text-align: center; font-family: var(--font-sans); }
.related-section { margin-top: 48px; }
.related-section h2 { font-size: 22px; font-weight: 800; margin-bottom: 16px; }

/* ─────────────────────────────────────────────
   HISTÓRIAS
   ───────────────────────────────────────────── */
.historias-hero { background: linear-gradient(135deg, var(--green-900), var(--green-700)); padding: 60px 0; color: var(--white); text-align: center; }
.historias-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 12px; }
.historias-hero p { font-size: 18px; opacity: .9; max-width: 600px; margin: 0 auto; }
.historias-grid-container { padding: 60px 24px; }
.historias-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; margin-bottom: 60px; }
.historia-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow .2s; }
.historia-card:hover { box-shadow: var(--shadow-lg); }
.historia-card-header { padding: 20px 20px 0; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 8px; }
.historia-pet h2 { font-size: 22px; font-weight: 800; margin-bottom: 2px; }
.historia-raca { font-size: 13px; color: var(--gray-500); }
.historia-route { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--green-700); }
.historia-image-placeholder { height: 200px; background: var(--gray-100); overflow: hidden; margin: 16px 0 0; }
.historia-image-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 60px; }
.historia-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.historia-resumo { font-size: 15px; color: var(--gray-600, #4B5563); line-height: 1.6; }
.historia-desafio, .historia-solucao { font-size: 14px; color: var(--gray-600, #4B5563); }
.historia-desafio strong, .historia-solucao strong { display: block; color: var(--gray-900); margin-bottom: 4px; }
.historia-quote { border-left: 3px solid var(--green-600); padding-left: 12px; font-style: italic; font-size: 14px; color: var(--gray-600, #4B5563); }
.historia-quote cite { display: block; font-style: normal; font-size: 12px; color: var(--gray-500); margin-top: 4px; }
.historia-footer { padding: 16px 20px; border-top: 1px solid var(--gray-100); display: flex; justify-content: space-between; align-items: center; }
.historia-data { font-size: 12px; color: var(--gray-500); }
.historias-cta { background: var(--green-50); border-radius: var(--radius-lg); padding: 48px; text-align: center; }
.historias-cta h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.historias-cta p { font-size: 16px; color: var(--gray-500); margin-bottom: 24px; }

/* ─────────────────────────────────────────────
   QUIZ
   ───────────────────────────────────────────── */
.quiz-hero { background: linear-gradient(135deg, var(--green-900), var(--green-700)); padding: 60px 0; color: var(--white); text-align: center; }
.quiz-hero h1 { font-size: clamp(24px, 3.5vw, 40px); font-weight: 800; margin-bottom: 12px; }
.quiz-hero p { font-size: 17px; opacity: .9; max-width: 560px; margin: 0 auto; }
.quiz-container { max-width: 680px; padding: 48px 24px; }
.quiz-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-lg); padding: 40px; margin-bottom: 24px; box-shadow: var(--shadow-md); }
.quiz-intro-card { text-align: center; }
.quiz-intro-card .quiz-icon { font-size: 60px; display: block; margin-bottom: 16px; }
.quiz-intro-card h2 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.quiz-intro-card p { font-size: 16px; color: var(--gray-500); margin-bottom: 28px; }
.quiz-progress { margin-bottom: 24px; }
.quiz-progress-bar { height: 6px; background: var(--gray-100); border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.quiz-progress-fill { height: 100%; background: var(--green-600); border-radius: 3px; transition: width .3s ease; }
#progress-text { font-size: 13px; color: var(--gray-500); font-weight: 500; }
.quiz-q-text { font-size: 20px; font-weight: 700; margin-bottom: 24px; line-height: 1.4; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border: 2px solid var(--gray-300); border-radius: var(--radius-sm);
  cursor: pointer; transition: all .15s; font-size: 15px;
}
.quiz-option:hover { border-color: var(--green-600); background: var(--green-50); }
.quiz-option.selected { border-color: var(--green-600); background: var(--green-50); color: var(--green-800); }
.quiz-option input { display: none; }
.quiz-nav { display: flex; justify-content: flex-end; gap: 12px; }
.result-green { border-top: 8px solid var(--green-600); }
.result-yellow { border-top: 8px solid var(--amber-500); }
.result-red { border-top: 8px solid var(--red-600); }
.result-header { padding: 24px; text-align: center; }
.result-header h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.result-score { font-size: 20px; font-weight: 700; color: var(--gray-600, #4B5563); }
.result-body { padding: 24px; }
.result-mensagem { font-size: 16px; color: var(--gray-700); margin-bottom: 20px; line-height: 1.6; }
.result-prox { background: var(--gray-50); border-radius: var(--radius-sm); padding: 16px; margin-bottom: 24px; }
.result-prox strong { display: block; font-size: 14px; color: var(--gray-600, #4B5563); margin-bottom: 4px; }
.result-prox p { font-size: 15px; font-weight: 600; color: var(--gray-900); }
.result-cta { text-align: center; }
.result-cta p { margin-bottom: 16px; font-size: 16px; color: var(--gray-600, #4B5563); }
.result-cta .btn-secondary { margin-top: 12px; }

/* ─────────────────────────────────────────────
   CHECKLIST PAGE
   ───────────────────────────────────────────── */
.checklist-hero { background: linear-gradient(135deg, var(--green-900), var(--green-700)); padding: 60px 0; color: var(--white); text-align: center; }
.checklist-hero h1 { font-size: clamp(24px, 3.5vw, 40px); font-weight: 800; margin-bottom: 12px; }
.checklist-hero p { font-size: 17px; opacity: .9; max-width: 560px; margin: 0 auto; }
.checklist-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; padding: 60px 24px; align-items: start; }
.checklist-preview-section h2 { font-size: 24px; font-weight: 800; margin-bottom: 28px; }
.checklist-phases { display: flex; flex-direction: column; gap: 28px; }
.checklist-phase { background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-md); overflow: hidden; }
.phase-header { background: var(--green-800); color: var(--white); padding: 14px 20px; display: flex; gap: 12px; align-items: center; }
.phase-number { background: rgba(255,255,255,.2); padding: 2px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.phase-header h3 { font-size: 15px; font-weight: 700; }
.checklist-phase ul { padding: 16px 20px; display: flex; flex-direction: column; gap: 8px; }
.check-item { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--gray-700); }
.check-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.text-alert { color: #92400E; font-weight: 600; }
.text-urgent { color: var(--red-600); font-weight: 600; }
.checklist-disclaimer { background: var(--amber-50); border: 1px solid var(--amber-100); border-radius: var(--radius-sm); padding: 16px; margin-top: 20px; font-size: 14px; color: #92400E; }
.checklist-form-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-md); padding: 32px; position: sticky; top: 88px; }
.checklist-form-card h2 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.checklist-form-card p { font-size: 14px; color: var(--gray-500); margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.form-group input, .form-group select { padding: 11px 14px; border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm); font-size: 15px; font-family: inherit; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--green-600); }
.checklist-form-card form { display: flex; flex-direction: column; gap: 14px; }
.form-success { text-align: center; padding: 20px; }
.success-icon { font-size: 48px; display: block; margin-bottom: 12px; }
.checklist-testimonial { background: var(--green-50); border-radius: var(--radius-md); padding: 24px; margin-top: 20px; }
.checklist-testimonial blockquote { font-style: italic; font-size: 15px; color: var(--green-800); margin-bottom: 8px; }
.checklist-testimonial cite { font-size: 13px; color: var(--gray-500); }

/* ─────────────────────────────────────────────
   BREADCRUMB
   ───────────────────────────────────────────── */
.breadcrumb-nav { padding: 14px 0; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; font-size: 13px; color: var(--gray-500); }
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li + li::before { content: '/'; color: var(--gray-300); }
.breadcrumb a { color: var(--green-600); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }

/* ─────────────────────────────────────────────
   ARTIGOS FILTROS
   ───────────────────────────────────────────── */
.artigos-hero { background: linear-gradient(135deg, var(--green-900), var(--green-700)); padding: 60px 0; color: var(--white); text-align: center; }
.artigos-hero h1 { font-size: clamp(24px, 3.5vw, 40px); font-weight: 800; margin-bottom: 12px; }
.artigos-container { padding: 48px 24px; }
.artigos-filtros { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filtro-btn { padding: 8px 16px; border: 1.5px solid var(--gray-300); border-radius: 20px; font-size: 14px; font-weight: 500; color: var(--gray-600, #4B5563); transition: all .15s; }
.filtro-btn:hover, .filtro-btn.active { background: var(--green-600); color: var(--white); border-color: var(--green-600); }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,.7); padding: 64px 0 32px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-light { color: var(--white); }
.footer-brand .logo-light .logo-text { color: rgba(255,255,255,.9); }
.footer-brand .logo-light strong { color: var(--green-600); }
.footer-brand p { font-size: 14px; line-height: 1.6; margin-top: 12px; color: rgba(255,255,255,.6); }
.footer-parceiro { margin-top: 12px !important; font-size: 13px !important; }
.footer-parceiro a { color: var(--amber-500); }
.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 14px; margin-top: 20px; text-transform: uppercase; letter-spacing: .05em; }
.footer-col h4:first-child { margin-top: 0; }
.footer-col ul { display: flex; flex-direction: column; gap: 6px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-cta-col .btn-wpp { background: #25D366 !important; display: block; text-align: center; margin-bottom: 16px; }
.footer-trust { display: flex; flex-direction: column; gap: 6px; }
.footer-trust span { font-size: 13px; color: rgba(255,255,255,.6); }
.footer-trust span::before { content: ''; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-disclaimer { font-size: 12px !important; }

/* ─────────────────────────────────────────────
   WHATSAPP FLOAT
   ───────────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  text-decoration: none; font-weight: 700; font-size: 14px;
  transition: all .2s; animation: pulse-wpp 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(37,211,102,.5); color: var(--white); }
@keyframes pulse-wpp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.7); }
}

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pais-layout, .artigo-layout { grid-template-columns: 1fr; }
  .pais-sidebar, .artigo-sidebar { position: static; }
  .cta-specialist-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .checklist-layout { grid-template-columns: 1fr; }
  .checklist-form-card { position: static; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open { display: flex; position: fixed; inset: 0; background: var(--white); flex-direction: column; padding: 80px 24px 24px; z-index: 50; overflow-y: auto; }
  .main-nav.open ul { flex-direction: column; gap: 0; }
  .main-nav.open ul li a { padding: 14px 0; border-bottom: 1px solid var(--gray-100); font-size: 17px; }
  .main-nav.open .btn-wpp-header { margin-top: 16px; text-align: center; }
  .has-dropdown .dropdown { display: block; position: static; box-shadow: none; border: none; padding: 0 0 0 16px; }
  .mobile-menu-toggle { display: flex; }
  .hero-stats { gap: 16px; }
  .hero-stats .stat strong { font-size: 22px; }
  .checklist-cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .quiz-container { padding: 24px 16px; }
  .quiz-card { padding: 24px; }
  .whatsapp-label { display: none; }
  .whatsapp-float { padding: 16px; border-radius: 50%; }
  .pais-hero-content { flex-direction: column; }
  .pais-hero-flag { font-size: 60px; }
}

@media (max-width: 480px) {
  .countries-grid, .articles-grid, .artigos-grid, .docs-grid { grid-template-columns: 1fr; }
  .hero-quick { gap: 6px; }
  .hero-quick a { font-size: 12px; padding: 5px 10px; }
}
