/*

Theme name: Site Institucional;

Theme URI: Site Modelo de Instituição, contém blog, categorias de assuntos, formulários e muito mais;

Author: Giácomo Pereira;

Author URI: https://www.endecode.com.br;

Github Theme URI: ;

Description: Website institucional, blog e empresarial;

Version: 1;

*/
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
    margin: 0;
    padding: 0;
    font-size: 1em;
    font-family: 'Dosis', 'Rubik', 'Open Sans', 'Montserrat';
    word-wrap: break-word;
}
html, body{
    width: 100%;
}

/* ///////////////////////////////////////////////////////// */
/* GLOBAIS */
/* Cores */
:root {
    --primaria: #0B4B87;
    --secundaria: #04233F;
    --terciaria: #DEBA00;

    --azul_claro: #00add8;

    --branco-primario: #FFF;
    --branco-secundario: #EFEFEF;
    --branco-terciario: #AFAFAF;

    --preto-primario: #000000;
}
/* Flex */
.container {
    margin: auto;
}
.container_paginas{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.largura_maxima{
    width: 80%;
    margin: auto;
}
.relative{
    position: relative;
}
.flex{
    display: flex;
}
.flex_left{
    display: flex;
    align-items: left;
}
.flex_center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex1{
    flex: 1;
}
.flex2{
    flex: 2;
}
.flex_grow {
    flex-grow: 1;
}
.flex_shrink {
    flex-shrink: 1;
}
.grid{
    display: grid;
}
.around{
    justify-content: space-around;
}
.between{
    justify-content: space-between;
}
.justify_left{
    justify-content: flex-start;
}
.column{
    flex-direction: column;
}
.align_center{
    align-items: center;
}
.justify_center{
    justify-content: center;
}
.left{
    align-items: flex-start;
}
.none{
    display: none;
}
.center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.espacamento_lateral_10{
    padding: 0 10px;
}
.margem_b_10{
    margin-bottom: 10px;
}
.margem_b_20{
    margin-bottom: 20px;
}
.margem_b_30{
    margin-bottom: 30px;
}
.margem_b_40{
    margin-bottom: 40px;
}
.padding_5{
    padding: 5px;
}
.padding_10{
    padding: 10px;
}
.padding_20{
    padding: 20px;
}
.padding_30{
    padding: 30px;
}
/* Largura e Altura */
.width_100{ width: 100%; }
.width_90{ width: 90%; }
.width_80{ width: 80%; }
.width_70{ width: 70%; }
.width_60{ width: 60%; }
.width_50{ width: 50%; }
.width_40{ width: 40%; }
.width_30{ width: 30%; }
.width_20{ width: 20%; }
.width_10{ width: 10%; }
.width_auto{ width: auto; }

.height_auto{ height: auto; }
.height_100{ height: 100%; }
.height_90{ height: 90%; }
.height_80{ height: 80%; }
.height_70{ height: 70%; }
.height_60{ height: 60%; }
.height_50{ height: 50%; }
.height_40{ height: 40%; }
.height_30{ height: 30%; }
.height_20{ height: 20%; }
.height_10{ height: 10%; }
/* Espaçamento */
.p_5 { padding: 5px; }
.p_10 { padding: 10px; }
.p_20 { padding: 20px; }
.p_30 { padding: 30px; }
.p_40 { padding: 40px; }
.p_50 { padding: 50px; }
.p_60 { padding: 60px; }
.p_70 { padding: 70px; }
.p_80 { padding: 80px; }
.p_90 { padding: 90px; }
.p_100 { padding: 100px; }

.pt_10 { padding-top: 10px; }
.pt_20 { padding-top: 20px; }
.pt_30 { padding-top: 30px; }
.pt_40 { padding-top: 40px; }
.pt_50 { padding-top: 50px; }
.pt_60 { padding-top: 60px; }
.pt_70 { padding-top: 70px; }
.pt_80 { padding-top: 80px; }
.pt_90 { padding-top: 90px; }
.pt_100 { padding-top: 100px; }
.pt_150 { padding-top: 150px; }

.pb_10 { padding-bottom: 10px; }
.pb_20 { padding-bottom: 20px; }
.pb_30 { padding-bottom: 30px; }
.pb_40 { padding-bottom: 40px; }
.pb_50 { padding-bottom: 50px; }
.pb_60 { padding-bottom: 60px; }
.pb_70 { padding-bottom: 70px; }
.pb_80 { padding-bottom: 80px; }
.pb_90 { padding-bottom: 90px; }
.pb_100 { padding-bottom: 100px; }
.pb_150 { padding-bottom: 150px; }

.pl_10 { padding-left: 10px; }
.pl_20 { padding-left: 20px; }
.pl_30 { padding-left: 30px; }
.pl_40 { padding-left: 40px; }
.pl_50 { padding-left: 50px; }
.pl_60 { padding-left: 60px; }
.pl_70 { padding-left: 70px; }
.pl_80 { padding-left: 80px; }
.pl_90 { padding-left: 90px; }
.pl_100 { padding-left: 100px; }

.pr_10 { padding-right: 10px; }
.pr_20 { padding-right: 20px; }
.pr_30 { padding-right: 30px; }
.pr_40 { padding-right: 40px; }
.pr_50 { padding-right: 50px; }
.pr_60 { padding-right: 60px; }
.pr_70 { padding-right: 70px; }
.pr_80 { padding-right: 80px; }
.pr_90 { padding-right: 90px; }
.pr_100 { padding-right: 100px; }

.mt_10 { margin-top: 10px; }
.mt_20 { margin-top: 20px; }
.mt_30 { margin-top: 30px; }
.mt_40 { margin-top: 40px; }
.mt_50 { margin-top: 50px; }
.mt_60 { margin-top: 60px; }
.mt_70 { margin-top: 70px; }
.mt_80 { margin-top: 80px; }
.mt_90 { margin-top: 90px; }
.mt_100 { margin-top: 100px; }

.mb_10 { margin-bottom: 10px; }
.mb_20 { margin-bottom: 20px; }
.mb_30 { margin-bottom: 30px; }
.mb_40 { margin-bottom: 40px; }
.mb_50 { margin-bottom: 50px; }
.mb_60 { margin-bottom: 60px; }
.mb_70 { margin-bottom: 70px; }
.mb_80 { margin-bottom: 80px; }
.mb_90 { margin-bottom: 90px; }
.mb_100 { margin-bottom: 100px; }

.ml_10 { margin-left: 10px; }
.ml_20 { margin-left: 20px; }
.ml_30 { margin-left: 30px; }
.ml_40 { margin-left: 40px; }
.ml_50 { margin-left: 50px; }
.ml_60 { margin-left: 60px; }
.ml_70 { margin-left: 70px; }
.ml_80 { margin-left: 80px; }
.ml_90 { margin-left: 90px; }
.ml_100 { margin-left: 100px; }

.mr_10 { margin-right: 10px; }
.mr_20 { margin-right: 20px; }
.mr_30 { margin-right: 30px; }
.mr_40 { margin-right: 40px; }
.mr_50 { margin-right: 50px; }
.mr_60 { margin-right: 60px; }
.mr_70 { margin-right: 70px; }
.mr_80 { margin-right: 80px; }
.mr_90 { margin-right: 90px; }
.mr_100 { margin-right: 100px; }

.m_10 { margin: 10px; }
.m_20 { margin: 20px; }
.m_30 { margin: 30px; }
.m_40 { margin: 40px; }
.m_50 { margin: 50px; }
.m_60 { margin: 60px; }
.m_70 { margin: 70px; }
.m_80 { margin: 80px; }
.m_90 { margin: 90px; }
.m_100 { margin: 100px; }

.radius_2 { border-radius: 2px; }
.radius_3 { border-radius: 3px; }
.radius_4 { border-radius: 4px; }
.radius_5 { border-radius: 5px; }
.radius_6 { border-radius: 6px; }
.radius_7 { border-radius: 7px; }
.radius_8 { border-radius: 8px; }
.radius_9 { border-radius: 9px; }
.radius_10 { border-radius: 10px; }
.radius_11 { border-radius: 11px; }
.radius_15 { border-radius: 15px; }
.radius_25 { border-radius: 25px; }

/* Estilos globais */
.none{ display: none; }
.block{ display: block; }
.flex{ display: flex; }

.align_center{ align-items: center; }
.align_left{ align-items: start; }
.align_right{ align-items: end; }
.align_end { align-items: flex-end; }
.align_start { align-items: flex-start; }

.justify_center{ justify-content: center; }
.justify_left{ justify-content: start; }
.justify_right{ justify-content: end; }
.justify_around{ justify-content: space-around; }
.justify_between{ justify-content: space-between; }
.justify_bottom{ justify-content: flex-end; }

.column{ flex-direction: column; }

.gap_5{ gap: 5px; }
.gap_10{ gap: 10px; }
.gap_20{ gap: 20px; }
.gap_30{ gap: 30px; }
.gap_40{ gap: 40px; }
.gap_50{ gap: 50px; }
.gap_60{ gap: 60px; }
.gap_70{ gap: 70px; }
.gap_80{ gap: 80px; }
.gap_90{ gap: 90px; }
.gap_100{ gap: 100px; }
.wrap{ flex-wrap: wrap; }

/* Bordas */
.border_1{ border: 1px solid var(--cinza_claro); }

/* Fontes */
.weight_900{ font-weight: 900; }
.weight_800{ font-weight: 800; }
.weight_700{ font-weight: 700; }
.weight_600{ font-weight: 600; }
.weight_500{ font-weight: 500; }
.weight_400{ font-weight: 400; }
.weight_300{ font-weight: 300; }
.weight_200{ font-weight: 200; }
.weight_100{ font-weight: 100; }

.quebra {
    word-break: keep-all;
}

.margin_auto{
    margin: auto;
}
/* Titulos */
.titulo_generico{
    color: #594632;
    font-size: 1.3em;
    font-weight: 600;
    line-height: 125%;
    text-transform: uppercase;
}
.linha{
    border: 2px solid black;
    padding: 0;
    margin: 0;
    margin-bottom: 50px;
    border-radius: 25px;
}
.titulo_post{
    font-size: 1.6em;
    font-weight: 800;
    color: #4C2305;
    font-family: 'Barlow';
}
/* Inputs */
input{
    border: 2px solid #aa6b0d46;
    padding: 0 15px;
}
textarea{
    border: 2px solid #aa6b0d46;
    padding: 15px;
}
.input_padrao{
    height: 40px;
    width: auto;
}
#redes a:hover{
    transform: translateY(-2px);
}

