/* FOOTER */
.footer-widgets {
    position: relative;
    z-index: 1;
}

.site-footer {
    padding-right: 85px;

}
.footer-widgets-container {
    background-color: #d1ccc0;
}

.footer-widget-1 .custom-html-widget{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    .columna {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .columna:first-of-type {
        img {
            max-width: 150px;
        }

        p {
            font-style: italic;
            font-size: 20px;

        }
    }

    .columna:last-of-type {

        ul {
            display: flex;
            gap: 40px;
        }
        a {
            color: var(--c-negro);
            text-transform: uppercase;
            transition: all 0.3s ease;

            &:hover {
                opacity: 0.5;
            }
        }
    }
}



.rrss {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}
  
.rrss img {
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    width: 30px;
    height: auto;
    transition: transform 0.4s ease;
    filter: brightness(0);
  }
  
.rrss img:hover {
    transform: scale(1.05);
    transition: transform 0.4s ease;
}



/* COPYRIGHTBAR */
.site-info {
  background-color: #d1ccc0 !important;
}

.copyright-bar {
    display: flex;
    align-items: center;
  justify-content: space-between;
  width: 100%;

  a {
    color: var(--c-negro);
  }

  div:last-of-type {
    display: flex;
    gap: 10px;
  }
  

}


/* LOGOS KIT DIGITAL */

.footer-widget-3 {
   flex: 0 0 40% !important;
}

.logos-kit-digital {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.logos-kit-digital img {
  display: block;
  max-width: 150px;
  filter: grayscale(100%) ;
  object-fit: contain;
}

.logos-kit-digital > img:last-child {
  max-width: 140px;
}


@media screen and (max-width: 768px) {
  .site-footer {
    padding-right: 0px;
  } 

  .footer-widget-1 .custom-html-widget {
    flex-direction: column;
    text-align: center;

    .columna {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .columna:first-of-type {
      margin-inline: auto;
      img {
          max-width: 150px;
      }
      p {
          font-size:16px;
          text-align: center;
      }
    }

    .columna:last-of-type {

      ul {
        flex-wrap: wrap;
        gap: 0;
        column-gap: 20px;
        justify-content: center;
      }
      a {
        font-size: 16px; 
        text-align: center;
      }
    }


  }

  .rrss {
    justify-content: center;
    gap: 30px;
    margin-bottom: 0px;
    margin-top: 20px;
  }

  .copyright-bar {
      flex-direction: column;
      div:last-of-type {
        flex-wrap: wrap;
        justify-content: center;
      }
  }

  .logos-kit-digital {
      gap: 0px;
      justify-content: center;
      column-gap: 20px;
      margin-bottom: 20px;
  }


  .logos-kit-digital img {
      max-width: 125px;
      padding: 10px 5px;
  }

    .logos-kit-digital>img:last-child {
        max-width: 20%;
    }
  
 }
