/* Páginas de hub (tratamentos) e local (SEO geográfico) */
.hub-hero {
  background: linear-gradient(135deg, var(--marinho) 0%, var(--marinho-escuro) 100%);
  color: #fff;
  padding: 3.5rem 0 3rem;
}

.hub-hero__eyebrow {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ambar);
  margin-bottom: 0.75rem;
}

.hub-hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 18ch;
}

.hub-hero__lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: #C8DCE9;
  max-width: 42em;
  margin-bottom: 1.5rem;
}

.hub-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hub-body {
  padding: 3rem 0 4rem;
}

.hub-body .container {
  max-width: 860px;
}

.hub-body h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--marinho);
  margin: 2rem 0 0.75rem;
}

.hub-body h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--marinho);
  margin: 1.5rem 0 0.5rem;
}

.hub-body p,
.hub-body li {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--tinta);
  margin-bottom: 1rem;
}

.hub-body ul,
.hub-body ol {
  padding-left: 1.35rem;
  margin-bottom: 1.25rem;
}

.hub-body a {
  font-weight: 500;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.hub-card {
  background: var(--branco);
  border: 1px solid var(--gelo-linha);
  border-radius: var(--raio);
  padding: 1.25rem 1.35rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -18px rgba(13, 47, 79, 0.35);
  border-color: var(--ciano);
}

.hub-card strong {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  color: var(--marinho);
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.hub-card span {
  font-size: 0.9375rem;
  color: var(--tinta-suave);
  line-height: 1.5;
}

.hub-faq {
  margin-top: 2.5rem;
}

.hub-faq details {
  background: var(--branco);
  border: 1px solid var(--gelo-linha);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.hub-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.25rem;
  font-family: var(--display);
  font-weight: 600;
  color: var(--marinho);
  font-size: 1.02rem;
}

.hub-faq summary::-webkit-details-marker { display: none; }

.hub-faq .resp {
  padding: 0 1.25rem 1.15rem;
  color: var(--tinta-suave);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.hub-cta {
  background: var(--gelo);
  border-radius: var(--raio);
  padding: 2rem 1.75rem;
  margin-top: 2.5rem;
  text-align: center;
}

.hub-cta h2 {
  margin-top: 0;
  text-align: center;
}

.hub-cta p {
  max-width: 36em;
  margin: 0 auto 1.25rem;
  color: var(--tinta-suave);
}

.hub-map {
  border-radius: var(--raio);
  overflow: hidden;
  border: 1px solid var(--gelo-linha);
  margin: 1.5rem 0;
  min-height: 320px;
}

.hub-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

.hub-depo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.hub-depo blockquote {
  background: var(--branco);
  border: 1px solid var(--gelo-linha);
  border-radius: 12px;
  padding: 1.15rem;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--tinta);
}

.hub-depo cite {
  display: block;
  margin-top: 0.65rem;
  font-style: normal;
  font-weight: 600;
  color: var(--marinho);
  font-size: 0.875rem;
}

.hub-related {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gelo-linha);
}

.hub-related h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.hub-related ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hub-related li {
  margin-bottom: 0.5rem;
}

.hub-related a {
  text-decoration: none;
}

.hub-related a:hover {
  text-decoration: underline;
}

/* Internal links em artigos */
.article-hub-links {
  background: var(--gelo);
  border-radius: var(--raio);
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0 1rem;
}

.article-hub-links h3 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--marinho);
  font-size: 1.15rem;
  margin: 0 0 1rem;
}

.article-hub-links__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.65rem;
}

.article-hub-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--branco);
  border: 1px solid var(--gelo-linha);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--marinho);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.article-hub-links a:hover {
  border-color: var(--ciano);
  transform: translateY(-2px);
}

.article-hub-links a.hub-links--whatsapp {
  background: var(--azul-acao);
  color: #fff;
  border-color: var(--azul-acao);
}
