/* ============================================
   SERVICO-PREMIUM.CSS — Páginas de serviços avulsos
   Rodada: DIGITAL_R03 (reconstrução R04)
   Cobertura: sp-hero, sp-spotlight, sp-process, sp-step,
              sp-requirements, sp-cta-banner, btn--sp-*
   Padrão: Doutrina KOP — premium, dark, paleta azul
   ============================================ */


/* ============================================
   1. SP-HERO — Hero com card lateral premium
   ============================================ */

.sp-hero {
  position: relative;
  background: linear-gradient(135deg, #0F1B2A 0%, #0A2540 100%);
  color: #FFF;
  padding: 140px 0 120px;
  overflow: hidden;
  isolation: isolate;
}

.sp-hero__glow-1,
.sp-hero__glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.sp-hero__glow-1 {
  top: -200px;
  left: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(26, 145, 204, 0.25), transparent 70%);
}

.sp-hero__glow-2 {
  bottom: -200px;
  right: -100px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(143, 212, 242, 0.18), transparent 70%);
}

.sp-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 64px;
  align-items: center;
}

.sp-hero__content { display: flex; flex-direction: column; gap: var(--space-md); }

.sp-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(26, 145, 204, 0.15);
  border: 1px solid rgba(26, 145, 204, 0.35);
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8FD4F2;
  align-self: flex-start;
}

.sp-hero__tag-dot {
  width: 6px;
  height: 6px;
  background: #1A91CC;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(26, 145, 204, 0.3);
}

.sp-hero__title {
  font-family: var(--font-primary);
  font-size: clamp(34px, 4.8vw, 60px);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FFF;
  margin: 0;
}

.sp-hero__intro {
  font-family: var(--font-secondary);
  font-size: 17px;
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 60ch;
}

.sp-hero__ctas {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.sp-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  margin-top: var(--space-md);
}

.sp-hero__stats > div { display: flex; flex-direction: column; gap: 4px; }

.sp-hero__stat-value {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: var(--fw-extrabold);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #FFF;
}

.sp-hero__stat-label {
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-blue-primary);
}

/* Card lateral premium */
.sp-hero__card {
  background: linear-gradient(135deg, rgba(15, 107, 153, 0.85) 0%, rgba(10, 77, 112, 0.95) 100%);
  border: 1px solid rgba(143, 212, 242, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 350ms var(--ease-state),
              box-shadow 350ms var(--ease-state);
}

.sp-hero__card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-blue-primary), #8FD4F2, var(--color-blue-primary));
}

.sp-hero__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.sp-hero__card-icon {
  width: 56px;
  height: 56px;
  background: rgba(143, 212, 242, 0.15);
  border: 1px solid rgba(143, 212, 242, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8FD4F2;
  flex-shrink: 0;
}
.sp-hero__card-icon svg { width: 28px; height: 28px; flex-shrink: 0; }

.sp-hero__card-eyebrow {
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8FD4F2;
}

.sp-hero__card-title {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: var(--fw-bold);
  line-height: 1.25;
  color: #FFF;
  margin: 0;
}

.sp-hero__card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-hero__card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-secondary);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.sp-hero__card-list li svg {
  width: 18px;
  height: 18px;
  color: #8FD4F2;
  flex-shrink: 0;
  margin-top: 2px;
}

.sp-hero__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.sp-hero__card-price { display: flex; flex-direction: column; gap: 2px; }

.sp-hero__card-price-label {
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.sp-hero__card-price-value {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: #FFF;
}

@media (max-width: 1199px) {
  .sp-hero { padding: 120px 0 100px; }
  .sp-hero__inner { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr); gap: var(--space-xl); }
}
@media (max-width: 899px) {
  .sp-hero { padding: 100px 0 80px; }
  .sp-hero__inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .sp-hero__stats { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .sp-hero__card { padding: 32px 28px; }
}
@media (max-width: 599px) {
  .sp-hero { padding: 80px 0 60px; }
  .sp-hero__stats { grid-template-columns: 1fr; }
}


/* ============================================
   2. BTN--SP-PRIMARY / BTN--SP-GHOST
   ============================================ */

.btn--sp-primary,
.btn--sp-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: var(--fw-bold);
  text-decoration: none;
  min-height: 52px;
  transition: all 250ms var(--ease-state);
  cursor: pointer;
  border: 0;
}

.btn--sp-primary svg,
.btn--sp-ghost svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn--sp-primary {
  background: var(--color-whatsapp);
  color: #FFF;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.btn--sp-primary:hover {
  background: var(--color-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.btn--sp-ghost {
  background: transparent;
  color: #FFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn--sp-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFF;
}


/* ============================================
   3. SP-SPOTLIGHT — 6 cards numerados
   ============================================ */

.sp-spotlight {
  background: var(--color-gray-mist);
  padding: 100px 0;
}

.sp-spotlight__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sp-spotlight-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-gray-line);
  border-radius: var(--radius-md);
  padding: 36px 32px 32px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 350ms var(--ease-state),
              box-shadow 350ms var(--ease-state),
              border-color 350ms var(--ease-state);
}

.sp-spotlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 107, 153, 0.18);
  border-color: var(--color-blue-primary);
}

.sp-spotlight-card__num {
  position: absolute;
  top: -12px;
  right: 16px;
  font-family: var(--font-primary);
  font-size: 80px;
  font-weight: var(--fw-extrabold);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(26, 145, 204, 0.10);
  z-index: 0;
  pointer-events: none;
  transition: color 350ms var(--ease-state);
}

