* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial';
}
/* ================================
   BOTON
=================================*/
.btn-servicio {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  border-radius: 12px;
  background: var(--amarillo);
  color: var(--azul);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    z-index: 10; /* aseguramos clic */
}

.btn-servicio:hover {
  background: var(--amarillo);
  color: var(--azul);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}


/* ================================
   SECCION SERVICIOS
=================================*/
.servicios {
    padding: 80px 20px;
    text-align: center;
}

.servicios h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #222;
}

.servicios-subtitle {
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.servicios-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.servicio-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: 0.3s ease-in-out;
    border: 1px solid #eaeaea;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.06);
}

.servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0,0,0,0.12);
}

.servicio-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.servicio-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #222;
}

.servicio-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

/* ============================
   RESPONSIVO
============================ */
@media (max-width: 1024px) {
    .servicios-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .servicios-container {
        grid-template-columns: 1fr;
    }
    
    .servicios h2 {
        font-size: 2rem;
    }
}
