/*

.footer {
  background: var(--color-primary);
  width: 100%;
}

.footer__icons a {
  color: #fff;
}

.footer__grid {
  width: 90%;

  

  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
  padding: 45px 0px;
}

.box figure {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box figure img {
  width: 200px;
}

.footer__title {
  font-weight: 300;
  color: #ffff;
  font-size: 1.7rem;
  margin-bottom: 20px;
  text-align: center;
}

.footer__icons {
  display: flex;
  justify-content: space-evenly;
  font-size: 30px;
  text-decoration: none;
  color: white;
}

.footer__icons img{
  height: 30px;
  filter: hue-rotate(120deg);
}

.footer .final {
  padding: 15px 10px;
  text-align: center;
  color: #ffff;
}

.footer .final small {
  font-size: 15px;
}

.footer__icons a:hover {
  color: #ACC6D3;
}

@media screen and (max-width: 760px) {
 
    .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .box--second {
    grid-column: 1 / span 2;
  }


  .footer__title {
    color: #ffff;
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: center;
  }

  .footer__icons {
    font-size: 20px;
  }
}

*/

.footer{
  background: var(--color-primary);
  width: 100%;
  overflow-y: auto;
}

.footer__icons a {
  color: #fff; /* Establece el color blanco para los iconos */
}

.footer__grid{
  max-width: 1200px;
  margin: auto;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
  padding: 45px, 0px;
}

.box figure{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box figure img{
  width: 200px;
  
}

.footer__grid{
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  align-items: center;
}

.footer__title{
  font-weight: 300;
  color: #ffff;
  font-size: 1.7rem;
  margin-bottom: 20px;
  text-align: center;
}

.footer__icons{
  display: flex;
  justify-content: space-evenly;
}

.footer__container-icons{
  display: inline-block;
  width: 60px;
  height: 60px;
  color:white;
  text-align: center;
  
}

.footer__icons{
  color: white;
  font-size: 30px;
  text-decoration: none;
  line-height: 60px;
}

.footer .final{
  padding: 15px 10px;
  text-align: center;
  color: #ffff;

}

.footer .final small{
  font-size: 15px;
}

@media screen and (max-width:800px) {
  .footer{
     overflow-y: auto;
      background: var(--color-primary);
      width: 100%;
  }
  
  .footer__grid{
    width: 90%;
      grid-template-columns: repeat(1, 1fr);
      grid-gap: 30px;
      padding: 35px, 0px;

  }

  .footer__icons{
    color: white;
    font-size: 30px;
    text-decoration: none;
    line-height: 30px;
  }

  .footer__title{
    font-weight: 100;
    color: #ffff;
    font-size: 1.7rem;
    text-align: center;
  }
  

  
}


/*
.footer__grid{
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 20px;
    align-items: center;
}

.footer__title{
    font-weight: 400;
    color: #ffff;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.footer__icons{
    display: flex;
    justify-content: space-evenly;
}

.footer__container-icons{
    display: inline-block;
    width: 60px;
    height: 60px;
    color:white;
    text-align: center;
    
}

.footer__icons{
    color: white;
    font-size: 30px;
    text-decoration: none;
    line-height: 60px;
}


*/


/*
.nav--footer{
    font-weight: 300;
    justify-content: flex-start;
}

.footer__container-icons{
    color: blue;
}
*/

