/* ============================================================
   toysepets.com — Design System
   Baseado na identidade visual "sweet-pastel":
   amarelo cremoso + lavanda + tipografia rounded (Baloo 2 / Nunito)
   ============================================================ */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700;800&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  /* Paleta principal */
  --yellow-bg:      #fdf3c4;
  --yellow:         #ffd83d;
  --yellow-soft:    #fff3b8;
  --yellow-deep:    #e0b91f;
  --lavender:       #b8a7f2;
  --lavender-soft:  #e6dffb;
  --lavender-bg:    #efeafc;
  --lavender-deep:  #7a5fd0;

  /* Texto */
  --ink:            #1d1a2e;
  --ink-soft:       #4d4763;

  /* Neutros */
  --white:          #ffffff;
  --black:          #0a0714;

  /* Radius */
  --radius-lg:      32px;
  --radius-md:      20px;
  --radius-sm:      12px;
  --radius-pill:    999px;

  /* Sombras */
  --shadow-soft:    0 18px 40px rgba(29, 26, 46, .08);
  --shadow-hover:   0 24px 44px rgba(29, 26, 46, .14);
  --shadow-btn:     0 6px 0 var(--yellow-deep);
  --shadow-btn-hover: 0 9px 0 var(--yellow-deep);

  /* Tipografia */
  --font-head:      'Baloo 2', system-ui, sans-serif;
  --font-body:      'Nunito', system-ui, sans-serif;

  /* Layout */
  --container:      min(1120px, 92%);
  --container-wide: min(1180px, 94%);

  /* Motion */
  --ease:           cubic-bezier(.2, .8, .2, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --yellow-bg:     #1d1a12;
    --white:         #24211a;
    --lavender-bg:   #201d2e;
    --lavender-soft: #2d2942;
    --ink:           #f5f0e1;
    --ink-soft:      #c0b8a0;
    --shadow-soft:   0 18px 40px rgba(0, 0, 0, .35);
    --shadow-hover:  0 24px 44px rgba(0, 0, 0, .5);
  }
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--yellow-bg);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
:focus-visible { outline: 3px solid var(--lavender); outline-offset: 3px; border-radius: 4px; }

.container       { width: var(--container);       margin-inline: auto; }
.container-wide  { width: var(--container-wide);  margin-inline: auto; }

/* Skip nav (a11y) */
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; background: var(--ink); color: var(--white); padding: .5rem 1rem; border-radius: var(--radius-sm); z-index: 999; }

.muted { color: var(--ink-soft); }
.center { text-align: center; }

/* ============================================================
   HEADER
   ============================================================ */
.main-header {
  background: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}
.logo span   { color: var(--lavender-deep); }
.logo em     { font-style: normal; color: var(--lavender); font-size: .9em; }

.main-nav { display: flex; gap: 1.6rem; margin-left: auto; font-weight: 700; font-size: .98rem; }
.main-nav a { position: relative; padding: .25rem 0; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 3px; border-radius: 3px; background: var(--yellow);
  transition: width .25s var(--ease);
}
.main-nav a:hover::after,
.main-nav a[aria-current]::after { width: 100%; }

.lang-switch {
  display: inline-flex; align-items: center; gap: .3rem;
  background: var(--lavender-soft); color: var(--ink);
  padding: .35rem .8rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: .82rem;
  transition: background .2s var(--ease);
}
.lang-switch:hover { background: var(--lavender); color: var(--white); }

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-pill);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  text-align: center;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(29, 26, 46, .15); text-decoration: none; }

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { box-shadow: var(--shadow-btn-hover); }

.btn-soft {
  background: var(--lavender-soft);
  color: var(--ink);
}
.btn-soft:hover { background: var(--lavender); color: var(--white); }

.btn-dark {
  background: var(--ink);
  color: var(--white);
  font-size: .95rem;
  padding: .7rem 1.6rem;
}
.btn-dark:hover { background: var(--lavender-deep); color: var(--white); }

