/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
#footer {
  background-color: #1e293b;
  font-family: 'Inter', sans-serif;
  margin-top: 40px;
}

/* Fundo superior (onde está o logo) */
.footer-back {
  background-color: rgb(42, 62, 89); 
  padding: 1rem 0;
}

.footer-logo {
  max-width: 320px;
  height: auto;
}

/* Links */
.footer-links {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h6 {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.footer a.text-white {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a.text-white:hover {
  color: #c5e7fa !important; /* Azul claro em hover */
}

/* Ícones sociais */
.footer .bi {
  vertical-align: middle;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer .bi:hover {
  transform: scale(1.2);
  color: #c5e7fa;
}

/* Parte inferior */
.footer-gap {
  gap: 60px;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.footer-p {
  max-width: 200px;
}

/*coração*/
.heart-icon {
  color: red;
  transition: transform 0.3s, color 0.3s;
  cursor: pointer;
  display: inline-block;
}

.heart-icon:hover {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

/* Responsividade */
@media (max-width: 767.98px) {
  .footer-links {
    border-left: none;
    border-right: none;
    padding-left: 0;
    padding-right: 0;
  }

  .footer .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .footer h6 {
    text-align: center;
  }

  .footer ul {
    text-align: center;
    padding-left: 0;
  }

  .footer ul li {
    display: block;
    margin-bottom: 0.5rem;
  }

  .footer-logo {
    margin: 0 auto 1rem;
    display: block;
    max-width: 220px;
  }

  .footer .footer-gap {
    flex-direction: column !important;
    gap: 1rem;
    text-align: center;
  }

  .footer .footer-gap .d-flex.gap-4 {
    justify-content: center;
    margin-bottom: 0.5rem;
  }
}
