footer {
  background-color: transparent; /* Remove fundo branco */
  padding: 20px 10px;
  font-family: 'Poppins', sans-serif;
  color: #eee;
  margin-top: 11px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); /* Melhora leitura sobre fundo com textura */
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-size: 18px;
  font-weight: 600;
  color: #6C63FF;
  margin-bottom: 10px;
}

.footer-links {
  margin: 15px 0;
}

.footer-links a {
  margin: 0 12px;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #6C63FF;
}

.footer-social {
  margin: 10px 0;
}

.footer-social a {
  margin: 0 10px;
  font-size: 16px;
  color: #ccc;
  transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
  transform: scale(1.1);
  color: #6C63FF;
}

.footer-copy {
  font-size: 13px;
  color: #aaa;
  margin-top: 20px;
}
@media (max-width: 768px) {
  body {
    padding: 10px;
    font-size: 16px;
  }

  header, footer, nav, .container, .content, .section {
    flex-direction: column !important;
    width: 100% !important;
    padding: 10px !important;
    box-sizing: border-box;
  }

  .menu, .menu-mobile, .form, form, input, textarea, button, select {
    width: 100% !important;
    max-width: 100% !important;
  }

  .table, table {
    display: block;
    overflow-x: auto;
    width: 100%;
  }
}
