/*
 * Bigode App — paginas comerciais e editoriais SEO
 *
 * Este arquivo e deliberadamente isolado da landing e dos paineis. Todo o
 * sistema visual fica sob .seo-page para que as paginas possam evoluir sem
 * ampliar os estilos compartilhados da aplicacao autenticada.
 */

.seo-page {
  --seo-ink: #0b0b0c;
  --seo-ink-soft: #171719;
  --seo-paper: #ffffff;
  --seo-surface: #f6f6f3;
  --seo-surface-warm: #f5f0e5;
  --seo-line: rgba(11, 11, 12, 0.11);
  --seo-line-strong: rgba(11, 11, 12, 0.2);
  --seo-muted: #64646b;
  --seo-gold: #d8a928;
  --seo-gold-light: #f2d775;
  --seo-gold-pale: #fff7d8;
  --seo-gold-text: #765807;
  --seo-cyan: #22e7e7;
  --seo-cyan-text: #08777d;
  --seo-pink: #ff356f;
  --seo-pink-text: #ad1743;
  --seo-green: #16865d;
  --seo-accent: var(--seo-gold);
  --seo-accent-soft: var(--seo-gold-pale);
  --seo-accent-text: var(--seo-gold-text);
  --seo-shadow-sm: 0 14px 38px rgba(11, 11, 12, 0.08);
  --seo-shadow-md: 0 24px 65px rgba(11, 11, 12, 0.13);
  --seo-shadow-lg: 0 42px 110px rgba(11, 11, 12, 0.18);
  --seo-radius-sm: 14px;
  --seo-radius-md: 22px;
  --seo-radius-lg: 32px;
  --seo-text-xs: 0.75rem;
  --seo-text-sm: 0.875rem;
  --seo-text-body: 1rem;
  --seo-text-lead: 1.125rem;
  --seo-content: 1180px;
  --seo-reading: 72ch;
  background: var(--seo-paper);
  color: var(--seo-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.seo-page *,
.seo-page *::before,
.seo-page *::after {
  box-sizing: border-box;
}

.seo-page ::selection {
  background: var(--seo-gold-light);
  color: var(--seo-ink);
}

.seo-page img,
.seo-page svg,
.seo-page video {
  display: block;
  height: auto;
  max-width: 100%;
}

.seo-page button,
.seo-page input,
.seo-page select,
.seo-page textarea {
  font: inherit;
}

.seo-page a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.seo-page :focus-visible {
  outline: 3px solid rgba(151, 109, 8, 0.65);
  outline-offset: 3px;
}

.seo-shell {
  min-height: 100vh;
}

.seo-container {
  margin-inline: auto;
  max-width: calc(var(--seo-content) + 3rem);
  padding-inline: 1.5rem;
  width: 100%;
}

.seo-skip-link {
  background: var(--seo-gold-light);
  border-radius: 0 0 10px 10px;
  color: var(--seo-ink);
  font-size: var(--seo-text-sm);
  font-weight: 800;
  left: 1rem;
  min-height: 44px;
  padding: 0.72rem 1rem;
  position: fixed;
  top: -100px;
  transition: top 180ms ease;
  z-index: 3000;
}

.seo-skip-link:focus {
  top: 0;
}

/* Cabecalho e navegacao */

.seo-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  z-index: 1040;
}

.seo-header.is-scrolled {
  border-color: var(--seo-line);
  box-shadow: 0 10px 34px rgba(11, 11, 12, 0.07);
}

.seo-header__inner {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-inline: auto;
  max-width: calc(var(--seo-content) + 3rem);
  min-height: 76px;
  padding-inline: 1.5rem;
  width: 100%;
}

.seo-brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.2rem;
  font-weight: 760;
  gap: 0.7rem;
  letter-spacing: -0.045em;
  min-height: 44px;
  text-decoration: none;
}

.seo-brand img {
  height: 38px;
  object-fit: contain;
  width: 64px;
}

.seo-brand strong {
  font-weight: 900;
}

.seo-nav {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: 1rem;
  justify-content: flex-end;
}

