:root {
  --sp-blue: #0667f6;
  --sp-cyan: #20c7f4;
  --sp-ink: #0f172a;
  --sp-muted: #526176;
  --sp-line: rgba(15, 23, 42, .11);
  --sp-dark: #252c38;
  --sp-soft: #eef4fb;
}

html { scroll-padding-top: 84px; }

body.service-page {
  min-width: 320px;
  background: #f8fafc;
  color: var(--sp-ink);
}

.sp-skip {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  border-radius: 8px;
  background: var(--sp-blue);
  transform: translateY(-140%);
}

.sp-skip:focus { transform: translateY(0); }

.sp-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(37, 44, 56, .96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.sp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
}

.sp-logo img { width: 238px; max-height: 60px; object-fit: contain; filter: brightness(0) invert(1); }

.sp-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 700;
}

.sp-nav > a:not(.sp-header-cta) { color: rgba(255, 255, 255, .88); }
.sp-nav > a:not(.sp-header-cta):hover { color: var(--sp-cyan); }

.sp-header-cta,
.sp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 11px;
  background: linear-gradient(135deg, #0768f7, #0056e0);
  box-shadow: 0 10px 26px rgba(0, 86, 224, .2);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.sp-header-cta:hover,
.sp-button:hover { filter: brightness(1.08); transform: translateY(-1px); }

.sp-button-secondary {
  color: var(--sp-ink);
  border: 1px solid var(--sp-line);
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
}

.sp-button-whatsapp {
  color: #041b0c;
  background: linear-gradient(135deg, #44e487, #20c86a);
  box-shadow: 0 10px 26px rgba(32, 200, 106, .2);
}

.sp-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 92px) 0 70px;
  background:
    radial-gradient(circle at 80% 10%, rgba(6, 103, 246, .15), transparent 32%),
    linear-gradient(180deg, #f8fbff, #edf4fb);
}

.sp-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(15, 23, 42, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}

.sp-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.sp-breadcrumbs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: #64748b;
  font-size: 14px;
}

.sp-breadcrumbs a:hover { color: var(--sp-blue); }

.sp-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.sp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #005fe7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
}

.sp-eyebrow::before { width: 28px; height: 2px; content: ""; background: var(--sp-cyan); }

.sp-hero h1 {
  max-width: 790px;
  margin: 0;
  color: var(--sp-ink);
  font-size: clamp(39px, 5.4vw, 68px);
  font-weight: 900;
  line-height: 1.01;
  letter-spacing: -.045em;
}

.sp-hero h1 em {
  display: block;
  color: var(--sp-blue);
  font-style: normal;
}

.sp-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--sp-muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.sp-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.sp-hero-media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(6, 103, 246, .18);
  border-radius: 24px;
  background: #dce8f5;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .18);
}

.sp-hero-media img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }

.sp-media-label {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 16px 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 13px;
  background: rgba(3, 11, 24, .76);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  font-size: 14px;
  line-height: 1.45;
}

.sp-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid var(--sp-line);
  border-bottom: 1px solid var(--sp-line);
  background: var(--sp-line);
}

