/* ================= FOOTER ================= */
.footer {
  background-color: #111827; /*linear-gradient(180deg, #012554 0%, #0056b3 100%);*/
  color: #fff;
  padding: 3rem 0 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
}

/* Marca */
.footer__brand {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

/* Menu */
.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__menu li {
  margin-bottom: 0.4rem;
}

.footer__menu a {
  color: #dbe8ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__menu a:hover {
  color: #66b2ff;
}

/* Contato */
.footer__title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list li {
  margin-bottom: 0.4rem;
  color: #dbe8ff;
}

.footer__list i {
  margin-right: 8px;
  color: #66b2ff;
}

/* Redes sociais */
.footer__social a {
  color: #fff;
  margin-left: 14px;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.footer__social a:hover {
  color: #66b2ff;
  transform: translateY(-3px);
}

/* Linha divisória */
.footer__divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0 1.5rem;
}

/* CNPJ e direitos */
.footer__cnpj p,
.footer__copy {
  color: #dbe8ff;
  font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  .footer__menu {
    margin-bottom: 1rem;
  }
  .footer__social a {
    margin: 0 10px;
  }
}