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

@font-face {
    font-family: "Futura LT W01 Medium";
    src: url("https://db.onlinewebfonts.com/t/77d394fa0c1103c648f880b77cb4a32f.eot");
    src: url("https://db.onlinewebfonts.com/t/77d394fa0c1103c648f880b77cb4a32f.eot?#iefix")format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/77d394fa0c1103c648f880b77cb4a32f.woff2")format("woff2"),
        url("https://db.onlinewebfonts.com/t/77d394fa0c1103c648f880b77cb4a32f.woff")format("woff"),
        url("https://db.onlinewebfonts.com/t/77d394fa0c1103c648f880b77cb4a32f.ttf")format("truetype"),
        url("https://db.onlinewebfonts.com/t/77d394fa0c1103c648f880b77cb4a32f.svg#Futura LT W01 Medium")format("svg");
}

/* RESET STYLES */

:root {
    --primary-color: #1c64ac;
    --whitegray-color: #f6f6f6;
    --secondary-color: #f9f9f9;
    --text-color: #151515;
    --text-light-color: #666666;
    --gray-color: #333333;
    --gray-light-color: #cccccc;
    --white-color: #ffffff;
    --black-color: #000000;
    --yellow-color: #C89D30;
    --transition: all .2s easy-in-out;
    --font-futura: "Futura LT W01 Medium", sans-serif;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--secondary-color);
}

body::-webkit-scrollbar {
    width: 12px;
    /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: #000000;
    /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    /* color of the scroll thumb */
    /* border-radius: 20px; */
    /* roundness of the scroll thumb */
    /* border: 3px solid orange; */
    /* creates padding around scroll thumb */
}

p {
    color: var(--text-light-color);
}

h1 {
    font-size: 28px;
}

@media (min-width: 1440px) {
    h1 {
        font-size: 45px;
    }
}

h2 {
    font-size: 30px !important;
}

h3 {
    font-size: 24px !important;
}

h4 {
    font-size: 18px !important;
}

.gt-text i,
.primary-btn,
.cs-item:hover span,
.about-video .play-btn,
.owl-dot.active,
.chart-calculate-form form button,
.leave-comment form button,
.text-404 .search-404 input {
    background: var(--primary-color) !important;
}

.copyright-text i,
.copyright-text a,
.cs-item:hover span,
.about-video .play-btn:hover,
.primary-btn.pricing-btn,
.fa.fa-picture-o {
    color: var(--white-color) !important;
}

a {
    color: var(--primary-color) !important;
    transition: all 0.2s ease-in-out;
}

a:hover,
.hs-slider .hs-item .hi-text h1 strong,
.section-title span,
.cs-item span,
.class-item .ci-text span,
.ps-item .pi-price h2,
.ts-item .ts_text span,
.ss-text a,
.contact-widget .cw-text i,
.text-404 a i {
    color: var(--primary-color) !important;
}

hr.wp-block-separator {
    background-color: var(--primary-color);
    margin: 40px 0;
    border: none !important;
    width: 100%;
    height: 2px;
}

/* Oculta o "X" em navegadores WebKit/Blink (Chrome, Safari, Edge, Opera, etc.) */
input[type="search"]::-webkit-search-cancel-button {
    display: none;
    /* ou -webkit-appearance: none; para um reset mais completo */
}

/* Oculta o "X" no Internet Explorer 10+ e Edge (versões antigas) */
input[type="text"]::-ms-clear,
input[type="search"]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

.wp-block-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

figcaption.wp-element-caption {
    visibility: hidden !important;
}

.font-color-yellow {
    color: var(--yellow-color) !important;
}

.font-weight-slim {
    font-weight: 300 !important;
}

.font-weight-bold {
    font-weight: bold !important;
}

blockquote.wp-block-quote {
    font-size: 1em;
    width: 100%;
    margin: 20px auto;
    font-family: "Open Sans";
    font-style: italic;
    color: var(--gray-color);
    padding: 1.2em 30px 1.2em 75px;
    border-left: 4px solid var(--primary-color);
    line-height: 1.6;
    position: relative;
    background: #f4f4f4;
}

blockquote.wp-block-quote::before {
    font-family: Arial;
    content: "\201C";
    color: var(--primary-color);
    font-size: 3em;
    position: absolute;
    left: 20px;
    top: 1px;
}

blockquote.wp-block-quote::after {
    content: '';
}

/* Overlay full */
.wa-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 99999;
}

/* Caixa central */
.wa-modal {
    width: min(520px, 100%);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
    /* Evita overflow em telas baixas (mobile landscape) */
    max-height: calc(100dvh - 32px);
    overflow-y: auto;

    /* Garante centralização mesmo com scrollbar */
    margin: auto;
}

/* Ajustes específicos para mobile */
@media (max-width: 480px) {
    .wa-modal {
        max-width: 100%;
        border-radius: 12px;
    }
}

/* Suporte a navegadores sem dvh (fallback) */
@supports not (height: 100dvh) {
    .wa-modal {
        max-height: calc(100vh - 32px);
    }
}

.wa-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
}

.wa-modal__title {
    font: 600 16px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial;
    margin: 0;
}

.wa-close {
    border: 0;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 6px 8px;
}

.wa-modal__body {
    padding: 16px;
}

.wa-field {
    display: grid;
    gap: 6px;
    margin-bottom: 12px;
}

.wa-field label {
    font: 600 12px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial;
    color: #333;
}

.wa-field input,
.wa-field select {
    width: 100%;
    padding: 12px 12px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    font: 400 14px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial;
    outline: none;
}