.btn-sm { font-size: .88rem; padding: .55rem 1.3rem; }
.btn-block { display: block; width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin: 1.25rem auto 0;
  width: var(--container-wide);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 2rem;
  padding: 3.5rem 3rem 3rem;
}
.hero-badge {
  display: inline-block;
  background: var(--yellow-soft);
  border: 2px dashed var(--yellow);
  font-weight: 800; font-size: .85rem;
  padding: .35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.2rem;
  color: var(--ink);
}
.hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1.1rem;
}
.hero-subtitle {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 46ch;
  margin-bottom: 1.8rem;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: .9rem;
  margin-bottom: 1.8rem;
}
.trust-chips {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 1.4rem;
  font-weight: 700; font-size: .92rem;
}
.trust-chips li { display: flex; align-items: center; gap: .45rem; }
.trust-chips span { font-size: 1.1rem; }

.hero-art {
  position: relative;
  display: grid; place-items: center;
}
.hero-art .blob {
  position: absolute;
  width: 88%; aspect-ratio: 1 / 1;
  background: var(--lavender-soft);
  border-radius: 58% 42% 55% 45% / 50% 55% 45% 50%;
  animation: blobMorph 9s ease-in-out infinite;
}
@keyframes blobMorph {
  0%, 100% { border-radius: 58% 42% 55% 45% / 50% 55% 45% 50%; }
  50%      { border-radius: 45% 55% 48% 52% / 58% 44% 56% 42%; }
}
.hero-art img,
.hero-art svg {
  position: relative; z-index: 1;
  width: min(560px, 100%);
  filter: drop-shadow(0 20px 26px rgba(29, 26, 46, .18));
}

/* ============================================================
   SEÇÕES GENÉRICAS
   ============================================================ */
.section { padding: 4.5rem 0 1.5rem; }
.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  text-align: center;
  margin-bottom: 2.4rem;
}
.section-subtitle {
  text-align: center; color: var(--ink-soft);
  margin: -1.4rem 0 2rem; font-size: 1.05rem;
}

/* ============================================================
   ECOSSISTEMA (grid de 5 cards)
   ============================================================ */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}
