/* Rodapé estilizado */
.custom-footer {
  background: linear-gradient(90deg, #1C4C7D 0%, #225e9e 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  position: relative;
}

/* Título do rodapé */
.titulo-footer {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Texto genérico no rodapé */
.custom-footer p {
  font-size: 1rem;
  margin: 0.5rem 0;
  line-height: 1.6;
}

/* Ícones, redes sociais, etc. (opcional) */
.custom-footer .social-icons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.custom-footer .social-icons a {
  color: #ffffff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.custom-footer .social-icons a:hover {
  color: #ddd;
}

/* Responsividade */
@media (max-width: 768px) {
  .titulo-footer {
    font-size: 1.5rem;
  }

  .custom-footer p {
    font-size: 0.95rem;
  }

  .custom-footer {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .titulo-footer {
    font-size: 1.3rem;
  }

  .custom-footer {
    padding: 0.8rem 1rem;
  }

  .custom-footer .social-icons {
    flex-direction: column;
    gap: 10px;
  }
}
.custom-footer {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
  overflow: hidden;
  margin-top: auto;
}

/* Para remover espaçamentos e alinhar a imagem */
.footer-content {
  width: 100%;
  height: auto;
}

/* Faz a imagem ocupar 100% do rodapé */
.logo-footer {
  width: 80%;
  height: auto;
  display: block;
}
.footer-bg {
  background: url('/images/shape-paulista.png') no-repeat center;
  background-size: cover;
  padding: 50px 40px;
  text-align: center;
}
