.footer {
  position: relative;
  width: 100%;
  min-height: 300px;
  background: #fff;
  text-align: center;
  padding: 30px 15px;
  display: flex;
  align-items: center;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer .footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer .footer-logos img {
  max-height: 52px;
}

.footer .footer-menu {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer .footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 6px;
  padding: 10px;
}

.footer .footer-menu a:hover {
  background: #207df1;
}

.footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-social a {
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footer .footer-copy {
  font-size: 12px;
  opacity: 0.8;
  color: #141414;
  margin-top: 3rem;
}

/* Responsif */
@media (max-width: 600px) {
.footer .footer-logos {
  gap: 0;
}

  .footer .footer-logos img {
    max-width: 120px;
    max-height: 52px;
    padding: 1px 0;
  }
  .footer .footer-menu {
    gap: 15px;
  }
  .footer .footer-social a {
    font-size: 12px;
  }
}
