/**
 * Página "SEO, GEO e descoberta" — estilos isolados sob o prefixo
 * `.seogeo-` (mesmo padrão de isolamento de assets/css/
 * implantacao-e-migracao.css, assets/css/gestao-e-aceleracao.css e
 * assets/css/plataforma-dscomm.css — ver .claude/skills/dscomm-design-
 * system). Usa direto os tokens de cor do tema (var(--color-*), definidos
 * em assets/css/input.css) para nunca sair da paleta oficial. Carregado só
 * em page-seo-geo-e-descoberta.php.
 *
 * Proporções do hero medidas contra o mesmo padrão de .migracao-hero__*/
 * .gestao-hero__*/.plataforma-hero__* (grid 12 colunas 5/7, gap-10
 * lg:gap-16, pt-12 pb-16 lg:pb-20). O visual à direita não é fotografia nem
 * captura real de loja: é uma composição em HTML/CSS (.seogeo-store,
 * .seogeo-panel) representando uma página de produto genérica conectada a
 * dois painéis de descoberta por linhas finas em SVG.
 */

.seogeo-page {
  background: var(--color-bg);
}

.seogeo-page * {
  box-sizing: border-box;
}

/* =========================================================
   HERO
   ========================================================= */
/* Aproxima o eyebrow do título (ajuste padronizado nas 5 páginas de
   Soluções — ver .eyebrow em cada __header/__content e hero.php). */
.seogeo-hero .eyebrow {
  margin-bottom: -1rem;
}

@media (min-width: 1024px) {
  .seogeo-hero .eyebrow {
    margin-bottom: -1.5rem;
  }
}

.seogeo-hero__title {
  font-size: clamp(2.5rem, 4.6vw, 4.5rem); /* 40px – 72px, mesma escala de .clientes-hero__title/.diagnostic-hero__copy h1 */
  line-height: 1.02;
  max-width: 34rem;
}

.seogeo-hero__highlight {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.seogeo-hero__paragraph {
  font-size: clamp(1.125rem, 1.4vw, 1.25rem); /* 18px – 20px */
  line-height: 1.55;
  max-width: 33rem;
}

.seogeo-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}

@media (min-width: 640px) {
  .seogeo-hero__actions {
    flex-direction: row;
    align-items: center;
    width: auto;
  }
}

.seogeo-hero__secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.seogeo-hero__secondary-cta:hover,
.seogeo-hero__secondary-cta:focus-visible {
  color: var(--color-ink);
}

.seogeo-hero__microcopy {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.seogeo-hero__caption {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 34rem;
}

@media (min-width: 1024px) {
  .seogeo-hero__caption {
    text-align: left;
  }
}

/* Composição visual: mesma progressão de max-width por breakpoint que
   .migracao-hero__composition — respiro extra à direita e abaixo para os
   painéis de descoberta e os sinais flutuantes. */
.seogeo-hero__composition {
  position: relative;
  width: 100%;
  max-width: 28rem;
  padding: 0.5rem 0.5rem 5.5rem;
}

@media (min-width: 640px) {
  .seogeo-hero__composition {
    max-width: 34rem;
    padding: 1rem 1.5rem 6rem 0.5rem;
  }
}

@media (min-width: 1024px) {
  .seogeo-hero__composition {
    max-width: 56rem; /* 896px — mesma escala de .clientes-hero__composition/.plataforma-hero__composition na coluna de 7/12 */
    padding: 1.5rem 5.5rem 7.5rem 0.5rem;
  }
}

.seogeo-hero__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.seogeo-hero__line {
  stroke: var(--color-brand);
  stroke-width: 0.3;
  opacity: 0.45;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: seogeoLineDraw 0.6s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes seogeoLineDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 1023px) {
  .seogeo-hero__lines {
    display: none;
  }
}

/* =========================================================
   SEOGEO-STORE — página de produto genérica, inteiramente em HTML/CSS.
   ========================================================= */
.seogeo-store {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 23rem;
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: 0 30px 60px -30px rgb(28 30 60 / 0.35);
  overflow: hidden;
  opacity: 0;
  translate: 0 10px;
  animation: seogeoFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (min-width: 640px) {
  .seogeo-store {
    max-width: 27rem;
  }
}

@media (min-width: 1024px) {
  .seogeo-store {
    max-width: 35rem; /* 560px — protagonista da composição, preenche a coluna de 7/12 */
  }
}

@keyframes seogeoFadeUp {
  to {
    opacity: 1;
    translate: 0 0;
  }
}

.seogeo-store__chrome {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  background: var(--color-bg-muted);
  border-bottom: 1px solid var(--color-border);
}

.seogeo-store__dots {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}

.seogeo-store__dots span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--color-border);
}