.eco-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.1rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  color: inherit;
}
.eco-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-hover);
  text-decoration: none;
}
.eco-icon {
  display: inline-grid; place-items: center;
  width: 72px; height: 72px;
  font-size: 2rem;
  /* borda orgânica assinatura do design */
  border-radius: 46% 54% 52% 48% / 52% 46% 54% 48%;
  margin-bottom: 1rem;
}
.eco-icon-lavender { background: var(--lavender-soft); }
.eco-icon-yellow   { background: var(--yellow-soft);   }
.eco-icon-mint     { background: #d7f0dc; }
.eco-icon-blush    { background: #fce0e6; }
.eco-icon-sky      { background: #d8ecf9; }

.eco-card h3 {
  font-family: var(--font-head);
  font-size: 1.12rem;
  margin-bottom: .4rem;
}
.eco-card p {
  font-size: .86rem; color: var(--ink-soft); line-height: 1.5;
}

/* ============================================================
   POR QUE / WHY US
   ============================================================ */
.why-card {
  background: var(--yellow-soft);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 2.5rem;
  padding: 2.8rem 3rem;
  box-shadow: var(--shadow-soft);
}
.why-art img,
.why-art svg {
  width: 100%; max-width: 400px;
  margin-inline: auto;
  filter: drop-shadow(0 16px 24px rgba(29, 26, 46, .12));
}
.why-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 1.6rem;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 2rem;
}
.why-item { display: flex; gap: .9rem; align-items: flex-start; }
.why-icon {
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: 46px; height: 46px;
  font-size: 1.25rem;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(29, 26, 46, .08);
}
.why-item h3 { font-family: var(--font-head); font-size: 1.02rem; margin-bottom: .15rem; }
.why-item p  { font-size: .88rem; color: var(--ink-soft); }

/* ============================================================
   COMO FUNCIONA (steps numerados)
   ============================================================ */
.how { padding-top: 6.5rem; }
.how-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.how-step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.6rem 1.2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.how-step:not(:last-child)::after {
  content: "➜";
  position: absolute; top: 3.2rem; right: -1.15rem;
  color: var(--lavender); font-size: 1.2rem; z-index: 2;
}
.how-bubble {
  display: grid; place-items: center;
  width: 86px; height: 86px;
  margin: -4.6rem auto 1rem;
  border-radius: 50%;
  border: 5px solid var(--yellow-bg);
}
.how-bubble-lavender { background: var(--lavender-soft); }
.how-bubble-yellow   { background: var(--yellow-soft);   }
.how-bubble-mint     { background: #d7f0dc; }
.how-bubble-blush    { background: #fce0e6; }
.how-icon { font-size: 2.1rem; }
.how-number {
  position: absolute; top: -1.6rem; left: 50%;
  transform: translateX(-50%);
  display: grid; place-items: center;
  width: 34px; height: 34px;
  background: var(--yellow);
  font-family: var(--font-head); font-weight: 800;
  border-radius: 50%;
  border: 4px solid var(--yellow-bg);
  z-index: 3;
}
.how-step h3 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: .35rem; }
.how-step p  { font-size: .86rem; color: var(--ink-soft); }

/* ============================================================
   RAÇAS POPULARES (chips)
   ============================================================ */
.breeds { text-align: center; }
.breed-chips {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: .7rem;
  max-width: 780px; margin-inline: auto;
}
.breed-chip {
  background: var(--white);
  border: 2px solid var(--lavender-soft);
  border-radius: var(--radius-pill);
  padding: .55rem 1.3rem;
  font-weight: 700; font-size: .92rem;
  color: var(--ink);
  transition: all .2s var(--ease);
}
.breed-chip:hover {
  background: var(--lavender);
  border-color: var(--lavender);
  color: var(--white);
  transform: translateY(-3px);
  text-decoration: none;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.final-cta { padding-bottom: 4.5rem; }
.cta-card {
  position: relative;
  background: var(--lavender-bg);
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.cta-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: .7rem;
}
.cta-copy p {
  color: var(--ink-soft);
  max-width: 44ch;
  margin-bottom: 1.6rem;
}
.cta-art {
  width: min(260px, 32vw);
  flex: 0 0 auto;
  margin-bottom: -3rem;
  align-self: flex-end;
  filter: drop-shadow(0 14px 20px rgba(29, 26, 46, .16));
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding-top: 3rem;
  box-shadow: var(--shadow-soft);
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand p { color: var(--ink-soft); font-size: .92rem; margin-top: .8rem; max-width: 38ch; }
.footer-contact { margin-top: 1rem; font-size: .9rem; }
.footer-contact a { font-weight: 700; }
.footer-col h4 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: .9rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: var(--ink-soft); font-size: .92rem; font-weight: 600; }
.footer-col a:hover { color: var(--ink); text-decoration: underline; }
.footer-bottom {
  border-top: 2px dashed var(--lavender-soft);
  padding: 1.2rem 0 1.4rem;
  text-align: center;
  font-size: .88rem;
  color: var(--ink-soft);
}

/* ============================================================
   PÁGINA DE ENTIDADE (raça / breed / etc)
   ============================================================ */
.entity-hero {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin: 1.25rem auto 0;
  width: var(--container-wide);
  padding: 2.5rem 3rem 2rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}
.entity-hero .badges { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.entity-hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: .8rem;
}
.entity-hero .tldr {
  background: var(--yellow-soft);
  border-left: 5px solid var(--yellow);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  margin: 1rem 0 1.4rem;
  font-size: .96rem;
}
.entity-hero .tldr strong { display: block; font-family: var(--font-head); font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; color: var(--lavender-deep); margin-bottom: .3rem; }

.badge {
  display: inline-block;
  background: var(--lavender-soft);
  color: var(--lavender-deep);
  padding: .25rem .8rem;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 700;
}
.badge-specie { background: var(--yellow); color: var(--ink); }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .8rem;
  margin: 1.4rem 0 0;
}
.stat {
  background: var(--yellow-soft);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
}
.stat-label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); font-weight: 700; }
.stat-value { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; margin-top: .2rem; }

/* Conteúdo (sections) */
.content-section {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 2.4rem;
  box-shadow: var(--shadow-soft);
  margin-top: 1.5rem;
}
.content-section h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.content-section p { margin-bottom: 1rem; max-width: 68ch; }
.content-section ul, .content-section ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.content-section li { margin-bottom: .35rem; }

/* Tabela */
.table-wrap { overflow-x: auto; margin: 1.2rem 0; border-radius: var(--radius-sm); border: 1px solid var(--lavender-soft); }
.data-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: .92rem; }
.data-table th, .data-table td { padding: .75rem 1rem; text-align: left; border-bottom: 1px solid var(--lavender-soft); }
.data-table thead th { background: var(--lavender-soft); font-family: var(--font-head); font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
.data-table tr:last-child td { border-bottom: 0; }
.data-table tr:hover td { background: var(--yellow-soft); }

/* FAQ */
.faq-section {
  background: var(--lavender-bg);
  border-radius: var(--radius-md);
  padding: 2rem 2.4rem;
  margin-top: 1.5rem;
}
.faq-section h2 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 1.2rem; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: .6rem;
  box-shadow: 0 2px 6px rgba(29, 26, 46, .04);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "＋";
  color: var(--lavender-deep);
  font-size: 1.4rem;
  font-weight: 700;
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: .8rem; color: var(--ink-soft); font-size: .95rem; }

