/* ====== FOOTER ====== */
.footer {
  background: #434f50;
  color: #fff;
  padding: 3rem 1.5rem 1rem;
  font-family: "Montserrat", sans-serif;
}

.footer__container {
  display: grid;
  gap: 2rem;
}

.footer__col h4 {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ec68d6;
}

.footer__col p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #e7dcdc; /* Gris suave */
}


.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 0.6rem;
}

.footer__links a {
  color: #ccc;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: #fff;
}

.footer__socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer__socials img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s, filter 0.3s;
}

.footer__socials img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.footer__bar {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.5;
  color: #aaa;
}

/* ====== RESPONSIVE ====== */
@media (min-width: 576px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer__bar {
    font-size: 0.9rem;
  }
}
