/* ===== Rodapé com logo ===== */
.footer {
  background-color: #0d6dfd75;
  color: #333;
  padding: 40px 20px 20px;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 100px;
  max-width: 100%;
  margin: 0 4% 1% 0;
}

.footer-section h5 {
  font-size: 16px;
  font-weight: 600;
  color: #4a4a4a;
  margin-bottom: 10px;
}

.footer-section p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section i {
  color: floralwhite;
  font-size: 17px;
  margin-left: 1px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #4a4a4a;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

/* LOGO */
.footer-logo img {
  width: 100%;
  height: auto;
  margin-top: -15px;
}

/* Texto da descrição sob a logo */
.footer-logo p {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  max-width: 250px;
}

/* ÍCONES E LINKS DE CONTATO */
.footer-contact {
  text-decoration: none;
  color: #4a4a4a;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.footer-contact:hover {
  color: #0d6efd;
}

.footer-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

/* Rodapé inferior */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto 10px;
  }

  .footer-section h5 {
    border-left: none;
    border-bottom: 3px solid #A6CAEC;
    display: inline-block;
    padding-left: 0;
    padding-bottom: 4px;
  }

  .footer-contact {
    justify-content: center;
  }

  .footer-logo p {
    max-width: 100%;
    margin: 0 auto;
  }
}