/*
 Theme Name:   Sumauma
 Author:       Feito por Fluxo, modificado por Opará Criações
 Author URI:   https://opara.me
 Version: 1.1.3
*/



@import url("https://use.typekit.net/duw5rvs.css");

@font-face {
    font-family: 'FugueHead';
    src: url('fonts/FugueHead.woff2') format('woff2'),
        url('fonts/FugueHead.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

.xdebug-error {
    display: none !important;
}

/* COLORS */
:root {
  --black: #000;
  --white: #fff;
  --off_white: #FDFDF7;
  --off_black: #37312C;
  --dark_green: #314C35;
  --olive: #637730;
  --crimson: #851D4C;
  --ocre: #BD5931;
  --sand: #DEDEC9;
  --blue: #889DA9;
  --green: #69863A;
  --orange: #BD5931;
  --beige: #B7A67D;
}

* {
    font-family: 'montserrat', sans-serif;
}
html {
    opacity: 0;
}
html, body {
    margin: 0;
    padding: 0;
}
html body {
    font-family: 'montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    color: var(--off_black);
    background-color: var(--off_white);
    transition: background-color 0.3s ease 0s;
}
ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}
input:-webkit-autofill,
input:-webkit-autofill::first-line,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px var(--off_white) inset !important;
    -webkit-text-fill-color: var(--off_black) !important;
    font-weight: 600;
    font-size: 16px !important;
	line-height: 100% !important;
    font-family: 'montserrat', sans-serif !important;
}
::placeholder { 
    color: #ccc;
}
.hidden {
	display: none;
}
.mobile-view {
	display: none;
}
.desktop-view {
	display: block;
}
a[href^="tel"] {
    color:inherit;
    text-decoration:none;
}
.bg-img {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
	outline: none !important;
	width: 100%;
	height: 100%;
}
a {
	text-decoration: none;
    color: inherit;
    transition: 0.3s;
}
a:hover, a:active, a:focus {
    text-decoration: none;
    color: #000
}
.title, .title * {
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
}
p a {
    text-decoration: underline;   
}
p a:hover {
    text-decoration: none;
}
p {
    line-height: inherit;
    margin: 0 0 1.5em 0;
}
.conteudo_principal ol, .conteudo_principal ul, .conteudo_principal li {
    list-style: initial;
    font-weight: 500;
}
.conteudo_principal li {
    margin-bottom: 1em;
}
.conteudo_principal ul, .conteudo_principal ol {
    margin-bottom: 5em;
    margin-top: -1em;
}
.conteudo_principal a {
    color: var(--orange);
    text-decoration: underline;
}
.conteudo_principal a:hover {
    color: var(--off_black);
    text-decoration: underline;
}
.overflow_hidden {
	overflow-y: hidden;
}
.overflow_scroll {
	overflow-y: scroll;
	height: 100%;
}
.post-edit {
	display: none !important;
}


svg, img, embed, object, .wp-caption, .wp-caption img, .conteudo_principal img {
    display: block;
    height: auto;
    max-width: 100%;
}




/* ENTRY ANIMATION */

.animate_trigger {
    transform: translate3d(0, 1.5vw, 0);
    opacity: 0;
    transition: all 0.5s ease 0.1s;
    will-change: transform;
}
.animate_trigger.animate_in {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}




/* MAIN LAYOUT */




/*::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    background-color: transparent;
}
::-webkit-scrollbar {
    width: 0;
    background-color: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: transparent;
}*/


/* LAYOUT */


.site-content {
    padding: 2.7vw 0 2.7vw 7vw;
}


.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}
.grid-10 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    justify-content: space-between;   
}
.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2.4vw;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2.4em;
}
.grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}
.grid-span-1 {
    grid-column: span 1;
}
.grid-span-2 {
    grid-column: span 2;
}
.grid-span-3 {
    grid-column: span 3;
}
.grid-span-4 {
    grid-column: span 4;
}
.grid-span-5 {
    grid-column: span 5;
}
.grid-span-6 {
    grid-column: span 6;
}
.grid-span-7 {
    grid-column: span 7;
}
.grid-span-8 {
    grid-column: span 8;
}
.grid-span-9 {
    grid-column: span 9;
}
.grid-span-10 {
    grid-column: span 10;
}
.grid-span-11 {
    grid-column: span 11;
}
.grid-span-12 {
    grid-column: span 12;
}



.flex {
    display: flex;
}
.flex-center {
    align-items: center;
}
.flex-baseline {
    align-items: baseline;
}
.flex-justify {
    justify-content: space-between;
}
.justify-end {
    justify-content: flex-end;
}
.flex-column {
    flex-direction: column;
}
.flex-align-end {
    align-items: flex-end;
}
.flex-row-reverse {
    flex-direction: row-reverse;
}

