/* =====================
   BLOQUES DE SERVICIOS
===================== */
.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Contenedor imagen */
.img-container {
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

/* Imagen */
.img-container img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Zoom profesional */
.service-card:hover img {
    transform: scale(1.15);
}

/* Texto */
.service-card h5 {
    margin-top: 20px;
    font-weight: 700;
    color: #01060efb;
}

.service-card p {
    padding: 0 15px;
    color: #555;
    font-size: 0.95rem;
}