.sp-spotlight-card:hover .sp-spotlight-card__num { color: rgba(26, 145, 204, 0.20); }

.sp-spotlight-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-blue-primary), var(--color-blue-deep));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  margin-bottom: var(--space-lg);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 350ms var(--ease-overshoot),
              box-shadow 350ms var(--ease-state);
}
.sp-spotlight-card:hover .sp-spotlight-card__icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 12px 24px rgba(15, 107, 153, 0.35);
}
.sp-spotlight-card__icon svg { width: 24px; height: 24px; flex-shrink: 0; }

.sp-spotlight-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  color: var(--color-gray-text);
  margin: 0 0 12px;
}

.sp-spotlight-card p {
  position: relative;
  z-index: 1;
  font-family: var(--font-secondary);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-gray-institutional);
  margin: 0;
}

@media (max-width: 1023px) { .sp-spotlight__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px) {
  .sp-spotlight { padding: 70px 0; }
  .sp-spotlight__grid { grid-template-columns: 1fr; gap: 20px; }
  .sp-spotlight-card { padding: 28px 24px 24px; }
}


/* ============================================
   4. SP-PROCESS / SP-STEP — Timeline vertical
   ============================================ */

.sp-process {
  background: var(--color-white);
  padding: 100px 0;
}

.sp-process__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Linha vertical conectora */
.sp-process__list::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-blue-primary) 0%, rgba(26, 145, 204, 0.2) 100%);
}

.sp-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  position: relative;
  padding: 24px 0;
}

.sp-step:first-child { padding-top: 0; }
.sp-step:last-child { padding-bottom: 0; }

.sp-step__num-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.sp-step__num {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-blue-primary), var(--color-blue-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: var(--fw-extrabold);
  color: #FFF;
  box-shadow: 0 8px 24px rgba(15, 107, 153, 0.3),
              0 0 0 6px var(--color-white);
  flex-shrink: 0;
}

.sp-step__content {
  background: var(--color-gray-mist);
  border: 1px solid var(--color-gray-line);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: border-color 250ms var(--ease-state);
}

.sp-step:hover .sp-step__content {
  border-color: var(--color-blue-primary);
}

.sp-step__time {
  display: inline-block;
  background: rgba(26, 145, 204, 0.10);
  border: 1px solid rgba(26, 145, 204, 0.25);
  border-radius: 100px;
  padding: 4px 12px;
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-blue-deep);
  margin-bottom: 10px;
}

.sp-step__title {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  color: var(--color-gray-text);
  margin: 0 0 10px;
}

.sp-step__desc {
  font-family: var(--font-secondary);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--color-gray-institutional);
  margin: 0;
}

@media (max-width: 599px) {
  .sp-process { padding: 70px 0; }
  .sp-process__list::before { left: 24px; }
  .sp-step { grid-template-columns: 48px 1fr; gap: 16px; }
  .sp-step__num {
    width: 48px;
    height: 48px;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(15, 107, 153, 0.3), 0 0 0 4px var(--color-white);
  }
  .sp-step__content { padding: 20px 22px; }
}


/* ============================================
   5. SP-REQUIREMENTS — Grid de requisitos
   ============================================ */

.sp-requirements {
  background: var(--color-gray-mist);
  padding: 100px 0;
}

.sp-req__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sp-req-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 250ms var(--ease-state),
              box-shadow 250ms var(--ease-state),
              border-color 250ms var(--ease-state);
}

.sp-req-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 107, 153, 0.10);
  border-color: var(--color-blue-primary);
}

.sp-req-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(26, 145, 204, 0.10);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue-primary);
  flex-shrink: 0;
}
.sp-req-card__icon svg { width: 22px; height: 22px; flex-shrink: 0; }

.sp-req-card h3,
.sp-req-card h4 {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  color: var(--color-gray-text);
  margin: 0;
}

.sp-req-card p {
  font-family: var(--font-secondary);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-gray-institutional);
  margin: 0;
}

@media (max-width: 1023px) { .sp-req__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px) { .sp-req__grid { grid-template-columns: 1fr; } }


/* ============================================
   6. SP-CTA-BANNER — CTA final
   ============================================ */

.sp-cta-banner {
  padding: 100px 0;
}

.sp-cta-banner__inner {
  background: linear-gradient(135deg, #0F1B2A 0%, #0A2540 100%);
  color: #FFF;
  border-radius: var(--radius-lg);
  padding: 60px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 24px 64px rgba(15, 27, 42, 0.25);
}

.sp-cta-banner__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-blue-primary), #8FD4F2, var(--color-blue-primary));
  z-index: 1;
}

.sp-cta-banner__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(26, 145, 204, 0.15);
  border: 1px solid rgba(26, 145, 204, 0.35);
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8FD4F2;
  margin-bottom: var(--space-md);
}

.sp-cta-banner__tag-dot {
  width: 6px;
  height: 6px;
  background: #1A91CC;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(26, 145, 204, 0.3);
}

.sp-cta-banner__title {
  font-family: var(--font-primary);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: #FFF;
  margin: 0 0 var(--space-md);
}

.sp-cta-banner__sub {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto var(--space-lg);
  max-width: 56ch;
}

.sp-cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

@media (max-width: 599px) {
  .sp-cta-banner { padding: 70px 0; }
  .sp-cta-banner__inner { padding: 44px 28px; }
}
