/* ============================================================
   SMARTPED — HOME (sections beyond hero)
   ============================================================ */

/* ---------- Section headers ---------- */
.sp-section-head {
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}
.sp-section-head .sp-eyebrow { display: block; margin-bottom: 14px; }
.sp-section-head .sp-h2 { margin-bottom: 16px; }
.sp-section-head .sp-lead { margin: 0 auto; }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.sp-diff { position: relative; }
.sp-diff-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .sp-diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sp-diff-grid { grid-template-columns: repeat(4, 1fr); } }

.sp-diff-card {
  display: flex; flex-direction: column;
  padding: 28px 24px;
  min-height: 220px;
}
.sp-diff-num {
  font-family: var(--sp-font-display);
  font-weight: 600;
  font-size: 12px;
  color: var(--sp-blue-bright);
  letter-spacing: 0.18em;
}
.sp-diff-icon {
  width: 36px; height: 36px;
  color: var(--sp-blue-bright);
  margin: 22px 0 18px;
  filter: drop-shadow(0 0 12px rgba(60, 200, 255, 0.5));
}
.sp-diff-card h3 { margin-bottom: 10px; }

/* ============================================================
   PRODUTOS
   ============================================================ */
.sp-products { position: relative; }
.sp-product-stack {
  display: flex; flex-direction: column;
  gap: clamp(36px, 5vw, 64px);
}

.sp-product {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
@media (min-width: 880px) {
  .sp-product { grid-template-columns: 1fr 1fr; }
  .sp-product.reverse .sp-product-visual { order: 2; }
}

.sp-product-visual {
  position: relative;
  border-radius: var(--sp-r-xl);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(31,168,255,0.18), transparent 70%),
    linear-gradient(160deg, rgba(15, 38, 89, 0.7), rgba(10, 30, 71, 0.4));
  border: 1px solid var(--sp-border);
  padding: 28px;
  min-height: 360px;
  overflow: hidden;
}
.sp-product-badge {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--sp-font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--sp-blue-bright);
  letter-spacing: 0.2em;
}

/* Inner mock UI inside product visual */
.sp-product-mock {
  background: linear-gradient(180deg, #001034, #000a22);
  border: 1px solid var(--sp-border-strong);
  border-radius: var(--sp-r);
  padding: 14px;
  box-shadow: 0 20px 60px -20px rgba(31, 168, 255, 0.45);
}
.sp-pm-bar {
  display: flex; align-items: center; gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--sp-line);
  margin-bottom: 12px;
}
.sp-pm-bar span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(120, 180, 255, 0.3);
}
.sp-pm-bar span:first-child { background: var(--sp-blue-bright); }
.sp-pm-bar b {
  margin-left: auto;
  font-family: var(--sp-font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--sp-fg-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sp-pm-row {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 10px;
  padding: 10px 4px;
  align-items: center;
  border-bottom: 1px solid var(--sp-line);
  font-size: 13px;
}
.sp-pm-row i {
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--sp-blue);
  display: block;
}
.sp-pm-row b { color: var(--sp-blue-bright); font-weight: 600; }
.sp-pm-row.hi {
  background: linear-gradient(90deg, rgba(31,168,255,0.12), transparent);
  border-radius: 8px;
  border-bottom-color: transparent;
}
.sp-pm-row.hi i { background: var(--sp-blue-bright); box-shadow: 0 0 8px var(--sp-blue-bright); }
.sp-pm-cta {
  margin-top: 14px;
  background: linear-gradient(180deg, var(--sp-blue-bright), var(--sp-blue));
  color: #001034;
  text-align: center;
  padding: 10px;
  border-radius: 999px;
  font-family: var(--sp-font-display);
  font-weight: 600;
  font-size: 13px;
}
.sp-pm-cta.ghost {
  background: transparent;
  border: 1px solid var(--sp-border-strong);
  color: var(--sp-blue-bright);
}

/* Dashboard variant */
.sp-pm-stat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.sp-pm-stat > div {
  padding: 10px;
  background: rgba(31, 168, 255, 0.06);
  border: 1px solid var(--sp-line);
  border-radius: 10px;
}
.sp-pm-stat span {
  font-size: 10px;
  color: var(--sp-fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}
.sp-pm-stat strong {
  font-family: var(--sp-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--sp-fg);
  display: block;
  margin-top: 3px;
}
.sp-pm-stat strong.hi { color: var(--sp-blue-bright); }
.sp-pm-chart {
  display: flex; gap: 6px; align-items: flex-end;
  height: 90px;
  padding: 12px 4px;
  border-top: 1px solid var(--sp-line);
  border-bottom: 1px solid var(--sp-line);
  margin-bottom: 12px;
}
.sp-pm-chart > div {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--sp-blue-bright), var(--sp-blue));
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
}