.w-25 {
    width: 25%;
}
.w-33 {
    width: 33.33%;
}
.w-50 {
    width: 50%;
}
.w-66 {
    width: 66.66%;
}
.w-70 {
    width: 70%;
}
.w-75 {
    width: 75%;
}
.w-80 {
    width: 80%;
}

.wp-caption {
    margin-bottom: 3em;
}


/* TYPOGRAPHY */


h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: inherit;
    font-weight: inherit;
}

.font-12, .wp-caption-text {
    font-size: 12px;
    line-height: 150%;
}
.wp-caption-text {
    margin-top: 0.5em;
    margin-left: 0;
}
.font-14, .header .menu a {
    font-size: 14px;
    line-height: 150%;
}
.font-16, html, body {
    font-size: 16px;
    line-height: 150%;
}
.font-18, .conteudo_principal {
    font-size: 18px;
    line-height: 177%;
}
.font-20 {
    font-size: 20px;
    line-height: 150%;
}
.font-24 {
    font-size: 24px;
    line-height: 150%;
}
.font-30 {
    font-size: 30px;
    line-height: 130%;
}
.font-34 {
    font-size: 34px;
    line-height: 130%;
}
.font-40 {
    font-size: 40px;
    line-height: 120%;
}
.font-48 {
    font-size: 48px;
    line-height: 110%;
}
.font-54 {
    font-size: 54px;
    line-height: 110%;
}
.font-64 {
    font-size: 64px;
    line-height: 110%;
}
.font-76 {
    font-size: 76px;
    line-height: 110%;
}
.font-104 {
    font-size: 78px;
    line-height: 110%;
}

.font-54 a, .font-64 a, .font-76 a, .font-104 a {
    text-decoration: none;
    display: table;
}
.font-54 a:hover, .font-64 a:hover, .font-76 a:hover, .font-104 a:hover {
    text-decoration: underline;
}

.font-light {
    font-weight: 300;
}
.font-regular {
    font-weight: 400;
}
.font-medium {
    font-weight: 500;
}
.font-semibold {
    font-weight: 600;
}
.font-bold, b, strong {
    font-weight: 700;
}

.uppercase, .term-wrapper {
    text-transform: uppercase;
}
.align-center {
    text-align: center;
}
.font-space-grotesk, .font-space-grotesk * {
    font-family: 'Space Grotesk', sans-serif;
}
.header .menu a {
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
}
strong.font-space-grotesk, strong .font-space-grotesk, .font-space-grotesk strong {
    font-weight: 600;
}



/* COLORS */


.color-white {
    color: #FFF;
}
.color-black {
    color: #000;
}
.color-off_white {
    color: var(--off_white);
}
.color-off_black {
    color: var(--off_black);
}
.color-dark_green {
    color: var(--dark_green);
}
.color-olive {
    color: var(--olive);
}
.color-crimson {
    color: var(--crimson);
}
.color-ocre {
    color: var(--ocre);
}
.color-sand {
    color: var(--sand);
}
.color-green {
    color: var(--green);
}
.color-blue {
    color: var(--blue);
}
.color-orange, .autor:hover {
    color: var(--orange);
}
.color-beige {
    color: var(--beige);
}

.bg-white {
    background-color: #FFF;
}
.bg-black {
    background-color: #000;
}
.bg-crimson {
    background-color: var(--crimson);
}

.cores_01 .post-info {
    background-color: var(--sand);
}
.cores_02 .post-info {
    background-color: var(--blue);   
}
.cores_03 .post-info {
    background-color: var(--green);
}
.cores_04 .post-info {
    background-color: var(--orange);
}
.cores_05 .post-info {
    background-color: var(--crimson);
}

.cores_01 .titulo {
    color: var(--orange);
}
.cores_02 .titulo {
    color: var(--sand);   
}
.cores_03 .titulo {
    color: var(--off_white);
}
.cores_04 .titulo {
    color: var(--off_black);
}
.cores_05 .titulo {
    color: var(--blue);
}

.cores_01 .post-content {
    color: var(--off_black);
}
.cores_02 .post-content {
    color: var(--off_black);   
}
.cores_03 .post-content {
    color: var(--off_white);
}
.cores_04 .post-content {
    color: var(--off_white);
}
.cores_05 .post-content {
    color: var(--off_white);
}
.cores_05 .post-content .post-meta, .cores_05 .post-content .post-meta * {
    color: var(--blue);   
}


.header #menu-menu-1 li a {
    color: var(--crimson);
}
.header #menu-menu-1 .qtranxs-lang-menu a {
    color: var(--dark_green);
}


/* HEADER */