.wa-field input:focus,
.wa-field select:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, .18);
}

.wa-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.wa-btn {
    width: 100%;
    border: 0;
    border-radius: 10px;
    padding: 12px 14px;
    cursor: pointer;
    font: 700 14px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.wa-btn--primary {
    background: #25D366;
    color: #fff;
}

.wa-btn--ghost {
    background: #f4f4f4;
    color: #111;
}

.wa-hint {
    font: 400 12px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Arial;
    color: #555;
    margin: 10px 0 0;
}

/* Pergunta dos radios */
.wa-radio-question {
    font: 600 12px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Arial;
    color: #333;
}

/* Container dos radios */
.wa-radios {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 20px;
    margin-top: 8px;
}

/* Label clicável */
.wa-radio {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    cursor: pointer;
    font: 400 14px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial;
    color: #111;
}

/* Radio base */
.wa-radio input[type="radio"] {
    accent-color: #25D366;
    /* verde WhatsApp */
    width: fit-content;
    cursor: pointer;
}

/* Estilos do botão de voltar ao topo */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(106, 17, 203, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(106, 17, 203, 0.4);
}

#back-to-top:active {
    transform: translateY(0);
}

#back-to-top span {
    font-size: 30px;
}

.arrow-up {
    display: inline-block;
    transition: transform 0.3s;
}

#back-to-top:hover .arrow-up {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    #back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
}

/***** Menu de Navegação *****/

.menu-desktop {
    width: 100%;
    padding: 1rem;
}

.menu-desktop ul li>a.menu-link,
.menu-link__whatsapp {
    color: #FFFFFF;
    transition: all .2s ease-in-out;
}

/* Classe que será adicionada quando a seção estiver ativa */
.menu-desktop ul li>a.menu-link:hover {
    color: #1c64ac !important;
}

.menu-desktop ul li>a.menu-link.active {
    color: #1c64ac !important;
}

.menu-desktop ul li>a.menu-link.active:hover {
    color: #FFFFFF !important;
}

.menu-desktop ul li>a.menu-link::after,
.menu-link__whatsapp::after {
    display: none !important;
}

.no-content__comeback a.button span {
    font-size: 32px;
}

header.header-section {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    background-color: var(--black-color) !important;
    padding: 10px 0px !important;
}

.header-section-content {
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
}

.header-section-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    padding: 10px;
}

.header-section-logo [aria-hidden],
.footer-section-logo [area-hidden] {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    padding: 10px;
}

.header-section-logo span,
.footer-section-logo span {
    color: var(--white-color) !important;
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.header-section-content .nav-menu {
    flex: 1 !important;
}

.top-option .to-search {
    border: none;
    background: none;
    padding-right: 0 !important;
    transform: scale(1.5) !important;
}

.top-option .to-search:after {
    display: none !important;
}

section#top {
    display: none;
}

@media(max-width: 575px) {
    .row.section-intro {
        margin-right: 0;
        margin-left: 0;
    }
}

div.top-option,
div.to-social {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.link-espaco-pro {
    display: block;
    width: fit-content;
    height: auto;
}

.link-espaco-pro img {
    display: block;
    width: 20px;
    height: auto;
}

p.min-size-text,
li.min-size-text,
a.min-size-text {
    font-size: 20px !important;
}

.hs-slider .hs-item {
    height: 700px;
    padding: 250px 0 150px;
}

@media(min-width: 767px) {
    .hs-slider .hs-item {
        height: 100vh;
        /* height: 1040px; */
    }
}

/* DESKTOP */

.nav-menu ul li>a {
    color: var(--white-color) !important;
}

.nav-menu ul li>a:after {
    /* background: var(--white-color) !important; */
    display: none !important;
}

.nav-menu ul li>a:hover {
    /* color: var(--white-color) !important; */
    color: #1c64ac !important;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .nav-menu ul li {
        margin-right: 15px;
    }
}

/* MOBILE */

.canvas-search.search-switch {
    width: 100%;
    border: none;
    background: none;
    margin: 0;
}

@media only screen and (max-width: 767px) {
    .canvas-open {
        position: relative;
        right: initial;
        top: initial;
        display: block;
        width: 30px;
        height: 30px;
        font-size: 22px;
        color: #ffffff;
        line-height: 29px;
        text-align: center;
        background: none;
        border: 1px solid #ffffff;
        border-radius: 0px;
        cursor: pointer;
        z-index: 1;
    }

    .canvas-social {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        margin-top: 20px;
    }

    .offcanvas-menu-wrapper .canvas-social a {
        margin-right: 0 !important;
    }

    .offcanvas-menu-wrapper .canvas-social a i {
        font-size: 22px !important;
    }
}

#search-form-default .search-form input[type="search"] {
    width: 100%;
    padding: 20px;
    border: 0;
    background: transparent;
    border-bottom: 1px solid var(--gray-light-color);
    color: var(--white-color);
}

#search-form-default .search-form button[type="submit"] {
    opacity: 0;
}

@media(min-width: 1440px) {
    #search-form-default .search-form input[type="search"] {
        font-size: 40px;
    }
}

.page-default {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    background: white;
    padding: 100px 0;
    z-index: 1;
}

.page-default h1,
.page-default h2,
.page-default h3,
.page-default h4,
.page-default h5,
.page-default h6 {
    margin-bottom: 20px;
}

.page-default h1 {
    line-height: 70px !important;
}