.seogeo-store__url {
  font-size: 0.625rem;
  color: var(--color-text-muted);
  background: #fff;
  border-radius: 999px;
  padding: 0.15rem 0.65rem;
}

.seogeo-store__body {
  padding: 0.9rem 1rem 1.1rem;
}

@media (min-width: 1024px) {
  .seogeo-store__body {
    padding: 1.25rem 1.5rem 1.6rem;
  }
}

.seogeo-store__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-text-muted);
  padding-bottom: 0.75rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--color-border);
}

.seogeo-store__nav span:first-child {
  color: var(--color-ink);
}

.seogeo-store__main {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.1rem;
}

@media (min-width: 1024px) {
  .seogeo-store__main {
    grid-template-columns: 9.5rem 1fr;
    gap: 1.35rem;
  }
}

.seogeo-store__gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Radar de descoberta: pequeno marcador de lupa com pulso discreto,
   sobreposto ao canto da imagem do produto, representando o "escaneamento"
   da página pelos mecanismos de busca/IA. */
.seogeo-hero__radar {
  position: absolute;
  z-index: 4;
  top: -0.6rem;
  right: -0.6rem;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-brand);
  font-size: 0.85rem;
  box-shadow: 0 10px 20px -10px rgb(28 30 60 / 0.4);
}

@media (min-width: 1024px) {
  .seogeo-hero__radar {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1rem;
  }
}

.seogeo-hero__radar::before,
.seogeo-hero__radar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1.5px solid var(--color-brand);
  opacity: 0;
  animation: seogeoRadarPulse 2.8s ease-out infinite;
}

.seogeo-hero__radar::after {
  animation-delay: 1.4s;
}

@keyframes seogeoRadarPulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.seogeo-store__image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0.6rem;
  background: linear-gradient(135deg, var(--color-section), var(--color-bg-muted));
}

.seogeo-store__details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.seogeo-store__category {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-brand);
}

.seogeo-store__name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-ink);
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .seogeo-store__name {
    font-size: 1.0625rem;
  }
}

.seogeo-store__rating {
  color: #e0a530;
  font-size: 0.65rem;
}

.seogeo-store__price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-ink);
  margin-top: 0.1rem;
}

@media (min-width: 1024px) {
  .seogeo-store__price {
    font-size: 1.1875rem;
  }
}

.seogeo-store__cta {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-brand);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  margin-block: 0.2rem 0.4rem;
}

.seogeo-store__tabs {
  display: flex;
  gap: 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.35rem;
}

.seogeo-store__tab--active {
  color: var(--color-ink);
  position: relative;
}

.seogeo-store__tab--active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.37rem;
  height: 2px;
  background: var(--color-brand);
}

.seogeo-store__line {
  display: block;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--color-bg-muted);
  margin-top: 0.4rem;
}

.seogeo-store__line--short {
  width: 70%;
}

/* =========================================================
   SEOGEO-PANEL — painéis de descoberta (resultados de busca / IA),
   flutuantes sobre a composição, sem logotipo de nenhuma ferramenta.
   ========================================================= */
