/* Money pages — sorocaba.digital
   Tokens from DESIGN.md · dark cinematic premium, azul #0055FF/#0099FF
   Body face inherits Inter UI from styles.css (brand system). */

.service-body {
  --service-ink: #020202;
  --service-surface: #050b14;
  --service-blue: #0055ff;
  --service-blue-light: #0099ff;
  --service-glow: #7fd2ff;
  --service-text: #ffffff;
  --service-text-soft: rgba(255, 255, 255, 0.75);
  --service-text-muted: rgba(255, 255, 255, 0.82);
  --service-line: rgba(255, 255, 255, 0.12);
  --service-line-soft: rgba(255, 255, 255, 0.08);
  --service-glass: rgba(255, 255, 255, 0.03);
  --service-measure: 68ch;
  --service-width: min(1060px, calc(100% - (var(--service-pad-x) * 2)));
  --service-pad-x: clamp(1rem, 4vw, 1.5rem);
  --service-section-y: clamp(3.5rem, 8vw, 5.5rem);
  --service-heading-gap: 0.55em;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 90% 55% at 12% -10%, rgba(0, 85, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 40% at 88% 8%, rgba(0, 153, 255, 0.12), transparent 50%),
    linear-gradient(180deg, #030810 0%, var(--service-ink) 42%, #000 100%);
}

.service-shell {
  padding-bottom: 0;
}

.service-shell .site-footer {
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

/* ── Nav (sticky override of fixed home navbar) ── */

.navbar.service-nav {
  position: sticky;
  top: 16px;
  left: auto;
  transform: none;
  margin: 16px auto 0;
  width: min(1000px, calc(100% - 32px));
  z-index: 40;
}

.service-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--service-text);
  cursor: pointer;
  flex-shrink: 0;
}

.service-nav-toggle:focus-visible {
  outline: 2px solid var(--service-blue-light);
  outline-offset: 2px;
}

.service-nav-toggle-bars,
.service-nav-toggle-bars::before,
.service-nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 8px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.service-nav-toggle-bars {
  position: relative;
}

.service-nav-toggle-bars::before,
.service-nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.service-nav-toggle-bars::before {
  top: -6px;
}

.service-nav-toggle-bars::after {
  top: 6px;
}

.service-nav-toggle.is-open .service-nav-toggle-bars {
  background: transparent;
}

.service-nav-toggle.is-open .service-nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.service-nav-toggle.is-open .service-nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.service-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.service-nav-panel {
  position: fixed;
  top: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 36;
  width: min(1000px, calc(100% - 32px));
  padding: 1.25rem 1.5rem 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 153, 255, 0.28);
  background: rgba(6, 16, 34, 0.92);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.service-nav-panel[hidden],
.service-nav-backdrop[hidden] {
  display: none !important;
}

.service-nav-panel-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.service-nav-panel-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 0.5rem;
  color: var(--service-text-muted);
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid var(--service-line-soft);
  transition: color 160ms ease;
}

.service-nav-panel-links li:last-child a {
  border-bottom: 0;
}

.service-nav-panel-links a:hover,
.service-nav-panel-links a:focus-visible {
  color: #fff;
}

.service-nav-panel-cta {
  font-family: "Tomato UI", sans-serif !important;
  font-weight: 700;
  color: #fff !important;
}

body.service-nav-open {
  overflow: hidden;
}

/* ── Breadcrumbs ── */

.svc-breadcrumbs {
  width: var(--service-width);
  margin: clamp(1.5rem, 4vw, 2.25rem) auto 0;
}

.svc-breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.svc-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.svc-breadcrumbs li + li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.35);
  border-top: 1.5px solid rgba(255, 255, 255, 0.35);
  transform: rotate(45deg);
}

.svc-breadcrumbs a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 160ms ease;
}

.svc-breadcrumbs a:hover,
.svc-breadcrumbs a:focus-visible {
  color: var(--service-blue-light);
}

.svc-breadcrumbs [aria-current="page"] {
  color: var(--service-text-muted);
}

/* ── Main ── */

.service-main {
  width: var(--service-width);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(4rem, 10vw, 6rem);
}

/* ── Hero ── */

.service-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
  padding: clamp(1.75rem, 4.5vw, 3rem) 0 clamp(3rem, 7vw, 4.5rem);
}

.svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--service-line);
  background: rgba(6, 16, 34, 0.55);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--service-text-muted);
}

.svc-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--service-glow);
  box-shadow: 0 0 12px 2px rgba(0, 153, 255, 0.65);
  animation: svcPulse 2.4s ease-in-out infinite;
}

@keyframes svcPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.72); opacity: 0.6; }
}

.service-hero h1 {
  display: block;
  font-family: "Tomato UI", sans-serif;
  font-weight: 700;
  font-size: clamp(2.3rem, 5.4vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 17ch;
  margin: 0;
  color: #fff;
  text-align: left;
  text-shadow: 0 8px 44px rgba(0, 85, 255, 0.35);
}

/* Acento <em> nos títulos de hero — cor sólida para contraste limpo */
.service-hero h1 em {
  font-style: normal;
  color: var(--service-glow);
}

.service-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  font-weight: 300;
  color: var(--service-text-muted);
  max-width: 52ch;
  margin: 0;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  margin-top: 0.4rem;
}

.service-hero .cta,
.service-cta-band .cta {
  min-height: 48px;
}

.svc-ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  color: var(--service-text-muted);
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid rgba(0, 153, 255, 0.4);
  transition: color 160ms ease, border-color 160ms ease;
}

.svc-ghost-link:hover,
.svc-ghost-link:focus-visible {
  color: var(--service-blue-light);
  border-bottom-color: var(--service-blue-light);
}

.svc-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: visible;
}

.svc-orbs span {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
}

.svc-orbs .one {
  top: -60px;
  right: 4%;
  width: 300px;
  height: 300px;
  background: rgba(0, 85, 255, 0.28);
}

.svc-orbs .two {
  bottom: -40px;
  left: -80px;
  width: 240px;
  height: 240px;
  background: rgba(0, 153, 255, 0.16);
}

/* ── Answer box (resposta direta / GEO) ── */

.svc-answer {
  position: relative;
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(1.5rem, 3.5vw, 2.25rem) clamp(1.25rem, 3.5vw, 2.25rem);
  border-radius: 24px;
  border: 1px solid rgba(0, 153, 255, 0.28);
  background:
    radial-gradient(ellipse 70% 130% at 0% 0%, rgba(0, 85, 255, 0.16), transparent 60%),
    rgba(6, 16, 34, 0.55);
}

.svc-answer-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--service-blue-light);
}

.svc-answer > p {
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--service-text-muted);
  max-width: var(--service-measure);
  margin: 0;
}

.svc-answer > p strong {
  color: #fff;
}

.svc-answer-facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.65rem 1.5rem;
  margin: 1.25rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--service-line-soft);
}

.svc-answer-facts li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--service-text-soft);
}

.svc-answer-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 0.9rem;
  height: 0.5rem;
  border-left: 2px solid var(--service-blue-light);
  border-bottom: 2px solid var(--service-blue-light);
  transform: rotate(-45deg);
}

/* ── Sections ── */

.service-block {
  padding: var(--service-section-y) 0;
  border-top: 1px solid var(--service-line-soft);
}

.svc-section-label {
  display: block;
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--service-blue-light);
}

.service-block h2 {
  font-family: "Tomato UI", sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.6vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 var(--service-heading-gap);
  max-width: 24ch;
}

.service-block h3 {
  font-family: "Tomato UI", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.service-intro {
  padding-top: clamp(2rem, 4.5vw, 3rem);
  border-top: 0;
}

.service-copy {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--service-text-soft);
  margin: 0 0 1.2rem;
  max-width: var(--service-measure);
}

.service-copy:last-child {
  margin-bottom: 0;
}

.service-copy strong {
  color: #fff;
  font-weight: 400;
}

.service-copy a,
.svc-answer a,
.svc-card p a,
.service-faq details p a {
  color: var(--service-blue-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 153, 255, 0.45);
  transition: color 160ms ease, border-color 160ms ease;
}

.service-copy a:hover,
.svc-answer a:hover,
.svc-card p a:hover,
.service-faq details p a:hover {
  color: var(--service-glow);
  border-bottom-color: var(--service-glow);
}

.svc-lede {
  font-size: clamp(1.1rem, 1.9vw, 1.3rem);
  font-weight: 300;
  line-height: 1.65;
}

/* ── Card grid ── */