/* Botões */
button {
    border: none;
}
button:hover {
    transform: translateY(-2px);
}
.btn_padrao{
    background-color: #0B4B87;
    background: linear-gradient(to bottom, #725A37, #7e640eb0);
    color: var(--branco-primario);
    padding: 5px 20px;
    border: 2px solid #e8cb6ea8;
    border-radius: 5px;
    text-transform: uppercase;
    transition: 0.1s;
    position: relative;
}
.btn_padrao:hover{
    background-color: var(--secundaria);
    cursor: pointer;
}
.btn_relacionada{
    background-color: var(--preto-primario);
    color: var(--branco-primario);
    padding: 5px 20px;
    border: none;
    text-transform: uppercase;
    transition: 0.1s;
}
.btn_relacionada{
    background-color: var(--primaria);
}
/* Links */
.link a, a:link, a:visited{
    color: inherit;
    text-decoration: none !important;
}

/* Cores */
.cor_branca{
    background-color: var(--branco-primario);
}
/* ///////////////////////////////////////////////////////// */
/* HEADER */

/* Acessibilidade */
.acessibilidade{
    background-color: var(--preto-primario);
    color: var(--branco-primario);
    font-size: 0.9em;
}
.acessibilidade img:hover{
    cursor: pointer;
}

/* Logomarca e Nome */
.fundo_header header{
    display: grid;
    gap: 30px; /* Espaçamento entre os posts */
    grid-template-columns: repeat(3, 1fr);
    background-color: #fff;
    width: 100%;
}
.cabecalho_1{
    padding: 30px 0;
}
#logo_nome a{
    text-decoration: none;
    color: var(--preto-primario);
    display: flex;
    align-items: center;
    justify-content: center;
}
#logo_nome strong{
    font-weight: 800;
    font-size: 1.2em;
}
#logo_nome img{
    width: 110px;
    height: 130px;
}
.frase_logo{
    width: 400px;
}
/* Barra de Pesquisa */
#pesquisar{
    border: none;
    background-color: #aa6b0d46;
    color: var(--branco-primario);
    width: 40px;
    height: 40px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
