@font-face {
  font-family: "Sackers Gothic";
  src: url("/fonts/Sackers_Gothic_Medium.ttf") format("truetype");
  font-display: swap;
}

:root {
  --bg: #080808;
  --surface: #111111;
  --surface-soft: #151515;
  --text: #f5f5f3;
  --muted: #a7a7a2;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #ffffff;
  --success: #b7e4c7;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.seo-page {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(ellipse at 85% 4%, rgba(67, 74, 87, 0.24), transparent 34rem),
    radial-gradient(ellipse at 12% 42%, rgba(49, 42, 58, 0.2), transparent 38rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .8rem 1rem;
  color: #080808;
  background: #fff;
  border-radius: .35rem;
}
.skip-link:focus { top: 1rem; }

.seo-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, .82);
  backdrop-filter: blur(18px);
}
.seo-nav {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 4.75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.seo-logo { flex: 0 0 auto; }
.seo-logo img { width: auto; height: 32px; display: block; object-fit: contain; filter: drop-shadow(0 0 16px rgba(255,255,255,.08)); }
.seo-menu { display: flex; align-items: center; gap: 1.25rem; font-size: .88rem; }
.seo-menu a { text-decoration: none; color: var(--muted); }
.seo-menu a:hover, .seo-menu a:focus-visible { color: var(--text); }
.seo-menu a.seo-button { color: #fff; }
.seo-button, .seo-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 3rem;
  padding: .82rem 1.2rem;
  border: 1px solid #25d366;
  border-radius: .42rem;
  text-decoration: none;
  font-weight: 650;
  font-size: .9rem;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.seo-button { color: #fff; background: #25d366; box-shadow: 0 8px 24px rgba(37,211,102,.2); }
.seo-button-secondary { color: #fff; background: #1dad57; border-color: #1dad57; }
.seo-button:hover, .seo-button-secondary:hover { transform: translateY(-2px); }
.seo-button:hover { color: #fff; background: #20bd5a; border-color: #20bd5a; box-shadow: 0 10px 28px rgba(37,211,102,.3); }
.seo-button-secondary:hover { color: #fff; background: #17984b; border-color: #17984b; }

.seo-container { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.seo-breadcrumbs { padding-top: 1.5rem; color: var(--muted); font-size: .82rem; }
.seo-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .45rem; padding: 0; margin: 0; list-style: none; }
.seo-breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: .45rem; color: #686868; }
.seo-breadcrumbs a { text-decoration: none; }

.seo-hero { padding: clamp(3.5rem, 7vw, 5.5rem) 0 4rem; position: relative; overflow: hidden; }
.seo-hero .seo-container { text-align: center; }
.seo-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(900px, 90vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
}
.seo-kicker {
  margin: 0 0 1.1rem;
  color: #c8c8c3;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.seo-hero h1, .seo-section h2, .seo-card h2, .seo-card h3 {
  font-family: "Sackers Gothic", Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: .055em;
}
.seo-hero h1 {
  max-width: 820px;
  margin: 0 auto 1.35rem;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
  background: linear-gradient(180deg, #fff, #b8b8b3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-wrap: balance;
}
.seo-lead { max-width: 720px; margin: 0 auto; color: var(--muted); font-size: 1rem; font-weight: 350; }
.seo-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.seo-hero .seo-actions { justify-content: center; }
.seo-proofline { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 1.25rem; margin-top: 2.3rem; color: #c5c5c1; font-size: .84rem; }
.seo-proofline span::before { content: "✓"; margin-right: .45rem; color: var(--success); }

.seo-main { padding: 4.5rem 0 6rem; }
.seo-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.seo-article { min-width: 0; }
.seo-article > p:first-of-type { font-size: 1.16rem; color: #deded9; }
.seo-section { padding: 2.4rem 0; border-bottom: 1px solid var(--line); }
.seo-section:first-child { padding-top: 0; }
.seo-section h2 { margin: 0 0 1.15rem; font-size: clamp(1.15rem, 2.2vw, 1.5rem); line-height: 1.4; font-weight: 600; }
.seo-section h3 { margin: 1.8rem 0 .7rem; font-size: 1.05rem; }
.seo-section p { color: #b8b8b3; margin: .75rem 0; }
.seo-section strong { color: #f0f0ec; }
.seo-section ul, .seo-section ol { color: #b8b8b3; padding-left: 1.2rem; }
.seo-section li { margin: .65rem 0; padding-left: .25rem; }
.seo-cluster-context a, .seo-focus-section a {
  color: #e8e8e3;
  text-decoration-color: rgba(255,255,255,.45);
  text-underline-offset: 3px;
}
.seo-cluster-context a:hover, .seo-cluster-context a:focus-visible,
.seo-focus-section a:hover, .seo-focus-section a:focus-visible { text-decoration-color: #25d366; }
.seo-editorial-trust { padding-bottom: 1.75rem; }
.seo-editorial-trust .seo-mini-meta { border-top: 0; padding-top: .25rem; }
.seo-note {
  margin: 1.5rem 0;
  padding: 1rem 1.15rem;
  border-left: 2px solid #dcdcd6;
  background: rgba(255,255,255,.035);
  color: #c9c9c4;
}
.seo-sidebar { position: sticky; top: 6rem; }
.seo-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(165deg, rgba(31,31,31,.88), rgba(13,13,13,.92), rgba(20,20,20,.9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 22px 80px rgba(0,0,0,.2);
}
.seo-sidebar .seo-card { padding: 1.35rem; }
.seo-sidebar h2 { font-size: .98rem; line-height: 1.45; margin: 0 0 .75rem; }
.seo-sidebar p { color: var(--muted); font-size: .9rem; }
.seo-sidebar .seo-button { width: 100%; margin-top: .65rem; }
.seo-mini-meta { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .76rem !important; }

.seo-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: .85rem; margin: 1.5rem 0; }
.seo-metric { padding: 1.1rem; }
.seo-metric strong { display: block; color: #fff; font-size: 1.45rem; line-height: 1.15; }
.seo-metric span { color: var(--muted); font-size: .78rem; }
.seo-case-image { padding: 1rem; margin-top: 1rem; }
.seo-case-image img {
  display: block;
  width: 253px;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  border-radius: .55rem;
  border: 1px solid var(--line);
}
.seo-caption { margin: .7rem 0 0; color: #858581; font-size: .75rem; }
.seo-case-proof .seo-button-secondary { margin-top: 1.1rem; }
.seo-deliverables li::marker { color: var(--success); }

.seo-inline-cta {
  margin: 2rem 0;
  padding: 1.35rem 1.45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  border-color: var(--line-strong);
}
.seo-inline-cta .seo-kicker { margin-bottom: .35rem; }
.seo-inline-cta h3 { margin: 0; font-size: 1rem; line-height: 1.45; }
.seo-inline-cta .seo-button { flex: 0 0 auto; }

.seo-faq details { border-bottom: 1px solid var(--line); }
.seo-faq summary { cursor: pointer; list-style: none; padding: 1.1rem 0; font-weight: 650; color: #e7e7e2; }
.seo-faq summary::-webkit-details-marker { display: none; }
.seo-faq summary::after { content: "+"; float: right; color: var(--muted); font-size: 1.2rem; }
.seo-faq details[open] summary::after { content: "–"; }
.seo-faq details p { padding-bottom: 1rem; margin-top: 0; }

.seo-related { padding: 4rem 0 5rem; border-top: 1px solid var(--line); }
.seo-related h2 { margin: 0 0 1.4rem; font-family: "Sackers Gothic", sans-serif; font-size: 1.35rem; text-transform: uppercase; letter-spacing: .055em; }
.seo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.seo-link-card { min-height: 180px; padding: 1.35rem; text-decoration: none; display: flex; flex-direction: column; justify-content: space-between; }
.seo-link-card:hover { border-color: var(--line-strong); transform: translateY(-3px); transition: .2s ease; }
.seo-link-card small { color: #898984; text-transform: uppercase; letter-spacing: .12em; font-size: .67rem; }
.seo-link-card h3 { margin: .65rem 0 0; font-size: .92rem; line-height: 1.45; font-weight: 500; }
.seo-link-card span { color: var(--muted); font-size: .8rem; }

.seo-hub-group { padding: 2rem 0 3rem; }
.seo-hub-group > h2 { font-family: "Sackers Gothic", sans-serif; text-transform: uppercase; letter-spacing: .055em; font-size: 1.35rem; }
.seo-hub-group > p { color: var(--muted); max-width: 760px; }
.seo-sales-directory { padding-top: 5rem; }
.seo-directory-title { margin: 0 0 2.5rem; font-family: "Sackers Gothic", sans-serif; text-transform: uppercase; letter-spacing: .055em; font-size: clamp(1.35rem, 3vw, 2rem); line-height: 1.35; }

.seo-final-cta { padding: 5rem 0; text-align: center; border-top: 1px solid var(--line); background: radial-gradient(ellipse at 50% 110%, rgba(255,255,255,.08), transparent 55%); }
.seo-final-cta h2 { max-width: 760px; margin: 0 auto 1rem; font-family: "Sackers Gothic", sans-serif; text-transform: uppercase; letter-spacing: .055em; font-size: clamp(1.5rem, 4vw, 2.55rem); line-height: 1.3; }
.seo-final-cta p { max-width: 640px; margin: 0 auto; color: var(--muted); }
.seo-final-cta .seo-actions { justify-content: center; }

.seo-footer { padding: 2.5rem 0; border-top: 1px solid var(--line); color: var(--muted); }
.seo-footer-grid { display: flex; justify-content: space-between; gap: 1.5rem; align-items: center; }
.seo-footer img { width: auto; height: 42px; object-fit: contain; }
.seo-footer p { margin: 0; font-size: .78rem; max-width: 630px; text-align: right; }
.seo-source-list a { color: #deded9; text-underline-offset: 3px; }

.seo-whatsapp-float {
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 70;
  min-width: 56px;
  height: 56px;
  padding: 0 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  color: #fff;
  background: #25d366;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(37,211,102,.34);
  text-decoration: none;
  font-size: .86rem;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease;
}
.seo-whatsapp-float img { width: 28px; height: 28px; object-fit: contain; mix-blend-mode: screen; }
.seo-whatsapp-float:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 36px rgba(37,211,102,.44); }

body:not(.seo-page) a[aria-label="Fale conosco pelo WhatsApp"] {
  width: 56px !important;
  height: 56px !important;
  padding: 14px !important;
  background: #25d366 !important;
  border-radius: 999px !important;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(37,211,102,.34) !important;
}
body:not(.seo-page) a[aria-label="Fale conosco pelo WhatsApp"] img { width: 28px !important; height: 28px !important; object-fit: contain !important; mix-blend-mode: screen; }

.seo-entry {
  padding: 4.5rem 1rem;
  color: var(--text);
  background: #080808;
  border-top: 1px solid var(--line);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  text-align: center;
}
.seo-entry > div { width: min(850px, 100%); margin: 0 auto; }
.seo-entry h2 { font-family: "Sackers Gothic", sans-serif; text-transform: uppercase; letter-spacing: .055em; font-size: clamp(1.35rem, 3vw, 2rem); }
.seo-entry p { color: var(--muted); }
.seo-entry .seo-actions { justify-content: center; }
.seo-entry-links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem 1.15rem;
  font-size: .82rem;
}
.seo-entry-links a { color: #c8c8c3; text-underline-offset: 3px; }
.seo-entry-links a:hover, .seo-entry-links a:focus-visible { color: #fff; }

@media (max-width: 900px) {
  .seo-menu > a:not(.seo-button) { display: none; }
  .seo-layout { grid-template-columns: 1fr; }
  .seo-sidebar { position: static; }
  .seo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .seo-nav { min-height: 4.2rem; }
  .seo-logo img { width: auto; height: 32px; }
  .seo-menu .seo-button { min-height: 2.65rem; padding: .7rem .8rem; font-size: .78rem; }
  .seo-hero { padding-top: 3.4rem; }
  .seo-actions { flex-direction: column; }
  .seo-actions a { width: 100%; }
  .seo-metrics, .seo-grid { grid-template-columns: 1fr; }
  .seo-inline-cta { align-items: stretch; flex-direction: column; }
  .seo-inline-cta .seo-button { width: 100%; }
  .seo-footer-grid { flex-direction: column; align-items: flex-start; }
  .seo-footer p { text-align: left; }
  .seo-whatsapp-float { width: 56px; min-width: 56px; padding: 0; }
  .seo-whatsapp-float span { display: none; }
}

@media (min-width: 768px) {
  .seo-hero h1 { font-size: 1.875rem; }
  .seo-lead { font-size: 1.125rem; }
}

@media (min-width: 1024px) {
  .seo-hero h1 { font-size: 2.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