.sp-fact { padding: 24px; background: #fff; text-align: center; }
.sp-fact strong { display: block; color: var(--sp-ink); font-size: 16px; }
.sp-fact span { display: block; margin-top: 5px; color: #64748b; font-size: 13px; }

.sp-section { padding: clamp(66px, 8vw, 106px) 0; }
.sp-section-dark { color: #fff; background: var(--sp-dark); }
.sp-section-soft { background: #edf4fb; }

.sp-section-heading { max-width: 780px; margin-bottom: 42px; }
.sp-section-heading small { color: var(--sp-blue); font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.sp-section-dark .sp-section-heading small { color: var(--sp-cyan); }
.sp-section-heading h2 { margin: 10px 0 0; font-size: clamp(32px, 4vw, 48px); font-weight: 900; line-height: 1.08; letter-spacing: -.035em; }
.sp-section-heading p { margin-top: 16px; color: var(--sp-muted); font-size: 17px; line-height: 1.7; }
.sp-section-dark .sp-section-heading p { color: #bcc8d8; }

.sp-content-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; align-items: start; }

.sp-copy { color: var(--sp-muted); font-size: 17px; line-height: 1.78; }
.sp-copy p + p { margin-top: 18px; }
.sp-copy h2, .sp-copy h3 { color: var(--sp-ink); }
.sp-copy h2 { margin-bottom: 18px; font-size: clamp(30px, 4vw, 44px); line-height: 1.1; }
.sp-copy h3 { margin: 32px 0 10px; font-size: 23px; }

.sp-panel {
  padding: 30px;
  border: 1px solid rgba(6, 103, 246, .16);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, .09);
}

.sp-panel h2, .sp-panel h3 { margin: 0 0 18px; font-size: 24px; line-height: 1.2; }

.sp-checks { display: grid; gap: 14px; list-style: none; }
.sp-checks li { position: relative; padding-left: 30px; color: #42536a; line-height: 1.55; }
.sp-checks li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  content: "✓";
  color: #fff;
  border-radius: 50%;
  background: var(--sp-blue);
  font-size: 12px;
  font-weight: 900;
}

.sp-notice {
  margin-top: 26px;
  padding: 18px 20px;
  color: #314157;
  border-left: 4px solid var(--sp-blue);
  border-radius: 0 12px 12px 0;
  background: #edf5ff;
  font-size: 14px;
  line-height: 1.6;
}

.sp-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sp-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .055);
}
.sp-card b { display: block; margin-bottom: 10px; color: #fff; font-size: 19px; }
.sp-card p { color: #bcc8d8; line-height: 1.65; }

.sp-gallery { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 14px; }
.sp-gallery figure { position: relative; min-height: 370px; overflow: hidden; border-radius: 18px; background: #dce8f5; }
.sp-gallery img { width: 100%; height: 100%; min-height: 370px; object-fit: cover; transition: transform .35s ease; }
.sp-gallery figure:hover img { transform: scale(1.025); }
.sp-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 42px 16px 15px;
  color: #fff;
  background: linear-gradient(transparent, rgba(2, 7, 16, .88));
  font-size: 14px;
}

.sp-faq { display: grid; gap: 12px; max-width: 920px; }
.sp-faq details { border: 1px solid var(--sp-line); border-radius: 14px; background: #fff; box-shadow: 0 8px 22px rgba(15, 23, 42, .05); }
.sp-faq summary { position: relative; padding: 20px 54px 20px 22px; cursor: pointer; list-style: none; font-size: 17px; font-weight: 800; }
.sp-faq summary::-webkit-details-marker { display: none; }
.sp-faq summary::after { position: absolute; top: 17px; right: 20px; content: "+"; color: var(--sp-blue); font-size: 26px; line-height: 1; }
.sp-faq details[open] summary::after { content: "−"; }
.sp-faq details p { padding: 0 22px 22px; color: var(--sp-muted); line-height: 1.7; }

.sp-related { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.sp-related a { padding: 10px 14px; color: #28405f; border: 1px solid #ccdaea; border-radius: 999px; background: #fff; font-size: 14px; font-weight: 700; }
.sp-related a:hover { color: #fff; border-color: var(--sp-blue); background: var(--sp-blue); }

.sp-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: clamp(30px, 5vw, 54px);
  color: #fff;
  border-radius: 24px;
  background: linear-gradient(135deg, #172235, #0649a9);
  box-shadow: 0 25px 70px rgba(6, 73, 169, .2);
}
.sp-cta h2 { margin: 0; font-size: clamp(29px, 4vw, 45px); line-height: 1.08; letter-spacing: -.03em; }
.sp-cta p { margin-top: 12px; color: #c4d5ea; font-size: 16px; line-height: 1.6; }

.sp-footer { padding: 38px 0; color: #cbd5e1; background: #1d2430; }
.sp-footer-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 30px; }
.sp-footer img { width: 220px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.sp-footer p, .sp-footer address { color: #aab7c8; font-style: normal; line-height: 1.65; }
.sp-footer h2 { margin-bottom: 12px; color: #fff; font-size: 16px; }
.sp-footer a:hover { color: var(--sp-cyan); }
.sp-footer-bottom { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .09); color: #8694a8; font-size: 13px; }

.sp-button:focus-visible,
.sp-nav a:focus-visible,
.sp-related a:focus-visible,
.sp-faq summary:focus-visible,
.sp-footer a:focus-visible {
  outline: 3px solid var(--sp-cyan);
  outline-offset: 3px;
}

@media (max-width: 930px) {
  .sp-nav > a:not(.sp-header-cta) { display: none; }
  .sp-hero-grid, .sp-content-grid { grid-template-columns: 1fr; }
  .sp-hero-media { min-height: 420px; }
  .sp-hero-media img { min-height: 420px; }
  .sp-card-grid { grid-template-columns: 1fr 1fr; }
  .sp-gallery { grid-template-columns: 1fr 1fr; }
  .sp-gallery figure:first-child { grid-column: 1 / -1; }
  .sp-footer-grid { grid-template-columns: 1fr 1fr; }
  .sp-footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .sp-header-inner, .sp-shell { width: min(100% - 30px, 1180px); }
  .sp-header-inner { min-height: 68px; }
  .sp-logo img { width: 185px; }
  .sp-header-cta { min-height: 44px; padding: 10px 13px; font-size: 13px; }
  .sp-hero { padding-top: 38px; }
  .sp-hero h1 { font-size: clamp(36px, 12vw, 52px); overflow-wrap: anywhere; }
  .sp-hero-media, .sp-hero-media img { min-height: 330px; }
  .sp-actions { flex-direction: column; }
  .sp-actions .sp-button { width: 100%; }
  .sp-facts { grid-template-columns: 1fr; }
  .sp-fact { text-align: left; padding: 17px 20px; }
  .sp-card-grid, .sp-gallery, .sp-footer-grid { grid-template-columns: 1fr; }
  .sp-gallery figure:first-child { grid-column: auto; }
  .sp-gallery figure, .sp-gallery img { min-height: 310px; }
  .sp-panel { padding: 23px; }
  .sp-cta { grid-template-columns: 1fr; }
  .sp-cta .sp-button { width: 100%; }
  .sp-footer-grid > :first-child { grid-column: auto; }
}

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