footer {
  background-color: rgba(255, 243, 194, 0.3);
         /* fondo oscuro */
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 2rem;
}

footer .redes {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

footer .footerline {
  width: 80px;
  height: 3px;
  background: #c79759;             /* tu dorado */
  margin: 0.5rem auto 1.5rem;
  border-radius: 2px;
}

footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

footer .social-icons a img {
  width: 36px;
  height: 36px;
  
  transition: transform 0.3s ease, filter 0.3s ease;
}

footer .social-icons a:hover img {
  transform: scale(1.2);
  filter: brightness(0) saturate(100%) invert(64%) sepia(48%) saturate(397%) hue-rotate(10deg) brightness(96%) contrast(90%);
  /* se tiñen dorados al hover */
}

footer p {
  font-size: 0.95rem;
  color: grey;
}

/* Tablet / escritorio */
@media (min-width: 768px) {
  footer {
    padding: 2.5rem;
  }

  footer .social-icons a img {
    width: 42px;
    height: 42px;
  }
}
