
/* == footer ==*/

footer{
    width:100%;
    height: 700px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    color:white;
  }
  
  .lastP{
    text-align: center;
    width: 500px;
    font-family: var(--red);
  }
  
  @media (max-width:550px){
    .lastP{
      text-align: center;
      width: 300px;
    }
  }
  
  .picFooter{
    width:100%;
    height: 100%;
    top:0;
    left: 0;
    background-image: url(img/lolyscinco.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center calc(50% + 300px); /* Ajusta `20px` según sea necesario */
    position: absolute;
    z-index: 1;
  }

  @media (max-width:900px) {
    .picFooter{
        background-position: center;
    }
  }
  
  .gradient{
    width:100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.474),rgba(0, 0, 0, 0.844), black);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    z-index: 2;
  }
  
  .logoFooter{
    z-index: 3;
    background-image: url(img/logo.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    width:300px;
    height: 150px;
  }
  
  .contLink{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  
  .linkFooter{
    width: 50px;
    height:50px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin:20px;
    border-radius: 100px;
    opacity: 50%;
    justify-content: center;
    transition: all 400ms ease;
  }
  
  .linkFooter:hover{
    transition: all 400ms ease;
    opacity: 100%;
  }
  
  .logoSocial{
    width: 20px;
    height:20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .insta{
    background-image: url(img/instagram.png);
  }
  .face{
    background-image: url(img/facebook.png);
  }
  
  .whastapp{
    background-image: url(img/whatsapp.png);
  }

  .linkedin{
    background-image: url(img/linkedin.png);
  }
  
  
  .contLink{
    z-index: 3;
    margin-top: 40px;
  }
  
  .lastP{
    z-index: 3;
    margin-top: 40px;
  }