/* RODAPÉ GERAL */
.footer {
  background-color: #f8f8f8;
  color: #808080;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 1;
  position: relative;
  min-height: 400px; /* Altura mínima fixa para cobrir todo o conteúdo */
}

/* BARRA DE AÇÕES (action-bar) */
.action-bar {
  position: relative;
  background: #ffffff;
  border-top: 1.5px solid #BB0606;
  z-index: 10;
  padding: 10px 0;
  height: 60px; /* Altura fixa para evitar CLS */
}

/* CONTEÚDO DA ACTION-BAR */
.action-content {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

/* BOTÕES DA ACTION-BAR */
.action-button {
  background: #ffffff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.action-icon {
  width: 20px;
  height: 20px;
  color: #BB0606;
  transition: color 0.3s ease;
}

.action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* CONTAINER DO FOOTER */
.footer-container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  box-sizing: border-box;
  position: relative;
  min-height: 300px; /* Altura mínima para o conteúdo */
}

/* COLUNAS */
.column {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
  text-align: left;
  position: relative;
  min-height: 250px; /* Altura mínima fixa para cada coluna */
}

/* TÍTULOS DAS COLUNAS */
.column h3 {
  color: #BB0606;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
}

/* ITENS DENTRO DAS COLUNAS */
.column h4 {
  display: flex;
  align-items: center;
  color: #808080;
  cursor: pointer;
  transition: color 0.3s ease, font-weight 0.3s ease;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
}

.column h4:hover {
  color: #BB0606;
  font-weight: 600;
}

/* LINKS GERAIS */
.footer-link,
.social-link {
  color: #808080;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.footer-link:hover,
.social-link:hover {
  color: #BB0606;
  font-weight: 600;
  text-decoration: none;
}

/* ÍCONES DENTRO DOS LINKS */
.footer-link svg,
.social-link svg {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

/* ÍCONES SOCIAIS */
.social-icon {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #808080;
}

.social-link:hover .social-icon {
  color: #BB0606;
}

/* RODAPÉ INFERIOR */
.footer-bottom {
  background-color: #BB0606;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  width: 100%;
  box-sizing: border-box;
  
}

/* CONTEÚDO DO RODAPÉ INFERIOR */
.bottom-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
}

.bottom-content p {
  margin: 0;
  font-size: 14px;
}

/* ÍCONE DO LOGO NO RODAPÉ */
.footer-logo {
  width: 30px;
  height: 30px;
}

/* CONTEÚDO INTERNO DAS COLUNAS */
.content-inner {
  display: flex;
  flex-direction: column;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .footer {
    min-height: 760px; /* Altura mínima fixa para mobile */
  }

  .footer-container {
    padding: 20px 0 0 0;
    gap: 20px;
    grid-template-columns: 1fr;
    min-height: 680px; /* Altura mínima fixa para mobile */
  }

  .column {
    width: 100%;
    text-align: left;
    padding: 0 20px;
    position: relative;
    min-height: 200px; /* Altura mínima fixa para cada coluna em mobile */
  }

  .column h3 {
    color: #BB0606;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 500;
  }

  .footer-bottom {
    padding: 15px 0;
    
  }
}

/* REMOVER SCROLL HORIZONTAL GERAL */
body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
 /* Seção do mapa */
 .mapSection {
  margin-top: 3rem;
}