.seo-nav__links,
.seo-header__actions {
  align-items: center;
  display: flex;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.seo-nav__links a {
  align-items: center;
  border-radius: 999px;
  color: #3f3f44;
  display: inline-flex;
  font-size: var(--seo-text-sm);
  font-weight: 680;
  min-height: 44px;
  padding: 0.62rem 0.82rem;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.seo-nav__links a:hover,
.seo-nav__links a:focus-visible,
.seo-nav__links a[aria-current="page"] {
  background: var(--seo-surface);
  color: var(--seo-ink);
}

.seo-nav-toggle {
  align-items: center;
  background: var(--seo-paper);
  border: 1px solid var(--seo-line);
  border-radius: 12px;
  color: var(--seo-ink);
  display: none;
  flex: 0 0 44px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.seo-nav__toggle {
  align-items: center;
  background: var(--seo-paper);
  border: 1px solid var(--seo-line);
  border-radius: 12px;
  color: var(--seo-ink);
  display: none;
  font-size: var(--seo-text-sm);
  font-weight: 760;
  gap: 0.45rem;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 0.55rem 0.7rem;
}

.seo-nav__toggle i {
  font-size: 1.15rem;
}

.seo-nav-toggle__bars,
.seo-nav-toggle__bars::before,
.seo-nav-toggle__bars::after {
  background: currentColor;
  border-radius: 2px;
  display: block;
  height: 2px;
  position: relative;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 22px;
}

.seo-nav-toggle__bars::before,
.seo-nav-toggle__bars::after {
  content: "";
  left: 0;
  position: absolute;
}

.seo-nav-toggle__bars::before { top: -7px; }
.seo-nav-toggle__bars::after { top: 7px; }
.seo-nav-toggle[aria-expanded="true"] .seo-nav-toggle__bars { background: transparent; }
.seo-nav-toggle[aria-expanded="true"] .seo-nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.seo-nav-toggle[aria-expanded="true"] .seo-nav-toggle__bars::after { top: 0; transform: rotate(-45deg); }

/* Elementos de navegacao e botoes */

.seo-breadcrumb {
  color: var(--seo-muted);
  font-size: var(--seo-text-sm);
  margin-inline: auto;
  max-width: calc(var(--seo-content) + 3rem);
  padding-inline: 1.5rem;
  padding-block: 1.1rem 0;
}

.seo-breadcrumb ol {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.seo-breadcrumb li {
  align-items: center;
  display: inline-flex;
  gap: 0.45rem;
}

.seo-breadcrumb li:not(:last-child)::after {
  color: #9a9a9f;
  content: "/";
}

.seo-breadcrumb a {
  border-radius: 6px;
  min-height: 44px;
  padding-block: 0.62rem;
}

.seo-breadcrumb [aria-current="page"] {
  color: var(--seo-ink);
  font-weight: 700;
}

.seo-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: var(--seo-text-sm);
  font-weight: 800;
  gap: 0.55rem;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.25rem;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.seo-button--primary {
  background: linear-gradient(135deg, var(--seo-gold-light), var(--seo-gold));
  border-color: rgba(11, 11, 12, 0.13);
  box-shadow: 0 13px 30px rgba(141, 99, 4, 0.18);
  color: var(--seo-ink);
}

.seo-button--secondary {
  background: var(--seo-ink);
  color: var(--seo-paper);
}

.seo-button--ghost {
  background: transparent;
  border-color: var(--seo-line-strong);
  color: var(--seo-ink);
}

.seo-button:hover {
  transform: translateY(-2px);
}

.seo-button--secondary:hover,
.seo-button--secondary:focus-visible {
  background: #2a2a2d;
  color: var(--seo-paper);
}

.seo-button--ghost:hover,
.seo-button--ghost:focus-visible {
  background: var(--seo-surface);
  border-color: rgba(11, 11, 12, 0.3);
}

/* Cinco arquetipos visuais */

.seo-theme--command {
  --seo-accent: var(--seo-gold);
  --seo-accent-soft: var(--seo-gold-pale);
  --seo-accent-text: var(--seo-gold-text);
}

.seo-theme--flow,
.seo-theme--dayflow {
  --seo-accent: var(--seo-cyan);
  --seo-accent-soft: #e9fbfb;
  --seo-accent-text: var(--seo-cyan-text);
}

.seo-theme--conversation {
  --seo-accent: var(--seo-cyan);
  --seo-accent-soft: #eafdfd;
  --seo-accent-text: var(--seo-cyan-text);
}

.seo-theme--retail,
.seo-theme--shelf {
  --seo-accent: #f0a83a;
  --seo-accent-soft: #fff2df;
  --seo-accent-text: #78510f;
}

.seo-theme--people {
  --seo-accent: var(--seo-pink);
  --seo-accent-soft: #fff0f5;
  --seo-accent-text: var(--seo-pink-text);
}

/* Hero */

.seo-hero {
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
  position: relative;
}

.seo-hero::before {
  background-image:
    linear-gradient(rgba(11, 11, 12, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 11, 12, 0.035) 1px, transparent 1px);
  background-size: 62px 62px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 92%);
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
  z-index: -2;
}

.seo-hero::after {
  background:
    radial-gradient(circle at 12% 24%, color-mix(in srgb, var(--seo-accent) 17%, transparent), transparent 28%),
    radial-gradient(circle at 87% 76%, rgba(255, 53, 111, 0.1), transparent 27%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.seo-hero__inner {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 1.06fr);
  margin-inline: auto;
  max-width: calc(var(--seo-content) + 3rem);
  padding-inline: 1.5rem;
  width: 100%;
}

.seo-hero__copy {
  max-width: 660px;
  position: relative;
  z-index: 2;
}

.seo-hero__eyebrow,
.seo-section__kicker {
  align-items: center;
  color: var(--seo-accent-text);
  display: inline-flex;
  font-size: var(--seo-text-xs);
  font-weight: 850;
  gap: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seo-hero__eyebrow {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--seo-line);
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(11, 11, 12, 0.05);
  padding: 0.52rem 0.78rem;
}

.seo-hero__eyebrow::before {
  background: var(--seo-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--seo-accent) 15%, transparent);
  content: "";
  height: 8px;
  width: 8px;
}

.seo-hero__title {
  font-size: clamp(2.75rem, 5.6vw, 5.6rem);
  font-weight: 890;
  letter-spacing: -0.072em;
  line-height: 0.98;
  margin: 1.35rem 0 1.3rem;
  text-wrap: balance;
}

.seo-hero__lead {
  color: var(--seo-muted);
  font-size: clamp(1.05rem, 1.7vw, 1.23rem);
  line-height: 1.72;
  margin: 0;
  max-width: 62ch;
}

.seo-hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.seo-hero__note {
  align-items: flex-start;
  color: #55555a;
  display: flex;
  font-size: var(--seo-text-xs);
  gap: 0.5rem;
  margin: 1rem 0 0;
}

.seo-hero__note i {
  color: var(--seo-green);
  margin-top: 0.18rem;
}

.seo-hero__visual {
  min-width: 0;
  position: relative;
}

.seo-hero--centered {
  text-align: center;
}

.seo-hero--centered .seo-hero__inner {
  display: block;
}

.seo-hero--centered .seo-hero__copy {
  margin-inline: auto;
  max-width: 900px;
}

.seo-hero--centered .seo-hero__lead,
.seo-hero--centered .seo-hero__actions,
.seo-hero--centered .seo-hero__note {
  justify-content: center;
  margin-inline: auto;
}

.seo-hero--centered .seo-hero__visual {
  margin: 3rem auto 0;
  max-width: 980px;
}

.seo-hero--visual-below .seo-hero__inner {
  display: block;
}

.seo-hero--visual-below .seo-hero__copy {
  max-width: 820px;
}

.seo-hero--visual-below .seo-hero__visual {
  margin-top: 3rem;
}

.seo-hero--editorial .seo-hero__inner {
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.seo-hero--editorial .seo-hero__title {
  font-size: clamp(2.7rem, 5.1vw, 5.15rem);
}

.seo-page--article .seo-hero {
  padding-block: clamp(3.5rem, 7vw, 6.3rem);
}

.seo-page--article .seo-hero__copy {
  max-width: 850px;
}

.seo-page--article .seo-hero__title {
  font-size: clamp(2.55rem, 5vw, 4.8rem);
}

/* Cenas 3D compartilhadas */

.seo-scene {
  --seo-tilt-x: 0deg;
  --seo-tilt-y: 0deg;
  background:
    radial-gradient(circle at 84% 15%, color-mix(in srgb, var(--seo-accent) 18%, transparent), transparent 30%),
    radial-gradient(circle at 8% 88%, rgba(216, 169, 40, 0.15), transparent 28%),
    var(--seo-ink-soft);
  border: 1px solid rgba(11, 11, 12, 0.16);
  border-radius: var(--seo-radius-lg);
  box-shadow: var(--seo-shadow-lg);
  color: var(--seo-paper);
  min-height: 520px;
  overflow: hidden;
  perspective: 1100px;
  position: relative;
}

.seo-scene::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  inset: 0;
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
  opacity: 0.6;
  pointer-events: none;
  position: absolute;
}

.seo-scene::after {
  background: linear-gradient(90deg, var(--seo-gold), var(--seo-cyan), var(--seo-pink));
  bottom: -110px;
  content: "";
  filter: blur(70px);
  height: 160px;
  left: 14%;
  opacity: 0.2;
  pointer-events: none;
  position: absolute;
  width: 72%;
}

.seo-scene [data-seo-tilt] {
  height: 100%;
  inset: 0;
  position: absolute;
  transform: rotateX(var(--seo-tilt-x)) rotateY(var(--seo-tilt-y));
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
  width: 100%;
}

.seo-scene__stage > .seo-scene__layer {
  inset: 0;
}

.seo-scene__layer {
  position: absolute;
  transform-style: preserve-3d;
}

.seo-scene__layer--back { transform: translateZ(0); }
.seo-scene__layer--middle { transform: translateZ(24px); }
.seo-scene__layer--front { transform: translateZ(48px); }

.seo-scene__panel,
.seo-scene__card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--seo-ink);
  overflow: hidden;
}

.seo-scene__panel {
  border-radius: 19px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.33);
  inset: 11% 7% 10%;
  padding: 1.15rem;
  position: absolute;
  transform: translateZ(20px) rotateX(1deg) rotateY(-2deg);
}

.seo-scene__card {
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  padding: 0.9rem;
}

.seo-scene__panel-header {
  align-items: center;
  border-bottom: 1px solid var(--seo-line);
  display: flex;
  gap: 0.7rem;
  justify-content: space-between;
  margin: -1.15rem -1.15rem 1rem;
  min-height: 54px;
  padding: 0.75rem 1rem;
}

.seo-scene__panel-header strong,
.seo-scene__card strong {
  display: block;
  font-size: var(--seo-text-sm);
  line-height: 1.4;
}

.seo-scene__panel-header small,
.seo-scene__card small {
  color: #73737a;
  display: block;
  font-size: var(--seo-text-xs);
  line-height: 1.5;
}

.seo-scene__chip {
  align-items: center;
  background: var(--seo-accent-soft);
  border: 1px solid color-mix(in srgb, var(--seo-accent) 24%, transparent);
  border-radius: 999px;
  color: var(--seo-accent-text);
  display: inline-flex;
  font-size: var(--seo-text-xs);
  font-weight: 800;
  gap: 0.35rem;
  min-height: 30px;
  padding: 0.3rem 0.62rem;
}

.seo-scene__route {
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  height: 72%;
  left: 14%;
  position: absolute;
  top: 14%;
  transform: translateZ(5px) rotate(-8deg);
  width: 72%;
}

.seo-scene__dot {
  animation: seo-route-dot 5.5s linear infinite;
  background: var(--seo-accent);
  border: 4px solid var(--seo-paper);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  height: 18px;
  left: 12%;
  position: absolute;
  top: 14%;
  width: 18px;
}

.seo-scene__floating {
  animation: seo-float 5.4s ease-in-out infinite;
}

.seo-scene__floating--late {
  animation-delay: -2.7s;
}

.seo-motion-paused .seo-page [data-seo-ambient] *,
.seo-page [data-seo-ambient].is-motion-paused * {
  animation-play-state: paused !important;
}

.seo-page .seo-scene.is-motion-paused *,
.seo-motion-paused .seo-page .seo-scene * {
  animation-play-state: paused !important;
}

/* Composicoes das cenas geradas a partir do manifesto. */

.seo-scene--command .seo-scene__panel {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 4rem;
}

.seo-scene--command .seo-scene__panel > .seo-scene__chip {
  left: 1.1rem;
  min-width: 126px;
  position: absolute;
  top: 1rem;
}

.seo-scene--command .seo-scene__panel > .seo-scene__chip::after {
  content: "Visão do negócio";
}

