.clientes_header {
    font-family: "Gruppo", serif;
    font-weight: 450;
    font-size: 25px;
    display: flex;
    justify-content: center;
    padding: 10px 15%;
    margin-top: 100px;
    font-weight: bolder;
}

.clientes_header:hover {
    color: #3ab9c2;
}

.image_width {
    width: 200px;
    height: 200px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.image_width:hover {
    filter: grayscale(0%);
}

.cluster_cliente {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.cluster_clientes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.cluster_info h3, .cluster_info p {
    margin: 5px 0;
    font-family: "Gruppo", serif;
}

.head_cluster_ind {
    font-weight: bold;
    font-size: 20px;
}

.p_ind {
    font-size: 18px;
    color: #555;
}

/* Responsividad */
@media (max-width: 768px) {
    .image_width {
        width: 150px;
        height: 150px;
    }

    .head_cluster_ind {
        font-size: 18px;
    }

    .p_ind {
        font-size: 16px;
    }

    .cluster_clientes {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .image_width {
        width: 120px;
        height: 120px;
    }

    .head_cluster_ind {
        font-size: 16px;
    }

    .p_ind {
        font-size: 14px;
    }
}