.header .menu-nav .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.3vw 1.3vw 0.1vw;
    z-index: 90;
    background-color: var(--white);
    height: 2.7vw;
    display: flex;
    justify-content: flex-end;
    transition: 0.3s;
    transform: translate3d(0, 0, 0);
}
.header .menu-nav .menu.sc_hide {
    transform: translate3d(0, -10em, 0);
}
.header-logo {
    position: fixed;
    z-index: 100;
    left: 1.3vw;
    top: 1vw;
}
.header-logo img {
    width: 14vw;
    transition: 0.3s;
}
.sc_top .page-template-page-homepage .header-logo img {
    width: 24.2vw;
}
.qtranxs-lang-menu > a, .qtranxs-flag {
    display: none;
}
.header .menu, .header .sub-menu {
    display: flex;
}
.menu-nav .menu li {
    margin-left: 2em;
    display: flex;
    align-items: center;
}
.btn-menu {
    display: table;
    cursor: pointer;
    position: fixed;
    top: 6.8vw;
    left: 0;
    z-index: 100;
}
.hamburger {
    padding: 1.3vw;
}
.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    width: 19px;
    height: 2px;
    background-color: var(--orange) !important;
}
.hamburger.is-active:hover, .hamburger:hover {
    opacity: 1;
}
.hamburger-inner:before {
    top: -6px;
}
.hamburger-inner:after {
    bottom: -6px;
}
.header .tagline {
    position: fixed;
    left: 1.26vw;
    top: 10.8vw;
    writing-mode: vertical-rl;
    transform: scale(-1);
    z-index: 100;
    font-size: 16px;
    text-transform: uppercase;
}
.menu-wrapper {
    position: fixed;
    top: 2.7vw;
    left: 0;
    width: 50%;
    height: calc(100vh - 8.2vw);
    background: #FAF8F8;
    z-index: 81;
    transition: 0.3s;
    transform: translate3d(-100%, 0, 0);
    padding: 5.5vw 9.4vw;
}
.menu-wrapper.active {
    transform: translate3d(0, 0, 0);
}
.bg-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 81;
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.3s;
    opacity: 0;
    backdrop-filter: blur(0);
    pointer-events: none;
}
.bg-header.active {
    opacity: 1;
    backdrop-filter: blur(8px);
    pointer-events: all;
    cursor: pointer;
}
.search-form-wrapper form {
    display: flex;
    align-items: center;
}
.search-form-wrapper form svg {
    margin-right: 0.3em;
    width: 1.2em;
}
.search-form-wrapper form input {
    background-color: #FAF8F8;
    outline: none !important;
    border: none !important;
    border-bottom: solid 1px var(--orange) !important;
    width: 100%;
    position: relative;
    z-index: 90;
}
.menu-wrapper > .flex {
    grid-gap: 4vw;
    position: relative;
}
.menu-wrapper > .flex > .col-01 {
    width: 20%;
}
.menu-wrapper > .flex > .col-02 {
    width: 80%;
    overflow-y: hidden;
    height: calc(100vh - 9.15vw);
    margin-top: -2.15vw;

}
.menu_links-wrapper a {
    display: table;
}
.menu-wrapper .lang-menu {
    padding-bottom: 1.5vw;
    margin-bottom: 2vw;
    border-bottom: solid 1px var(--orange);
}
.menu-wrapper .menu-menu-de-idiomas-container {
    margin-left: -0.4em;
}
.menu_categorias-wrapper, .search-form-wrapper {
    margin-bottom: 2vw;
}
.menu_categorias-wrapper a, .menu_links-wrapper a {
    display: table !important;
    margin-bottom: 1vw !important;
}
.lang-menu a {
    display: inline-flex;
    margin-right: 0.5em;
}
.lang-menu a:last-child {
    margin-right: 0;
}
.lang-menu a:hover, .menu_categorias-wrapper a:hover, .menu_links-wrapper a:hover {
    color: var(--orange);
}
html[lang="pt-BR"] .lang-menu .lang-pt, html[lang="es"] .lang-menu .lang-es, html[lang="en-US"] .lang-menu .lang-en {
    border-bottom: solid 1px var(--orange);
}
.menu-destaques {
    overflow-y: scroll;
    height: 100%;
    padding: 2.5vw 0;
}
.menu-destaques .post-img img {
    max-height: 27vw;
    width: auto;
    display: table;
}
.menu-destaques .post-item {
    margin-bottom: 2em;
    padding-bottom: 2em;
    border-bottom: solid 1px var(--dark_green);
}
.menu-destaques .post-info {
    margin-top: 1em;
}
.menu-destaques .post-item:last-child {
    border-bottom: none;   
}
.menu-destaques::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    background-color: transparent;
}
.menu-destaques::-webkit-scrollbar {
    width: 0;
    background-color: transparent;
}
.menu-destaques::-webkit-scrollbar-thumb {
    background-color: transparent;
}



/* FOOTER NEWSLETTER */

.newsletter-wrapper {
    padding: 1vw 6.9vw 1.2vw;
    position: relative;
    z-index: 80;
    display: flex;
    align-items: center;
    white-space: nowrap;
    grid-gap: 2.5em;
}
.newsletter-wrapper > span {
    height: 1em;
}
.newsletter-wrapper input[type="text"], .newsletter-wrapper input[type="email"] {
    width: 100%;
    background-color: transparent;
	padding: 7px;
	border-radius: 0px !important;
    border: none !important;
    border-bottom: solid 1px var(--off_white) !important;
    color: var(--off_white);
    outline: none !important;
}
.newsletter-wrapper input[type="text"]:focus, .newsletter-wrapper input[type="email"]:focus {
    background-color: #BF5887;
}