/* Ecosystem hub (cross-linking) */
.hub {
  background: var(--yellow-soft);
  border-radius: var(--radius-md);
  padding: 2rem 2.4rem;
  margin-top: 1.5rem;
}
.hub-title { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 1.2rem; }
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.hub-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  box-shadow: 0 2px 8px rgba(29, 26, 46, .04);
}
.hub-card--highlight { border: 2px solid var(--yellow); }
.hub-card h3 { font-family: var(--font-head); font-size: 1rem; margin-bottom: .6rem; }
.hub-card ul { list-style: none; padding: 0; }
.hub-card li { padding: .35rem 0; border-bottom: 1px dashed var(--lavender-soft); font-size: .88rem; }
.hub-card li:last-child { border-bottom: 0; }
.hub-card a { color: var(--ink); text-transform: capitalize; }
.hub-card a:hover { color: var(--lavender-deep); }

/* Breadcrumbs */
.breadcrumbs {
  font-size: .84rem;
  color: var(--ink-soft);
  margin: 1rem 0;
  padding: 0 1rem;
}
.breadcrumbs ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.breadcrumbs li:not(:last-child)::after { content: "›"; margin-left: .5rem; opacity: .6; }
.breadcrumbs a { color: var(--ink-soft); font-weight: 600; }
.breadcrumbs a:hover { color: var(--lavender-deep); }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 700; }

/* Category index (grid de cards) */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.2rem;
}
.card-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  color: var(--ink);
  display: block;
}
.card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  text-decoration: none;
}
.card-item h3 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: .4rem; }
.card-item p { font-size: .88rem; color: var(--ink-soft); }

/* Empty state */
.empty {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--ink-soft);
}

/* 404 */
.not-found { text-align: center; padding: 6rem 0; }
.not-found h1 { font-family: var(--font-head); font-size: 2.8rem; margin-bottom: 1rem; }
.not-found p { color: var(--ink-soft); margin-bottom: 1.8rem; }

