/* Importação da fonte */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;600;700&display=swap');

/* Estilos padrão (Mobile First) */
body {
    margin: 0;    
    height: 100%;
    background-color: #F3F3F3;
    font-family: "Roboto", sans-serif;
}

/* Breadcrumbs */
.breadcrumbs-section {
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;

}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: #6c757d;
    gap: 8px;
}

.breadcrumbs a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumbs span {
    color: #495057;
    font-weight: 500;
}

/* Responsividade do breadcrumbs */
@media (max-width: 767px) {
    .breadcrumbs {
        font-size: 12px;
        gap: 6px;
    }
    
    .breadcrumbs-section {
        padding: 10px 0;
        margin-bottom: 15px;
    }
}

@media (min-width: 992px) {
    .sticky-sidebar {
        position: sticky;
        top: 20px;
    }
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    margin-bottom: 18px;
    margin-top: 18px;
}

/* Cabeçalho da tabela */
th {
  background-color: #f2f2f2;
  text-align: left;
  padding: 10px;
  border: 1px solid #ddd;
}

/* Células da tabela */
td {
  padding: 10px;
  border: 1px solid #ddd;
}

/* Alternância de cores nas linhas */
tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Hover nas linhas */
tr:hover {
  background-color: #f1f1f1;
}

h1 {
    font-size: 24px;
    font-weight: bold;
}

h2 {
    font-size: 20px;
    font-weight: 600;
}

h3 {
    font-size: 16px;
    font-weight: normal;
}

h4 {
    font-size: 14px;
    font-weight: normal;
}

h5 {
    font-size: 12px;
    font-weight: normal;
}

h6 {
    font-size: 10px;
    font-weight: normal;
}

p {
    font-size: 20px;
    font-weight: normal;
}

span {
    font-size: 16px;
}

button {
    font-size: 16px;
    font-weight: normal;
}

/* Estilos padrão para Desktop */
@media (min-width: 1024px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 16px;
    }

    h4 {
        font-size: 14px;
    }

    h5 {
        font-size: 12px;
    }

    h6 {
        font-size: 10px;
    }

    p {
        font-size: 20px;
    }

    span {
        font-size: 16px;
    }

    button {
        font-size: 16px;
    }
}



/* CSS PERSONALIZADO */

/* MOBILE FIRST */


.header {
    width: 100%;
    height: 80px;    
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid #E6E6E8;
}

.navbar {
    min-width: 150px;
    min-height: 35px;
    height: 100%;
}

.navbar-container {
    max-width: 1078px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    
    width: 100%;
}

.nav-logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.nav-link span {
    color: #0A0A0A;
    font-size: 14px;
    font-weight: 400;
}

.nav-link span:hover {
    color: #007BFF;
    font-size: 14px;
    font-weight: 400;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #4A4A4A;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #007BFF;
}


/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    margin-top: 8px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: #4A4A4A;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #F5F5F5;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #F8F9FA;
    color: #007BFF;
}

.navbar-container {
    max-width: 1078px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.nav-logo {
    cursor: pointer;
}

.nav-logo img {
    margin: 8px;
    max-width: 260px;
    height: auto;
}

.publicidade {
    margin-top: 22px;
}

.publicidade p {
    color: #000;
    text-align: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    margin-bottom: 0;
}

.ads {
    border-radius: 2px;
    border: 1px solid #BDBDBD;
    background: #EDEDED;
    width: 100%;
    height: 100px;
}

.ads340 {
    border-radius: 2px;
    border: 1px solid #BDBDBD;
    background: #EDEDED;
    width: 100%;
    height: 250px;
}

.footer-blog {
    width: 100%;
    background-color: #f5f5f5;
    padding: 40px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
}

/* Header do Footer - Logo e Indicadores */
.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

/* Logo do Blog */
.footer-logo-section {
    display: flex;
    align-items: center;
}

.blog-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #666;
    padding: 8px 12px;
    border-radius: 6px;
}

