.footer {
  background-color: #18469E; /* Azul corporativo */
  color: white;
  padding: 20px 0;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-content p {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.footer-content strong {
  font-weight: bold;
}

.social-icons a {
  display: inline-block;
  margin: 0 12px;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.social-icons img {
  width: 32px;
  height: 32px;
  filter: brightness(100%);
  transition: filter 0.3s ease;
}

.social-icons a:hover img {
  filter: brightness(80%);
}

/* Responsive para móviles */
@media (max-width: 600px) {
  .footer-content p {
    font-size: 1em;
  }
  
  .social-icons img {
    width: 28px;
    height: 28px;
  }
}