.svc-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.4rem);
  margin: 1.9rem 0 0;
  padding: 0;
}

.svc-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.svc-card {
  position: relative;
  padding: clamp(1.4rem, 2.6vw, 1.9rem);
  border-radius: 24px;
  border: 1px solid var(--service-line-soft);
  background: var(--service-glass);
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
}

.svc-card:hover {
  border-color: rgba(0, 153, 255, 0.32);
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-3px);
}

.svc-card h3 {
  font-size: 1.28rem;
  margin: 0 0 0.5rem;
  color: #fff;
}

.svc-card p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--service-text-soft);
  margin: 0;
}

.svc-card-num {
  display: block;
  margin: 0 0 0.9rem;
  font-family: "Tomato UI", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--service-blue-light);
}

/* ── Checklist ── */

.svc-check {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 2rem;
  margin: 1.9rem 0 0;
  padding: 0;
}

.svc-check li {
  position: relative;
  padding: 0.2rem 0 0.2rem 2.1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--service-text-soft);
}

.svc-check li strong {
  display: block;
  color: #fff;
  font-weight: 400;
}

.svc-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 85, 255, 0.35), rgba(0, 153, 255, 0.2));
  border: 1px solid rgba(0, 153, 255, 0.5);
}

.svc-check li::after {
  content: "";
  position: absolute;
  left: 0.31rem;
  top: 0.82rem;
  width: 0.52rem;
  height: 0.3rem;
  border-left: 2px solid var(--service-glow);
  border-bottom: 2px solid var(--service-glow);
  transform: rotate(-45deg);
}

/* ── Comparison table ── */

.svc-table-wrap {
  margin: 1.9rem 0 0;
  border-radius: 24px;
  border: 1px solid var(--service-line-soft);
  background: var(--service-glass);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.svc-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.97rem;
}

.svc-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.svc-table th,
.svc-table td {
  padding: 1rem 1.4rem;
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
  border-bottom: 1px solid var(--service-line-soft);
}

.svc-table tr:last-child th,
.svc-table tr:last-child td {
  border-bottom: 0;
}

.svc-table thead th {
  font-family: "Tomato UI", sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: #fff;
  background: rgba(6, 16, 34, 0.6);
  white-space: nowrap;
}

.svc-table thead th:nth-child(3) {
  color: var(--service-blue-light);
}

.svc-table tbody th {
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}

.svc-table tbody td {
  color: var(--service-text-soft);
}

.svc-table tbody td:nth-child(3) {
  color: var(--service-text-muted);
}

/* ── Stat strip (números aprovados da marca) ── */

.svc-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(0.9rem, 2vw, 1.4rem);
  margin: 1.9rem 0 0;
}

.svc-stat {
  padding: clamp(1.4rem, 2.6vw, 2rem);
  border-radius: 32px;
  border: 1px solid var(--service-line-soft);
  background: #030810;
}

.svc-stat .num {
  display: block;
  font-family: "Tomato UI", sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1;
  color: #fff;
}

.svc-stat .num span {
  color: var(--service-blue-light);
}

.svc-stat .label {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.95rem;
  color: var(--service-text-soft);
}

/* ── Steps — numbered sequence ── */

.service-steps {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-steps li {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 0;
  border-top: 1px solid var(--service-line-soft);
}

.service-steps li:last-child {
  border-bottom: 1px solid var(--service-line-soft);
}

.service-step-num {
  font-family: "Tomato UI", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--service-blue-light);
}

.service-steps h3 {
  font-size: 1.28rem;
  margin: 0 0 0.4rem;
}

.service-steps p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--service-text-soft);
  margin: 0;
  max-width: var(--service-measure);
}

/* ── FAQ ── */

.service-faq {
  margin-top: 1.5rem;
}

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

.service-faq details:last-child {
  border-bottom: 1px solid var(--service-line);
}

.service-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 52px;
  padding: 1rem 0;
  font-family: "Tomato UI", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  color: #fff;
}

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

.service-faq summary::after {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.55);
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  transform: rotate(45deg);
  transition: transform 180ms ease;
  margin-top: -4px;
}

.service-faq details[open] summary::after {
  transform: rotate(225deg);
  margin-top: 4px;
}

.service-faq summary:focus-visible {
  outline: 2px solid var(--service-blue-light);
  outline-offset: 4px;
  border-radius: 8px;
}