.newsletter-wrapper input[type="submit"] {
    background: unset;
    padding: 0;
    margin: 0;
    color: var(--off_white) !important;
    font-family: 'Space Grotesk', sans-serif;
    outline: none;
    appearance: none;
    border: none;
    font-size: 1.3vw;
    height: 1em;
}
.header-icons {
    position: fixed;
    z-index: 70;
    top: calc(300px + 18vw);
    left: 1.4vw;
    cursor: pointer;
    display: none;
}
.single .header-icons {
    display: block;
}
.social-share-wrapper {
    display: flex;
    align-items: center;
    grid-gap: 1.3vw;
    width: 60px;
}
.social-share-content {
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    position: absolute;
    right: -10px;
}
.social-share-wrapper:hover .social-share-content {
    opacity: 1;
    pointer-events: all;
}
.social-share-wrapper:hover .btn-social-share path, .btn-large-fonts:hover path, .dark_mode .btn-dark_mode:hover circle {
    fill: var(--orange) !important;
}
.social-share-content a {
    display: table;
    margin: 0.54em 0;
}
.btn-large-fonts {
    margin: 1vw 0;
    padding: 0.15vw;
}
.btn-social-share a:hover path, .header-icons a:hover path {
    fill: var(--orange);
}
.dark_mode-wrapper {
    display: flex;
}
.btn-dark_mode {
    cursor: pointer;
    transition: 0.3s;
}
.btn-dark_mode:hover circle {
    fill: var(--orange);
}
.btn-dark_mode:hover path {
    fill: var(--off_white);
}
.dark_mode .btn-dark_mode circle {
    fill: var(--sand);
}
.dark_mode .btn-dark_mode path {
    fill: var(--off_black);
}
.dark_mode .btn-dark_mode:hover path {
    fill: var(--sand);
}




/* DARK MODE */


.dark_mode body, .dark_mode .header .menu-nav .menu {
    background-color: #202120;
    color: var(--sand);
}
.dark_mode body * {
    color: var(--sand) !important;
}
.dark_mode .sidebar .row-galeria .slick.slick-initialized {
    background-color: rgb(0 0 0 / 80%);
}
.dark_mode .sidebar .row-texto {
    border-top: solid 1px var(--sand);
}
.dark_mode .btn-large-fonts path, .dark_mode .btn-social-share path, .dark_mode .social-share-content path, .dark_mode .btn-invert-02 #Path_108 {
    fill: var(--sand);
}
 





/* FOOTER */


.footer {
    position: relative;
    z-index: 80;
    background-color: #0E2211;
    padding: 2.6vw 1.3vw 1.3vw 6.9vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.footer .tagline {
    margin-bottom: 5vw;
    text-transform: uppercase;
}
.footer-content > .flex {
    grid-gap: 2.5em;
}
.footer-content > .flex > div {
    width: 50%;
    margin-bottom: 0;
}
.menu_categorias-wrapper a, .menu_links-wrapper a {
    margin-bottom: 0.7em !important;
    white-space: nowrap;
}



/* HOMEPAGE */

.post_full_screen .post-item {
    width: 100%;
    height: 50vw;
    margin: 2.5em 0;
    position: relative;
    overflow: hidden;
    display: block;
}
.post_full_screen .post-item .post-info {
    position: absolute;
    left: 0%;
    top: 0;
    max-width: 25vw;
    height: 45vw;
    padding: 2.6vw 1.3vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: right;
    transition: 0.3s;
    z-index: 3;
}
.bg-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: table;
    z-index: 1;
}
.post-info .titulo {
    display: table;
    font-weight: 500;
    margin: 0 0 0.3em ;
}
.post-info .post-meta {
    margin: 0 0 0.5em;
}
.post_full_screen .resumo {
    max-width: 80%;
    margin-left: auto;
    margin-top: 1em;
}
.post_full_screen .post-item .post-info .autor {
    margin-left: auto;
}
.post_full_screen .post-item .post-info .titulo {
    margin-left: auto;
}
.resumo p:last-child {
    margin-bottom: 0;
}
a.post-item {
    display: block;
}
.page-template-page-homepage .conteudo-flexivel .grid {
    margin: 0 10vw 3em 21vw;
}
.page-template-page-homepage .conteudo-flexivel .bloco_de_texto {
    margin: 4em 10vw 6em 21vw;
}
.page-template-page-homepage .conteudo-flexivel .bloco_de_texto img {
    margin-bottom: 2em;
}
.page-template-page-homepage .conteudo-flexivel .bloco_de_texto:first-child {
    margin-bottom: 2em;
}
.page-template-page-homepage .conteudo-flexivel .bloco_de_texto:first-child p:last-child {
    margin-bottom: 0;
}
.page-template-page-homepage .conteudo-flexivel {
    margin-top: 5.6vw;
}
.term-wrapper:last-child span {
  display: none;
}
.autor-wrapper {
    margin-bottom: 1em;
}
.single .autor-wrapper .term-wrapper {
    display: inline-flex;
}
.grid_de_posts .post-img {
    height: 20vw;
    margin-bottom: 1em;
    display: table;
    background-color: var(--sand);
    border-radius: 25px;
}
.retranca {
    margin-bottom: 0.2em;
    display: flex;
    text-transform: uppercase;
}