.seo-scene--command .seo-scene__panel > .seo-scene__route {
  border: 0;
  border-bottom: 2px solid var(--seo-gold);
  border-radius: 50%;
  bottom: 17%;
  height: 45%;
  left: 8%;
  opacity: 0.48;
  position: absolute;
  top: auto;
  transform: rotate(-7deg);
  width: 84%;
}

.seo-scene--command .seo-scene__panel > .seo-scene__card {
  background:
    linear-gradient(150deg, var(--seo-paper), var(--seo-surface));
  min-height: 150px;
  position: relative;
}

.seo-scene--command .seo-scene__panel > .seo-scene__card::before {
  color: #6d6d73;
  content: "Atendimentos";
  font-size: var(--seo-text-xs);
  font-weight: 760;
}

.seo-scene--command .seo-scene__panel > .seo-scene__card::after {
  background: repeating-linear-gradient(
    90deg,
    rgba(11, 11, 12, 0.12) 0 10%,
    transparent 10% 15%
  );
  border-radius: 6px 6px 0 0;
  bottom: 1rem;
  content: "";
  height: 68px;
  left: 0.9rem;
  mask-image: linear-gradient(150deg, transparent 7%, #000 8% 88%, transparent 89%);
  position: absolute;
  right: 0.9rem;
}

.seo-scene--command .seo-scene__panel > .seo-scene__card:nth-last-child(1)::before {
  content: "Receita e comissão";
}

.seo-scene--flow .seo-scene__layer--middle {
  inset: 8% 7% 9%;
}

.seo-scene--flow .seo-scene__layer--middle > .seo-scene__route {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 22px;
  height: 100%;
  inset: 0;
  transform: translateZ(16px) rotateX(3deg) rotateY(2deg);
  width: 100%;
}

.seo-scene--flow .seo-scene__route .seo-scene__dot:nth-child(1) { animation-delay: 0s; }
.seo-scene--flow .seo-scene__route .seo-scene__dot:nth-child(2) { animation-delay: -1.8s; }
.seo-scene--flow .seo-scene__route .seo-scene__dot:nth-child(3) { animation-delay: -3.6s; }

.seo-scene--flow .seo-scene__layer--middle > .seo-scene__card {
  left: 9%;
  min-height: 96px;
  position: absolute;
  right: 28%;
  top: 18%;
  transform: translateZ(35px) rotate(-1deg);
}

.seo-scene--flow .seo-scene__layer--middle > .seo-scene__card::before,
.seo-scene--flow .seo-scene__layer--middle > .seo-scene__card::after {
  display: block;
  font-size: var(--seo-text-xs);
  line-height: 1.5;
}

.seo-scene--flow .seo-scene__layer--middle > .seo-scene__card::before {
  color: var(--seo-cyan-text);
  content: "Próximo horário";
  font-weight: 820;
}

.seo-scene--flow .seo-scene__layer--middle > .seo-scene__card::after {
  color: #707078;
  content: "Agenda organizada por profissional";
  margin-top: 0.25rem;
}

.seo-scene--flow .seo-scene__layer--middle > .seo-scene__card:last-child {
  bottom: 15%;
  left: 30%;
  right: 7%;
  top: auto;
  transform: translateZ(52px) rotate(1deg);
}

.seo-scene--conversation .seo-scene__panel {
  border: 7px solid #050506;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  inset: 8% 23%;
  justify-content: flex-end;
  padding: 3.4rem 0.8rem 1rem;
  transform: translateZ(35px) rotateY(-3deg);
}

.seo-scene--conversation .seo-scene__panel::before {
  background: #050506;
  border-radius: 0 0 11px 11px;
  content: "";
  height: 21px;
  left: 50%;
  position: absolute;
  top: -1px;
  transform: translateX(-50%);
  width: 82px;
}

.seo-scene--conversation .seo-scene__panel > .seo-scene__card {
  background: #e7e7e4;
  border: 0;
  border-radius: 15px 15px 4px 15px;
  box-shadow: none;
  min-height: 58px;
  padding: 0.7rem;
  width: 82%;
}

.seo-scene--conversation .seo-scene__panel > .seo-scene__card::before {
  color: #4c4c52;
  content: "Quais horários estão disponíveis?";
  font-size: var(--seo-text-xs);
  line-height: 1.45;
}

.seo-scene--conversation .seo-scene__panel > .seo-scene__card:nth-child(2) {
  align-self: flex-end;
  background: #dcf8ef;
  border-radius: 15px 15px 15px 4px;
  margin-top: 0.65rem;
  min-height: 74px;
}

.seo-scene--conversation .seo-scene__panel > .seo-scene__card:nth-child(2)::before {
  content: "Tenho duas opções próximas para você.";
}

.seo-scene--conversation .seo-scene__panel > .seo-scene__chip {
  align-self: flex-end;
  margin-top: 0.6rem;
}

.seo-scene--conversation .seo-scene__panel > .seo-scene__chip::after {
  content: "Atendimento organizado";
}

.seo-scene--retail .seo-scene__layer--middle {
  align-items: end;
  bottom: 17%;
  display: flex;
  gap: 1rem;
  justify-content: center;
  left: 12%;
  right: 12%;
  top: 15%;
}

.seo-scene--retail .seo-scene__layer--middle::after {
  background: linear-gradient(180deg, #e9c466, #996415);
  border-radius: 5px;
  bottom: -6px;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.4);
  content: "";
  height: 17px;
  left: 0;
  position: absolute;
  right: 0;
  transform: translateZ(16px) rotateX(8deg);
}

.seo-scene--retail .seo-scene__layer--middle > .seo-scene__card {
  background: linear-gradient(155deg, #f3d671, #d79d1f);
  border: 4px solid #27272a;
  border-radius: 8px 8px 17px 17px;
  box-shadow: 0 16px 27px rgba(0, 0, 0, 0.35);
  min-height: 104px;
  padding: 0;
  position: relative;
  transform: translateZ(38px);
  width: 68px;
}

.seo-scene--retail .seo-scene__layer--middle > .seo-scene__card::before {
  background: #27272a;
  border-radius: 6px 6px 1px 1px;
  content: "";
  height: 10px;
  left: 15%;
  position: absolute;
  top: -9px;
  width: 70%;
}

.seo-scene--retail .seo-scene__layer--middle > .seo-scene__card:nth-child(2) {
  background: linear-gradient(160deg, #22e7e7, #079da5);
  border-radius: 13px 13px 8px 8px;
  min-height: 145px;
  width: 58px;
}

.seo-scene--retail .seo-scene__layer--middle > .seo-scene__card:nth-child(3) {
  background: linear-gradient(160deg, #f3f3ed, #c7c7c0);
  min-height: 122px;
}

.seo-scene--retail .seo-scene__layer--middle > .seo-scene__route {
  border-color: rgba(242, 215, 117, 0.32);
  height: 118%;
  left: -8%;
  top: -12%;
  transform: translateZ(5px) rotate(-6deg);
  width: 116%;
}

.seo-scene--people .seo-scene__layer--middle {
  inset: 8%;
}

.seo-scene--people .seo-scene__layer--middle::before {
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  content: "";
  inset: 10%;
  position: absolute;
  transform: translateZ(7px) rotate(-8deg);
}

.seo-scene--people .seo-scene__layer--middle > .seo-scene__card {
  min-height: 76px;
  min-width: 170px;
  position: absolute;
  transform: translateZ(42px);
}

.seo-scene--people .seo-scene__layer--middle > .seo-scene__card::before,
.seo-scene--people .seo-scene__layer--middle > .seo-scene__card::after {
  display: block;
  font-size: var(--seo-text-xs);
  line-height: 1.45;
}

.seo-scene--people .seo-scene__layer--middle > .seo-scene__card::before {
  color: var(--seo-pink-text);
  content: "Equipe conectada";
  font-weight: 820;
}

.seo-scene--people .seo-scene__layer--middle > .seo-scene__card::after {
  color: #6f6f75;
  content: "Rotina, clientes e crescimento";
  margin-top: 0.22rem;
}

.seo-scene--people .seo-scene__layer--middle > .seo-scene__card:nth-of-type(2) {
  bottom: 9%;
  right: 3%;
}

.seo-scene--people .seo-scene__layer--middle > .seo-scene__card:nth-of-type(4) {
  left: 2%;
  top: 8%;
}

.seo-scene--people .seo-scene__layer--middle > .seo-scene__dot:nth-of-type(1) { left: 18%; top: 68%; }
.seo-scene--people .seo-scene__layer--middle > .seo-scene__dot:nth-of-type(3) { left: 68%; top: 16%; }
.seo-scene--people .seo-scene__layer--middle > .seo-scene__dot:nth-of-type(5) { left: 48%; top: 48%; }

/* Command center */

.seo-scene--command .seo-scene__panel {
  transform: translateZ(22px) rotateX(2deg) rotateY(-4deg) rotateZ(0.4deg);
}

.seo-scene__metrics {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-scene__metric {
  background: var(--seo-surface);
  border: 1px solid var(--seo-line);
  border-radius: 12px;
  min-width: 0;
  padding: 0.72rem;
}

.seo-scene__metric span,
.seo-scene__metric strong,
.seo-scene__metric small {
  display: block;
  line-height: 1.35;
}

.seo-scene__metric span,
.seo-scene__metric small {
  color: #73737a;
  font-size: var(--seo-text-xs);
}

.seo-scene__metric strong {
  font-size: 1.05rem;
  letter-spacing: -0.035em;
  margin-block: 0.18rem;
}

.seo-scene__metric small {
  color: var(--seo-green);
  font-weight: 700;
}

.seo-scene__bars {
  align-items: end;
  border-bottom: 1px solid var(--seo-line);
  display: grid;
  gap: 0.45rem;
  grid-template-columns: repeat(8, minmax(12px, 1fr));
  height: 145px;
  margin-top: 1rem;
  padding: 0 0.55rem;
}

.seo-scene__bar {
  background: rgba(11, 11, 12, 0.12);
  border-radius: 6px 6px 0 0;
  height: var(--seo-bar, 50%);
  min-height: 12px;
}

.seo-scene__bar:nth-child(3n + 1) {
  background: linear-gradient(to top, #b8830a, var(--seo-gold-light));
}

/* Day flow */

.seo-scene--flow,
.seo-scene--dayflow,
.seo-theme--dayflow .seo-scene {
  background:
    radial-gradient(circle at 82% 14%, rgba(34, 231, 231, 0.19), transparent 30%),
    radial-gradient(circle at 9% 88%, rgba(216, 169, 40, 0.18), transparent 28%),
    #111113;
}

.seo-scene--flow .seo-scene__panel,
.seo-scene--dayflow .seo-scene__panel,
.seo-theme--dayflow .seo-scene .seo-scene__panel {
  inset: 9% 8% 8%;
  transform: translateZ(20px) rotateX(4deg) rotateY(3deg) rotateZ(-0.5deg);
}

.seo-scene__schedule {
  display: grid;
  gap: 0.55rem;
}

.seo-scene__slot {
  align-items: center;
  border-bottom: 1px solid var(--seo-line);
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 48px 8px minmax(0, 1fr) auto;
  min-height: 56px;
  padding: 0.45rem 0;
}

.seo-scene__slot time,
.seo-scene__slot small {
  color: #707078;
  font-size: var(--seo-text-xs);
}

.seo-scene__slot > i {
  background: var(--seo-accent);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.seo-scene__slot strong {
  font-size: var(--seo-text-sm);
}

.seo-scene__slot em {
  background: var(--seo-accent-soft);
  border-radius: 999px;
  color: var(--seo-accent-text);
  font-size: var(--seo-text-xs);
  font-style: normal;
  font-weight: 750;
  padding: 0.3rem 0.5rem;
}

/* Conversation */

.seo-theme--conversation .seo-hero {
  background: #0d0d0f;
  color: var(--seo-paper);
}

.seo-theme--conversation .seo-hero::before {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.08) 0.8px, transparent 0.8px),
    linear-gradient(120deg, rgba(34, 231, 231, 0.05), rgba(255, 53, 111, 0.04));
  background-size: 18px 18px, 100% 100%;
}

.seo-theme--conversation .seo-hero__lead,
.seo-theme--conversation .seo-hero__note {
  color: #b8b8bd;
}

.seo-theme--conversation .seo-hero__eyebrow {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.13);
  color: var(--seo-cyan);
}

.seo-theme--conversation .seo-button--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--seo-paper);
}

.seo-scene--conversation {
  background:
    radial-gradient(circle at 18% 15%, rgba(34, 231, 231, 0.18), transparent 30%),
    radial-gradient(circle at 86% 86%, rgba(255, 53, 111, 0.16), transparent 29%),
    #151518;
}

.seo-scene__phone {
  background: #f7f7f5;
  border: 8px solid #050506;
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  color: var(--seo-ink);
  height: 78%;
  left: 50%;
  overflow: hidden;
  padding: 3.2rem 0.75rem 0.9rem;
  position: absolute;
  top: 11%;
  transform: translateX(-50%) translateZ(32px) rotateY(-3deg);
  width: min(280px, 55%);
}

.seo-scene__phone::before {
  background: #050506;
  border-radius: 0 0 12px 12px;
  content: "";
  height: 22px;
  left: 50%;
  position: absolute;
  top: -1px;
  transform: translateX(-50%);
  width: 88px;
}

.seo-scene__bubble {
  border-radius: 14px;
  font-size: var(--seo-text-xs);
  line-height: 1.52;
  margin-bottom: 0.55rem;
  max-width: 86%;
  padding: 0.62rem 0.72rem;
}

.seo-scene__bubble--customer {
  background: #e8e8e5;
  border-bottom-right-radius: 4px;
  margin-left: auto;
}

.seo-scene__bubble--business {
  background: #dff9f2;
  border-bottom-left-radius: 4px;
}

.seo-scene__bubble--accent {
  background: var(--seo-ink);
  color: var(--seo-paper);
}

/* Shelf and sale */

.seo-theme--retail .seo-hero {
  background: linear-gradient(135deg, #fbf7ef, #f2eadb 55%, #fff 100%);
}

.seo-scene--retail,
.seo-scene--shelf,
.seo-theme--shelf .seo-scene {
  background:
    radial-gradient(circle at 78% 14%, rgba(240, 168, 58, 0.23), transparent 27%),
    radial-gradient(circle at 14% 82%, rgba(34, 231, 231, 0.13), transparent 26%),
    #161515;
}

.seo-scene__shelf {
  background: linear-gradient(180deg, #e7c46d, #9c6918);
  border-radius: 4px;
  bottom: 16%;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.38);
  height: 16px;
  left: 10%;
  position: absolute;
  transform: translateZ(18px) rotateX(9deg);
  width: 80%;
}

.seo-scene__products {
  align-items: end;
  bottom: calc(16% + 14px);
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  left: 12%;
  position: absolute;
  transform: translateZ(42px);
  width: 76%;
}

.seo-scene__product {
  align-items: center;
  background: linear-gradient(155deg, #f3d671, #d79d1f);
  border: 4px solid #27272a;
  border-radius: 8px 8px 17px 17px;
  box-shadow: 0 16px 27px rgba(0, 0, 0, 0.35);
  color: var(--seo-ink);
  display: flex;
  flex-direction: column;
  font-size: var(--seo-text-xs);
  font-weight: 850;
  height: 88px;
  justify-content: center;
  min-width: 62px;
  padding: 0.35rem;
  position: relative;
}

.seo-scene__product::before {
  background: #27272a;
  border-radius: 6px 6px 1px 1px;
  content: "";
  height: 10px;
  position: absolute;
  top: -9px;
  width: 70%;
}

.seo-scene__product:nth-child(2) {
  background: linear-gradient(160deg, #22e7e7, #079da5);
  border-radius: 13px 13px 8px 8px;
  height: 135px;
  min-width: 58px;
}

.seo-scene__product:nth-child(3) {
  background: linear-gradient(160deg, #f3f3ed, #c7c7c0);
  height: 112px;
}

/* People and growth */

.seo-scene--people {
  background:
    radial-gradient(circle at 78% 15%, rgba(255, 53, 111, 0.18), transparent 29%),
    radial-gradient(circle at 15% 84%, rgba(216, 169, 40, 0.17), transparent 28%),
    #141416;
}

.seo-scene__orbit {
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  height: 68%;
  left: 16%;
  position: absolute;
  top: 16%;
  transform: translateZ(8px) rotate(-9deg);
  width: 68%;
}

.seo-scene__person {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  color: var(--seo-ink);
  display: flex;
  gap: 0.7rem;
  min-width: 175px;
  padding: 0.72rem;
  position: absolute;
  transform: translateZ(42px);
}

.seo-scene__person:nth-child(1) { left: 8%; top: 17%; }
.seo-scene__person:nth-child(2) { right: 7%; top: 38%; }
.seo-scene__person:nth-child(3) { bottom: 13%; left: 17%; }

.seo-scene__avatar {
  align-items: center;
  background: var(--seo-accent-soft);
  border-radius: 12px;
  color: var(--seo-accent-text);
  display: inline-flex;
  flex: 0 0 42px;
  font-size: var(--seo-text-sm);
  font-weight: 850;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.seo-scene__person strong,
.seo-scene__person small {
  display: block;
  line-height: 1.4;
}

.seo-scene__person strong { font-size: var(--seo-text-sm); }
.seo-scene__person small { color: #73737a; font-size: var(--seo-text-xs); }

/* Secoes e composicao */

.seo-section {
  padding-block: clamp(4.7rem, 9vw, 7.5rem);
  position: relative;
}

.seo-longform > .seo-section > .seo-section__heading,
.seo-longform > .seo-section > .seo-prose,
.seo-longform > .seo-faq > .seo-faq__list,
main > .seo-availability > .seo-callout,
main > .seo-related > .seo-section__heading,
main > .seo-related > .seo-related__grid,
main > .seo-faq > .seo-section__heading,
main > .seo-faq > .seo-faq__list {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(var(--seo-content) + 3rem);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%;
}

.seo-longform > .seo-section > .seo-section__heading,
main > .seo-related > .seo-section__heading,
main > .seo-faq > .seo-section__heading {
  max-width: calc(800px + 3rem);
}

main > .seo-availability > .seo-callout {
  max-width: var(--seo-content);
}

.seo-section--soft { background: var(--seo-surface); }
.seo-section--warm { background: var(--seo-surface-warm); }
.seo-section--accent { background: var(--seo-accent-soft); }

.seo-section--dark {
  background: var(--seo-ink-soft);
  color: var(--seo-paper);
}

.seo-section--dark .seo-section__lead,
.seo-section--dark .seo-prose,
.seo-section--dark .seo-prose p,
.seo-section--dark .seo-prose li {
  color: #bdbdc2;
}

.seo-section--dark .seo-section__heading h2,
.seo-section--dark .seo-section__heading h3,
.seo-section--dark .seo-prose h2,
.seo-section--dark .seo-prose h3,
.seo-section--dark .seo-prose strong {
  color: var(--seo-paper);
}

.seo-section__heading {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  max-width: 800px;
}

.seo-section__heading--center {
  margin-inline: auto;
  text-align: center;
}

.seo-section__kicker {
  margin-bottom: 0.8rem;
}

.seo-section__title {
  font-size: clamp(2.15rem, 4.5vw, 4.25rem);
  font-weight: 870;
  letter-spacing: -0.065em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}

.seo-section__heading > h2,
.seo-section__heading > h3 {
  font-weight: 870;
  letter-spacing: -0.055em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}

.seo-section__heading > h2 {
  font-size: clamp(2.15rem, 4.5vw, 4.25rem);
}

.seo-section__heading > h3 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.seo-section__heading > p:not(.seo-section__kicker) {
  color: var(--seo-muted);
  font-size: var(--seo-text-lead);
  line-height: 1.75;
  margin: 1rem 0 0;
}

.seo-section__lead {
  color: var(--seo-muted);
  font-size: var(--seo-text-lead);
  line-height: 1.75;
  margin: 1rem 0 0;
  max-width: 68ch;
}

.seo-section__heading--center .seo-section__lead {
  margin-inline: auto;
}

.seo-content-grid {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-content-grid--wide-left {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.seo-content-grid--wide-right {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.seo-prose {
  color: #333338;
  font-size: 1.05rem;
  line-height: 1.78;
}

.seo-longform > .seo-section > .seo-prose {
  max-width: calc(var(--seo-content) + 3rem);
}

.seo-prose > :first-child { margin-top: 0; }
.seo-prose > :last-child { margin-bottom: 0; }

.seo-prose h2,
.seo-prose h3 {
  color: var(--seo-ink);
  font-weight: 830;
  letter-spacing: -0.045em;
  line-height: 1.16;
  scroll-margin-top: 110px;
  text-wrap: balance;
}

.seo-prose h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  margin: 3.6rem 0 1.1rem;
}

.seo-prose h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  margin: 2.35rem 0 0.75rem;
}

.seo-prose p,
.seo-prose ul,
.seo-prose ol,
.seo-prose blockquote,
.seo-prose table {
  margin-block: 0 1.35rem;
}

.seo-prose ul,
.seo-prose ol {
  padding-left: 1.35rem;
}

.seo-prose li + li {
  margin-top: 0.55rem;
}

.seo-prose a {
  color: var(--seo-accent-text);
  font-weight: 720;
}

.seo-prose strong {
  color: var(--seo-ink);
  font-weight: 820;
}

.seo-prose blockquote {
  background: var(--seo-accent-soft);
  border-left: 4px solid var(--seo-accent);
  border-radius: 0 var(--seo-radius-sm) var(--seo-radius-sm) 0;
  color: #333338;
  padding: 1.15rem 1.3rem;
}

.seo-prose code {
  background: #ecece8;
  border-radius: 5px;
  color: var(--seo-ink);
  font-size: 0.9em;
  padding: 0.12em 0.32em;
}

/* Bento */

.seo-bento {
  display: grid;
  gap: 1rem;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.seo-bento__item {
  background: var(--seo-paper);
  border: 1px solid var(--seo-line);
  border-radius: var(--seo-radius-md);
  box-shadow: var(--seo-shadow-sm);
  grid-column: span 4;
  min-height: 230px;
  overflow: hidden;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  position: relative;
}

.seo-bento__item--wide { grid-column: span 8; }
.seo-bento__item--half { grid-column: span 6; }
.seo-bento__item--full { grid-column: 1 / -1; }
.seo-bento__item--tall { min-height: 360px; }
.seo-bento__item--dark { background: var(--seo-ink-soft); color: var(--seo-paper); }
.seo-bento__item--accent { background: var(--seo-accent-soft); }

.seo-bento__icon {
  align-items: center;
  background: var(--seo-accent-soft);
  border-radius: 12px;
  color: var(--seo-accent-text);
  display: inline-flex;
  font-size: 1.1rem;
  height: 46px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 46px;
}

.seo-bento__item--dark .seo-bento__icon {
  background: rgba(255, 255, 255, 0.09);
  color: var(--seo-gold-light);
}

.seo-bento__item h3 {
  font-size: 1.35rem;
  font-weight: 820;
  letter-spacing: -0.04em;
  line-height: 1.18;
  margin: 0 0 0.65rem;
}

.seo-bento__item p {
  color: var(--seo-muted);
  font-size: var(--seo-text-body);
  line-height: 1.7;
  margin: 0;
}

.seo-bento__item--dark p { color: #aaaab0; }

/* Timeline */

.seo-timeline {
  counter-reset: seo-step;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
}

.seo-timeline__item {
  counter-increment: seo-step;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 58px minmax(0, 1fr);
  list-style: none;
  min-height: 130px;
  position: relative;
}

.seo-timeline__item:not(:last-child)::before {
  background: linear-gradient(var(--seo-accent), color-mix(in srgb, var(--seo-accent) 14%, transparent));
  content: "";
  left: 23px;
  position: absolute;
  top: 46px;
  bottom: 0;
  width: 2px;
}

.seo-timeline__marker {
  align-items: center;
  background: var(--seo-ink);
  border: 4px solid var(--seo-paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--seo-line), 0 8px 20px rgba(11, 11, 12, 0.12);
  color: var(--seo-gold-light);
  display: inline-flex;
  font-size: var(--seo-text-xs);
  font-weight: 850;
  height: 48px;
  justify-content: center;
  position: relative;
  grid-row: 1 / span 99;
  width: 48px;
  z-index: 1;
}

.seo-timeline__marker:empty::before {
  content: counter(seo-step, decimal-leading-zero);
}

.seo-timeline__content {
  grid-column: 2;
  padding: 0.35rem 0 2rem;
}

.seo-timeline__content h3 {
  font-size: 1.28rem;
  font-weight: 820;
  letter-spacing: -0.035em;
  margin: 0 0 0.45rem;
}

.seo-timeline__content p {
  color: var(--seo-muted);
  font-size: var(--seo-text-body);
  line-height: 1.72;
  margin: 0;
}

/* Checklist */

.seo-checklist {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.seo-checklist--columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-checklist li {
  align-items: flex-start;
  background: var(--seo-paper);
  border: 1px solid var(--seo-line);
  border-radius: var(--seo-radius-sm);
  display: flex;
  font-size: var(--seo-text-body);
  gap: 0.75rem;
  line-height: 1.6;
  min-height: 58px;
  padding: 0.9rem 1rem;
}

.seo-checklist li::before {
  align-items: center;
  background: var(--seo-accent-soft);
  border-radius: 50%;
  color: var(--seo-accent-text);
  content: "✓";
  display: inline-flex;
  flex: 0 0 28px;
  font-size: var(--seo-text-xs);
  font-weight: 900;
  height: 28px;
  justify-content: center;
  margin-top: 0.05rem;
  width: 28px;
}

.seo-checklist li > i {
  display: none;
}

.seo-checklist li.is-pending::before {
  background: var(--seo-surface);
  color: var(--seo-muted);
  content: "○";
}

.seo-list {
  counter-reset: seo-list-item;
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.seo-list li {
  counter-increment: seo-list-item;
  display: grid;
  font-size: var(--seo-text-body);
  gap: 0.75rem;
  grid-template-columns: 34px minmax(0, 1fr);
  line-height: 1.65;
}

.seo-list li::before {
  align-items: center;
  background: var(--seo-ink);
  border-radius: 10px;
  color: var(--seo-gold-light);
  content: counter(seo-list-item, decimal-leading-zero);
  display: inline-flex;
  font-size: var(--seo-text-xs);
  font-weight: 820;
  height: 34px;
  justify-content: center;
  width: 34px;
}

/* Mensagens */

.seo-message-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-message-card {
  background: #f4f4f1;
  border: 1px solid var(--seo-line);
  border-radius: 20px 20px 6px 20px;
  min-width: 0;
  padding: 1.1rem 1.15rem;
  position: relative;
}

.seo-message-card:nth-child(even) {
  background: #e5faf4;
  border-radius: 20px 20px 20px 6px;
}

.seo-message-card__label {
  color: var(--seo-accent-text);
  display: block;
  font-size: var(--seo-text-xs);
  font-weight: 850;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.seo-message-card h3 {
  font-size: 1.18rem;
  font-weight: 820;
  letter-spacing: -0.035em;
  line-height: 1.25;
  margin: 0 0 0.65rem;
}

.seo-message-card p {
  color: #343439;
  font-size: var(--seo-text-body);
  line-height: 1.65;
  margin: 0;
  white-space: pre-line;
}

.seo-message-card__footer {
  align-items: center;
  color: #74747a;
  display: flex;
  font-size: var(--seo-text-xs);
  gap: 0.5rem;
  justify-content: space-between;
  margin-top: 0.85rem;
}

.seo-copy-button {
  align-items: center;
  background: var(--seo-paper);
  border: 1px solid var(--seo-line-strong);
  border-radius: 10px;
  color: var(--seo-ink);
  display: inline-flex;
  font-size: var(--seo-text-xs);
  font-weight: 780;
  gap: 0.35rem;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 0.72rem;
}

/* Formula e comparacao */

.seo-formula {
  background:
    linear-gradient(135deg, rgba(242, 215, 117, 0.18), transparent 52%),
    var(--seo-ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--seo-radius-md);
  box-shadow: var(--seo-shadow-md);
  color: var(--seo-paper);
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.8rem);
  position: relative;
}

.seo-formula__label {
  color: var(--seo-gold-light);
  display: block;
  font-size: var(--seo-text-xs);
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seo-formula__expression {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(1.55rem, 4vw, 3.2rem);
  font-weight: 860;
  gap: 0.45em;
  letter-spacing: -0.045em;
  line-height: 1.2;
  margin: 1rem 0;
}

.seo-formula__operator {
  color: var(--seo-gold-light);
}

.seo-formula p {
  color: #b7b7bc;
  font-size: var(--seo-text-body);
  line-height: 1.7;
  margin: 0;
}

.seo-comparison {
  border: 1px solid var(--seo-line);
  border-radius: var(--seo-radius-md);
  box-shadow: var(--seo-shadow-sm);
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.seo-comparison table {
  background: var(--seo-paper);
  border-collapse: collapse;
  font-size: var(--seo-text-sm);
  margin: 0;
  min-width: 720px;
  width: 100%;
}

.seo-comparison caption {
  color: var(--seo-muted);
  font-size: var(--seo-text-sm);
  padding: 0.9rem 1rem;
  text-align: left;
}

.seo-comparison th,
.seo-comparison td {
  border-bottom: 1px solid var(--seo-line);
  line-height: 1.55;
  padding: 1rem;
  text-align: left;
  vertical-align: top;
}

.seo-comparison thead th {
  background: var(--seo-ink);
  color: var(--seo-paper);
  font-size: var(--seo-text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seo-comparison tbody th {
  background: var(--seo-surface);
  color: var(--seo-ink);
  font-weight: 800;
}

.seo-comparison tr:last-child th,
.seo-comparison tr:last-child td {
  border-bottom: 0;
}

/* Pessoas, papeis e callouts */

.seo-role-lanes {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-role-lanes > :is(article, section) {
  background: var(--seo-paper);
  border: 1px solid var(--seo-line);
  border-radius: var(--seo-radius-md);
  min-height: 260px;
  padding: 1.4rem;
}

.seo-role-lanes h3 {
  font-size: 1.35rem;
  font-weight: 820;
  letter-spacing: -0.04em;
  margin: 0 0 0.65rem;
}

.seo-role-lanes p,
.seo-role-lanes li {
  color: var(--seo-muted);
  font-size: var(--seo-text-body);
  line-height: 1.7;
}

.seo-role-lanes ul {
  margin: 0;
  padding-left: 1.15rem;
}

.seo-role-lanes > .seo-bento__item {
  grid-column: auto;
}

.seo-callout {
  align-items: flex-start;
  background: var(--seo-accent-soft);
  border: 1px solid color-mix(in srgb, var(--seo-accent) 24%, transparent);
  border-radius: var(--seo-radius-md);
  display: flex;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
}

.seo-callout__icon {
  align-items: center;
  background: var(--seo-paper);
  border-radius: 12px;
  color: var(--seo-accent-text);
  display: inline-flex;
  flex: 0 0 46px;
  font-size: 1.15rem;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.seo-callout h3 {
  font-size: 1.25rem;
  font-weight: 820;
  letter-spacing: -0.035em;
  margin: 0 0 0.4rem;
}

.seo-callout p {
  color: #444449;
  font-size: var(--seo-text-body);
  line-height: 1.7;
  margin: 0;
}

.seo-availability .seo-callout {
  display: block;
}

.seo-availability .seo-callout > .seo-section__kicker {
  margin-bottom: 0.65rem;
}

.seo-availability .seo-callout h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 840;
  letter-spacing: -0.045em;
  line-height: 1.1;
  margin: 0 0 0.65rem;
}

.seo-availability .seo-callout--available { --seo-accent: #21ad78; --seo-accent-soft: #e8f8f1; --seo-accent-text: #0c704b; }
.seo-availability .seo-callout--partial { --seo-accent: var(--seo-gold); --seo-accent-soft: var(--seo-gold-pale); --seo-accent-text: var(--seo-gold-text); }
.seo-availability .seo-callout--planned { --seo-accent: var(--seo-pink); --seo-accent-soft: #fff0f5; --seo-accent-text: var(--seo-pink-text); }

/* Metadados, artigo e sumario */

.seo-article-meta {
  align-items: center;
  color: var(--seo-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: var(--seo-text-sm);
  gap: 0.5rem 1.1rem;
  margin-top: 1.35rem;
}

.seo-article-meta span {
  align-items: center;
  display: inline-flex;
  gap: 0.4rem;
}

.seo-article-layout {
  align-items: start;
  display: grid;
  gap: clamp(2.3rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1fr) 280px;
  margin-inline: auto;
  max-width: calc(1080px + 3rem);
  padding-inline: 1.5rem;
}

.seo-article-main {
  font-size: 1.08rem;
  max-width: var(--seo-reading);
  min-width: 0;
}

.seo-article-main > .seo-section {
  border-top: 1px solid var(--seo-line);
  border-radius: var(--seo-radius-md);
  margin-top: 1.2rem;
  padding: 3.2rem clamp(1rem, 3vw, 1.6rem);
}

.seo-article-main > .seo-section:first-of-type {
  border-top: 0;
  margin-top: 2rem;
}

.seo-article-main > .seo-section > .seo-section__heading,
.seo-article-main > .seo-section > .seo-prose,
.seo-article-main > .seo-section > .seo-faq__list {
  margin-inline: 0;
  max-width: none;
  padding-inline: 0;
}

.seo-article-introduction {
  border-bottom: 1px solid var(--seo-line);
  color: #333338;
  font-size: 1.1rem;
  line-height: 1.8;
  padding-bottom: 1.7rem;
}

.seo-toc {
  background: var(--seo-surface);
  border: 1px solid var(--seo-line);
  border-radius: var(--seo-radius-md);
  max-height: calc(100vh - 110px);
  overflow: auto;
  padding: 1rem;
  position: sticky;
  top: 96px;
}

.seo-toc > strong,
.seo-toc > summary {
  color: var(--seo-ink);
  font-size: var(--seo-text-sm);
  font-weight: 820;
}

.seo-toc > summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  min-height: 44px;
}

.seo-toc__list {
  display: grid;
  gap: 0.18rem;
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
}

.seo-toc__list a {
  border-left: 2px solid transparent;
  color: var(--seo-muted);
  display: block;
  font-size: var(--seo-text-xs);
  line-height: 1.45;
  min-height: 44px;
  padding: 0.65rem 0.6rem;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.seo-toc__list a:hover,
.seo-toc__list a:focus-visible,
.seo-toc__list a.is-current,
.seo-toc__list a[aria-current="location"] {
  background: var(--seo-paper);
  border-left-color: var(--seo-accent);
  color: var(--seo-ink);
}

.seo-toc--mobile {
  display: none;
  position: static;
}

main > .seo-toc--mobile {
  margin: 2rem auto;
  max-width: calc(var(--seo-reading) + 3rem);
}

/* FAQ */

.seo-faq {
  border-top: 1px solid var(--seo-line);
}

.seo-faq__item {
  border-bottom: 1px solid var(--seo-line);
}

.seo-faq__item summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 1.05rem;
  font-weight: 780;
  gap: 1rem;
  justify-content: space-between;
  line-height: 1.45;
  list-style: none;
  min-height: 68px;
  padding: 1rem 3rem 1rem 0;
  position: relative;
}

.seo-faq__item summary::-webkit-details-marker { display: none; }

.seo-faq__item summary::after {
  align-items: center;
  border: 1px solid var(--seo-line-strong);
  border-radius: 50%;
  content: "+";
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 450;
  height: 34px;
  justify-content: center;
  position: absolute;
  right: 0;
  width: 34px;
}

.seo-faq__item summary h3 {
  font: inherit;
  margin: 0;
}

.seo-faq__item[open] summary::after { content: "−"; }

.seo-faq__answer {
  color: var(--seo-muted);
  font-size: var(--seo-text-body);
  line-height: 1.75;
  max-width: 76ch;
  padding: 0 3rem 1.35rem 0;
}

.seo-faq__answer > :last-child { margin-bottom: 0; }

/* Conteudo relacionado */

.seo-related__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-related__card {
  background: var(--seo-paper);
  border: 1px solid var(--seo-line);
  border-radius: var(--seo-radius-md);
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 1.35rem;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.seo-related__card:hover,
.seo-related__card:focus-visible {
  border-color: color-mix(in srgb, var(--seo-accent) 45%, var(--seo-line));
  box-shadow: var(--seo-shadow-sm);
  transform: translateY(-4px);
}

.seo-related__card small {
  color: var(--seo-accent-text);
  font-size: var(--seo-text-xs);
  font-weight: 830;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-related__card h3 {
  font-size: 1.22rem;
  font-weight: 820;
  letter-spacing: -0.035em;
  line-height: 1.22;
  margin: 0.65rem 0;
}

.seo-related__card p {
  color: var(--seo-muted);
  font-size: var(--seo-text-sm);
  line-height: 1.65;
  margin: 0;
}

.seo-related__card span {
  color: var(--seo-accent-text);
  font-size: var(--seo-text-sm);
  font-weight: 770;
  margin-top: auto;
  padding-top: 1.2rem;
}

.seo-related__card > span:first-child {
  color: var(--seo-ink);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.35;
  margin-top: 0;
  padding-top: 0;
  text-transform: none;
}

.seo-related__card > i {
  color: var(--seo-accent-text);
  font-size: 1.2rem;
  margin-top: auto;
  padding-top: 1.4rem;
}

/* CTA */

.seo-cta {
  background: var(--seo-ink);
  color: var(--seo-paper);
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  position: relative;
}

.seo-cta::before {
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  inset: 0;
  mask-image: radial-gradient(ellipse at center, #000, transparent 72%);
  opacity: 0.38;
  pointer-events: none;
  position: absolute;
}

.seo-cta::after {
  background: linear-gradient(90deg, var(--seo-cyan), var(--seo-gold), var(--seo-pink));
  bottom: -180px;
  content: "";
  filter: blur(80px);
  height: 240px;
  left: 15%;
  opacity: 0.23;
  pointer-events: none;
  position: absolute;
  width: 70%;
}

.seo-cta--gold {
  background: linear-gradient(135deg, #e2b331, #f2d775);
  color: var(--seo-ink);
}

.seo-cta__content {
  margin-inline: auto;
  max-width: 900px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.seo-cta__content h2 {
  font-size: clamp(2.6rem, 5.8vw, 5.5rem);
  font-weight: 890;
  letter-spacing: -0.072em;
  line-height: 0.98;
  margin: 0;
  text-wrap: balance;
}

.seo-cta__content p {
  color: #b5b5ba;
  font-size: var(--seo-text-lead);
  line-height: 1.72;
  margin: 1.3rem auto 0;
  max-width: 64ch;
}

.seo-cta--gold .seo-cta__content p { color: #4c3b0e; }

.seo-cta__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.8rem;
}

.seo-cta__note {
  color: inherit;
  display: block;
  flex-basis: 100%;
  font-size: var(--seo-text-xs);
  line-height: 1.55;
  margin-top: 0.2rem;
  text-align: center;
}

.seo-cta .seo-button--ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--seo-paper);
}

.seo-cta--gold .seo-button--ghost {
  border-color: rgba(11, 11, 12, 0.28);
  color: var(--seo-ink);
}

/* Rodape */

.seo-footer {
  background: #070708;
  color: var(--seo-paper);
  padding-block: 4rem 1.5rem;
}

.seo-footer__grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(130px, 0.6fr));
  margin-inline: auto;
  max-width: calc(var(--seo-content) + 3rem);
  padding-inline: 1.5rem;
}

.seo-footer__brand p,
.seo-footer__grid > div:first-child p {
  color: #929298;
  font-size: var(--seo-text-sm);
  line-height: 1.7;
  margin: 1rem 0 0;
  max-width: 34ch;
}

.seo-footer .seo-brand img {
  filter: brightness(0) invert(1);
}

.seo-footer__links {
  display: grid;
  gap: 0.2rem;
}

.seo-footer__links strong {
  font-size: var(--seo-text-sm);
  margin-bottom: 0.55rem;
}

.seo-footer__links a {
  align-items: center;
  color: #a5a5aa;
  display: inline-flex;
  font-size: var(--seo-text-sm);
  min-height: 44px;
  text-decoration: none;
}

.seo-footer__links a:hover,
.seo-footer__links a:focus-visible {
  color: var(--seo-gold-light);
}

.seo-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #818187;
  display: flex;
  flex-wrap: wrap;
  font-size: var(--seo-text-xs);
  gap: 0.7rem 1.5rem;
  justify-content: space-between;
  margin: 3rem auto 0;
  max-width: calc(var(--seo-content) + 3rem);
  padding-inline: 1.5rem;
  padding-top: 1.4rem;
}

/* Melhoria progressiva: sem JS o conteudo fica visivel. */

.seo-reveal {
  opacity: 1;
  transform: none;
}

.js .seo-page .seo-reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
}

.js .seo-page .seo-reveal {
  transition: opacity 620ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .seo-page .seo-reveal[data-seo-reveal="left"]:not(.is-visible) { transform: translateX(-24px); }
.js .seo-page .seo-reveal[data-seo-reveal="right"]:not(.is-visible) { transform: translateX(24px); }
.js .seo-page .seo-reveal[data-seo-reveal="scale"]:not(.is-visible) { transform: scale(0.97); }
.js .seo-page .seo-reveal.is-visible { opacity: 1; transform: none; }
.js .seo-page .seo-reveal[data-seo-reveal-delay="1"] { transition-delay: 80ms; }
.js .seo-page .seo-reveal[data-seo-reveal-delay="2"] { transition-delay: 160ms; }
.js .seo-page .seo-reveal[data-seo-reveal-delay="3"] { transition-delay: 240ms; }

@keyframes seo-float {
  0%, 100% { transform: translateZ(42px) translateY(0); }
  50% { transform: translateZ(42px) translateY(-9px); }
}

@keyframes seo-route-dot {
  0% { transform: translate(0, 0); }
  25% { transform: translate(235px, 20px); }
  50% { transform: translate(260px, 270px); }
  75% { transform: translate(35px, 300px); }
  100% { transform: translate(0, 0); }
}

/* Responsividade */

@media (max-width: 1199.98px) {
  .seo-hero__inner {
    gap: 3rem;
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
  }

  .seo-scene { min-height: 490px; }
  .seo-footer__grid { grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(120px, 0.55fr)); }
}

@media (max-width: 991.98px) {
  .seo-header__inner {
    flex-wrap: wrap;
    gap: 0;
  }

  .js .seo-page .seo-nav-toggle,
  .js .seo-page .seo-nav__toggle { display: inline-flex; }

  .seo-nav {
    flex-basis: 100%;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.8rem 0 1rem;
  }

  .js .seo-page .seo-nav {
    display: none;
  }

  .js .seo-page .seo-nav.is-open {
    display: flex;
  }

  .seo-nav__links,
  .seo-header__actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .seo-nav__links a,
  .seo-header__actions .seo-button {
    justify-content: flex-start;
    width: 100%;
  }

  .seo-hero__inner,
  .seo-hero--editorial .seo-hero__inner {
    grid-template-columns: 1fr;
  }

  .seo-hero__copy {
    max-width: 780px;
  }

  .seo-hero__visual {
    margin-inline: auto;
    max-width: 760px;
    width: 100%;
  }

  .seo-content-grid,
  .seo-content-grid--wide-left,
  .seo-content-grid--wide-right {
    grid-template-columns: 1fr;
  }

  .seo-bento__item { grid-column: span 6; }
  .seo-bento__item--wide,
  .seo-bento__item--full { grid-column: 1 / -1; }

  .seo-role-lanes { grid-template-columns: 1fr; }
  .seo-role-lanes > :is(article, section) { min-height: 0; }

  .seo-article-layout {
    display: block;
    max-width: var(--seo-reading);
  }

  .seo-toc:not(.seo-toc--mobile) { display: none; }
  .seo-toc--mobile { display: block; margin-bottom: 2rem; }

  .seo-related__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seo-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
  .seo-container { padding-inline: 1.15rem; }
  .seo-header__inner,
  .seo-footer__grid,
  .seo-footer__bottom { padding-inline: 1.15rem; }
  .seo-header__inner { min-height: 68px; }
  .seo-breadcrumb { padding-top: 0.65rem; }

  .seo-hero {
    padding-block: 3.8rem 4.7rem;
  }

  .seo-hero__title {
    font-size: clamp(2.55rem, 12vw, 4.4rem);
  }

  .seo-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .seo-hero__actions .seo-button {
    width: 100%;
  }

  .seo-scene {
    min-height: 445px;
    perspective: 800px;
  }

  .seo-scene__panel {
    inset: 9% 4% 8%;
    transform: translateZ(12px) rotateX(1deg) rotateY(-1deg);
  }

  .seo-scene--flow .seo-scene__panel,
  .seo-scene--command .seo-scene__panel {
    transform: translateZ(12px) rotateX(1deg) rotateY(-1deg);
  }

  .seo-scene__metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seo-scene__metric:last-child { display: none; }
  .seo-scene__person { min-width: 155px; }

  .seo-section { padding-block: 4.7rem; }
  .seo-section__title { font-size: clamp(2.05rem, 9vw, 3.45rem); }
  .seo-prose { font-size: 1rem; }
  .seo-article-main { font-size: 1.04rem; }

  .seo-bento { grid-template-columns: 1fr; }
  .seo-bento__item,
  .seo-bento__item--wide,
  .seo-bento__item--half,
  .seo-bento__item--full {
    grid-column: 1;
  }

  .seo-bento__item { min-height: 0; }
  .seo-bento__item--tall { min-height: 290px; }

  .seo-checklist--columns,
  .seo-message-grid {
    grid-template-columns: 1fr;
  }

  .seo-related__grid { grid-template-columns: 1fr; }
  .seo-related__card { min-height: 0; }

  .seo-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .seo-cta__actions .seo-button { width: 100%; }
}

@media (max-width: 575.98px) {
  .seo-page { --seo-radius-lg: 24px; }
  .seo-container { padding-inline: 1rem; }
  .seo-header__inner,
  .seo-footer__grid,
  .seo-footer__bottom { padding-inline: 1rem; }
  .seo-brand { font-size: 1.08rem; }
  .seo-brand img { height: 34px; width: 56px; }

  .seo-breadcrumb ol {
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }

  .seo-hero__title { letter-spacing: -0.062em; }
  .seo-hero__lead { font-size: 1rem; }
  .seo-scene { min-height: 390px; }

  .seo-scene [data-seo-tilt] {
    transform: none !important;
  }

  .seo-scene__panel {
    inset: 7% 3% 6%;
    padding: 0.8rem;
    transform: none !important;
  }

  .seo-scene__panel-header {
    margin: -0.8rem -0.8rem 0.75rem;
    padding-inline: 0.72rem;
  }

  .seo-scene__metric { padding: 0.55rem; }
  .seo-scene__bars { height: 112px; }
  .seo-scene__slot { grid-template-columns: 43px 7px minmax(0, 1fr); }
  .seo-scene__slot em { display: none; }

  .seo-scene__phone {
    border-width: 6px;
    height: 82%;
    padding: 2.8rem 0.6rem 0.7rem;
    top: 9%;
    transform: translateX(-50%);
    width: min(260px, 75%);
  }

  .seo-scene__products { gap: 0.65rem; }
  .seo-scene__product { min-width: 54px; }
  .seo-scene__person { min-width: 145px; padding: 0.58rem; }
  .seo-scene__person:nth-child(1) { left: 3%; top: 12%; }
  .seo-scene__person:nth-child(2) { right: 2%; top: 40%; }
  .seo-scene__person:nth-child(3) { bottom: 8%; left: 8%; }

  .seo-timeline__item {
    gap: 0.7rem;
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .seo-timeline__item:not(:last-child)::before { left: 19px; }
  .seo-timeline__marker { height: 40px; width: 40px; }

  .seo-callout { display: block; }
  .seo-callout__icon { margin-bottom: 0.8rem; }

  .seo-faq__item summary {
    font-size: 1rem;
    padding-right: 2.7rem;
  }

  .seo-faq__answer { padding-right: 0; }
  .seo-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .seo-footer__bottom { display: grid; }
}

@media (max-width: 359.98px) {
  .seo-container { padding-inline: 0.85rem; }
  .seo-header__inner,
  .seo-footer__grid,
  .seo-footer__bottom { padding-inline: 0.85rem; }
  .seo-hero__title { font-size: 2.35rem; }
  .seo-section__title { font-size: 2rem; }
  .seo-scene { min-height: 355px; }
  .seo-scene__phone { width: 78%; }
  .seo-scene__person { min-width: 132px; }
  .seo-scene__avatar { flex-basis: 36px; height: 36px; width: 36px; }
  .seo-formula__expression { font-size: 1.42rem; }
}

@media (hover: hover) and (pointer: fine) {
  .seo-bento__item {
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  }

  .seo-bento__item:hover {
    border-color: color-mix(in srgb, var(--seo-accent) 40%, var(--seo-line));
    box-shadow: var(--seo-shadow-md);
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .seo-page,
  .seo-page *,
  .seo-page *::before,
  .seo-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .seo-page .seo-reveal,
  .js .seo-page .seo-reveal:not(.is-visible) {
    opacity: 1 !important;
    transform: none !important;
  }

  .seo-scene [data-seo-tilt],
  .seo-scene__floating,
  .seo-scene__dot {
    transform: none !important;
  }
}

@media (forced-colors: active) {
  .seo-button,
  .seo-bento__item,
  .seo-checklist li,
  .seo-related__card,
  .seo-scene__panel,
  .seo-scene__card {
    border: 1px solid CanvasText;
  }

  .seo-hero__eyebrow::before,
  .seo-timeline__marker,
  .seo-checklist li::before {
    forced-color-adjust: none;
  }
}
