/* Estilos personalizados do tema */

:root {
    --blue-bg: #1a1a2e;
    --font-family-base: 'Barlow', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --dourado: #C3985A;
    --blue: #1C3C5E;
    --blue-bg: #061323;
    --blue-top-bar: #0F2136;
    --white: #fff;
    --off-white: #EDE6DB;
    --black: #000;
    --text-dark: #B0B4B6;
    --cinza: #b0b4b6;
    --font-size-xxxs: 0.625rem;  /* 10px */
    --font-size-xxs:  0.75rem;   /* 12px */
    --font-size-xs:   0.875rem;  /* 14px */
    --font-size-sm:   1rem;      /* 16px (tamanho base) */
    --font-size-md:   1.125rem;  /* 18px */
    --font-size-lg:   1.25rem;   /* 20px */
    --font-size-xl:   1.5rem;    /* 24px */
    --font-size-xxl:  1.875rem;  /* 30px */
    --font-size-xxxl: 2.25rem;   /* 36px */
    --font-size-display: 3rem;   /* 48px */
    --font-size-jumbo:   3.75rem; /* 60px */
}
/* Fontes */
body {
    font-family: var(--font-family-base);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: var(--blue-bg) !important;
    font-display: swap;
    color: #ffffff;
}

/* SITE HEADER */
.site-header_logo img{
    width: 177px;
}
@media screen and (max-width: 768px)  {
    .site-header_logo img{
        width: 32px;
    }
}
.site-header {
    padding: 1rem 1rem;
    background-color: var(--blue-top-bar);
    color: var(--white);
}
.site-button {
    margin-left: 0.5rem;
    border: none;
    font-size: var(--font-size-sm);
}
.site-button_login {
    display: flex;
    width: 100px;
    height: 30px;
    padding: 4px 12px;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--dourado);
}
.site-button_register {
    display: flex;
    width: 110px;
    height: 30px;
    padding: 8px 10px;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    background: var(--dourado);
    color: var(--black);
    border-radius: 8px;
    border: none;
}

                                    /* NAVBAR */
/* Estilos para o menu de navegação */
.navbar {
    overflow: hidden;
    margin: 20px 0 0 0;
}
.navbar-container {
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Para melhor rolagem em dispositivos iOS */
}
.navbar__list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    white-space: nowrap; /* Impede que os itens quebrem para a próxima linha */
}
.navbar__item {
    margin: 0 16px 0 0;
}
.navbar__link {
    color: var(--dourado);
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: var(--font-size-sm);
    padding: 5px 12px;
    border: 1px solid var(--dourado);
    border-radius: 3em;
    display: block;
    transition: color 0.3s ease;
}
.navbar__link:hover {
    color: var(--blue-bg); /* Cor para o item ativo */;
    background-color: var(--dourado); /* Cor de destaque ao passar o mouse */
}
.navbar__link--active {
    color: var(--blue-bg); /* Cor para o item ativo */
    background-color: var(--dourado);
}
/* Responsividade */
@media (max-width: 768px) {
    .navbar {
        width: 97vw;
    }
    .navbar__item {
        margin: 0 10px 0 0;
    }
    
    .navbar__link {
        font-size: 14px;
    }
    
    /* Indicador visual de rolagem horizontal */
    .navbar-container::-webkit-scrollbar {
        height: 3px;
    }
    
    .navbar-container::-webkit-scrollbar-thumb {
            border-radius: 10px;
    }
}

/*                                              BANNER */
.banner-item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.banner-wrapper {
    position: relative;
    height: 223px; /* Diminuido de 300px para 223px */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    margin: 30px 0;
    background-color: #061323; /* Cor de fundo para evitar transparência */
}
.banner-content {
    position: relative;
    color: white;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.5s ease;
    z-index: 2; /* Aumentado para ficar acima do filtro */
}

