/* ==============================> PIE DE PAGINA */

footer .elementor-icon-list-items a {
    display: flex;
    padding: 8px;
    background: var(--e-global-color-primary);
    border-radius: 4px;
    transition: .4s all ease-in-out;
    width: -webkit-fill-available;
    justify-content: center;
}


.scrollToTop {
    right: 32px !important;
    bottom: 112px !important;
}

/* ANIMACIONES */

@keyframes pulso-wsp-footer {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgb(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* BOTON WHATSAPP FLOTANTE */

.boton-wsp-izquierdo {
    position: fixed;
    bottom: 36px;
    left: 36px;
    z-index: 1000;
    padding: 8px;
    background: #25d366;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    color: #fff;
    animation: pulso-wsp-footer 1.7s infinite;
    font-size: 32px;
}

/* ==============================> ESTILOS LISTA DE CATEGORÍAS EN PIE DE PAGINA */

.wcc-lista-de-categorias-en-pie-de-pagina-wrapper {
    display: grid;
    grid-template-columns: repeat(var(--wcc-grid-cols, 2), 1fr);
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}

.wcc-lista-de-categorias-en-pie-de-pagina-wrapper .wcc-cat-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.wcc-lista-de-categorias-en-pie-de-pagina-wrapper .wcc-cat-link .wcc-cat-text {
    font-size: 14px;
    line-height: 17px;
    color: #fff;
    opacity: 0.8;
    font-weight: 400;
    position: relative;
    transition: padding-left 0.3s ease;
}

.wcc-lista-de-categorias-en-pie-de-pagina-wrapper .wcc-cat-link .wcc-cat-text:hover {
    opacity: 1;
    transform: translateX(2px);
}

.wcc-lista-de-categorias-en-pie-de-pagina-wrapper .wcc-cat-link:hover .wcc-cat-text {
    padding-left: 5px;
}

/* -> Tablet (max 1024px) */
@media screen and (max-width: 1024px) {
    .wcc-lista-de-categorias-en-pie-de-pagina-wrapper {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px;
    }
}

/* -> Móvil (max 768px) */
@media screen and (max-width: 768px) {
    .wcc-lista-de-categorias-en-pie-de-pagina-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
}

/* -> Móvil (max 480px) */
@media screen and (max-width: 480px) {
    .wcc-lista-de-categorias-en-pie-de-pagina-wrapper {
        grid-template-columns: 1fr !important;
    }
}