.service-faq details p {
  margin: 0 0 1.15rem;
  padding-right: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--service-text-soft);
  max-width: var(--service-measure);
}

/* ── CTA band ── */

.service-cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: clamp(1.5rem, 4vw, 2.5rem) 0;
  padding: clamp(2.25rem, 5vw, 3.25rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 32px;
  border: 1px solid rgba(0, 153, 255, 0.32);
  background:
    radial-gradient(ellipse 80% 120% at 0% 50%, rgba(0, 85, 255, 0.28), transparent 55%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(3, 8, 16, 0.9));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.service-cta-band h2 {
  font-family: "Tomato UI", sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.6vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 18ch;
}

.service-cta-band p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--service-text-muted);
  max-width: 52ch;
  margin: 0 0 0.35rem;
}

.service-cta-band .svc-cta-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0.35rem 0 0;
}

/* ── Local band (Sorocaba e região) ── */

.svc-local {
  padding: var(--service-section-y) 0;
  border-top: 1px solid var(--service-line-soft);
}

.svc-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.6rem 0 0;
  padding: 0;
}

.svc-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--service-line-soft);
  background: var(--service-glass);
  font-size: 0.92rem;
  color: var(--service-text-muted);
}

.svc-pills li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--service-glow);
}

/* ── Related — cards de serviços ── */

.svc-related-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.4rem);
  margin: 1.9rem 0 0;
}

.svc-related-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: clamp(1.3rem, 2.4vw, 1.7rem);
  border-radius: 24px;
  border: 1px solid var(--service-line-soft);
  background: var(--service-glass);
  text-decoration: none;
  transition: border-color 200ms ease, transform 200ms ease;
}

.svc-related-card:hover,
.svc-related-card:focus-visible {
  border-color: rgba(0, 153, 255, 0.4);
  transform: translateY(-3px);
}

.svc-related-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 1.15rem;
  margin: 0;
  color: #fff;
}

.svc-related-card h3::after {
  content: "→";
  font-family: "Inter UI", sans-serif;
  font-weight: 400;
  color: var(--service-blue-light);
  transition: transform 200ms ease;
}

.svc-related-card:hover h3::after {
  transform: translateX(4px);
}

.svc-related-card p {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--service-text-soft);
  margin: 0;
}

/* ── Adapt: tablet / mobile ── */

@media (max-width: 899px) {
  .service-nav-desktop {
    display: none !important;
  }

  .service-nav-toggle {
    display: inline-flex;
  }

  .service-nav-cta {
    display: none;
  }

  .navbar.service-nav {
    width: calc(100% - 24px);
    padding: 0 10px 0 16px;
  }

  .svc-grid,
  .svc-grid.cols-3,
  .svc-check {
    grid-template-columns: 1fr;
  }

  .svc-related-cards {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 479px) {
  .service-cta-band {
    border-radius: 24px;
    padding: 1.75rem 1.25rem;
  }

  .svc-answer {
    border-radius: 20px;
  }
}

@media (min-width: 900px) {
  .service-nav-panel,
  .service-nav-backdrop,
  .service-nav-toggle {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-nav-toggle-bars,
  .service-nav-toggle-bars::before,
  .service-nav-toggle-bars::after,
  .service-faq summary::after,
  .svc-card,
  .svc-related-card,
  .svc-related-card h3::after {
    transition: none;
  }

  .svc-eyebrow .dot {
    animation: none;
  }
}

/* ════════════════════════════════════════════════════
   Camada visual — cenas de hero, ícones, stagger,
   marquee de portfólio e contadores
   ════════════════════════════════════════════════════ */

/* ── Stagger de entrada (JS define --si por filho) ── */

.section-reveal [data-stagger] > * {
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.7, 0.3, 1);
  transition-delay: calc(var(--si, 0) * 75ms);
}

.section-reveal:not(.is-visible) [data-stagger] > * {
  opacity: 0;
  transform: translateY(22px);
}

/* ── Ícones ── */

.svc-icon {
  width: 22px;
  height: 22px;
}

.svc-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 14px;
  color: var(--service-blue-light);
  background:
    radial-gradient(ellipse 120% 120% at 30% 20%, rgba(0, 153, 255, 0.22), transparent 70%),
    rgba(0, 85, 255, 0.1);
  border: 1px solid rgba(0, 153, 255, 0.3);
  box-shadow: 0 6px 18px rgba(0, 85, 255, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.svc-card:hover .svc-card-icon {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 10px 26px rgba(0, 85, 255, 0.32);
}

/* ── Hero com visual (2 colunas no desktop) ── */

.service-hero.has-visual {
  row-gap: 1.4rem;
}

.svc-scene-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 2.25rem auto 0;
}

@media (min-width: 1000px) {
  .service-hero.has-visual {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    grid-template-rows: repeat(4, auto);
    align-items: center;
    column-gap: clamp(2rem, 4vw, 3.5rem);
    row-gap: 1.4rem;
  }

  .service-hero.has-visual > .svc-scene-wrap {
    grid-column: 2;
    grid-row: 1 / span 4;
    margin: 0;
    justify-self: end;
  }

  .service-hero.has-visual h1 {
    font-size: clamp(2.2rem, 3.6vw, 3.55rem);
    max-width: none;
  }
}

/* ── Cena: base ── */

.svc-scene {
  position: relative;
  margin: 0;
  padding: 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 153, 255, 0.22);
  background:
    radial-gradient(ellipse 90% 90% at 80% 0%, rgba(0, 85, 255, 0.16), transparent 60%),
    rgba(4, 10, 20, 0.72);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.45),
    0 10px 40px rgba(0, 85, 255, 0.18);
  animation: svcFloat 7s ease-in-out infinite alternate;
}