/* Gradiente para melhorar legibilidade do texto */
.banner-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to right, rgba(15, 33, 53, 0.8) 0%, rgba(15, 33, 53, 0.6) 40%, rgba(15, 33, 53, 0.3) 70%, transparent 100%);
    border-radius: 10px;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 1;
    pointer-events: none; /* Permite cliques através do elemento */
}

/* Efeito de hover para o gradiente */
.banner-wrapper:hover::before {
    background-image: linear-gradient(to right, rgba(15, 33, 53, 0.9) 0%, rgba(15, 33, 53, 0.7) 40%, rgba(15, 33, 53, 0.4) 70%, transparent 100%);
}



.banner-categoria {
    display: inline-block;
    font-weight: 400;
    font-size: var(--font-size-xxs);
    margin-bottom: 5px;
}
.banner-titulo {
    font-size: var(--font-size-lg);
    margin-bottom: 5px;
    line-height: 1.2;
}
.banner-meta {
    display: inline-block;
    font-size: var(--font-size-xxs);
    margin-bottom: 10px;
}

.banner-meta img {
    margin-right: 5px;
    vertical-align: middle;
}
.banner-meta span {
    margin: 0 20px 0 0;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
}

/* Estilos para banners desktop e mobile */
.banner-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.desktop-banner {
    display: block;
    visibility: visible;
    opacity: 1;
}

.mobile-banner {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Força a ocultação do banner mobile em telas grandes */
@media screen and (min-width: 769px) {
    .mobile-banner {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .desktop-banner {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Responsividade para o banner */
@media screen and (max-width: 768px) {
    .desktop-banner {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .mobile-banner {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background-position: center center;
        background-size: cover;
    }
    
    .banner-wrapper {
        height: 320px; /* Aumentado de 250px para 320px no mobile */
    }
    
    .banner-content {
        width: 100%;
        padding: 15px;
    }
    
    .banner-titulo {
        font-size: var(--font-size-md); /* Reduz o tamanho da fonte no mobile */
    }
    
    /* Ajustando o gradiente para mobile */
    .banner-wrapper::before {
        background-image: linear-gradient(to right, rgba(15, 33, 53, 0.9) 0%, rgba(15, 33, 53, 0.7) 50%, rgba(15, 33, 53, 0.4) 80%, transparent 100%);
        opacity: 1 !important;
        z-index: 1;
    }
    
    /* Efeito de hover para o filtro na versão mobile */
    .banner-wrapper:hover::before {
        filter: drop-shadow(0 0 10px rgba(6, 19, 35, 1));
    }
    
    .banner-titulo {
        font-size: calc(var(--font-size-md) + 2px);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    }
}

/*                                         BARRA DE PESQUISA */
.search-bar {
    width: 100vw;
    border-radius: 10px;
    margin: 20px 0;
}
.search-bar input[type="search"], 
.search-bar input[type="text"] {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: rgb(0,0,0,0) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--blue);
    border-radius: 10px;
    color: var(--white);
}
/*                                           ÚLTIMOS POSTS  */
.header-icon {
    background-color: var(--dourado);
    border-radius: 10px;
    padding: 10px 10px;
    margin: 0 10px 0 0;
    color: var(--blue-bg);
}
.header-icon-title {
    font-size: var(--font-size-md);
    font-weight: 500;
    color: var(--white);
}
.latest-posts-section p {
    color: var(--white);
    font-size: var(--font-size-sm);
    color: var(--text-dark);
    font-weight: 400;
    margin: 0 20px;
}
/*                                             POSTS  */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.post-thumbnail-wrapper img {
    width: 100%;
    height: 176px;
    border-radius: 8px;
}
@media screen and (max-width: 576px) {
    .post-thumbnail-wrapper {
        width: 100%;
        aspect-ratio: 16/9;
        overflow: hidden;
    }
    .post-thumbnail-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        min-width: unset;
    }
}
.post-content p {
    color: var(--white);
    font-size: var(--font-size-sm);
    color: var(--text-dark);
}
.post-link span{
    color: var(--text-dark);
    font-size: var(--font-size-xs);
}
.post-link h3{
    color: var(--white);
    font-size: var(--font-size-md);
}
/* Grid estático para mostrar todos os 12 posts */
.latest-posts-section .posts-grid-wrapper {
    overflow: visible;
    position: relative;
}

.latest-posts-section .posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas no desktop */
    gap: 20px;
    transition: none; /* Remove animação de slide */
}

.latest-posts-section .post-item {
    box-sizing: border-box;
    width: 100%;
}

/* Ajustes para responsividade */
@media (max-width: 1200px) { /* Telas grandes */
    .latest-posts-section .posts-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 colunas */
    }
}

@media (max-width: 992px) { /* Telas médias - Ex: Tablets */
    .latest-posts-section .posts-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas */
    }
}

