.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;
}

.q-service-item:last-child {
    border-right: none;
}

.q-icon {
    display: block;
    font-size: 2rem;
    color: var(--ordi-red);
    margin-bottom: 10px;
}

.q-service-item p {
    color: #333;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsivo para celulares */
@media (max-width: 768px) {
    .services-white-bar {
        flex-direction: column;
        gap: 30px;
        margin-top: 0;
    }
    .q-service-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
        width: 100%;
    }
}

.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; /* Esto evita que la imagen se deforme */
    filter: brightness(0) saturate(100%) invert(11%) sepia(85%) saturate(5432%) hue-rotate(352deg) brightness(89%) contrast(93%); 
    /* El filtro de arriba intentará poner tus imágenes en el rojo ORDI si son iconos negros */
}

.q-service-item p {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.8rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}