@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.logo{
    padding: 15px !important;
}

.logo img{
    width: 200px;
}

.banner{
    background-image: url('../../images/bg.jpg');
    
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.conteudobanner{
    position: relative;
    height: 300px !important;
}

.mulher{
    position: absolute;
    bottom: -5px;
    z-index: 1;
}

.titulobanner{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 2;
}

.titulobig{
    font-family: 'Bebas Neue', cursive;
    font-size: 50px;
    color: #00e56c;
    text-align: center;
    background-color: rgba(0, 43, 101, 0.5);
    line-height: 50px;
    padding: 10px 5px;
}

.titulosmall{
    font-size: 20px;
    color: #fff;
    text-align: center;
    position: relative;
    background-color: rgba(0, 43, 101, 0.5);
    padding: 0px 5px 10px 0;
    margin-bottom: 10px;
}

.botaobanner{
    background-color: #ff8800;
    color: #002b65;
    text-align: center;
    padding: 10px 25px;
    border-radius: 30px;
    width: 150px;
    position: relative;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    margin: 0;
    top: 20px;
    font-weight: bold;
}

.botaobanner:hover{
    background-color: #fe6000;
    color:#fff;
    cursor: pointer;
}

.linha{
    background-color: #002b65;
    height: 10px;
}

.card-content{
    height: 140px;
}

@media screen and (max-width: 600px) {
    .mulher{
        display: none;
    }
    .card-content{
        height: auto;
    }
    .titulobig{
        font-size: 30px;
    }
}