/* styles/footer.css */

footer {
  background-color: #440f46; /* Cor de fundo solicitada */
  color: #fff; /* Cor do texto principal para contraste */
  padding: 40px 20px; /* Espaçamento interno */
  font-family: sans-serif; /* Exemplo: use a fonte do seu site */
  width: 100%;
  margin: auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap; /* Permite que os itens quebrem a linha em telas menores */
  justify-content: space-around; /* Distribui espaço entre os itens */
  max-width: 1200px; /* Limita a largura máxima do conteúdo */
  margin: 0 auto; /* Centraliza o conteúdo */
  gap: 30px; /* Espaço entre as colunas */
}

.footer-brand,
.footer-nav,
.footer-contact,
.footer-social {
  flex: 1; /* Permite que as colunas cresçam e diminuam */
  min-width: 100px; /* Garante que cada coluna tenha uma largura mínima */
  /* background-color: var(--roxo-vip); */
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: left;
}

.footer-social a {
  display: flex;
  gap: 5px;
  align-items: center;
}

.footer-social img {
  width: 18px;
  height: 18px;
}

.footer-logo img {
  max-width: 150px; /* Ajuste o tamanho do logo conforme necessário */
  height: auto;
  margin-bottom: 15px;
}

.footer-description {
  font-size: 0.9em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-nav h3,
.footer-contact h3,
.footer-social h3 {
  color: #fff; /* Títulos brancos */
  margin-bottom: 15px;
  font-size: 1.2em;
}

.footer-nav ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li,
.footer-social li {
  margin-bottom: 8px;
}

.footer-nav a,
.footer-contact a,
.footer-social a {
  color: #fff; /* Cor dos links */
  text-decoration: none; /* Remove sublinhado */
  transition: color 0.3s ease; /* Suaviza a transição de cor */
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-social a:hover {
  color: #ccc; /* Cor ao passar o mouse */
  transition: all 0.3s ease;
}

.footer-contact p {
  margin-bottom: 8px;
  font-size: 0.9em;
  line-height: 1.5;
}

/* Estilo para o botão CTA no footer, se for diferente do header */
.footer-cta-button {
  background-color: var(--Laranja-vip);
  margin-top: 10px;
}

.footer-cta-button:hover {
  background-color: var(--Laranja-escuro);
  transition: all 0.3s ease;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Linha divisória sutil */
  font-size: 0.8em;
  color: #ccc; /* Cor mais clara para o texto legal */
  display: flex;
  height: 50px;
  justify-content: space-between;
}

.footer-bottom p {
  margin-bottom: 5px;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #fff;
  transition: all 0.3s ease;
}

.socialmedia {
  width: 20px;
}

#redes-sociais a{
   
    font-size: 25px;
}

/* Responsividade básica */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column; /* Empilha as colunas verticalmente em telas menores */
    align-items: center; /* Centraliza os itens */
  }

  .footer-brand,
  .footer-nav,
  .footer-contact,
  .footer-social {
    min-width: auto; /* Remove largura mínima */
    text-align: center; /* Centraliza o texto */
    margin-bottom: 30px; /* Adiciona espaço entre as seções empilhadas */
  }

  .footer-brand {
    margin-bottom: 20px;
  }

  .footer-logo img {
    margin: 0 auto 15px auto; /* Centraliza o logo */
  }

  .footer-nav ul,
  .footer-social ul {
    padding: 0;
  }

  .footer-bottom {
    margin-top: 20px;
  }

  #redes-sociais a{
    
    font-size: 15px;
    
}
}
