/* =========================
   PÁGINA SERVICIO: PWAs Y DASHBOARDS
   ========================= */

/* HERO */
.service-hero {
  padding: 3.5rem 0 3.5rem;
  background: radial-gradient(circle at top, #020617 0%, #020617 60%, #020617 100%);
}

.service-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.service-hero__content {
  max-width: 640px;
}

.service-hero__eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #a5b4fc;
  margin-bottom: 0.9rem;
}

.service-hero__title {
  font-size: clamp(2rem, 2.8vw + 1rem, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-hero__subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5f5;
  margin-bottom: 1.4rem;
}

.service-hero__list {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
  font-size: 0.95rem;
  color: #cbd5f5;
}

.service-hero__list li::before {
  content: "•";
  margin-right: 0.35rem;
  color: #22c55e;
}

.service-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Tarjeta lateral */
.service-hero__side {
  display: flex;
  justify-content: center;
}

.service-hero-card {
  width: 100%;
  max-width: 360px;
  border-radius: 1.3rem;
  padding: 1.4rem 1.3rem;
  background: radial-gradient(circle at top left, #111827, #020617);
  border: 1px solid rgba(129, 140, 248, 0.8);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.95);
  display: grid;
  gap: 0.8rem;
}

.service-hero-card__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #a5b4fc;
}

.service-hero-card__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #e5e7eb;
}

.service-hero-card__badge {
  margin-top: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  align-self: flex-start;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.7);
  color: #bbf7d0;
  font-size: 0.82rem;
}

/* HEADER SECCIONES */
.service-section-header {
  max-width: 640px;
  margin-bottom: 2rem;
}

.service-section-header h2 {
  font-size: clamp(1.6rem, 2.1vw + 1rem, 2.1rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-section-header p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cbd5f5;
}

/* BENEFICIOS */
.service-benefits {
  padding: 3rem 0 3.5rem;
  background: #020617;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.service-benefits__inner {
  display: flex;
  flex-direction: column;
}

.service-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-benefit-card {
  border-radius: 1.2rem;
  padding: 1.2rem 1.2rem 1.1rem;
  background: radial-gradient(circle at top left, #020617, #020617);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.service-benefit-card h3 {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.service-benefit-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #cbd5f5;
}

/* PROCESO */
.service-process {
  padding: 3rem 0 3.5rem;
  background: radial-gradient(circle at top, #020617 0%, #020617 60%, #020617 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.service-process__inner {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.service-process__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-step {
  position: relative;
  padding-top: 1.6rem;
}

.service-step__badge {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #020617;
  background: radial-gradient(circle at top left, #6366f1, #22c55e);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.9);
}

.service-step h3 {
  margin-top: 0.7rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.service-step p {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #cbd5f5;
}

/* MINI PRICING */
.service-pricing {
  padding: 3rem 0 4rem;
  background: #020617;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.service-pricing__inner {
  display: flex;
  justify-content: center;
}

.service-pricing__card {
  max-width: 620px;
  width: 100%;
  border-radius: 1.4rem;
  padding: 1.8rem 1.6rem;
  background: radial-gradient(circle at top left, #111827, #020617);
  border: 1px solid rgba(129, 140, 248, 0.9);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.95);
  display: grid;
  gap: 0.8rem;
  text-align: center;
}

.service-pricing__card h2 {
  font-size: 1.4rem;
  font-weight: 700;
}

.service-pricing__card p {
  font-size: 0.92rem;
  color: #cbd5f5;
  margin-bottom: 0.4rem;
}

.service-pricing__card .btn {
  justify-self: center;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .service-hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-hero__side {
    order: -1;
    margin-bottom: 1.5rem;
  }

  .service-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-process__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .service-benefits__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-process__steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-hero {
    padding-top: 3rem;
  }
}
