
/*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-content-1{
    min-height: 600px;
    padding: 140px 0 100px;
    background-color: #E5E5E5;
}

.sec-content-1 .img-content{
    float: left;
    width: 340px;
    height: 340px;
    object-fit: cover;
    margin: 0 70px 30px 0;
    border: 20px solid #fff;
    box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.1);
}

.sec-content-1 .texto{
    font-family: "Karla";
    color: #000000;
}

.sec-content-1 .texto h1{
    color: #01246d;
    font-weight: 800;
    font-size: 32px;
    margin: 0 0 10px;
}

.sec-content-1 .texto p{
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
}

.sec-itens{
    padding: 30px 0 80px;
    background-color: #E5E5E5;
}

.sec-itens .itens{
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 10px;
}

.sec-itens .itens .btns{
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.sec-itens .itens .btn-menu{
    padding: 30px;
    color: #333333;
    font-weight: 700;
    font-family: "Karla";
    font-size: 18px;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    outline: none;
    border: none;
    border-bottom: 1px solid #fff;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

.sec-itens .itens .btn-menu:hover{
    color: #07b1e9;
}

.sec-itens .itens .btn-menu.active{
    color: #07b1e9;
    background-color: #fff;
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.1);
}

.sec-itens .itens .btn-menu::after{
    content: '\f061';
    position: relative;
    font-family: "Font Awesome 6 Free"; /* Nome da fonte */
    font-weight: 900;
    font-size: 20px;
    padding: 4px 7px;
    color: #07b1e9;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.sec-itens .itens .btn-menu.active::after{
    opacity: 1;
}

.sec-itens .itens .content{
    color: #000000;
    font-weight: 400;
    font-family: "Karla";
    max-height: 0;
    padding: 0 60px;
    overflow: hidden;
    background-color: #fff;
    transition: all 0.3s ease-out;
}

.sec-itens .itens .content.show {
    max-height: fit-content;
    padding: 60px;
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.1);
}

.sec-banner-pdf{
    padding: 0 0 100px;
    background-color: #E5E5E5;
}

.sec-banner-pdf .banner{
    display: flex;
    align-items: center;
    padding: 0;
    background-color: #ffb71b;
}

.sec-banner-pdf .banner .content{
    padding: 40px;
    display: grid;
    grid-template-columns: 50% 50%;
}

.sec-banner-pdf .banner .titulo-banner{
    padding-right: 40px;
    color: #01246d;
    font-weight: 800;
    font-family: "Karla";
    font-size: 35px;
    margin: 0;
}

.sec-banner-pdf .banner h1{
    color: #01246d;
    font-weight: 800;
    font-family: "Karla";
    font-size: 35px;
    margin: 0 0 5px;
}

.sec-banner-pdf .banner p{
    font-size: 18px;
    line-height: 1.3;
    color: #000000;
    font-weight: 400;
    font-family: "Karla";
}

.sec-banner-pdf .banner .btn-pdf{
    position: relative;
    margin-top: 15px;
    display: inline-block;
    font-family: "Karla";
    font-weight: 600;
    font-size: 15px;
    padding: 10px 50px 10px 20px;
    border: none;
    border-radius: 30px;
    outline: none;
    color: #01246d;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.sec-banner-pdf .banner .btn-pdf:hover{
    color: #07b1e9;
}

.sec-banner-pdf .banner .btn-pdf::after{
    content: '';
    position: absolute;
    z-index: 2;
    top: -1px;
    right: -8px;
    background: url('../imagens/svg/icon-pdf.svg') no-repeat center;
    background-size: contain;
    display: inline-block;
    width: 42px;
    height: calc(100% + 2px);
}

/* 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;
    }

    .sec-content-1{
        padding: 340px 0 10px;
    }
    .sec-content-1 .img-content{
        float: none;
        width: 100%;
        margin: 0 0 40px;
    }

    .sec-itens{
        padding: 20px 0 80px;
    }

    .sec-itens .itens .content{
        margin-top: 10px;
        padding: 0 40px;
    }
    .sec-itens .itens .content.show{
        padding: 40px;
    }

    .sec-banner-pdf .banner{
        flex-direction: column;
    }
    .sec-banner-pdf .banner .img{
        width: 100%;
    }
    .sec-banner-pdf .banner .content{
        grid-template-columns: 100%;
        padding: 30px 40px 40px;
    }
    .sec-banner-pdf .banner .titulo-banner{
        padding: 0;
        font-size: 30px;
    }
    .sec-banner-pdf .banner .texto{
        margin-top: 20px;
    }
    .sec-banner-pdf .banner .btn-pdf {
        margin-top: 10px;
    }
}
/* END RESPONSIVE */