/* SINGLE */



.layout_full .post-img {
    height: calc((100vw - 2.5vw) / 1.5);
}
.layout_full .post-info {
    margin: 4em 32vw 4em 13vw;
}
.single .resumo {
    line-height: 150%;
    font-weight: 500;
}
.single .resumo * {
    font-weight: 500;   
}
.single-content {
    margin: 4em 0 4em 13vw;   
}
.sidebar {
    margin-left: -1em;
}
.sidebar .row {
    padding-right: 6em;
}
.sidebar .row-galeria .titulo {
    border-top: solid 1px var(--off_black);
    padding-top: 0.5em;
    margin-bottom: 0.5em;
    margin-top: 0.6em;
}
.sidebar .img-wrapper {
    margin-bottom: 0.5em;
    cursor: pointer;
}
.sidebar .row-galeria .slick.slick-initialized .img-wrapper {
    margin: auto auto auto 0;
    display: table;
}
.conteudo_principal, .conteudo_principal p:not(:last-child), .coluna_simples {
    margin-bottom: 2.5em;
}
.coluna_simples .row-texto {
    padding-right: 4em;
}
.conteudo_principal p {
    font-weight: 500;
}
.conteudo_principal hr {
    width: 100%;
    border: 0;
    border-top: 1px solid transparent;
    border-bottom: 1px solid;
    margin-left: 0;
}
.sidebar .row-galeria .slick.slick-initialized {
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(222, 222, 201, 0.9);
    backdrop-filter: blur(5px);
    padding: 1.3vw 0;
}
.sidebar .row-galeria .slick.slick-initialized .slick-track {
    padding: 0 1.3vw;
}
.sidebar .row-galeria .slick.slick-initialized .slick-slide {
    margin: 0;
}
.sidebar .row-galeria .close-slick, .sidebar .row-galeria .legendas {
    display: none;
}
.sidebar .row-galeria .slick.slick-initialized + .close-slick {
    display: block;
    position: fixed;
    z-index: 100;
    right: 1.3vw;
    top: 1.3vw;
}
.sidebar .row-galeria .slick:not(.slick-initialized) > div {
    transition: 0.3s;
}
.sidebar .row-galeria .slick:not(.slick-initialized) > div:hover {
    background-color: var(--orange);
}
.sidebar .row-galeria .slick:not(.slick-initialized) > div > div {
    mix-blend-mode: multiply;
}
.dark_mode .sidebar .row-galeria .slick:not(.slick-initialized) > div > div {
    mix-blend-mode: screen;   
}
.close-slick {
    cursor: pointer;
    transition: 0.3s;
    transform: scale(1.0);
}
.close-slick:hover {
    transform: scale(1.3);
}
.close-slick line {
    stroke: var(--dark_green);
}
.sidebar .row-galeria .slick.slick-initialized .img-wrapper img {
    max-height: calc(100vh - 6.6vw);
    margin: auto 0 auto auto;
}
.sidebar .row-galeria .slick.slick-initialized .legendas {
    display: table;
    margin-top: 0.7em;
}
.slick-arrow {
    position: absolute;
    z-index: 1;
    width: 50%;
    height: 100%;
    left: 0;
    top: 0
}
.prevSlide {
    cursor: url(images/arrow-left_1.svg) 10 10, auto;
}
.nextSlide {
    cursor: url(images/arrow-right_1.svg) 10 10, auto;
    right: 0;
    left: unset;
}
.sidebar .row-texto {
    border-top: solid 1px var(--orange);
    padding: 2.5em 20% 0 0;
    margin: 0.5em 1.6vw 0 2vw;
}
.layout_2 {
    display: flex;
    justify-content: flex-end;
    grid-gap: 2em;
    height: auto;
    padding-top: 4.85em;
}
.layout_2 .post-info {
    width: 38%;
    align-self: flex-end;
}
.layout_2 .post-img {
    height: calc(100vh - 15vw);
    min-height: 40vw;
}
.post-img-wrapper {
    display: flex;
    flex-direction: column;
    width: 62%;
    height: auto;
}
.layout_2 .resumo {
    margin-top: 3em;
}
.post-info.layout_3 {
    margin: 1.4vw 20vw 5.1vw 9.1vw;
}
.post-info.layout_3 .titulo {
    margin: 1em auto 0;
}
.post-info.layout_3 .titulo p:last-child {
    margin-bottom: 0;
}
.layout_full .titulo p:last-child, .layout_2 .titulo p:last-child {
    color: var(--orange);
    margin-bottom: 0;
}
.layout_full .resumo, .layout_2 .resumo {
    margin-bottom: 2em;
}
.post-info.layout_3 .resumo {
    margin: 5em 7vw 2em;
}
.post-info.layout_3 {
    text-align: center;
}
.post-info.layout_3 .term-wrapper {
    justify-content: center;
}
.single-content.layout_3 + .layout_3-post-img {
    height: 45vw;
}
.layout_3-post-img + .legendas {
    min-height: 5em;
    padding: 0.8em 0 0 0;
    text-transform: uppercase;
}
.legendas {
    min-height: 5em;
    padding: 0.8em 0 0;
    text-transform: uppercase;
    font-weight: 500;
}
.single-content.layout_3 {
    margin: 4em 0 4em 15.1vw;
}
.single-content.layout_3 .conteudo_principal {
    width: 105%;
}
.cat-quadrinhos .single-content.layout_3 .conteudo_principal {
    width: 110%;
}
.post-info.layout_3 .social-share, .post-info.layout_3 .retranca {
    justify-content: center;
}
.post-info.layout_3 .social-share a {
    margin: 0 0.7em !important;
}
.single .post-meta {
    margin: 0.5em 0 1.5em;
}
.single .post-meta {
    margin: 4em 0 1.5em;
}
.post-info.layout_3 .post-meta {
    margin: 4em 0 0.7em;
}
.autor {
    text-transform: none;
}
.data_publicacao {
    font-weight: 500;
}
.social-share {
    display: flex;
    align-items: flex-end;
    margin: -0.8em 0 1em;
}
.layout_2 .social-share {
    margin-bottom: 0;
}
.social-share a:not(:last-child) {
    margin-right: 1.3em;
}
.social-share a path {
    transition: 0.3s;
}
.social-share a:hover path {
    fill: var(--off_black);
}
.layout_3 .social-share {
    margin: 1em 0;
}
.layout_3 .social-share path {
    fill: var(--orange);
}
.related_posts-wrapper {
    width: 53%;
    margin: 4em 0 6em 13vw;
}
.related_posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2em;
}
.related_posts-wrapper .titulo-1 {
    border-top: solid 1px #37312C;
    padding: 1.5em 0 4em;
}
.related_posts-wrapper .post-item {
    margin: 0 0 3em;  
    padding-right: 1.9vw; 
}
.related_posts-wrapper .post-item .titulo {
    margin: 0.5em 0;
}
.related_posts-wrapper .post-item:hover .titulo {
    text-decoration: underline;
}
.post-quem-somos .related_posts-wrapper {
    display: none;
}











