/*
Theme Name: Meu Tema Moderno
Theme URI: http://seudominio.com/
Author: Seu Nome
Author URI: http://seudominio.com/
Description: Tema moderno, bonito e performático, com layout otimizado para SEO e Core Web Vitals.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: meu-tema-moderno
*/

/* Reset e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6600;
    /* Laranja */
    --secondary-color: #000000;
    /* Preto */
    --background-color: #ffffff;
    /* Branco */
    --text-color: #333;
    --header-height: 60px;
}

a {
    text-decoration: none;
}

/* Estilos Globais */
body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Container central */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* Layout principal: Conteúdo e Sidebar */
.content-wrapper {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.content-wrapper .posts-grid {
    flex: 3;
}

.content-wrapper .sidebar {
    flex: 1;
}

/* Posts Individuais (Single) */
.site-main article {
    max-width: 800px;
    margin: 20px auto;
    padding: 15px;
}

.entry-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.entry-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
}

.post-thumbnail img {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

.breadcrumbs {
    font-size: 0.9rem;
    margin: 15px 0;
    padding-top: 100px;
    border-radius: 5px;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--secondary-color);
}

.entry-meta .post-categories a {
    color: var(--primary-color);
    /* Cor desejada para os links das categorias */
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-meta .post-categories a:hover {
    color: var(--primary-color);
    /* Cor de hover para os links das categorias */
}

.banner-ad {
    margin: 20px 0;
    text-align: center;
    padding: 10px;
    height: 320px;
}

.banner-ad img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 1.5rem;
    /* Espaço acima do título */
    margin-bottom: 1.2rem;
    /* Espaço abaixo do título */
    line-height: 1.4;
}

.entry-content p {
    font-size: 1.2rem;
    /* Aumenta um pouco o tamanho da fonte */
    line-height: 1.8;
    /* Melhora o espaçamento entre as linhas */
    margin-bottom: 1.5rem;
    /* Separa melhor os parágrafos */
}


/* Estilo para o modal de consentimento centralizado */
.cookie-consent-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 9999;
    display: none;
    /* Inicialmente oculto */
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
}

.cookie-consent-content {
    max-width: 100%;
}

.cookie-consent-modal a {
    color: var(--primary-color);
    /* Use a cor definida, por exemplo, laranja */
    text-decoration: underline;
}

.cookie-consent-modal button {
    margin-top: 10px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-consent-modal button:hover {
    background: #e55a00;
}

.related-posts {
    margin: 40px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.related-posts h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-align: center;
}

.related-posts ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 0;
}

.related-posts ul li {
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
    background: var(--background-color);
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.related-posts ul li:hover {
    transform: translateY(-5px);
}

.related-posts ul li a {
    text-decoration: none;
    color: var(--text-color);
    display: block;
    padding: 10px;
}

.related-posts ul li a img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

/* Container que estende o box para full width */
.fullwidth-container {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    background-color: #f9f9f9;
    /* Cor de fundo para destacar; ajuste conforme necessário */
    padding: 20px 0;
    font-size: 8pt;
    text-align: center;
    text-transform: uppercase;
}

/* Estilização do box de recomendados */
.recommended-box {
    max-width: 1200px;
    /* Limite o conteúdo interno se desejar centralizar */
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.recommended-box h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-align: center;
}

.recommended-box ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 0;
}

.recommended-box ul li {
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
    background: var(--background-color);
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.recommended-box ul li:hover {
    transform: translateY(-5px);
}

.recommended-box ul li a {
    text-decoration: none;
    color: var(--text-color);
    display: block;
    padding: 10px;
}

.recommended-box ul li a img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

/* Estilos para o Título na Página Single */
.single .post-header {
    margin: 20px 0;
    text-align: center;
}

.single .post-header h1 {
    font-size: 2.5rem;
    /* Ajuste o tamanho da fonte conforme necessário */
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
    /* Ajusta a altura da linha para garantir que o título não fique tão alto */
    text-transform: uppercase;
}

.single .post-header .post-meta {
    font-size: 1rem;
    color: #777;
    margin-bottom: 20px;
    line-height: 1.5;
}

.header-mobile {
    display: none
}

.header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999
}

.header .logo-title,
.header p.description {
    display: none
}

