/* ---------------------------
   styles-services.css (limpio)
   Estilos específicos para páginas de servicio
   --------------------------- */

/* Namespace para evitar colisiones */
.svc-page { padding-bottom: 3.5rem; }

/* HERO */
.svc-hero {
  padding: 3.2rem 0;
}
.svc-hero .title {
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: .5rem;
  color: var(--brand-blue, #0e8efb);
}
.svc-hero .subtitle {
  color: #334155;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.svc-hero .img-wrap img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(6,22,64,0.06);
}
.hero-cta .btn { min-width: 160px; }

/* Puntos / bullets */
.svc-points .bi { color: var(--brand-blue, #0e8efb); font-size: 1.1rem; margin-right: .6rem; }


/* ---------- Mejora UI/UX para "Servicios disponibles" ---------- */

/* grid adaptable */
.svc-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px 28px; /* fila x columna */
  align-items: start;
}

/* item estilo "card" ligero */
.svc-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 18px 18px;
  box-shadow: 0 10px 25px rgba(12,17,43,0.04);
  border: 1px solid rgba(12,17,43,0.03);
  min-height: 120px; /* uniformidad visual */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* título y descripción */
.svc-title {
  margin: 0 0 8px 0;
  font-weight: 700;
  color: #0f172a;
  font-size: 1.02rem;
  line-height: 1.2;
}
.svc-desc {
  margin: 0;
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.55;
}

/* si necesitas listar entregables dentro del item */
.svc-desc + .svc-bullets { margin-top: 10px; }
.svc-bullets ul { margin: 0; padding-left: 1.25rem; color: #475569; font-size: .95rem; }

/* CTA strip */
.svc-cta-strip {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(14,142,251,0.03), rgba(6,102,200,0.01));
  border: 1px solid rgba(6,102,200,0.03);
}

/* CTA text and actions */
.svc-cta-text h3 { margin: 0; font-size: 1.4rem; font-weight: 700; }
.svc-cta-text p { margin: 0; color: #475569; }

/* CTA buttons layout */
.svc-cta-actions .btn { min-width: 140px; }
.svc-cta-actions .btn + .btn { margin-left: 10px; }

/* Responsive: en móvil apilar el CTA y ajustar grid */
@media (max-width: 767.98px) {
  .svc-list-grid { gap: 14px; }
  .svc-item { padding: 14px; min-height: auto; }
  .svc-cta-strip {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 10px;
  }
  .svc-cta-actions { display:flex; justify-content:center; gap:10px; }
}

/* micro-ajustes visuales */
.svc-item:focus-within { box-shadow: 0 14px 30px rgba(12,17,43,0.06); outline: none; }

/* ---------- CTA strip: destaque de texto y botones ---------- */

/* Ajustes para el texto destacado */
.svc-cta-text h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
}

/* Nota principal: más visible que un text-muted normal */
.svc-cta-note {
  margin: 6px 0 0 0;
  color: #495466;                /* texto principal */
  font-size: 1rem;
  line-height: 1.45;
}

/* Marca destacada */
.brand-strong {
  font-weight: 800;
  color: var(--brand-blue, #0e8efb);
  letter-spacing: 0.2px;
}

/* Pill / highlight suave para la frase que el cliente quería enfatizar */
.svc-cta-pill {
  display: inline-block;
  margin-left: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(14,142,251,0.06);   /* tono suave */
  color: #0f172a;
  font-weight: 600;
  font-size: 0.98rem;
}

/* Botones: asegurar que sean fáciles de ver y cliquear */
.svc-cta-actions .btn {
  min-width: 140px;
  padding: 10px 16px;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(12,17,43,0.04);
}

/* Espacio entre botones (desktop) */
.svc-cta-actions .btn + .btn { margin-left: 10px; }

/* Responsive: apilar y centrar en pantallas pequeñas */
@media (max-width: 767.98px) {
  .svc-cta-strip {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 12px;
    padding: 16px;
  }

  .svc-cta-text { order: 0; }
  .svc-cta-actions { order: 1; display:flex; justify-content:center; gap:10px; }
  .svc-cta-actions .btn { width: auto; min-width: 120px; }
}

/* Pequeño pulido: más contraste cuando el usuario tabule */
.svc-cta-actions .btn:focus {
  outline: 3px solid rgba(14,142,251,0.12);
  outline-offset: 2px;
}