.seogeo-panel {
  position: absolute;
  z-index: 3;
  width: 12rem;
  background: #fff;
  border-radius: 0.65rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 1.25rem 2.5rem -1.5rem rgb(28 30 60 / 0.4);
  padding: 0.75rem 0.85rem 0.85rem;
  opacity: 0;
  translate: 0 8px;
  animation: seogeoFadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.seogeo-panel--search {
  top: -0.5rem;
  right: -0.5rem;
  animation-delay: 0.7s;
}

.seogeo-panel--ai {
  top: 8.75rem;
  right: -1.25rem;
  animation-delay: 0.95s;
}

@media (min-width: 640px) {
  .seogeo-panel {
    width: 13.5rem;
  }

  .seogeo-panel--ai {
    top: 9.5rem;
    right: -1.75rem;
  }
}

@media (min-width: 1024px) {
  .seogeo-panel {
    width: 15rem;
    padding: 1rem 1.15rem 1.15rem;
  }

  .seogeo-panel--search {
    top: -1.25rem;
    right: -1.5rem;
  }

  .seogeo-panel--ai {
    top: 13rem;
    right: -2rem;
  }
}

@media (min-width: 1280px) {
  .seogeo-panel--search {
    right: -3rem;
  }

  .seogeo-panel--ai {
    right: -4rem;
  }
}

/* Evita rolagem horizontal: o bleed decorativo dos painéis/sinais só é
   seguro a partir de 1280px, onde o container passa a ter folga real fora
   da coluna de 7/12 (ver .claude/skills/dscomm-design-system — nunca criar
   rolagem horizontal de página). */
@media (max-width: 1279px) {
  .seogeo-hero {
    overflow-x: clip;
  }
}

@media (max-width: 1023px) {
  .seogeo-panel--search {
    top: -0.75rem;
    right: -0.5rem;
  }

  .seogeo-panel--ai {
    top: auto;
    bottom: -0.75rem;
    left: -0.5rem;
    right: auto;
  }
}

.seogeo-panel__header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: 0.55rem;
}

.seogeo-panel__header i {
  color: var(--color-brand);
  font-size: 0.7rem;
}

@media (min-width: 1024px) {
  .seogeo-panel__header {
    font-size: 0.8125rem;
    margin-bottom: 0.7rem;
  }

  .seogeo-panel__header i {
    font-size: 0.8125rem;
  }

  .seogeo-panel__thumb {
    width: 2.1rem;
    height: 2.1rem;
  }
}

.seogeo-panel__search-bar {
  display: flex;
  align-items: center;
  height: 1.25rem;
  border-radius: 999px;
  background: var(--color-bg-muted);
  padding-inline: 0.6rem;
  color: var(--color-text-muted);
  font-size: 0.6rem;
  margin-bottom: 0.6rem;
}

.seogeo-panel__result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-block: 0.35rem;
}

.seogeo-panel__result + .seogeo-panel__result {
  border-top: 1px solid var(--color-border);
}

.seogeo-panel__thumb {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.35rem;
  background: var(--color-section);
}

.seogeo-panel__result-lines {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
}

.seogeo-panel__result-lines span {
  display: block;
  height: 0.32rem;
  border-radius: 999px;
  background: var(--color-bg-muted);
}

.seogeo-panel__result-lines span:first-child {
  width: 85%;
}

.seogeo-panel__result-lines span:last-child {
  width: 55%;
}

.seogeo-panel__ai-line {
  display: block;
  height: 0.32rem;
  border-radius: 999px;
  background: var(--color-bg-muted);
  margin-bottom: 0.3rem;
}

.seogeo-panel__ai-line--short {
  width: 65%;
  margin-bottom: 0.6rem;
}

.seogeo-panel__ai-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.seogeo-panel__ai-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.seogeo-panel__ai-dot {
  flex-shrink: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--color-brand);
}

.seogeo-panel__ai-item-line {
  flex: 1 1 auto;
  display: block;
  height: 0.3rem;
  border-radius: 999px;
  background: var(--color-bg-muted);
}

.seogeo-panel__ai-item-line--short {
  max-width: 60%;
}

/* =========================================================
   SEOGEO-HERO__SIGNALS — quatro sinais flutuantes conectados à loja.
   ========================================================= */
.seogeo-hero__signals {
  position: absolute;
  z-index: 3;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .seogeo-hero__signals {
    grid-template-columns: repeat(4, 1fr);
    right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .seogeo-hero__signals {
    right: 3rem;
  }
}

.seogeo-hero__signal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  background: #fff;
  border-radius: 0.65rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 0.85rem 1.75rem -1rem rgb(28 30 60 / 0.3);
  padding: 0.65rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-ink);
  opacity: 0;
  translate: 0 8px;
  animation: seogeoFadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.seogeo-hero__signals .seogeo-hero__signal:nth-child(1) {
  animation-delay: 1.1s;
}
.seogeo-hero__signals .seogeo-hero__signal:nth-child(2) {
  animation-delay: 1.22s;
}
.seogeo-hero__signals .seogeo-hero__signal:nth-child(3) {
  animation-delay: 1.34s;
}
.seogeo-hero__signals .seogeo-hero__signal:nth-child(4) {
  animation-delay: 1.46s;
}