/* Utility: reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 960px) {
  .eco-grid { grid-template-columns: repeat(3, 1fr); }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .how-step:not(:last-child)::after { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 3rem 1.5rem 2.5rem; }
  .hero-actions, .trust-chips { justify-content: center; }
  .hero-subtitle { margin-inline: auto; }
  .why-card { grid-template-columns: 1fr; padding: 2.2rem 1.6rem; text-align: center; }
  .why-item { text-align: left; }
  .entity-hero { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .header-inner { padding: .8rem 0; }
  .main-nav { display: none; }
  .eco-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .cta-card { flex-direction: column; text-align: center; padding: 2.4rem 1.6rem 0; }
  .cta-copy p { margin-inline: auto; }
  .cta-art { margin-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin-inline: auto; }
  .content-section, .faq-section, .hub { padding: 1.4rem 1.2rem; }
  .btn { padding: .75rem 1.5rem; font-size: 1rem; }
}

/* Underline decorativo abaixo dos trust-chips (como no protótipo) */
.trust-chips {
  position: relative;
  padding-bottom: 1rem;
}
.trust-chips::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -.2rem; left: 0;
  width: 90px; height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 8' fill='none'%3E%3Cpath d='M2 4 Q11 -1 22 4 T44 4 T66 4 T88 4' stroke='%23b8a7f2' stroke-width='2.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ============================================================
   NOVOS COMPONENTES v2
   ============================================================ */

/* Entity hero single-column */
.entity-hero--single { grid-template-columns: 1fr; }
.entity-hero .lead { font-size: 1.05rem; color: var(--ink-soft); max-width: 62ch; }

