/* servicios.css
   Estilos específicos para servicios. Importa la hoja global (styles.css) si lo prefieres,
   pero aquí se añaden reglas locales para la página de servicios.
*/

/* Si prefieres centralizar: comentar la siguiente línea y usa <link rel="stylesheet" href="styles.css"> en HTML */
/* @import url('styles.css'); */

/* Grid de servicios */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  margin-top:18px;
}

/* Tarjeta de servicio */
.service-card{
  background:linear-gradient(180deg,#fff, rgba(240,139,175,0.02));
  border-radius:12px;
  padding:14px;
  box-shadow:0 10px 30px rgba(16,24,32,0.05);
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  transition:transform 220ms ease, box-shadow 220ms ease;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 48px rgba(16,24,32,0.12);
}
.service-img{
  width:100%;
  height:140px;
  object-fit:cover;
  border-radius:8px;
  margin-bottom:12px;
}

/* Títulos y texto */
.service-card h3{margin:0 0 8px;color:var(--blue-700)}
.service-card p{margin:0 0 12px;color:var(--muted)}

/* Botón reservar (verde para contraste y acción) */
.reserve-btn{
  display:inline-block;
  background:#19A974; /* verde brillante */
  color:#fff;
  padding:8px 12px;
  border-radius:8px;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(25,169,116,0.12);
}
.reserve-btn:active{transform:translateY(1px)}

/* Responsive */
@media (max-width:1000px){
  .services-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:700px){
  .services-grid{grid-template-columns:1fr}
}
