.quick-services {
    margin-top: -60px; /* Esto hace que la barra flote sobre el Hero */
    position: relative;
    z-index: 10;
}

.services-white-bar {
    background: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 20px;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.q-service-item {
    text-align: center;
    flex: 1;
    border-right: 1px solid #eee;
    padding: 15px 10px; /* Espacio extra para que el hover se vea bien */
    cursor: pointer; /* Cambia el cursor a la manita indicando que es clickeable */
    transition: all 0.3s ease; /* Hace que la animación sea suave */
}

.q-service-item:last-child {
    border-right: none;
}

/* NUEVO: Efecto al pasar el mouse por encima del botón */
.q-service-item:hover {
    background-color: #FEF2F2; /* Se pinta de un rojo muy clarito */
    transform: translateY(-4px); /* Se levanta sutilmente */
}

.q-icon-container {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.q-service-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Tu filtro está perfecto, esto pondrá las imágenes en rojo automáticamente */
    filter: brightness(0) saturate(100%) invert(11%) sepia(85%) saturate(5432%) hue-rotate(352deg) brightness(89%) contrast(93%); 
}

.q-service-item p {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.8rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* NUEVO: El texto se vuelve rojo al pasar el mouse */
.q-service-item:hover p {
    color: #E53935; 
}

/* Responsivo para celulares */
@media (max-width: 768px) {
    .services-white-bar {
        flex-direction: column;
        gap: 0; /* Lo quité para que las cajas se toquen sin huecos raros */
        margin-top: 0;
        padding: 20px;
    }
    .q-service-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 25px 10px;
        width: 100%;
    }
    .q-service-item:last-child {
        border-bottom: none;
    }
}