/* ARCHIVE */

.archive .grid_de_posts, .search .grid_de_posts {
    margin: 5.5vw 10vw 4em 21vw;
}
.no-results {
    padding: 10em 0 8em;
}
.page-wrapper {
    min-height: calc(100vh - 35.5vw);
}




.conteudo-flexivel .grid {
    grid-gap: 6em 3em;
}
.conteudo-flexivel .grid .titulo p:last-child, .post-info .titulo p:last-child {
    margin-bottom: 0;
}


.newsletter-form-wrapper {
    margin: 5.6vw 10vw -3em 21vw;
}
.newsletter-form-wrapper .newsletter-wrapper {
    padding: 1vw 2em 1.5vw;
}

.tag-wrapper-wrapper {
    width: 53%;
    margin: 4em 0 0 13vw;
    border-top: solid 1px #37312C;
    padding: 1.5em 0 0;
    width: 53%;
    margin: 4em 0 0 13vw;
}
.tag-wrapper-wrapper > .flex {
    flex-wrap: wrap;
}
.tag-wrapper-wrapper a:hover {
    color: var(--orange);
}

















@media only screen and (min-width: 2560px) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/

.font-16, html, body {
    font-size: 24px;
}

}

@media only screen and (max-width: 2560px) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/

.font-16, html, body {
    font-size: 22px;
}

}


@media only screen and (max-width: 1920px) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


.font-16, html, body {
    font-size: 20px;
}


}



@media only screen and (max-width: 1680px) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


.font-16, html, body {
    font-size: 18px;
}


}



@media only screen and (max-width: 1440px) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/

.font-16, html, body {
    font-size: 16px;
}

}



@media only screen and (max-width: 1366px) and (min-height: 680px) and (max-height: 690px) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}



@media only screen and (max-width: 1280px) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/





}



@media only screen and (max-width: 1024px) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/





}





@media only screen and (max-width: 768px) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


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


