/* Estilização dos cards serviços */
.card-1{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1;
    padding-bottom: 150px;
    flex-wrap: wrap;
    
}
.card-3{
   
    height: 420px;
    margin: 20px;
    align-items: center;
    overflow: hidden;
}

.card-1 .card-3 img{
    height: 400px;
    width: 250px ;
    object-fit: cover;
    margin: 10px;
    border-radius: 10px;
}


.title-2{
    height: 70px;
    width: 250px;
    padding: 6px;
    margin-left: 10px;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    bottom: 150px;
    box-sizing: border-box;
    background: rgb(27, 27, 27, .5);
    color: white;
    
}
.title-2 h1{
    margin: 10px;
    font-size: 25px ;
}

.card-3:hover{
    cursor: pointer;
    box-shadow: 5px 5px  20px 2px green;
    border-radius: 15px;
    transform: translateY(-10px);
    transition: 1s;
}
/* fim cards serviços */

/* Cards portifolio */

.portifolio-2{
    width: 100%;
    display: flex;
    
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.container-2{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    padding: 10px;
}


.card-2{
    width: 400px;
    margin: 10px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.card-2-body{
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    position: absolute;
    background: #1f3d4738;
    backdrop-filter: blur(5px);
    border-radius: 15px;
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 2s;
}

.card-2:hover .card-2-body{
    right: 0;
}

.card-2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.card-2-title{
    text-transform: uppercase;
    font-size: 25px;
    font-weight: bold;
    font-weight: 500;
}

.card-2-info{
    font-size: 16px;
    line-height: 25px;
    margin: 40px 0;
    font-weight: 400;
}

.card-2-button{
    color: #1f3d47;
    background: #8fabba;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: capitalize;
    border: none;
    outline: none;
    font-weight: 500;
    cursor: pointer;
    width: 120px;
}

/* Inicio cards clientes */

.rede-social-2{
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    margin: 0 auto;
    
}


.rede-social-2 i{
    display: inline;
    font-size: 30px;
    margin: 0 auto;
    
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    color: green;
    transition: 0.50s;
}

.rede-social-2 i:hover{
    color: lightgreen;
}
.cliente-2 .caixa{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    padding: 10px;
    flex-wrap: wrap;

}

.cliente-2{
   
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1;
    padding-bottom: 150px;
    flex-wrap: wrap;
}


.caixa .caixa2{
    display: block;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 10px;
    padding: 10px;
    width: 300px;
    height: 200px;
    border-radius: 10px;
    background-color: transparent;
    box-shadow: 0px 10px 15px green;
    border-left: 5px solid green;
    
    
}



.caixa2 .caixa-img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 120px;
    justify-items: center;
}

.caixa2 img{
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding-top: 12px ;
    
}

.caixa2 p{
    color: green;
    padding: 30px;
 
    display: block;
}

.caixa:hover{
    transform: translateY(-10px);
    transition: 1s;
}





