/* CSS ORGANIZADO — YEES / PINK AND BRAIN */

/* ENCODE SANS — FONT FACE */
@font-face {
    font-family: 'Encode Sans';
    src: url('../fonts/EncodeSans-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Encode Sans';
    src: url('../fonts/EncodeSans-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Encode Sans';
    src: url('../fonts/EncodeSans-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Encode Sans';
    src: url('../fonts/EncodeSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Encode Sans';
    src: url('../fonts/EncodeSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Encode Sans';
    src: url('../fonts/EncodeSans-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Encode Sans';
    src: url('../fonts/EncodeSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Encode Sans';
    src: url('../fonts/EncodeSans-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Encode Sans';
    src: url('../fonts/EncodeSans-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* FONTE GLOBAL */

html, body {
    font-family: 'Encode Sans', Arial, Helvetica, sans-serif;
}

main {
	margin-top: -1px;
}

/* HEADINGS */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Encode Sans', Arial, Helvetica, sans-serif;
}

/* VARIÁVEIS CSS / TOKENS DE DESIGN */

:root {
    --roxo-main: #4F3066;
    --roxo-1: #F9F5FF;
    --roxo-2: #EDE4F7;
    --roxo-3: #D8C6E8;
    --roxo-4: #A695B4;
    --roxo-5: #82659A;
    --roxo-6: #4F3066;
    --roxo-7: #44205F;
    --roxo-8: #2B0E41;
    --roxo-9: #11041B;
    --roxo-extra-1: #efe9ff;
    --roxo-extra-2: #e6daf2;
    --gradiente-roxo: linear-gradient(90deg, #2B0E41 0%, #464348 100%);
    --gradiente-amarelo: linear-gradient(90deg, #B39358 0%, #ECC986 64.9%);
    --preto: #000000;
    --branco: #FFFFFF;
    --preto-1: #EFEFEF;
    --preto-2: #DBD7D9;
    --preto-3: #BCBBBC;
    --preto-4: #969696;
    --preto-5: #7D7B7C;
    --preto-6: #595758;
    --preto-7: #333132;
    --preto-8: #1C1B1C;
    --preto-9: #100F0F;
    --verde-agua: #0CD2BA;
    --verde-limao: #BEF103;
    --verde-whatsapp: #25D366;
    --amarelo-mostarda-claro: #ffefd1;
    --amarelo-mostarda: #FFC75D;
    --vermelho: #FF6A53;
    --bege-claro: #FFFADE;
    --bege-medio: #E8D5B5;
    --sucesso: #0CD2BA;
    --alerta: #BEF103;
    --erro: #FF6A53;
    --info: #9E60CC;
    --sucesso-bg: #E8FFFC;
    --alerta-bg: #F8FFE5;
    --erro-bg: #FFF0ED;
    --info-bg: #F9F5FF;
    --secundaria-1: #F2FFA9;
    --secundaria-2: #f9f9ff;
    --secundaria-3: #69d043;
    --secundaria-4: #f2c73a;
    --secundaria-5: #ed2797;
    --shadow-soft: 0 8px 24px rgba(16, 15, 15, 0.08);
    --shadow-medium: 0 12px 32px rgba(16, 15, 15, 0.14);
    --shadow-roxo: 0 12px 32px rgba(79, 48, 102, 0.22);
    --overlay-dark: rgba(16, 15, 15, 0.72);
    --overlay-roxo: rgba(79, 48, 102, 0.72);
    --overlay-light: rgba(255, 255, 255, 0.72);
    --container-maior: 1180px;
    --container-big: 1300px;
    --padding-container: 0 1rem;
    --container-menor: 1060px;
    --respiro: 4rem 0;
    --header-height: 120px;
    --border-radius-0125: .125rem;
    --border-radius-025: .25rem;
    --border-radius-05: .5rem;
    --border-radius-1: 1rem;
    --border-radius-2: 2rem;
    --border-radius-50: 5rem;
    --box-shadow: 0px 0px 4px rgba(16, 15, 15, 0.08);
    --box-shadow-2: 0px 0px 5px rgba(16, 15, 15, 0.14);
    --box-shadow-bottom: 0px 2px 4px rgba(16, 15, 15, 0.14);
}

/* RESET + NORMALIZE (PINK AND BRAIN) */

/* BOX SIZING / BASE */

*, *::before, *::after {
    box-sizing: border-box;
}

* {
    -webkit-font-smoothing: antialiased;
    letter-spacing: .01rem;
    word-wrap: break-word;
}

/* HTML / BODY */

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    margin: 0;
    background: var(--branco);
    transition: background-color 0.1s, color 0.2s;
    font-family: 'Encode Sans', Arial, Helvetica, sans-serif;
}

html {
    overflow-x: hidden;
}

/* HTML5 ELEMENTS */

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}

/* LINKS */

a {
    background-color: transparent;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    pointer-events: auto;
}

a:active, a:hover {
    outline: 0;
}

/* TIPOGRAFIA */

b, strong {
    font-weight: 600;
    letter-spacing: 0.01rem;
    -webkit-font-smoothing: antialiased;
}

small {
    font-size: .875rem;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* IMAGENS / MÍDIA */

img, video {
    border: 0;
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    max-width: 100%;
}

.wp-block-image {
    margin-bottom: 1.5rem;
}

.grid__card_completo figure img, .produtos__imagem_card figure img {
    background: var(--preto-1);
    object-fit: cover;
}

/* SVG */

svg:not(:root) {
    overflow: hidden;
}

/* SEPARADORES / CÓDIGO */

figure {
    margin: 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    border: none;
    margin: 1rem 0;
    border-top: 1px solid var(--preto-2);
}

pre {
    overflow: auto;
    margin: 0;
}

code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* FORMULÁRIOS */

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

.busca__campo select.js-busca-taxonomy-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    cursor: pointer;
    padding-right: 32px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%235B2B82' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px 8px;
}

button {
    overflow: visible;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

button[disabled], input[disabled] {
    cursor: default;
}

input {
    line-height: normal;
}

input[type='checkbox'], input[type='radio'] {
    box-sizing: border-box;
    padding: 0;
}

input[type="checkbox"] {
    min-width: 1.15rem;
    min-height: 1.15rem;
}

textarea {
    overflow: auto;
}

/* TOUCH / MOBILE */

a, img, input, button, label, summary, details, textarea {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none !important;
}

/* FOCO */

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

::focus {
    outline: none !important;
}

/* SELECTION */

::selection {
    background-color: var(--roxo-6);
    color: var(--branco);
}

::-moz-selection {
    background-color: var(--roxo-6);
    color: var(--branco);
}

/* TABELAS */

table {
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 2rem;
}

td, th {
    padding: 1rem 0.75rem;
}

/* RESET FINAL (LISTAS E MARGENS) */

ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, a, em, img, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, article, footer, header, nav, section, main {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

h1, h2, h3, h4, h5, h6, p, a, ul {
    font-size: 1rem;
    font-weight: normal;
}

/* AUTOFILL / SUGGEST */

input, textarea, select {
    background-color: transparent;
    color: inherit;
}

::-webkit-details-marker {
    display: none;
}

/* SCROLLBAR */

::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

::-webkit-scrollbar-thumb {
    background: var(--preto-7);
}

::-webkit-scrollbar-track {
    background: var(--preto-2);
}

.scrollbar__none::-webkit-scrollbar {
    display: none;
}

/* AUTOFILL CHROME / SAFARI */

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, textarea:-webkit-autofill, select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: var(--preto-3) !important;
    color: var(--preto-3) !important;
    caret-color: var(--preto-3);
    transition: background-color 9999s ease-in-out 0s;
}

.js .lazy__image {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.js .lazy__image.visible {
    opacity: 1;
}

.js .respiro__topo {
    padding-top: 112px;
    display: block;
}

.js .respiro__topo.aumenta__respiro {
    padding-top: 141px;
}

.js .customize-support .respiro__topo {
    padding-top: calc(141px);
}

.js .customize-support .respiro__topo.aumenta__respiro {
    padding-top: calc(129px);
}

.js .customize-support .navegacao__empreendimento {
    top: 60px !important;
}

.js .notificacao__header .respiro__topo {
	padding-top: 141px !important;
}


.respiro__section {
    padding: 4rem 0;
}

.respiro__section_big {
    padding: 6rem 0;
}

.respiro__section_metade {
    padding: 2rem 0;
}

input:not([type="range"]), textarea, select {
    width: 100%;
    font-size: .875rem;
    border: 1.5px solid var(--preto-1);
    color: var(--preto-5) !important;
    background: var(--preto-8);
    font-weight: 500;
    padding: 1.15rem 1.25rem;
    margin: 0;
    outline: none;
    border-radius: var(--border-radius-025);
}

.newsletter__form input:not([type="range"]), textarea, select {
    color: var(--preto-5) !important;
    border: none !important;
    border: 1.5px solid var(--preto-1) !important;
    border-radius: var(--border-radius-025);
    padding: .75rem 0;
    padding-left: 1rem;
}

input:not([type="range"]):hover, textarea:hover, input:not([type="range"]):focus, textarea:focus, input:focus-visible, textarea:focus-visible, select:focus, select:focus-visible, select:hover {
    background: var(--preto-8);
    border: 1.5px solid var(--branco);
}

input::placeholder {
    color: var(--preto-5) !important;
    font-weight: 400;
}

select option {
    color: var(--preto-5) !important;
    font-weight: 400;
}


.content__single {
    max-width: 910px;
}

.content__article h1 {
    color: var(--roxo-8) !important;
    display: block !important;
    font-size: 42px !important;
    margin-bottom: .875rem !important;
    line-height: 52px !important;
    font-weight: 600 !important;
    text-rendering: optimizeSpeed !important;
}

/* INÍCIO - MAPA EMBEDADO EMPREENDIMENTOS */

.section__mapafull iframe {
    border: 0;
    width: 100%;
    height: 450px;
    filter: grayscale(1);
}

/* FIM - MAPA EMBEDADO EMPREENDIMENTOS */

/* INÍCIO - TARJA WIDE ACIMA DO MENU - NOTIFICAÇÃO */

.menu__notificacao {
    position: relative;
    overflow: hidden;
    height: 30px;
}

.menu__notificacao .container__big {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.menu__notificacao span {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    min-width: 100%;
    position: relative;
}

.menu__notificacao p {
    margin: 0;
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.menu__notificacao p::-webkit-scrollbar {
    display: none;
}

.menu__notificacao #menu__notificacao_fecha {
    position: absolute;
    right: .325rem;
    top: 50%;
    transform: translateY(-50%) rotate(135deg) !important;
    z-index: 20;
    border: none;
    cursor: pointer;
}

.menu__notificacao::after, .menu__notificacao::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 72px;
    height: 100%;
    pointer-events: none;
    z-index: 15;
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, color-mix(in srgb, var(--roxo-7) 50%, transparent) 56%, var(--roxo-7) 89%);
}

.menu__notificacao::before {
    left: 0;
    width: 20px;
    background: linear-gradient( to right, color-mix(in srgb, var(--roxo-7) 90%, transparent) 0%, color-mix(in srgb, var(--roxo-7) 55%, transparent) 45%, rgba(0, 0, 0, 0) 100% );
}

/* FIM - TARJA WIDE ACIMA DO MENU - NOTIFICAÇÃO */

/* INÍCIO - MÓDULO SLIDER + DETALHES DO EMPREENDIMENTO */

.hero__slider_bottom {
	bottom: 90px;
}

.hero__home_slider .splide__arrow, .tabs_slider_section .splide__arrow, .allinclusive-slider .splide__arrow {
    border: 2px solid var(--roxo-1) !important;
    height: 2.5rem;
    width: 2.5rem;
    background: rgb(44 15 65 / 46%);
    backdrop-filter: blur(10px) saturate(180%) contrast(120%);
}

.splide__arrow svg {
	fill: var(--branco);
}

.hero__home_slider .splide__arrow svg, .tabs_slider_section .splide__arrow svg, .allinclusive-slider .splide__arrow svg {
    fill: var(--branco);
    height: 1.2em;
    width: 1.2em;
}

.picture__opacity::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
	   45deg,
	   rgb(19 3 31) 0%,
	   rgba(19, 3, 31, 0.5) 28%,
	   rgba(19, 3, 31, 0.4) 61%,
	   rgba(19, 3, 31, 0.1) 80%
	 );
    pointer-events: none;
    z-index: 1;
}

.hero-slider .splide__slide {
    position: relative;
    min-height: 320px;
    height: 580px;
    overflow: hidden;
    width: 100%;
    border-radius: .5rem;
}

.tamanho__slider_pequeno .hero-slider .splide__slide, .tamanho__slider_pequeno .hero-slider li img {
    height: 340px !important;
}

.hero-slider li img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
    border-radius: .5rem;
}

.hero-slider li::before {
   /* content: '';*/
	content: none;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: .5rem;
    background: linear-gradient( 180deg, rgba(43,39,35,0) 20%, rgba(43,39,35,0.4) 40% );
}

.hero-slider li h1, .hero-slider li h2 {
    position: absolute;
    bottom: 70px;
    left: 50px;
    z-index: 2;
    color: #F8F4EB;
    width: 45%;
}

.tag__estagio {
    top: 50px;
    left: 50px;
    padding: .35rem .875rem;
}

/* FIM - MÓDULO SLIDER + DETALHES DO EMPREENDIMENTO */

/* INÍCIO - FILTROS BUSCA DE EMPREENDIMENTOS */

.filtro__wrapper {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
}

.filtro__wrapper.active {
    display: block;
}

.filtro__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
}

.filtro__form {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    width: 540px;
    max-width: 100%;
    height: 100vh;
    overflow-y: auto;
    background: var(--branco);
    padding: 1.5em;
    box-shadow: -10px 0 30px rgba(0,0,0,.15);
	padding-bottom: 100px;
}

.filtro__close {
    position: absolute;
    top: 20px;
    right: 20px;
    border: 1px solid var(--roxo-6);
    background: transparent;
    width: 42px;
    height: 42px;
    cursor: pointer;
    font-size: 1.2em;
    border-radius: 10px;
}

.filtro__accordion {
    border-bottom: 1px solid var(--preto-1);
    padding: 20px 0;
}

.filtro__header {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0;
}

.filtro__header_left {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.filtro__icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.filtro__header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--roxo-6);
    font-weight: 500;
}

.filtro__header small {
    display: block;
    margin-top: 3px;
    color: var(--preto-5);
    font-size: 14px;
    text-align: left;
}

.filtro__arrow {
    transition: transform .3s ease;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%235B2B82' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 14px 8px;
    padding: 10px;
}

.filtro__accordion.active .filtro__arrow {
    transform: rotate(180deg);
}

.filtro__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding-left: 40px;
}

.filtro__item {
    margin-top: 18px;
}

.filtro__item label {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 15px;
    color: var(--preto-5);
    margin-bottom: 10px;
    cursor: pointer;
}

.filtro__item input[type='checkbox'] {
    width: auto;
}

.filtro__children {
    padding-left: 25px;
    margin-top: 8px;
}

.filtro__children label {
    font-size: 14px;
    color: var(--preto-5);
}

.filtro__ativo li {
    padding: 0.75rem;
    background-color: var(--roxo-3);
    color: var(--roxo-8);
    border: 1px solid var(--roxo-8);
    border-radius: 3px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.filtro__ativo li i {
    cursor: pointer;
    font-style: normal;
    font-size: 0.75rem;
    color: var(--preto-4);
    font-weight: 700;
}

/* RESULTADOS DA BUSCA DE EMPRENDIMENTOS */

.hero__menor li picture img, .hero__menor .splide__slide, .hero__menor picture img {
    max-height: 340px !important;
}

.grafismo__hero_resultados {
    left: 30%;
    bottom: 0;
    height: 300px;
    object-fit: contain;
    pointer-events: none;
}

.picture__opacity.border__radius_0_5:after {
    border-radius: .5rem;
}

.hero__resultados_content {
    bottom: 50px;
    left: 50px;
    max-width: 400px;
}

.hero__home_slider .splide__pagination__page.is-active {
    background: #e9e9e9;
    transform: scale(1);
    z-index: 1;
}

/* FIM - FILTROS BUSCA DE EMPREENDIMENTOS */

/* ESTILOS GERAIS */

* {
    color: var(--preto-8);
}

h1, h2, h3, h4, h5 {
    -webkit-font-smoothing: antialiased;
    line-height: 130%;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--preto-8);
    letter-spacing: 0.015rem;
}

h3, h4, h5 {
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 3.6rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    line-height: 3rem;
}

p {
    margin-bottom: 1.25rem;
    line-height: 150%;
    color: var(--preto-8);
}

figure>table {
    margin-bottom: 1rem;
    width: 100%;
}

.wp-block-table td, .wp-block-table th {
    border: none !important;
}

table tr {
    border-bottom: 1px solid var(--preto-7);
}

.wp-block-table th {
    color: var(--branco);
    font-weight: 600;
}

table, th, td {
    border-bottom: 1px solid var(--preto-4) !important;
    border: none;
    border-collapse: collapse;
    width: 100%;
}

figcaption {
    color: var(--preto-1);
    font-size: .875rem;
}

tr:nth-child(odd) {
    background-color: var(--roxo-1);
}

thead tr {
    background-color: var(--roxo-7) !important;
}

tfoot tr {
    background-color: #fefcf0 !important;
    font-weight: 600;
}

.wp-block-table tfoot {
    border-top: 1px solid !important;
}

.anchor { display: block; height: 6rem; margin-top: -6rem; visibility: hidden; }

time {
    line-height: 100%;
}

.is-type-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

.alerta-t { display: block; font-weight: 600; font-size: .875rem; line-height: 1.15rem; color: #F81F1F; margin-top: .25rem; }

/* CONTAINER */

.container__maior { max-width: var(--container-maior); margin: 0 auto; }
.container__menor { max-width: var(--container-menor); margin: 0 auto; padding: 0 1rem; }
.container__big { max-width: var(--container-big); margin: 0 auto; }

/* GRID BASE */

.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; }

/* COL SPANS */

.grid__1 { grid-column: span 1; }
.grid__2 { grid-column: span 2; }
.grid__3 { grid-column: span 3; }
.grid__4 { grid-column: span 4; }
.grid__5 { grid-column: span 5; }
.grid__6 { grid-column: span 6; }
.grid__7 { grid-column: span 7; }
.grid__8 { grid-column: span 8; }
.grid__9 { grid-column: span 9; }
.grid__10 { grid-column: span 10; }
.grid__11 { grid-column: span 11; }
.grid__12 { grid-column: span 12; }

/* LAYOUTS ESPECIAIS */

.grid__content_sidebar {
    grid-column: span 9;
}

.grid__sidebar {
    grid-column: span 3;
}

/* RESPONSIVIDADE */

/* PADRÕES BOOTSTRAP / UTILITÁRIOS DE CORES */

/* ROXO / MARCA — COLOR */
.pinta__roxo_main { color: var(--roxo-main) !important; }
.pinta__roxo_1 { color: var(--roxo-1) !important; }
.pinta__roxo_2 { color: var(--roxo-2) !important; }
.pinta__roxo_3 { color: var(--roxo-3) !important; }
.pinta__roxo_4 { color: var(--roxo-4) !important; }
.pinta__roxo_5 { color: var(--roxo-5) !important; }
.pinta__roxo_6 { color: var(--roxo-6) !important; }
.pinta__roxo_7 { color: var(--roxo-7) !important; }
.pinta__roxo_8 { color: var(--roxo-8) !important; }
li:hover .pinta__roxo_8_hover { color: var(--roxo-8) !important; }
.pinta__roxo_9 { color: var(--roxo-9) !important; }
.pinta__roxo_extra_1 { color: var(--roxo-extra-1) !important; }
.pinta__roxo_extra_2 { color: var(--roxo-extra-2) !important; }

/* ROXO / MARCA — BACKGROUND */
.pinta__bg_roxo_main { background-color: var(--roxo-main) !important; }
.pinta__bg_roxo_1 { background-color: var(--roxo-1) !important; }
.pinta__bg_roxo_2 { background-color: var(--roxo-2) !important; }
.pinta__bg_roxo_3 { background-color: var(--roxo-3) !important; }
.pinta__bg_roxo_4 { background-color: var(--roxo-4) !important; }
.pinta__bg_roxo_5 { background-color: var(--roxo-5) !important; }
.pinta__bg_roxo_6 { background-color: var(--roxo-6) !important; }
.pinta__bg_roxo_7 { background-color: var(--roxo-7) !important; }
.pinta__bg_roxo_8 { background-color: var(--roxo-8) !important; }
.pinta__bg_roxo_9 { background-color: var(--roxo-9) !important; }
.pinta__bg_gradiente_roxo { background: var(--gradiente-roxo) !important; }
.pinta__bg_roxo_extra_1 { background: var(--roxo-extra-1) !important; }
.pinta__bg_roxo_extra_2 { background: var(--roxo-extra-2) !important; }

/* PRETOS / CINZAS / NEUTROS — COLOR */
.pinta__preto { color: var(--preto) !important; }
.pinta__branco { color: var(--branco) !important; }
.pinta__preto_1 { color: var(--preto-1) !important; }
.pinta__preto_2 { color: var(--preto-2) !important; }
.pinta__preto_3 { color: var(--preto-3) !important; }
.pinta__preto_4 { color: var(--preto-4) !important; }
.pinta__preto_5 { color: var(--preto-5) !important; }
.pinta__preto_6 { color: var(--preto-6) !important; }
.pinta__preto_7 { color: var(--preto-7) !important; }
.pinta__preto_8 { color: var(--preto-8) !important; }
.pinta__preto_9 { color: var(--preto-9) !important; }

/* PRETOS / CINZAS / NEUTROS — BACKGROUND */
.pinta__bg_preto { background-color: var(--preto) !important; }
.pinta__bg_branco { background-color: var(--branco) !important; }
.pinta__bg_preto_1 { background-color: var(--preto-1) !important; }
.pinta__bg_preto_2 { background-color: var(--preto-2) !important; }
.pinta__bg_preto_3 { background-color: var(--preto-3) !important; }
.pinta__bg_preto_4 { background-color: var(--preto-4) !important; }
.pinta__bg_preto_5 { background-color: var(--preto-5) !important; }
.pinta__bg_preto_6 { background-color: var(--preto-6) !important; }
.pinta__bg_preto_7 { background-color: var(--preto-7) !important; }
.pinta__bg_preto_8 { background-color: var(--preto-8) !important; }
.pinta__bg_preto_9 { background-color: var(--preto-9) !important; }

/* CORES COMPLEMENTARES — COLOR */
.pinta__verde_agua { color: var(--verde-agua) !important; }
.pinta__verde_limao { color: var(--verde-limao) !important; }
.pinta__amarelo_mostarda { color: var(--amarelo-mostarda) !important; }
.pinta__amarelo_mostarda_claro { color: var(--amarelo-mostarda-claro) !important; }
.pinta__vermelho { color: var(--vermelho) !important; }
.pinta__bege_claro { color: var(--bege-claro) !important; }
.pinta__bege_medio { color: var(--bege-medio) !important; }

/* CORES COMPLEMENTARES — BACKGROUND */
.pinta__bg_verde_agua { background-color: var(--verde-agua) !important; }
.pinta__bg_verde_limao { background-color: var(--verde-limao) !important; }
.pinta__bg_amarelo_mostarda { background-color: var(--amarelo-mostarda) !important; }
.pinta__bg_amarelo_mostarda_claro { background-color: var(--amarelo-mostarda-claro) !important; }
.pinta__bg_vermelho { background-color: var(--vermelho) !important; }
.pinta__bg_bege_claro { background-color: var(--bege-claro) !important; }
.pinta__bg_bege_medio { background-color: var(--bege-medio) !important; }

/* CORES SEMÂNTICAS — COLOR */
.pinta__sucesso { color: var(--sucesso) !important; }
.pinta__alerta { color: var(--alerta) !important; }
.pinta__erro { color: var(--erro) !important; }
.pinta__info { color: var(--info) !important; }

/* CORES SEMÂNTICAS — BACKGROUND */
.pinta__bg_sucesso { background-color: var(--sucesso) !important; }
.pinta__bg_alerta { background-color: var(--alerta) !important; }
.pinta__bg_erro { background-color: var(--erro) !important; }
.pinta__bg_info { background-color: var(--info) !important; }
.pinta__bg_sucesso_light { background-color: var(--sucesso-bg) !important; }
.pinta__bg_alerta_light { background-color: var(--alerta-bg) !important; }
.pinta__bg_erro_light { background-color: var(--erro-bg) !important; }
.pinta__bg_info_light { background-color: var(--info-bg) !important; }

/* SECUNDÁRIAS — COLOR */
.pinta__secundaria_1 { color: var(--secundaria-1) !important; }
.pinta__secundaria_2 { color: var(--secundaria-2) !important; }
.pinta__secundaria_3 { color: var(--secundaria-3) !important; }
.pinta__secundaria_4 { color: var(--secundaria-4) !important; }
.pinta__secundaria_5 { color: var(--secundaria-5) !important; }

/* SECUNDÁRIAS — BACKGROUND */
.pinta__bg_secundaria_1 { background-color: var(--secundaria-1) !important; }
.pinta__bg_secundaria_2 { background-color: var(--secundaria-2) !important; }
.pinta__bg_secundaria_3 { background-color: var(--secundaria-3) !important; }
.pinta__bg_secundaria_4 { background-color: var(--secundaria-4) !important; }
.pinta__bg_secundaria_5 { background-color: var(--secundaria-5) !important; }

/* FONTES */
.font__primary { font-family: 'Encode Sans', Arial, Helvetica, sans-serif; }
.font__secundary { font-family: 'Encode Sans', Arial, Helvetica, sans-serif; }
.letter__spacing_normal { letter-spacing: normal !important; }
.letter__spacing_0_3 { letter-spacing: 0.03rem !important; }
.letter__spacing_0_7 { letter-spacing: 0.07rem; }

/* FONT SIZE SYSTEM (REM) – COMPLETO */
.fs__0_75 { font-size: .75rem !important; }
.fs__0_85 { font-size: .85rem !important; }
.fs__0_875 { font-size: .875rem !important; }
.fs__0_95 { font-size: .95rem !important; }
.fs__1 { font-size: 1rem !important; }
.fs__1_05 { font-size: 1.05rem !important; }
.fs__1_15 { font-size: 1.15rem !important; }
.fs__1_25 { font-size: 1.25rem !important; }
.fs__1_35 { font-size: 1.35rem !important; }
.fs__1_5 { font-size: 1.5rem !important; }
.fs__1_75 { font-size: 1.75rem !important; }
.fs__1_875 { font-size: 1.875rem !important; }
.fs__2 { font-size: 2rem !important; }
.fs__2_25 { font-size: 2.25rem !important; }
.fs__2_5 { font-size: 2.5rem !important; }
.fs__2_75 { font-size: 2.75rem !important; }
.fs__3 { font-size: 3rem !important; }
.fs__3_5 { font-size: 3.5rem !important; }
.fs__4 { font-size: 4rem !important; }
.fs__5 { font-size: 5rem !important; }
.fs__6 { font-size: 6rem !important; }

/* LINE HEIGHT */
.lh__normal { line-height: normal !important; }
.lh__90 { line-height: 90% !important; }
.lh__100 { line-height: 100% !important; }
.lh__110 { line-height: 110% !important; }
.lh__120 { line-height: 120% !important; }
.lh__125 { line-height: 125% !important; }
.lh__130 { line-height: 130% !important; }
.lh__140 { line-height: 140% !important; }
.lh__150 { line-height: 150% !important; }
.lh__160 { line-height: 160% !important; }
.lh__170 { line-height: 170% !important; }
.lh__175 { line-height: 175% !important; }
.lh__180 { line-height: 180% !important; }
.lh__190 { line-height: 190% !important; }
.lh__200 { line-height: 200% !important; }

/* TEXTO / ALINHAMENTO / TRANSFORMAÇÃO */
.underline { text-decoration: underline; }
.underline__hover:hover { text-decoration: underline; }
.uppercase { text-transform: uppercase !important; }
.transform__none {
    text-transform: none !important;
}
.lowercase { text-transform: lowercase !important; }
.capitalize { text-transform: capitalize !important; }
.text__left { text-align: left !important; }
.text__center { text-align: center !important; }
.text__right { text-align: right !important; }
.text__justify { text-align: justify !important; }
.text__underline { text-decoration: underline !important; }
.text__underline_auto { text-decoration: auto !important; }
.text__underline_hover:hover { text-decoration: underline !important; }
li:hover .text__underline_hover { text-decoration: underline !important; }
.link__underline:hover {
    text-decoration: underline !important;
}
.text__shadow { text-shadow: 1px 1px 3px rgba(0,0,0,0.4); }
.cursor__pointer { cursor: pointer; }

/* FONT WEIGHT */
.fw__300 { font-weight: 300 !important; }
.fw__400 { font-weight: 400 !important; }
.fw__500 { font-weight: 500 !important; }
.fw__600 { font-weight: 600 !important; }
.fw__700 { font-weight: 700 !important; }
.fw__800 { font-weight: 800 !important; }
.fw__900 { font-weight: 900 !important; }

/* DIMENSÕES / POSIÇÃO */
.w__100 { width: 100%; }
.w__95 { width: 95% !important; }
.w__90 { width: 90% !important; }
.w__auto { width: auto !important; }
.w__fit { width: fit-content !important; }
.h__100 { height: 100% !important; }
.h__fit { height: fit-content; }
.h__min { height: min-content; }
.mw__100 { max-width: 100%; }
.mw__80 { max-width: 80%; }
.mw__90 { max-width: 90%; }
.min__width_300 { min-width: 300px; }
.min__width_320 { min-width: 320px; }
.position__relative { position: relative; }
.position__absolute { position: absolute; }
.position__fixed { position: fixed; }
.aspect__ratio_1_1 { aspect-ratio: 1/1 !important; }
.aspect__ratio_3_4 { aspect-ratio: 3/4 !important; }
.aspect__ratio_4_3 { aspect-ratio: 4/3 !important; }
.aspect__ratio_16_5 { aspect-ratio: 16/5 !important; }
.aspect__ratio_16_9 { aspect-ratio: 16/9 !important; }
.aspect__ratio_16_10 { aspect-ratio: 16/10 !important; }
.aspect__ratio_16_11 { aspect-ratio: 16/11 !important; }
.z__index_1_menos { z-index: -1; }
.z__index_2_menos { z-index: -2; }
.z__index_1 { z-index: 1; }
.z__index_2 { z-index: 2; }
.z__index_3 { z-index: 3; }

/* PADDING */
.pd__container { padding: var(--padding-container); }
.pd { padding-left: 1rem !important; padding-right: 1rem !important; }
.pd__0 { padding: 0 !important; }
.pd__0_25 { padding: .25rem !important; }
.pd__0_325 { padding: .325rem !important; }
.pd__0_5 { padding: .5rem !important; }
.pd__0_75 { padding: .75rem !important; }
.pd__0_875 { padding: .875rem !important; }
.pd__1 { padding: 1rem !important; }
.pd__1_25 { padding: 1.25rem !important; }
.pd__1_5 { padding: 1.5rem !important; }
.pd__1_75 { padding: 1.75rem !important; }
.pd__1_875 { padding: 1.875rem !important; }
.pd__2 { padding: 2rem !important; }
.pd__2_5 { padding: 2.5rem !important; }
.pd__3 { padding: 3rem !important; }
.pd__4 { padding: 4rem !important; }
.pt__0 { padding-top: 0 !important; }
.pt__0_25 { padding-top: .25rem !important; }
.pt__0_5 { padding-top: .5rem !important; }
.pt__0_75 { padding-top: .75rem !important; }
.pt__0_875 { padding-top: .875rem !important; }
.pt__1 { padding-top: 1rem !important; }
.pt__1_25 { padding-top: 1.25rem !important; }
.pt__1_5 { padding-top: 1.5rem !important; }
.pt__1_75 { padding-top: 1.75rem !important; }
.pt__1_875 { padding-top: 1.875rem !important; }
.pt__2 { padding-top: 2rem !important; }
.pt__2_5 { padding-top: 2.5rem !important; }
.pt__3 { padding-top: 3rem !important; }
.pt__3_5 { padding-top: 3.5rem !important; }
.pt__4 { padding-top: 4rem !important; }
.pr__0 { padding-right: 0 !important; }
.pr__0_25 { padding-right: .25rem !important; }
.pr__0_5 { padding-right: .5rem !important; }
.pr__0_75 { padding-right: .75rem !important; }
.pr__0_875 { padding-right: .875rem !important; }
.pr__1 { padding-right: 1rem !important; }
.pr__1_25 { padding-right: 1.25rem !important; }
.pr__1_5 { padding-right: 1.5rem !important; }
.pr__2 { padding-right: 2rem !important; }
.pr__2_5 { padding-right: 2.5rem !important; }
.pr__3 { padding-right: 3rem !important; }
.pr__4 { padding-right: 4rem !important; }
.pb__0 { padding-bottom: 0 !important; }
.pb__0_25 { padding-bottom: .25rem !important; }
.pb__0_5 { padding-bottom: .5rem !important; }
.pb__0_75 { padding-bottom: .75rem !important; }
.pb__1 { padding-bottom: 1rem !important; }
.pb__1_25 { padding-bottom: 1.25rem !important; }
.pb__1_5 { padding-bottom: 1.5rem !important; }
.pb__2 { padding-bottom: 2rem !important; }
.pb__3 { padding-bottom: 3rem !important; }
.pb__4 { padding-bottom: 4rem !important; }
.pl__0 { padding-left: 0 !important; }
.pl__0_25 { padding-left: .25rem !important; }
.pl__0_5 { padding-left: .5rem !important; }
.pl__0_75 { padding-left: .75rem !important; }
.pl__0_875 { padding-left: .875rem !important; }
.pl__1 { padding-left: 1rem !important; }
.pl__1_25 { padding-left: 1.25rem !important; }
.pl__1_5 { padding-left: 1.5rem !important; }
.pl__2 { padding-left: 2rem !important; }
.pl__2_5 { padding-left: 2.5rem !important; }
.pl__3 { padding-left: 3rem !important; }
.pl__4 { padding-left: 4rem !important; }
.mg__auto { margin: 0 auto; }
img.aligncenter { margin: 0 auto; }
.mg__0 { margin: 0 !important; }
.mg__0_125 { margin: .125rem !important; }
.mg__0_25 { margin: .25rem !important; }
.mg__0_5 { margin: .5rem !important; }
.mg__0_75 { margin: .75rem !important; }
.mg__0_875 { margin: .875rem !important; }
.mg__1 { margin: 1rem !important; }
.mg__1_25 { margin: 1.25rem !important; }
.mg__1_5 { margin: 1.5rem !important; }
.mg__1_75 { margin: 1.75rem !important; }
.mg__1_875 { margin: 1.875rem !important; }
.mg__2 { margin: 2rem !important; }
.mg__2_5 { margin: 2.5rem !important; }
.mg__3 { margin: 3rem !important; }
.mg__4 { margin: 4rem !important; }
.mt__0 { margin-top: 0 !important; }
.mt__0_25 { margin-top: .25rem !important; }
.mt__0_5 { margin-top: .5rem !important; }
.mt__0_75 { margin-top: .75rem !important; }
.mt__0_875 { margin-top: .875rem !important; }
.mt__1 { margin-top: 1rem !important; }
.mt__1_25 { margin-top: 1.25rem !important; }
.mt__1_5 { margin-top: 1.5rem !important; }
.mt__1_75 { margin-top: 1.75rem !important; }
.mt__1_875 { margin-top: 1.875rem !important; }
.mt__2 { margin-top: 2rem !important; }
.mt__2_5 { margin-top: 2.5rem !important; }
.mt__3 { margin-top: 3rem !important; }
.mt__4 { margin-top: 4rem !important; }
.mr__0 { margin-right: 0 !important; }
.mr__0_15 { margin-right: .15rem !important; }
.mr__0_25 { margin-right: .25rem !important; }
.mr__0_5 { margin-right: .5rem !important; }
.mr__0_75 { margin-right: .75rem !important; }
.mr__0_875 { margin-right: .875rem !important; }
.mr__1 { margin-right: 1rem !important; }
.mr__1_25 { margin-right: 1.25rem !important; }
.mr__1_5 { margin-right: 1.5rem !important; }
.mr__1_75 { margin-right: 1.75rem !important; }
.mr__1_875 { margin-right: 1.875rem !important; }
.mr__2 { margin-right: 2rem !important; }
.mr__2_5 { margin-right: 2.5rem !important; }
.mr__3 { margin-right: 3rem !important; }
.mr__4 { margin-right: 4rem !important; }
.mb__0 { margin-bottom: 0 !important; }
.mb__0_15 { margin-bottom: .15rem !important; }
.mb__0_25 { margin-bottom: .25rem !important; }
.mb__0_325 { margin-bottom: .325rem !important; }
.mb__0_5 { margin-bottom: .5rem !important; }
.mb__0_75 { margin-bottom: .75rem !important; }
.mb__0_875 { margin-bottom: .875rem !important; }
.mb__1 { margin-bottom: 1rem !important; }
.mb__1_25 { margin-bottom: 1.25rem !important; }
.mb__1_5 { margin-bottom: 1.5rem !important; }
.mb__1_75 { margin-bottom: 1.75rem !important; }
.mb__1_875 { margin-bottom: 1.875rem !important; }
.mb__2 { margin-bottom: 2rem !important; }
.mb__2_5 { margin-bottom: 2.5rem !important; }
.mb__3 { margin-bottom: 3rem !important; }
.mb__4 { margin-bottom: 4rem !important; }
.ml__0 { margin-left: 0 !important; }
.ml__0_25 { margin-left: .25rem !important; }
.ml__0_5 { margin-left: .5rem !important; }
.ml__0_75 { margin-left: .75rem !important; }
.ml__0_875 { margin-left: .875rem !important; }
.ml__1 { margin-left: 1rem !important; }
.ml__1_25 { margin-left: 1.25rem !important; }
.ml__1_5 { margin-left: 1.5rem !important; }
.ml__1_75 { margin-left: 1.75rem !important; }
.ml__1_875 { margin-left: 1.875rem !important; }
.ml__2 { margin-left: 2rem !important; }
.ml__2_5 { margin-left: 2.5rem !important; }
.ml__3 { margin-left: 3rem !important; }
.ml__4 { margin-left: 4rem !important; }

/* DISPLAY / FLEX / GRID / GAP */
.display__block { display: block !important; }
.display__inline { display: inline !important; }
.display__inline_block { display: inline-block !important; }
.display__none { display: none !important; }
.display__flex { display: flex !important; }
.display__inline_flex { display: inline-flex !important; }
.flex__direction_row { flex-direction: row !important; }
.flex__direction_row_reverse { flex-direction: row-reverse !important; }
.flex__direction_col { flex-direction: column !important; }
.flex__direction_col_reverse { flex-direction: column-reverse !important; }
.flex__wrap { flex-wrap: wrap !important; }
.flex__nowrap { flex-wrap: nowrap !important; }
.flex__wrap_reverse { flex-wrap: wrap-reverse !important; }
.flex__grow_0 { flex-grow: 0 !important; }
.flex__grow_1 { flex-grow: 1 !important; }
.flex__shrink_0 { flex-shrink: 0 !important; }
.flex__shrink_1 { flex-shrink: 1 !important; }
.flex__basis_10 { flex-basis: 10% !important; }
.flex__basis_20 { flex-basis: 20% !important; }
.flex__basis_25 { flex-basis: 25% !important; }
.flex__basis_30 { flex-basis: 30% !important; }
.flex__basis_33 { flex-basis: 33.333% !important; }
.flex__basis_40 { flex-basis: 40% !important; }
.flex__basis_50 { flex-basis: 50% !important; }
.flex__basis_60 { flex-basis: 60% !important; }
.flex__basis_66 { flex-basis: 66.666% !important; }
.flex__basis_70 { flex-basis: 70% !important; }
.flex__basis_75 { flex-basis: 75% !important; }
.flex__basis_80 { flex-basis: 80% !important; }
.flex__basis_90 { flex-basis: 90% !important; }
.flex__basis_100 { flex-basis: 100% !important; }
.justify__start { justify-content: flex-start !important; }
.justify__end { justify-content: flex-end !important; }
.justify__center { justify-content: center !important; }
.justify__between { justify-content: space-between !important; }
.justify__around { justify-content: space-around !important; }
.justify__evenly { justify-content: space-evenly !important; }
.justify__self_start { justify-self: start !important; }
.justify__self_end { justify-self: end !important; }
.justify__items_center { justify-items: center !important; }
.align__start { align-items: flex-start !important; }
.align__end { align-items: flex-end !important; }
.align__center { align-items: center !important; }
.align__baseline { align-items: baseline !important; }
.align__stretch { align-items: stretch !important; }
.align__self_center { align-self: center !important; }

/* GRID */
.display__grid { display: grid !important; }
.display__inline-grid { display: inline-grid !important; }
.grid__cols_repeat_1 { grid-template-columns: repeat(1, 1fr) !important; }
.grid__cols_repeat_2 { grid-template-columns: repeat(2, 1fr) !important; }
.grid__cols_repeat_3 { grid-template-columns: repeat(3, 1fr) !important; }
.grid__cols_repeat_3_auto { grid-template-columns: repeat(3, auto) !important; }
.grid__cols_repeat_4 { grid-template-columns: repeat(4, 1fr) !important; }
.grid__cols_repeat_5 { grid-template-columns: repeat(5, 1fr) !important; }
.grid__cols_repeat_6 { grid-template-columns: repeat(6, 1fr) !important; }
.grid__cols_repeat_12 { grid-template-columns: repeat(12, 1fr) !important; }
.grid__cols_1fr_2fr { grid-template-columns: minmax(110px, 1fr) 2fr !important; }
.grid__cols_0_3fr_1fr { grid-template-columns: minmax(110px, .3fr) 1fr !important; }
.grid__cols_0_4fr_1fr { grid-template-columns: minmax(110px, .4fr) 1fr !important; }
.grid__cols_1fr_0_3fr { grid-template-columns: minmax(110px, 1fr) .3fr !important; }
.grid__cols_1fr_0_4fr { grid-template-columns: minmax(110px, 1fr) .4fr !important; }
.grid__cols_1fr_0_75fr { grid-template-columns: minmax(110px, 1fr) .75fr !important; }
.grid__cols_0_5fr_1fr { grid-template-columns: minmax(110px, .5fr) 1fr !important; }
.grid__cols_0_6fr_1fr { grid-template-columns: minmax(110px, .6fr) 1fr !important; }
.grid__cols_0_75fr_1fr { grid-template-columns: minmax(110px, .75fr) 1fr !important; }
.grid__cols_0_875fr_1fr { grid-template-columns: minmax(110px, .875fr) 1fr !important; }
.grid__cols_2fr_1fr { grid-template-columns: minmax(110px, 2fr) 1fr !important; }
.grid__cols_auto_1fr { grid-template-columns: auto 1fr !important; }
.grid__cols_1fr_auto { grid-template-columns: minmax(110px, 1fr) auto !important; }
.grid__cols_200_1fr { grid-template-columns: minmax(110px, 200px) 1fr !important; }
.grid__cols_auto_fit_250 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important; }
.grid__auto_cols_min { grid-auto-columns: min-content !important; }
.grid__auto_cols_max { grid-auto-columns: max-content !important; }
.grid__auto_cols_fr { grid-auto-columns: 1fr !important; }
.grid__auto_rows_min { grid-auto-rows: min-content !important; }
.grid__auto_rows_max { grid-auto-rows: max-content !important; }
.grid__auto_rows_fr { grid-auto-rows: 1fr !important; }
.gap__0_15 { gap: .15rem !important; }
.gap__0_25 { gap: .25rem !important; }
.gap__0_325 { gap: .325rem !important; }
.gap__0_5 { gap: .5rem !important; }
.gap__0_75 { gap: .75rem !important; }
.gap__0_875 { gap: .875rem !important; }
.gap__1 { gap: 1rem !important; }
.gap__1_15 { gap: 1.15rem !important; }
.gap__1_25 { gap: 1.25rem !important; }
.gap__1_5 { gap: 1.5rem !important; }
.gap__1_75 { gap: 1.75rem !important; }
.gap__2 { gap: 2rem !important; }
.gap__3 { gap: 3rem !important; }
.gap__4 { gap: 4rem !important; }
.order__1 { order: 1; }
.order__2 { order: 2; }
.order__3 { order: 3; }
.order__4 { order: 4; }

/* TABELA */
.display__table { display: table !important; }
.display__table-row { display: table-row !important; }
.display__table-cell { display: table-cell !important; }

/* IMAGENS E VIDEOS AJUSTES */
.object__fit_cover { object-fit: cover; }
.object__fit_contain { object-fit: contain; }

/* BORDAS */
.border__radius_0 { border-radius: 0; }
.border__radius_0_125 { border-radius: 0.125rem; }
.border__radius_0_25 { border-radius: 0.25rem; }
.border__radius_0_5 { border-radius: 0.5rem; }
.border__radius_0_75 { border-radius: 0.75rem; }
.border__radius_1 { border-radius: 1rem; }
.border__radius_1_25 { border-radius: 1.25rem; }
.border__radius_1_5 { border-radius: 1.5rem; }
.border__radius_2 { border-radius: 2rem; }
.border__radius_3 { border-radius: 3rem; }
.border__radius_100 { border-radius: 100px; }
.border__radius_bottom_left { border-bottom-left-radius: 0; }
.border__radius_bottom_right { border-bottom-right-radius: 0; }
.border__radius_top_left { border-top-left-radius: 0; }
.border__radius_top_right { border-top-right-radius: 0; }
.border__radius_full { border-radius: 9999px !important; }
.border__radius_circle { border-radius: 50% !important; }
.border__none { border: none !important; }
.border__top_none { border-top: none !important; }
.border__right_none { border-right: none !important; }
.border__bottom_none { border-bottom: none !important; }
.border__left_none { border-left: none !important; }

/* LINE CLAMP / TEXTO LONGO */
.line__clamp { overflow: hidden !important; text-overflow: ellipsis !important; display: -webkit-box; -webkit-box-orient: vertical !important; }
.line__clamp_1 { -webkit-line-clamp: 1 !important; }
.line__clamp_2 { -webkit-line-clamp: 2 !important; }
.line__clamp_3 { -webkit-line-clamp: 3 !important; }
.line__clamp_4 { -webkit-line-clamp: 4 !important; }
.line__clamp_5 { -webkit-line-clamp: 5 !important; }
.line__clamp_6 { -webkit-line-clamp: 6 !important; }
.line__clamp_7 { -webkit-line-clamp: 7 !important; }
.line__clamp_8 { -webkit-line-clamp: 8 !important; }
.line__clamp_9 { -webkit-line-clamp: 9 !important; }
.line__clamp_10 { -webkit-line-clamp: 10 !important; }
.line__clamp_none { display: block !important; overflow: visible !important; text-overflow: initial !important; -webkit-line-clamp: unset !important; -webkit-box-orient: unset !important; }
.text__uma_linha { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }

/* QUEBRA / COLUNAS */
.nowrap { white-space: nowrap !important; }
.pre__wrap { white-space: pre-wrap !important; }
.pre__line { white-space: pre-line !important; }
.break__word { word-break: break-word !important; }
.break__all { word-break: break-all !important; }
.keep__all { word-break: keep-all !important; }
.ellipsis { overflow: hidden !important; text-overflow: ellipsis !important; white-space: nowrap !important; }
.text__truncate { overflow: hidden !important; text-overflow: ellipsis !important; white-space: nowrap !important; display: block !important; }
.column__count_2 { column-count: 2; }
.column__count_3 { column-count: 3; }
.column__count_4 { column-count: 4; }
.column__gap_0 { column-gap: 0; }
.column__gap_1 { column-gap: 1rem; }
.column__gap_2 { column-gap: 2rem; }
.column__gap__3 { column-gap: 3rem; }
.column__reset { column-count: initial; column-gap: normal; }
.break__inside { -webkit-column-break-inside: avoid; page-break-inside: avoid; break-inside: avoid-column; margin-bottom: 1rem; }
.break__inside_none { -webkit-column-break-inside: auto; page-break-inside: auto; break-inside: auto; }
.overflow__hidden { overflow: hidden; }

/* BORDER PADRÃO E BOX SHADOW */
.border__padrao { border: 1.5px solid var(--preto-1); }
.box__shadow {
    box-shadow: var(--box-shadow);
    transition: .2s ease;
}
.box__shadow_top_none {
    box-shadow: var(--box-shadow-bottom);
}
.box__shadow_hover:hover {
    box-shadow: var(--box-shadow-2);
}
.overflow__y_scroll { overflow-y: scroll; }
.overflow__x_scroll { overflow-x: scroll; }
.link__ver_mais.text__underline:hover {
    color: var(--roxo-6);
}
.link__ver_mais svg {
    flex-shrink: 0;
}
.meta__views, .meta__info_author, .meta__info_author time, .meta__info_author strong, .meta__info_author span {
    font-size: .75rem;
    color: var(--preto-7);
    font-weight: 500;
    line-height: 130%;
    text-align: end;
}
.img__sepia figure img {
    filter: sepia(0.2);
    transition: .2s ease;
}
.img__sepia li:hover figure img {
    filter: sepia(0);
    transform: scale(1.05);
}
@keyframes moveArrow {
  0% {
      transform: translateX(0);
  }
  50% {
      transform: translateX(5px);
  }
  100% {
      transform: translateX(0);
  }
}
.link__ver_mais img, .link__ver_mais svg {
    transition: transform 0.2s ease;
}
.link__ver_mais:hover img, .link__ver_mais:hover svg {
    transform: rotate(90deg) scale(1.15);
    text-decoration: unverline;
}
.link__ver_mais:hover span {
    text-decoration: underline;
}
.text_chapeu {
    color: var(--roxo-5);
    width: fit-content;
    font-weight: 600;
    font-size: .875rem;
    line-height: normal;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.espacador:after {
    content: '';
    width: 3.25rem;
    height: 2px;
    display: block;
    margin: .5rem auto 0 auto;
    background-color: var(--roxo-6);
    transition: width 0.2s ease-in-out;
}
.espacador__left:after {
    margin: .5rem 0 0 0;
}
.espacador__center_mob:after {
    margin: .5rem auto 0 auto !important;
}
.espacador__branco:after {
    background: var(--branco);
}
.espacador__amarelo:after {
    background: var(--amarelo-mostarda);
}
.espacador__titulo:after {
    margin: .5rem 0 0 0;
    width: 2.25rem;
    height: 2px;
}
.italic {
    font-style: italic;
}
.btn__padrao {
    padding: .55rem 1rem;
    font-size: .875rem;
    line-height: 140%;
    font-weight: 500;
    border: 1.5px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: .04rem;
    border-radius: var(--border-radius-2);
}
.btn__amarelo {
    background: var(--amarelo-mostarda);
    color: var(--roxo-8);
}
.btn__transparent {
    background: transparent;
    color: var(--roxo-8);
}
.btn__100 {
    width: 100%;
}
.btn__branco {
    background: var(--branco);
    color: var(--roxo-8);
}
.btn__branco_quadrado {
    background: var(--branco);
    color: var(--roxo-8);
    border: 1.5px solid var(--roxo-8);
    font-weight: 500;
    border-radius: var(--border-radius-025);
}
.btn__gradiente_quadrado {
    background: var(--gradiente-roxo);
    color: var(--branco);
    border: 1.5px solid transparent;
    font-weight: 500;
    border-radius: var(--border-radius-025);
}
.btn__gradiente_quadrado span {
    color: var(--branco);
}
.btn__gradiente_amarelo {
    background: var(--gradiente-amarelo);
    color: var(--roxo-8);
    font-weight: 700;
    border-radius: var(--border-radius-025);
}
.btn__gradiente_quadrado:hover {
    background: var(--roxo-2);
    color: var(--roxo-8);
}
.btn__gradiente_quadrado:hover span {
    color: var(--roxo-8);
}
.btn__gradiente_quadrado:hover > img, .btn__gradiente_quadrado:hover > svg, .btn__gradiente_quadrado:hover > div img, .btn__gradiente_quadrado:hover > div svg {
    filter: brightness(0) saturate(100%) invert(13%) sepia(42%) saturate(2383%) hue-rotate(254deg) brightness(82%) contrast(99%);
}
.btn__branco:hover, .btn__branco_quadrado:hover {
    background: var(--roxo-8);
    color: var(--branco);
}
.btn__branco_quadrado:hover span {
    color: var(--branco) !important;
}
.btn__amarelo {
    background: var(--amarelo-mostarda);
    display: inline-block;
    transition: .2s ease;
    color: var(--roxo-8);
}
.p__card_875 {
    font-size: .875rem;
    line-height: 140%;
    color: var(--preto-5);
    margin-top: .25rem;
    margin-bottom: 0;
}

/* INÍCIO - HEADER / MENU TOPO */

.menu__blog_wide a, .menu__main_desktop a, .navegacao__empreendimento a {
    width: max-content;
    text-transform: uppercase;
    font-weight: 500;
    font-size: .85rem;
    display: block;
    padding: .45rem 0 .36rem 0;
    color: var(--roxo-7);
    border-bottom: 2px solid transparent;
}

.menu__blog_wide a:hover, .menu__main_desktop a:hover {
    border-bottom: 2px solid var(--roxo-6);
    transition: .2s ease;
}

.menu__blog_wide .current-menu-item a, #menudesktop .current-menu-item {
    border-bottom: 2px solid var(--roxo-6);
}

.bloqueia_rolagem {
    overflow: hidden;
}

.menu_grupo_mobile {
    display: none;
}

.top__menu {
    padding: .15rem 0;
}

.menu__main {
    padding: .85rem 0;
}

.menu__main_wrapper {
    display: grid;
    grid-template-columns: .75fr 1fr .75fr;
    align-items: center;
    gap: 1rem;
    margin: 0 auto;
}

.header__group {
    position: relative;
    z-index: 11;
}

.header__group.fixed {
    position: fixed;
    top: 0;
    z-index: 11;
    width: 100%;
}

#btnMainMobile, #btnMenuEditorias, #btnMenuFavoritos, #btnMenuSearch {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
    gap: 1rem;
    padding: .5rem .5rem .5rem 0;
}

#btnMenuFavoritos {
    position: relative;
    padding: .5rem 0 .4rem 0;
    border-radius: var(--border-radius-025);
}

.icone__hamburguer, .icone__editorias {
    transition: transform .2s ease-in-out;
    transform: rotate(0deg);
}

#btnMainMobile[aria-expanded="true"] .icone__hamburguer, #btnMenuEditorias[aria-expanded="true"] .icone__editorias {
    transform: rotate(90deg);
    transition: transform .2s ease-in-out;
}

