:root {
    --default-black: #2f2f2f;
    --boder-color: #dcdcdc;
    --bg-gray: #edeef0;
    --height-separator: 60px;
    --gap-height: 30px;
    --primary-color: #0f68b9;
    --primary-opose-color: #FFF;
    --bg-black: #333;
    --bg-black-50p: rgba(51,51,51,0.5);
    --footer-white: #E3E3E3;
    --footer-separator: #4b4a4a;
    --footer-social-color: #c3c3c3;
    --footer-social-border: #747577;
    --footer-gray: #96979b;
    --secundary-color: #FD7C01;
    --half-height-separator: calc(var(--height-separator)/2);
}
* {
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--default-black);
}
h1 {
    font-size: 30px;
}
h2 {
    font-size: 28px;
}
h3 {
    font-size: 26px;
}

header {
    padding: 10px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100vw;
    margin: 0 auto;
    gap: calc(var(--gap-height) / 2);
    border-bottom: 1px solid var(--boder-color);
}
header div {
    display: flex;
    align-items: center;
    gap: var(--gap-height);
}

header .descricao {
    max-width: 170px;
    font-size: 11px;
    padding-left: 30px;
    border-left: 1px solid var(--boder-color);
    letter-spacing: 0.01em;
    line-height: 150%;
    font-weight: 400;
}


section {
    max-width: 100vw;
    margin: 0 auto;
}
section.all {
    background-color: var(--bg-gray);
}

section:not(.carrossel) {
    padding: var(--height-separator) 5vw;
}
/* Carrossel */

section.carrossel {
    /* background-color: var(--bg-black); */
    min-height: calc(100vw * .5625);
    /* margin-bottom: var(--height-separator); */
}

section.carrossel .elemento {
    max-width: 100vw;
}


section.carrossel .elemento img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;

    max-width: 684px;
    max-height: 394px;

}
section.carrossel .elemento-infos {
    padding: var(--half-height-separator) 5vw;
}

section.carrossel .elemento-infos .saiba-mais {
    width: fit-content;
}

.botao {
    padding: 10px 24px;
    border-radius: 60px;
    background-color: var(--primary-color);
    color: var(--primary-opose-color);
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Dosis', sans-serif;
    font-size: 0.7em;
    border: 1px solid var(--primary-color);
}

h1, h2, h3, h4, h5, p:not(:last-child) {
    margin-bottom: var(--gap-height);
}

h1, h2, h3, h4, h5 {
    font-family: 'Dosis', sans-serif;
    text-transform: uppercase;
}

footer {
    background-color: var(--bg-black);
    display: flex;
    /* margin-top: var(--height-separator); */
    padding: var(--gap-height) 0; 
    font-size: 14px !important;
}


footer * {
    color: var(--footer-white);
}

footer div.row {
    display: flex;
    margin: 0 auto;
    width: 90vw;
    margin: 0 auto;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95em;
    gap: calc(var(--gap-height) / 3);
}

footer p {
    margin-bottom: 0 !important;
    font-family: 'Source Sans Pro', sans-serif;
    font-style: normal;
}

p {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.3em;
}

footer .column, footer address{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap-height) / 5);
}

footer .separator {
    display: none;
    width: 30px;
    height: 1px;
    background-color: var(--footer-separator);
}

.no-desk {
    display: block;
}

footer .social ul, footer .social ul li {
    list-style: none;
    display: flex;
    gap: calc( var(--gap-height) / 3);
}

footer .social ul li a {
    text-decoration: none;
}

footer .social ul li a:hover{
    color: var(--primary-opose-color);
    fill: var(--primary-opose-color);
}

footer .social ul li a:hover i {
    border-color: var(--primary-opose-color);
    color: var(--primary-opose-color);
    fill: var(--primary-opose-color);
}

footer a, footer i {
    text-decoration: none;
    font-style: normal;
}

footer .social ul li a i {
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    color: var(--footer-social-color);
    font-size: 17px;
    display: block;
    border: 2px solid var(--footer-social-border);
    border-radius: 50%;
    margin: 0 5px;
    text-decoration: none;
    transition: all .1s linear 0s;
}

footer .map {
    color: var(--footer-gray);
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
}

footer .map {
    width: fit-content;
    display: flex;
    gap: calc(var(--gap-height) / 3);
}