/* AI variant */
.sp-pm-ai {
  display: flex; gap: 10px;
  padding: 12px;
  background: rgba(31, 168, 255, 0.08);
  border: 1px solid var(--sp-line);
  border-radius: 12px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.4;
}
.sp-pm-ai.human {
  background: rgba(255,255,255,0.04);
}
.sp-pm-ai p { margin: 0; color: var(--sp-fg-mute); }
.sp-pm-ai b { color: var(--sp-fg); }
.sp-pm-ai-pill {
  background: linear-gradient(180deg, var(--sp-blue-bright), var(--sp-blue));
  color: #001034;
  font-family: var(--sp-font-display);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  height: fit-content;
  flex-shrink: 0;
}
.sp-pm-ai-pill.human {
  background: transparent;
  border: 1px solid var(--sp-border-strong);
  color: var(--sp-blue-bright);
}

/* Product body */
.sp-product-body { padding: 4px; }
.sp-product-body .sp-eyebrow { display: block; margin-bottom: 12px; }
.sp-product-title { margin-bottom: 12px !important; }
.sp-product-tag {
  font-family: var(--sp-font-display);
  font-size: clamp(16px, 2vw, 19px);
  color: var(--sp-blue-bright);
  font-weight: 500;
  margin: 0 0 16px;
  line-height: 1.35;
}
.sp-product-body .sp-body { margin: 0 0 20px; }
.sp-product-bullets {
  list-style: none;
  padding: 0; margin: 0 0 28px;
}
.sp-product-bullets li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: var(--sp-fg);
  font-size: 15px;
  border-bottom: 1px solid var(--sp-line);
}
.sp-product-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 16px; height: 16px;
  background:
    radial-gradient(circle, var(--sp-blue-bright) 35%, transparent 38%),
    radial-gradient(circle, transparent 50%, var(--sp-blue-bright) 51%, transparent 60%);
  border-radius: 50%;
}

/* ============================================================
   TRUST / Numbers
   ============================================================ */
.sp-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (min-width: 880px) { .sp-trust-grid { grid-template-columns: repeat(4, 1fr); } }

.sp-trust-card {
  text-align: center;
  padding: 32px 20px;
}
.sp-trust-card strong {
  display: block;
  font-family: var(--sp-font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff 30%, var(--sp-blue-bright) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.sp-trust-card span {
  font-size: 13px;
  color: var(--sp-fg-mute);
  line-height: 1.4;
}

.sp-trust-seal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
  padding: 20px;
  border: 1px solid var(--sp-line);
  border-radius: var(--sp-r);
}
@media (min-width: 880px) { .sp-trust-seal { grid-template-columns: repeat(4, 1fr); } }
.sp-trust-seal > div {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  font-family: var(--sp-font-display);
  font-weight: 500;
  color: var(--sp-fg);
}
.sp-trust-seal svg { width: 22px; height: 22px; color: var(--sp-blue-bright); flex-shrink: 0; }

/* ============================================================
   APRESENTAÇÃO (video)
   ============================================================ */
.sp-presentation { position: relative; overflow: hidden; }
.sp-presentation-grid {
  display: grid;
  gap: clamp(36px, 5vw, 56px);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 880px) { .sp-presentation-grid { grid-template-columns: 1fr 1.1fr; } }

.sp-video-card {
  position: relative;
  border-radius: var(--sp-r-xl);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--sp-border-strong);
  background: linear-gradient(160deg, #0a1e47, #001034);
  box-shadow: 0 30px 80px -20px rgba(31,168,255,0.35);
}
.sp-video-thumb {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.sp-video-mock {
  text-align: center;
  color: var(--sp-fg-mute);
}
.sp-video-mock p {
  font-family: var(--sp-font-display);
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 8px 0 0;
}
.sp-video-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 78px; height: 78px;
  border-radius: 50%;
  background: rgba(0, 16, 52, 0.7);
  border: 2px solid var(--sp-blue-bright);
  color: var(--sp-blue-bright);
  display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: transform .25s ease;
}
.sp-video-play::before {
  content: "";
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--sp-blue-bright);
  opacity: 0.3;
  animation: sp-pulse 2.4s ease-out infinite;
}
.sp-video-play svg { width: 30px; height: 30px; }
.sp-video-card:hover .sp-video-play { transform: translate(-50%, -50%) scale(1.06); }