.header .top {
    background-color: #f50;
    background-image: linear-gradient(90deg, #f50, #000);
    min-height: 32.006px;
    color: #fff
}

.header .top .row {
    justify-content: flex-end!important;
    align-items: center
}

.header .flags {
    display: inline-flex;
    margin-left: 12px
}

.header .flags a {
    margin: 0 4px
}

.header ul.social {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    margin-bottom: 0;
    margin-top: 0
}

.header ul.social li {
    margin: 3px 8px
}

.header ul.social li a svg {
    width: 20px
}

.header ul.social li a svg path {
    transition: all .2s ease-out 0s !important;
    fill: #fff
}

.header ul.social li a.yt svg path {
    fill: #fff;
    stroke: #fff
}

.header .bottom {
    background-color: #000;
    background-image: linear-gradient(90deg, #000, #000);
    box-shadow: 0 .208vw 1.563vw rgba(0, 0, 0, .03);
    color: #fff;
    width: 100%
}

.header .bottom.fixed {
    position: fixed;
    top: -200.006px;
    transition: all .2s ease-out 0s !important
}

.header .bottom.visible {
    position: fixed;
    top: 0;
    transition: all .2s ease-out 0s !important
}

.header .bottom .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    position: relative
}

.header .bottom .wrapper .logo {
    width: 124.992px
}

.header p {
    margin-bottom: 0
}

.header .block-menu {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.header .menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0;
    list-style: none
}

.header .menu li {
    padding: 0 14.995px;
    position: relative
}

.header .menu li.menu-item-has-children::after {
    content: url(/wp-content/themes/olhardigital/assets/images/arrow-menu-white.svg);
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    right: 2.995px
}

.header .menu li.menu-item-has-children:hover ul.sub-menu {
    top: calc(100% - .052vw);
    bottom: auto;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: all .25s cubic-bezier(.32, .74, .57, 1)
}

.header .menu li>a {
    font-family: "Titillium Web", sans-serif;
    font-weight: 700;
    font-size: 13.997px;
    line-height: 1.3;
    height: 60px;
    white-space: nowrap;
    letter-spacing: .02em;
    color: #fff;
    text-transform: uppercase;
    position: relative
}

.header .menu li>a:hover {
    text-decoration: none
}

.header .menu li>a:hover::before {
    width: 100%
}

.header .menu li>a::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3.994px;
    background-color: currentColor;
    content: "";
    opacity: .2 !important;
    transition: all .3s cubic-bezier(.32, .74, .57, 1);
    color: #f50
}