/* FIM - HEADER / MENU TOPO */

/* INÍCIO - HEADER / MENU PRINCIPAL */

.menu__main_desktop {
    background-color: var(--roxo-1);
}

.menu__main_hamburguer_wrapper, .menu__editorias_mobile {
    background: var(--branco);
}

.menu__main_desktop ul > * {
    width: max-content;
}

.menu__main_desktop .has__submenu li:not(.sub_social li) {
    width: 100%;
}

.menu__main_desktop .has__submenu .has__submenu:hover > a::after {
    transform: rotate(45deg) scale(1.1);
    transition: .5s ease;
}

.invert__imgGG {
    filter: brightness(0) invert(1);
}

.menu__main_desktop a:hover {
    transition: .2s ease;
}

.menu__main_desktop .has__submenu .has__submenu:hover > a, .menu__main_desktop .submenu li.has__submenu a:hover {
    padding-right: .75rem;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    z-index: 11;
    left: -1.5rem;
    background-color: var(--roxo-1);
    padding: 1rem 1.5rem;
    list-style: none;
    min-width: 250px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.menu__main_desktop .has__submenu .submenu .submenu {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.has__submenu {
    position: relative;
    z-index: 1;
}

.has__submenu > .submenu {
    top: 100%;
    left: -22px;
}

.has__submenu .submenu .submenu {
    top: 0;
    left: 100%;
}

.has__submenu:hover {
    z-index: 10;
}

.has__submenu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .55rem;
    transition: .1s ease;
}

.sub_social.ativo {
    display: flex !important;
    gap: 10px;
    padding: 10px 20px;
}

.has__submenu > a::after, .dropdown_links__mobile > a::after {
    content: "";
    display: inline-block !important;
    width: 9px;
    height: 9px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%235B2B82' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.2s ease;
    transform-origin: center;
    flex-shrink: 0;
    transform: scale(.9);
}

.has__submenu:hover > a::after, dropdown_links__mobile.active > a::after {
    transform: scale(1);
}

.dropdown_links__mobile > a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    position: relative !important;
    cursor: pointer;
}