.sp-video-meta {
  position: absolute;
  left: 20px; bottom: 20px; right: 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.sp-video-meta strong {
  font-family: var(--sp-font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--sp-fg);
}

/* ============================================================
   DISTRIBUIDORAS — marquee
   ============================================================ */
.sp-distrib { overflow: hidden; }
.sp-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  padding: 8px 0;
}
.sp-marquee + .sp-marquee { margin-top: 14px; }
.sp-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: sp-mq 40s linear infinite;
}
.sp-marquee.reverse .sp-marquee-track { animation-direction: reverse; animation-duration: 50s; }
@keyframes sp-mq {
  to { transform: translateX(-50%); }
}
.sp-distrib-logo {
  flex-shrink: 0;
  padding: 16px 28px;
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-r);
  font-family: var(--sp-font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--sp-fg-mute);
  background: linear-gradient(180deg, rgba(15, 38, 89, 0.4), rgba(10, 30, 71, 0.2));
  transition: color .2s, border-color .2s;
}
.sp-distrib-logo:hover { color: var(--sp-fg); border-color: var(--sp-border-strong); }
.sp-distrib-note {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--sp-fg-dim);
  font-style: italic;
}

/* ============================================================
   UNIVERSIDADE SMARTPED
   ============================================================ */
.sp-univ-grid {
  display: grid;
  gap: clamp(36px, 5vw, 56px);
  align-items: center;
}
@media (min-width: 880px) { .sp-univ-grid { grid-template-columns: 1fr 1.1fr; } }

.sp-univ-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 540px) { .sp-univ-cards { grid-template-columns: repeat(3, 1fr); align-items: center; } }