.header .menu ul.sub-menu {
    margin-bottom: 0;
    list-style: none;
    background-color: #000;
    background-image: linear-gradient(90deg, #000, #4f4f4f);
    padding: 10.003px 0;
    min-width: 200.006px;
    position: absolute;
    top: 110%;
    right: auto;
    left: auto;
    z-index: 9999;
    display: block;
    box-shadow: 0 .208vw 1.563vw rgba(0, 0, 0, .03);
    text-align: left;
    transition: all .25s cubic-bezier(.32, .74, .57, 1);
    border-radius: .521vw;
    visibility: hidden;
    opacity: 0
}

.header .menu ul.sub-menu li {
    padding: 4.992px 14.995px
}

.header .menu ul.sub-menu li a {
    left: 0;
    transition: all .2s ease-out 0s !important
}

.header .menu ul.sub-menu li a:hover {
    left: 4.992px;
    transition: all .2s ease-out 0s !important
}

.header .search-wrap {
    display: block;
    width: 21.005px;
    margin-left: 30.01px;
    position: relative;
    cursor: pointer
}

.header .search-wrap:hover svg {
    opacity: .6;
    transition: all .2s ease-out 0s !important
}

.header .search-wrap svg {
    transform: scale(1.5);
    transform-origin: left center;
    transition: all .2s ease-out 0s !important
}

.header .search-wrap .searchform {
    position: absolute;
    display: block;
    margin-right: auto;
    margin-left: auto;
    max-width: 459.994px;
    bottom: -99.994px;
    z-index: 999;
    width: 360px;
    background: #fff;
    border-radius: 16.992px;
    height: 56.006px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-out 0s !important
}

.header .search-wrap .searchform.visible {
    bottom: -73.997px;
    opacity: 1;
    visibility: visible;
    transition: all .2s ease-out 0s !important
}

.header .search-wrap .searchform::after {
    content: url(/wordpress/wp-content/themes/vidacelular/assets/images/icon-search-gray.svg);
    position: absolute;
    top: 50%;
    right: 10.003px;
    transform: translateY(-50%) scale(1.5);
    transform-origin: center right;
    width: 20.006px;
    opacity: .4
}

.header .search-wrap input {
    background-color: transparent;
    font-size: 13.997px;
    padding-right: 66.01px;
    width: 100%;
    border: none;
    line-height: 36px;
    font-weight: 400;
    padding: 10.003px 56.006px 10.003px 24.998px;
    max-width: 100%;
    outline: 0 !important;
    box-shadow: none !important;
    white-space: nowrap;
    transition: all .3s cubic-bezier(.32, .74, .57, 1);
    border-radius: 44.006px;
    height: 56.006px
}

.header .search-wrap input::placeholder {
    font-size: 13.997px
}

.header .search-wrap .btn-submit {
    position: absolute;
    top: 0;
    right: 0;
    width: 20.006px;
    height: 56.006px;
    padding: 0 30.01px;
    z-index: 2;
    text-indent: -99999998.995px
}


/* Menu Mobile */
.btn-menu {
    position: absolute;
    margin-right: 0;
    left: 0;
    top: 48%;
    transform: translateY(-52%);
    width: 40px;
    height: auto;
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .5s ease-in-out 0s !important
}

.btn-menu.below {
    top: 76px
}

.btn-menu.active {
    transition: all .5s ease-in-out 0s !important
}

.btn-menu .menu-trigger {
    position: relative;
    z-index: 103;
    top: 0;
    right: 0;
    display: block;
    padding: 0;
    width: 40px;
    height: 27px;
    margin: 1px;
    cursor: pointer;
    transform: translateZ(0);
    transition: all .4s ease-in-out 0s !important;
    background: 0 0
}

.btn-menu .menu-trigger.active .line {
    right: -15px
}

.btn-menu .menu-trigger.active .line-1 {
    -ms-transform: translate(-50%, .5625rem) rotate(45deg);
    transform: translate(-50%, .5625rem) rotate(45deg);
    transition: all .3s ease-out 0s
}

.btn-menu .menu-trigger.active .line-2 {
    opacity: 0;
    transition: all .3s ease-out 0s
}

.btn-menu .menu-trigger.active .line-3 {
    -ms-transform: translate(-50%, -.5625rem) rotate(-45deg);
    transform: translate(-50%, -.5625rem) rotate(-45deg);
    transition: all .3s ease-out 0s;
    bottom: 4px !important
}

.btn-menu .menu-trigger .line {
    display: block;
    background: #fff;
    width: 30px;
    height: 1px;
    position: absolute;
    left: 0;
    border-radius: 1px;
    transition: all .3s ease-out 0s;
    text-indent: -624.9375rem
}

.btn-menu .menu-trigger .line.line-1 {
    top: .456rem
}

.btn-menu .menu-trigger .line.line-2 {
    top: 50%;
    top: calc(51% - 1px);
    width: 40px
}

.btn-menu .menu-trigger .line.line-3 {
    bottom: 7px !important
}

.header-mobile {
    display: none
}

.footer {
    background-color: #000
}

.footer .top {
    padding-top: 45.005px;
    padding-bottom: 49.997px
}

.footer .logo {
    display: table;
    margin: auto auto 24.998px auto
}

.footer .logo img {
    width: 124.992px
}

.footer .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    list-style: none;
    flex-wrap: wrap
}

.footer .menu li a {
    font-weight: 700;
    display: block;
    padding: 0 12px;
    white-space: nowrap;
    font-size: 13.997px;
    letter-spacing: 0;
    font-family: "Titillium Web", sans-serif;
    color: #fff
}

.footer .menu li a:hover {
    opacity: .7;
    text-decoration: none
}

.footer .copyright p {
    border-top: .052vw solid rgba(255, 255, 255, .07);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0;
    font-family: "Titillium Web", sans-serif;
    color: #fff;
    padding: 14.995px 0;
    text-align: center
}