@media (max-width: 576px) { /* Telas pequenas - Ex: Mobile */
    .latest-posts-section .posts-grid {
        grid-template-columns: 1fr; /* 1 coluna no mobile */
        gap: 20px;
    }

    .latest-posts-section .post-item {
        margin-bottom: 0; /* Remove margin pois o gap já controla */
    }
}

.latest-posts-header {
    justify-content: space-between; /* Para alinhar itens do header */
    width: 100%;
}

.latest-posts-header .header-icon-title h2 {
    margin-left: 10px; /* Espaçamento entre ícone e título */
    margin-bottom: 0;
}

.latest-posts-header p {
    margin: 0 20px; /* Espaçamento para o texto descritivo */
    text-align: left; /* Alinhamento do texto */
}
@media screen and (max-width: 576px) {
    .latest-posts-header p {
        display: none;
    }
}

/* Estilos das navigation-arrows removidos - não são mais necessários */
 /*                                     FAQ                           */

 .faq-item {
    padding: 10px 0;
}
.faq-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: white;
    transition: color 0.3s ease;
}

.faq-label::before {
    content: url('../../assets/images/play-icon.svg'); 
    /* content: ' \25B6'; */
    margin-right: 10px;
    transition: transform 0.3s ease;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked + label {
    color: #FDD92D; /* Muda a cor da pergunta para amarelo */
    filter: brightness(0) saturate(100%) invert(93%) sepia(48%) saturate(6201%) hue-rotate(329deg) brightness(102%) contrast(98%);
}

input[type="checkbox"]:checked + label::before {
    transform: rotate(90deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    color: #B0B4B6; /* Cor da resposta */
    padding-left: 25px;
}

input[type="checkbox"]:checked + label + .faq-content {
    max-height: 500px;
    opacity: 1;
}
  /*                                     FOOTER BLOCK                           */
  footer {
    font-family: 'Barlow', sans-serif;
    color: var(--white);
    background-color: var(--blue-top-bar);
  }
  footer h3 {
    font-size: var(--font-size-md);
    font-weight: 700;
    margin-bottom: 10px;
  }
  footer .logo {
    width: 177.273px;
  }
  @media screen and (max-width: 700px) {
     .social img{
      width: 28px;
    }
    footer img {
      width: 2.5em;
    }
    .logos-awards {
      margin-top: 2em;
      }
    }
    .logos-awards img{
        max-width: 100px;
    }
    .authorization {
        border-top: 1px solid #2C5178;
        padding-top: 56px;
    }
    .authorization img {
        width: auto;
    }

     /*                                     POSTS                           */

     /*                                     BREADCRUMB                           */
   .breadcrumb-section {
    color: var(--white);
    background-color: var(--blue-bg);
   }
   .breadcrumb-section .breadcrumb {
    background-color: var(--blue-bg);
   }
   .breadcrumb-section .breadcrumb-item a {
    color: var(--white);
   }
   .breadcrumb-section .breadcrumb-item a:hover {
    color: var(--dourado);
   }
   .breadcrumb-section .breadcrumb-item.active {
    color: var(--dourado);
   }
   .breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
   }

 /*                                     SINGLE POST                           */
 .single-post span{
    font-size: var(--font-size-xxs);
}
.single-post span a{
    color: var(--dourado);
}
.single-post_image img {
    width: 100%;
    max-width: 740px;
    height: auto;
    border-radius: 8px 8px 0 0;
    margin: 0 auto;
}

.share-post {
    display: flex;
    justify-content: center;
    width: 740px;
    color: var(--white);
    background-color: var(--blue-top-bar);
    border-radius: 0 0 8px 8px;
    padding: 10px;
}

.share-post span {
    margin: 0 5px;
    font-size: var(--font-size-xs);
}
.share-post a {
    margin: 0 5px;
}
.share-post img {
    width: 32px;
}
.share-post_content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: var(--font-size-sm);
    color: var(--text-dark);
}
.single-post_content p {
    margin: 20px 0;
}
.single-post_content h1,h2,h3,h4,h5,h6 {
    color: var(--white);
}
.single-post_content a {
    color: var(--dourado);
}
.single-post_content a:hover {
    color: var(--white);
}
@media screen and (max-width: 768px) {
    .single-post_image img{
        width: 100%;
    }
    .share-post {
        width: 100%;
    }
    .share-post_content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .share-post_content-icons{
        margin-top: 10px;
    }
    .share-post a {
        margin: 0 10px;
    }
}

                                         /* POST META*/