.seogeo-hero__signal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-mini-card);
  background: var(--color-section);
  color: var(--color-brand);
  font-size: 0.875rem;
}

@media (min-width: 1024px) {
  .seogeo-hero__signal {
    padding: 0.8rem 0.9rem;
    font-size: 0.8125rem;
  }

  .seogeo-hero__signal-icon {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seogeo-hero__line,
  .seogeo-store,
  .seogeo-panel,
  .seogeo-hero__signal {
    animation: none !important;
    opacity: 1 !important;
    translate: 0 0 !important;
    stroke-dashoffset: 0 !important;
  }

  .seogeo-hero__radar::before,
  .seogeo-hero__radar::after {
    animation: none !important;
    opacity: 0 !important;
  }
}

/* =========================================================
   FAIXA DE BENEFÍCIOS
   ========================================================= */
.seogeo-beneficios__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .seogeo-beneficios__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.seogeo-beneficios__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .seogeo-beneficios__item {
    border-top: none;
    padding-inline-start: 1.5rem;
    border-left: 1px solid var(--color-border);
  }

  .seogeo-beneficios__item:first-child {
    padding-inline-start: 0;
    border-left: none;
  }
}

.seogeo-beneficios__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-mini-card);
  background: var(--color-section);
  color: var(--color-brand);
  font-size: 1.25rem;
}

.seogeo-beneficios__title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: 0.25rem;
}

.seogeo-beneficios__text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* =========================================================
   PROBLEMA + COMPARATIVO
   ========================================================= */
.seogeo-problema__header {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 3rem;
}

.seogeo-problema__header .eyebrow {
  margin-bottom: 0.5rem;
}

.seogeo-problema__text {
  margin-top: 1rem;
}

.seogeo-problema__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  list-style: none;
  margin: 0 0 3.5rem;
  padding: 0;
}

@media (min-width: 768px) {
  .seogeo-problema__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.seogeo-comparativo {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .seogeo-comparativo {
    grid-template-columns: repeat(2, 1fr);
  }
}

.seogeo-comparativo__panel {
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  min-height: 26rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.seogeo-comparativo__panel--dificil {
  background: #fff;
  border: 1px solid var(--color-border);
}

.seogeo-comparativo__panel--estruturada {
  background: var(--color-ink);
  color: #fff;
}

.seogeo-comparativo__eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-brand);
}

.seogeo-comparativo__panel--estruturada .seogeo-comparativo__eyebrow {
  color: var(--color-highlight);
}

.seogeo-comparativo__title {
  font-size: 1.3125rem;
  font-weight: 800;
  margin-top: -0.5rem;
}

.seogeo-comparativo__panel--dificil .seogeo-comparativo__title {
  color: var(--color-ink);
}

.seogeo-comparativo__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.seogeo-comparativo__list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-ink);
}

.seogeo-comparativo__list-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-mini-card);
  background: var(--color-bg-muted);
  color: #b4492f;
  font-size: 0.9rem;
}

.seogeo-comparativo__caption {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-border);
}

.seogeo-comparativo__panel--estruturada .seogeo-comparativo__caption {
  color: rgb(255 255 255 / 0.7);
  border-top-color: rgb(255 255 255 / 0.15);
}

.seogeo-hub {
  position: relative;
  height: 14rem;
  flex: 1 1 auto;
}

@media (min-width: 480px) {
  .seogeo-hub {
    height: 16rem;
  }
}

.seogeo-hub__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.seogeo-hub__line {
  stroke: var(--color-brand);
  stroke-width: 0.4;
  opacity: 0.5;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.seogeo-reveal.is-inview .seogeo-hub__line {
  animation: seogeoLineDraw 0.7s ease-out forwards;
}

.seogeo-reveal.is-inview .seogeo-hub__line:nth-child(1) {
  animation-delay: 0.15s;
}
.seogeo-reveal.is-inview .seogeo-hub__line:nth-child(2) {
  animation-delay: 0.28s;
}
.seogeo-reveal.is-inview .seogeo-hub__line:nth-child(3) {
  animation-delay: 0.41s;
}
.seogeo-reveal.is-inview .seogeo-hub__line:nth-child(4) {
  animation-delay: 0.54s;
}

.seogeo-hub__center {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 999px;
  background: var(--color-brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 0 0 0.6rem rgb(72 160 217 / 0.18);
}

.seogeo-hub__node {
  position: absolute;
  z-index: 2;
  translate: -50% -50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  width: 6rem;
}

.seogeo-hub__node i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.12);
  color: var(--color-highlight);
  font-size: 0.95rem;
}