@media screen and (max-width:990px) {
    .btn-menu {
        display: flex
    }

    .header .bottom .wrapper .logo {
        position: absolute;
        left: 50%;
        transform: translatex(-50%)
    }

    .header .bottom .wrapper .block-menu {
        justify-content: flex-end;
        width: 100%
    }

    .header .bottom .wrapper .menu {
        display: none
    }

    .header-mobile {
        position: fixed;
        top: 0;
        bottom: 0;
        left: -150%;
        width: 320px;
        height: 100%;
        background-color: #031328;
        z-index: 1055;
        transition: all .2s ease-out 0s !important;
        display: block;
        overflow: auto
    }

    .header-mobile.active {
        transition: all .2s ease-out 0s !important;
        left: 0
    }

    .header-mobile .btn-close {
        position: absolute;
        display: block;
        right: 5px;
        top: 5px;
        border-radius: 4px;
        width: 32px;
        height: 32px;
        background-color: rgba(255, 255, 255, .15);
        color: #fff;
        text-align: center;
        line-height: 32px;
        cursor: pointer;
        opacity: .7;
        transition: all .3s cubic-bezier(.32, .74, .57, 1);
        z-index: 20
    }

    .header-mobile .btn-close::before {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        margin-top: -1px;
        margin-left: -10px;
        width: 20px;
        height: 1px;
        background-color: #fff;
        content: "";
        transform: rotate(-45deg)
    }

    .header-mobile .btn-close::after {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        margin-top: -1px;
        margin-left: -10px;
        width: 20px;
        height: 1px;
        background-color: #fff;
        content: "";
        transform: rotate(45deg)
    }

    .header-mobile .top {
        position: relative;
        padding: 60px 20px 20px
    }

    .header-mobile .top::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(0, 0, 0, .4);
        content: "";
        pointer-events: none
    }

    .header-mobile .top .logo {
        width: 124.992px;
        display: table;
        margin: auto;
        z-index: 2;
        position: relative
    }

    .header-mobile .top ul.social {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        list-style: none;
        margin-bottom: 0;
        margin-top: 50px
    }

    .header-mobile .top ul.social li {
        width: 20px
    }

    .header-mobile .top ul.social li:not(:last-child) {
        margin-right: 10.003px
    }

    .header-mobile .top ul.social li a svg {
        width: 100%
    }

    .header-mobile .top ul.social li a svg path {
        transition: all .2s ease-out 0s !important;
        fill: #fff
    }

    .header-mobile .top ul.social li a.yt svg path {
        fill: #fff;
        stroke: #fff
    }

    .header-mobile .bottom {
        padding: 20px;
        overflow-x: hidden;
        overflow-y: auto
    }

    .header-mobile .bottom .menu {
        list-style: none;
        margin-bottom: 0;
        position: relative;
        z-index: 2
    }

    .header-mobile .bottom .menu li {
        position: relative
    }

    .header-mobile .bottom .menu li a {
        font-family: "Titillium Web", sans-serif;
        font-weight: 700;
        line-height: 1.3;
        font-size: 14px;
        white-space: nowrap;
        letter-spacing: .02em;
        text-transform: uppercase;
        color: #fff;
        padding: 10px 0;
        display: block
    }

    .header-mobile .bottom .menu li a:hover {
        text-decoration: none
    }

    .header-mobile .bottom .menu li.menu-item-has-children::after {
        content: url(/wp-content/themes/olhardigital/assets/images/arrow-menu-white.svg);
        position: absolute;
        top: 3px;
        right: 15px
    }

    .header-mobile .bottom .sub-menu {
        display: none;
        list-style: none;
        padding-left: 30px
    }

    /* Menu Mobile */

    .btn-menu .menu-trigger .line.line-1 {
        top: .456rem
    }

    .btn-menu .menu-trigger .line.line-2 {
        top: 50%;
        top: calc(51% - 1px);
        width: 40px
    }

    .btn-menu .menu-trigger .line.line-3 {
        bottom: 7px !important
    }

    .overlay {
        background: rgba(255, 255, 255, .9);
        pointer-events: auto;
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 1051;
        visibility: hidden;
        opacity: 0;
        transition: all .2s ease-out 0s !important
    }

    .header-mobile {
        position: fixed;
        top: 0;
        bottom: 0;
        left: -150%;
        width: 320px;
        height: 100%;
        background-color: #031328;
        z-index: 1055;
        transition: all .2s ease-out 0s !important;
        display: block;
        overflow: auto
    }

    .header-mobile.active {
        transition: all .2s ease-out 0s !important;
        left: 0
    }

    .header-mobile .btn-close {
        position: absolute;
        display: block;
        right: 5px;
        top: 5px;
        border-radius: 4px;
        width: 32px;
        height: 32px;
        background-color: rgba(255, 255, 255, .15);
        color: #fff;
        text-align: center;
        line-height: 32px;
        cursor: pointer;
        opacity: .7;
        transition: all .3s cubic-bezier(.32, .74, .57, 1);
        z-index: 20
    }

    .header-mobile .btn-close::before {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        margin-top: -1px;
        margin-left: -10px;
        width: 20px;
        height: 1px;
        background-color: #fff;
        content: "";
        transform: rotate(-45deg)
    }

    .header-mobile .btn-close::after {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        margin-top: -1px;
        margin-left: -10px;
        width: 20px;
        height: 1px;
        background-color: #fff;
        content: "";
        transform: rotate(45deg)
    }

    .header-mobile .top {
        position: relative;
        padding: 60px 20px 20px
    }

    .header-mobile .top::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(0, 0, 0, .4);
        content: "";
        pointer-events: none
    }

    .header-mobile .top .logo {
        width: 124.992px;
        display: table;
        margin: auto;
        z-index: 2;
        position: relative
    }

    .header-mobile .top ul.social {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        list-style: none;
        margin-bottom: 0;
        margin-top: 50px
    }

    .header-mobile .top ul.social li {
        width: 20px
    }

    .header-mobile .top ul.social li:not(:last-child) {
        margin-right: 10.003px
    }

    .header-mobile .top ul.social li a svg {
        width: 100%
    }

    .header-mobile .top ul.social li a svg path {
        transition: all .2s ease-out 0s !important;
        fill: #fff
    }

    .header-mobile .top ul.social li a.yt svg path {
        fill: #fff;
        stroke: #fff
    }

    .header-mobile .bottom {
        padding: 20px;
        overflow-x: hidden;
        overflow-y: auto
    }

    .header-mobile .bottom .menu {
        list-style: none;
        margin-bottom: 0;
        position: relative;
        z-index: 2
    }

    .header-mobile .bottom .menu li {
        position: relative
    }

    .header-mobile .bottom .menu li a {
        font-family: "Titillium Web", sans-serif;
        font-weight: 700;
        line-height: 1.3;
        font-size: 14px;
        white-space: nowrap;
        letter-spacing: .02em;
        text-transform: uppercase;
        color: #fff;
        padding: 10px 0;
        display: block
    }

    .header-mobile .bottom .menu li a:hover {
        text-decoration: none
    }

    .header-mobile .bottom .menu li.menu-item-has-children::after {
        content: url(/wp-content/themes/olhardigital/assets/images/arrow-menu-white.svg);
        position: absolute;
        top: 3px;
        right: 15px
    }

    .header-mobile .bottom .sub-menu {
        display: none;
        list-style: none;
        padding-left: 30px
    }
}