.copywrite {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.copywrite .copy {
    font-size: 0.8em;
    text-align: center;
}

/* User profile */
.welcome-message {
    align-self: flex-start;
    justify-content: space-between;
    width: calc(100% - 16px);
    margin: 0 8px;
}

.welcome {
    text-transform: uppercase;
    font-size: 0.7em;
    font-weight: bold;
    margin-bottom: 0px !important;
}

.welcome .user-name {
    color: var(--primary-color);
}

.welcome-message .header-actions {
    width: 100%;
    justify-content: space-between;
}
.logout {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.8em;
    color: var(--secundary-color);
}

.hamburger {
    content: url('../img/svg/hamburger.svg');
    width: 40px;
    height: 40px;
    color: var(--secundary-color);
    fill: var(--secundary-color);
}
/* Login page */

.wrapper-login {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#loginform {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-height) / 2);
}

#loginform input {
    padding: 10px;
    border: 1px solid var(--bg-black);
    border-radius: 60px;
}

#loginform input[type="submit"] {
    background-color: var(--primary-color);
    border-color:  var(--primary-color);
    color: var(--primary-opose-color);
    text-transform: uppercase;
    font-weight: bold;
}

#loginform p {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.wp-singular #loginform {
    margin-bottom: var(--gap-height);
}

/* Politica */

.politica-privacidade p {
     margin-bottom: 14px;
     text-align: justify;
}

.politica-privacidade p a {
     display: inline-block
}

.politica-privacidade ul {
     margin-left: 60px !important;
     overflow: visible;
}

.politica-privacidade ul li {
     list-style-type: disc !important;
     display: list-item;
     overflow: visible;
}

.politica-privacidade ul li:last-child {
     margin-bottom: 40px;
}

.politica-privacidade h2 {
     margin-bottom: 14px;
     text-align: justify;
     font-weight: bold;
     margin-top: 40px;
     text-transform: uppercase;
}

.politica-privacidade h2 i {
     text-transform: uppercase;
     font-weight: bold;
}

.politica-privacidade i {
     font-style: italic;
}

.politica-privacidade table {
     margin-bottom: 40px;
     margin-top: 20px;
}

.politica-privacidade table,
.politica-privacidade td,
.politica-privacidade th {
     border: 1px solid #000;
     border-collapse: collapse;
}

.politica-privacidade thead tr {
     background: #1f3864;
}

.politica-privacidade thead th {
     color: #FFF !important;
     padding: 18px 30px;
     font-weight: bold;
}

.politica-privacidade tbody td {
     padding: 18px 6px;
     vertical-align: middle;
}

.politica-privacidade tbody tr:nth-child(2n) {
     background: #f1f1f1;
}

.politica-privacidade tbody tr td:first-child {
     text-align: center;
}

.politica-privacidade table thead i {
     color: #FFF;
}

 /* slick */
.slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10px;
    margin-bottom: var(--gap-height);
}

.slick-dots li button {
    appearance: none;
    border-bottom: 1px solid var(--bg-gray);
    background: var(--bg-gray);
    color: var(--bg-gray);
    content: " " !important;
    border: none;
    width: 15px;
    height: 15px;
    border-radius: 60px;
}

.slick-dots .slick-active button {
    background-color: var(--secundary-color);
    color: var(--secundary-color);
}

 /* destaques */
.destaque .saiba-mais {
    font-size: 14px;
}

.destaque, .conteudo {
    margin-bottom: var(--gap-height);
    text-decoration: none;
    display: block;
}
.destaque  img, .conteudo img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.destaque .infos, .conteudo .infos {
    background-color: var(--bg-gray);
    padding: var(--gap-height);
    min-height: calc(var(--height-separator) * 2);
    margin-bottom: var(--gap-height);
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}
.destaque h3 {
    font-size: 19px;
    font-weight: normal;
}

.destaque .saiba-mais, .conteudo .saiba-mais {
    display: flex;
    gap: calc(var(--gap-height) / 3);
    align-items: center;
    width: fit-content;
    text-decoration: none;
}

.destaque .saiba-mais::after, .conteudo .saiba-mais::after{
    content: " ";
    background: url('../img/svg/arrow_orange.svg') no-repeat;
    width: 31px;
    height: 10px;
    display: block;
}

.conteudos {
    margin-bottom: var(--gap-height);
    gap: var(--gap-height);
    display: flex;
    flex-direction: column;
}
.conteudo, .conteudo .infos {
    margin-bottom: 0px;
}

/* menu */
.menu-menu-principal-container {
    z-index: 2;
    top: 126px;
    background-color: var(--bg-gray);
    padding: var(--half-height-separator);
    display: none;
}

