/* Estilos del footer */


footer {
  height: 210px;
  background: linear-gradient(to bottom, rgb(12, 12, 12), var(--gray4));
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px;
}

.logo-footer {
  width: 20%;
  max-width: 300px;

}

.logo-footer img {
  width: 100%;
}

footer p {
  color: white;
  font-size: 20px;
  font-family: 'Kanit';
  font-weight: 300;
  text-align: center;
}



ul {
  list-style: none;
}

.example-1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.example-1 .icon-content {
  margin: 0 10px;
  position: relative;
}

.example-1 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: 'Roboto',sans-serif;
}

.example-1 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -40px;
}

.example-1 .icon-content .link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.example-1 .icon-content .link:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}

.example-1 .icon-content .link svg {
  width: 30px;
  height: 30px;
}

.example-1 .icon-content:hover a[data-social="correo"]{
  background-color: red;
}
.example-1 .icon-content:hover a[data-social="facebook"]{
  background-color: rgb(0, 89, 255);
}
.example-1 .icon-content:hover a[data-social="Whatsapp"]{
  background-color: rgb(17, 255, 0);
}
.example-1 .icon-content:hover a[data-social="Tiktok"]{
  background-color: rgb(0, 0, 0);
}
.example-1 .icon-content:hover .iconf{
  filter: invert(100%);
}
.social-footer .example-1 .icon-content .iconf{
  height: 23px;
  transition: filter 0.3 ease;

}

  .personaliza-tu-saco {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    margin: auto;
    max-width: 1300px;


}

.tips-personalizacion{
width: 100%;
max-width: 900px;
font-family: 'Roboto', sans-serif;
}
.tips-personalizacion h2{
  font-size: 30px;
}
.tips-personalizacion ul{
  display: flex;
  flex-direction: column;
}
.tips-personalizacion ul li{
  margin: 20px 0;
}
.personaliza-tu-saco .imagen-mockup img{
object-fit: contain;
}
.tips-personalizacion ul li strong{
margin: auto auto auto 20px;
font-size: 20px;
}
.tips-personalizacion ul li span{

  border: 1px var(--primary) solid;
  padding: 3px 8px;
  color: var(--white);
  background-color: var(--primary);
  font-weight: 700;
}
.tips-personalizacion ul li p{
text-align: justify;
  margin: 13px auto 13px 45px;
}

  @media (max-width:1004px) {
    footer {
        height: 230px;
       flex-direction: column;
    }
      .logo-footer {
        width: 30%;
        max-width: 300px;
      }
      .logo-footer img {
        width: 100%;
      }
      
      footer p {
        font-size: 17px;
        margin-bottom: 10px;
 
      }
      .personaliza-tu-saco {
      flex-direction: column;
      }  

      .imagen-mockup{
        order: 2;

      }
     .tips-personalizacion{
      order: 1;
     }
  }   