.dropdown_links__mobile > a::after {
    margin-left: 8px;
}

.dropdown_links__mobile.active > a::after {
    transform: scale(1);
}

.submenu__menu_hamburguer {
    display: none;
    margin-top: 0;
    padding-left: 1rem;
    transition: 0.3s ease;
}

.dropdown_links__mobile.active > .submenu__menu_hamburguer {
    display: block;
}

.menu-item-has-children a:hover::after, .menu-item-has-children a.active::after {
    width: 100% !important;
}

/* FIM - HEADER / MENU PRINCIPAL */

/* INÍCIO - HEADER H1 WIDE INTERNO */

.header__h1_interno {
    position: relative;
    padding: 2rem 0;
    background-color: var(--bege-areia-2);
    border-bottom: 1.5px solid var(--bege-areia);
    overflow: hidden;
}

.header__h1_interno:not(.has-image) {
    background: var(--roxo-6);
    border-bottom: 1.5px solid var(--amarelo-mostarda);
}

.header__h1_interno.has-image {
    background: none;
    border-bottom: none;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__h1_interno .align__center {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header__h1_interno.has-image .header__h1_interno_img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    left: 50%;
    transform: translateX(-50%);
}

.header__h1_interno.has-image .header__h1_interno_overlay {
    position: absolute;
    inset: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.header__h1_interno .align__center {
    position: relative;
    z-index: 2;
    text-align: center;
}

.header__h1_interno.dark {
    background-color: var(--roxo-9);
    border-bottom: 1.5px solid var(--amarelo-mostarda);
}

.header__h1_interno.dark span:first-child {
    color: var(--amarelo-mostarda) !important;
}

.header__h1_interno.dark span:last-child {
    color: var(--branco) !important;
}

.box__whatsapp_inline_post a {
    background: var(--verde-whatsapp);
    padding: .25rem 1rem;
    transition: .2s ease;
    line-height: normal;
}

.box__whatsapp_inline_post a:hover {
    background: var(--verde-whatsapp);
    animation: pulsarBorda 2s infinite ease-in-out;
}

/* FIM - HEADER H1 WIDE INTERNO */

/* INÍCIO - BOOKMARK FAVORITOS */

.bookmark__menu a {
    width: 32px !important;
    height: 32px !important;
}

a.bookmark__menu_thumb, .bookmark__menu_thumb {
    background: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    border-radius: var(--border-radius-025);
    transition: .2s ease;
    right: .875rem;
    top: .875rem;
    z-index: 2;
}

a.bookmark__menu_thumb, .bookmark__menu_thumb, .bookmark__menu_thumb_verde, .bookmark__icon_cards {
    cursor: crosshair;
}

.section__mais_lidas_horizontal .bookmark__icon_cards {
	background-color: var(--roxo-5);
}

.favorites__badge, #favoritesBadge {
    background-color: var(--secundaria-3);
    color: var(--branco);
    padding: .2rem .06rem 0 0;
    font-size: .4rem;
    letter-spacing: -.05rem;
    font-weight: 700;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    text-align: center;
    position: absolute;
    top: 1px;
    right: -7px;
    display: block;
}

.bookmark__menu_thumb img, .bookmark__icon_cards img {
    width: 16px !important;
    height: 16px !important;
}

.bookmark__menu_thumb:hover {
    background: var(--preto-1);
}

.bookmark__icon_cards {
    top: .15rem;
    right: .15rem;
    padding: .24rem .24rem .23rem .24rem;
    z-index: 2;
	border-radius: 2px;
}

.bookmark__menu_thumb.bookmar_ativado, .bookmar_ativado {
    background: var(--roxo-2) !important;
    border-radius: var(--border-radius-0125);
}

/* FIM - BOOKMARK FAVORITOS */

/* INÍCIO - CARDS DE EMPREENDIMENTOS */

.ul__cards_empreendimentos .img__empreendimento {
    filter: sepia(.2);
    transition: .2s ease-in-out;
}

.ul__cards_empreendimentos li:hover .img__empreendimento {
    filter: sepia(0);
}

.ul__cards_empreendimentos li:hover .btn__amarelo {
    background-color: var(--roxo-6);
    color: var(--roxo-1);
}

.ul__cards_empreendimentos li:hover a {
    background-color: var(--bege-claro) !important;
}

.bookmark__menu_thumb {
    top: .5rem;
    right: .5rem;
}

.menu__main__group_grid {
    box-sizing: border-box;
    display: grid;
    overflow-y: hidden;
    grid-template-columns: 350px 1fr;
    max-width: var(--container-big);
    align-items: start;
    margin: 0 auto;
    justify-content: space-between;
    z-index: 100;
}

.logo__main_menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo__main_menu span {
    margin: 0;
    letter-spacing: .05rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--branco);
}

#logo-dark, #logo-footer-dark {
    display: none;
}

body.dark__mode #logo-light, body.dark__mode #logo-footer-light {
    display: none;
}

body.dark__mode #logo-dark, body.dark__mode #logo-footer-dark {
    display: inline;
}

.logo__main_menu h1, .logo__main_menu span, .text__acessible {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.menu__main_group .menu li a, .menu__main_group .menu li span {
    display: block;
    padding: .75rem 0;
    transition: .2s ease;
    font-size: .95rem;
    line-height: 120%;
    color: var(--preto-7);
}

#navMain, #navEditorias {
    opacity: 0;
    visibility: hidden;
}

#navMain.active, #navEditorias.active {
    opacity: 1;
    height: 100%;
    padding: 2rem 1rem;
    visibility: visible;
    overflow-y: hidden;
    transition: none;
    position: static;
    border-bottom: 1px solid var(--preto-2);
}

.menu__main_group {
    display: block;
    position: absolute;
    font-size: 1.5rem;
    text-align: left;
    width: 100%;
    right: 0px;
    z-index: -1;
    height: 0px;
    visibility: hidden;
}

.menu li:after {
    content: '';
    display: block;
    background: var(--preto-2);
    width: 100%;
    height: .9px;
}

.menu li:last-child:after {
    content: none;
}

footer .menu li:after {
    content: none;
}

/* FIM - CARDS DE EMPREENDIMENTOS */

/* INÍCIO - LINHA DO TEMPO */

.linhatempo {
    position: relative;
    width: 100%;
    padding: 80px 0;
}

.linhatempo__linha {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--roxo-7);
    transform: translateX(-50%);
}

.linhatempo__item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.linhatempo__item:last-child {
    margin-bottom: 0;
}

.linhatempo__coluna {
    width: calc(50% - 60px);
}

.linhatempo__coluna_esquerda {
    text-align: right;
    padding-right: 60px;
}

.linhatempo__coluna_direita {
    text-align: left;
    padding-left: 60px;
}

.linhatempo__centro {
    position: relative;
    width: 120px;
    min-width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.linhatempo__ponto {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--amarelo-mostarda);
    position: relative;
    z-index: 2;
}

.linhatempo__ponto_esquerda::before, .linhatempo__ponto_direita::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    background: var(--roxo-7);
    border-radius: 50%;
    transform: translateY(-50%);
}

.linhatempo__ponto_esquerda::before {
    left: -28px;
    box-shadow: -16px 0 0 var(--roxo-7);
}

