.background {
  background-color: #d6d6d6;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 60px;
  padding-right: 60px;
  margin-left: 10%;
  margin-right: 10%;
  background-color: #242424;
  color: aliceblue;
}

.footer-column {
  flex: 1;
  margin: 0 10px;
  
}

.footer-column ul {
  list-style-type: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.titulo {
  font-size: 27px;
}

.footer a {
  color: aliceblue; 
  text-decoration: none; 
  transition: color 0.3s ease; 
}

.footer a:hover {
  color: #f39c12; /* Change to a different color on hover */
}

.logos {
  width: 50px;
  margin-right: 30px;
}

.hover-image img {
  transition: opacity 0.5s ease-in-out;
}

.hover-image img:hover {
  opacity: 0;
}

.hover-image {
  display: inline-block;
  width: 50px; /* adjust based on your image size */
  height: 50px; /* adjust based on your image size */
 
  background-size: cover;
  background-position: center;
  margin-right: 30px;
}

.x {
  background-image: url('../img/x-hoover.svg'); /* the second image for hover */
}

.in {
  background-image: url('../img/Linked-in-hoover.svg');
}


.hover-image img {
  position: relative;
  z-index: 1;
}

.hover-image:hover img {
  opacity: 0;
}

.footer {
  display: flex;
  flex-direction: column;
  
}

.footer-columns-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.footer-column {
  flex: 1;
}

.footer-row {
  margin-top: 20px;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center; 
  align-items: center; 
  border-top: 1px solid white; 
  padding-top: 10px;
}


/* Estructura general para móviles */
@media (max-width: 968px) {
  .footer-columns-wrapper {
    flex-direction: column;
    align-items: left;
  }

  .footer-column {
    margin-bottom: 20px;
    text-align: center;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 0;
    margin-right: 0;
  }

  .titulo {
    font-size: 22px; 
  }

  .footer-row {
    font-size: 14px;
    padding-top: 5px;
  }

  .logos {
    width: 40px; 
    margin-right: 15px;
  }

  .hover-image {
    width: 40px; 
    height: 40px; 
  }

  .hover-image.x {
    background-size: 40px 40px; 
  }

  .hover-image.in {
    background-size: 40px 40px; 
  }

}

/* Para pantallas medianas */
@media (min-width: 969px) and (max-width: 1224px) {
  .footer-columns-wrapper {
    flex-direction: row;
    justify-content: space-around;
  }

  .footer {
    padding-left: 30px;
    padding-right: 30px;
    margin-left: 5%;
    margin-right: 5%;
  }

  .titulo {
    font-size: 24px;
  }

  .footer-row {
    font-size: 16px;
    padding-top: 8px;
  }

  .logos {
    width: 45px;
    margin-right: 20px;
  }

  .hover-image {
    width: 45px;
    height: 45px;
  }

  .hover-image.x {
    background-size: 45px 45px;
  }

  .hover-image.in {
    background-size: 45px 45px;
  }
}