
/*SECTION BANNER*/
.sec-banner {
    position: relative;
    padding: 140px 0 70px;
}
.sec-banner .conteudo-banner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
}
.sec-banner .breadcrumb{
    margin: 22px 0 40px 0;
}
.sec-banner .breadcrumb a {
    color: #335a9c;
    text-decoration: none;
    margin-right: 30px;
    font-family: 'Karla';
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}
.sec-banner .breadcrumb a:hover {
    color: #fff;
}
.sec-banner .texto-banner {
    color: white;
    padding-right: 50px;
}
.sec-banner .texto-banner h1 {
    color: #ffb71b;
    font-family: 'Karla';
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.sec-banner .texto-banner p {
    font-size: 18px;
}
.sec-banner .img-banner {
    position: relative;
    width: 100%;
    height: 100%;
}
.sec-banner .img-banner .btn-play{
    position: relative;
    z-index: 2;
    top: calc(100% - 20px);
    left: 50px;
}
.sec-banner .img-banner .img-grande {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(40vw + 30px);
    height: calc(100% + 110px);
    max-width: 750px;
    object-fit: cover;
}
.sec-banner .botoes-banner{
    margin-top: 30px;
    align-items: center;
}
.sec-banner .botoes-banner a{
    color: #fff;
}
/* END SECTION BANNER */

.sec-conteudo-1{
    padding: 140px 0 100px;
    background-color: #E5E5E5;
}

.sec-conteudo-1 .texto{
    font-family: "Karla";
}

.sec-conteudo-1 .texto h1{
    font-weight: 600;
    margin: 0 0 10px;
}

.sec-conteudo-1 .texto p{
    font-weight: 500;
    margin: 0;
}

.sec-conteudo-1 .texto a{
    color: #07b1e9;
    text-decoration: underline;
}

.sec-conteudo-1 .itens{
    padding: 30px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.sec-conteudo-1 .itens .item{
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.sec-conteudo-1 .itens .btn-drop-faq{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: #01246d;
    font-size: 17px;
    font-weight: 700;
    font-family: "Karla";
    padding: 30px;
    outline: none;
    border: none;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

.sec-conteudo-1 .itens .btn-drop-faq span{
    width: 90%;
    text-align: left;
}

.sec-conteudo-1 .itens .btn-drop-faq i{
    transition: all 0.3s ease-in-out;
    color: #07b1e9;
}

.sec-conteudo-1 .itens .btn-drop-faq.active i{
    transform: rotate(45deg);
}

.sec-conteudo-1 .itens .content{
    max-height: 0;
    padding: 0 30px 0;
    overflow: hidden;
    font-family: "Karla";
    transition: all 0.3s ease-in-out;
}

.sec-conteudo-1 .itens .content.show{
    padding: 0 30px 30px;
    max-height: min-content;
}

.sec-conteudo-1 .itens .content *:last-child{
    margin: 0;
}

.sec-conteudo-1 .item .content p{    
    font-family: "Karla";
    font-size: 18px;
    font-weight: 500;
}

.sec-conteudo-1 .itens .carregar-mais{
    margin-top: 30px;
}

.sec-conteudo-1 #share-button{
    float: right;
}

.sec-conteudo-1 #share-button .btn-drop-share{
    color: #000;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .sec-banner{
        padding: 120px 0 50px;
    }
    .sec-banner .texto-banner{
        padding: 0;
    }
    .sec-banner .img-banner .btn-play{
        position: absolute;
        top: 215px;
        left: 32px;
    }
    .sec-banner .img-banner .img-grande{
        top: 20px;
        width: 100%;
        height: 300px;
        max-width: 850px;
    }

    .sec-conteudo-1{
        padding: 80px 0;
    }
    .sec-conteudo-1 .texto{
        padding: 0;
    }
    .sec-conteudo-1 #share-button{
        float: left;
    }

}
/* END RESPONSIVE */
