.contenedor-footer {
  background-color: #1C4E80;
  /*padding: 20px 0;*/
  margin: 0;
  padding: 0;
  text-align: center;
}

.barra-redes {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.social-icon {
  width: 50px;
  height: 50px;
  background-color: #ffffff33;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.4s ease;
}

.social-icon:hover {
  transform: rotate(360deg) scale(1.2); /* Gira + agranda un 20% */
  background-color: #f0ad4e;
  color: #1c4e80;
}

.social-icon.facebook:hover {
  background-color: #3b5998;
  color: white;
}
.social-icon.instagram:hover {
  background-color: #e1306c;
  color: white;
}
.social-icon.twitter:hover {
  background-color: #1da1f2;
  color: white;
}
.social-icon.youtube:hover {
  background-color: #ff0000;
  color: white;
}

.copyright-text {
  color: #ffffff;
  font-size: 14px;
  padding-top: 5px;
}
