.rodape{
  width: 100%;
  min-height: 30vh;
  background-color: var(--preto-claro);

  display: flex;
  flex-direction: column;
  align-items: center;
}

  .rodape__logos{
    display: flex;
    flex-direction: row;
    
    gap: 1rem;
  }
    .rodape__logo{
      height: 100%;
      max-width: calc(25% - 1rem);
    }

    .rodape .menu__link{
      color: var(--branco);
    }

    .rodape #contato .menu__link{
      color: var(--preto-claro);
    }

    .rodape__sobre{
      color: var(--branco);
      text-align: center;
      font-size: 0.75rem;
    }

    .rodape__redesSociais{
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

      .rodape__tituloRedes{
        font-size: 1rem;
        text-align: center;
        color: var(--branco);
      }

      .rodape__listaRedes{
        display: flex;
        flex-direction: row;
      }
        

          /* .rodape__listaRedes-link{

          } */

            .rodape__icone{
              height: 80%;
              width: 80%;
              max-width: 10rem;
              max-height: 10rem;

              transition: 0.2s;
            }

        .rodape__listaRedes-item:hover .rodape__icone{
          fill: var(--amarelo);
        }

  .rodape__direitos{
    color: var(--branco);
    font-size: 0.8rem;
    text-align: center;
  }

/* MOBILE */
@media screen and (min-width:0){
  .rodape{
    padding: 1rem;
    gap:1.5rem;
  }

  .rodape__logos{
    width: 100%;
    height: 5rem;
    justify-content: space-evenly;
  }

  .rodape__logo{
    max-width: calc(40% - 1rem);
  }

  .rodape__listaRedes{
    gap: 0 4rem;
    flex-wrap: wrap;
    
    justify-content: space-evenly;
  }

  .rodape__listaRedes-item{
    height: calc(50% - 5rem);
    width: calc(50% - 5rem);
  }

  .rodape__sobre{
    font-size: 1rem;
  }

  .menu__rodape{
    height: fit-content;
    position: relative;
    top: unset;
    left: unset;

    width: 100vw;

    text-align: center;
  }
}/* MOBILE - FIM */


/* TABLET */
@media screen and (min-width: 768px){
  
}/* TABLET - FIM */


/* 1024 */
@media screen and (min-width: 1024px){
  .rodape{
    padding: 2rem 10%;
    gap: 1rem;
  }

  .rodape__logos{
    width: 50%;
    height: 4rem;
    justify-content: center;
  }

  .rodape__logo{
    max-width: calc(25% - 1rem);
  }

  .rodape__listaRedes{
    gap: 0.5rem;
    flex-wrap: unset;
    justify-content: center;
  }

  .rodape__listaRedes-item{
    height: 2rem;
    width: 2rem;
  }

  .rodape__sobre{
    font-size: 0.75rem;
  }

  .menu__rodape{
    height: unset;
    width: unset;
    text-align: unset;
  }
}/* 1024 - FIM */


/* 1200 */
@media screen and (min-width: 1200px){
  
}/* 1200 - FIM */