/* === Remove o rodapé cinza original === */
.footer,
.rodape,
#rodape,
.site-footer,
#footer,
section.footer,
div.footer {
  display: none !important;
}

/* === NOVO RODAPÉ AZUL === */
.rodape-custom {
  background-color: #696969;
  color: #ffffff;
  padding: 40px 20px 10px;
  font-family: 'Arial', sans-serif;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}

/* === BLOCO PRINCIPAL === */
.rodape-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.coluna-esquerda,
.coluna-direita {
  flex: 1;
  min-width: 300px;
  margin: 10px 20px;
}

.rodape-custom h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 600;
}

.rodape-custom p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 10px 0;
}

.logo-rodape {
  width: 80px;
  margin-bottom: 15px;
}

/* === RODAPÉ INFERIOR === */
.rodape-inferior {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 15px 10px 8px !important;
  margin: 0 auto !important;
  max-width: 1100px !important;
  border-top: 1px solid rgba(255,255,255,.25) !important;
  position: relative !important;
  z-index: 5 !important;
  min-height: 38px !important;
  line-height: 1.4 !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: visible !important;
}

.rodape-custom .rodape-inferior a,
.rodape-custom .rodape-inferior span,
.rodape-custom .rodape-inferior p {
  color: #ffffff !important;
  font-size: 14px !important;
  display: inline-block !important;
  margin: 0 !important;
  text-decoration: none !important;
}

.rodape-custom .rodape-inferior span {
  opacity: 0.75;
  padding: 0 4px;
  font-weight: bold;
}

.rodape-custom .rodape-inferior a:hover {
  text-decoration: underline !important;
}

.rodape-custom .rodape-inferior p {
  display: inline-block !important;
  margin-left: 8px !important;
  opacity: 0.9 !important;
}

/* === RESPONSIVO (CELULAR) === */
@media (max-width: 768px) {
  .rodape-container {
    flex-direction: column;
    text-align: center;
  }

  .coluna-esquerda,
  .coluna-direita {
    margin: 15px 0;
  }

  .logo-rodape {
    margin: 0 auto 15px;
  }

  .rodape-inferior {
    flex-direction: column;
    gap: 6px;
  }
}

