footer {
  background-color: #3f3f3f;
  color: #f0f0f0;
  padding: 40px 20px 20px;
  font-family: "Proxima Nova 300", sans-serif;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-title {
  font-size: 40px;
}
.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-info p {
  max-width: 400px;
  line-height: 1.6;
  text-align: left;
  color: #f0f0f0;
}

.footer-separator {
  width: 1px;
  height: 170px;
  background-color: white;
  margin-left: 20px;
}

.shortcuts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  max-width: 300px;
}

.shortcuts a {
  text-decoration: none;
  color: white;
}

.shortcuts button {
  background-color: transparent;
  color: white;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: left;
  transform-origin: left;
}

.shortcuts button:hover {
  transform: scale(1.3);
}

.copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 1em;
  color: #ffffff;
}

@media (max-width: 480px) {
  .footer-content {
    flex-direction: column; /* empilha footer-left e shortcuts */
    align-items: flex-start; /* leva tudo para a esquerda */
    gap: 20px; /* um espaçamento menor entre blocos */
  }

  .footer-separator {
    display: none; /* some com a linha vertical */
  }

  /* separa um pouco os shortcuts do bloco de informações */
  .shortcuts {
    margin-top: 1rem;
    width: 100%; /* opcional: faz ocupar toda a largura */
  }

  /* opcional: faça o footer-info também 100% pra manter consistência */
  .footer-left,
  .footer-info {
    width: 100%;
  }
}