#pesquisar:hover{
    cursor: pointer;
    background-color: var(--secundaria);
}
.pesquisa_input{
    border: 2px solid #aa6b0d46;
    border-top-left-radius: 15px;
    width: 200px;
    border-bottom-left-radius: 15px;
}
/* Menu */
#atras-do-menu{
    position: relative;
    z-index: 5;
    border-bottom: 4px solid #E4B98D;
    background-color: #FBEFD0;
    color: #4C2305;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    transition: 0.3s;
}
#menu{
    color: #4C2305;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    transition: 0.3s;
}
#btn-toggle{
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.line1, .line2, .line3{
    color: #000;
}
#btn-toggle div{
    width: 32px;
    height: 2px;
    background-color: var(--branco-primario);
    margin: 8px;
}
.toggle{
    display: none;
}
.nav-link{
    display: block;
    background-color: transparent;
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-link li{
    text-transform: uppercase;
    display: inline;
    padding: 15px;
    position: relative;
}
.nav-link li a{
    position: relative;
    font-size: 0.8em;
    text-decoration: none;
    color: #4C2305;
    font-weight: 700;
}
.nav-link li a:hover{
    color: var(--terciaria);
}
.nav-link .sub-menu{
    text-transform: uppercase;
    padding: 15px;
    position: absolute;
    top: 50px;
    left: 0;
    width: auto;
    border: 3px solid red;
}
.nav-link .sub-menu li{
    text-transform: uppercase;
    padding: 15px;
    position: relative;
}
.nav-link .sub-menu li a{
    position: relative;
    font-size: 0.8em;
    text-decoration: none;
    color: var(--branco-primario);
    font-weight: 500;
}
.nav-link .sub-menu li a:hover{
    color: var(--terciaria);
}

/* ///////////////////////////////////////////////////////// */
/* CONTENT-HOME */
#slides{
    width: 100%;
    background-size: cover;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: top;
}
.img_slide{
    height: 700px;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: top;
    object-fit: cover;
    object-position: center;
}
#quem_somos{
    width: 100%;
    position: relative;
}
.logo_meio{
    width: 400px;
    padding-bottom: 250px;
}
.apresent{
    background-color: #F6CBB5;
    padding: 100px 20px;
    color: #683D13;
    font-weight: 400;
    font-size: 1.2em;
}
.sub_apresent{
    max-width: 1100px;
    display: flex;
    gap: 20px;
}
.sub_apresent aside{
    margin: auto;
}
.sub_apresent aside p{
    line-height: 2em;
}
.sub_apresent aside p strong{
    font-weight: 900;
}
.sub_apresent img{
    max-width: 100%;
}
#page_home{
    width: 100%;
    position: relative;
}
.ondas_rosa_cima{
    position: absolute;
    bottom: 0;
    width: 100%;
}
.page_foto_1{
    position: absolute;
    top: 0;
    width: 100%;
}
.page_foto_2{
    width: 400px;
    position: absolute;
    bottom: 0;
    right: 0;
}
#sistemica{
    background-color: #fff;
    padding: 150px 15px;
}
.frase_1{
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    max-width: 850px;
    padding: 20px;
    margin-top: 50px;
    background-color: rgba(255, 255, 255, 0.625);
    color: #4C2305;
    font-weight: 300;
    font-size: 1.5em;
    line-height: 35px;
    text-align: center;
}
.frase_1 p {
    margin: 0;
    padding: 0;
    word-wrap: break-word;
}
.frase_1 strong{
    font-weight: 800;
    font-size: 1.1em;
}
.titulo{
    font-size: 1.4em;
    color: #4C2305;
    font-weight: 500;
    text-align: center;
    padding: 100px 0;
}
#noticias_pai{
    width: 100%;
    background: linear-gradient(to bottom, #FFEFB2, #F0DBA3);
}
#noticias{
    position: relative;
    z-index: 1;
}
.form_contato{
    font-size: 1.2em;
    width: 600px;
    color: #4C2305;
}
.titulo_contato{
    color: #4C2305;
    font-size: 1.4em;
}
.form_contato button{
    background-color: #683D14;
    border-radius: 20px;
    width: 100px;
    height: 35px;
    color: #fff;
    font-weight: 300;
    transition: 0.3s;
}
.form_contato button:hover{
    background-color: #683D13;
    cursor: pointer;
}
.form_contato textarea{
    height: 300px;
}
/* NOTÍCIAS_HOME */
#noticias_home{
    display: flex;
}
#categoria_link{
    background-color: var(--terciaria);
    width: auto;
    display: inline-block;
    padding: 5px 10px;
    font-weight: 500;
    border-top-right-radius: 7px;
    border-top-left-radius: 7px;
}
.post_pai{
    width: 33%;
}
.post_descricao{
    text-align: left;
    width: auto;
}
.post_box{
    background-color: #fff;
    border: 4px solid #eadba8;
    border-radius: 5px;
    box-shadow: 6px 6px 1px #00000036;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
    
    height: 300px;
}
.full-width {
    width: 100%;
}
.posts-container {
    display: grid;
    gap: 30px; /* Espaçamento entre os posts */
    grid-template-columns: repeat(3, 1fr);
}
.outros_posts {
    width: 48%;
    margin: 1%;
    display: inline-block;
    vertical-align: top;
}
.post_transparente{
    height: 200px;
    width: 100%;
    bottom: 0;
    position: absolute;
    z-index: 2;
    background: linear-gradient(to bottom, #00000000, #0000008b, #0000008b);
}
.post_thumb, .img_padrao{
    width: 100%;
    height: 300px;
    position: absolute;
    z-index: 1;
    top: 0;
    object-fit: cover;
}
.post_excerpt{
    font-size: 0.9em;
    padding: 0 20px;
    color: white;
    position: relative;
    z-index: 3;
}
.post_title{
    padding: 0 20px;
    margin-top: 20px;
    color: white;
    position: absolute;
    bottom: 0;
    z-index: 3;
}
.post_data{
    padding: 0 20px;
}
.post_title a{
    color: white;
    font-size: 1.3em;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 2px 2px 1px #00000072;
    transition: 0.2s;
}
.post_title a:hover{
    color: #DEBA00;
}
.post_title span{
    font-weight: 800;
    font-family: 'Barlow';
}
.post_saiba_mais{
    padding: 0 20px 20px 20px;
}
.outros_posts{
    display: flex;
    flex-direction: column;
}
/* .outros_posts .post_thumb{
    width: 100%;
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
} */
.outros_posts .post_title a{
    font-size: 0.9em;
}
.btn_todos{
    background-color: var(--primaria);
    color: var(--branco-primario);
    padding: 8px 20px;
    border: none;
    text-transform: uppercase;
    transition: 0.1s;
    margin: 30px 0;
}
.btn_todos:hover{
    cursor: pointer;
    background-color: var(--secundaria);
}
/* Quem somos */
.quem-somos{
    position: relative;
    background-color: #FEEFB6;
    padding: 100px 0;
    overflow: hidden;
    text-align: center;
}
.logo-transparente{
    position: absolute;
    right: 0;
    bottom: 0;
}
.textual{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 700px;
    color: #683D14;
    margin-left: 100px;
}
.textual .titulo-quem-somos{
    font-size: 1.8em;
    font-weight: 700;
    font-family: 'Barlow';
    text-align: center;
}
.textual p{
    padding-top: 30px;
    line-height: 30px;
    font-size: 1.1em;
    margin: 0;
}
#pessoas{
    width: auto;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
#pessoas .bloco{
    width: auto;
    background-color: #FEEFB6;
    color: #683D14;
    border-radius: 5px;
    box-shadow: 10px 10px 1px #87562c3e;
}
#pessoas .bloco .perfil{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}
#pessoas .bloco .perfil h5{
    font-weight: 700;
}
#pessoas .bloco img{
    border-radius: 20px;
    border: 4px solid #4c23051d;
}
.bloco p{
    max-width: 300px;
    font-weight: 300;
    font-size: 1.1em;
    text-align: center;
}
#empresa{
    color: #683D14;
}
#empresa aside{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 400px;
}
#empresa aside h1{
    font-weight: 700;
    font-size: 1.4em;
}
.visao{
    overflow: hidden;
    background-color: #FEEFB6;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 1.3em;
}
.missao{
    background-color: #F6DF79;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 1.3em;
}
.valores{
    background-color: #FEECB0;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 1.3em;
}
/* Serviços */
.servicos-content{
}
.servicos{
    position: relative;
    padding: 100px 0;
    color: #683D14;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.servicos h2{
    color: #725A37;
    font-weight: 600;
    font-size: 2em;
    padding: 15px;
}
.icones_servicos{
    position: relative;
    z-index: 1;
    
    opacity: 0; /* inicialmente invisível */
    transition: opacity 1.5s ease-in-out; /* transição suave de opacidade */
}
.icones_servicos.visible {
    opacity: 1; /* imagem visível */
}
.perguntas{
    width: 100%;
    background-color: #BBCCDA;
    color: #683D14;
    padding: 100px 0;
}
.perguntas h2{
    font-weight: 700;
    padding-bottom: 30px;
    font-size: 1.5em;
}
.perguntas_limite{
    margin: auto;
    max-width: 800px;
    padding: 15px;
}
.perguntas_titulo{
    color: #683D14;
    background-color: transparent;
    font-weight: 600;
    width: 100%;
    border: none;
}
.ondas_azuis{
    width: 100%;
}
.perguntas_titulo:hover{
    cursor: pointer;
}
.linhas-rede{
    opacity: 0.7;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
.linhas-rede-b{
    opacity: 0.7;
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 100%;
}
/* PAGINAS */
.texto_descritivo {
    width: auto;
}
.texto_descritivo a{
    word-wrap: break-word;
}

/* PÁGINA CATEGORY */
/* .category{
    border: 1px solid red;
} */

/* PÁGINA SINGLE */
.single{
    width: 90%;
}
.flex_post{
    display: flex;
    margin: auto;
    padding: 60px 0;
}
.thumb_post{
    height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.thumb_post_pequena{
    height: 60px;
    width: 60px;
    object-fit: cover;
    object-position: top;
}
.content{
    width: 70%;
}
.conteudo_noticia{
    font-size: 1.2em;
    line-height: 30px;
}
.sidebar_noticias{
    width: 30%;
}
.titulo_news_sidebar{
    font-size: 1.2em;
    font-weight: 600;
    color: var(--preto-primario);
}
.relacionadas_largura_total{
    width: 100%;
    margin-bottom: 30px;
}
.relacionadas_largura_total button{
    background-color: var(--primaria);
    color: var(--branco-primario);
    padding: 5px 20px;
    border: none;
    text-transform: uppercase;
    transition: 0.1s;
}
.relacionadas_largura_total button{
    background-color: var(--preto-primario);
    color: var(--branco-primario);
    padding: 5px 20px;
    border: none;
    text-transform: uppercase;
    transition: 0.1s;
}
.relacionadas_largura_total button:hover{
    cursor: pointer;
    background-color: var(--primaria);
}
.relacionada{
    background-color: #725a371a;
    border: 1px solid #a9541827;
    margin-bottom: 20px;
    padding: 10px;
}
.titulo_news_relacionada{
    word-wrap: break-word;
    font-size: 1.1em;
    font-weight: 900;
    color: #725A37;
    font-family: 'Barlow';
    overflow: hidden;
}
.relacionadas_thumb{
    width: 100px;
    height: 100%;
}
.descricao_relacionada{
    padding: 0;
    margin: 0;
    color: var(--preto-primario);
    font-size: 0.9em;
    /* display: -webkit-box;
    text-align: justify;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3em;   */  
}

/* PAGINA DE PESQUISA */
#container_search {
    flex: 1;
}
.btn_vermais {
    width: 133px;
    height: 32px;
    background: var(--terciaria);
    font-weight: 500;
}

/* POST COMPONENT */
#container_post {
    width: 100%;
    /* height: 150px; */
}

