
/*-------footer----------- */

footer{
  display: flex;
  flex-direction: column;
  background-color: #000000;
  height: auto;
  font-family: Helvetica;
}

  .derechos{
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    font-size: 20px;
     flex-wrap: wrap;
  }

  .arriba{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    padding: 1rem;
  }

  .rs{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem;
  }
  .rs img{
    width: 40px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(84%) sepia(0%) saturate(400%) hue-rotate(360deg);
    
  }

  .rs-icons{
    display: flex;
    gap: 20px;
    padding: 5px;
    height: 70px;
    justify-content: center;
  }

  .rs img:hover{
    height: 45px;
    width: 45px;
    filter: brightness(0) saturate(100%) invert(56%) sepia(81%) saturate(2423%) hue-rotate(1deg) brightness(104%) contrast(104%);
  }

  .abajo{
    display: flex;
    justify-content: center;
    margin: 1rem;
  }

.login{
  margin: 2rem 2rem;
}

.login a{
    color: #000000;
  text-decoration-line: none;
  border-radius: 15px;
  background-color: #c26400;
  padding: 10px;
  margin-top: 8rem;
  margin-left: 2rem;
}

/* ------- RESPONSIVE ------- */

/* Tablets */
@media (max-width: 992px) {
  .derechos {
    font-size: 12px;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }



  .login a {
    margin: 15px auto 0 auto;
    display: block;
    text-align: center;
    width: fit-content;
  }
}

/* Móviles */
@media (max-width: 600px) {
  footer{
    padding: 20px;
    font-size: 12px;

  }
  .derechos{
    gap: 0;
  }
  .derechos, .arriba {
    flex-direction: column;
    }

  .arriba{
    gap: 1.5rem;
    padding-bottom: 0;
  }

  .rs{
    padding-bottom: 0;
  }

  .login a {
    font-size: 14px;
    padding: 8px 12px;
  }
}

