.amaltino-footer {
  background: #fff;
  padding: 30px 20px 20px;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #333;
  border-top: 1px solid #ddd;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-side {
  flex: 1;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  max-height: 60px;
  margin-bottom: 8px;
}

.organization-name {
  font-weight: bold;
  font-size: 0.8em;
  margin: 5px 0;
}

.cnpj-info {
  font-size: 0.9em;
  color: #666;
	font-weight: 500;
}

.selo-link {
  margin-top: 8px;
}

.selo-img {
  height: 34px;
  transition: transform 0.3s ease;
}

.selo-img:hover {
  transform: scale(1.05);
}

.footer-content {
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
	font-weight: 400;
}

.footer-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}


.info-label {
  font-weight: bold;
  font-size: 1em;
  margin-bottom: 4px;
}

.contact-link {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  font-size: 0.95em;
  gap: 6px;
  white-space: nowrap;
}

.contact-link:hover {
  color: #000;
}

.contact-link i {
  width: 20px;
  text-align: center;
}

.footer-copyright {
  text-align: center;
  font-size: 0.85em;
  color: #777;
  border-top: 1px solid #ddd;
  padding-top: 12px;
}

.developer-link {
  color: #777;
  font-weight: bold;
  text-decoration: none;
}

.developer-link:hover {
  color: #555;
}

/* Responsivo */
@media (max-width: 992px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-link {
    justify-content: center;
  }

  .footer-side {
    max-width: 100%;
  }
}
