@charset "utf-8";
/* CSS Document */


/*LINKS INICIO*/

.chamadas{padding: 20px;}

.box .pic{
    position: relative;
    overflow: hidden;
	cursor: pointer;
}
.box .pic:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #0B0B61;
    opacity: 0;
    transition: all 0.3s ease 0s;
}
.box:hover .pic:before{
    opacity: 0.4;
}
.box .pic:after{
    content: "";
    width: 100%;
    position: absolute;
    top: -35%;
    left: -110%;
    bottom: -10%;
    background: rgba(0,155,255,0.3);
    transform: rotate(10deg);
    transition: all 0.4s ease 0s;
}
.box:hover .pic:after{
    left: -50%;
}
.box .pic img{
    width: 100%;
    height: auto;
}
.box .icon-1,
.box .icon-2{
    display: block;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    text-align: center;
    opacity: 0;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.box .icon-1{  left: 0; }
.box .icon-2{ right: 0; }
.box:hover .icon-1,
.box:hover .icon-2{
    opacity: 1;
}
.box .icon-1 a,
.box .icon-2 a{
    display: inline-block;
    font-size: 25px;
    color: #fff;
    position: relative;
    top: 47%;
}
.box .box-content{
    background: #0B0B61;
    text-align: center;
    padding: 23px 30px;
    transition: all 0.3s ease 0s;
	cursor: pointer;
}
.box:hover .box-content{
    background: #009bff;
}
.box .title{
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-top: 0;
}
.box .post{
    display: block;
    font-size: 14px;
    color: #8a8a91;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
	cursor: pointer;
}
.box:hover .post{
    color: #fff;
}
@media only screen and (max-width: 990px){
    .box{ margin-bottom: 20px; }
}