.linhatempo__ponto_direita::after {
    right: -28px;
    box-shadow: 16px 0 0 var(--roxo-7);
}

.linhatempo__ano {
    margin: 0 0 15px;
}

.linhatempo__texto {
    width: 100%;
}

.linhatempo__texto p, .linhatempo__texto ul {
    margin: 0 0 10px;
}

.linhatempo__linha::before, .linhatempo__linha::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 18px;
    height: 18px;
    background: var(--roxo-7);
    transform: translateX(-50%);
}

.linhatempo__linha::before {
    top: 0;
}

.linhatempo__linha::after {
    bottom: 0;
}

/* FIM - LINHA DO TEMPO */

/* RESPONSIVO MOBILE */

/* LINHA DO TEMPO */

/* INÍCIO - FICHA TECNICA */

.lista__containerficha {
    position: sticky;
    top: 100px;
}

.fichatecnica__slider {
    aspect-ratio: 3/4;
}

.fichatecnica__slider img {
    height: 100%;
    object-fit: cover;
}

.lista__fichatecnica {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lista__fichatecnica li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.325rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--preto-1);
}

.lista__fichatecnica li b {
    width: 40%;
    color: var(--preto-7);
}

.lista__fichatecnica li span {
    width: 60%;
    color: var(--preto-7);
}

/* FIM - FICHA TECNICA */

/* INÍCIO - MÓDULO DE PLANTAS */

.aba__plantas img {
    height: 450px;
    margin: auto;
    object-fit: contain;
}

.aba__plantas ul li:last-child {
    padding-bottom: 0 !important;
}

/* FIM - MÓDULO DE PLANTAS */

/* INÍCIO - MÓDULO MAPA */

.section__endereco_mapa iframe {
    border: 0;
    height: 400px;
    width: 100%;
}

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

.facilidades__regiao img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    background: var(--amarelo-mostarda-claro);
    border-radius: var(--border-radius-025);
}

.faixa-transversal, .faixa-transversal_2, .faixa-transversal_3 {
    position: absolute;
    bottom: 50%;
    left: 0px;
    z-index: -1;
    width: 130%;
    height: 260px;
    background: rgb(235 235 255);
    transform: rotate(10deg);
    transform-origin: top left;
    pointer-events: none;
}

/* FIM - MÓDULO MAPA */

/* INÍCIO - MÓDULO ABAS TOUR VIRTUAL, VÍDEO E FOTOS */

.section__tourvirtual_tour {
    max-height: 450px;
}

.section__tourvirtual_tour iframe {
    margin: auto;
    width: 80%;
    max-width: 800px;
	height: auto;
    max-height: 450px;
    aspect-ratio: 16/10;
    border-radius: var(--border-radius-05);
}

.section__tourvirtual_img img {
    margin: auto;
    width: 80%;
    max-width: 800px;
    max-height: 450px;
	height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: var(--border-radius-05);
}

.section__tourvirtual .tab button {
    position: relative !important;
    background-color: transparent !important;
    color: var(--branco) !important;
    box-shadow: var(--box-shadow) !important;
    border: 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;
    isolation: isolate;
}

.section__tourvirtual .tab button::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--preto-4);
    z-index: 1;
}

.section__tourvirtual .tab button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--amarelo-mostarda);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .35s ease;
    z-index: 2;
    pointer-events: none;
}

.section__tourvirtual .tab button:hover::after,
.section__tourvirtual .tab button.is-active::after {
    transform: scaleX(1);
}

/* FIM - MÓDULO ABAS TOUR VIRTUAL, VÍDEO E FOTOS */

/* INÍCIO - MÓDULO EVOLUÇÃO DE OBRAS */

.barra__evolucao {
    width: 100%;
    height: 38px;
    background: var(--roxo-3);
    overflow: hidden;
}

.barra__progresso {
    height: 100%;
    background: var(--roxo-7);
    transition: .4s;
}

.barra__evolucao i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0px, -50%);
    font-style: normal;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--branco);
}

.section__evolucao .splide__pagination {
    bottom: 1em;
    left: 0;
    padding: 0 1em;
    position: absolute;
    right: 0;
    z-index: 1;
}

.section__evolucao .splide__pagination {
    margin-top: 30px;
}

.section__evolucao .splide__pagination__page {
    width: 10px;
    height: 10px;
    background: var(--branco);
    opacity: 1;
    border: 1px solid var(--preto-8);
}

.section__evolucao .splide__pagination__page.is-active {
    opacity: 1;
    width: 12px;
    height: 12px;
    background: var(--branco);
    border: 2px solid var(--preto-8);
}

/* FIM - MÓDULO EVOLUÇÃO DE OBRAS */

/* INÍCIO - TABELA COMPARAÇÃO */

.tabela__comparacao li {
    display: grid;
    gap: .25rem;
    grid-template-columns: 85% 15%;
    padding: .5rem 1rem;
    align-items: center;
    border-radius: var(--border-radius-2);
}

.tabela__comparacao li:not(:first-child) {
    background: var(--branco);
}

/* FIM - TABELA COMPARAÇÃO */

/* INÍCIO - CATEGORIAS / CARDS / FINALIDADES / EDITORIAS */

.card__finalidades:hover {
    background: var(--roxo-1) !important;
    transition: .2s ease;
}

/* FIM - CATEGORIAS / CARDS / FINALIDADES / EDITORIAS */

/* INÍCIO - POST ARTICLE BLOG */

.grid__sidebar {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 2rem;
}

.breadcrumb {
    display: grid;
    align-items: center;
    grid-template-columns: auto auto 1fr;
    font-size: .875rem;
    margin: 0 0 2rem 0;
}

.breadcrumb li {
    text-align: left;
    display: flex;
    align-items: center;
}

.breadcrumb > li:after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 12px;
    margin: 0 .875rem;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='14' viewBox='0 0 8 14' fill='none'><path d='M0.75 0.75L6.75 6.75L0.75 12.75' stroke='black' stroke-opacity='0.3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center;
}

.breadcrumb>li:last-child:after {
    content: none;
}

.breadcrumb li span {
    color: var(--preto-5);
    line-height: 1.3rem;
    font-weight: 500;
}

.breadcrumb li a {
    padding: .5rem 0;
    font-size: .875rem;
}

.breadcrumb li span:hover {
    color: var(--preto-6);
}

.breadcrumb li:last-child span {
    text-decoration: none;
    color: var(--preto-6);
}

.categories__blog {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}

.categories__blog_tag {
    color: var(--roxo-5);
    font-size: .875rem;
    line-height: 140%;
    font-weight: 600;
    display: block;
}

.topicos__tag {
    background: var(--branco);
    border-radius: var(--border-radius-2);
    padding: .5rem 1.15rem;
    color: var(--blue-main);
    font-weight: 700;
    font-size: .8rem;
    line-height: 120%;
    transition: .2s ease;
}

.topicos__tag:hover {
    background: var(--blue-main);
    color: var(--branco);
}

.content__wrapper {
    padding: 1rem 0 3rem 0;
    text-align: left;
}

.content__wrapper ol ul, .content__wrapper ol ol, .content__wrapper ul ul, .content__wrapper ul ol {
    margin-top: 1rem;
}

.sidebar__block__blog {
    display: flex;
    align-items: center;
    gap: .325rem;
    flex-wrap: wrap;
    margin-bottom: .75rem;
}

.sidebar__block__blog li {
    display: flex;
}

.sidebar__block__blog_tag {
    padding: 0.5rem 1rem;
    color: var(--blue-light);
    background: var(--blue-main);
    text-transform: uppercase;
    border-radius: var(--border-radius-2);
    font-size: .8rem;
    font-weight: 600;
    transition: .2s ease;
}

.sidebar__block__blog_tag:hover {
    background: var(--preto-2);
    color: var(--branco);
}

.sidebar__ads {
    margin: 0 auto;
}

.content__article {
    text-align: left;
    contain: layout;
}

.content__article_body {
    text-align: left;
}

.content__article_body p {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 2rem;
    margin-bottom: 1.325rem;
    text-align: justify;
}

.content__article_body a {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 2.15rem;
    color: var(--preto-8);
    text-decoration: underline;
}

.tags__list li a {
    text-decoration: auto;
}

.content__article_body a:hover {
    text-decoration: auto;
}

.content__article p {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 150%;
    margin: .5rem 0 1.5rem 0;
}

img.avatar {
    border: 1.5px solid var(--amarelo-mostarda);
    border-radius: 50%;
    width: 90px;
    height: 90px;
}

.content__article img.avatar {
    border: 1.5px solid var(--amarelo-mostarda);
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.div__author_page {
    display: flex;
    align-items: center;
    gap: .875rem;
    margin-bottom: 1rem;
}

.div__author_page_ul {
    display: flex;
    gap: .5rem;
    align-items: center;
}

.div__author_page_ul li {
    border-radius: 50%;
}

.meta__info_author_single {
    font-size: 0.875rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: .5rem 0 1.25rem 0;
    gap: 1rem;
}

.meta__info_author_single span, .meta__info_author_single time {
    color: var(--preto-7);
    line-height: 150%;
    letter-spacing: -.01rem;
    font-weight: 400;
}

.meta__info_author_single a {
    color: var(--preto-7);
    font-weight: 500;
    font-size: .875rem;
    text-decoration: underline;
}

.meta__info_author_single a:hover {
    color: var(--preto-8);
    text-decoration: none;
}

.main__img_post {
    margin: 0 0 1rem 0;
    position: relative;
}

.main__img_post figure {
    margin: 0;
}

.main__img_post figure img {
    width: 100%;
    aspect-ratio: 16/9;
    object-position: center;
    border-radius: var(--border-radius-05);
    max-height: 512px;
    object-fit: cover;
}

.main__img_post figcaption {
    font-size: .875rem;
    position: absolute;
    bottom: 0.25rem;
    padding: 0.15rem 0.5rem;
    color: var(--preto-9);
    background-color: rgba(32,32,32, 0.8);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.main__img_post figcaption a {
    color: var(--preto-2);
}

.main__img_post_label_absolute {
    padding: 0.325rem 0.5rem;
    font-size: .75rem;
    border-radius: var(--border-radius-025);
    top: .5rem;
    left: .5rem;
    background-color: var(--roxo-main);
}

.grid__social_article {
    display: grid;
    grid-template-columns: 1fr 55px;
    gap: 1.5rem;
}

.redes__sociais_fixed {
    position: sticky;
    top: 1rem;
    display: flex;
    flex-direction: column;
    padding: .5rem !important;
    background: var(--branco);
    gap: .5rem;
    transition: .2s ease;
    margin-bottom: 1.5rem !important;
    border-radius: var(--border-radius-05);
}

.redes__sociais_fixed li {
    list-style-type: none !important;
    margin-bottom: 0 !important;
}

.redes__sociais_fixed a, .redes__sociais_fixed button {
    display: flex;
    padding: .2rem;
    align-items: center;
    justify-content: center;
}

.shake {
    animation: 0.82s shake;
    animation-delay: 1s;
}

.box__author_single {
    background: var(--branco);
    padding: 1.5rem;
}

.schema-faq {
    background-color: var(--secundaria-2);
    border-left: 4px solid var(--roxo-5);
    padding: 1.5rem 1.15rem !important;
}

.schema-faq.wp-block-yoast-faq-block {
    padding: 2rem;
    margin-bottom: 1.5rem;
    background: #ffffff;
    border-left: 2px solid var(--preto-6);
}

.content__article_body .schema-faq-item {
    list-style: none;
    margin-bottom: 1.25rem;
}

.content__article_body .schema-faq-question {
    margin-bottom: .5rem;
    font-weight: 600;
    padding-top: 0;
    line-height: normal;
    font-size: 1.25rem;
    display: block;
}

.content__article_body .schema-faq-answer {
    margin-bottom: .75rem;
    font-size: .95rem;
    line-height: 150%;
}

.schema-faq > .schema-faq-item:last-child > .schema-faq-answer:last-child, .schema-faq-item:last-child {
    margin-bottom: 0;
}

.content__text_body:last-child {
    margin-bottom: 5rem !important;
}

.table__of_contents ol {
    padding-left: 1.25rem !important;
}

.table__of_contents p {
    font-weight: 500;
}

.table__of_contents li a {
    margin-bottom: .5rem;
    display: block;
    text-decoration: auto;
    line-height: 130%;
    font-size: 1rem;
}

.table__of_contents li a:hover {
    text-decoration: underline;
}

.content__article_body strong a {
    font-weight: 800;
}

.content__article_body strong {
    color: var(--preto-8);
}

.content__article_body h2 {
    padding-top: .325rem;
    font-weight: 600;
    font-size: 1.875rem;
    line-height: 2.75rem;
}

.content__article_body h3 {
    font-weight: 600;
    padding-top: .5rem;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    line-height: 2.15rem;
}

.content__article_body h4 {
    font-weight: 600;
    padding-top: .5rem;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.95rem;
}

.content__article_body ul, .content__article_body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content__article_body iframe {
    margin-bottom: 1.25rem;
}

.content__article_body ul ul, .content__article_body ol ol, .content__article_body ul ol, .content__article_body ol ul {
    margin-bottom: 0 !important;
}

.content__article_body ul li, .content__article_body ol li {
    font-size: 1.15rem;
    list-style-type: square;
    margin-bottom: .75rem;
    line-height: 2rem;
}

.content__article_body ol li {
    list-style-type: square;
    font-size: initial;
    color: var(--verde-main);
}

.content__article_body blockquote {
    border-left: 6px solid var(--roxo-main);
    padding: 2rem;
    margin-bottom: 2rem;
    background: var(--roxo-1);
}

.content__article_body blockquote p {
    margin-bottom: 0;
    color: var(--preto-7);
    font-size: 1.25rem;
    line-height: 150%;
    font-weight: 500;
    text-align: start;
}

.content__article_body blockquote cite {
    color: var(--roxo-8);
    font-size: 1.325rem;
    margin-top: .875rem;
    font-weight: 700;
    line-height: 150%;
}

.content__article_body blockquote p:before, .content__article_body blockquote p:after {
    content: '"';
}

.wp-block-gallery {
    display: flex;
    flex-wrap: wrap;
    padding: 0.5rem;
    gap: 0.5rem;
    background: var(--secundaria-2);
    border-radius: var(--border-radius-05);
    margin-bottom: 3rem;
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
    background: linear-gradient(0deg,rgba(32,32,32,.8),rgba(32,32,32,.4) 100%,transparent) !important;
    padding: .25rem 0 !important;
    display: none;
}

.wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before {
    display: none;
}

figure.wp-block-image, figure.wp-block-gallery, figure.wp-block-embed, .wp-block-table {
    margin: 2rem 0;
}

.wp-block-table thead {
    border-bottom: none !important;
}

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img {
    border-radius: var(--border-radius-025);
}

.tags__blog {
    display: flex;
    align-items: center;
    background: var(--branco);
    padding: 1.5rem;
    gap: 1rem;
    justify-items: center;
}

.tags__blog span {
    font-weight: 600;
    display: block;
    font-size: 1.15rem;
    line-height: normal;
}

.tags__list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 0;
    padding-left: 0;
}

.tags__list li {
    display: flex;
    list-style-type: none;
    margin-bottom: 0;
    line-height: 2rem !important;
}

.sidebar__blog {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.top_sticky {
    top: 8rem !important;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 1rem;
    transition: .2s ease;
    display: grid;
    gap: 1.5rem;
}

.sidebar_h2 {
    gap: .5rem;
    font-size: 1.05rem;
    margin-bottom: .875rem;
    line-height: 120%;
    color: var(--preto-8);
}

.sidebar_h2::after {
    content: "";
    width: 2rem;
    height: 1.5px;
    display: block;
    margin: 0.25rem 0px;
    background: var(--amarelo-mostarda);
}

.ads__sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar__block, .sidebar__top_blog, .redes__sociais_fixed, .tags__blog, .box__author_single, .box__whatsapp_inline_post, .div__busca_blog {
    background: var(--secundaria-2);
    padding: 1.5rem;
    border: 1.5px solid var(--roxo-extra-1);
    border-radius: var(--border-radius-05);
}

.sidebar__block:hover, .sidebar__top_blog:hover, .redes__sociais_fixed:hover, .tags__blog:hover, .box__author_single:hover, .box__whatsapp_inline_post:hover, .border__padrao:hover {
    border-color: var(--roxo-extra-2);
}

.redes__sociais_fixed {
    background: var(--secundaria-2);
}

.sidebar__block:last-child {
    margin-bottom: 0;
}

.sidebar__block ul li a, .sidebar__block ol li a, .sidebar__top_blog ul li a, .sidebar__top_blog ol li a {
    display: block;
    padding: .25rem 0;
    color: var(--preto-7);
    font-size: .875rem;
    font-weight: 500;
}

.cat-item:last-of-type a {
    padding: .25rem 0 0 0;
}

.cat-item {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.cat-item:after {
    content: '';
    background: var(--roxo-5);
    width: .5rem;
    height: .5rem;
    border-radius: var(--border-radius-50);
    flex-shrink: 0;
}

.top__blog ol {
    display: flex;
    flex-direction: column;
    gap: .875rem;
}

.top__blog ol li {
    justify-content: start;
    align-items: center;
}

.sidebar__block ul li a:hover:not(span), .sidebar__block ol li a:hover:not(span) {
    text-decoration: underline;
}

.card__tag_list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.card__tag_list li {
    border-left: 4px solid var(--amarelo-principal);
    cursor: pointer;
    height: max-content;
    border-image: initial;
    background: var(--branco);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 16px 0px;
    transition: .2s ease;
}

.card__tag_list li:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 20px 0px;
}

.card__tag_item {
    display: grid;
    grid-template-columns: .4fr 1fr;
    gap: 1rem;
    max-height: 210px;
    overflow: hidden;
}

.img__card_tag__list {
    aspect-ratio: 1/1;
    width: 100%;
    height: 210px;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    filter: gray;
}

.card__tag_list li:hover .img__card_tag__list {
    filter: hue-rotate(0deg);
    transition: .1s ease-out;
}

.nav-blog, .nav-blog .pagination {
    display: flex;
    flex-direction: row;
    justify-content: end;
    gap: .5rem;
    padding: 2rem 0 0 0;
}

.nav-blog a, .nav-blog span {
    color: var(--roxo-6);
    background: var(--amarelo-mostarda-claro);
    padding: 0.325rem .75rem;
    font-size: .875rem;
    line-height: 130%;
	font-weight 600;
    display: flex;
    border-radius: var(--border-radius-025);
}

.nav-blog a:hover, .nav-blog span:hover {
    color: var(--branco);
    background: var(--roxo-7);
}

.nav-blog span {
    background: var(--amarelo-mostarda-claro);
    color: var(--roxo-6);
}

.wp-block-video {
    width: 100%;
    margin: 0 0 2rem 0;
}

#progress-bar {
    background: var(--verde-main);
    width: 0;
    height: .5rem;
    position: fixed;
    top: -1rem;
    left: 0;
    z-index: 9999;
    transition: width 0.3s ease, opacity 0.3s ease, top 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

#progress-bar.active {
    opacity: 1;
    top: 0;
}

.page-numbers.current {
    background: var(--azul-mar);
    color: var(--branco);
}

.content__controls {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    height: 2.125rem;
}

.content__controls button {
    padding: 0.25rem 0.75rem;
    font-size: 1rem;
    cursor: pointer;
    border: 1.5px solid var(--roxo-extra-1);
    background-color: var(--roxo-1);
    border-radius: 0.25rem;
}

.content__controls button.active {
    background-color: var(--roxo-main);
    color: var(--roxo-1);
}

.content__controls button:not(#toggleMode):hover {
    background-color: var(--roxo-main);
    color: var(--roxo-1);
}

.sticky__modo_noturno {
    position: sticky;
    top: 1rem;
    margin-bottom: 1.5rem;
    z-index: 1;
}

.customize-support .sticky__modo_noturno {
    top: 50px;
}

.customize-support #progress-bar {
    top: 32px;
}

/* FIM - POST ARTICLE BLOG */

/* INÍCIO - HERO 1 */

.grid__mosaico {
    display: grid;
    grid-template-columns: .5fr .5fr .5fr .5fr;
    gap: 1.5rem;
    min-height: 420px;
    grid-template-areas: "area1 area1 area2 area6" "area1 area1 area3 area7" "area1 area1 area4 area8" "area1 area1 area5 area9";
}

.grid__mosaico_central {
    grid-template-areas: "area2 area1 area1 area6" "area3 area1 area1 area7" "area4 area1 area1 area8" "area5 area1 area1 area9";
}

.grid__mosaico_direita {
    grid-template-areas: "area2 area6 area1 area1" "area3 area7 area1 area1" "area4 area8 area1 area1" "area5 area9 area1 area1";
}

.grid__mosaico figure {
    margin: 0;
}

.section__hero_1 .grid__mosaico figure {
    min-height: 380px;
}

.grid__mosaico > li figure::after {
    content: "";
    display: block;
    height: calc(100% + 20px);
    border-radius: var(--border-radius-05);
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    transform: translateY(0px);
    background: linear-gradient( to top, rgba(9, 1, 20, 0.9) 0%, rgba(9, 1, 20, 0.8) 30%, rgba(9, 1, 20, 0.2) 55%, rgba(9, 1, 20, 0.0) 100% );
}

