/* ===== CONTAINER DO FOOTER ===== */
#footer-container {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
}

/* ===== RODAPÉ ===== */
.rodape {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0 20px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
  width: 100%;
  clear: both;
}

.rodape-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

.rodape-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.rodape-logo img {
  max-width: 200px;
  margin-bottom: 15px;
}

.rodape-logo p {
  color: #e0e0e0;
  line-height: 1.6;
}

.rodape-links h4,
.rodape-social h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.rodape-links ul {
  list-style: none;
  padding: 0;
}

.rodape-links li {
  margin-bottom: 8px;
}

.rodape-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.rodape-links a:hover {
  color: white;
}

.social-links {
  display: flex;
  justify-content: center;
}

.rodape-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
}

.rodape-bottom p {
  margin: 5px 0;
}

/* ===== RESPONSIVIDADE DO RODAPÉ ===== */
@media (max-width: 768px) {
  .rodape-info {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}