.post-meta img{
    width: 16px !important;
    height: 16px !important;
}
                                         /* SINGLE POST FOOTER*/

.single-post-footer {
    margin-top: 32px;
    padding: 16px 0 0 0;
    border-top: 1px solid #223a54;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}
.single-post-footer nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-label {
    color: var(--dourado);
    font-weight: 500;
    margin-right: 8px;
}
.post-category-link, .post-tag-link {
    background: #223a54;
    color: var(--dourado);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: var(--font-size-xs);
    text-decoration: none;
    margin-right: 6px;
    transition: background 0.2s, color 0.2s;
}
.post-category-link:hover, .post-tag-link:hover {
    background: var(--dourado);
    color: #223a54;
}
                                         /* SINGLE POST SIDEBAR*/
                                         /* POSTS SIMILARES SIDEBAR*/

.single-post_sidebar-item-content h3{
    font-size: var(--font-size-md);
}
.single-post_sidebar {
background-color: var(--blue-top-bar);
border-radius: 8px;
padding: 16px;
}
.single-post_sidebar-header {
display: flex;
align-items: center;
gap: 10px;
color: var(--white);
}
.single-post_sidebar-item {
padding: 32px 0;
border-bottom: 1px solid var(--blue);

}
.single-post_sidebar-item a {
text-decoration: none;
color: var(--white);
}
.single-post_sidebar-item a:hover {
color: var(--dourado);
}
.single-post_sidebar-item img {
width: 100%;
height: 111px;
border-radius: 8px;
object-fit: cover;
object-position: center;
}
.single-post_sidebar-item-content span {
color: var(--text-dark);
}
@media screen and (max-width: 768px) {
.single-post_sidebar {
    background: none;
}
.single-post_sidebar-item {
    padding: 32px 0;
    border-bottom: none;
}
.single-post_sidebar-item a > img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    display: block;
    flex-shrink: 0; /* Impede que a imagem seja comprimida pelo flex */
}
.single-post_sidebar-item a{
    min-width: 0;
    display: flex;
    align-items: top;
}
.single-post_sidebar-item-content {
    margin: 0 15px;
}
.single-post_sidebar-item-content h3 {
    max-height: 50px;
    margin-bottom: 0; /* ou 0, ou o valor que preferir */
    margin-top: 0;      /* para garantir que não tenha espaço acima também */
}
}

                                /* ANUNCIO SIDEBAR*/
.single-post_widget-area img{
    width: 100%;
    height: auto;
    background-color: var(--blue-top-bar);
    border-radius: 8px;
    padding: 16px;
}

/* CATEGORY DESCRIPTION AND BANNER STYLES */
.category-description {
    margin: 20px 0;
    color: var(--cinza);
}