/* Responsividade - Ajuste para telas menores */
@media (max-width: 768px) {
    .single .post-header h1 {
        font-size: 2rem;
        /* Reduz o tamanho da fonte em dispositivos móveis */
    }

    .featured .featured-slide img {
        height: 250px;
    }

    .content-wrapper {
        flex-direction: column;
    }

    /* Ajusta os itens do box de recomendados para duas colunas */
    .recommended-box ul li {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    /* Reduz um pouco o tamanho do título e dos textos */
    .recommended-box h2 {
        font-size: 1.8rem;
    }

    .recommended-box ul li a,
    .recommended-box ul li a span {
        font-size: 1rem;
    }

    .recommended-box ul li:nth-child(n+3) {
        display: none;
    }

    /* Ajusta a disposição geral do container se necessário */
    .fullwidth-container {
        padding: 15px 0;
    }

    .entry-header h1 {
        font-size: 1.8rem;
        line-height: 2rem;
        margin-bottom: 10px;
        color: var(--secondary-color);
    }

    .entry-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .single .post-header h1 {
        font-size: 1.8rem;
        /* Reduz ainda mais para dispositivos muito pequenos */
    }

    .recommended-box ul li {
        flex: 1 1 100%;
        max-width: 100%;
    }

    /* Ajusta os tamanhos de fonte para melhor leitura em dispositivos pequenos */
    .recommended-box h2 {
        font-size: 1.6rem;
    }

    .recommended-box ul li a,
    .recommended-box ul li a span {
        font-size: 0.9rem;
    }
}