html {
  scroll-behavior: smooth;
}

section {
   overflow: hidden;
   overscroll-behavior: none;
}

input:focus, button:focus, textarea:focus{
    outline: none;
}

@font-face {
    font-family: "Regular";
    src: url('../fontes/GothamLight.otf');
}

.caminhadavideo {
    padding: 0 !important;
    height: 110vh;
    background-repeat: no-repeat;
    position: relative;
    text-decoration: none;
}

.caminhadavideo video {
    position: absolute;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.caminhadavideo a {
    display: block;
}

.meio {
	margin: auto;
}

.wppvoa {
    display: flex;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    padding: 10px;
    border-radius: 5px;
    position: fixed;
    z-index: 999;
    bottom: 20px;
    left: 20px;
    animation: 1.5s ease 0s infinite normal none running pisca;
}

.wppvoa.sim{
    display: none;
}

.wppvoa:hover {
    text-decoration: none;
    color: #fff;
}

.wppvoa:hover i {
    transform: rotate(360deg);
}

.wppvoa i {
    font-size: 25px;
    margin: 0 5px;
    transition: .5s;
}

@keyframes pisca{
    0% {
        -webkit-transform:scale(0.9);
        -ms-transform:scale(0.9);
        transform:scale(0.9);
        }
    70% {
        -webkit-transform:scale(1);
        -ms-transform:scale(1);
        transform:scale(1);
        box-shadow:0 0 0 25px #ffff0000;
        }
    100%{
        -webkit-transform:scale(0.9);
        -ms-transform:scale(0.9);
        transform:scale(0.9);
        box-shadow:0 0 0 0 #ffff0000;
    }
}

.header {
    position: relative;
    color: #3B2772;
    padding: 1rem 0;
    font-family: "kyrial-display-pro", sans-serif;
    font-weight: 400;
}

.header .logo img {
        max-width: 145px;
    width: 100%;
}

.header .divisao {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.header .opcoes {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header .infos {
    display: flex;
    gap: 22px;
}

.header .infos a {
    text-decoration: none;
    color: #75679C;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.header .infos a:after{
    content: '';
    position: absolute;
    right: -10px;
    width: 1px;
    height: 26px;
    background: #75679C;
}

.header .infos .abrir a:after{
    content: '';
    display: none;
}

.header .infos a img {
    width: 18px;
}

.header .botoes {
    display: flex;
    gap: 1rem;
}

.header .botoes a {
    background: #EF7E16;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: .2s;
}

.header .botoes a:hover {
    transform: scale(1.05);
}

.header .botoes .busca {
    position: relative;
    display: flex;
}

.header .botoes .busca input {
    border: 1px solid #75679C;
    padding: 8px 10px;
    border-radius: 20px;
}

.header .botoes .busca button {
    background: transparent;
    border: none;
    color: #75679C;
    position: absolute;
    right: 0;
    padding: 8px 15px;
    border-radius: 50px;
}

.header .botoes .busca button:focus{
    outline: none;
}

.header .botoes .busca button:hover {
    background: whitesmoke;
}

.header .redes ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: .5rem;
}

.header .redes ul a {
    text-decoration: none;
    color: #75679C;
    width: 40px;
    height: 40px;
    border-radius: 60px;
    border: 1px solid #75679C;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.header .redes ul a:hover {
    transform: rotate(360deg);
}

.header .abrir {
    position: relative;
}

.header .fechado{
    position: absolute;
    display: none;
    top: 19px;
    right: 0;
    left: 0;
    z-index: 99;
    background-color: #fff;
    min-width: 230px;
    padding: 20px;
    border-radius: 10px;
    gap: 1rem;
    box-shadow: 4px 4px 2px #0000002e;
}

.header .abrir:hover .fechado {
    display: block !important;
}

.header .abrir .fechado a:after {
    content: '';
    display: none;
}

.menu {
    position: relative;
    color: #fff;
    padding: 0rem 0;
    font-family: "kyrial-display-pro", sans-serif;
    font-weight: 400;
    margin-top: -30px;
}

.menu:after{
        content: '';
    display: block;
    background: #3B2772;
    width: 475px;
    height: 40px;
    position: absolute;
    top: 0;
    right: -0px;
    z-index: -1;
}

.menu nav {
    background: #3B2772;
    border-radius: 30px 0 0 0;
    padding: 8px 0px 8px 30px;
        display: flex;
    justify-content: space-between;
    width: 85%;
}

.menu nav a{
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.menu .col-md-12 {
    display: flex;
    justify-content: flex-end;
    padding: 0;
}

.menu .sub {
    position: relative;
}

.menu .sub .mega {
        position: absolute;
    top: 24px;
    right: 0;
    left: 0;
    z-index: 99;
    background-color: #fff;
    min-width: 200px;
    padding: 20px;
    border-radius: 10px;
    gap: 1rem;
    box-shadow: 4px 4px 2px #0000002e;
}

.menu .sub .mega a{
        color: #75679C;
    font-size: 14px;
    display: block;
    width: fit-content;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.menu .conhecaabre .conhecafeche{
    display: none;
}

.menu .conhecaabre:hover .conhecafeche {
    display: block;
}

.menu .servicosabre .servicosfecha{
    display: none;
}

.menu .servicosabre:hover .servicosfecha {
    display: block;
}

#benner {
    position: relative;
}

.infobanner {
        background-color: silver;
    min-height: 450px;
    padding: 4rem 0;
    display: flex;
    align-items: flex-end;
    color: #fff;
    font-family: "kyrial-display-pro", sans-serif;
}

.infobanner.banner1 {
    background-image: url('../img/banner-home-01.webp');
    background-size: cover;
    background-repeat: no-repeat;
}

.infobanner.banner1 h2 {
    font-weight: 700;
}

.infobanner.banner1 h2:after {
    content: '';
    height: 6px;
    width: 120px;
    border-radius: 10px;
    display: block;
    margin: 20px 0;
    background: #EF7E16;
}

.bemvindo {
    background-color: #EBE9F1;
    padding: 4rem 0;
    font-family: "kyrial-display-pro", sans-serif;
    color: #75679C;
    position: relative;
    overflow: hidden;
}

.bemvindo:after {
        content: '';
    width: 1px;
    height: 140px;
    background: #75679C;
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    top: 4rem;
}

.bemvindo .col-md-12 {
    display: flex;
    gap: 4rem;
}

.bemvindo .esquerda {
        width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.bemvindo .esquerda h2 {
    text-align: right;
    font-weight: 700;
    color: #3B2772;
}

.bemvindo .direita {
    width: 50%;
}

.bemvindo img.azul {
    position: absolute;
    left: 0;
    top: 0;
    animation: mover 18s infinite;
}

.bemvindo img.laranja {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 260px;
    animation: mover 20s infinite;
}

@keyframes mover {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(20px, 20px);
  }
  50% {
    transform: translate(-10px, 10px);
  }
  75% {
    transform: translate(10px, -10px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.apresenta {
    padding: 4rem 0;
    margin: 4rem 0;
    color: #75679C;
    font-family: "kyrial-display-pro", sans-serif;
}

.apresenta h2 {
    font-weight: 700;
    color: #3B2772;
}

.apresenta h2:after {
    content: '';
    height: 6px;
    width: 120px;
    border-radius: 10px;
    display: block;
    margin: 20px 0;
    background: #EF7E16;
}

.apresenta a {
    background: #EF7E16;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    display: block;
    margin: 10px 0;
    width: fit-content;
    transition: .2s;
}

.apresenta a:hover {
    text-decoration: none;
    color: #fff;
    transform: scale(1.05);
}

.apresenta .caixa {
    width: 100%;
    height: 100%
    background: silver;
    border-radius: 10px;
}

.apresenta img {
    width: 100%;
}

.ajuda {
    padding: 4rem 0;
    background: #3B2772;
    color: #fff;
    font-family: "kyrial-display-pro", sans-serif;
}

.ajuda .caixa {
        background: #EBE9F1;
    border-radius: 25px;
    padding: 40px 20px;
    margin-top: -120px;
}

.ajuda .caixa.fake {
    position: absolute;
    width: 92%;
    right: 0;
    left: 0;
    bottom: -64px;
    margin: 0 auto;
    border-radius: 25px 25px 0 0;
}

.ajuda .caixa h2 {
    color: #3B2772;
    font-weight: 700;
}

.ajuda .caixa h2:after {
    content: '';
    height: 6px;
    width: 100px;
    border-radius: 10px;
    display: block;
    margin: 20px 0;
    background: #EF7E16;
}

.ajuda .caixa p {
    color: #75679C;
}

.ajuda .grade {
    display: flex;
    flex-wrap: wrap;
}

.ajuda .grade .cada {
    width: 50%;
    min-height: 180px;
    padding: 15px 40px;
}

.ajuda .grade .cada.topo {
    border-top: 1px solid #fff;
}

.ajuda .grade .cada.direita {
    border-right: 1px solid #fff;
}

.ajuda .grade .cada h3 {
    font-weight: 700;
}

.ajuda .grade .cada h3:after {
    content: '';
    height: 4px;
    width: 80px;
    border-radius: 10px;
    display: block;
    margin: 10px 0;
    background: #EF7E16;
}

.porque {
    padding: 8rem 0 6rem;
    font-family: "kyrial-display-pro", sans-serif;
    color: #75679C;
    background-image: url('../img/foto-porquer.webp');
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: right;
}

.porque h2 {
    color: #3B2772;
    font-weight: 700;
}

.porque h2:after {
    content: '';
    height: 6px;
    width: 100px;
    border-radius: 10px;
    display: block;
    margin: 20px 0 40px;
    background: #EF7E16;
}

.porque .grade {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.porque .grade .cada {
    width: 45%;
    min-height: 160px;
    padding: 0px;
}

.porque .cada h3 {
    color: #3B2772;
    font-weight: 700;
    font-size: 20px;
}

.porque a {
    background: #EF7E16;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    display: block;
    margin: 10px 0;
    width: fit-content;
    transition: .2s;
}

.porque a:hover {
    transform: scale(1.05);
    color: #fff;
    text-decoration: none;
}

.numeros {
    padding: 4rem 0;
    font-family: "kyrial-display-pro", sans-serif;
    background: #EF7E16;
    color: #fff;
    text-align: center;
}

.numeros h2 {
    font-size: 36px;
    font-weight: 300;
}

.numeros h2 b {
    font-weight: 700;
}

.numeros h2:after {
    content: '';
    height: 6px;
    width: 100px;
    border-radius: 10px;
    display: block;
    margin: 20px auto;
    background: #3B2772;
}

.numeros .grade {
        display: flex;
    gap: 1rem;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin: 2rem 0;
}

.numeros .grade h3 {
    font-size: 14px;
}

.numeros .grade p {
    font-size: 13px;
}

.numeros .grade span {
   font-weight: 700;
   font-size: 40px;
}

.bannerfoto{
    padding: 0px !important;
}

.bannerfoto img {
    width: 100%;
}

.escolha {
    font-family: "kyrial-display-pro", sans-serif;
    color: #fff;
    padding: 0px !important;
}

.escolha .roxo {
    background: #3B2772;
}

.escolha h2 {
    font-size: 34px;
    font-weight: 300;
}

.escolha h2 b{
    font-weight: 700;
}

.escolha h2:after {
    content: '';
    height: 6px;
    width: 100px;
    border-radius: 10px;
    display: block;
    margin: 20px 0 40px;
    background: #70B52C;
}

.escolha a {
    background: #70B52C;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    display: block;
    margin: 20px 0;
    width: fit-content;
    transition: .2s;
}

.escolha a:hover {
    transform: scale(1.05);
    text-decoration: none;
    color: #fff;
}

.escolha .verde {
    background: #70B52C;
}

.escolha .verde h2:after {
    background: #3B2772;
}

.escolha .verde a {
    background: #3B2772;
}

.escolha .divisao{
    display: flex;
}

.escolha .caixa {
    width: 50%;
    padding: 8rem 8.5rem;
}

.comochegar{
    padding: 4rem 0;
    margin: 4rem 0;
    font-family: "kyrial-display-pro", sans-serif;
}

.comochegar h2 {
    color: #3B2772;
    font-weight: 700;
}

.comochegar a {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: #75679C;
    margin: 25px 0;
    width: fit-content;
}

.comochegar a:hover {
    color: #75679C;
    text-decoration: none;
}

.comochegar a img {
    width: 50px;
}

.comochegar iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: none;
}

.comochegar h2:after {
    content: '';
    height: 6px;
    width: 100px;
    border-radius: 10px;
    display: block;
    margin: 20px 0;
    background: #EF7E16;
}

.sac {
    padding: 4rem 0 0;
    font-family: "kyrial-display-pro", sans-serif;
    background: #EBE9F1;
    text-align: center;
}

.sac h3{
    color: #3B2772;
    font-weight: 700;
    font-size: 16px;
} 

.sac img {
    display: block;
    max-width: 60px;
    margin: 10px auto;
}

.sac p {
    color: #75679C;
}

.sac p a{
    text-decoration: none;
    color: #75679C;
}

.sac p a:hover {
    text-decoration: underline;
}

.sac .subir {
        width: 100%;
    padding: 2rem 0 0;
    position: relative;
    display: flex;
    align-items: center;
}

.sac .subir:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #75679C;
    position: absolute;
    z-index: 0;
}

.sac .subir a {
        background: #3B2772;
    color: #fff;
    padding: 8px 35px;
    border-radius: 30px;
    text-decoration: none;
    display: block;
    margin: 0px auto;
    width: fit-content;
    transition: .2s;
    position: relative;
    z-index: 1;
}

.sac .subir a:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.rodape {
    padding: 4rem 0;
    font-family: "kyrial-display-pro", sans-serif;
    background: #EBE9F1;
    color: #3B2772;
}

.rodape .logo img {
    display: block;
    margin: auto;
    max-width: 160px;
}

.rodape .divisao {
    display: flex;
    gap: 1rem;
}

.rodape h3 {
        font-weight: 700;
    font-size: 16px;
    display: block;
    width: fit-content;
}

.rodape nav a {
    text-decoration: none;
    color: #75679C;
    display: block;
    margin: 10px 0;
    width: fit-content;
    transition: .1s;
}

.rodape nav a:hover {
    transform: scale(1.05);
    text-decoration: underline;
}

.rodape ul.redes {
    list-style: none;
    display: flex;
    width: fit-content;
    margin: 0;
    padding: 0;
    gap: .5rem;
}

.rodape ul.redes a {
    text-decoration: none;
    color: #75679C;
    width: 40px;
    height: 40px;
    border-radius: 60px;
    border: 1px solid #75679C;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.rodape ul.redes a:hover {
    transform: rotate(360deg);
}

.rodape a.destaque {
        background: #EF7E16;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    display: block;
    margin: 20px auto;
    width: fit-content;
    transition: .2s;
}

.rodape a.destaque:hover {
    text-decoration: none;
    transform: scale(1.05);
}

.wecan {
    font-family: "kyrial-display-pro", sans-serif;
    background: #e0daf3;
    color: #3B2772;
}

.wecan p {
    padding: 10px 0;
    margin: 0;
    text-align: center;
    font-size: 14px;
}

.wecan a {
    font-family: 'Libre Franklin';
    font-weight: 700;
    color: #222;
    text-decoration: none;
    transition: 1s;
}

.wecan a:hover {
    box-shadow: inset 70px 0 0 black;
    color: #fff;
    text-decoration: none;
}

.wecan a span {
    font-family: 'Poppins';
    color: gold;
    font-size: 20px;
    line-height: 0px;
}

.capa {
    padding: 4rem 0;
    font-family: "kyrial-display-pro", sans-serif;
    background-color: #EBE9F1;
    color: #3B2772;
}

.capa.azul {
    background-image: url('../img/banner-azul.svg');
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    background-position: right;
}

.capa.laranja {
    background-image: url('../img/banner-laranja.svg');
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    background-position: right;
}

.capa.verde {
    background-image: url('../img/banner-verde.svg');
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    background-position: right;
}

.capa.padrao {
    background-image: url('../img/banner-padrao.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.capa.padrao h1:after {
    background: #009EC6;
}

.capa.laranja h1:after {
    background: #3b2772;
}

.capa.azul h1:after{
    background: #3B2772;
}

.capa.verde h1:after{
    background: #3B2772;
}

.capa h1 {
    font-weight: 700;
}

.capa h1:after {
    content: '';
    height: 6px;
    width: 100px;
    border-radius: 10px;
    display: block;
    margin: 20px 0 0;
    background: #EF7E16;
}

.sobre {
    padding: 4rem 0;
    font-family: "kyrial-display-pro", sans-serif;
    color: #75679C;
}

.sobre h2 {
    text-align: center;
    color: #3B2772;
    font-weight: 700;
}

.sobre h2 b{
    color: #EF7E16;
}

.sobre h2:after {
    content: '';
    height: 6px;
    width: 100px;
    border-radius: 10px;
    display: block;
    margin: 20px auto 40px;
    background: #EF7E16;
}

.sobre img {
    width: 100%;
    margin-bottom: 40px;
}

.numeros.cinza {
    background: #EBE9F1;
    color: #3B2772;
}

.numeros.cinza h2:after{
    background: #EF7E16;
}

.sobrefotos {
    font-family: "kyrial-display-pro", sans-serif;
    color: #fff;
    padding: .5rem 0;
}

.sobrefotos .divisao {
    display: flex;
    gap: 1rem;
}

.sobrefotos .caixa {
        padding: 2rem 4rem;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sobrefotos .caixa h2 {
    font-weight: 700;
}

.sobrefotos .image {
    width: 55%;
}

.sobrefotos .image img {
    width: 100%;
}

.sobrefotos .roxo {
    background: #3B2772;
}

.sobrefotos .roxo h2:after {
    content: '';
    height: 6px;
    width: 100px;
    border-radius: 10px;
    display: block;
    margin: 20px 0;
    background: #009EC6;
}

.sobrefotos .laranja {
    background: #EF7E16;
}

.sobrefotos .laranja h2:after {
    content: '';
    height: 6px;
    width: 100px;
    border-radius: 10px;
    display: block;
    margin: 20px 0;
    background: #3B2772;
}

.amigocrianca {
    padding: 4rem 0;
    font-family: "kyrial-display-pro", sans-serif;
    margin: 4rem 0;
    text-align: center;
}

.amigocrianca h2 {
    color: #3B2772;
    font-weight: 700;
}

.amigocrianca h2:after {
    content: '';
    height: 6px;
    width: 100px;
    border-radius: 10px;
    display: block;
    margin: 20px auto;
    background: #EF7E16;
}

.estrutura {
    font-family: "kyrial-display-pro", sans-serif;
    padding: 4rem 0;
    margin: 0rem 0;
    background: #EBE9F1;
    color: #3B2772;
}

.estrutura h2 {
    text-align: center;
    font-weight: 700;
    font-size: 40px;
}

.estrutura h2:after {
    content: '';
    height: 6px;
    width: 100px;
    border-radius: 10px;
    display: block;
    margin: 20px auto;
    background: #009EC6;
}

.estrutura h4 {
    font-weight: 700;
    font-size: 20px;
}

.estrutura ul {
    list-style-type: disclosure-closed;
}

.estrutura ul li::marker{
    color: #009EC6;
}

.fotoestrutura {
    font-family: "kyrial-display-pro", sans-serif;
    padding: 4rem 0;
}

.fotoestrutura img {
        width: 100%;
    max-width: 280px;
}

.fotoestrutura .divisao {
        display: flex;
    gap: 1rem;
    justify-content: center;
}

#estrut .carousel-control-next, #estrut .carousel-control-prev {
    position: absolute;
    top: 50%;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: fit-content;
    height: fit-content;
    padding: 10px;
    border-radius: 51px;
    background: #3B2772;
    text-align: center;
    opacity: 1;
    transition: opacity .15s ease;
}

.subirarquivo {
    padding: 4rem 0;
    font-family: "kyrial-display-pro", sans-serif;
    color: #3B2772;
}

.subirarquivo h2 {
    font-weight: 700;
}

.subirarquivo h2:after {
    content: '';
    height: 6px;
    width: 100px;
    border-radius: 10px;
    display: block;
    margin: 20px 0 0;
    background: #EF7E16;
}

.subirarquivo input {
    display: block;
    border: 1px solid #3B2772;
    padding: 8px 10px;
    border-radius: 5px;
    width: 100%;
}

.subirarquivo select {
    display: block;
    border: 1px solid #3B2772;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}

.subirarquivo button {
        background: #EF7E16;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    margin: 20px auto;
    display: block;
    width: fit-content;
    transition: .2s;
    border: none;
    transition: .1s;
}

.subirarquivo input.excluir{
        width: fit-content;
    color: #fff;
    background: #f3495a;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    margin: 0;
    transition: .1s;
}

.subirarquivo input.excluir:hover {
    background: #f36e7b;
}

.subirarquivo ul{
        padding: 0;
    display: flex;
    flex-direction: column-reverse;
}

.subirarquivo li {
        display: flex;
    gap: 1rem;
    margin: 5px 0;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.subirarquivo label {
    display: block;
    width: 30%;
    text-align: center;
}

.subirarquivo a {
    display: block;
    width: 50%;
}

.transparencia {
    padding: 4rem 0;
    font-family: "kyrial-display-pro", sans-serif;
    color: #3B2772;
}

.transparencia a.accordion {
    color: #3B2772;
    background: #EBE9F1;
    text-decoration: none;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.transparencia button {
        color: #3B2772;
    background: #EBE9F1;
    text-decoration: none;
    padding: 10px 20px;
    margin: 10px auto;
    border-radius: 5px;
    border: none;
    display: flex;
    width: 92%;
    align-items: center;
    justify-content: space-between;
}

.transparencia .collapse {
    width: 92%;
    margin: auto;
}

.transparencia a.accordion i {
    color: #EF7E16;
}

.transparencia button i {
    color: #EF7E16;
}

.transparencia a.accordion:hover {
    text-decoration: none;
}

.transparencia .panel {
    display: none;
    margin: 20px 0;
}

.transparencia ul {
    list-style: none;
}

.transparencia ul a {
    color: #75679C;
    display: block;
    width: fit-content;
    margin: 5px 0;
}

.comoajudar {
    padding: 4rem 0;
    margin: 4rem 0 0;
    font-family: "kyrial-display-pro", sans-serif;
    color: #fff;
    background: #3B2772;
    text-align: center;
}

.comoajudar h2 {
    font-weight: 700;
}

.comoajudar h2:after {
    content: '';
    height: 6px;
    width: 100px;
    border-radius: 10px;
    display: block;
    margin: 20px auto;
    background: #70B52C;
}

.comoajudar a {
    background: #70B52C;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    display: block;
    margin: 20px auto;
    width: fit-content;
    transition: .2s;
}

.comoajudar a:hover {
    text-decoration: none;
    color: #fff;
    transform: scale(1.05);
}

.conteudo {
    padding: 4rem 0;
    font-family: "kyrial-display-pro", sans-serif;
}

.conteudo .caixa {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid silver;
    display: block;
    margin-bottom: 3rem;
}

.conteudo .caixa h5{
    font-weight: 700;
    color: #009EC6;
    font-size: 18px;
}

.conteudo .caixa ul {
    list-style: none;
    padding: 0;
}

.conteudo .caixa a {
        color: #868686;
    text-decoration: none;
    transition: .1s;
    padding: 5px 15px;
    display: block;
    width: fit-content;
    position: relative;
    transition: .2s;
}

.conteudo .caixa a:hover:before {
        content: '';
    width: 4px;
    height: 101%;
    position: absolute;
    left: 0px;
    background: #009EC6;
    border-radius: 40px;
}

.conteudo .caixa a:before {
        content: '';
    width: 4px;
    height: 102%;
    position: absolute;
    left: 0px;
    background: silver;
    border-radius: 40px;
    transition: .2s;
}

.conteudo .caixa a.active:before {
        content: '';
    width: 4px;
    height: 101%;
    position: absolute;
    left: 0px;
    background: #009EC6;
    border-radius: 40px;
}

.conteudo .caixa.laranja h5 {
    color: #EF7E16;
}

.conteudo .caixa.laranja a.active:before {
    background: #EF7E16;
}

.conteudo .caixa.laranja a:hover:before {
    background: #EF7E16;
}

.conteudo .caixa.verde h5 {
    color: #70B52C;
}

.conteudo .caixa.verde a.active:before {
    background: #70B52C;
}

.conteudo .caixa.verde a:hover:before {
    background: #70B52C;
}

.conteudo img.principal {
    width: 100%;
    margin-bottom: 30px;
} 

.conteudo span {
    font-weight: 700;
    color: #009EC6;
    display: block;
}

.conteudo ul {
    padding: 0;
    list-style: none;
}

.conteudo ul.normal li {
    background: #EBE9F1;
    padding: 3px 5px;
    margin: 0 0 10px;
    width: fit-content;
}

.conteudo ul.normal li b {
    color: #009EC6;
}

.conteudo ul.risco li {
    background: #EBE9F1;
    padding: 3px 5px;
    margin: 0 0 10px;
    width: fit-content;
    color: #fff;
    width: 300px;
    max-width: 100%;
    font-weight: 600;
}

.conteudo ul.risco li.emergencia {
    background: #C1131C;

}

.conteudo ul.risco li.muitourgente {
    background: #F5811F;
}

.conteudo ul.risco li.urgente {
    background: #F2C800;
}

.conteudo ul.risco li.poucourgente {
    background: #027E3F;
}

.conteudo ul.risco li.naourgente {
    background: #00ACED;
}

.ouvidoria {
    padding: 4rem 0;
    font-family: "kyrial-display-pro", sans-serif;
}

.ouvidoria .caixa {
    background-image: url('../img/ouvidoria.webp');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 100%;
    width: 100%;
    display: block;
}

.ouvidoria input {
    padding: 10px;
    border: 1px solid silver;
    border-radius: 5px;
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.ouvidoria textarea {
    padding: 10px;
    border: 1px solid silver;
    border-radius: 5px;
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.ouvidoria button {
        background: #EF7E16;
    color: #fff;
    padding: 8px 40px;
    text-transform: uppercase;
    border-radius: 30px;
    text-decoration: none;
    display: block;
    margin: 20px 0 0;
    width: fit-content;
    border: none;
    float: right;
    transition: .2s;
}

.ouvidoria button:hover {
    transform: scale(1.05);
}

.trabalhe {
    padding: 4rem 0;
    font-family: "kyrial-display-pro", sans-serif;
}

.trabalhe h2 {
    text-align: center;
    font-weight: 700;
    color: #3B2772;
}

.trabalhe h2:after {
    content: '';
    height: 6px;
    width: 100px;
    border-radius: 10px;
    display: block;
    margin: 20px auto 0;
    background: #EF7E16;
}

.trabalhe p {
    text-align: center;
}

.trabalhe .caixa {
    background: #EBE9F1;
    padding: 4rem 2rem;
    border-radius: 20px;
}

.trabalhe input {
    padding: 10px;
    background: transparent;
    border: 1px solid #B5AECB;
    color: #B5AECB;
    border-radius: 5px;
    display: block;
    width: 100%;
    margin-bottom: 10px;
}
.trabalhe input[type="file"] {
    padding: 8px ;
    background: transparent;
    border: 1px solid #B5AECB;
    color: #B5AECB;
    border-radius: 5px;
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.trabalhe select {
    padding: 8px 10px;
    background: transparent;
    border: 1px solid #B5AECB;
    color: #B5AECB;
    border-radius: 5px;
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.trabalhe button{
        background: #EF7E16;
    color: #fff;
    padding: 8px 40px;
    text-transform: uppercase;
    border-radius: 30px;
    text-decoration: none;
    display: block;
    margin: 20px auto 0;
    width: fit-content;
    border: none;
    transition: .2s;
}

.trabalhe button:hover {
    transform: scale(1.05);
}

.popup {
    font-family: "kyrial-display-pro", sans-serif;
    text-align: center;
    color: #75679C;
    backdrop-filter: blur(20px);
}

.popup .modal-dialog {
    max-width: 665px;
}

.popup h2 {
    font-weight: 700;
    color: #3B2772;
    font-size: 28px;
    text-transform: uppercase;
}

.popup label {
    font-weight: 600;
    font-size: 16px;
}
.popup p {
    font-size: 14px;
}

.popup h4 {
    font-size: 18px;
}
.popup .pix {
    background: #EF7E16;
    color: #fff;
    padding: 8px 20px;
    border-radius: 10px;
    width: fit-content;
    margin: 0 auto 10px;
}

.popup .pix input {
    border: none;
    background: transparent;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
}

.popup .modal-body {
    padding: 2rem 2rem;
}

.login {
        display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    position: absolute;
    padding: 4rem 0;
    color: #3B2772;
}

.login img {
    display: block;
    margin: 0 auto 30px;
}

.login .login-container {
    max-width: 450px;
    margin: auto;
}

.login input[type="text"], .login input[type="password"] {
    display: block;
    border: 1px solid #3B2772;
    padding: 8px 10px;
    margin: 0 0 15px;
    border-radius: 5px;
    width: 100%;
}

.login h2 {
    font-weight: 700;
}

.login h2:after {
    content: '';
    height: 6px;
    width: 100px;
    border-radius: 10px;
    display: block;
    margin: 15px 0 30px;
    background: #EF7E16;
}

.login button {
    background: #EF7E16;
    color: #fff;
    text-transform: uppercase;
    padding: 8px 30px;
    border-radius: 30px;
    text-decoration: none;
    margin: 20px auto;
    display: block;
    width: fit-content;
    transition: .2s;
    border: none;
    transition: .1s;
}

.login button:hover{
    transform: scale(1.05);
}

.login .radio {
        display: flex;
    align-content: center;
    gap: 5px;
}

.login .radio label {
    margin: 0px;
}