/* =============================================== */
/* RODAPÉ */
/* =============================================== */

.site-footer {
  background: #000;
  color: #fff;
  padding: 40px 20px 10px; /* Reduzi padding inferior */
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-brand {
  flex: 1 1 250px;
}

.footer-brand h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #F07D00;
}

.footer-brand p {
  font-size: 1rem;
  color: #ccc;
  margin: 0;
}

/* Voltar ao topo */
.footer-backtotop {
  flex: 1 1 200px;
  text-align: center;
}

.footer-backtotop h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #F07D00;
}

.btn-backtotop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #F07D00;
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.btn-backtotop:hover {
  background: #ff8c00;
  transform: scale(1.05);
}

/* Contato */
.footer-contact {
  flex: 1 1 200px;
}

.footer-contact h3 {
  font-size: 1.2rem;
  color: #F07D00;
  margin-bottom: 10px;
}

.footer-contact p {
  font-size: 1rem;
  color: #ccc;
  margin: 6px 0;
}

.footer-contact i {
  margin-right: 8px;
}

/* Redes Sociais */
.footer-social {
  flex: 1 1 200px;
}

.footer-social h3 {
  font-size: 1.2rem;
  color: #F07D00;
  margin-bottom: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 1.4rem;
  margin-right: 12px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ff8c00;
}

/* Rodapé Inferior */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #888;
}

.footer-bottom a {
  color: #F07D00;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #ff8c00;
}

/* Responsivo - Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-brand,
  .footer-contact,
  .footer-social,
  .footer-backtotop {
    flex: 1 1 100%;
    margin-bottom: 10px;
  }

  .btn-backtotop {
    font-size: 0.9rem;
    padding: 10px 18px;
  }

  .social-icons a {
    margin: 0 8px;
  }

  .footer-bottom {
    margin-top: 20px;
    padding-top: 12px;
  }
}