.page-default h2,
.page-default h3,
.page-default h4,
.page-default h5,
.page-default h6 {
    line-height: 35px;
    margin-top: 50px !important;
}

.page-default ul {
    margin-left: 20px;
}

.page-default p,
.page-default li {
    font-size: 20px !important;
    color: #666 !important;
    line-height: 35px;
}

.page-default .row {
    margin: 0px !important;
}

.banner-section .bs-text .primary-btn,
.primary-btn.appoinment-btn {
    border: 2px solid var(--white-color) !important;
    background: transparent !important;
    color: var(--white-color) !important;
}

.banner-section .bs-text .primary-btn:hover,
.primary-btn.appoinment-btn:hover {
    border: 2px solid var(--primary-color) !important;
    background: var(--primary-color) !important;
}

.banner-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

/***** CONTAINER *****/

.container-border-top {
    border-top: 1px solid #1a1a1a;
    padding-top: 40px;
}

/***** Player TTS *****/

.tts-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    padding: 10px;
    margin: 20px 0;
    border: 1px solid var(--gray-light-color);
}

@media(min-width: 767px) {
    .tts-area {
        width: 310px;
    }
}

.tts-area__controls {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.tts-area__controls button {
    flex: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 10px;
    cursor: pointer;
    border: none;
    font-weight: bold;
    background-color: var(--primary-color);
}

.tts-area__controls button svg {
    border: 2px solid var(--white-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 3px;
    color: var(--white-color);
}

.tts-area__controls button svg path {
    stroke-width: 2px;
}

.tts-area__controls button span {
    color: var(--white-color);

}

.tts-area span {
    color: var(--text-light-color);
    line-height: 10px;
}

.tts-area .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.tts-area .tts-status {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .tts-area__controls button {
        transition: none;
    }
}

/***** HOME -> CATEGORIAS *****/
@media(min-width: 1279px) {
    .class-item {
        display: flex;
        flex-direction: column;
        height: 100%;
        padding-bottom: 20px;
    }
}

.class-item .ci-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding-bottom: 0;
}

@media(min-width: 1279px) {
    .class-item .ci-text {
        flex: 1;
        padding-bottom: 26px;
    }
}

.class-item .ci-text p {
    text-transform: uppercase;
    text-align: center;
}

@media(min-width: 1279px) {
    .class-item .ci-text p {
        flex: 1;
        text-align: left;
        margin-bottom: -25px;
    }
}

.class-item .ci-text-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

@media(min-width: 1279px) {
    .class-item .ci-text-header {
        flex-direction: row;
    }
}

.class-item .ci-text a {
    position: relative;
    top: initial;
    right: initial;
    bottom: initial;
    left: initial;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    margin: 10px auto 0;
    font-size: 24px;
    color: #ffffff;
}

@media(min-width: 1279px) {
    .class-item .ci-text a {
        margin: initial;
    }
}

.class-item .ci-text a,
.class-item .ci-text a:hover .fa {
    transition: all .2s ease-in-out;
}

.class-item .ci-text a:hover {
    background-color: var(--secondary-color);
}

.class-item .ci-text a:hover .fa {
    transform: scale(1.5);
}

.class-item .ci-text span {
    display: inline-block;
    margin-bottom: 20px;
}

/* =============================================
   ESTILOS PARA SISTEMA DE VISITAS
   ============================================= */

/* Container de informações do post */
.post-meta-info {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0073aa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.post-info-title {
    color: #2c3e50;
    margin: 0 0 15px 0;
    font-size: 1.4em;
    font-weight: 600;
}

.post-info-excerpt {
    color: #555;
    margin: 0 0 15px 0;
    font-size: 0.95em;
    line-height: 1.6;
}

.post-info-reading-time,
.post-info-views {
    display: inline-block;
    font-size: 16px !important;
    color: var(--black-color);
    /* background: #fff; */
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

.post-info-reading-time:before {
    content: "⏱️";
    margin-right: 6px;
    font-size: 0.9em;
}

.post-info-views:before {
    content: "👁️";
    margin-right: 6px;
    font-size: 0.9em;
}

/* Posts Populares */
.popular-posts-shortcode {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}

.popular-posts-title {
    color: white;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5em;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.popular-posts__subtitle,
.all-posts__subtitle {
    font-size: 20px;
    color: #666666 !important;
    margin: -5px 0 0 !important;
}

.popular-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.popular-post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    color: #333;
}

.popular-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.popular-post-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.popular-post-thumbnail {
    overflow: hidden;
    position: relative;
}

.popular-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popular-post-card:hover .popular-post-thumbnail img {
    transform: scale(1.1);
}

/* .popular-post-content {
    padding: 20px;
} */

.popular-post-title {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 1.1em;
    line-height: 1.4;
}

.popular-post-excerpt {
    color: #666;
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 15px;
}

.popular-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8em;
    color: #888;
}

.post-views {
    background: #0073aa;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
}

/* Responsividade */
@media (max-width: 768px) {
    .post-meta-info {
        margin: 15px 0;
        padding: 15px;
    }

    .post-info-reading-time,
    .post-info-views {
        display: block;
        margin-right: 0;
        margin-bottom: 8px;
    }

    .popular-posts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .popular-posts-shortcode {
        margin: 20px 0;
        padding: 20px;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popular-post-card {
    animation: fadeIn 0.6s ease-out;
}

/***** INDEX ***/

svg.choseus-section-svg {
    color: var(--white-color);
    width: auto;
    height: 50px;
}

img.choseus-section-img {
    filter: brightness(0) invert(1);
    width: auto;
    height: 50px;
}

section.choseus-section p.min-size-text {
    color: #a9a9a9;
}

#about .about-text .section-title {
    margin-bottom: 10px;
}

#about .at-desc h3 {
    font-size: 18px;
    font-weight: 700;
    padding: 0;
    color: var(--primary-color);
}

.about-thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.section-title--topics {
    display: block;
}

.at-desc-about-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

#about ul.at-desc-about-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: #C4C4C4 !important;
    padding-left: 20px;
}

@media(min-width: 992px) {

    .section-title--topics,
    .at-desc-about-grid {
        display: none;
    }
}

@media(min-width: 1440px) {
    .section-title--topics {
        display: block;
    }

    .at-desc-about-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

/***** ABOUT ***/

.about-text {
    height: 100% !important;
    padding: 40px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

#about .section-title,
#about .section-title h2 {
    margin: 0px !important;
}

.about-text .at-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 0;
}

.about-text .at-desc>p {
    margin-bottom: 0 !important;
}

.blog-cta {
    position: relative;
    overflow: hidden;
    background: var(--black-color);
}

.blog-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.blog-cta .container {
    position: relative;
    z-index: 1;
}

.class-item .ci-pic img {
    height: 230px;
    object-fit: cover;
}

@media(min-width: 1440px) {
    .class-item .ci-pic img {
        height: 240px;
    }
}

/***** HIGHLIGHTS *****/

#highlights {
    padding-bottom: 0 !important;
}

