
/* Estilizaçao da pagina portfolio */

.main-title{
  text-align: center;
  margin: 2rem 0 0 0;
  h2{
    position: relative;
    text-transform: uppercase;
    font-size: 4rem;
    font-weight: 700;
    span{
      color: var(--color-secondary);
    }
    .big-text{
      top: 50%;
      left: 50%; 
      z-index: -1;  
      font-weight: 800;
      font-size: 3rem;
      position: absolute;
      color: var(--color-forth);
      transition: all .4s ease-in-out;
      transform: translate(-50%, -50%);
   
    }
  }
}

  .port-text{
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-grey1);
    text-transform: uppercase;
    padding: 2rem 0;
  }

  .portfolios{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 1rem 0 0 2rem;
    .portfolio-item{
      position: relative;
      border-radius: 15px;
    }
  .image{
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 5rem;
    
  }

 .hover-item{
    width: 100%;
    height: 100%;
    background-color: var(--color-secondary);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: scale(0);
    align-items: center;
    justify-content: center;
    transition: all .4s ease-in-out;
  } 

  h3{
    font-size: 1.8rem;
    color: #ffe4c4;
    margin-bottom: 1.5rem;
  }

  h2{
    text-align: center;
    color: #414;
    text-shadow: 2px 3px 2px #ffe4c4;
  }



  .icons{
    display: flex;
    align-items: center;
    justify-content: center;
    .icon{
        background-color: var(--color-forth);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        margin: 0 1rem;
        cursor: pointer;
        transition: all .4s ease-in-out;
    }
    img{
      width: 50px;
      height: 50px;
      border-radius: 50%;
    }

  }
  }

  .portfolio-item:hover .hover-item{
    opacity: 1;
    transform: scale(1);
  }

  /* Soliccitar orçamento */
  .recomenda{
    width: 690px;
    padding: 10px;
    margin: 40px;
    p{
      font-size: 1.3rem;
      color: darkgrey;

      a{
        color: #ffe4c4;
        font-size: 1.3rem;

        &:hover{
          color: beige;
          text-decoration: underline;
        }
      }
    }
  }

  
  @media screen and (max-width: 600px){

     .main-title{
      margin: 0;
      padding: 0;
     }

    .main-title .portfolio-text{
      font-size: 1.6rem;
    }

    .big-text{
      font-size: 1.8rem;
    }

    /* .big-text{
      font-size: 2rem;
    } */
    .porto-text{
      color: var(--color-grey1);
      font-size: 1.1rem;
      line-height: 2rem;
    }
    .portfolios{
      grid-template-columns: 1fr;
      margin: 1rem 0 0 1rem;
      gap: 1rem;
    }

    /* Soliccitar orçamento */
  .recomenda{
    width: 100%;
    
    p{
      font-size: 1.3rem;
      color: darkgrey;

      a{
        color: #ffe4c4;
        font-size: 1.3rem;

        &:hover{
          color: beige;
          text-decoration: underline;
        }
      }
    }
  }
  }

  @media screen and (min-width: 600px) and (max-width: 920px){

    .port-text{
      color: var(--color-white);
      line-height: 2rem;
      font-size: 1.1rem;
    }
    .portfolios{
      grid-template-columns: repeat(2, 1fr);
      margin-left: 2rem;
      gap: 1rem;
    }
  }
  


  