.seogeo-hub__node--1 {
  top: 22%;
  left: 22%;
}
.seogeo-hub__node--2 {
  top: 22%;
  left: 78%;
}
.seogeo-hub__node--3 {
  top: 78%;
  left: 22%;
}
.seogeo-hub__node--4 {
  top: 78%;
  left: 78%;
}

/* =========================================================
   ESTRATÉGIA — 6 cards (3x2)

   Os cards em si reaproveitam .solutions-service-card/.solutions-services__grid
   (assets/css/input.css) sem CSS próprio — ver estrategia.php. Só a
   largura de conteúdo (mais estreita que o .container do site) e o
   cabeçalho são específicos desta seção, mesmo idioma width:min(...) de
   .diagnostic-capabilities__inner (assets/css/diagnostic.css).
   ========================================================= */
.seogeo-estrategia__inner {
  width: min(100% - 3rem, 80rem); /* 1280px */
  margin-inline: auto;
}

.seogeo-estrategia__header {
  max-width: 50rem; /* ~800px */
  margin-bottom: 2.75rem;
}

.seogeo-estrategia__header .eyebrow {
  margin-bottom: 0.5rem;
}

.seogeo-estrategia__header .body-text {
  margin-top: 1rem;
}

/* =========================================================
   SEO E GEO TRABALHAM JUNTOS
   ========================================================= */
.seogeo-juntos__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .seogeo-juntos__grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: 4rem;
  }
}

.seogeo-juntos__visual {
  position: relative;
  height: 22rem;
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
}

@media (min-width: 640px) {
  .seogeo-juntos__visual {
    height: 26rem;
  }
}

@media (min-width: 1024px) {
  .seogeo-juntos__visual {
    height: 29rem;
  }
}

.seogeo-juntos__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.seogeo-juntos__line {
  stroke: var(--color-brand);
  stroke-width: 0.35;
  opacity: 0.45;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.seogeo-juntos__visual.is-inview .seogeo-juntos__line {
  animation: seogeoLineDraw 0.7s ease-out forwards;
}

.seogeo-juntos__visual.is-inview .seogeo-juntos__line:nth-child(1) {
  animation-delay: 0.1s;
}
.seogeo-juntos__visual.is-inview .seogeo-juntos__line:nth-child(2) {
  animation-delay: 0.2s;
}
.seogeo-juntos__visual.is-inview .seogeo-juntos__line:nth-child(3) {
  animation-delay: 0.3s;
}
.seogeo-juntos__visual.is-inview .seogeo-juntos__line:nth-child(4) {
  animation-delay: 0.4s;
}
.seogeo-juntos__visual.is-inview .seogeo-juntos__line:nth-child(5) {
  animation-delay: 0.5s;
}
.seogeo-juntos__visual.is-inview .seogeo-juntos__line:nth-child(6) {
  animation-delay: 0.6s;
}

.seogeo-juntos__store {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 999px;
  background: var(--color-ink);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
  justify-content: center;
  box-shadow: 0 0 0 0.7rem rgb(28 30 60 / 0.08);
}

.seogeo-juntos__store i {
  font-size: 1.5rem;
  color: var(--color-highlight);
}

.seogeo-juntos__node {
  position: absolute;
  z-index: 2;
  translate: -50% -50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  width: 7rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-ink);
}

.seogeo-juntos__node i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-mini-card);
  background: var(--color-section);
  color: var(--color-brand);
  font-size: 0.95rem;
}

.seogeo-juntos__node--1 {
  top: 16%;
  left: 18%;
}
.seogeo-juntos__node--2 {
  top: 8%;
  left: 50%;
}
.seogeo-juntos__node--3 {
  top: 16%;
  left: 82%;
}
.seogeo-juntos__node--4 {
  top: 84%;
  left: 18%;
}
.seogeo-juntos__node--5 {
  top: 92%;
  left: 50%;
}
.seogeo-juntos__node--6 {
  top: 84%;
  left: 82%;
}

@media (max-width: 639px) {
  .seogeo-juntos__node {
    width: 5rem;
    font-size: 0.625rem;
  }
}

.seogeo-juntos__content .eyebrow {
  margin-bottom: 0.5rem;
  display: block;
}