@media(min-width: 768px) {
    #highlights {
        padding-bottom: 100px !important;
    }
}

#highlights .highlights__grid,
#highlights .highlights__article {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    height: auto;
    overflow: hidden;
}

#highlights .highlights__grid {
    grid-gap: 20px;
}

#highlights .highlights__column {
    position: relative;
    height: 300px;
}

#highlights .highlights__column:nth-child(1) {
    overflow: hidden;
    z-index: 1;
}

#highlights .highlights__column:nth-child(2) {
    width: 100%;
    background: #252525;
    transition: all 0.3s ease-in-out;
    z-index: 2;
}

#highlights .highlights__column>img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    filter: grayscale(1);
}

#highlights .highlights__column h3 {
    font-size: 22px;
    color: #ffffff;
    font-weight: 600;
    text-transform: none;
}

#highlights .highlights__column p {
    font-size: 18px !important;
    font-family: "Muli", sans-serif;
    color: #a9a9a9;
    font-weight: 400;
    line-height: 24px;
    text-transform: lowercase;
    margin-bottom: 0;
}

#highlights .highlights__column:nth-child(2) a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    max-width: 80%;
    height: 100%;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 20px;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
}

#highlights .highlights__column:nth-child(2) a span {
    color: white;
}

@media(min-width: 768px) {
    #highlights .highlights__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1024px) {

    #highlights .highlights__grid,
    #highlights .highlights__article {
        grid-gap: 0;
    }

    #highlights .highlights__article {
        grid-template-columns: repeat(2, 1fr);
    }

    #highlights .highlights__column {
        height: 290px;
    }

    #highlights .highlights__column:nth-child(2):after {
        position: absolute;
        left: -15px;
        top: 50%;
        height: 20px;
        width: 20px;
        background-color: #252525;
        content: "";
        transform: rotate(45deg) translateY(-10px);
        transition: all 0.3s ease-in-out;
        z-index: -1;
    }

    #highlights .highlights__column:nth-child(2):hover,
    #highlights .highlights__column:nth-child(2):hover:after {
        background-color: #3a3a3a;
    }

    #highlights .highlights__article.highlights__article--odd .highlights__column:nth-child(1) {
        order: 2;
    }

    #highlights .highlights__article.highlights__article--odd .highlights__column:nth-child(2) {
        order: 1;
    }

    #highlights .highlights__article.highlights__article--odd .highlights__column:after {
        left: auto;
        right: -2px;
    }
}

#categories.classes-section,
#experts.team-section,
#pricing.pricing-section {
    background: #0a0a0a;
}

#categories h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    text-transform: uppercase;
}

@media(min-width: 1440px) {
    #categories h3 {
        font-size: 22px;
    }
}

/***** ADVERTISING *****/

.advertising {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    background: white;
    padding: 0;
    z-index: 1;
}

@media(min-width: 1440px) {
    .advertising {
        min-height: 550px;
    }
}

.advertising>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* opacity: 0.3; */
    z-index: 0;
}

.banner-marcio-garcia {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #2d2926;
    padding: 0;
    z-index: 1;
}

@media(min-width: 1440px) {
    .banner-marcio-garcia {
        padding-top: 50px;
        padding-bottom: 100px;
    }
}

.banner-marcio-garcia__fundo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.banner-marcio-garcia .container {
    position: relative;
    padding: 50px 20px;
    z-index: 3;
}

.banner-marcio-garcia__conteudo {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    z-index: 3;
}

