.bg-footer {
    padding-inline: 10%;
    padding-top: 5%;
    padding-bottom: 3%;
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
    background-image: url("../assets/bg-footer.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.container-nav-footer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    color: #fff;
    list-style: none;
}

.nav-footer-title {
    font-weight: 600;
    font-size: 1.5rem;

}

.nav-footer {    
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-inline: 0;
    font-size: 1.2rem;
    font-weight: 300;
}

.logo-footer {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: right;
    gap: 2rem;
    padding-inline: 0;
    font-size: 1.2rem;
    font-weight: 300;
}

.copy-footer {
    font-size: 0.9rem;
    font-weight: 300;
    color: #fff;
    text-align: center;
    margin-top: 1rem;
}

@media (max-width: 768px) {

  .bg-footer {
    padding-inline: 1rem;
    padding-top: 3rem;
  }

  .container-nav-footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
  }

  .nav-footer {
    align-items: center;
    gap: 0.75rem;
  }

  .logo-footer {
    justify-content: center;
    margin-top: 1rem;
  }
}

