/* Estilização do Footer */
footer#footer {
  background-color: #f8f9fa;
  border-top: 2px solid #dee2e6;
  color: #212529;
  font-family: Arial, sans-serif;
  padding: 20px 0;
}

footer a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #0056b3;
}

footer img {
  max-width: 100%;
  height: auto;
}

footer h4 {
  color: #343a40;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

footer .estilizacao-p {
  color: #333333;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  white-space: nowrap;
}

footer .footer--icones-tamanho {
  height: 24px;
  margin-right: 10px;
  width: 24px;
}

footer .footer-icones-redes-sociais {
  display: inline-block;
  margin-right: 10px;
}

footer p.footer--telefone {
  font-size: 1.4rem;
}

footer .footer-icones-redes-sociais img {
  height: 40px;
  transition: transform 0.3s ease;
  width: 40px;
}

footer .footer-icones-redes-sociais img:hover {
  transform: scale(1.1);
}

footer .footer__imagem-app {
  margin-right: 10px;
  max-width: 120px;
  transition: opacity 0.3s ease;
}

footer .footer__imagem-app:hover {
  opacity: 0.8;
}

footer .footer__copyright {
  color: #6c757d;
  font-size: 0.8rem;
  margin-left: auto;
  text-align: right;
}

/* Layout Responsivo */
@media (min-width: 768px) {
  footer .row {
    display: flex;
    justify-content: space-between;
  }

  footer .footer--borda-lateral {
    border-left: 1px solid #dee2e6;
    margin-top: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 767px) {
  footer {
    text-align: center;
  }

  footer .footer--borda-lateral {
    border-left: none;
    padding-left: 0;
  }

  footer .footer__logos {
    justify-content: center;
  }
}
