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

.sessao {
    padding: 30px 30px 30px 30px;
    /* border: solid #000 1px; */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.pai_sessao {
    padding: 30px 30px 30px 30px;
    /* border: solid #000 1px; */
}

.box_texto {
    padding: 30px 30px 30px 30px;
    /* border: solid #000 1px; */
    width: 50%;
    height: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.box_img {
    padding: 0px 0px 0px 0px;
    /* border: solid #000 1px; */
    width: 40%;
    height: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.img_box {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.box_imgP {
    padding: 0px 0px 0px 0px;
    /* border: solid #000 1px; */
    width: 50%;
    height: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.img_boxP {
    width: 50%;
    height: auto;
    border-radius: 10px;
}
.titulo_box {
    text-align: center;
    width: 100%;
    font-family: 'Bebas Neue', cursive;
    font-size: 30px;
    color: #3366AA;
    letter-spacing: 1px;
    word-spacing: 5px;
}
.titulo_pagina {
    margin-top: -30px;
    text-align: center;
    width: 100%;
    font-family: 'Bebas Neue', cursive;
    font-size: 50px;
    color: #3366AA;
    letter-spacing: 1px;
    word-spacing: 5px;
}

.descricao_box {
    font-family: 'Comfortaa', cursive;
    letter-spacing: 1px;
    word-spacing: 5px;
}

span {
    font-weight: bold;
    color: #3366AA;
    margin-left: auto;
    margin-right: auto;
}

a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
}
.cargo {
    font-size: 20px;
    color: #369
    
}
.hr {
    height: 5px;
    border-radius: 5px;
    background-color: #36A;
    width: 80%;
}
.pai_hr {
    padding: 30px 0 30px 0;
    display: flex;
    justify-content: center;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

.subir {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background-color: #000;
    text-decoration: none;
}

.subir::after {
    content: "↑";
    font-size: 32px;
    font-weight: bold;
    color: aliceblue;
    transition: margin-top 250ms;
}

.subir:hover::after {
    margin-top: -8px;
    text-decoration: none;
    color: #FFF;
}
.opc {
    width: 30px !important;
    height: 30px !important;
    transition: all .5s;
    border: 1px solid transparent;
}

.opc:hover {
    border: 1px solid black;
    border-radius: 50%;
}

.pdf {
    width: 30px !important;
    height: 30px !important;
    transition: all 0.5s;
    cursor: pointer;
}
.card{
    border: none;
    background-color: transparent;
}

.pdf:hover {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}

@media screen and (max-width: 990px) {
    .box_texto {
        width: 100%;
    }

    .box_img {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 600px) {
    .pai_sessao {
        padding: 0 0 0 0;
    }

    .sessao {
        padding: 0 0 0 0;
    }
    .box_texto {
        width: 100%;
    }
    
    .box_img {
        padding: 0 10px 0 10px;
        display: block;
        width: 900%;
        margin-left: auto;
        margin-right: auto;
    }
}

.sticky-header {
    position: sticky;
    top: -10%;
    background-color: #fff; /* Optional: Set a background color for the sticky header */
    z-index: 999; /* Optional: Adjust the z-index to ensure the header stays on top */
}