@media(min-width: 768px) {
    .banner-marcio-garcia__conteudo {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner-marcio-garcia__conteudo>div:nth-of-type(1) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media(min-width: 768px) {
    .banner-marcio-garcia__conteudo>div:nth-of-type(1) {
        grid-column: span 2;
        gap: 10px;
        align-items: flex-start;
    }
}

.banner-marcio-garcia__title,
.banner-marcio-garcia__subtitle,
.banner-marcio-garcia__description,
.banner-marcio-garcia__button span {
    font-family: var(--font-futura);
    color: var(--white-color);
    letter-spacing: 1px;
}

.banner-marcio-garcia__title {
    text-align: center;
    font-weight: bold;
}

@media(min-width: 1280px) {
    .banner-marcio-garcia__title {
        text-align: left;
        font-size: 56px;
        font-weight: 400;
    }
}

.banner-marcio-garcia__subtitle {
    text-align: center;
    font-size: 20px;
}

@media(min-width: 1280px) {
    .banner-marcio-garcia__subtitle {
        text-align: left;
        font-size: 38px;
    }
}

.banner-marcio-garcia__subtitle--doctor {
    font-size: 20px;
    font-weight: bold;
}

.banner-marcio-garcia__description {
    display: none;
}

@media(min-width: 1280px) {
    .banner-marcio-garcia__description {
        display: block;
        font-size: 25px;
    }
}

.banner-marcio-garcia span.yellow {
    color: var(--yellow-color);
}

.banner-marcio-garcia__button {
    background-color: var(--yellow-color);
    padding: 13px 30px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
}

.banner-marcio-garcia__button:hover {
    background-color: var(--white-color);
    color: var(--yellow-color) !important;
}

.banner-marcio-garcia__button span {
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.banner-marcio-garcia__button:hover span {
    color: var(--yellow-color) !important;
}

@media(min-width: 768px) {
    .banner-marcio-garcia__button {
        padding: 25px 13px;
        gap: 13px;
    }

    .banner-marcio-garcia__button span {
        font-size: 19px;
    }
}

.banner-marcio-garcia__button svg path {
    fill: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.banner-marcio-garcia__button:hover svg path {
    fill: var(--yellow-color) !important;
}

.banner-marcio-garcia__avatar {
    height: auto;
}

@media(min-width: 768px) {
    .banner-marcio-garcia__avatar {
        transform: scale(1.1);
    }
}

@media(min-width: 1440px) {
    .banner-marcio-garcia__avatar {
        transform: scale(1.5);
    }
}

.banner-marcio-garcia__shadow {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: rgba(0, 0, 0, 0);
    background-image: linear-gradient(0deg, #2D2926 27.192982456140353%, rgba(202, 217, 233, 0) 100%);
    border-radius: 5px;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}


/***** TABELA DESKTOP *****/

.bmi-calculator-section {
    display: none;
}

@media(min-width: 1024px) {
    .bmi-calculator-section {
        display: block;
    }
}

.chart-table ul {
    padding-left: 14px !important;
}

.chart-table table thead tr th,
.chart-table table tbody tr td {
    padding: 20px !important;
}


/***** EXPERTS *****/

#experts .experts__subtitle {
    font-size: 16px;
}

#experts .experts__button {
    width: fit-content;
    background-color: var(--secondary-color);
    font-size: 16px;
    color: var(--gray-color) !important;
    padding: 8px 16px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transform: skewY(5deg);
    margin-top: 10px;
}


/***** BLOG ***/

.archive-content,
.single-content,
.article-content,
.no-content,
.search-content {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background: white;
    padding: 0;
    z-index: 1;
}

.archive-content__header,
.archive-content__post-header {
    position: relative;
    top: initial;
    right: initial;
    bottom: initial;
    left: initial;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent !important;
}

.archive-content__header {
    display: block;
    width: 100%;
    height: auto;
    background: white;
    padding: 100px 0 50px;
    z-index: 1;
    text-align: left;
}

.archive-content__description>p {
    font-size: 20px;
    margin: 5px 0 15px !important;
}

.header-column {
    display: block;
    width: 100%;
}

.header-column strong {
    font-size: 20px;
}

/*
.header-mobile {
    padding-right: 20px;
    padding-left: 20px;
}

@media(min-width: 768px) {
    .header-mobile {
        padding-right: 0;
        padding-left: 0;
    }
}
*/
.archive-content__header h1,
.archive-content__header p {
    display: block !important;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
}

.archive-content__header h1 {
    margin-left: -2px;
}

@media(max-width: 768px) {
    .archive-content__header h1 {
        font-size: 30px;
    }
}

@media(min-width: 769px) and (max-width: 1024px) {
    .archive-content__header h1 {
        font-size: 40px;
    }
}

.archive-content-posts {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.archive-content-post-list {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    z-index: 1;
}

.archive-content-post-list__wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
}

@media(min-width: 768px) {
    .archive-content-post-list__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1440px) {
    .archive-content-post-list__wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-content__post {
    width: 100%;
    height: auto;
}

.article-content__permalink {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    background-color: var(--whitegray-color);
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.archive-content__post-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    margin: 0;
}

.popular-post-thumbnail,
.archive-content__post-thumbnail {
    height: 210px !important;
    object-fit: cover;
}

@media(min-width: 500px) and (max-width: 1440px) {

    .popular-post-thumbnail,
    .archive-content__post-thumbnail {
        height: 266px !important;
    }
}

.archive-content__post-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
}


.archive-content__post-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    padding: 0;
    text-align: left;
}

.archive-content__post-header p,
.archive-content__post-header h3,
.archive-content__post-header h2,
.archive-content__post-content {
    width: 100%;
    color: #151515;
    margin: 0;
    padding: 0;
}

.archive-content__post-header h3,
.archive-content__post-header h2 {
    font-size: 22px;
    font-weight: 400;
}

.archive-content__post-header p {
    font-size: 16px;
    font-weight: 400;
}

.archive-content__post-content {
    flex: 1;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    text-align: left;
}

.archive-content__post-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    margin: 20px 0 0 !important;
}

.archive-content__post-info--popular {
    margin: 0 !important;
}

.archive-content__post-info span.post-info-reading-time,
.archive-content__post-info span.post-info-views {
    border: none !important;
    padding: 0 !important;
}

.archive-content__post-footer {
    width: 100%;
    margin: 0;
    padding: 12px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: #FFFFFF;
    font-weight: bold;
    font-family: 'Muli', sans-serif !important;
}

.single-content__space-between {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

@media(min-width: 992px) {
    .single-content__space-between {
        flex-direction: row;
        gap: 20px;
    }
}

.single-content__article {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px 0 0;
    margin: 0;
    z-index: 1;
}

@media(min-width: 992px) {
    .single-content__article {
        padding-top: 60px;
    }
}

.single-content__post-header {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 60vh;
    padding: 100px 0;
    text-align: left;
    background-color: #0a0a0a;
}

.single-content__post-header.only-title {
    height: auto !important;
    padding: 50px 0 0;
}

.single-content__post-header h1,
.single-content__post-header p {
    position: relative !important;
    color: #FFFFFF !important;
    text-align: left !important;
    text-rendering: optimizeLegibility !important;
    line-height: 40px !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 500px !important;
    z-index: 1;
}

.single-content__post-header h1 {
    letter-spacing: .3rem !important;
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 20px 0 !important;
}

.single-content__post-header p {
    letter-spacing: .1rem !important;
    line-height: 25px !important;
    font-size: 18px;
    font-weight: 400;
    margin: 0 !important;
}

.single-content__post-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    z-index: 0;
}

.single-content__post-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    margin: 0;
    filter: brightness(0.3);
}