.seogeo-juntos__content .h-section {
  margin-bottom: 1rem;
}

.seogeo-juntos__content .body-text {
  margin-bottom: 1.75rem;
}

.seogeo-juntos__benefits {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.seogeo-juntos__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-ink);
}

.seogeo-juntos__check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.1rem;
  border-radius: 999px;
  background: var(--color-section);
  color: var(--color-brand);
  font-size: 0.7rem;
}

/* =========================================================
   POR QUE DSCOMM — 4 cards
   ========================================================= */
.seogeo-porque__header {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 3rem;
}

.seogeo-porque__header .eyebrow {
  margin-bottom: 0.5rem;
}

.seogeo-porque__header .body-text {
  margin-top: 1rem;
}

.seogeo-porque__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .seogeo-porque__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .seogeo-porque__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.seogeo-porque__card {
  position: relative;
  height: 100%;
  min-height: 14rem;
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: inset 0 3px 0 var(--color-ink);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: translate 0.2s ease, box-shadow 0.2s ease;
}

.seogeo-porque__card:hover {
  translate: 0 -4px;
  box-shadow: inset 0 3px 0 var(--color-ink), 0 1.25rem 2.5rem -1.5rem rgb(28 30 60 / 0.3);
}

.seogeo-porque__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-mini-card);
  background: var(--color-ink);
  color: var(--color-brand);
  font-size: 1.2rem;
}

.seogeo-porque__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-ink);
}

.seogeo-porque__text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

/* =========================================================
   COMO FUNCIONA — 3 etapas

   Etapas reaproveitam .solutions-service-card/.solutions-services__grid,
   mesma técnica de .diagnostic-process__inner — ver como-funciona.php.
   ========================================================= */
.seogeo-como__inner {
  width: min(100% - 3rem, 79.5rem); /* 1272px */
  margin-inline: auto;
}

.seogeo-como__header {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.seogeo-como__header .eyebrow {
  margin-bottom: 0.5rem;
  text-align: center;
}

.seogeo-como__intro {
  margin-top: 0.75rem;
}

/* =========================================================
   FAQ
   ========================================================= */
.seogeo-faq__title {
  max-width: 42rem;
  margin-top: 0.5rem;
  margin-bottom: 3.5rem;
}

.seogeo-faq__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem 2rem;
  max-width: 64rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .seogeo-faq__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.seogeo-faq__item {
  border-bottom: 1px solid var(--color-border);
}

.seogeo-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding-block: 1.35rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-ink);
}

.seogeo-faq__icon {
  flex-shrink: 0;
  color: var(--color-brand);
  transition: transform 0.2s ease;
}

.seogeo-faq__trigger[aria-expanded='true'] .seogeo-faq__icon {
  transform: rotate(45deg);
}

.seogeo-faq__panel {
  padding-bottom: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.seogeo-cta-final__inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .seogeo-cta-final__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
  }
}

.seogeo-cta-final__text {
  margin-top: 0.75rem;
  color: rgb(255 255 255 / 0.85);
}

.seogeo-cta-final__action-col {
  flex-shrink: 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .seogeo-cta-final__action-col {
    width: auto;
  }
}

/* =========================================================
   REVELAÇÃO GENÉRICA (JS adiciona .seogeo-reveal + alterna .is-inview)
   ========================================================= */
.seogeo-reveal {
  opacity: 0;
  translate: 0 16px;
  transition: opacity 0.6s ease, translate 0.6s ease;
}

.seogeo-reveal.is-inview {
  opacity: 1;
  translate: 0 0;
}

.seogeo-problema__grid > li.seogeo-reveal,
.seogeo-porque__grid > li.seogeo-reveal,
.seogeo-estrategia__inner .solutions-services__grid > li.seogeo-reveal,
.seogeo-como__inner .solutions-services__grid > li.seogeo-reveal {
  transition-delay: calc(var(--seogeo-reveal-index, 0) * 60ms);
}

@media (prefers-reduced-motion: reduce) {
  .seogeo-reveal {
    transition: none !important;
    opacity: 1 !important;
    translate: 0 0 !important;
  }

  .seogeo-hub__line,
  .seogeo-juntos__line {
    animation: none !important;
    stroke-dashoffset: 0 !important;
  }

  .seogeo-porque__card:hover {
    translate: 0 0;
  }
}
