/* footer.css
   estilos do rodape do site */

footer {
  background: var(--azul-escuro);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

footer .footer-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--branco);
  margin-bottom: 12px;
}

footer .footer-logo .destaque {
  color: var(--laranja);
}
footer .footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

footer h6 {
  color: var(--branco);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

footer ul {
  list-style: none;
  padding: 0;
}
footer ul li {
  margin-bottom: 10px;
}
footer ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
footer ul li a:hover {
  color: var(--laranja);
}

/* icones das redes sociais */
.footer-redes a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--branco);
  font-size: 1rem;
  margin-right: 8px;
  transition: background 0.2s;
  text-decoration: none;
}

.footer-redes a:hover {
  background: var(--laranja);
  color: var(--azul-escuro);
}

/* linha de copyright la embaixo */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 40px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}