#container_post img {
    width: 100%;
    height: 100%;
}
#img_post {
    width: 150px;
}
#data_post {
    color: var(--branco-terciario);
    font-size: 0.9em;
    font-style: italic;
    font-weight: 300;
    line-height: 124.2%
}

/* FOOTER */
#footer{
    display: flex;
    flex-direction: column;
    width: 100%;
}
footer p{
    padding: 0;
    margin: 0;
}
.footer_1{
    padding: 100px 0;
    text-align: center;
    color: #594632;
}
.footer_1 h3{
    color: #594632;
    font-weight: 500;
    padding-bottom: 70px;
}
.footer_1 strong{
    color: #4C2305;
    font-size: 1.2em;
}
.footer_2{
    padding: 50px 0;
    background-color: #383838;
    color: #9e9e9e;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}
.footer_3{
    text-align: center;
    background-color: #111;
    color: #6c6c6c;
    font-size: 0.8em;
    font-weight: 300;
    padding: 10px 0;
}
.footer_2 ul{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 60px;
}

/* PAGINAÇÃO */
/* PÁGINAS ANTES E DEPOIS */
.pagination{
    justify-content: center;
    margin: 60px 0;
}
.page-numbers{
    list-style: none;
    display: flex;
    align-items: center;
}
.page-numbers li{
    padding: 10px;
}
.page-numbers li a{
    color: var(--preto-primario);
}
.page-numbers .prev,
.page-numbers .next{
    background-color: #683D13;
    color: var(--branco-primario);
    padding: 8px;
    border-radius: 5px;
}
.page-numbers .prev:hover,
.page-numbers .next:hover{
    background-color: var(--secundaria);
    color: var(--branco-primario);
    padding: 8px;
    border-radius: 5px;
    text-decoration: none;
}
.page-numbers .current{
    font-weight: 900;
    font-size: 1.2em;
}

/* ///////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////// */

/* RESPONSIVIDADE */
@media (min-width: 768px) {
    .full-width {
        width: 100%;
    }
    
    .outros_posts {
        width: calc(33.33% - 2%);
        margin: 1%;
    }
}
@media (max-width: 767px) {
    .one-third {
        width: calc(50% - 20px); /* Dois posts por linha em telas menores */
    }
}

@media only screen and (max-width: 1200px) {
    .largura_maxima{
        width: 95%;
    }
    #banner_home_img {
        width: -webkit-fill-available;
        display: flex;
        justify-content: center;
        padding: 2%;
    }

    #banner_home_text {
        flex: none;
        max-width: fit-content;
        margin-bottom: 2%;
    }
}

