footer {
  background-color: var(--brand_primary_600);
  color: var(--white) !important;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  width: 100vw;
  max-width: 100%;
}

footer a {
  font-family: var(--font-normal) !important;
  color: var(--white) !important;
  font-weight: 300;
}

.footer-info-container {
  padding: 40px 20px;
}

.logo-footer{
  width: 120px;
  height: 35px;
  overflow: hidden;
  text-indent: -10000px;
  background: url("../assets/redec_logo_negative.svg") no-repeat;
  background-size: contain;
  margin-bottom: 40px;
}

/* SOCIAL CONTAINER */

.social-container{
  margin-bottom: 50px;
}

.social-links-footer{
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  padding-left: 0 !important;
}
.social-links-footer a[class^="social-link"] {
  width: 20px;
  height: 20px;
  overflow: hidden;
  text-indent: -100px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.social-links-footer .social-link-facebook {
  background: url("../assets/icon/facebook_icon_negative.svg");
}

.social-links-footer .social-link-x {
  background: url("../assets/icon/x_icon_netative.svg");
}

.social-links-footer .social-link-insta {
  background: url("../assets/icon/instagram_icon_negative.svg");
}

.social-links-footer .social-link-youtube{
  background: url("../assets/icon/youtube_icon_negative.svg");
}


/* MENU FOOTER */

.menu-footer ul{
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 50px;
}

/* CONTATO FOOTER */
.contact-footer {
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-footer a[class^="contact-footer"], .contact-footer-address{
  position: relative;
}

.contact-footer a[class^="contact-footer"]::before, .contact-footer-address::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: -28px;
  top: 2px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-footer-address::before {
  background: url("../assets/icon/location_icon_negative.svg");
}

.contacts-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-footer-tel::before {
  background: url("../assets/icon/telephone_icon_negative.svg");
}

.contact-footer-mail::before {
  background: url("../assets/icon/mail_icon_negative.svg");
}

/* POLKICY RIGHTS CONTAINER */

.policy-rights-container{
  background-color: var(--brand_primary_700);
  display: flex;
  padding: 20px;
  flex-direction: column;
  gap: 15px;
}
.privacy-policy{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

@media screen and (min-width: 1000px) {
  .footer-info-container, .policy-rights-container{
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-column-gap: 20px;
    grid-template-rows: auto;
    grid-row-gap: 28px;
  }

  .footer-info-container {
    padding: 40px 15vw 40px 15vw;
  }

  .policy-rights-container {
    padding: 0 15vw;
  }

  .footer-info-container > .logo-footer {
    grid-column: 1 / 5;
    grid-row: 1 / 2 ;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 0;
  }

  .footer-info-container > .social-container {
    grid-column: 1 / 5;
    grid-row:  2 / 3;
    margin-bottom: 20px;
  }

  .social-links-footer {
    margin-bottom: 20px;
  }

  .menu-footer ul, .footer-info-container > .contact-footer {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
    margin-bottom: 20px;
    grid-column-gap: 20px;
  }

  /* .menu-footer ul {
    margin-bottom: 0px;
    gap: 20px;
  } */

  .footer-info-container > .menu-footer {
    grid-column: 5 / 10;
    grid-row: 1 / 3;
    /* background-color: orange; */
  }

  .menu-footer  .expertise {
    grid-column: 1 / 4;
    grid-row: 1 / 2 ;
  }

  .what-wo-do{
    grid-column: 1 / 4;
    grid-row: 2 / 3 ;
  }

  .who-we-are {
    grid-column: 1 / 4;
    grid-row: 3 / 4 ;
  }
  .menu-footer  .news {
    grid-column: 4 / 7;
    grid-row: 1 / 2 ;
  }

  .footer-info-container > .contact-footer {
    grid-column: 10 / 17;
    grid-row: 1 / 3;
    grid-column-gap: 40px;
    /* background-color: violet; */

  }

  .contact-footer-address {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
  }

  .contacts-container {
    grid-column: 4 / 7;
    grid-row: 1 / 2;
  }

  .rights-reserved {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    margin: 20px 0;
  }

  .privacy-policy {
    grid-column: 8 / 17;
    grid-row: 1 / 2;
    margin: 20px 0;
    justify-content: flex-end;
    gap: 40px;
  }
}