.font-30 {
    font-size: 26px;
    line-height: 130%;
}
.font-34 {
    font-size: 28px;
}
.font-40 {
    font-size: 28px;
}
.font-48 {
    font-size: 28px;
}
.font-54 {
    font-size: 28px;
}
.font-64 {
    font-size: 46px;
}
.newsletter-wrapper > span.font-space-grotesk {
    font-size: 46px;
}
.font-76 {
    font-size: 52px;
}
.font-104 {
    font-size: 52px;
}



.site-content {
    padding: 120px 0 15px 15px;
    max-width: calc(96.2vw - 50px);
}

.grid-12 {
    grid-template-columns: repeat(1, 1fr);
}
.grid-10 {
    grid-template-columns: repeat(1, 1fr);
}
.grid-6 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}
.grid-4 {
    grid-template-columns: repeat(1, 1fr);
}
.grid-3 {
    grid-template-columns: repeat(1, 1fr);
}
.grid-2 {
    grid-template-columns: repeat(1, 1fr);
}
.grid-1 {
    grid-template-columns: repeat(1, 1fr);
}

.page-template-page-homepage .conteudo-flexivel .grid {
    margin: 0 0 3em 0;
    grid-gap: 3em;
}
.page-template-page-homepage .conteudo-flexivel .bloco_de_texto {
    margin: 1em 0;
    overflow-x: hidden;
}
.page-template-page-homepage .conteudo-flexivel .bloco_de_texto p:last-child {
    margin-bottom: 0;
}
.page-template-page-homepage .conteudo-flexivel .episodio_de_podcast {
    margin: 2em 0;
}



/* HEADER */


.header {
    position: fixed;
    height: 54px;
    width: 100%;
    left: 0;
    top: 0;
    transition: 0.3s;
    background-color: rgba(255, 255, 255, 1);
    z-index: 81;
}
.sc_top .page-template-page-homepage .header {
    background-color: rgba(255, 255, 255, 0);
}
.sc_top .page-template-page-homepage .header-logo img {
    width: calc(96.2vw - 50px);
}
.header-logo img {
    width: 153px;
}
.header .tagline {
    writing-mode: unset;
    transform: unset;
    left: 180px;
    top: 8px;
    width: 33.3vw;
    font-size: 10px;
    line-height: 1.36;
    opacity: 1;
    transition: 0.3s;
}
.sc_top .header .tagline {
    opacity: 1;
}
.sc_top .page-template-page-homepage .header .tagline {
    opacity: 0;
}
.sc_top .page-template-page-homepage .header {
    top: -8em;
}
.btn-large-fonts {
    padding: 1em 0.15vw;
}
.header-logo {
    left: 15px;
    top: 8px;
}
.header .menu-nav .menu {
    top: 54px;
    left: unset;
    right: calc(calc(-50%) + 15px);
    transform: rotate(-90deg) translate(-50%, 0%) !important;
    transform-origin: center;
    background: unset;
}
.menu-nav .menu li {
    margin-bottom: 0.3em;
    margin-left: 1.1em;
}
#menu-item-57 {
    margin-left: 1.9em !important;
}
.header #menu-menu-1 li a {
    white-space: nowrap;
}
.btn-menu {
    top: 0;
    left: unset;
    right: 0;
}
.hamburger {
    padding: 12px 10px;
}
.hamburger-box {
    width: 26px;
}
.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    width: 24px;
}
.hamburger-inner:before {
    top: -8px;
}
.hamburger-inner:after {
    bottom: -8px;
}
.header .sub-menu {
    margin-left: 0;
    align-self: flex-start;
    transform: translate3d(0, -0.5em, 0);
}
.menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 65px);
    height: 100%;
    padding: 137px 50px 15px 15px;
    z-index: 80;
}
.menu-wrapper > .flex > .col-01 {
    width: 50%;
}
.menu_categorias-wrapper, .search-form-wrapper {
    margin-bottom: 2em;
}
.bg-header {
    display: none !important;
}







/* FOOTER */

.footer {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 25px 15px;
}


/* NEWSLETTER FOOTER */

.newsletter-wrapper input[type="text"], .newsletter-wrapper input[type="email"] {
    width: calc(100% - 14px);
}
.newsletter-wrapper {
    white-space: normal;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
}
.newsletter-wrapper > span {
    height: auto;
}
.footer .newsletter-wrapper > span.font-14 {
    margin-top: -2.5em;
    max-width: 100%;
}
.newsletter-wrapper input[type="submit"] {
    font-size: 19px;
    position: relative;
    top: -7px;
}


/* HOMEPAGE */


.post_full_screen .post-item {
    margin: 0 0 2.5em !important;
    height: auto !important;
    display: block;
}
.post_full_screen .post-item .post-info {
    position: unset;
    max-width: calc(100% - 30px);
    height: auto;
    padding: 20px;
    text-align: left;
    left: 0 !important;
}
.post_full_screen .post-item .post-img {
    height: 45vw;
}
.post_full_screen .post-item .post-meta {
    display: none;
}
.post_full_screen .post-item .post-info .titulo {
    margin-bottom: 0.5em;
    max-width: 100%;
    margin-left: 0;
}
.post_full_screen .resumo {
    max-width: 100%;
    margin-left: 0;   
}