@media only screen and (max-width: 1100px) {
    .fundo_header header{
        flex-direction: column;
    }
    #lista_servicos {
        justify-content: center;
    }
    .single{
        width: 90%;
    }
}
@media only screen and (max-width: 1000px) {
    .cabecalho_1{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #atras-do-menu{
        height: auto;
    }
    #menu{
        text-align: left;
        flex-direction: column;
        align-items: flex-start;
    }
    .toggle{
        display: block;
        padding: 15px;
    }
    .nav-link{
        display: none;
    }
    .nav-link li{
        display: block;
        width: 100%;
    }
    
}
@media only screen and (max-width: 900px) {
    .fundo_header header{
        grid-template-columns: 1fr; /* Uma coluna ocupando toda a largura */
        grid-template-rows: auto; /* As linhas serão automáticas */
    }
    .home{
        flex-direction: column;
    }
    .historia{
        width: 100%;
    }
    .flex_post{
        flex-direction: column;
    }
    .post_bloco{
        width: 100%;
    }
    .content, .sidebar_noticias{
        width: 100%;
    }
    .menu_lat .sub-menu{
        left: 0;
        top: 55px;
        border-left: 5px solid var(--secundaria);
        border-bottom: 5px solid var(--secundaria);
    }
    .menu_home{
        width: 100%;
    }
    #menu_lateral ul{
        width: 100%;
    }
    .sub_apresent{
        flex-direction: column-reverse;
    }
    .logo-transparente{
        width: 60%;
    }
}
@media only screen and (max-width: 800px) {
    #banner_home_img img {
        width: inherit;
    }
    #noticias_home{
        flex-direction: column;
    }
    .post_pai,
    .outros_posts{
        width: 100%;
        height: auto;
    }
    .posts-container {
        grid-template-columns: repeat(2, 1fr);
    }
    #page_home{
        padding: 25px;
    }
    #pessoas .bloco{
        flex-direction: column;
    }
    .textual{
        width: 100%;
        margin: 0;
        padding: 15px;
    }
    .visao, .valores{
        flex-direction: column;
        align-items: center;
    }
    .missao{
        flex-direction: column-reverse;
        align-items: center;
    }
    .visao img, .valores img, .missao img{
        width: 60%;
    }
    #empresa aside{
        width: 100%;
    }
}
@media only screen and (max-width: 600px) {
    .img_slide{
        width: 100%;
        max-height: 300px;
    }
    .texto_descritivo .post_descricao p a{
        width: auto;
        word-wrap: break-word;
    }
    .form_contato{
        width: 100%;
        padding: 15px;
    }
}
@media only screen and (max-width: 500px) {
    .frase_logo{
        width: 95%;
    }
    #img_post {
        display: none;
    }
    .posts-container {
        grid-template-columns: 1fr;
    }
    .linhas-rede{
        position: absolute;
        top: 0;
        object-fit: cover;
    }
    .linhas-rede-b{
        position: absolute;
        bottom: 0;
        object-fit: cover;
    }
    .footer_2{
        flex-direction: column;
        padding: 15px;
        padding-top: 50px;
    }
    .footer_2 div{
        display: flex;
        flex-direction: column-reverse;
        padding-top: 50px;
    }
    .footer_2 p{
        word-break: break-all;
    }
    .footer_2 ul{
        align-items: flex-start;
        flex-direction: column-reverse;
        gap: 20px;
        padding-top: 50px;
    }
    .footer_3{
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }
}
@media only screen and (max-width: 400px) {
    .descricao_prefeitura{
        text-align: center;
    }
    .imagem_card{
        height: 80px;
    }
    .nav-link{
        display: none;
    }
    .logo_meio{
        width: 95%;
    }
    #barra_de_pesquisa form{
        width: auto;
    }
    .imgs_servicos{
        gap: 20px;
    }
    .imgs_servicos img{
        width: 100px;
    }
    .servicos{
        gap: 30px;
    }
}
@media only screen and (max-width: 300px) {
    .pesquisa_input{
        width: calc(100% - 40px);
    }
}
@media only screen and (max-width: 200px) {
    
}
@media only screen and (max-width: 100px) {

}