/* Servicios */
.servicios{
  padding: 6rem 5%;
}

.servicios h2 {
  font-family: "Marko One", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}

.servicio-card {
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    color: var(--bg-color-dark);
}

.servicio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Iconos un poco más grandes */
.servicios .icono-servicio {
  font-size: 2.5rem;
  color: #fc703e;
  font-family: "Marko One", serif;
  filter: drop-shadow(0 0 0.1rem rgb(189, 189, 189));
}

.servicios h5 {
  font-family: "Chakra Petch", sans-serif;
  margin-top: 10px;
}

.servicios p {
  font-size: 0.9rem;
  color: #525050;
}

.btn-contacto {
  margin-top: 30px;
}

/*
.grid-item{
  aspect-ratio: 1;
  background: blue;
  border-radius: 10px;
  transition: transform 0.3 ease;
  transform-origin: center;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}*/