/* Badges de tipo */
.badge-health  { background: #fff3d6; color: #a06400; }
.badge-guide   { background: #d7f0dc; color: #1b5e20; }
.badge-product { background: #d8ecf9; color: #0d4d75; }
.badge-service { background: #fce0e6; color: #a01b3f; }
.badge-alta    { background: #fbdbdb; color: #7f1c1c; }
.badge-media   { background: #fef2d9; color: #7a4d00; }
.badge-baixa   { background: #dbf3dc; color: #1b5e20; }
.badge-high    { background: #fbdbdb; color: #7f1c1c; }
.badge-medium  { background: #fef2d9; color: #7a4d00; }
.badge-low     { background: #dbf3dc; color: #1b5e20; }

/* Callouts */
.callout {
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem auto;
  max-width: var(--container);
  border-left: 6px solid;
  font-size: .96rem;
}
.callout--warning { background: #fff3d6; border-color: var(--yellow-deep); color: #6b4200; }
.callout--tip { background: var(--lavender-soft); border-color: var(--lavender-deep); color: var(--lavender-deep); font-size: .9rem; padding: .7rem 1rem; margin-top: 1rem; }

/* Guide steps (numerados grandes) */
.guide-steps { list-style: none; padding: 0; margin: 1.5rem 0; }
.guide-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.2rem;
  align-items: start;
  background: var(--yellow-soft);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.guide-step__num {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  border: 4px solid var(--yellow-bg);
}
.guide-step__body h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin: 0 0 .5rem;
}
.guide-step__body p { margin-bottom: .5rem; }

/* Tools list */
.tools-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .5rem; }
.tools-list li {
  background: var(--lavender-soft);
  color: var(--ink);
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
}
.tools-list li::before { content: "✓"; color: var(--lavender-deep); font-weight: 800; margin-right: .5rem; }

/* Products grid */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; margin-top: 1rem; }
.product-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--lavender-soft);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.product-card:hover { transform: translateY(-4px); border-color: var(--lavender); box-shadow: var(--shadow-hover); }
.product-card__badge {
  position: absolute;
  top: -12px; left: 20px;
  background: var(--yellow);
  color: var(--ink);
  padding: .3rem .8rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: .75rem;
  border: 3px solid var(--yellow-bg);
}
.product-card h3 { font-family: var(--font-head); font-size: 1.1rem; margin: 0; }
.product-card__meta { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .82rem; color: var(--ink-soft); }
.product-card__meta span { background: var(--yellow-soft); padding: .2rem .6rem; border-radius: var(--radius-pill); }
.product-card p { font-size: .9rem; margin: 0; }
.product-card .pros, .product-card .cons { list-style: none; padding: 0; font-size: .85rem; }
.product-card .pros li { color: var(--c-ok, #2e7d32); margin: .15rem 0; }
.product-card .cons li { color: var(--c-bad, #c62828); margin: .15rem 0; }
.product-card .btn { margin-top: auto; }

/* Providers grid (serviços) */
.providers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; margin-top: 1rem; }
.provider-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--lavender-soft);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.provider-card__badge {
  position: absolute; top: -12px; right: 20px;
  background: var(--lavender);
  color: var(--white);
  padding: .3rem .8rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .75rem;
}
.provider-card h3 { font-family: var(--font-head); font-size: 1.15rem; margin: 0; }
.provider-card__actions { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .8rem; }

/* Category cards com ícone */
.card-item {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1.5rem 1.4rem;
}
.card-item__icon {
  display: inline-grid; place-items: center;
  width: 60px; height: 60px;
  font-size: 1.6rem;
  border-radius: 46% 54% 52% 48% / 52% 46% 54% 48%;
  margin-bottom: .5rem;
}
.card-item__cta { margin-top: auto; padding-top: .5rem; color: var(--lavender-deep); font-weight: 700; font-size: .9rem; }
.card-item:hover .card-item__cta { color: var(--yellow-deep); }

/* Empty state melhorado */
.empty { padding: 4rem 2rem; }

/* ============================================================
   Petz-superior sections (metrics + vet + product matrix)
   ============================================================ */

.section-sub{opacity:.75;margin:.25rem 0 1.25rem;}

/* Metrics datagrid */
.metrics-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:1rem;}
.metric-item{background:#fff;border:2px solid var(--ink);border-radius:20px;padding:1rem 1.25rem;}
.metric-label{font-size:.85rem;opacity:.7;text-transform:uppercase;letter-spacing:.03em;font-weight:700;}
.metric-value{font-family:'Baloo 2',system-ui;font-size:1.35rem;font-weight:800;margin-top:.15rem;}
.metric-bar{height:8px;background:var(--yellow-bg);border-radius:999px;overflow:hidden;margin-top:.55rem;}
.metric-bar > span{display:block;height:100%;background:linear-gradient(90deg,#ffd83d 0%,#b8a7f2 100%);border-radius:999px;}

/* Vet table with PubMed source */
.vet-table th{background:#fdf3c4;}
.vet-table td:last-child a{color:var(--ink);font-weight:700;text-decoration:underline;}
.vet-table td:last-child a:hover{background:var(--yellow-bg);}

/* Product matrix — Recomendados / Proibidos / Categorias */
.matrix-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1rem;margin-top:.75rem;}
.matrix-col{background:#fff;border:2px solid var(--ink);border-radius:24px;padding:1.25rem 1.5rem;}
.matrix-col h3{font-size:1.1rem;margin:0 0 .75rem;font-family:'Baloo 2',system-ui;}
.matrix-col ul{margin:0;padding-left:1.1rem;}
.matrix-col li{margin-bottom:.35rem;line-height:1.35;}
.matrix-ok{background:#eefbee;border-color:#2d7a3f;}
.matrix-no{background:#fff1f0;border-color:#a02020;}
.matrix-cat{background:#f4efff;border-color:#5b4b9a;}
.matrix-size{margin:.75rem 0 0;font-size:.9rem;opacity:.85;}

@media (max-width:640px){
  .metrics-grid{grid-template-columns:1fr 1fr;}
  .matrix-grid{grid-template-columns:1fr;}
}

/* Petz-superior — urgency triage (yellow vs red flag) */
.petz-triage{margin:1.5rem auto;}
.triage-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;}
.triage-card{border:2px solid var(--ink);border-radius:24px;padding:1.25rem 1.5rem;background:#fff;}
.triage-card h3{font-family:'Baloo 2',system-ui;margin:0 0 .6rem;font-size:1.1rem;}
.triage-card ul{margin:0;padding-left:1.1rem;}
.triage-card li{margin-bottom:.4rem;line-height:1.4;}
.triage-yellow{background:#fff9e0;border-color:#c98e00;}
.triage-red{background:#fff0f0;border-color:#b30000;}
@media (max-width:640px){.triage-grid{grid-template-columns:1fr;}}