.grid__mosaico > li:hover figure img:not(.thumb__left), .grid__post_card > li:hover figure img:not(.thumb__left), .coluna_mista_espacos > li:hover figure img:not(.thumb__left), .content__list_pages ul > li:hover figure img {
    transform: scale(1.03);
}

.content__list_pages ul > li:hover .div__ads figure img {
    transform: none;
}

.card__loop_horizontal {
    padding: 1.25rem;
}

.card__loop_horizontal a {
    display: flex;
}

.card__loop_horizontal:hover {
	background-color: var(--roxo-1) !important;
}

.menu__main__group_grid .card__menu_empreendimento:hover {
	background-color: var(--bege-claro) !important;
}

.card__loop_horizontal:hover, .menu__main_wrapper button.active, #btnMenuFavoritos.active {
    transition: .2s ease;
}

#btnMenuFavoritos.active img {
    filter: grayscale(1);
}

.grid__card_completo figure img {
    border-radius: var(--border-radius-025);
}

.content__list_pages .grid__card_completo figure img {
    max-width: 100%;
}

.grid__mosaico > li:hover h2, .grid__mosaico > li:hover h3, .grid__post_card > li:hover h2, .grid__post_card > li:hover h3, .menu__main__group_grid .grid__post_card > li:hover p {
    text-decoration: underline;
}

.grid__mosaico > li:first-child {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-05);
}

.grid__mosaico > li figure, .grid__post_card_imgdestaque > li figure, .grid__post_card > li figure, .coluna_mista_espacos > li figure, .content__list_pages li figure {
    overflow: hidden;
    border-radius: var(--border-radius-05);
}

.grid__mosaico_text {
    position: absolute;
    bottom: 2rem;
    left: 1.75rem;
    padding-right: 1.75rem;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.grid__mosaico > li:not(:first-child) .grid__mosaico_text {
    bottom: 1rem;
    left: 1rem;
}

.grid__mosaico_text_chapeu {
    display: flex;
    flex-direction: column;
    gap: .15rem !important;
}

.grid__mosaico > li h2 {
    margin: 0;
    line-height: 120%;
    font-size: 1.15rem;
    padding-right: 0;
}

.grid__mosaico > li:nth-child(1) {
    grid-area: area1;
    min-height: auto;
}

.grid__mosaico > li:first-child h2 {
    color: var(--branco);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
    font-size: 1.25rem;
    line-height: 125%;
    padding-right: 0;
}

.grid__mosaico > li:first-child p {
    max-width: 90%;
    color: var(--preto-3);
    margin: .25rem 0 0 0;
    font-size: .875rem;
    line-height: 140%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.grid__mosaico > li:first-child span {
    color: var(--branco);
}

.grid__mosaico > li:nth-child(2) {
    grid-area: area2;
}

.grid__mosaico > li:nth-child(3) {
    grid-area: area3;
}

.grid__mosaico > li:nth-child(4) {
    grid-area: area4;
}

.grid__mosaico > li:nth-child(5) {
    grid-area: area5;
}

.grid__mosaico > li:first-child .img__card_blog {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: var(--border-radius-05);
}

.slide {
    display: grid;
}

.slide-items {
    position: relative;
    grid-area: 1/1;
    overflow: hidden;
    min-height: 382px;
}

.slide-nav {
    grid-area: 1/1;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    margin-bottom: 27%;
}

.slide-nav button {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    opacity: 0;
}

.slide-items > * {
    position: absolute;
    top: 0px;
    opacity: 0;
    pointer-events: none;
    height: 100%;
    padding-bottom: 0 !important;
    border: 0 !important;
}

.slide-items h2 {
    color: inherit;
    text-decoration: none;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.slide-items h2:hover {
    text-decoration: underline;
}

.slide-nav button {
    z-index: 1;
}

.slide-items > .active {
    position: relative;
    opacity: 1;
    pointer-events: initial;
}

.slide-thumb {
    display: flex;
    grid-column: 1 / 3;
    padding: .25rem 3rem;
}

.slide-thumb > span {
    flex: 1;
    display: block;
    height: 5px;
    background: rgba(0, 0, 0, 0.4);
    margin: 5px;
    overflow: hidden;
    opacity: 1 !important;
}

.slide-thumb > span.active::after {
    content: '';
    display: block;
    height: inherit;
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(-100%);
    animation: thumb 6s forwards linear;
    animation-play-state: running;
}

.slide.is-paused .slide-thumb > span.active::after {
    animation-play-state: paused;
}

.slide-thumb > span, .slide-thumb > span * {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}

.slide-thumb > span:active, .slide-thumb > span:focus, .slide-thumb > span:hover {
    background: rgba(0, 0, 0, 0.4);
    outline: none;
}

.slide-thumb > span.active, .slide-thumb > span.active:active, .slide-thumb > span.active:focus {
    background: rgba(0, 0, 0, 0.4);
}

@keyframes thumb {
  to {
	transform: initial;
  }
}

.grid__falencias li img {
    width: 80px;
    height: 81px;
    object-fit: contain;
}

.section__colunas_destaque_mosaico_terramundi li:not(:first-child) .text_chapeu {
    display: none;
}

.grid__mosaico_3 {
    display: grid;
    grid-template-columns: .75fr .75fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    grid-template-areas: "area1 area1 area2" "area1 area1 area3";
    margin-bottom: 2rem;
}

.grid__mosaico_3 li:first-child figure {
    margin: 0;
    height: 100%;
}

.grid__mosaico_3 li figure {
    margin: 0;
    height: 100%;
}

.grid__mosaico_3 .segura__topo_card {
    position: absolute;
    width: 100%;
    background: var(--blue-cold-dark);
    margin-left: -1.5rem;
    padding: 1.25rem 1.5rem;
    bottom: 0;
    min-height: 120px;
    justify-content: center;
}

.grid__mosaico_3 li:hover img {
    transform: scale(1.05);
}

.grid__mosaico_3 li {
    position: relative;
    overflow: hidden;
    border-left: 8px solid var(--roxo-4);
}

.grid__mosaico_3 li:nth-child(1) h2, .grid__mosaico_3 li:nth-child(1) h3 {
    font-size: 1.325rem;
}

.grid__mosaico_3 li h2, .grid__mosaico_3 li h3 {
    color: var(--branco);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
    margin: 0;
    line-height: 1.5rem;
    font-size: 1.15rem;
}

.grid__mosaico_3 li:nth-child(1) {
    grid-area: area1;
    min-height: 570px;
}

.grid__mosaico_3 li:first-child h2 {
    font-size: 1.25rem;
    line-height: 130%;
}

.grid__mosaico_3 li:nth-child(2) {
    grid-area: area2;
}

.grid__mosaico_3 li:nth-child(3) {
    grid-area: area3;
}

.grid__mosaico_3 li img {
    width: 100%;
    height: 100%;
    display: block;
}

.grid__mosaico_v2 {
    display: grid;
    grid-template-columns: 1.325fr 1fr;
    min-height: 390px;
    gap: 1.5rem;
    grid-template-areas: "area1 area2" "area1 area3" "area1 area3";
}

.grid__mosaico_v2 li:nth-child(1) figure img {
    grid-area: area1;
    border: 4px solid var(--roxo-4);
}

.grid__mosaico_v2 li:nth-child(2) {
    grid-area: area2;
}

.grid__mosaico_v2 li:nth-child(3) {
    grid-area: area3;
}

.grid__mosaico_v2 li:nth-child(4) {
    grid-area: area4;
}

.grid__mosaico_v2 li:nth-child(2) figure::after, .grid__mosaico_v2 li:nth-child(3) figure::after, .grid__mosaico_v2 li:nth-child(4) figure::after {
    content: none;
}

.card__newsletter {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    background: var(--amarelo-mostarda-claro);
    padding: 1rem;
    border-radius: var(--border-radius-05);
    transition: .2s ease;
}

.card__newsletter:hover {
    background: var(--branco);
}

.title__section {
    font-style: normal;
    font-weight: 600;
    font-size: 1.875rem;
    line-height: 130%;
    margin-bottom: 0;
    color: var(--roxo-8);
}

.title__section_hover:hover:after {
    width: 100%;
}

.linha_fina_texto {
    color: var(--preto-6);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin-bottom: .5rem;
}

.grid__post_card {
    display: grid;
    gap: 1.5rem;
}

.section__colunas_mista .grid__post_card {
    gap: 2rem;
}

.grid__post_card_text {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1.5rem;
}

.grid__post_card_text li {
    padding: 1.5rem 0;
}

.tag__mais_vendido {
    padding: 0.2rem 0.4rem;
    font-size: .75rem;
    border-radius: 0.15rem;
    top: .75rem;
    left: 0;
    display: none;
}

.tag__mais_vendido span {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.grid__post_card_minimg, .grid__post_card_imgdestaque article {
    display: grid;
    grid-template-columns: .55fr 1fr;
    gap: .875rem;
    align-items: center;
}

.grid__post_card_minimg figure img {
    aspect-ratio: 16 / 11;
    border-bottom: none;
    margin-bottom: 0;
    border-bottom: 0px;
}

.grid__post_card_minimg figure {
    border-bottom: 0px;
}

.coluna_mista_espacos li {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--preto-2);
}

.coluna_mista_espacos li:first-child {
    padding-top: 0;
}

.coluna_mista_espacos li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.content__list_pages ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content__list_pages .grid__card_completo {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--preto-2);
}

.grid__mosaico .grid__card_completo:last-child, .content__list_pages .grid__card_completo:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.grid__segura_cards li:last-child {
    padding-bottom: 0;
}

.web__story_item {
    padding-bottom: 0;
}

.grid__post_card_imgdestaque:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.grid__post_card_imgdestaque article figure {
    border-radius: var(--border-radius-025);
}

.grid__post_card_imgdestaque article figure img {
    aspect-ratio: 16/11;
    border-bottom: none;
    margin-bottom: 0;
    border-radius: 0;
}

.menu__main__group_grid .grid__post_card {
    margin-right: 0;
    padding-right: 0;
}

.img__card_blog {
    aspect-ratio: 16/11;
    object-fit: cover;
    width: 100%;
    transition: .2s ease;
    min-height: 84px;
}

.grid__card_completo {
    width: 100%;
}

.grid__card_completo a {
    gap: .5rem;
}

.grid__post_card_texto:hover h2, .grid__post_card_texto:hover h3, .grid__post_card_minimg:hover h2, .grid__post_card_minimg:hover h3, .grid__card_completo:hover h2, .grid__card_completo:hover h3, .grid__falencias li:hover h3 {
    text-decoration: underline;
}

.segura__texto_card_blog {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    gap: .5rem;
    padding: 0;
}

.segura__texto_card_blog.horizontal {
    padding: 0;
}

.segura__texto_card_blog.tag__list {
    padding: 1rem 2rem 1rem 0;
    justify-content: space-evenly;
}

/* FIM - HERO 1 */

/* INÍCIO - MAIS LIDAS HORIZONTAL */

.section__mais_lidas_horizontal {
    counter-reset: maislidas;
    background: var(--gradiente-roxo);
}

.section__mais_lidas_horizontal ol {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.section__mais_lidas_horizontal ol li, .top__blog ol li {
    counter-increment: maislidas;
    display: flex;
    justify-content: start;
    gap: 1rem;
}

.section__mais_lidas_horizontal ol li::marker {
    color: var(--preto-5);
}

.section__mais_lidas_horizontal ul li a, .top__blog ol li a {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: .95rem;
    line-height: 150%;
    font-weight: 700;
    color: var(--preto-2);
}

.section__mais_lidas_horizontal ol li::before, .top__blog ol li::before {
    content: counter(maislidas);
    color: var(--amarelo-mostarda);
    font-family: ui-serif;
    font-size: 1.5rem;
    height: fit-content;
    font-weight: 700;
    line-height: 110%;
    min-width: 2rem;
    padding: .325rem;
    display: flex;
    border-radius: var(--border-radius-025);
    justify-content: center;
    background: var(--roxo-7);
}

.section__mais_lidas_horizontal.dark {
    background: var(--verde-9);
}

.section__mais_lidas_horizontal.dark h2, .section__mais_lidas_horizontal.dark h3, .section__mais_lidas_horizontal.dark strong, .section__mais_lidas_horizontal.dark a {
    color: var(--branco);
}

.section__mais_lidas_horizontal.dark .espacador:after {
    background: var(--branco);
}

/* FIM - MAIS LIDAS HORIZONTAL */

/* INÍCIO - SECTION COLUNISTAS */

.thumb__autor {
    border: 1.5px solid var(--amarelo-mostarda);
    width: 90px;
    height: 90px;
}

.section__colunistas ul, .section__colunistas ol {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* FIM - SECTION COLUNISTAS */

/* INÍCIO - WEB STORIES */

.webstories__wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.web__story_item {
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
    height: max-content;
    transition: 0.2s ease;
    position: relative;
}

.web__story_item:hover {
    box-shadow: var(--box-shadow);
    transition: .2s ease;
}

.web__story_img_card_wrapper {
    position: relative;
    overflow: hidden;
    transition: .2s ease;
}

.web__story_img_card {
    aspect-ratio: 3 / 5;
    width: 100%;
    object-fit: cover;
    display: block;
    height: auto;
}

.web__story_img_card_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0, var(--preto-9) 25%, rgba(29, 29, 27, 0.3) 70%);
    z-index: 1;
    pointer-events: none;
}

.web__story_segura_svg_titulo {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    padding-right: 1.25rem;
}

.web__story_segura_svg_titulo img {
    aspect-ratio: inherit;
}

.web__story_icon_panorama {
    width: 40px;
    height: 40px;
}

.web__story_item .web__story_item_titulo {
    font-size: 1.05rem;
    line-height: 130%;
    font-weight: 500;
    color: var(--branco);
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.web__story_item:hover .web__story_img_card_wrapper::before {
    background: linear-gradient(0, var(--preto) 26%, rgba(29, 29, 27, 0.4) 75%);
    transition: .2s ease;
}

.cta__linha_dupla {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .875rem;
    margin: 2rem 0 0 0;
    flex-wrap: nowrap;
}

.cta__linha_dupla .linha {
    flex: 1;
    height: 1px;
    background-color: var(--bg-areia-3);
    min-width: 50px;
}

/* FIM - WEB STORIES */

/* INÍCIO - SECTION LOOP HORIONTAL COM ABAS */

.tabcontent {
    visibility: hidden;
    position: absolute;
    left: -9999px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.tabcontent.active {
    visibility: visible;
    position: relative;
    left: 0;
    opacity: 1;
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* ABAS — CONTAINER */

.tab {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

/* ABAS — BOTÕES */

.tab button, .tags__list li a {
    background-color: var(--roxo-1);
    border-radius: var(--border-radius-025);
    color: var(--roxo-7);
    font-weight: 500;
    font-size: .875rem;
    line-height: normal;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: .5rem 1rem;
    transition: 0.3s;
}

.tab button:hover, .tags__list li a:hover {
    background-color: var(--bege-claro);
    color: var(--roxo-8);
    box-shadow: var(--box-shadow);
}

.tab button.active, .tab button.is-active {
    background-color: var(--bege-claro);
    color: var(--roxo-8);
    box-shadow: var(--box-shadow);
}

.div__busca_blog {
    padding: 2rem;
}

.form__busca {
    display: grid;
    grid-template-columns: 1fr .3fr;
    justify-content: center;
    gap: 1rem;
}

.form__busca_sidebar {
    position: relative;
    width: 100%;
}

.form__busca_sidebar {
    position: relative;
}

.form__busca_sidebar input {
    border: none;
    font-weight: 300;
    font-size: .8rem;
    border: 1.5px solid transparent;
    background: var(--preto-1);
    border-radius: var(--border-radius-2);
}

.form__busca_sidebar input:focus, .form__busca_sidebar input:hover, .form__busca_sidebar input:focus-visible {
    background: var(--amarelo-mostarda-claro);
    outline: none;
}

.form__busca_sidebar button {
    position: absolute;
    right: .5rem;
    top: 50%;
    height: 70%;
    width: 2.5rem;
    padding: .75rem;
    transform: translateY(-50%);
    background: var(--roxo-7);
    cursor: pointer;
    transition: background 0.2s;
    border-radius: var(--border-radius-2);
}

.btn__busca_thumb {
    background: var(--blue-main);
    padding: 1.05rem 1.5rem;
    transition: background 0.2s;
}

.btn__busca_thumb:hover {
    background: var(--blue-cold-light);
}

/* FIM - SECTION LOOP HORIONTAL COM ABAS */

/* INÍCIO - MODAL — OVERLAY */

.modal_basico {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100% !important;
    height: 100%;
    overflow: auto;
    background: #0405059A;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
}

.modal-conteudo {
    background-color: var(--preto-7);
    margin: 10% auto;
    padding: 4rem 2rem 2rem 2rem;
    width: 90%;
    max-width: 380px;
    min-width: 300px;
    border-radius: .25rem;
    position: relative;
}

.fechar_redes_modal {
    color: var(--preto-2);
    font-size: 34px;
    font-weight: 400;
    position: absolute;
    top: .25rem;
    right: 1rem;
    cursor: pointer;
}

#redes_desktop {
    display: flex;
}

#abrir_redes_modal {
    display: flex;
}

.coluna_6 {
    width: calc(50% - .5rem);
}

.coluna_4 {
    width: calc(33% - 0.43rem);
}

.coluna_12 {
    width: 100%;
}

.linha_display_flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}

.erro_fornecedor {
    border: 1px solid red !important;
    outline: 1px solid red !important;
    background: var(--preto-8) !important;
}

/* FIM - MODAL — OVERLAY */

/* INÍCIO - GLOSSÁRIO */

.section__loop_glossario {
    background-color: var(--branco);
}

/* QUANDO HÁ 6 POSTS, REMOVE A BORDA DO 3º ITEM */

.grid__post_card[data-posts="6"] .card__glossario:nth-child(3), .grid__post_card[data-posts="9"] .card__glossario:nth-child(3), .grid__post_card[data-posts="9"] .card__glossario:nth-child(6) {
    border-right: none;
    padding-right: 0;
}

/* QUANDO HÁ 8 POSTS, REMOVE A BORDA DO 4º ITEM */

.grid__post_card[data-posts="8"] .card__glossario:nth-child(4) {
    border-right: none;
}

.card__glossario h3 {
    font-size: 1rem;
    line-height: 120%;
    color: var(--preto-7);
    margin-bottom: 0;
}

.card__glossario i {
    color: var(--verde-escuro-2);
    font-size: 20px;
}

.card__glossario p {
    font-weight: 400;
    font-size: .875rem;
    line-height: 20px;
    color: var(--preto-4);
    margin-bottom: 0;
}

.card__glossario span {
    font-size: .875rem;
    line-height: 120%;
    color: var(--dourado);
}

.topo__card_glossario hr {
    border-top: var(--bs-border-width) solid;
    color: var(--cinza-2);
    margin: 15px 0px;
    opacity: 1;
}

.card__glossario:hover .link__ver_mais img, .card__fornecedores:hover .link__ver_mais img {
    animation: moveArrow 0.6s ease;
}

.glossario__lista_a_z {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-azul);
    margin-bottom: 0;
}

.glossario__lista_a_z li {
    height: 100%;
}

.glossario__lista_a_z a {
    padding: 1rem;
    font-weight: 600;
    font-size: 1.325rem;
    line-height: 130%;
    color: var(--verde-folha);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glossario__lista_a_z a:hover, .glossario__lista_a_z a.active {
    background-color: var(--bg-verde);
}

/* FIM - GLOSSÁRIO */

/* INÍCIO - NEWSLETTER FOOTER */

.newsletter__grid {
    position: relative;
    /*background-image: url('../img/grafismo/grafismo-newsletter.svg');*/
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 200px auto;
    padding-bottom: 80px;
}

.conteudo__modulo_texto_central div:last-of-type p:last-of-type {
    margin-bottom: 0;
}

.wp-block-table td, .wp-block-table th {
    padding: 1rem !important;
}

.wp-block-table {
    margin-right: -1rem;
}

.wp-block-table::-webkit-scrollbar {
    display: none;
}

.wp-block-table .has-fixed-layout {
    overflow-y: scroll !important;
    width: 100% !important;
}

.wp-block-table .has-fixed-layout td, .wp-block-table .has-fixed-layout th {
    word-break: normal !important;
    margin-right: 1rem;
}

/* FIM - NEWSLETTER FOOTER */

/* INÍCIO - FAQ */

.grid__faq {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
}

.grid__faq h2 {
    text-align: left;
    margin-bottom: .5rem;
}

.grid__faq h2:after {
    margin: .5rem 0 1rem 0;
}

.lista-item {
    text-align: left;
    height: fit-content;
    margin-bottom: 1.25rem;
}

.faq-titulo {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--secundaria-2);
    padding: 1.5rem;
    gap: 1rem;
    min-height: 4rem;
    color: var(--preto-8);
    border-radius: var(--border-radius-05);
    font-size: 1rem;
    line-height: 1.25rem;
    margin-bottom: 0;
}

.faq-titulo:hover {
    background: var(--secundaria-2);
}

.faq-titulo::after {
    content: '+';
    color: var(--roxo-6);
    margin-left: 1rem;
    font-weight: 500;
    font-size: 1.75rem;
    transition: transform 0.2s ease-out;
}

.faq-conteudo {
    padding: 1.5rem;
    margin-bottom: 0;
    display: none;
    font-size: .95rem;
}

.faq-conteudo * {
    color: var(--preto-7);
}

.faq-conteudo p:last-child {
    margin-bottom: 0;
}

.faq-conteudo p {
    margin-bottom: 1rem;
    font-weight: 400;
}

.lista-item ul {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.lista-item li {
    list-style: square;
    line-height: 1.5rem;
    font-weight: 600;
}

.lista-item:last-child {
    margin-bottom: 0;
}

.trigger-input {
    display: none;
}

.trigger-input:checked + .trigger-wrapper .faq-conteudo {
    display: block;
    background: var(--roxo-1);
    border-top: none;
    border-radius: 0 0 var(--border-radius-05) var(--border-radius-05);
}

.trigger-input:checked + .trigger-wrapper .faq-titulo {
    background: var(--secundaria-2);
    margin-bottom: 0 !important;
    border-radius: .5rem .5rem 0 0;
}

.trigger-input:checked + .trigger-wrapper .faq-titulo::after {
    transform: rotate(135deg);
}

.trigger-input:checked + .trigger-wrapper .faq-titulo {
    border-bottom: 1px solid var(--preto-2);
}

/* FIM - FAQ */

/* INÍCIO - CARDS DE BLOG */

.segura__texto_card_blog h3, .segura__texto_card_blog h2, .grid__mosaico > li h2, .card__newsletter h2 {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: break-spaces;
}

.tag__tipo_midia {
    padding: 0.25rem 1rem;
    font-size: .875rem;
    border-radius: 0 0.15rem 0.15rem 0;
    background: var(--preto);
    display: flex;
    align-items: center;
    max-width: fit-content;
    z-index: 1;
    top: 1rem;
    left: 0rem;
    font-weight: 600;
}

.tag__tipo_midia span {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.tag__tipo_midia.podcast {
    background: #6B3EFF;
}

.tag__tipo_midia.webinar {
    background: rgb(218, 160, 0);
}

.segura__topo_card {
    display: flex;
    flex-flow: column;
    justify-content: end;
    align-items: end;
    gap: .25rem;
}

.grid__mosaico .segura__topo_card {
    padding-right: .0;
}

.wp-block-separator {
    border: 1px solid var(--preto-7) !important;
    margin: 1.75rem 0;
}

.inside__menu_ads {
    padding: 2rem 0 2rem 0;
}

/* FIM - CARDS DE BLOG */

/* INÍCIO - FOOTER */

footer {
    background: var(--roxo-6);
}

.footer__main {
    display: grid;
    grid-template-columns: .75fr 1.5fr;
    gap: 3rem;
}

.footer__main span {
    font-size: 1rem;
    display: block;
    color: var(--branco);
    font-weight: 600;
    line-height: 120%;
    margin-bottom: .875rem;
    text-align: left;
}

.footer__topo p, .footer__topo strong, .footer__main p, .footer__main strong, .footer__main ul li a {
    color: var(--preto-2);
    font-size: .875rem;
    line-height: 1.25rem;
}

.footer__main p:last-child {
    margin-bottom: 0;
}

.footer__main ul {
    margin: 1rem 0 0 0;
    text-align: left;
}

.footer__main ul ul {
    margin: 0.25rem 0 0 0;
    padding-left: .75rem;
}

.footer__main ul li {
    margin-bottom: 0.5rem;
}

.footer__redes_sociais li {
    margin-bottom: 0 !important;
}

.footer__logos_parceiros, .footer__logos_parceiros ul {
    margin: 0;
}

.footer__main ul li:last-child {
    margin-bottom: 0;
}

.footer__main ul li a {
    padding: .15rem 0;
    display: block;
    line-height: 140%;
    font-weight: 400;
}

.footer__main ul li a:hover, .footer__main ul li a:active {
    text-decoration: underline;
}

.footer__copywriting {
    background-color: var(--roxo-9);
    border-top: 1px solid var(--roxo-2);
    padding: 2rem 0 2rem 0;
    box-sizing: border-box;
    font-weight: 400;
}

.footer__copywriting_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer__copywriting small, .footer__copywriting span {
    display: flex;
    gap: 1rem;
    color: var(--preto-1);
    margin-bottom: 0;
    line-height: 1.3rem;
    font-weight: 400;
}

.footer__copywriting small a {
    font-size: .875rem;
}

.footer__redes_sociais {
    display: inline-flex;
    gap: .25rem;
    align-items: center;
}

.sobre__nos a {
    color: var(--preto-9);
    text-decoration: underline;
}

.schema-faq div[style] {
    display: none;
}

.card__categories:hover h3 {
    color: var(--branco) !important;
}

.div__ads {
    overflow: hidden;
    width: auto;
    display: flex;
    justify-content: center;
    gap: .5rem;
    flex-direction: column;
    align-items: center;
    background-color: #ececec;
    background-image: url(../img/sections/ad-bg.png);
    padding: 1rem 0 !important;
    min-height: 300px;
}

.div__ads_h100 {
    min-height: 100px;
}

.div__ads_h300 {
    min-height: 300px;
}

.div__ads p, .div__ads a, .div__ads span {
    margin-bottom: 0;
}

.div__ads > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.d-none-desktop {
    display: block !important;
}

.d-none-mobile {
    display: none !important;
}

/* FIM - FOOTER */

/* INÍCIO - COOKIES */

.cookies-container {
    position: fixed;
    width: 100%;
    bottom: 2rem;
    z-index: 1000;
}

.flex__cookies { display: grid; grid-template-columns: 1fr .3fr; grid-gap: 1rem; align-items: center; }

.flex__cookies p {
    margin-bottom: 0;
    font-size: .875rem;
    color: var(--preto-8);
}

.cookies-content {
    max-width: 1430px;
    padding: 1.1rem 1.5rem 1rem 1.5rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    opacity: 0;
    transform: translateY(1rem);
    animation: slideUp .6s forwards .5s;
    box-shadow: var(--box-shadow);
}

@keyframes slideUp {
to {
  transform: initial;
  opacity: initial;
}
}

.cookies-pref {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    margin-right: .5rem;
    padding-top: 1px;
    min-width: 225px;
}

.control {
    display: block;
    position: relative;
    padding-left: 1.75rem;
    padding-top: 1px;
    cursor: pointer;
    font-size: .75rem;
    line-height: 1.3rem;
    color: var(--preto-8);
}

.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    cursor: pointer;
    background-color: var(--preto-2);
}

textarea {
    height: 7rem;
    resize: none;
}

.control_indicator {
    position: absolute;
    top: 0px;
    left: 0;
    height: 21px;
    width: 21px;
    border: 1px solid var(--preto-4);
    border-radius: 5rem;
}

.control:hover input ~ .control_indicator, .control input:focus ~ .control_indicator {
    background: transparent;
}

.control input:checked ~ .control_indicator {
    background: var(--roxo-5);
}

.control:hover input:not([disabled]):checked ~ .control_indicator, .control input:checked:focus ~ .control_indicator {
    background: var(--roxo-5);
}

.control input:disabled ~ .control_indicator {
    background: var(--roxo-9);
    opacity: 1;
    pointer-events: none;
}

.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}

.control input:checked ~ .control_indicator:after {
    display: block;
}

.control-checkbox .control_indicator:after {
	left: 8px;
    top: 4px;
    width: 3px;
    height: 7px;
    border: solid var(--preto-1);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.control-checkbox input:disabled ~ .control_indicator:after {
    border-color: var(--preto-1);
}

.control-checkbox .control_indicator::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 4rem;
    height: 4rem;
    margin-left: -1.35rem;
    margin-top: -1.3rem;
    border-radius: 50%;
    background: var(--branco);
    opacity: 0.6;
    transform: scale(0);
}

@keyframes s-ripple {
	0% {
		transform: scale(0);
	}
	40% {
		transform: scale(1.2);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}

@keyframes s-ripple-dup {
	0% {
	   transform: scale(0);
	}
	60% {
		transform: scale(1.2);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}

.control-checkbox input:checked ~ .control_indicator::before {
    animation: s-ripple .5s ease-out;
}

/* FIM - COOKIES */

/* INÍCIO - TOOLTIP GENÉRICO */

.pb-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    margin-left: .15rem;
    border-radius: 50%;
    font-size: .75rem;
    line-height: 1;
    font-weight: 700;
    cursor: help;
    color: var(--info, #9e60cc);
    flex-shrink: 0;
    z-index: 30;
}

.pb-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + .55rem);
    transform: translateX(-50%);
    width: 220px;
    max-width: 70vw;
    padding: .55rem .7rem;
    border-radius: .4rem;
    background: var(--preto-8, #2C2E35);
    color: var(--branco, #fff);
    font-size: .75rem;
    line-height: 1.35;
    font-weight: 400;
    text-align: left;
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 9999999;
    box-shadow: 0 8px 24px rgba(0,0,0,.22);
}

.pb-tooltip::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(100% + .2rem);
    transform: translateX(-50%);
    border: .35rem solid transparent;
    border-top-color: var(--preto-8, #2C2E35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 9999999;
}

.pb-tooltip:hover::after, .pb-tooltip:hover::before, .pb-tooltip:focus::after, .pb-tooltip:focus::before, .pb-tooltip:focus-visible::after, .pb-tooltip:focus-visible::before {
    opacity: 1;
    visibility: visible;
}

/* FIM - TOOLTIP GENÉRICO */

/* INÍCIO - MODIFICADORES GENÉRICOS OPCIONAIS */

.pb-tooltip--right::after {
    left: auto;
    right: -1rem;
    transform: none;
}

.pb-tooltip--right::before {
    left: auto;
    right: -.15rem;
    transform: none;
}

.pb-tooltip--left::after {
    left: -1rem;
    right: auto;
    transform: none;
}

.pb-tooltip--left::before {
    left: .15rem;
    right: auto;
    transform: none;
}

.pb-tooltip--bottom::after {
    top: calc(100% + .55rem);
    bottom: auto;
}

.pb-tooltip--bottom::before {
    top: calc(100% + .2rem);
    bottom: auto;
    border-top-color: transparent;
    border-bottom-color: var(--preto-8, #2C2E35);
}

/* FIM - MODIFICADORES GENÉRICOS OPCIONAIS */

/* INÍCIO - AJUSTES ESPECÍFICOS PARA O COOKIE BANNER */

.cookies-content, .cookies-pref, .cookies-pref .control {
    overflow: visible;
}

.cookies-pref .control {
    display: flex;
    align-items: center;
    gap: .25rem;
    position: relative;
}

.cookies-pref .control.disabled {
    cursor: not-allowed;
}

.cookies-pref .control.disabled input {
    cursor: not-allowed;
}

/* FIM - AJUSTES ESPECÍFICOS PARA O COOKIE BANNER */

/* INÍCIO - MANTÉM EXATAMENTE O AJUSTE VISUAL QUE FUNCIONOU NO COOKIE BANNER */

.pb-tooltip--cookie {
    top: -3px;
    left: -6px;
}

/* FIM - MANTÉM EXATAMENTE O AJUSTE VISUAL QUE FUNCIONOU NO COOKIE BANNER */

/* INÍCIO - AJUSTES FOMO */

:root {
    --fomo-z: 99;
    --fomo-w: 440px;
    --fomo-g: 0.9rem;
}

.fomo {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: min(90vw, var(--fomo-w));
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 0.95rem 0.85rem 0.85rem;
    background: var(--secundaria-2);
    border: 1.5px solid var(--roxo-extra-1);
    color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    z-index: var(--fomo-z);
    transform: translateX(120%);
    will-change: transform, opacity;
}

.fomo__link {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--fomo-g);
    text-decoration: none;
    color: inherit;
    align-items: center;
}

.fomo__img {
    aspect-ratio: 1 / 1;
    border-radius: 0.25rem;
    object-fit: cover;
    background: var(--preto-2);
}

.fomo__body {
    display: grid;
    gap: 0.25rem;
}

.fomo__title {
    font-size: 1rem;
    margin: 0;
    font-weight: 700;
    color: var(--preto-9);
}

.fomo__txt {
    font-size: 0.785rem;
    line-height: 1.05rem !important;
    margin: 0;
    color: var(--preto-6);
}

.fomo__close {
    position: absolute;
    top: 3px;
    right: 7px;
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--preto-6);
    font-size: 1.1rem;
    line-height: 1;
    padding: 0.25rem;
    cursor: pointer;
    border-radius: 8px;
}

.fomo__close:hover {
    color: var(--preto-8);
}

.fomo.is-in {
    animation: fomo-in-rtl 500ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.fomo.is-out {
    animation: fomo-out-rtl 550ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fomo-in-rtl {
	0% {
		transform: translateX(120%);
		opacity: 0;
	}
	60% {
		transform: translateX(0%);
		opacity: 1;
	}
	100% {
		transform: translateX(0%);
		opacity: 1;
	}
}

@keyframes fomo-out-rtl {
	0% {
		transform: translateX(0%);
		opacity: 1;
	}
	100% {
		transform: translateX(140%);
		opacity: 0;
	}
}

/* FIM - AJUSTES FOMO */

/* INÍCIO - MODAL EXIT INTENT */

#modal_exit {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    padding: 1rem;
}

#modal_exit.mostrar {
    display: flex;
}

.modalexit {
    max-width: 800px;
    width: 100%;
    position: relative;
}

.modalexit .fechar {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--roxo-8);
    color: #fff;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

/* SHAKE ANIMATION */

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-3px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(3px, 0, 0);
  }
}

/* ANIMAÇÕES ENTRADAS */

/* ANIMAÇÕES — BASE */

.js [class*="js__scroll_"] {
    opacity: 0;
    transition: 0.5s ease;
    will-change: transform, opacity;
}

/* ANIMAÇÕES — DIREÇÕES */

.js .js__scroll_left {
    transform: translateX(-50px);
}

.js .js__scroll_right {
    transform: translateX(50px);
}

.js .js__scroll_up {
    transform: translateY(50px);
}

.js .js__scroll_down {
    transform: translateY(-50px);
}

/* ANIMAÇÕES — ATIVO */

.js .ativo {
    opacity: 1;
    transform: translate(0, 0);
}

/* FIM - MODAL EXIT INTENT */

/* INÍCIO - TOGGLE DE TEMA */

.theme__switch input[type="checkbox"] {
    all: unset;
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
}

.theme__switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    position: relative;
    cursor: pointer;
}