.sp-univ-card {
  background: linear-gradient(180deg, rgba(15, 38, 89, 0.7), rgba(10, 30, 71, 0.4));
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-r-lg);
  padding: 16px;
  transition: transform .3s ease;
}
.sp-univ-card.mid { transform: translateY(-12px); border-color: var(--sp-border-strong); box-shadow: var(--sp-glow-blue); }
.sp-univ-thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, #001034 30%, #1fa8ff 200%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--sp-blue-bright);
}
.sp-univ-thumb svg { width: 32px; height: 32px; }
.sp-univ-card span {
  display: block;
  font-size: 11px;
  color: var(--sp-blue-bright);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.sp-univ-card strong {
  font-family: var(--sp-font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--sp-fg);
  display: block;
  line-height: 1.3;
}

/* ============================================================
   FAQ
   ============================================================ */
.sp-faq-wrap { max-width: 880px; margin: 0 auto; }
.sp-accordion { display: flex; flex-direction: column; gap: 10px; }
.sp-accordion details {
  background: linear-gradient(180deg, rgba(15, 38, 89, 0.4), rgba(10, 30, 71, 0.2));
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-r);
  overflow: hidden;
  transition: border-color .25s;
}
.sp-accordion details[open] {
  border-color: var(--sp-border-strong);
  background: linear-gradient(180deg, rgba(31, 168, 255, 0.08), rgba(10, 30, 71, 0.2));
}
.sp-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 22px;
  position: relative;
  font-family: var(--sp-font-display);
  font-weight: 500;
  font-size: clamp(16px, 2vw, 18px);
  color: var(--sp-fg);
}
.sp-accordion summary::-webkit-details-marker { display: none; }
.sp-acc-icon {
  position: absolute;
  right: 22px; top: 50%;
  width: 28px; height: 28px;
  margin-top: -14px;
  border-radius: 50%;
  border: 1px solid var(--sp-border-strong);
  display: inline-flex;
}
.sp-acc-icon::before, .sp-acc-icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--sp-blue-bright);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}
.sp-acc-icon::before { width: 10px; height: 2px; }
.sp-acc-icon::after { width: 2px; height: 10px; }
details[open] .sp-acc-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.sp-accordion p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--sp-fg-mute);
  line-height: 1.6;
}
.sp-accordion p b { color: var(--sp-fg); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.sp-cta-final { padding-bottom: clamp(56px, 7vw, 80px); }
.sp-cta-card {
  position: relative;
  text-align: center;
  padding: clamp(40px, 8vw, 80px) clamp(24px, 5vw, 60px);
  border-radius: var(--sp-r-xl);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(31, 168, 255, 0.18), transparent 70%),
    linear-gradient(160deg, rgba(15, 38, 89, 0.85), rgba(10, 30, 71, 0.6));
  border: 1px solid var(--sp-border-strong);
  overflow: hidden;
  box-shadow: var(--sp-glow-blue);
}
.sp-cta-card .sp-eyebrow { display: block; margin-bottom: 18px; position: relative; z-index: 1; }
.sp-cta-card .sp-h2 { position: relative; z-index: 1; margin-bottom: 18px; }
.sp-cta-card .sp-lead { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.sp-cta-card .sp-row { position: relative; z-index: 1; }
.sp-cta-tag {
  position: relative; z-index: 1;
  margin: 24px 0 0;
  font-size: 13px;
  color: var(--sp-fg-dim);
  letter-spacing: 0.02em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.sp-footer {
  border-top: 1px solid var(--sp-line);
  padding: clamp(48px, 6vw, 72px) 0 24px;
  background: linear-gradient(180deg, transparent, rgba(0, 8, 31, 0.5));
}
.sp-footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .sp-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }

.sp-footer-col {
  display: flex; flex-direction: column; gap: 12px;
}
.sp-footer-col h4 {
  font-family: var(--sp-font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--sp-fg);
  margin: 0 0 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sp-footer-col a {
  font-size: 14px;
  color: var(--sp-fg-mute);
  transition: color .2s;
}
.sp-footer-col a:hover { color: var(--sp-blue-bright); }

.sp-footer-bottom {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--sp-line);
  font-size: 12px;
  color: var(--sp-fg-dim);
}
@media (min-width: 720px) {
  .sp-footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ── Bloco de Atendimento no footer ── */
.sp-footer-atend {
  margin-top: clamp(36px, 5vw, 52px);
  padding: clamp(24px, 3.5vw, 34px) clamp(22px, 3vw, 38px);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-r-lg);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(31, 168, 255, 0.10), transparent 55%),
    linear-gradient(180deg, rgba(15, 38, 89, 0.55), rgba(10, 30, 71, 0.35));
}
.sp-footer-atend-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.sp-footer-atend-head svg { color: var(--sp-blue-bright); flex-shrink: 0; }
.sp-footer-atend-head h4 {
  font-family: var(--sp-font-display);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 600; color: var(--sp-fg);
  margin: 0; letter-spacing: 0.01em;
}
.sp-fat-slots {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .sp-fat-slots { grid-template-columns: 1fr 1fr; } }
.sp-fat-slot {
  display: flex; flex-direction: column; gap: 3px;
  padding: 16px 18px;
  border-radius: var(--sp-r);
  border: 1px solid var(--sp-line);
  background: rgba(0, 8, 31, 0.35);
  border-left: 3px solid var(--sp-blue);
}
.sp-fat-slot.is-emerg { border-left-color: var(--sp-whats); }
.sp-fat-time {
  font-family: var(--sp-font-display);
  font-size: 1.35rem; font-weight: 700;
  color: var(--sp-fg); letter-spacing: -0.01em;
}
.sp-fat-slot strong {
  font-size: 0.95rem; font-weight: 600; color: var(--sp-fg);
}
.sp-fat-slot span.sp-fat-sub { font-size: 0.82rem; color: var(--sp-fg-dim); }
.sp-fat-note {
  margin: 20px 0 0;
  font-size: 0.92rem; line-height: 1.6;
  color: var(--sp-fg-mute);
}
.sp-fat-note strong { color: var(--sp-fg); font-weight: 600; }
.sp-fat-note .sp-accent { color: var(--sp-blue-bright); font-weight: 600; }

/* ════════════════════════════════════════════════════════════
   PÁGINA DISTRIBUIDORAS
   ════════════════════════════════════════════════════════════ */
