/* GENERAL */

.footer-widgets {
    background-color: var(--c-negro) !important;
   
}
.inside-footer-widgets > div:first-child {
    flex: 3 1 0 !important;
}

.inside-footer-widgets {
    display: flex;

}

/* WIDGET 1 */


.footer-widget-1 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.footer-widget-1 img {
height: 10vh;
width: auto;
margin-bottom: 7vh;
}

.menu-footer {
    margin-top: 20px;
}

.menu-footer ul {
    display: flex;
    text-transform: uppercase;
    gap: 40px;
}

.menu-footer ul li a{
    color: var(--c-blanco);

    position: relative;
    text-transform: uppercase !important;
    display: inline-block;
    overflow: visible;
    z-index: 1;
}
  
.menu-footer ul li a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--c-secundario) 0%, transparent 100%);
    opacity: 0;
    transform: scale(1);
    filter: blur(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .menu-footer ul li a:hover {
    color: var(--c-blanco) !important;
    transform: translateY(-2px);
  }
  
  .menu-footer ul li a:hover::after {
   opacity: 0.8;
    transform: scale(1.1);
  }

/* WIDGET 2 */
.inside-footer-widgets > div:last-child {
    flex: 1 1 0 !important;
}

.footer-widget-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;

    text-align: right;
}

.contacto-footer a {
    color: var(--c-blanco);
    margin: auto !important;
    transition: transform 0.4s ease;
    
}

.contacto-footer a:hover {
    color: var(--c-blanco);
    transform: translateY(-2px);
    transition: transform 0.4s ease;
    
}

.footer-widget-2 .image-block {
    display: flex;
    justify-content: end;
    gap: 10px;
    padding-bottom: 20px;
    margin-top: 40px;
  }
  
.footer-widget-2 .image-block img {
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    width: 50px;
    height: auto;
    transition: transform 0.4s ease;
  }
  
.footer-widget-2 .image-block img:hover {
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

/* COPYRIGHTBAR */
 .copyright-bar {
    width: 70%;
    max-width: 1200px;
    border-top-width: 1px;
    border-bottom-width: 0px;
    border-style: solid;
    border-image: linear-gradient(90deg, rgba(191, 150, 99, 0) 0%, var(--c-blanco) 50%, rgba(191, 150, 99, 0) 100%) 1;
    padding-top: 0px;
    padding-bottom: 0px !important;

}

 .copyright-bar img{

    padding-bottom: 30px;
}

.copyright-bar a {
    color: var(--c-primario-dark);
    transition: all 0.4s ease-out;
    padding-inline: 10px;
    font-size: 14px;
}

.copyright-bar a:hover {
    color: var(--c-secundario);
    
}

.logos-kit-digital {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
}

.logos-kit-digital img {
    display: block;
    max-width: 30%;
    padding: 0 20px;
}

.logos-kit-digital>img:last-child {
    max-width: 25%;
}

/* ---------- RESPONSIVE ---------- */

@media screen and (max-width: 1430px) {
    .footer-widget-1 img {
        height: 8vh;
    }
}

@media screen and (max-width: 1080px) {

  /* LOGOS KIT DIGITAL */

    .logos-kit-digital img {
        max-width: 210px;
    }

    .logos-kit-digital>img:last-child {
        max-width: 32%;
        MARGIN-TOP: 20px;
    }
    .footer-widget-1 .textwidget.custom-html-widget {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .inside-footer-widgets {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-widget-1 img {
        margin-bottom: 4vh;
    }

    .footer-widget-2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 40px;
    }

    .footer-widget-2 .image-block {
        justify-content: center;
        
    }

    .menu-footer ul {
        display: flex;
        text-transform: uppercase;
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}



@media screen and (max-width: 600px) {

  /* LOGOS KIT DIGITAL */
  .footer-widget-1 img {
        height: 6vh;
    }

  .logos-kit-digital img {
      max-width: 165px;
      padding: 10px 5px;
  }

  .logos-kit-digital>img:last-child {
      max-width: 40%;
  }

  .site-footer:not(.footer-bar-active) .copyright-bar {
    margin: 0 0 !important;
}
.inside-site-info {
        padding-right: 0px !important;
        padding-left: 0px !important;
    }

}