.category-banner-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px; /* Espaçamento entre banner e título */
}

.category-banner-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.category-banner {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Responsive adjustments for category banner and description */
@media screen and (max-width: 768px) {
    .category-description {
        margin: 16px 0;
    }
    
    .category-banner-wrapper {
        margin: 0 -15px 25px -15px; /* Aumentado espaçamento no mobile */
        border-radius: 0;
    }
    
    .category-banner {
        border-radius: 0;
    }
}

/* 404 PAGE STYLES */
.error-404-content-wrapper {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.error-404-message {
    margin-bottom: 40px;
}

.error-title {
    font-size: var(--font-size-xxxl);
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.error-description {
    font-size: var(--font-size-md);
    color: var(--cinza);
    line-height: 1.6;
    margin-bottom: 0;
}

.error-404-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.error-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.error-btn.btn-primary {
    background: linear-gradient(135deg, var(--dourado) 0%, #FBDFAD 100%);
    color: var(--blue);
    border: none;
}

.error-btn.btn-primary:hover {
    background: linear-gradient(135deg, #FBDFAD 0%, var(--dourado) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 217, 45, 0.3);
}

.error-btn.btn-outline-primary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.error-btn.btn-outline-primary:hover {
    background: var(--white);
    color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.error-404-suggestions {
    margin-bottom: 50px;
}

.suggestions-title {
    font-size: var(--font-size-xl);
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 600;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 0;
}

.category-suggestion {
    background: linear-gradient(135deg, var(--blue-top-bar) 0%, var(--blue) 100%);
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-suggestion:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--dourado);
    color: var(--white);
    text-decoration: none;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon i {
    font-size: 20px;
    color: var(--dourado);
}

.category-info {
    flex: 1;
    text-align: left;
}

.category-name {
    font-size: var(--font-size-md);
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--white);
}

.category-count {
    font-size: var(--font-size-sm);
    color: var(--cinza);
}

.error-404-recent-posts {
    text-align: left;
}

.recent-posts-title {
    font-size: var(--font-size-xl);
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

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

.recent-post-item {
    background: linear-gradient(135deg, var(--blue-top-bar) 0%, var(--blue) 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.recent-post-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--dourado);
}

.recent-post-link {
    display: block;
    text-decoration: none;
    color: var(--white);
}

.recent-post-thumbnail {
    margin: 0;
    overflow: hidden;
    height: 150px;
}

.recent-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post-item:hover .recent-post-image {
    transform: scale(1.05);
}

.recent-post-content {
    padding: 20px;
}

.recent-post-title {
    font-size: var(--font-size-md);
    font-weight: 600;
    margin: 0 0 10px 0;
    color: var(--white);
    line-height: 1.4;
}

.recent-post-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.recent-post-date {
    font-size: var(--font-size-sm);
    color: var(--cinza);
    display: flex;
    align-items: center;
    gap: 5px;
}

.recent-post-date i {
    font-size: 12px;
}

/* Responsive adjustments for 404 page */
@media screen and (max-width: 768px) {
    .error-404-content-wrapper {
        padding: 30px 15px;
    }
    
    .error-title {
        font-size: var(--font-size-xxl);
    }
    
    .error-404-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .category-suggestion {
        padding: 15px;
    }
    
    .recent-posts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .recent-post-thumbnail {
        height: 120px;
    }
    
    .recent-post-content {
        padding: 15px;
    }
}

/* Estilos nativos WP page.php */

/* Links de texto apenas em páginas (page.php) */
body.page .entry-content p a:not(.wp-block-button__link),
body.page .entry-content li a:not(.wp-block-button__link) {
    color: var(--dourado);
}

body.page .entry-content p a:hover:not(.wp-block-button__link),
body.page .entry-content li a:hover:not(.wp-block-button__link) {
    color: var(--dourado); /* ou var(--dourado-escuro) se tiver */
    text-decoration: underline;
}

.wp-block-button__link {
    background-color: var(--dourado);
    color: var(--blue-bg);
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}