/* Estilo geral do rodapé */
.footer {
  background-color: #0d1b2a; /* Cor de fundo escura conforme a imagem */
  color: #ffffff;
  padding: 40px 20px 20px 20px;
}

/* Contêiner interno do rodapé em Flexbox */
.footer-content {
  display: flex;
  justify-content: space-between; /* Empurra os elementos para as extremidades (esquerda e direita) */
  align-items: flex-start; /* Alinha o topo dos blocos */
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* Informações à esquerda */
.footer-info {
  flex: 1;
}

/* Seção de redes sociais posicionada totalmente à direita */
.social-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Alinha o texto e os ícones à direita */
  text-align: right;
}

.social-section h4 {
  color: #ffaa00; /* Cor amarela/laranja de destaque */
  margin-bottom: 12px;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Alinhamento horizontal dos ícones */
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Estilo para ícones normais */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #1b263b;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background-color: #25d366;
}

/* Botão verde do WhatsApp/Canal */
.social-links .btn-canal {
  width: auto;
  padding: 0 16px;
  background-color: #25d366;
  color: #ffffff;
  font-weight: bold;
  gap: 6px;
}

/* Linha de Copyright na parte inferior */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 0.85rem;
  color: #a0aab8;
}

/* Responsividade para telas menores/celulares */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .social-section {
    align-items: center;
    text-align: center;
    margin-top: 20px;
  }
}