.theme__switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.theme__button_icon_sol {
    display: block;
}

.theme__button_icon_lua {
    display: none;
}

/* FIM - TOGGLE DE TEMA */

/* INÍCIO - ESTADO ESCURO NO HTML */

.dark__mode .theme__button, .dark__mode .theme__button {
    background-color: var(--preto-9, #111111);
}

.dark__mode .theme__button_icon_sol, .dark__mode .theme__button_icon_sol {
    display: none;
}

.dark__mode .theme__button_icon_lua, .dark__mode .theme__button_icon_lua {
    display: block;
}

/* FIM - ESTADO ESCURO NO HTML */

/* INÍCIO - MENU OVERLAY */

#menuoverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0405059A;
    z-index: 8;
    pointer-events: none;
    transition: .3s ease;
}

.customize-support .header__group.fixed {
    margin-top: 32px;
}

.customize-support .caixa__menu {
    top: 4rem;
}

.posts_menu__mobile {
    display: grid;
}

.texto__destacado {
    background-color: var(--secundaria-1);
    padding: 0 3px;
}

.menu__mob2 {
    display: none;
}

.recaptcha-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 999999;
}

.recaptcha-modal.active, .recaptcha-modal.is-open {
    display: block;
}

.recaptcha-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
}

.recaptcha-modal__content {
    position: relative;
    z-index: 999;
    max-width: 360px;
    margin: 15vh auto;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.recaptcha-modal__content input {
    width: 100%;
}

.newsletter--focus {
    animation: newsletterBgFocus 2.8s ease-out;
}

@keyframes newsletterBgFocus {
    0% {
        background: var(--blue-cold-dark);
    }

    25% {
        background: linear-gradient(
            135deg,
            var(--blue-cold-dark) 0%,
            var(--blue-medium) 0%,
            var(--blue-cold-dark) 100%
        );
    }

    55% {
        background: linear-gradient(
            135deg,
            var(--blue-cold-dark) 0%,
            var(--blue-medium) 0%,
            var(--blue-cold-dark) 100%
        );
    }

    100% {
        background: var(--blue-cold-dark);
    }
}

/* FIM - MENU OVERLAY */

/* INÍCIO - MÓDULO TABS / SLIDER / GRID MANSORY */

.tabs-slider__texto {
    background-color: var(--roxo-1);
    border-radius: .5rem;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
}

.tabs-slider__vermais {
    background-color: var(--secundaria-2);
    border-radius: .5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}


/* INÍCIO - MÓDULO TABS / SLIDER / GRID MANSORY */

/* TABS SLIDER */

.tabs_slider_section .tabs-slider .splide__slide {
	width: 300px;
}

.tabs-slider .splide__track {
	overflow: visible;
}

.tabs-slider__vermais:hover {
	background-color: var(--amarelo-mostarda-claro);
}

/* CARD */

.tabs-slider__card {
	position: relative;
	display: block;
	height: 100%;
	overflow: hidden;
	border-radius: .5rem;
}

.tabs-slider__list li:nth-child(odd) {
	height: 380px;
}

.tabs-slider__list li:nth-child(even) {
	height: 330px;
}

/* GRID MANSORY */

.tabs-mansory__list li {
	position: relative;
	aspect-ratio: 1 / 1;
}

.galeria-mansory__list figure,
.tabs-mansory__list figure {
	height: 100%;
	margin: 0;
}

.galeria-mansory__list img,
.tabs-mansory__list img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* RITMO DA GALERIA MANSORY */

.galeria-mansory__list li:nth-child(6n+1),
.galeria-mansory__list li:nth-child(6n+2),
.galeria-mansory__list li:nth-child(6n+3) {
	aspect-ratio: 5 / 4;
}

.galeria-mansory__list li:nth-child(6n+4),
.galeria-mansory__list li:nth-child(6n+5),
.galeria-mansory__list li:nth-child(6n+6) {
	aspect-ratio: 1 / 1;
}

/* RITMO QUEBRADO DO TABS MANSORY */

.tabs-mansory__list li {
	aspect-ratio: 1 / 1;
}

.tabs-mansory__list li:nth-child(7n+1) {
	aspect-ratio: 5 / 4;
}

.tabs-mansory__list li:nth-child(7n+2) {
	aspect-ratio: 1 / 1;
}

.tabs-mansory__list li:nth-child(5n+3) {
	aspect-ratio: 10 / 11;
}

.tabs-mansory__list li:nth-child(7n+4) {
	aspect-ratio: 9 / 8;
}

.tabs-mansory__list li:nth-child(7n+5) {
	aspect-ratio: 1 / 1;
}

.tabs-mansory__list li:nth-child(7n+6) {
	aspect-ratio: 1 / 1;
}

.tabs-mansory__list li:nth-child(7n+7) {
	aspect-ratio: 10 / 9;
}

/* CARDS ESPECIAIS */

.tabs-mansory__list li.texto__inicial {
	aspect-ratio: auto !important;
}

.tabs-mansory__list li:has(.tabs-slider__vermais),
.tabs-mansory__list li.tabs-slider__placeholder {
	aspect-ratio: 16 / 9 !important;
}

/* IMAGEM */

.tabs-slider__card figure {
	height: 100%;
	margin: 0;
	overflow: hidden;
	border-radius: .5rem;
}

.tabs-slider__card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: .5rem;
}

/* GRADIENTE DE PROTEÇÃO */

.tabs-slider__card::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		0deg,
		#08010d 2.83%,
		rgb(68 32 95 / 10%) 70%
	);
	border-radius: .5rem;
	pointer-events: none;
}

/* TEXTO SOBRE A IMAGEM */

.segura__texto_absolute {
	position: absolute;
	right: 20px;
	bottom: 24px;
	left: 20px;
	z-index: 2;
}

/* TAGS */

.tabs-slider__card_tag1 {
	color: var(--branco);
	border: 1px solid var(--preto-2);
	border-radius: 4px;
}

.tabs-slider__card_tag2 {
	color: #38322e;
	background-color: var(--preto-2);
	border: 1px solid var(--preto-2);
	border-radius: 4px;
}

/* SETAS DO TABS SLIDER */

.tabs-slider .splide__arrow {
	width: 40px;
	height: 40px;
	color: var(--branco);
	background-color: var(--roxo-8);
	border: 2px solid var(--branco);
	opacity: 1;
}

.tabs-slider .splide__arrow svg {
	fill: var(--branco);
}

.tabs-slider .splide__arrow--prev {
	left: -10px;
}

.tabs-slider .splide__arrow--next {
	right: -10px;
}

/* PAGINAÇÃO DO TABS SLIDER */

.tabs-slider .splide__pagination {
	position: absolute;
	right: 0;
	bottom: -40px;
	left: 0;
	z-index: 1;
	margin-top: 30px;
	padding: 0 .5rem;
}

.tabs-slider .splide__pagination__page {
	width: 10px;
	height: 10px;
	background-color: var(--roxo-8);
	opacity: .45;
}

.tabs-slider .splide__pagination__page.is-active {
	background-color: var(--branco);
	border: 2px solid var(--roxo-8);
	opacity: 1;
}

/* SETAS DO MODAL */

.gallery-modal .splide__arrow {
	width: 2.3em;
	height: 2.3em;
	color: var(--branco);
	background-color: var(--roxo-8);
	border: 2px solid var(--branco) !important;
	opacity: 1;
}

