/* Centrado total del contenido de cada servicio */
.servicio-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-align: center;
}
.servicio-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: box-shadow 0.25s cubic-bezier(.4,1.4,.6,1), transform 0.22s cubic-bezier(.4,1.4,.6,1), background 0.22s;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  min-height: 280px;
  height: 100%;
  padding: 32px 18px 28px 18px;
  margin-bottom: 24px;
  box-sizing: border-box;
}
.servicio-box h3 a,
.servicio-box h3 {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
  margin: 0 0 10px 0;
}
.servicio-box i {
  margin-bottom: 18px;
  font-size: 48px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3f9f5;
}
/* Quitar la línea gris de unión */
.icon-box-2.with-line:before,
.icon-box-2:before {
  display: none !important;
}
.servicio-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: box-shadow 0.25s cubic-bezier(.4,1.4,.6,1), transform 0.22s cubic-bezier(.4,1.4,.6,1), background 0.22s;
  cursor: pointer;
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}
.servicio-box:hover {
  background: #f3f9f5;
  box-shadow: 0 8px 32px rgba(56,182,83,0.13);
  transform: translateY(-4px) scale(1.03);
  color: inherit;
  text-decoration: none;
}
.servicio-box h3 a,
.servicio-box h3 {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}
.servicio-box:active {
  background: #e6f7ea;
}