.menu-menu-principal-container.active {
    height: fit-content;
    padding: var(--half-height-separator);
    opacity: 1;
}

.menu, .menu-lateral {
    list-style-type: none;
    font-weight: bold;
    text-decoration: none;
}

.menu li, .menu-lateral li {
    padding: calc(var(--gap-height) / 2);
}

.menu li a, .menu-lateral li a {
    text-decoration: none;
}

.menu li:first-child {
    border-top: 1px solid #E4E3E3;
}

.menu li:not(:last-child),  .menu-lateral li:not(:last-child) {
    border-bottom: 1px solid #E4E3E3;
}

.imagem-destaque {
    width: 100%;
    height: auto !important;
    object-fit: cover;
    display: block;
}

/* paginação */
.nav-links {
    display: flex;
    gap: calc(var(--gap-height) / 3);
    width: fit-content;
    margin: 0 auto;
}

.page-numbers {
    text-decoration: none;
}

.page-numbers.current {
    font-weight: bold;
}

.page-numbers:not(.next, .prev) {
    background-color: var(--bg-gray);
    border-radius: 60px;
    font-size: 1.2em;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.nav-links .next, .nav-links .prev {
    justify-self: center;
    align-self: center;
}

.conteudo .data {
    font-size: 0.8em
}

.conteudo h3 {
    margin-bottom: 0;
}

.breadcrumb {
    padding: var(--gap-height) 5vw;
    background: var(--bg-gray);
}

.thumbnail {
    display: flex;
    flex-direction: column;
    gap: var(--gap-height);
    margin-bottom: var(--height-separator);
}

.thumbnail a {
    color: var(--primary-color);
    text-decoration: none;
}

.actions {
    display: flex;
    gap: var(--gap-height);
    justify-content: flex-end;
    flex-direction: column;
}

.actions a {
    width: fit-content;
    margin: 0 auto
}

.botao.laranja {
    background-color: var(--secundary-color);
    border-color: var(--secundary-color);
}

.botao.vazado {
    background-color: transparent;
    color: var(--primary-color);
}

.single-post .data, .single-personalizado .data {
    margin-bottom: var(--gap-height);
}

.thumbnail img {
    width: 100%;
    height: auto;
}

.error404 .all {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--gap-height);
    flex-direction: column;
    min-height: 50vh;
}

.title {
    display: none;
}

.title h1, .titulo-mobile h1{
    font-family: 'Dosis', sans-serif;
    margin: 0;
    font-weight: 400;
    align-items: flex-end;
}

.titulo-mobile a, .title a {
    font-size: 1em;
    text-decoration: none;
}

.voltar {
    display: flex;
    gap: calc(var(--gap-height)/3);
    align-items: center;
}

.voltar::before {
    content: " ";
    display: block;
    width: calc(var(--gap-height) / 2);
    height: 10px;
    background: url('../img/svg/arrow_blue.svg') no-repeat;
    transform: rotate(180deg);
    margin-bottom: 5px;
}


.lightbox { 
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.request-personalizado { 
    background-color: #FFF;
    padding: 30px 5vw;
    max-width: calc(60vw - var(--height-separator));
    display: flex;
    flex-direction: column;
    gap: var(--gap-height);
    border: none;
    border-radius: 20px;
    position: relative;
    font-size: 16px;
}

.request-personalizado * {
    margin: 0;
}

.request-personalizado form {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-height)/4);
}

.request-personalizado form input {
    appearance: none;
    border: 1px solid #c1c1c1;
    padding: 10px 24px;
    border-radius: 60px;
    background-color: transparent;
}

.request-personalizado h2 {
    text-align: center;
}

.request-personalizado .close {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 10px;  
    display: block;
    background: url('../img/svg/close.svg') no-repeat;
    background-size: cover;
}

.request-personalizado .retorno {
    display: none;
    flex-direction: column;
    gap: calc(var(--gap-height) / 2);
}

.request-personalizado .retorno p {
    max-width: 550px;
    text-align: center;
    margin: 0;
}

.request-personalizado input[type="submit"], .request-personalizado .fechar {
    width: fit-content;
    margin: 0 auto;
}

.disabled {
    cursor: not-allowed;
}

.destaque-titulo {
    margin-bottom: 30px;
}

a.with-arrow:before {
    content: " ";
    display: block;
    width: 31px;
    height: 10px;
    float: left;
    background: url(../img/svg/arrow_orange.svg) no-repeat;
    margin-right: 12px;
    margin-top: 5px;
}

.saiba-mais {
    font-family: Dosis, sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    color: #333;
}