@keyframes svcFloat {
  from { transform: translateY(-5px); }
  to { transform: translateY(7px); }
}

.svc-skel,
.sb-line, .sb-kicker, .sp-line, .sp-kicker, .sp-field,
.ss-name, .ss-search, .sd-item, .sd-tile-label, .sd-tile-num,
.sa-name, .sr-row-line, .sr-res-line, .sr-res-desc {
  display: block;
  border-radius: 999px;
  background: linear-gradient(100deg,
    rgba(255, 255, 255, 0.13) 20%,
    rgba(255, 255, 255, 0.05) 40%,
    rgba(255, 255, 255, 0.13) 60%);
  background-size: 220% 100%;
  animation: svcShimmer 3.2s linear infinite;
}

@keyframes svcShimmer {
  to { background-position: -220% 0; }
}

/* ── Chips flutuantes ── */

.svc-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 153, 255, 0.35);
  background: rgba(5, 12, 24, 0.92);
  backdrop-filter: blur(8px);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--service-text-muted);
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 4px 18px rgba(0, 85, 255, 0.25);
  animation: chipFloat 5.5s ease-in-out infinite alternate;
}

.svc-chip svg {
  width: 15px;
  height: 15px;
  color: var(--service-blue-light);
}

.chip-pulse {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--service-glow);
  box-shadow: 0 0 10px 2px rgba(0, 153, 255, 0.7);
  animation: svcPulse 1.8s ease-in-out infinite;
}

.chip-num {
  font-family: "Tomato UI", sans-serif;
  font-weight: 700;
  color: var(--service-blue-light);
}

@keyframes chipFloat {
  from { transform: translateY(-4px); }
  to { transform: translateY(6px); }
}

/* ── Cena: browser (Sites) ── */

.sb-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--service-line-soft);
}

.sb-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.sb-url {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  color: var(--service-text-soft);
}

.sb-lock {
  width: 7px;
  height: 9px;
  border: 1.5px solid var(--service-glow);
  border-radius: 2.5px 2.5px 1px 1px;
  position: relative;
}

.sb-lock::before {
  content: "";
  position: absolute;
  left: 0.5px;
  top: -4.5px;
  width: 4px;
  height: 4px;
  border: 1.5px solid var(--service-glow);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}

.sb-body {
  padding: 1.15rem 0.35rem 0.35rem;
}

.sb-kicker { width: 34%; height: 9px; margin-bottom: 12px; opacity: 0.7; }
.sb-line.lg { width: 88%; height: 16px; border-radius: 8px; margin-bottom: 9px; }
.sb-line.lg.short { width: 64%; }
.sb-line.sm { width: 72%; height: 9px; margin: 12px 0 16px; opacity: 0.6; }

.sb-cta {
  display: inline-block;
  width: 42%;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--service-blue), var(--service-blue-light));
  box-shadow: 0 8px 22px rgba(0, 85, 255, 0.45);
}

