/* Botones */
.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: fit-content;
    margin: 1px auto;

    transition: filter 0.2s ease;
}

.button-container:hover {
    filter: brightness(1.2);
}

.img-logo {
    width: 128px;
    height: 128px;
}

.img-wipe {
    position: relative;
    width: 240px;
    height: 61px;
    overflow: hidden;
    cursor: pointer;
}

.img-wipe img {
    border-radius: 0;
    
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-top {
    clip-path: inset(0 0 0 100%);
    transition: clip-path 0.4s cubic-bezier(.4,0,.2,1);
}

.button-container:hover:hover .img-top {
    clip-path: inset(0 0 0 0);
}

/* Gif que no es gif */
.img-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    max-width: 192px;
    transition: 0.2s ease;
    animation: pulse 0.7s linear infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    35% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}