.single-content__post-content {
    position: relative;
    z-index: 1;
    width: 100%;
    /* background-color: #f9f9f9; */
    /* padding: 20px; */
    margin: 0;
}

.single-content__wrapper-content {
    width: 100% !important;
    height: auto;
}

.single-content__main-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: auto;
    padding-bottom: 50px;
}

.single-content__main-content #text-to-read {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.single-content__main-content h1,
.single-content__main-content h1 strong,
.single-content__main-content h2,
.single-content__main-content h2 strong,
.single-content__main-content h3,
.single-content__main-content h3 strong,
.single-content__main-content h4,
.single-content__main-content h4 strong,
.single-content__main-content h5,
.single-content__main-content h5 strong,
.single-content__main-content h6,
.single-content__main-content h6 strong {
    font-weight: 400 !important;
}

.single-content__main-content .wp-share {
    overflow: hidden;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    padding: 0;
}

.single-content__main-content .wp-share.wp-share--active {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px;
}

@media(min-width: 1024px) {
    .single-content__main-content .wp-share {
        width: fit-content;
        max-width: 292px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .wp-share__fallback {
        justify-content: flex-end;
    }

    .wp-share__copy,
    .wp-share__link {

        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .wp-share__link {
        width: 48.4%;
    }

    .wp-share__copy {
        width: 100%;
    }
}

.single-content__post-content-first-title {
    margin-bottom: 20px;
}

.single-content__post-content .wp-block-heading {
    margin-bottom: 20px !important;
}

.single-content__post-content h2.wp-block-heading {
    margin-bottom: 12px !important;
}

.single-content__post-content p,
.single-content__post-content li,
.single-content__post-categories a,
.single-content__post-tags a,
.single-content__post-others a {
    font-size: 24px !important;
    color: var(--text-light-color) !important;
    list-style: none;
    line-height: 32px;
}

.single-content__post-content .wp-block-list {
    margin-bottom: 20px !important;
    margin-left: 22px !important;
}

.single-content__post-content .wp-block-list li {
    list-style: disc !important;
    font-size: 20px !important;
}

.archive-content__post-content,
.popular-post-excerpt,
.related-posts .related-posts__description,
.popular-post-content p,
.related-products__content p {
    font-family: 'Muli', sans-serif !important;
    font-size: 18px !important;
    /* color: #918b8b !important; */
    list-style: none;
    line-height: 25px;
}

/* .single-content__post-content p {
    font-size: 24px !important;
    line-height: 32px;
} */

.single-content__post-divider {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: #eee;
    margin: 50px 0 30px;
}

/* related-products and  */

.related-products__content.main-space,
.related-posts__card.main-space {
    padding: 20px !important;
}

.single-content__post-products,
.related-posts {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    /* background-color: #f9f9f9 !important; */
    margin: 0;
    z-index: 1;
}

@media(min-width: 1440px) {

    .single-content__post-products,
    .related-posts {
        gap: 30px;
    }
}

.related-products,
.related-posts__grid,
.popular-posts-grid {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
    width: 100%;
    height: auto;
    /* background-color: #f9f9f9; */
    padding: 0px;
    margin: 0;
    z-index: 1;
}

@media(min-width: 767px) {

    .related-products,
    .related-posts__grid,
    .popular-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1200px) {

    .related-products,
    .related-posts__grid,
    .popular-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.related-posts .related-posts__description {
    line-height: 25px !important;
}

.related-products__card,
.related-posts__card,
.popular-post-link,
.popular-post-content,
.related-products__content,
.related-posts__card>a {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    background-color: var(--whitegray-color);
    padding: 0;
}

.related-products__card,
.related-posts__card,
.popular-post-link,
.related-products__link,
.article-content__permalink {
    border: 1px solid #eee;
    transition: all .3s ease-in-out;
}

.related-posts__card:hover,
.popular-post-link:hover,
.related-products__link:hover,
.article-content__permalink:hover {
    border: 1px solid #666;
}

.popular-post-content,
.related-products__content,
.related-posts__card>a {
    gap: 15px;
}

.popular-post-card {
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: initial !important;
}

.related-products__image {
    height: 266px !important;
}

.related-products__image,
.popular-post-thumbnail {
    display: block;
    width: 100%;
    object-fit: cover;
}

.related-products__title,
.related-posts__title,
.popular-post-title {
    position: relative;
    width: 100%;
    font-size: 18px;
    color: #151515;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
    text-transform: uppercase;
    margin: 0;
    /* padding: 0 15px; */
}

.related-products__description,
.related-posts .related-posts__description,
.popular-post-excerpt {
    flex: 1;
}

.related-products__description,
.related-posts .related-posts__description,
.popular-post-excerpt,
.popular-post-views {
    position: relative;
    width: 100%;
    font-size: 16px;
    color: #666666;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    margin: 0;
    /* padding: 0 15px; */
}

.related-products__buy {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #ffe600;
    padding: 15px 30px;
}

.related-products__buy img {
    width: 100px;
    height: auto;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.related-products__buy:hover img {
    transform: scale(1.2);
}

.related-products__links {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 0px;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

.related-products__link {
    flex: 1;
    position: relative;
    display: block;
    /* width: fit-content; */
    height: auto;
    background-color: var(--white-color);
    text-decoration: none;
    padding: 0;
    border: 1px solid #eee;
}

.related-products__link img {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin: 0 auto;
}

.related-products__stores {
    position: relative;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0px;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

@media(min-width: 767px) {
    .related-products__stores {
        grid-template-columns: repeat(3, 1fr);
    }
}

.related-products__store-link {
    flex: 1;
    position: relative;
    display: block;
    /* width: fit-content; */
    height: auto;
    background-color: var(--white-color);
    text-decoration: none;
    padding: 0;
    border: 1px solid #eee;
}

.related-products__store-link:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transform: translateY(-2px);
}

.related-products__store-link img {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin: 0 auto;
}

article footer.single-content__post-footer {
    position: relative;
    width: 100% !important;
    background-color: var(--whitegray-color) !important;
    padding: 70px 25px;
    margin: 0;
    z-index: 1;
}

.single-content__post-footer>.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    width: 100%;
    height: auto;
}

@media(min-width: 576px) {
    .single-content__post-footer .row {
        margin-right: 10px;
        margin-left: 10px;
    }
}

.single-content__post-footer h3 {
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
}

.single-content__post-footer .post-categories {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    width: fit-content;
    height: auto;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media(min-width: 768px) {
    .single-content__post-footer .post-categories {
        gap: 20px;
    }
}

.single-content__post-footer .post-categories li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-content__post-footer .post-categories a {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: fit-content;
    height: auto;
    background-color: var(--white-color);
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #eee;
    transition: all .3s ease-in-out;
    color: #151515 !important;
}

.single-content__post-footer .post-categories a:hover {
    border-color: #666;
    color: #151515 !important;
}

.single-content__post-categories,
.single-content__post-tags,
.single-content__post-others {
    position: relative;
    width: 100%;
    height: auto;
    background-color: white;
    padding: 20px;
    margin: 0;
}

.single-content__post-categories h3,
.single-content__post-tags h3,
.single-content__post-others h3 {
    width: 100%;
    font-size: 16px !important;
    color: #151515;
    font-weight: 700;
    line-height: 20px !important;
    text-align: left !important;
    text-transform: uppercase;
    margin: 0 0 10px !important;
    padding: 0 !important;
}

.single-content__post-categories p,
.single-content__post-tags p,
.single-content__post-others p {
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
}

.single-content__post-categories p a,
.single-content__post-tags p a,
.single-content__post-others p a {
    transition: all 0.2s ease-in-out;
    color: #999;
}

.single-content__post-categories p a:hover,
.single-content__post-tags p a:hover,
.single-content__post-others p a:hover {
    color: #151515;
}

.no-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.no-content__complement {
    color: #151515;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    margin: 0;
    padding: 0;
}

.blog-post-pagination,
.archive-content__post-pagination,
.archive-content__post-pagination .navigation,
.archive-content__post-pagination .nav-links {
    width: 100%;
}

.blog-post-pagination,
.archive-content__post-pagination {
    margin-top: 40px !important;
}

.blog-post-pagination,
.archive-content__post-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    padding: 0;
}

.blog-post-pagination {
    padding-bottom: 50px;
}

.blog-post-pagination .page-numbers,
.archive-content__post-pagination .nav-links .page-numbers {
    display: block;
    width: fit-content;
    height: auto;
    padding: 5px 10px;
    background-color: #f9f9f9;
    color: #151515;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.blog-post-pagination .page-numbers:hover,
.archive-content__post-pagination .nav-links .page-numbers:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}

.blog-post-pagination .page-numbers.current,
.archive-content__post-pagination .nav-links .page-numbers.current {
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 10px;
}

/* Estilo da barra de progresso */
.progress-container {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f1f1f1;
    z-index: 9999;
}

@media(min-width: 992px) {
    .progress-container {
        top: 95px;
    }
}

.progress-bar {
    height: 100%;
    background: #1c64ac;
    width: 0%;
    transition: width 0.1s ease;
}

/* Estilo da barra de breadcrumb Bootstrap */
ul.breadcrumb {
    display: none !important;
    position: relative;
    grid-gap: 12px;
    background-color: #f9f9f9;
    z-index: 1;
}

ul.breadcrumbs li.item-cat>a {
    color: var(--primary-color) !important;
}

ul.breadcrumb li.separator {
    font-size: 25px;
    display: inline-block;
    margin-top: -8px;
}

@media(min-width: 1024px) {
    ul.breadcrumb {
        display: flex !important;
    }
}

ul.fw-recent__meta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    list-style: none !important;
}

.archive-content__post-content ul.fw-recent__meta {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0px;
    margin: 20px 0 10px !important;
}

.archive-content__post-content ul.fw-recent__meta li {
    font-size: 16px;
    font-weight: 700;
    color: #151515;
}

ul.fw-recent__meta li,
ul.fw-recent__meta li::before,
.fs-widget .fw-recent ul li:after {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    content: ' ' !important;
}

.fa-social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: fit-content;
    height: auto;
    padding: 0;
    margin: 0;
}

.fs-about .fa-social a {
    font-size: 30px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.fw-recent__title a {
    color: #e5e1e1;
}

.fs-widget .fw-recent {
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.fs-widget .fw-recent ul li {
    font-size: 16px;
    color: #999999;
    display: inline-block;
    margin-right: 25px;
    position: relative;
}

/***** Content Manager *****/

.content-manager {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--text-color);
}

.content-manager__about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

@media(min-width: 768px) {
    .content-manager__about {
        gap: 20px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
}

.content-manager__title {
    font-size: 16px !important;
    font-weight: 700;
    color: var(--white-color);
    text-transform: uppercase;
}

.content-manager__link {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
}

.content-manager__link:hover {
    color: var(--white-color) !important;
}

/****** 404 ******/

.page-404 {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background: white;
    padding: 0;
    text-align: center;
    z-index: 1;
}

.page-404,
.page-404__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.page-404__container {
    padding: 100px 20px;
}

.page-404__title,
.page-404__subtitle,
.page-404__description {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.page-404__title {
    font-size: 50px;
    font-weight: 100;
    color: #151515;
}

.page-404__subtitle {
    font-size: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.page-404__description {
    font-size: 16px;
    color: #666666;
}

.page-404__button {
    width: fit-content;
    cursor: pointer;
    background-color: #151515;
    color: #fff;
    border: none;
    margin: 0 auto;
}

.owl-instagram-feeds__link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    z-index: 1;
}

.owl-instagram-feeds__link:hover .owl-instagram-feeds__overlay,
.owl-instagram-feeds__link:hover .owl-instagram-feeds__overlay svg {
    opacity: 1;
}

.owl-instagram-feeds__link:hover .owl-instagram-feeds__overlay svg {
    top: 50%;
    transform: translateY(-50%);
}

.owl-instagram-feeds__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 0.2s ease-in-out;
    opacity: 0;
    z-index: 1;
}

.owl-instagram-feeds__overlay svg {
    position: absolute;
    top: 0;
    left: 40%;
    width: auto;
    height: 50px;
    color: #fff;
    transition: all 0.2s ease-in-out;
    opacity: 0;
}

.owl-instagram-feeds__image {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/***** PRODUTOS *****/

article.produto-item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background: white;
    padding: 65px 0 50px;
    margin: 0;
}

@media(min-width: 600px) {
    article.produto-item {
        padding-top: 100px;
    }
}

@media(min-width: 1024px) {
    article.produto-item {
        padding-top: 200px;
    }
}

article.produto-item .col-twelve {
    margin: 0 auto !important;
}

.produto-item__main {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media(min-width: 768px) {
    .produto-item__main {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
        align-items: flex-start;
        width: 100%;
        max-width: 900px;
        padding: 30px;
        margin: 0 auto;
        box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    }
}

.produto-item__thumbnail {
    overflow: hidden;
    width: 100%;
    height: auto;
}

.produto-item__thumbnail img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

@media(min-width: 600px) {
    .produto-item__content {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}

.produto-item__title {
    font-size: 36px;
    margin: 0 0 20px !important;
    font-weight: 400 !important;
}

@media(min-width: 1024px) {
    .produto-item__title {
        margin: -8px 0 0 0 !important;
    }
}

.produto-item__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.produto-item__text p {
    font-size: 20px !important;
    line-height: 30px !important;
}

.produto-item__link {
    width: 100%;
    margin-top: 20px !important;
}

.produto-item__link a {
    width: 100%;
}

.produto-item__footer {
    width: 100%;
    height: auto;
    background-color: transparent !important;
}

@media(min-width: 1024px) {
    .produto-item__footer {
        margin-top: 50px !important;
    }
}

.produto-item__footer-title {
    font-size: 24px;
    text-align: left;
    margin: 0 0 30px !important;
}

@media(min-width: 1024px) {
    .produto-item__footer-title {
        font-size: 30px;
    }
}


/***** Footer *****/

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
}

footer .fs-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.fs-about p {
    margin: auto;
    padding: 0;
    line-height: 35px;
}

.footer-section a {
    transition: all 0.2s ease-in-out;
}

.footer-section a:hover {
    color: var(--white-color) !important;
}


.footer-section-logo {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-section-logo span[aria-hidden] {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

    width: 50px;
    height: 50px;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    padding: 10px;
}

.fs-widget ul li {
    line-height: 38px;
}


/***** Plugin de Libras *****/
div[vw] {
    transform: translateY(calc(-50% + 200px)) !important;
}

/* ATENÇÃO: Apagar quando tiver usando rede social */
.top-option .to-social a,
div.canvas-social,
.footer-section .fa-social {
    display: none !important;
}