.sb-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.sb-cards span {
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--service-line-soft);
}

.chip-perf { top: -14px; right: -10px; }
.chip-whats { bottom: -14px; right: 22px; animation-delay: 1.4s; }

/* ── Cena: phone (Landing Pages) ── */

.scene-phone {
  display: flex;
  justify-content: center;
  padding: 1.6rem 1.1rem;
}

.sp-frame {
  position: relative;
  width: min(228px, 78%);
  padding: 2rem 1rem 1.2rem;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(8, 16, 30, 0.9), rgba(2, 6, 12, 0.95));
  box-shadow: inset 0 0 0 4px rgba(0, 0, 0, 0.55);
}

.sp-notch {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 66px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.sp-kicker { width: 44%; height: 7px; margin-bottom: 10px; opacity: 0.7; }
.sp-line.lg { width: 94%; height: 13px; border-radius: 7px; margin-bottom: 7px; }
.sp-line.lg.short { width: 66%; }
.sp-line.sm { width: 80%; height: 7px; margin: 10px 0 14px; opacity: 0.6; }

.sp-field {
  width: 100%;
  height: 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--service-line-soft);
  animation: none;
}

.sp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 9px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--service-blue), var(--service-blue-light));
  box-shadow: 0 8px 22px rgba(0, 85, 255, 0.5);
  font-family: "Tomato UI", sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: #fff;
}

.sp-proof {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
}

.sp-avatar {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(4, 10, 20, 0.9);
  background: linear-gradient(135deg, rgba(0, 153, 255, 0.65), rgba(0, 85, 255, 0.4));
}

.sp-avatar + .sp-avatar { margin-left: -8px; }

.sp-stars {
  margin-left: 6px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--service-glow);
}

.chip-lead { top: 24px; right: -14px; }
.chip-pixel { bottom: 30px; left: -10px; animation-delay: 1.8s; }

/* ── Cena: shop (Loja Virtual) ── */

.ss-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 0.9rem;
}

.ss-search { flex: 1; height: 30px; border-radius: 999px; opacity: 0.8; }

.ss-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(0, 153, 255, 0.35);
  background: rgba(0, 85, 255, 0.12);
  color: var(--service-blue-light);
}

.ss-cart svg { width: 18px; height: 18px; }

.ss-cart-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--service-blue), var(--service-blue-light));
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
}

.ss-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.ss-card {
  display: block;
  padding: 9px;
  border-radius: 14px;
  border: 1px solid var(--service-line-soft);
  background: rgba(255, 255, 255, 0.035);
}

.ss-img {
  display: block;
  height: 58px;
  border-radius: 9px;
  background:
    radial-gradient(ellipse 80% 80% at 30% 20%, rgba(0, 153, 255, 0.3), transparent 65%),
    rgba(255, 255, 255, 0.06);
  margin-bottom: 8px;
}

.ss-name { width: 78%; height: 7px; margin-bottom: 7px; opacity: 0.7; }

.ss-price {
  display: inline-block;
  width: 46%;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 85, 255, 0.75), rgba(0, 153, 255, 0.75));
  animation: none;
}

.chip-pix { top: -14px; right: -8px; }
.chip-frete { bottom: -13px; left: 16px; animation-delay: 1.6s; }

/* ── Cena: dash (Sistemas) ── */

.scene-dash {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
}

.sd-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 6px 0;
  border-right: 1px solid var(--service-line-soft);
}

.sd-logo {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--service-blue), var(--service-blue-light));
  margin-bottom: 6px;
}

.sd-item { width: 30px; height: 9px; opacity: 0.55; }
.sd-item.active {
  opacity: 1;
  background: linear-gradient(90deg, rgba(0, 85, 255, 0.8), rgba(0, 153, 255, 0.8));
  animation: none;
}

.sd-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.sd-tile {
  display: block;
  padding: 8px;
  border-radius: 11px;
  border: 1px solid var(--service-line-soft);
  background: rgba(255, 255, 255, 0.035);
}

.sd-tile-label { width: 70%; height: 6px; margin-bottom: 8px; opacity: 0.55; }
.sd-tile-num {
  width: 50%;
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(0, 85, 255, 0.8), rgba(0, 153, 255, 0.8));
  animation: none;
}

