.site-footer {
    .inside-footer-widgets {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 40px;
        width: 100%;
        color: var(--c-blanco);
        font-size: 15px;
        margin-left: 0 !important;

        aside.inner-padding {
            padding: 0;
        }

        .tit-footer {
            font-size: 20px;
            font-weight: 500;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .footer-widget-1 {
            a {
                transition: all 0.3s ease-in-out;
                
                img {
                    width: 160px;
                }

                &:hover {
                    opacity: 0.7;
                }
            }
        }   

        .footer-widget-2, 
        .footer-widget-3 {
            .textwidget {
                display: flex;
                flex-direction: column;
                gap: 5px;

                a {
                    text-decoration: none;
                    transition: all 0.3 ease-in-out;
                    padding-left: 18px;
                    position: relative;

                    &::before {
                        content: "";
                        background-color: var(--c-amarillo);
                        position: absolute;
                        top: 8px;
                        left: 0;
                        width: 9px;
                        height: 9px;
                        border-radius: 80px;
                    }
                }
            }
        }

        .footer-widget-4 {
            .link-footer {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                gap: 10px;

                &:not(:last-child) {
                    margin-bottom: 15px;
                }

                img {
                    width: 35px;
                }

                a {
                    text-decoration: none;
                    transition: all 0.3 ease-in-out;
                }
            }
        }
    }

    .site-info {
        .logos-kit {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;

            img {
                max-width: 130px;
            }
        }

        a {
            text-decoration: none;
            transition: all 0.3 ease-in-out;
        }
    }
}


@media screen and (max-width: 1200px) {
    .site-footer {
        .inside-footer-widgets {
            grid-template-columns: 1fr 1fr;

            .footer-widget-1 {
                order: 1;
            }
            .footer-widget-4 {
                order: 2;
            }
            .footer-widget-2,
            .footer-widget-3 {
                order: 3;
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .site-footer {
        .site-info {
            .inside-site-info {
                padding-left: 20px;
                padding-right: 20px;
            }
        }
    }
}

@media screen and (max-width: 600px) {
    .site-footer {
        .inside-footer-widgets {
            grid-template-columns: 1fr;
            gap: 0;

            .footer-widget-1,
            .footer-widget-2,
            .footer-widget-3,
            .footer-widget-4 {
                padding: 20px 0;
                border-bottom: 1px solid var(--c-blanco);
                margin-bottom: 0;
            }
        }

        .site-info {
            text-align: left;
            
            .logos-kit {
                flex-wrap: wrap;
                justify-content: flex-start;
            }
        }
    }
}