.gallery-modal .splide__arrow svg {
	fill: var(--branco);
}

/* FIM - MÓDULO TABS / SLIDER / GRID MANSORY */

/* INÍCIO - MÓDULO SLIDER COM TEXTO STICKY */

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.gallery-modal[hidden] {
    display: none;
}

.gallery-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
}

.gallery-modal__content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.gallery-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--branco);
    font-size: 28px;
    cursor: pointer;
}

.gallery-modal__caption {
    color: var(--branco);
    padding-top: 0.5em;
}

.gallery-modal__image img {
    max-height: 70vh;
    max-width: 90vw;
    object-fit: contain;
}

.gallery-modal__thumbs {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.gallery-thumb {
    height: 60px;
    cursor: pointer;
    opacity: 0.6;
}

.gallery-thumb.is-active {
    opacity: 1;
    border: 2px solid #fff;
}

.gallery-modal__main img {
    max-height: 70vh;
    object-fit: contain;
    margin: 0 auto;
}

.gallery-modal__thumbs {
    margin-top: 20px;
}

.gallery-modal__thumbs img {
    cursor: pointer;
    opacity: 0.6;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-modal__thumbs .is-active img {
    opacity: 1;
    border: 2px solid #fff;
}

.allinclusive_slider_section {
    background-repeat: no-repeat;
    background-position: right;
    background-size: auto;
}

/* IMAGEM */

.allinclusive_slider_section figure {
    margin: 0;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.allinclusive_slider_section figure img {
    width: 100%;
    min-height: 440px;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    border-radius: .5rem;
}

.allinclusive_slider_section .break__inside figure img {
    min-height: auto;
}

.lista__destaques_vertical {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lista__destaques_vertical span {
    background-color: var(--branco);
    border-radius: var(--border-radius-05);
    color: var(--preto-8);
    font-weight: 400;
    font-size: .875rem;
    line-height: normal;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: .5rem 1rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lista__destaques_vertical span i {
    display: none;
    width: 10px;
    height: 10px;
    background-color: var(--preto-8);
    border-radius: 100%;
    box-shadow: 0 0 0 4px var(--verde-borda-1);
    flex-shrink: 0;
}

.lista__destaques_vertical.exibe__ponto span i {
    display: block;
}

.galeria-mansory__list img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* DOTS */

.allinclusive-slider .splide__pagination {
    bottom: 10px;
    left: 0;
    padding: 0 1em;
    position: absolute;
    right: 0;
    z-index: 1;
}

.allinclusive-slider .splide__pagination {
    margin-top: 30px;
}

.allinclusive-slider .splide__pagination__page {
    width: 10px;
    height: 10px;
    background: var(--branco);
    opacity: 1;
}

.allinclusive-slider .splide__pagination__page.is-active {
    opacity: 1;
    background: var(--preto-5);
    border: 2px solid var(--branco);
}

/* FIM - MÓDULO SLIDER COM TEXTO STICKY */

/* INÍCIO - SECTION EXPLORE REGIÃO */

.section__explore_regiao figure img {
    filter: sepia(.4);
}

/* FIM - SECTION EXPLORE REGIÃO */

/* INÍCIO - ARCHIVE EMPREENDIMENTOS / CHIPS / FILTROS */

.navegacao__caminho_empreendimentos .filtros__ativos_linha {
    width: 100%;
}

.filtros__ativos_empreendimentos {
    list-style: none;
    margin: 0;
    padding: 0;
}

.filtro__ativo_chip {
    border: 1px solid var(--roxo-7);
    color: var(--roxo-7);
    background: transparent;
    padding: 0.45rem 0.85rem;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
}

.filtro__ativo_chip:hover {
    background: var(--roxo-1);
    color: var(--roxo-8);
}

.filtro__ativo_chip span {
    font-size: 1rem;
    line-height: 1;
}

.tabs__ancoras_empreendimentos {
    width: 100%;
}

.filtro__limpar_wrap {
    flex-shrink: 0;
}

.areas__comuns_ver_menos {
    display: none;
}

.areas__comuns_details[open] .areas__comuns_ver_mais {
    display: none;
}

.areas__comuns_details[open] .areas__comuns_ver_menos {
    display: inline;
}

/* FIM - ARCHIVE EMPREENDIMENTOS / CHIPS / FILTROS */

/* INÍCIO - MÓDULO CADASTRO */

.modal__formempreendimento {
    position: fixed;
    inset: 0;
    z-index: 99;
    display: none;
}

.modal__formempreendimento.ativo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__formempreendimento_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.75);
}

.modal__formempreendimento_content {
    position: relative;
    z-index: 2;
    width: min(70vw, 500px);
    max-height: 70vh;
    overflow: auto;
    border-radius: 1rem;
}

.modal__formempreendimento_close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--roxo-9);
    z-index: 999;
}

body.modal__formempreendimento_open {
    overflow: hidden;
}

.modulocadastro__slider, .modulocadastro__slider .splide__track {
    height: 100%;
}

.modulocadastro__slider figure {
    margin: 0;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.modulocadastro__slider img {
    height: 100%;
    border-radius: 15px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.modulocadastro__slider .splide__pagination {
    bottom: 10px;
    left: 0;
    padding: 0 1em;
    position: absolute;
    right: 0;
    z-index: 1;
}

.modulocadastro__slider .splide__pagination {
    margin-top: 30px;
}

.modulocadastro__slider .splide__pagination__page {
    width: 10px;
    height: 10px;
    background: var(--branco);
    opacity: 1;
}

.modulocadastro__slider .splide__pagination__page.is-active {
    opacity: 1;
    background: var(--laranja-cacau);
    border: 2px solid var(--branco);
}

.section__cadastro_form {
    background-color: var(--branco);
    border-radius: 1rem;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.section__cadastro_grafismo {
    max-width: 75px;
    position: absolute;
    right: 20px;
    top: 27px;
}

.section__cadastro_titulo {
    color: var(--marrom-cacau);
    font-size: 2rem;
}

.section__cadastro_label {
    color: var(--preto-8);
}

.section__cadastro_input, .section__cadastro_select {
    background-color: var(--branco) !important;
    border: 1.5px solid var(--roxo-4) !important;
}

.section__cadastro_checkbox {
    max-width: 22px;
    background-color: var(--branco) !important;
    border: 1.5px solid var(--roxo-4) !important;
}

.section__cadastro_terms {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* FIM - MÓDULO CADASTRO */

/* INÍCIO - MÓDULO METADE / METADE */

.tags__metade {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.tags__metade li {
    background-color: var(--bg-areia);
    padding: .6rem;
    border-radius: 4px;
    width: fit-content;
    font-size: 0.8rem;
    color: var(--preto-8);
}

.btn__fill {
    color: var(--branco);
    background: transparent;
    border: 1.5px solid var(--branco);
}

.btn__fill:hover {
    color: var(--roco-8 );
    background: var(--branco);
}

.btn__fill:hover svg {
    animation: moveArrow 0.6s ease;
}

.descricao__metade_metade p:last-child {
    margin-bottom: 0;
}

/* IMAGEM */

.metade_metade_slider figure {
    margin: 0;
    height: 100%;
    overflow: hidden;
}

.metade_metade_slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: .325rem;
}

.metade_metade_slider .splide__pagination {
    bottom: 10px;
    left: 0;
    padding: 0 1em;
    position: absolute;
    right: 0;
    z-index: 1;
}

.metade_metade_slider .splide__pagination {
    margin-top: 30px;
}

.metade_metade_slider .splide__pagination__page {
    width: 10px;
    height: 10px;
    background: var(--branco);
    opacity: 1;
}

.metade_metade_slider .splide__pagination__page.is-active {
    opacity: 1;
    background: var(--preto-5);
    border: 2px solid var(--branco);
}

/* FIM - MÓDULO METADE / METADE */

/* INÍCIO - MÓDULO DEPOIMENTOS / STORIES SLIDER */

.section__stories_cliente .depoimentos-storie-slider figure, .section__stories_cliente .depoimentos__storie_single figure {
    aspect-ratio: 3 / 4;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius-1);
}

.section__stories_cliente .depoimentos-storie-slider figure img, .section__stories_cliente .depoimentos-storie-slider figure video, .section__stories_cliente .depoimentos__storie_single figure img, .section__stories_cliente .depoimentos__storie_single figure video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section__stories_balao div {
    box-shadow: var(--box-shadow-2);
    background-color: var(--branco);
    border-radius: var(--border-radius-05);
    padding: 1rem;
    width: fit-content;
    max-width: 230px;
}

.section__stories_balao img {
    border-radius: var(--border-radius-025);
    margin: auto;
    max-width: 250px;
}

.section__stories_balao div span {
    color: var(--preto-8);
}

.section__stories_balao.balao_1 div {
    position: absolute;
    bottom: -30px;
    right: 0px;
}

.section__stories_balao.balao_2 div {
    position: absolute;
    bottom: -30px;
    right: 0px;
}

.section__stories_balao.balao_3 div {
    position: absolute;
    bottom: -120px;
    left: 0px;
}

.depoimentos-card {
    padding: 29px;
    background: #3B705D;
    border-radius: 15px;
}

.depoimentos-card .rating {
    color: #F7B335;
    font-size: 25px;
}

.depoimentos-card .depo__title {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #F8F4EB;
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
}

.depoimentos-card p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #F8F4EB;
}

.depoimentos-card cite {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #F8F4EB;
}

/* DOTS */

.galeria__horizontal_itens .splide__pagination, .depoimentos-storie-slider .splide__pagination, .depoimentos-card-slider .splide__pagination, .padrao-card-slider .splide__pagination {
    bottom: -40px;
    left: 0;
    padding: 0 1em;
    position: absolute;
    right: 0;
    z-index: 1;
}

.galeria__horizontal_itens .splide__pagination, .depoimentos-storie-slider .splide__pagination, .depoimentos-card-slider .splide__pagination, .padrao-card-slider .splide__pagination {
    margin-top: 30px;
}

.galeria__horizontal_itens .splide__pagination__page, .depoimentos-storie-slider .splide__pagination__page, .depoimentos-card-slider .splide__pagination__page, .padrao-card-slider .splide__pagination__page {
    width: 10px;
    height: 10px;
    background: #A8A09A;
    opacity: 1;
}

.galeria__horizontal_itens .splide__pagination__page.is-active, .depoimentos-storie-slider .splide__pagination__page.is-active, .depoimentos-card-slider .splide__pagination__page.is-active, .padrao-card-slider .splide__pagination__page.is-active {
    opacity: 1;
    background: #F8F4EB;
    border: 2px solid #A8A09A;
}

/* FIM - MÓDULO DEPOIMENTOS / STORIES SLIDER */

/* INÍCIO - ANIMAÇÃO BACKGROUND / NEWSLETTER FOCUS */

.newsletter--focus {
    animation: newsletterBgFocus 3s ease-out forwards;
}

@keyframes newsletterBgFocus {
	0% {
		background: var(--roxo-1);
	}

	45% {
		background: var(--roxo-1);
	}

	52% {
		background: var(--roxo-3);
	}

	60% {
		background: var(--roxo-1);
	}

	68% {
		background: var(--roxo-3);
	}

	78% {
		background: var(--roxo-2);
	}

	100% {
		background: var(--roxo-1);
	}
}

@keyframes pulsarBorda {
  0% {
      box-shadow: 0 0 0 0 rgba(255, 199, 93, 0.8);
  }
  50% {
      box-shadow: 0 0 14px 8px rgba(255, 199, 93, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(255, 199, 93, 0);
  }
}

.pulsar {
    animation: pulsarBorda 2s infinite ease-in-out;
}

/* FIM - ANIMAÇÃO BACKGROUND / NEWSLETTER FOCUS */

/* GRID RESPONSIVO REUTILIZÁVEL */

.grid__responsive {
    width: 100%;
}

.d-none-desktop { display:block !important; }
.d-none-mobile  { display:none !important; }

/* RESPONSIVO — TABLET GRANDE */

/* RESPONSIVO — TABLET */

/* RESPONSIVO — MOBILE */

.galeria__horizontal img {
    height: 300px;
}

.section__tourvirtual .splide__arrow {
    border: 2px solid var(--branco) !important;
    height: 2.5em;
    width: 2.5em;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0px 0px 8px 1px rgba(255,255,255,0.9);
    backdrop-filter: blur(10px) saturate(180%) contrast(120%);
}

/* RESPONSIVO CONSOLIDADO */

@media (max-width: 1050px) {
    .hero__resultados_content {
        left: 1.25rem;
        right: 1.25rem;
        bottom: 1.25rem;
    }

    .logo__main_menu img {
        width: 134px;
    }

    
/* MÓDULO SLIDER + DETALHES DO EMPREENDIMENTO */

    .hero__home_slider .hero__grafismo {
        display: none;
    }

    .hero-slider .splide__slide {
        height: 277px;
        min-height: 277px;
    }

    .hero-slider .splide__slide img {
        height: 277px;
    }

    .hero-slider .splide__slide h2, .hero-slider li h1, .hero-slider li h2 {
        font-size: 20px;
        line-height: 24px;
        bottom: 1.25rem;
        margin-bottom: 0px;
        left: 1.25rem;
        width: 90%;
    }

    .detalhes__slider {
        max-width: 100% !important;
        top: 0 !important;
        margin-bottom: 2rem !important;
    }

    .tag__estagio {
        top: 1.25rem;
        left: 1.25rem;
    }
	
	.tag__his  {
		top: 3.5rem !important;
        left: 1.25rem;
	}

    
/* POST ARTICLE BLOG */

    .content__article h1 {
        font-size: 30px !important;
        line-height: 36px !important;
    }

    .content__article p {
        font-size: 1.15rem !important;
        line-height: 140% !important;
    }

    .img__card_blog {
        max-width: 100% !important;
        width: 100% !important;
    }

    .slide-items {
        min-height: max-content !important;
    }

    .container__big.grid__sidebar,.container__maior.grid__sidebar,.container__menor.grid__sidebar {
        display: block !important;
        justify-content: center;
    }

    .meta__info_author_single {
        flex-direction: column;
        gap: .5rem;
    }

    .content__wrapper {
        margin-top: 1rem;
    }

    .sidebar__block__blog {
        margin-bottom: .75rem;
    }

    .grid__social_article {
        display: flex !important;
        flex-direction: column-reverse;
        gap: 1rem !important;
    }

    .grid__social_article .redes__sociais_fixed {
        flex-direction: row !important;
        position: unset;
        justify-content: space-evenly;
        margin-bottom: 0 !important;
    }

    .main__img_post figure img {
        aspect-ratio: 4/2.5 !important;
    }

    .segura__main {
        max-width: 100%;
        flex: 100%;
        align-items: center;
        gap: .25rem;
        text-align: center;
    }

    .main__home h2, .main__home h1 {
        font-size: 2rem;
        line-height: 2.1rem;
        margin-bottom: .25rem;
    }

    .main__home h2 span, .main__home h1 span {
        padding: 0.15rem .15rem;
        margin-left: 0;
        font-size: 2rem;
        line-height: 2.1rem;
    }

    .segura__main p {
        padding: 0;
        font-size: .875rem;
    }

    .respiro__section {
        padding: 3rem 0;
    }

    .grid { grid-template-columns: 1fr; }

    .grid__1, .grid__2, .grid__3, .grid__4, .grid__5, .grid__6, .grid__7, .grid__8, .grid__9, .grid__10, .grid__11, .grid__12, .grid__content_sidebar, .grid__sidebar {
        grid-column: span 1 !important;
    }

    .js .respiro__topo {
        display: block;
        padding-top: 100px;
    }

    .js .customize-support .respiro__topo { padding-top: 100px; }
    .js .notificacao__header .respiro__topo { padding-top: 127px !important; }
    .js .customize-support .notificacao__header .respiro__topo { padding-top: 127px !important; }

    
/* PADDING */

    .fs__0_75_mob { font-size: .75rem !important; }
    .fs__0_875_mob { font-size: .875rem !important; }
    .fs__0_9_mob { font-size: .9rem !important; }
    .fs__1_mob { font-size: 1rem !important; }
    .fs__1_5_mob { font-size: 1.5rem !important; }
    .fs__1_05_mob { font-size: 1.05rem !important; }
    .fs__3_mob { font-size: 3rem !important; }
    .fs__1_15_mob { font-size: 1.15rem !important; }
    .fs__2_mob { font-size: 2rem !important; }
    .fs__2_5_mob { font-size: 2.5rem !important; }
    .pd__mob { padding-left: 1rem !important; padding-right: 1rem !important; }
    .pd__0_mob { padding: 0 !important; }
    .pd__0_5_mob { padding: .5rem !important; }
    .pr__1_mob { padding-right: 1rem !important; }
    .pd__1_mob { padding: 1rem !important; }
    .pl__1_mob { padding-left: 1rem !important; }
    .pd__1_25_mob { padding: 1.25rem !important; }
    .pd__1_5_mob { padding: 1.5rem !important; }
    .pd__2_mob { padding: 2rem !important; }
    .pt__0_mob { padding-top: 0 !important; }
    .pl__0_mob { padding-left: 0 !important; }
    .pr__0_mob { padding-right: 0 !important; }
    .pr__2_5_mob { padding-right: 2.5rem !important; }
    .pb__2_mob { padding-bottom: 2rem !important; }
    .mb__0_mob { margin-bottom: 0 !important; }
	.mb__0_5_mob { margin-bottom: .5rem !important; }
	.mb__1_mob { margin-bottom: 1rem !important; }
	.mb__1_5_mob { margin-bottom: 1.5rem !important; }
    .mt__0_mob { margin-top: 0 !important; }
    .mt__0_5_mob { margin-top: .5rem !important; }
    .mt__1_mob { margin-top: 1rem !important; }
    .mt__2_mob { margin-top: 2rem !important; }
    .display__block_mob { display: block !important; }
    .display__inline_mob { display: inline !important; }
    .display__inline_block_mob { display: inline-block !important; }
    .display__flex_mob { display: flex !important; }
    .display__grid_mob { display: grid !important; grid-template-columns: 1fr !important; }
    .display__none_mob { display: none !important; }
    .flex__direction_row_reverse_mob { flex-direction: row-reverse !important; }
    .flex__row_mob { flex-direction: row !important; }
    .flex__column_mob { flex-direction: column !important; }
    .flex__wrap_mob { flex-wrap: wrap !important; }
    .flex__nowrap_mob { flex-wrap: nowrap !important; }
    .justify__start_mob { justify-content: flex-start !important; }
    .justify__center_mob { justify-content: center !important; }
    .justify__end_mob { justify-content: flex-end !important; }
    .justify__between_mob { justify-content: space-between !important; }
    .justify__around_mob { justify-content: space-around !important; }
    .justify__evenly_mob { justify-content: space-evenly !important; }
	.justify__items_center_mob { justify-items: center !important; }
    .align__start_mob { align-items: flex-start !important; }
    .align__center_mob { align-items: center !important; }
    .align__end_mob { align-items: flex-end !important; }
    .align__stretch_mob { align-items: stretch !important; }
    .text__left_mob { text-align: left !important; }
    .text__center_mob { text-align: center !important; }
    .text__right_mob { text-align: right !important; }
    .grid__cols_1_mob { grid-template-columns: 1fr !important; }
    .grid__cols_2_mob { grid-template-columns: repeat(2, 1fr) !important; }
    .grid__cols_3_mob { grid-template-columns: repeat(3, 1fr) !important; }
    .grid__cols_auto_mob { grid-template-columns: auto !important; }
    .grid__cols_min_mob { grid-template-columns: min-content !important; }
    .grid__cols_max_mob { grid-template-columns: max-content !important; }
    .grid__cols_0_75fr_1fr_mob { grid-template-columns: .75fr 1fr !important; }
    .grid__cols_0_35fr_1fr_mob { grid-template-columns: .35fr 1fr !important; }
    .grid__cols_0_6fr_1fr_mob { grid-template-columns: .6fr 1fr !important; }
    .grid__cols_auto_flow_300 { grid-auto-flow: column; grid-template-columns: repeat(auto-fit, minmax(300px, max-content)); overflow-x: scroll !important; }

    .grid__odd_layout.grid__cols_2_mob {
        grid-template-columns: repeat(2,1fr) !important;
    }

    .grid__odd_layout.grid__cols_2_mob li:first-child {
        grid-column: span 2 !important;
    }

    .grid__odd_layout.grid__cols_2_mob li:not(:first-child) {
        grid-column: auto !important;
    }

    .gap__0_15_mob { gap: .15rem !important; }
    .gap__0_25_mob { gap: .25rem !important; }
    .gap__0_5_mob { gap: .5rem !important; }
    .gap__0_75_mob { gap: .75rem !important; }
    .gap__1_mob { gap: 1rem !important; }
    .gap__2_mob { gap: 2rem !important; }
    .column__count_2_tablet {column-count: 2 !important; }
	.column__count_3_tablet {column-count: 3 !important; }
	.order__mob_1_menos { order: -1; }
	.order__mob_1 { order: 1; }
    .order__mob_2 { order: 2; }
    .order__mob_3 { order: 3; }
    .order__mob_4 { order: 4; }
    .overflow__y_scroll_mob { overflow-y: scroll; }
    .mg__auto_mob { margin: 0 auto !important; }
    .mw__100_mob { max-width: 100% !important; }

    .max__width_300_mob {
        max-width: 300px;
    }

    .max__width_320_mob {
        max-width: 320px;
    }

    .aspect__ratio_1_1_mob { aspect-ratio: 1/1 !important; }
    .aspect__ratio_3_4_mob { aspect-ratio: 3/4 !important; }
    .aspect__ratio_4_3_mob { aspect-ratio: 4/3 !important; }
    .aspect__ratio_16_9_mob { aspect-ratio: 16/9 !important; }
    .overflow__x_scroll_mob { overflow-x: scroll; }

    .ul__cards_empreendimentos > li {
        width: 270px;
        flex: 0 0 270px;
    }

    .ul__cards_empreendimentos .img__empreendimento {
        height: 270px !important;
    }

    .faixa-transversal, .faixa-transversal_2, .faixa-transversal_3 {
        display: none !important;
    }

    .section__colunas_mista .grid__post_card.grid_misto {
        grid-template-columns: 1fr !important;
        overflow-x: hidden !important;
    }

    .section__colunas_mista .coluna_mista_espacos {
        min-width: 0;
    }

    .section__colunas_mista .grid__post_card.grid_misto > section {
        min-width: 0;
        width: 100%;
    }

    .section__empreendimentos .ul__cards_empreendimentos, .ul__cards_empreendimentos {
        overflow-x: scroll;
        grid-template-columns: repeat(4, minmax(290px, 1fr)) !important;
        display: grid;
    }

    .grid__responsive {
        grid-template-columns: repeat(3,1fr) !important;
    }

    .galeria__horizontal img {
        height: 200px;
    }

    .hero-slider .splide__pagination {
        bottom: -1em;
    }

    .lista__fichatecnica li {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 2rem;
        padding: 1rem 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--preto-1);
    }

    .section__tourvirtual_tour iframe {
        margin: auto;
        width: 100%;
		margin-bottom: -3.5px;
    }

    .section__tourvirtual_img img {
        width: 100%;
    }

    .galeria__horizontal_itens, .section__cards_empreendimentos {
        overflow: hidden;
    }

    .section__bloco_contraste img {
        opacity: 0.2;
    }

    .menu__mob2 {
        display: block;
    }

    .dropdown_links__mobile > a::after {
        background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_34021_1030)'%3E%3Cmask id='mask0_34021_1030' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='0' y='0' width='16' height='17'%3E%3Cpath d='M16 0.500003L0 0.5L-2.79753e-06 16.5L16 16.5L16 0.500003Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_34021_1030)'%3E%3Cpath d='M8 0.500001L6.59 1.91L12.17 7.5L-1.22392e-06 7.5L-1.57361e-06 9.5L12.17 9.5L6.59 15.09L8 16.5L16 8.5L8 0.500001Z' fill='white'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_34021_1030'%3E%3Crect width='16' height='16' fill='white' transform='translate(0 0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    }

    #navMain {
        position: fixed;
        inset: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    #navMain .scroll-discreta, #navMain .grid__post_card {
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
    }

    #navMain.active {
        border-top: 1px solid var(--blue-cold-dark);
    }

    .top__menu ul li:last-child {
        display: none;
    }

    .top__menu ul {
        justify-content: center !important;
    }

    .title__section {
        margin-bottom: 0;
        font-size: 1.15rem;
        line-height: 120%;
    }

    .inside__menu_ads {
        padding: 2rem 0 2rem 0;
    }

    .search__menu_mobile input[type='text'] {
        height: 50px;
        font-size: 0.6em;
        padding-right: 50px;
    }

    .search__menu_btn {
        display: none !important;
    }

    .busca_mobile {
        display: block !important;
    }

    .bloqueia_rolagem {
        height: 100vh;
        overflow: hidden;
    }

    .button_form_mobile {
        position: absolute;
        right: 10px;
        top: 12px;
    }

    .redes__mobile {
        margin-left: auto;
    }

    .label__search_mobile {
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
        text-align: center;
        color: var(--branco);
        display: block;
        margin-bottom: 15px;
    }

    .menu li:after {
        background: none;
    }

    .search__menu_mobile {
        display: block;
    }

    .menu__main_desktop_ul_direita {
        width: 100%;
    }

    .tab_lancamento {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .tab_lancamento::-webkit-scrollbar {
        width: 3px;
        height: 3px;
    }

    .tab_lancamento::-webkit-scrollbar-track {
        background: var(--preto-4);
        border-radius: 10px;
    }

    .tab_lancamento::-webkit-scrollbar-thumb {
        background-color: var(--preto-8);
        border-radius: 10px;
    }

    .tab_lancamento::-webkit-scrollbar-thumb:hover {
        background: var(--preto-8);
    }

    .tab button {
        white-space: nowrap;
    }

    .grid__card_completo h2, .grid__card_completo h3 {
        font-size: .95rem;
    }

    .grid__post_card_texto:hover h2, .grid__post_card_texto:hover h3, .grid__post_card_minimg:hover h2, .grid__post_card_minimg:hover h3, .grid__card_completo:hover h2, .grid__card_completo:hover h3, .grid__falencias li:hover h3 {
        text-decoration: none;
    }

    .text__underline, .text__underline_auto, .text__underline:hover, .text__underline_auto:hover { text-decoration: none !important; }

    .grid__mosaico > li:hover h2, .grid__mosaico > li:hover h3, .grid__post_card > li:hover h2, .grid__post_card > li:hover h3 {
        text-decoration: none;
    }

    .grid__post_card_imgdestaque, .grid__post_card_text li {
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--preto-2);
    }

    .card__glossario {
        padding-right: 1rem;
    }

    .breadcrumb {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .menu__topo_btn_newsletter a {
        padding: .75rem;
    }

    .menu__topo_btn_newsletter span {
        display: none;
    }

    .menu__main_group li:last-child:after {
        background: transparent;
    }

    #logomenu {
        width: 280px;
    }

    .menu__main_wrapper {
        display: grid;
        grid-template-areas: "left logo right";
        gap: 0.5rem;
        align-items: center;
    }

    .logo__main_menu {
        grid-area: logo;
        justify-self: center;
    }

    .menu__main_hamburguer, .menu__editorias_mobile {
        padding: 0;
        grid-area: left;
    }

    .menu__main_bookmark_busca {
        grid-area: right;
    }

    .grid__mosaico_text.hero__borda {
        padding: 1rem !important;
    }

    .menu__topo_btn_newsletter svg {
        width: 25px;
    }

    .menu__main_hamburguer, .menu__editorias_mobile {
        padding: 0;
    }

    .menu__main_group.active {
        height: calc(100vh - 190px) !important;
        overflow-y: scroll !important;
        padding: 2rem 1rem 5rem 1rem !important;
    }

    .menu__main_group li {
        width: 100%;
    }

    .menu__main__group_grid {
        grid-template-columns: auto;
    }

    #menudesktop {
        overflow-x: scroll !important;
    }

    .has__submenu .submenu, #menuoverlay, .menu__main_desktop .has__submenu > a::after {
        display: none !important;
    }

    .show__mob {
        display: block !important;
    }

    .show__desk {
        display: none !important;
    }

    .border__section { margin: 0 1rem; padding: 3rem 2rem; box-shadow: none; }

    .orientacao_mobile_ativa .grid__post_card, .section__colunas .orientacao_mobile_ativa {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .orientacao_mobile_ativa.fr__fr_mobile .grid__post_card {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .orientacao_mobile_ativa .grid__post_card > li {
        min-width: 100% !important;
        width: 100% !important;
    }

    .orientacao_mobile_ativa.border__bottom_article {
        border-bottom: 1px solid var(--preto-7);
        padding-bottom: 1rem;
    }

    .grid__segura_cards {
        gap: 1rem !important;
    }

    .border__bottom_article:last-child { border-bottom: none; }

    .grid__post_card_imgdestaque article figure img {
        aspect-ratio: 16/10;
        max-height: 160px;
    }

    .section__videos_canais .img__card_blog {
        height: 100% !important;
    }

    .dgrid__mob.box__whatsapp_inline_post {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    .grid__mosaico > li:nth-child(1) {
        height: 100%;
        aspect-ratio: 4 / 3;
        min-height: auto;
        margin-bottom: 0;
    }

    .grid__mosaico > li h2 {
        line-height: 120%;
        font-size: 1.05rem;
    }

    .grid__mosaico_text {
        left: 1rem;
        padding-right: 1rem !important;
        max-width: 100%;
    }

    .grid__mosaico > li:first-child h2 {
        font-size: 1.15rem;
        max-width: 100%;
    }

    .grid__mosaico_3 {
        display: flex;
        flex-wrap: wrap;
    }

    .grid__mosaico_3 li figure {
        height: 80% !important;
        max-height: 440px;
    }

    .grid__mosaico_3 li img {
        aspect-ratio: 4/3;
        object-position: center;
    }

    .grid__mosaico_3 li:first-child .text_chapeu {
        display: none;
    }

    .grid__mosaico_3 li {
        width: 100%;
        min-height: 290px;
    }

    .coluna__destaque__menor {
        width: 100%;
    }

    .grid__mosaico_3 figure {
        height: 100%;
        padding-bottom: 2rem;
    }

    .grid__mosaico_3 li:nth-child(1) {
        min-height: 380px;
    }

    .grid__mosaico_3 li h2, .grid__mosaico_3 li h3 {
        line-height: 1.5rem;
        font-size: 1.15rem;
    }

    .grid__mosaico_3 .grid__mosaico_text {
        left: 1.5rem;
        padding-right: 1.5rem !important;
    }

    .grid__mosaico_3 li:first-child h2, .grid__mosaico_3 li:first-child h3 {
        line-height: 1.5rem;
        font-size: 1.15rem;
        bottom: 1.25rem;
        left: 1.25rem;
        max-width: 100%;
    }

    .grid__mosaico_3 figure::after {
        transition: transform .3s ease;
        background: linear-gradient(0, var(--preto) 44%,rgba(29,29,27,0) 78%);
    }

    li:hover .text__underline { text-decoration: auto !important; }

    
/* MOBILE — DESATIVA HOVER */

    .section__videos_canais .grid__mosaico > li:not(:first-child) .grid__mosaico_text {
        visibility: visible;
        opacity: 1;
    }

    .grid__mosaico figure::after {
        transition: transform .3s ease;
        background: linear-gradient(0, var(--preto) 39%,rgba(29,29,27,0) 61%) !important;
    }

    .grid__post_card {
        overflow-x: scroll;
        gap: 1rem;
    }

    .section__colunistas ul, .section__colunistas ol, .section__colunistas_usuarios ul, .section__colunistas_usuarios ol {
        grid-auto-flow: column;
        grid-template-columns: repeat(auto-fit, minmax(300px, max-content));
        gap: 1rem !important;
        overflow-x: auto;
    }

    .section__colunistas_usuarios li {
        min-width: 300px;
    }

    .section__mais_lidas_horizontal a {
        background: transparent;
    }

    .section__mais_lidas_horizontal ol {
        grid-template-columns: repeat(1, 1fr) !important;
		overflow-x: clip !important;
    }
	
	.section__mais_lidas_horizontal ol li::before {
		font-size: 1.2rem;
		min-width: 1.5rem;
		padding: .25rem;
	}

    .section__2_colunas_grid, .section__3_colunas_grid {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 3rem !important;
    }

    .container__section {
        padding: 2rem 0 !important;
    }

    .section__newsletter_form {
        padding: 1.5rem;
    }

    .newsletter__form_topo {
        flex-direction: column;
        gap: 1rem !important;
    }

    .btn__1 {
        width: 100%;
    }

    .sidebar__blog {
        margin-top: 2rem;
    }

    .webstories__wrapper {
        overflow-x: scroll;
        grid-template-columns: repeat(5, minmax(220px, 1fr)) !important;
    }

    .tag__tipo_midia {
        padding: .15rem .75rem;
        font-size: .75rem;
        top: .5rem;
        left: 0;
    }

    .newsletter__grid {
        grid-template-columns: 1fr !important;
    }

    .newsletter__seta {
        display: none;
    }

    .newsletter__aviso p {
        max-width: 100%;
    }

    .sobre__nos img {
        margin: 0 auto 3rem auto !important;
    }

    .footer__copywriting_wrapper {
        display: grid;
        gap: 1rem;
        text-align: center;
        justify-content: center;
    }

    .caixa__menu {
        left: 0;
        min-width: auto;
        width: 100%;
        position: fixed;
    }

    .glossario__lista_a_z {
        flex-wrap: nowrap;
        overflow-x: scroll;
        justify-content: start;
    }

    
/* FAQ */

    .grid__faq {
        grid-template-columns: 1fr;
    }

    .wrapper {
        margin-bottom: 0;
    }

    .h2__p_faq h2 {
        text-align: center;
    }

    .wp-block-table {
        margin-right: -1rem;
        padding-right: 1rem;
    }

    .wp-block-table .has-fixed-layout {
        table-layout: auto;
    }

    
/* POST ARTICLE BLOG */

    .nav-blog {
        margin-bottom: 2rem;
    }

    .card__tag_item {
        grid-template-columns: 1fr;
        gap: 0;
        max-height: max-content;
    }

    .segura__texto_card_blog.tag__list {
        padding: 1rem;
    }

    .content__article h2 {
        font-size: 1.05rem;
        line-height: 1.5rem;
        margin-bottom: 1rem;
    }

    .content__article_body h2 {
        font-size: 1.75rem;
        line-height: 2.15rem;
    }

    .content__article_body h3 {
        font-size: 1.5rem;
    }

    .content__article_body h4 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .contato_dados h3:after {
        margin-left: auto;
        margin-right: auto;
    }

    .tags__blog {
        margin-bottom: 1rem;
    }

    .box__author_single {
        margin-bottom: 0;
    }

    .related__posts {
        text-align: left;
    }

    .related__posts li:last-child {
        margin-bottom: 0;
    }

    .prev.page-numbers, .next.page-numbers {
        display:;
    }

    .nav-blog a, .nav-blog span {
        padding: 0.325rem .75rem;
    }

    .top__blog ol li {
        justify-content: left;
    }

    .footer__main {
        max-width: 100%;
        padding: 2rem 1rem;
        text-align: center;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer__main span {
        text-align: center;
    }

    .footer__main span:after {
        margin-left: auto;
        margin-right: auto;
    }

    .footer__main ul li {
        margin: 0.75rem auto;
        text-align: center;
    }

    .menu__faq {
        padding: 2em 0;
    }

    .section__mais_lidas_horizontal ol li, .top__blog ol li {
        gap: .5rem;
        align-items: center;
    }

    .footer__topo h2 {
        margin-bottom: 0;
    }

    .footer__topo p {
        text-align: end;
        line-height: 1.3rem;
    }

    .footer__topo img {
        max-width: 120px;
    }

    .lojas__app {
        justify-content: center;
    }

    .cookies-container {
        bottom: 0;
    }

    .flex__cookies { grid-template-columns: 1fr; justify-items: center; grid-gap: 1rem; margin-bottom: 1rem; }

    .flex__cookies img {
        max-height: 2rem;
    }

    .cookies-content {
        grid-template-columns: 1fr;
    }

    .cookies-save {
        grid-column: 1;
        grid-row: 3;
    }

    .menu_grupo_mobile {
        display: block;
    }

    .grid__indicadores {
        grid-template-columns: 100%;
    }

    .listando_indicador {
        display: grid;
        grid-template-columns: 100%;
        gap: 1rem;
    }

    .width_head {
        position: relative;
        width: 100%;
    }

    .coluna_12, .coluna_6, .coluna_4 {
        width: 100%;
    }

    .padding_center_flex {
        padding-left: 0px;
        padding-right: 0px;
    }

    #redes_desktop {
        display: none;
    }

    #abrir_redes_modal {
        display: flex;
    }

    .sub_social.ativo {
        right: 0;
    }

    .blockquote__frase_central {
        font-size: 2.25rem !important;
        padding: 0 1rem !important;
    }

    .customize-support header {
        margin-top: 46px;
    }

    .section__mantenedores_apoiadores ul {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .form__busca {
        grid-template-columns: 1fr;
    }

    .footer__copywriting small, .footer__copywriting span {
        flex-direction: column;
    }

    .customize-support .header__group.fixed {
        margin-top: 46px;
    }

	.pinta__bg_roxo_1_mob { background-color: var(--roxo-1) !important; }
}


@media (max-width: 768px) {
	
	.column__count_1_mob { column-count: 1 !important; }
    .column__count_2_mob { column-count: 2 !important; }
    .column__count_3_mob { column-count: 3 !important; }
	.justify__items_center_mob_short { justify-items: center !important; }
	
	.filtro__header h3 {
		font-size: 1.15rem;
	}
	
	.tamanho__slider_pequeno .hero-slider .splide__slide, .tamanho__slider_pequeno .hero-slider li img {
		height: 200px !important;
		min-height: 200px !important;
	}
	
	.hero__slider_bottom {
		bottom: 0px;
	}
	
	.d-none-desktop { display:none !important; }
  	.d-none-mobile  { display:block !important; }

	.display__grid_mob_short {
		display: grid !important;
		grid-template-columns: 1fr !important;
	}
	
	.justify__start_mob_short { justify-content: flex-start !important; }

	.linhatempo__linha::before, .linhatempo__linha::after {
        transform: translateX(-50%);
    }

    .linhatempo {
        padding: 40px 0;
    }

    .linhatempo__linha {
        left: 13px;
        transform: none;
    }

    .linhatempo__item {
        position: relative;
        display: block;
        padding-left: 40px;
        margin-bottom: 50px;
    }

    .linhatempo__centro {
        position: absolute;
        left: 0;
        top: 0;
        width: 26px;
        min-width: 26px;
        height: 26px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .linhatempo__ponto {
        width: 26px;
        height: 26px;
    }

    .linhatempo__ponto::before, .linhatempo__ponto::after {
        display: none;
    }

    .linhatempo__coluna {
        width: 100%;
        padding: 0;
        text-align: left;
    }

    .linhatempo__coluna_esquerda, .linhatempo__coluna_direita {
        width: 100%;
        padding: 0;
        text-align: left;
    }

    .linhatempo__coluna:empty {
        display: none;
    }

    .linhatempo__conteudo {
        width: 100%;
    }

    .linhatempo__ano {
        margin-bottom: 12px;
    }

    .aba__plantas img {
        height: auto;
        margin: auto;
        object-fit: contain;
    }

    .lista__containerficha {
        position: static;
    }
	
	.grid__mosaico {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .pb-tooltip::after {
        left: auto;
        right: -1rem;
        transform: none;
        width: 220px;
        max-width: calc(100vw - 3rem);
    }

    .pb-tooltip::before {
        left: auto;
        right: -.15rem;
        transform: none;
    }

    .cookies-pref .control:first-child .pb-tooltip::after, .cookies-pref .control:nth-child(2) .pb-tooltip::after {
        right: -5rem;
    }

    .cookies-pref .control:first-child .pb-tooltip::before, .cookies-pref .control:nth-child(2) .pb-tooltip::before {
        right: 1.85rem;
    }

    .tabs-slider .splide__track {
        overflow: hidden;
    }

    .allinclusive-slider img {
        height: 320px;
    }

    .allinclusive-slider {
        margin-bottom: 50px;
    }

    .allinclusive_slider_section .tab_lancamento {
        flex-wrap: wrap;
    }

    .gallery-modal__content li.splide__slide {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .gallery-modal__thumbs {
        align-self: flex-start;
    }

    .modal__formempreendimento_content {
        width: min(95vw,700px);
        max-height: 90vh;
    }

    .modulocadastro__slider, .modulocadastro__slider .splide__track {
        height: 350px;
    }

    .section__cadastro_grafismo {
        max-width: 45px;
    }

    .section__cadastro_terms {
        align-items: start;
    }

    .section__cadastro_aviso {
        font-size: 1rem;
    }

    .metade_metade_slider img {
        height: 320px;
    }

    .tags__metade {
        justify-content: center;
    }

    .section__stories_balao.balao_1 div {
        bottom: -10px;
    }

    .section__stories_balao.balao_2 div {
        bottom: 40px;
    }

    .section__stories_balao.balao_3 div {
        bottom: -30px;
    }

    .grid__responsive {
        grid-template-columns: repeat(2,1fr) !important;
    }

}

@media (max-width: 500px) {

	.flex__column_mob_short {
		flex-direction: column !important;
	}

	 .grid__responsive {
        grid-template-columns: 1fr !important;
    }

    .grid__cols_1_mob_short { grid-template-columns: 1fr !important; }

    .grid__odd_layout.grid__cols_1_mob_short {
        grid-template-columns: 1fr !important;
    }

    .flex__direction_col_mob_short { flex-direction: column !important; }
    .w__100_mob_short { width: 100% !important; }

    .section__grid .grid__cols_1_mob_short {
        grid-template-columns: 1fr !important;
    }

    .grid__odd_layout.grid__cols_2_mob.detalhe__item > li:first-child {
        grid-column: 1 / -1 !important;
    }

    .section__grid .grid__odd_layout.grid__cols_2_mob li:first-child, .section__grid .grid__cols_1_mob_short li {
        grid-column: auto !important;
    }

    .grid__odd_layout.grid__cols_2_mob li:first-child {
        grid-column: span 1 !important;
    }

    .fomo__link {
        grid-template-columns: 70px 1fr;
    }

    .fomo__img {
        width: 70px;
        height: 70px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fomo {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }

    .fomo.is-out {
        display: none !important;
    }

    .newsletter--focus {
        animation: none;
        background: transparent;
    }
}