/* FOOTER PRINCIPAL */
.footer {
  background-color: #161616; 
    color: white;
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 100px;
}

.footer-top {
  text-align: center;
}

.logofooter {
  height: 60px;
  margin-bottom: 10px;
}

.slogan {
  font-weight: 500;
  font-size: 16px;
}

.line {
  margin: 30px auto;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  width: 90%;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.footer-box {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-box h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.footer-box p {
  margin: 6px 0;
  font-size: 14px;
}
.footer-box a {
  line-height: 1.6rem;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-box a:hover {
  color: #f39c12; /* laranja suave no hover */
}

.footer-box i {
  margin-right: 8px;
}
.social-icons-footer a {
  text-decoration: none;
  font-size: 20px; /* opcional para ajustar o tamanho */
  transition: color 0.3s ease;
}

.social-icons-footer a:hover {
  color: #f39c12; /* laranja suave no hover, opcional */
}

.social-icons-footer i {
  font-size: 18px;
  margin-right: 15px;
  cursor: pointer;
  transition: color 0.3s;
}

.social-icons-footer i:hover {
  color: #d32f2f;
}

.newsletter input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
}

.newsletter button {
  background-color: #000000;
  color: rgb(255, 255, 255);
  padding: 10px;
  border: none;
  border-radius: 3px;
  width: 100%;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter button:hover {
  background-color: #d32f2f;
}

/* RODAPÉ FINAL COM CRÉDITOS */
.footer-bottom {
  background-color: #111;
  text-align: center;
  padding: 15px 10px;
  color: #ccc;
  font-size: 14px;
}

.footer-bottom a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-box {
    width: 100%;
    max-width: 400px;
  }

  .newsletter button {
    font-size: 14px;
  }
}