/* Tarjeta de servicio */
.service {
  border: 1px solid #e0e0e0;
  padding: 1.5rem;
  border-radius: 8px;
  background-color: #ffffff;
  transition: all 0.25s ease;
}

/* Hover sobrio y profesional */
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  border-color: #c7c7c7;
}

/* Ícono */
.service-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #2c5aa0;
}

/* Título */
.service h3 {
  margin: 0 0 0.5rem 0;
}

/* Enlace */
.service h3 a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.service h3 a:hover {
  color: #2c5aa0;
}

/* Texto */
.service p {
  color: #444444;
  line-height: 1.5;
}

/* Nota inferior */
.service span {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #6b6b6b;
}

/* Enlace envolvente */
.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Cursor de interacción */
.service-link .service {
  cursor: pointer;
}