.blog-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.blog-text {
    font-size: 14px;
    font-weight: 500;
    color: white;
}

/* Indicadores de Segurança */
.security-indicators {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.security-icon img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Conteúdo Textual */
.footer-text-content {

    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
}

.footer-text-content p {
    margin-bottom: 15px;

    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.footer-text-content strong {
    font-weight: 600;
    color: #000;
    font-size: 12px;
    font-style: normal;
    line-height: 20px;
}

.footer-text-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.footer-text-content li {
    margin-bottom: 8px;
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.footer-link {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
    font-size: 12px;
    font-style: normal;
    line-height: 20px;
}

.footer-link:hover {
    color: #333;
}

/* Responsividade */
@media (max-width: 767px) {
    .footer-blog {
        padding: 30px 0;
    }
    
    .footer-header {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .footer-logo-section {
        margin-bottom: 15px;
    }
    
    .security-indicators {
        flex-direction: row;
        gap: 20px;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .security-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .security-icon img {
        max-width: 120px;
        height: auto;
    }
    
    .footer-text-content {
        font-size: 11px;
        margin-top: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .security-indicators {
        gap: 20px;
    }
}

.footer-logo-blog {
    cursor: pointer;
}

.footer-logo-blog img {
    margin: 8px;
    max-width: 260px;
    height: auto;
}

.categorias-footer {
    width: 100%;
    min-height: 231px;
    margin-bottom: 40px;
}



.title_redirect {
    color: #FFF;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: 48px;
}

.subtitle_redirect {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.subtitle_agradecimento {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 40px;
}

.conteudo-item {
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(4px);
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    border: 1px solid #fff;
    padding: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.categorias {
    display: inline-flex;
    padding: 5px;
    justify-content: center;
    align-items: center;
    gap: 8px; 
    border-radius: 8px;
    border-color: transparent;
    background: #ECEEF2;
}

.categorias span {
    color: #000;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.categorias a {
    color: #000;
    text-align: center;
    font-size: 12px;
    text-decoration: none;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.title-categorias-footer {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.texto-categorias-footer {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.texto-categorias-footer a {
    color: #000;
    text-decoration: none;
}

.texto-categorias-footer a:hover {
    color: #000;
}

.img-principal img {
    margin-bottom: 13px;
    margin-top: 10px;
    border-radius: 16px;
}

.noticias {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.content-noticias {
    cursor: pointer;
}

.container-noticias {
    max-width: 644px;
}

.content-preview-noticias {
    max-height: 240px !important;
    overflow: hidden;
    padding-bottom: 20px;
    background: linear-gradient(to bottom, black 50%, rgba(0, 0, 0, 0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.content-preview-noticias p {
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.content-noticias-completo p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.content-noticias-home {
    max-height: 156px !important;
    overflow: hidden;
    

}

.noticias-home-link {
    color: #000 !important;
    text-decoration: none !important;   
}

/* MOBILE RESPONSIVE FIXES */
@media (max-width: 767px) {
    .navbar-container {
        padding: 0 16px;
    }
    
    .nav-logo-section {
        gap: 8px;
    }   
  
    
    .nav-links {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 13px;
        gap: 6px;
    }
  
    
    .dropdown-menu {
        min-width: 160px;
        right: -10px;
    }
    
    .dropdown-item {
        padding: 10px 14px;
        font-size: 13px;
    }
    .ajuste-conteudo-largura {
        display: flex;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
    }

    .conteudo-agregado-item {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
    }

    .container-main {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }

    .content-noticias-home h1 {
        max-width: 100%;
        color: #0A0A0A;
        font-size: 16px;
        font-weight: 400;
        line-height: 24.5px;
    }

    .content-noticias-home p {
        max-width: 100%;
        color: #717182;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
    }

    .bg-cover-image {
        width: 100%;
        height: 200px;
        border-top-right-radius: 16px;
        border-top-left-radius: 16px;
        border-color: transparent;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .conteudo-item {
        padding: 12px;
    }

    .meta-info {
        align-items: flex-start !important;
        gap: 5px;
    }

    .meta-info small {
        font-size: 12px;
    }

    .categorias {
        margin-bottom: 10px;
    }

    .read-more-btn {
        margin-top: 10px;
        display: inline-block;
    }

    /* Centralizar cards no mobile */
    .row.gap-3 {
        justify-content: center;
        margin: 0;
    }

    .col-12.col-md-6.ajuste-conteudo-largura {
        padding: 0;
        min-width: 358px !important;
        max-width: 358px !important;
    }

    /* Ajustar tamanho das imagens no mobile */
    .image-placeholder {
        display: block;
        width: 100%;
    }

    .image-placeholder img {
        width: 100%;
        height: auto;
        border-top-right-radius: 16px;
        border-top-left-radius: 16px;
    }
}

/* TABLET RESPONSIVE */
@media (min-width: 768px) and (max-width: 1023px) {
    .ajuste-conteudo-largura {
        display: flex;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }

    .conteudo-agregado-item {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }

    .container-main {
        max-width: 100%;
        margin: 0 auto;
        
    }

    .content-noticias-home h1 {
        max-width: 100%;
    }

    .content-noticias-home p {
        max-width: 100%;
    }
}

.ajuste-conteudo-largura {
    display: flex;
    min-width: 314px;
    max-width: 314px;
}

.conteudo-agregado-item {
    min-width: 314px;
    max-width: 314px;
}
.container-main {
    max-width: 1078px;
    margin: 0 auto;
}
.content-noticias-home h1 {
    max-width: 268px;
    color: #0A0A0A;
    font-size: 16px;
    font-weight: 400;
    line-height: 24.5px;
}

.content-noticias-home p {
    max-width: 268px;
    color: #717182;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.read-more-btn:hover {
    background-color: #2a2a2a;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.read-more-btn-home:hover {
    color: #000;
    text-decoration: none;
}

.read-more-btn-home {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    text-decoration: none;
}

.read-more-btn svg {
    width: 14px;
    height: 14px;
}

.img-404 {
    width: 100%;
    height: 495px;
    background-image: url('../img/404_mob.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-home-404 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-home-404 a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #FFF;
    background: #343434;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.btn-home-404 a:hover {
    background: #555;
    color: #FFF;
}

.text-404 {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 130px;
}

.modal2 {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, .5);
    border: 0;
    overflow-y: hidden;
}

.html-content-limited {
    max-height: 6.5em; /* Aproximadamente 3 linhas */
    overflow: hidden;
    position: relative;
    line-height: 1.6em;
}



.bg-cover-image {
    width: 100%;
    height: 204px;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    border-color: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.show-mobile {
    display: flex;
}

.show-desk {
    display: none;
}


/* DESKTOP */

@media only screen and (min-width: 768px) {
    .ads {
        width: 970px;
        height: 250px;
        justify-self: center;
    }
        .show-mobile {
            display: none;
        }

        .show-desk {
            display: block;
        }

    .title_redirect {
        font-size: 48px;
    }

    .img-404 {
        height: 550px;
        background-image: url('../img/404_desk.webp');
    }

    .categorias-footer {
        height: 300px;
    }

    .noticias {
        margin-bottom: 40px;
    }

}

/* DESKTOP LARGE - Restaurar larguras fixas apenas em desktop */
@media only screen and (min-width: 1024px) {
    .row-ajuste-gap {
        row-gap: 1.5rem !important;
    }

    .ajuste-conteudo-largura {
        display: flex;
        min-width: 314px;
        max-width: 314px;
    }

    .conteudo-agregado-item {
        min-width: 314px;
        max-width: 314px;
    }

    .content-noticias-home h1 {
        max-width: 268px;
    }

    .content-noticias-home p {
        max-width: 268px;
    }

    .bg-cover-image {
        height: 204px;
    }
}

/* Estilos para a seção Explore por Categoria */
.explore-categorias {
    max-width: 1078px;
    margin: 0 auto;
    
}

.explore-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    /* margin-bottom: 32px; */
    background-color: #F3F3F3;
    padding: 16px 32px;
    border-radius: 12px;
    /* margin-bottom: 24px; */
}

.explore-icon {
    width: 40px;
    height: 40px;
    background-color: #E5E5E5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 8px;
}

.filter-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0.4);
}

.categoria-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0.4);
}

.explore-title-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.explore-title-header h2 {
    color: #4A4A4A;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.explore-header p {
    color: #9E9E9E;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
    max-width: 600px;
}

.categorias-grid {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.50);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(4px);
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    justify-content: center;
    width: 100%;
    max-width: 1078px;
    margin: 0 auto;
}

.categoria-btn {
    flex: 1;
    min-width: 140px;
    max-width: 160px;
}

.categoria-btn span {
    transition: all 0.2s ease;
}

.categoria-btn span:hover {
    color: #FFF;
}

.categoria-btn a {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 8px 16px;
    border-radius: 6.75px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    backdrop-filter: blur(4px);
    text-decoration: none;
    color: #0A0A0A;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    transition: all 0.2s ease;
}

.categoria-btn a:hover {
    background: #0A0A0A;
    color: #FFF;
    transform: translateY(-1px);
}

.categoria-btn a:hover span {
    color: #FFF;
}

.categoria-nome {
    color: #0A0A0A;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    flex: 1;
}

.categoria-count {
    color: #0A0A0A;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
}

/* Responsividade */
@media (max-width: 767px) {
    .row-ajuste-gap {
        row-gap: 3rem !important;
    }
    .explore-categorias {
        padding: 0 16px;
    }
    
    .explore-header {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 20px;
    }
    
    .explore-title-header h2 {
        font-size: 20px;
    }
    
    .explore-header p {
        font-size: 14px;
    }
    
    .categorias-grid {
        padding: 20px;
        gap: 12px;
    }
    
    .categoria-btn {
        flex: 1 1 calc(50% - 6px);
        min-width: 120px;
    }
    
    .categoria-btn a {
        padding: 10px 12px;
        font-size: 12px;
        line-height: 14px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .categoria-btn {
        flex: 1 1 calc(33.333% - 11px);
        min-width: 140px;
    }
}

@media (min-width: 1024px) {
    .categoria-btn {
        flex: 1 1 calc(20% - 13px);
        min-width: 140px;
    }
}

/* Estilos para controle de exibição mobile/desktop */
.nav-icon-mobile {
    display: none;
}

.nav-text-desktop {
    display: inline;
}

/* Remover setinha do dropdown */
.dropdown-toggle::after {
    display: none !important;
}

/* Mobile styles */
@media (max-width: 767px) {
    .prev-button span {
        display: none;
    }
    .next-button span {
        display: none;
    }
    .nav-link-inicio {
        display: none;
    }
    
    .nav-icon-desktop {
        display: none;
    }
    
    .nav-icon-mobile {
        display: inline-block;
        width: 16px;
        height: 16px;
    }
    
    .nav-text-desktop {
        display: none;
    }
    
    .nav-links {
        justify-content: flex-end;
    }
    
    .nav-dropdown {
        margin-left: auto;
    }
}

/* Estilos para paginação simples */
.pagination-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 30px 0;
    padding: 20px;
    background-color: #F3F3F3;
}

.page-number {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.page-number:hover {
    background-color: #e0e0e0;
    text-decoration: none;
    color: #000;
}

.page-number.active {
    background-color: #fff;
    color: #000;
    border: 1px solid #d0d0d0;
    font-weight: 500;
}

.next-button {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.next-button:hover {
    background-color: #e0e0e0;
    text-decoration: none;
    color: #000;
}

.prev-button {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.prev-button:hover {
    background-color: #e0e0e0;
    text-decoration: none;
    color: #000;
}

/* Responsividade para paginação */
@media (max-width: 767px) {
    .pagination-simple {
        gap: 12px;
        padding: 16px;
    }
    
    .page-number,
    .next-button,
    .prev-button {
        font-size: 14px;
        padding: 6px 10px;
    }
    
    /* Esconder textos "Próxima" e "Anterior" em mobile */
    .prev-text,
    .next-text {
        display: none;
    }
    
    /* Ajustar espaçamento dos botões quando texto está oculto */
    .prev-button img {
        margin-right: 0 !important;
    }
    
    .next-button img {
        margin-left: 0 !important;
    }
}

/* Estilos para ellipsis da paginação */
.page-ellipsis {
    font-size: 16px;
    color: #666;
    padding: 8px 4px;
    font-weight: 400;
}

@media (max-width: 767px) {
    .page-ellipsis {
        font-size: 14px;
        padding: 6px 2px;
    }
}

@media (max-width: 767px) {
    .footer-blog {
        padding: 30px 0;
    }
    
    .footer-header {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .footer-logo-section {
        margin-bottom: 15px;
    }
    
    .security-indicators {
        flex-direction: row;
        gap: 20px;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .security-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .security-icon img {
        max-width: 120px;
        height: auto;
    }
    
    .footer-text-content {
        font-size: 11px;
        margin-top: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .security-indicators {
        gap: 30px;
    }
}

/* Linha separadora do footer */
.footer-divider {
    border: none;
    height: 1px;
    background-color: #D9D9DC;
    width: 100%;
}

/* Conteúdo Textual */

/* Seção de Categoria com Background */
.categoria-section {
    background-color: #E6E6E8;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 20px 0 30px 0;
}

.breadcrumbs-section {
    background-color: #fff;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 14px;
    color: #666;
    max-width: 1078px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #333;
}

.breadcrumbs span {
    color: #333;
    font-weight: 500;
}

/* Link Voltar */
.voltar-link {
    margin: -15px;
    max-width: 1078px;
    margin-left: auto;
    margin-right: auto;
    /* padding: 0 15px; */
}

.voltar-link a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.voltar-link a:hover {
    color: #333;
}

/* Cabeçalho da Categoria */
.categoria-header {
    margin: 0;
    padding: 0;
    text-align: center;
}

.categoria-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.categoria-title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.categoria-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.categoria-icon img {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    filter: grayscale(0.3);
}

.categoria-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
    word-wrap: break-word;
}

.categoria-description {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.4;
    word-wrap: break-word;
    text-align: center;
}

/* Responsividade para Mobile */
@media (max-width: 767px) {
    .breadcrumbs {
        font-size: 12px;
    }
    
    .categoria-section {
        background-color: #E6E6E8;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 15px 0 20px 0;
    }
    
    .voltar-link {
        margin: 8px auto 20px auto;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .voltar-link a {
        font-size: 12px;
    }
    
    .categoria-header {
        margin: 0;
        padding: 0;
    }
    
    .categoria-header-content {
        gap: 12px;
        padding: 0 15px;
    }
    
    .categoria-title-section {
        gap: 10px;
        flex-direction: row;
        justify-content: center;
    }
    
    .categoria-icon img {
        width: 20px;
        height: 20px;
    }
    
    .categoria-title {
        font-size: 24px;
        text-align: left;
    }
    
    .categoria-description {
        font-size: 14px;
        text-align: center;
    }
}

/* Responsividade para Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .categoria-header-content {
        padding: 0 20px;
    }
    
    .categoria-title {
        font-size: 26px;
    }
}

/* Responsividade para Mobile */
@media (max-width: 767px) {
    .read-more-btn {
        padding: 10px 16px;
        font-size: 13px;
        gap: 6px;
    }
    
    .read-more-btn img,
    .read-more-btn svg {
        width: 14px;
        height: 14px;
    }
}