.sd-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 88px;
  padding: 10px 8px 0;
  border-radius: 12px;
  border: 1px solid var(--service-line-soft);
  background: rgba(255, 255, 255, 0.025);
}

.sd-bar {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--service-blue-light), rgba(0, 85, 255, 0.35));
  transform-origin: bottom;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.3, 1);
}

.section-reveal:not(.is-visible) .sd-bar { transform: scaleY(0); }

.sd-bar:nth-child(2) { transition-delay: 90ms; }
.sd-bar:nth-child(3) { transition-delay: 180ms; }
.sd-bar:nth-child(4) { transition-delay: 270ms; }
.sd-bar:nth-child(5) { transition-delay: 360ms; }
.sd-bar:nth-child(6) { transition-delay: 450ms; }
.sd-bar:nth-child(7) { transition-delay: 540ms; }

.chip-os { top: -14px; right: -8px; }
.chip-sync { bottom: -13px; left: 20px; animation-delay: 1.2s; }

/* ── Cena: serp (Marketing) ── */

.sr-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 153, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 12px;
}

.sr-search svg { width: 16px; height: 16px; color: var(--service-blue-light); flex-shrink: 0; }

.sr-query {
  font-size: 0.8rem;
  color: var(--service-text-muted);
  white-space: nowrap;
  overflow: hidden;
}

.sr-caret {
  width: 1.5px;
  height: 14px;
  background: var(--service-glow);
  animation: srBlink 1.1s step-end infinite;
}

@keyframes srBlink { 50% { opacity: 0; } }

.sr-map {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--service-line-soft);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 10px;
}

.sr-map-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
}

.sr-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 0;
}

.sr-pin {
  width: 11px;
  height: 11px;
  border-radius: 999px 999px 999px 2px;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, var(--service-blue), var(--service-blue-light));
  flex-shrink: 0;
}

.sr-row-line { flex: 1; height: 8px; opacity: 0.7; }
.sr-row-line.short { max-width: 60%; }

.sr-stars {
  font-size: 0.64rem;
  color: var(--service-glow);
  white-space: nowrap;
}

.sr-organic {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--service-line-soft);
  margin-bottom: 8px;
}

.sr-organic.top {
  border-color: rgba(0, 153, 255, 0.45);
  background:
    radial-gradient(ellipse 100% 160% at 0% 0%, rgba(0, 85, 255, 0.18), transparent 60%),
    rgba(255, 255, 255, 0.03);
}

.sr-fav {
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--service-blue), var(--service-blue-light));
  flex-shrink: 0;
}

.sr-fav.dim { background: rgba(255, 255, 255, 0.12); }

.sr-res { flex: 1; min-width: 0; }

.sr-res-title {
  display: block;
  font-size: 0.76rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sr-res-desc { width: 90%; height: 7px; opacity: 0.55; }
.sr-res-line { width: 84%; height: 8px; margin-bottom: 6px; opacity: 0.6; }
.sr-res-line.short { width: 55%; margin-bottom: 0; }

.sr-badge {
  font-family: "Tomato UI", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--service-blue-light);
  flex-shrink: 0;
}

.chip-ia { bottom: -14px; right: -8px; }

/* ── Cena: ads (Tráfego) ── */

.sa-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.8rem;
}

.sa-title {
  font-family: "Tomato UI", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
}

.sa-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--service-text-soft);
}

.sa-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--service-line-soft);
}

.sa-name { height: 8px; opacity: 0.65; }

.sa-track {
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.sa-fill {
  display: block;
  width: var(--w, 50%);
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--service-blue), var(--service-blue-light));
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.section-reveal:not(.is-visible) .sa-fill { transform: scaleX(0); }

.sa-row:nth-of-type(3) .sa-fill { transition-delay: 140ms; }
.sa-row:nth-of-type(4) .sa-fill { transition-delay: 280ms; }

.sa-val {
  font-size: 0.72rem;
  color: var(--service-text-muted);
  white-space: nowrap;
}

.sa-val.good { color: var(--service-glow); }
.sa-val.dim { color: rgba(255, 255, 255, 0.35); }

.sa-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--service-line-soft);
}

.sa-spark {
  flex: 1;
  height: 36px;
  color: var(--service-blue-light);
}

.sa-spark-line {
  stroke-dasharray: 240;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.6s ease 300ms;
}

.section-reveal:not(.is-visible) .sa-spark-line { stroke-dashoffset: 240; }