.dist-hero {
  position: relative; overflow: hidden;
  padding: clamp(140px, 16vw, 180px) 20px clamp(48px, 7vw, 76px);
  text-align: center;
  background:
    radial-gradient(900px 520px at 50% -12%, rgba(31, 168, 255, 0.22), transparent 60%),
    radial-gradient(620px 420px at 14% 88%, rgba(21, 102, 192, 0.18), transparent 65%),
    linear-gradient(180deg, #001034 0%, #041a4a 100%);
}
.dist-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(111, 211, 255, 0.13) 1px, transparent 1.5px);
  background-size: 26px 26px;
  mask-image: radial-gradient(820px 500px at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(820px 500px at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}
.dist-hero-inner { position: relative; max-width: 860px; margin: 0 auto; }
.dist-hero h1 {
  font-family: var(--sp-font-display);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.1; letter-spacing: -0.02em;
  color: #fff; margin: 20px 0 18px;
}
.dist-hero h1 .sp-accent {
  background: linear-gradient(92deg, #6fd3ff, #1fa8ff 60%, #3cc8ff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dist-hero p {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7; color: #c2d4f5;
  max-width: 680px; margin: 0 auto 14px;
}
.dist-hero p strong { color: #fff; font-weight: 600; }
.dist-note {
  display: inline-block;
  margin-top: 8px; font-size: 0.86rem;
  color: #8fb2e6; font-style: italic;
}
.dist-body { background: #f6f9ff; padding: clamp(54px, 7vw, 84px) 0 clamp(40px, 5vw, 60px); }
.dist-group { margin-bottom: clamp(48px, 6vw, 72px); }
.dist-group-head { text-align: center; margin-bottom: 30px; }
.dist-group-head .sp-eyebrow { color: #1566c0; display: block; margin-bottom: 10px; }
.dist-group-head h2 {
  font-family: var(--sp-font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #0d2b5e; margin: 0; letter-spacing: -0.015em;
}
.dist-group-head h2 .sp-accent { color: #1566c0; }
.dist-group-head .dist-count {
  display: inline-block; margin-top: 12px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #1566c0; background: #e4eeff;
  border: 1px solid #c8d8f0; border-radius: 999px;
  padding: 5px 14px;
}
.dist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
}
@media (min-width: 600px) { .dist-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; } }
.dist-card {
  background: #fff;
  border: 1px solid #d4e0f5;
  border-radius: 14px;
  aspect-ratio: 3 / 2;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  box-shadow: 0 6px 18px -12px rgba(13, 43, 94, 0.35);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.dist-card:hover {
  transform: translateY(-3px);
  border-color: #1566c0;
  box-shadow: 0 16px 32px -16px rgba(21, 102, 192, 0.5);
}
.dist-card img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}
.dist-cta-wrap { text-align: center; margin-top: clamp(40px, 5vw, 60px); }
.dist-cta-wrap p { color: #2c4a7a; font-size: 1.02rem; margin: 0 0 20px; }

/* ── TABELA DE DISTRIBUIDORAS HOMOLOGADAS ── */
.dtab-toolbar {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end;
  margin-bottom: 22px;
}
.dtab-field { display: flex; flex-direction: column; gap: 6px; }
.dtab-field label {
  font-family: var(--sp-font-display);
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #1566c0;
}
.dtab-field select, .dtab-field input {
  font-family: var(--sp-font-body);
  font-size: 0.95rem; color: #0d2b5e;
  padding: 11px 14px;
  border: 1px solid #c8d8f0; border-radius: 12px;
  background: #fff; min-width: 230px;
  transition: border-color .2s, box-shadow .2s;
}
.dtab-field select:focus, .dtab-field input:focus {
  outline: none; border-color: #1566c0;
  box-shadow: 0 0 0 3px rgba(21,102,192,.15);
}
.dtab-count {
  margin-left: auto; align-self: center;
  font-size: 0.9rem; color: #3a5685;
}
.dtab-count strong { color: #0d2b5e; }

.dtab-wrap {
  opacity: 1 !important; transform: none !important;
  border: 1px solid #d4e0f5; border-radius: 18px;
  overflow: hidden; background: #fff;
  box-shadow: 0 18px 50px -28px rgba(13,43,94,.4);
}
.dtab-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.dtab { width: 100%; border-collapse: collapse; min-width: 640px; }
table.dtab thead th {
  position: sticky; top: 0; z-index: 2;
  background: linear-gradient(180deg, #0d2b5e, #0a1e47);
  color: #fff; text-align: center;
  padding: 18px 16px; vertical-align: top;
  border-bottom: 2px solid #1fa8ff;
}
table.dtab thead th.dtab-col-name { text-align: left; width: 38%; }
.dtab-prod-name {
  font-family: var(--sp-font-display);
  font-size: 1.02rem; font-weight: 600; display: block; margin-bottom: 6px;
  color: #6fd3ff;
}
.dtab-prod-desc {
  display: block; font-size: 11.5px; line-height: 1.5;
  color: #b8c5e0; font-weight: 400; max-width: 230px; margin: 0 auto;
}
table.dtab thead th.dtab-col-name .dtab-prod-name { color: #fff; font-size: 1.15rem; }
table.dtab tbody td, table.dtab tbody th {
  padding: 14px 16px; border-bottom: 1px solid #eef3fb;
  font-size: 0.95rem; text-align: center; vertical-align: middle;
}
table.dtab tbody tr:nth-child(even) { background: #f7faff; }
table.dtab tbody tr:hover { background: #eef5ff; }
table.dtab tbody th[scope="row"] {
  text-align: left; font-weight: 700; color: #0d2b5e;
  font-family: var(--sp-font-display); font-size: 1rem;
}
.dtab-states { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 6px; }
.dtab-uf {
  font-size: 10.5px; font-weight: 600; letter-spacing: .03em;
  color: #1566c0; background: #e9f1ff; border: 1px solid #cfe0fb;
  border-radius: 5px; padding: 1px 6px;
}
.dtab-uf.dtab-nac { color: #0a7d3c; background: #e6f7ec; border-color: #b7e6c8; }
.dtab-check svg { display: inline-block; vertical-align: middle; }
.dtab-no { color: #c2cee0; font-size: 1.1rem; line-height: 1; }
table.dtab tfoot td {
  padding: 16px; font-family: var(--sp-font-display); font-weight: 700;
  color: #0d2b5e; text-align: center; background: #eef3fb;
  border-top: 2px solid #d4e0f5; font-size: 0.92rem;
}
table.dtab tfoot td.dtab-col-name { text-align: right; color: #3a5685; }
.dtab-empty { padding: 40px 20px; text-align: center; color: #3a5685; }
@media (max-width: 560px) {
  .dtab-field select, .dtab-field input { min-width: 0; width: 100%; }
  .dtab-field { width: 100%; }
  .dtab-count { margin-left: 0; }
}

/* ── Logos reais no marquee de distribuidoras ── */
img.sp-distrib-logo {
  flex-shrink: 0;
  height: 56px;
  width: auto;
  object-fit: contain;
  padding: 10px 20px;
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-r);
  background: linear-gradient(180deg, rgba(15, 38, 89, 0.4), rgba(10, 30, 71, 0.2));
  transition: border-color .2s, opacity .2s;
  box-sizing: content-box;
}
img.sp-distrib-logo:hover {
  border-color: var(--sp-border-strong);
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════════
   SEÇÕES BRANCAS (light mode alternado)
   ══════════════════════════════════════════════════════════ */
.sp-section.sp-light {
  background: #ffffff;
  color: #0d2b5e;
}
.sp-section.sp-light .sp-eyebrow {
  color: #1566c0;
}
.sp-section.sp-light .sp-h2,
.sp-section.sp-light .sp-h3,
.sp-section.sp-light h2,
.sp-section.sp-light h3 {
  color: #0d2b5e;
}
.sp-section.sp-light .sp-lead,
.sp-section.sp-light .sp-body,
.sp-section.sp-light p {
  color: #2c4a7a;
}
.sp-section.sp-light .sp-accent {
  color: #1566c0;
}
.sp-section.sp-light .sp-card,
.sp-section.sp-light .sp-trust-card,
.sp-section.sp-light .sp-diff-card,
.sp-section.sp-light .sp-feat-card,
.sp-section.sp-light .sp-step-card {
  background: #f4f7ff;
  border-color: #c8d8f0;
  color: #0d2b5e;
}
.sp-section.sp-light .sp-card:hover,
.sp-section.sp-light .sp-feat-card:hover {
  border-color: #1566c0;
}
.sp-section.sp-light .sp-trust-card strong {
  color: #0d2b5e;
}
.sp-section.sp-light .sp-trust-card span {
  color: #4a6fa5;
}
.sp-section.sp-light .sp-diff-num {
  color: rgba(13,43,94,.15);
}
.sp-section.sp-light .sp-diff-icon {
  stroke: #1566c0;
}
.sp-section.sp-light .sp-feat-icon {
  background: rgba(21,102,192,0.08);
  border-color: #c8d8f0;
}
.sp-section.sp-light .sp-feat-icon svg {
  stroke: #1566c0;
}
.sp-section.sp-light .sp-step-num {
  color: rgba(21,102,192,.15);
}
.sp-section.sp-light .sp-product-bullets li {
  color: #2c4a7a;
}
.sp-section.sp-light .sp-product-bullets li::before {
  color: #1566c0;
}
/* FAQ na seção branca */
.sp-section.sp-light .sp-faq-item {
  border-color: #c8d8f0;
}
.sp-section.sp-light .sp-faq-q {
  color: #0d2b5e;
}
.sp-section.sp-light .sp-faq-a {
  color: #4a6fa5;
}
.sp-section.sp-light .sp-section-head .sp-eyebrow::after {
  background: #1566c0;
}

/* ── Mockup images nos produtos ── */
.sp-product-img {
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  display: block;
}
.sp-product-visual-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* ── Universidade SmartPed section ── */
.sp-univ.sp-light {
  background: #f0f5ff;
}
.sp-univ-login-card {
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 56px 48px;
  background: #fff;
  border: 1px solid #c8d8f0;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(21,102,192,.1);
  margin-top: 48px;
  flex-wrap: wrap;
}
.sp-univ-login-card .sp-univ-copy {
  flex: 1;
  min-width: 260px;
}
.sp-univ-login-card .sp-univ-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}
.sp-btn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: #0d2b5e;
  color: #fff;
  border-radius: var(--sp-r);
  font-family: var(--sp-font-display);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background .2s, transform .1s;
}
.sp-btn-navy:hover {
  background: #1a3d7a;
  transform: translateY(-1px);
}

/* ── Fix números seção Confiança (fundo branco) ── */
.sp-section.sp-light .sp-trust-card strong {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #0d2b5e !important;
  background-clip: unset !important;
  color: #0d2b5e !important;
  font-size: 2.8rem !important;
}
.sp-section.sp-light .sp-trust-card span {
  color: #4a6fa5 !important;
}


/* ══════════════════════════════════════════════════════════
   AUDITORIA DE CONTRASTE — CORREÇÕES GLOBAIS
   ══════════════════════════════════════════════════════════ */

/* ── Botão ghost em fundo branco ── */
.sp-section.sp-light .sp-btn-ghost {
  border-color: #0d2b5e !important;
  color: #0d2b5e !important;
  background: transparent !important;
}
.sp-section.sp-light .sp-btn-ghost:hover {
  background: #f0f5ff !important;
  border-color: #1566c0 !important;
  color: #1566c0 !important;
}

/* ── Todos os textos em seções brancas ── */
.sp-section.sp-light { color: #2c4a7a; }
.sp-section.sp-light h1, .sp-section.sp-light h2,
.sp-section.sp-light h3, .sp-section.sp-light h4 { color: #0d2b5e !important; }
.sp-section.sp-light p, .sp-section.sp-light li,
.sp-section.sp-light span:not(.sp-eyebrow):not(.sp-accent) { color: #2c4a7a !important; }
.sp-section.sp-light .sp-body { color: #2c4a7a !important; }
.sp-section.sp-light .sp-lead { color: #2c4a7a !important; }
.sp-section.sp-light .sp-eyebrow { color: #1566c0 !important; }
.sp-section.sp-light .sp-accent { color: #1566c0 !important; }
.sp-section.sp-light strong { color: #0d2b5e !important; }
.sp-section.sp-light code { color: #0d2b5e !important; background: #e8f0ff; }

/* ── FAQ específico ── */
.sp-section.sp-light .sp-faq-item {
  background: #fff !important;
  border: 1.5px solid #c8d8f0 !important;
  border-radius: 10px !important;
}
.sp-section.sp-light .sp-faq-q {
  color: #0d2b5e !important;
  font-weight: 600 !important;
  font-size: 16px !important;
}
.sp-section.sp-light .sp-faq-q svg { stroke: #1566c0 !important; }
.sp-section.sp-light .sp-faq-a { color: #2c4a7a !important; line-height: 1.7 !important; }
.sp-section.sp-light .sp-faq-a * { color: #2c4a7a !important; }

/* ── Universidade/Conecta ── */
.sp-section.sp-light.sp-univ { background: #f0f5ff !important; }
.sp-univ-login-card { background: #fff !important; }
.sp-univ-login-card h3 { color: #0d2b5e !important; }
.sp-univ-login-card p, .sp-univ-login-card li { color: #2c4a7a !important; }
.sp-univ-login-card svg:not(.sp-logo-mark) { stroke: #1566c0 !important; }

/* ── Trust cards sempre legíveis ── */
.sp-section.sp-light .sp-trust-card {
  background: #fff !important;
  border: 1px solid #c8d8f0 !important;
}
.sp-section.sp-light .sp-trust-card strong {
  color: #0d2b5e !important;
  -webkit-text-fill-color: #0d2b5e !important;
  background: none !important;
  font-size: 2.5rem !important;
  font-weight: 800 !important;
}
.sp-section.sp-light .sp-trust-card span { color: #4a6fa5 !important; }
.sp-section.sp-light .sp-trust-seal > div { color: #2c4a7a !important; }
.sp-section.sp-light .sp-trust-seal svg { stroke: #1566c0 !important; }

/* ── Diferenciais (diff cards) em sp-light ── */
.sp-section.sp-light .sp-diff-card {
  background: #f4f7ff !important;
  border: 1px solid #c8d8f0 !important;
}
.sp-section.sp-light .sp-diff-card h3 { color: #0d2b5e !important; }
.sp-section.sp-light .sp-diff-card p { color: #2c4a7a !important; }
.sp-section.sp-light .sp-diff-num { color: rgba(21,102,192,.12) !important; }
.sp-section.sp-light .sp-diff-icon { stroke: #1566c0 !important; }

/* ── Feature cards em páginas de produto ── */
.sp-section.sp-light .sp-feat-card {
  background: #f4f7ff !important;
  border: 1px solid #c8d8f0 !important;
}
.sp-section.sp-light .sp-feat-card h3 { color: #0d2b5e !important; }
.sp-section.sp-light .sp-feat-card p { color: #2c4a7a !important; }
.sp-section.sp-light .sp-feat-icon { background: rgba(21,102,192,.08) !important; border-color: #c8d8f0 !important; }
.sp-section.sp-light .sp-feat-icon svg { stroke: #1566c0 !important; }

/* ── Step cards (Como funciona) ── */
.sp-section.sp-light .sp-step-card {
  background: #f4f7ff !important;
  border: 1px solid #c8d8f0 !important;
}
.sp-section.sp-light .sp-step-card h3 { color: #0d2b5e !important; }
.sp-section.sp-light .sp-step-card p { color: #2c4a7a !important; }
.sp-section.sp-light .sp-step-num { color: rgba(21,102,192,.12) !important; }

/* ── Product cards inline em seções brancas ── */
.sp-section.sp-light .sp-card {
  background: #fff !important;
  border-color: #c8d8f0 !important;
  color: #2c4a7a !important;
}
.sp-section.sp-light .sp-card h3 { color: #0d2b5e !important; }

/* ── Eyebrow após elemento branco ── */
.sp-section.sp-light .sp-section-head .sp-eyebrow::after { background: #1566c0 !important; }

/* ── Breadcrumb ── */
.sp-breadcrumb a { color: #4a6fa5 !important; }
.sp-breadcrumb span { color: #4a6fa5 !important; }
.sp-breadcrumb strong { color: #0d2b5e !important; }

/* ── Badge nas páginas de produto ── */
.sp-page-hero-badge { color: #1566c0 !important; border-color: rgba(21,102,192,.3) !important; background: rgba(21,102,192,.06) !important; }

/* ── Embed YouTube responsivo ── */
.sp-video-embed {
  position: absolute;
  inset: 0;
}
.sp-video-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}
