/* ============================
   SERVICIOS – DISEÑO PREMIUM
============================ */
.servicios-nuevo {
  padding: 5rem 0;
  background: #ffffff;
}

.section-header h2 {
  font-size: 2.2rem;
}

.section-header p {
  max-width: 650px;
  margin: auto;
}

/* Card */
.servicio-box {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  transition: transform .4s ease, box-shadow .4s ease;
}

.servicio-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,.15);
}

/* Imagen */
.servicio-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Contenido */
.servicio-body {
  padding: 1.8rem;
  text-align: center;
}

.servicio-icon {
  width: 55px;
  height: 55px;
  margin: -45px auto 1rem;
  background: #ffc107;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

.servicio-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .6rem;
}

.servicio-body p {
  font-size: .95rem;
  color: #6c757d;
  margin-bottom: 1.3rem;
}

/* Botón */
.servicio-body .btn {
  border-radius: 30px;
  padding: .35rem 1.3rem;
  font-size: .85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .servicio-img img {
    height: 160px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }
}