.sa-cpl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Tomato UI", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--service-glow);
  white-space: nowrap;
}

.sa-cpl svg { width: 13px; height: 13px; }

.chip-conv { top: -14px; right: -8px; }

/* ── Marquee de portfólio ── */

.svc-marquee {
  overflow: hidden;
  margin-top: 1.9rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.svc-marquee-track {
  display: flex;
  width: max-content;
  animation: svcMarquee 46s linear infinite;
}

.svc-marquee[data-reverse] .svc-marquee-track {
  animation-direction: reverse;
}

.svc-marquee:hover .svc-marquee-track {
  animation-play-state: paused;
}

.svc-marquee-card {
  width: clamp(220px, 26vw, 300px);
  flex-shrink: 0;
  margin-right: 1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--service-line-soft);
  background: var(--service-glass);
  transition: border-color 200ms ease;
}

.svc-marquee-card:hover {
  border-color: rgba(0, 153, 255, 0.4);
}

.svc-marquee-card img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes svcMarquee {
  to { transform: translateX(-50%); }
}

/* ── Stats com imagem ── */

.svc-stat.svc-stat-img {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 210px;
  border-color: rgba(0, 153, 255, 0.25);
}

.svc-stat-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 70%;
}

/* ── Responsivo ── */

@media (max-width: 999px) {
  .svc-scene-wrap { max-width: 400px; }
  .scene-dash { grid-template-columns: 44px 1fr; }
}

@media (max-width: 479px) {
  .svc-chip { font-size: 0.68rem; padding: 0.42rem 0.7rem; }
  .chip-perf, .chip-pix, .chip-os, .chip-conv { right: 0; }
  .chip-lead { right: -4px; }
  .sb-cards span { height: 34px; }
}

/* ── Movimento reduzido ── */

@media (prefers-reduced-motion: reduce) {
  .svc-scene,
  .svc-chip,
  .chip-pulse,
  .sr-caret {
    animation: none;
  }

  .svc-skel,
  .sb-line, .sb-kicker, .sp-line, .sp-kicker,
  .ss-name, .ss-search, .sd-item, .sd-tile-label,
  .sa-name, .sr-row-line, .sr-res-line, .sr-res-desc {
    animation: none;
  }

  .section-reveal [data-stagger] > *,
  .sd-bar,
  .sa-fill,
  .sa-spark-line {
    transition: none;
  }

  .svc-marquee-track {
    animation: none;
  }

  .svc-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* Assinatura de autoria + data de revisão ao fim do conteúdo.
   Frescor e autoria são os dois sinais de E-E-A-T que faltavam na superfície. */
.svc-lastmod {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
  font-family: 'Inter UI', sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.svc-lastmod a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.svc-lastmod a:hover {
  color: var(--blue-light, #0099FF);
}

/* ═══════════════════════════════════════════════════════════
   Image placeholders — SEO editorial images
   Para substituir: trocar src="" pelo caminho do asset real.
   Remover a classe svc-img-placeholder após publicar o asset.
   ═══════════════════════════════════════════════════════════ */

.svc-img-placeholder {
  margin: 2.5rem 0 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 85, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.16);
  position: relative;
}

/* Ghost box: área visual enquanto o asset não chega */
.svc-img-placeholder img[src=""] {
  display: block;
  width: 100%;
  aspect-ratio: var(--ph-ratio, 3 / 2);
  background: rgba(255, 255, 255, 0.02);
  object-fit: cover;
}

/* Label de referência — visível apenas em dev enquanto src="" */
.svc-img-placeholder::after {
  content: attr(data-filename) " · " attr(data-ratio);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter UI', ui-monospace, monospace;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.28);
  pointer-events: none;
  text-align: center;
  padding: 1rem;
}

/* Asset real: border muda de dashed para sólida; label some */
.svc-img-placeholder:has(img[src]:not([src=""])) {
  border-style: solid;
  border-color: var(--service-line);
}
.svc-img-placeholder:has(img[src]:not([src=""])) img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 13px;
}
.svc-img-placeholder:has(img[src]:not([src=""]))::after {
  display: none;
}


/* Imagens editoriais publicadas */
.svc-img {
  margin: 1.5rem 0 0;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
  aspect-ratio: var(--ph-ratio, 3/2);
}
.svc-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