.grid_de_posts .post-img {
    height: 55vw;
}
.grid_de_posts .post-meta {
    display: none;
}
.page-template-page-homepage #menu-item-334 {
    display: inherit;
}


/* SINGLE */

.post-info.layout_3 .titulo {
    margin: 1em 0;
    font-size: 46px;
}
.post-info.layout_3 {
    margin: 40px 0;
}
.related_posts-wrapper {
    width: 100%;
    margin: 0 0 4em;
}
.header-icons {
    left: unset;
    right: -31px;
    top: 33em;
    z-index: 50;
}
.post-info.layout_3, .post-info.layout_3 .titulo, .post-info.layout_3 .titulo * {
    text-align: left !important;
}
.post-info.layout_3 .social-share, .post-info.layout_3 .retranca {
    justify-content: flex-start;
}
.single .header-icons, .single .header-icons {
    display: flex;
    flex-direction: column;
    gap: 1em;
    z-index: 91;
}
.social-share-content {
    left: -45px;
    background: var(--off_white);
    padding: 2px 8px;
    gap: 0.3em;
    width: 25px;
}
.single-content {
    margin: 4em 30px 4em 0 !important;
}
.single-content .conteudo_principal {
    width: 100% !important;
}
.single .site-content {
    max-width: calc(96.2vw - 50px);
}
.layout_3-post-img + .legendas {
    padding: 0.8em 0 0;
}
.post-info.layout_3 .resumo {
    margin: 3em 0;
}
.post-info.layout_3 .post-meta {
    margin: 0;
}
.post-info.layout_3 {
    margin: 2em 0 4em;
}
.post-info.layout_3 .term-wrapper {
    justify-content:  flex-start;
}
.post-info.layout_3 .term-wrapper .autor {
    font-size: 16px;
    line-height: 120%;
}
.data_publicacao {
    font-size: 14px !important;
}
.header .menu-nav .menu {
    background-color: unset !important;
}
.sidebar .row-texto {
    padding: 2.5em 20% 2.5em 0;
}

/* .layout_full .post-img {
    height: calc(100vh - 190px);
} */
.layout_full .post-info {
    margin: 2em 0;
}
.bg-link {

}


.layout_2 {
    flex-direction: column-reverse;
    height: auto;
    padding-top: unset;
}
.layout_2 .post-info {
    width: 100%;
}
.layout_2 .post-img {
    width: 100%;
    height: 69vh;
}
.layout_full .resumo, .layout_2 .resumo {
    max-width: 90%;
}
.sidebar .row-galeria {
    padding-left: 0;
    padding-bottom: 1.3em;
}
.sidebar .row {
    padding-right: 0;
}
.sidebar .row-texto .texto.font-20 {
    font-size: 24px;
}

.conteudo_principal, .conteudo_principal p:not(:last-child), .coluna_simples {
    margin-bottom: 1.3em;
}
.coluna_simples {
    margin-bottom: 3em;   
}
.sidebar .img-wrapper {
    margin-bottom: 2em;
}
.sidebar .row-galeria .slick.slick-initialized, .sidebar .row-galeria .slick.slick-initialized .slick-track {
    padding: 0;
}
.slick-slider .slick-track, .slick-slider .slick-list {
    height: 100%;
}
.sidebar .row-galeria .slick.slick-initialized .img-wrapper {
    margin: auto;
}
.sidebar .row-galeria .slick.slick-initialized .img-wrapper img {
    padding: 10px;
    width: calc(100% - 20px);
    margin: 0;
}
.sidebar .row-galeria .slick.slick-initialized .slick-slide {
    height: 100%;
    display: flex;
}
.sidebar .row-galeria .slick.slick-initialized + .close-slick {
    right: 0;
    top: 0;
    padding: 10px;
}
.sidebar {
    margin-left: 0;
}
.post-img-wrapper {
    width: 100%;
}


/* ARCHIVE */


.archive .grid_de_posts, .search .grid_de_posts {
    margin: 2em 1em 3em 0;
}


.newsletter-form-wrapper {
    margin: 2em 1em 3em 0;
}
.newsletter-form-wrapper .newsletter-wrapper {
    padding: 1em;
}






.coluna_simples .row-texto, .related_posts-wrapper .post-item {
    padding-right: 0;
}
.tag-wrapper-wrapper {
    margin: 0 0 4em;
    width: 100%;
}










}




@media only screen and (max-width: 376px) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


.header .tagline {
    top: 12px;
    width: 30vw;
}



}





@media only screen and (max-width: 321px) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


.header .tagline {
    top: 13px;
    font-size: 9px;
}

.newsletter-wrapper > span.font-space-grotesk {
    font-size: 40px;
}


}