		/* /blogs/assets/css/blog.css */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Imagem horizontal do topo */
.site-header-image {
    width: 100%;
    background: #fff;
    text-align: center;
    padding: 20px 0;
}

.site-header-image img {
    max-width: 100%;
    height: auto;
}

/* Container principal (4 colunas) */
.blog-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 20% 60% 20%;
    gap: 30px;
}

/* COLUNA 1 - LINKS */
.blog-sidebar {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #6b4eff;
    color: #1a1a2e;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 10px;
}

.sidebar-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.sidebar-links a:hover {
    color: #6b4eff;
}

/* COLUNAS 2+3 - ARTIGOS */
.blog-main {
    background: transparent;
}

/* Posts principais (destaque) */
.featured-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.featured-post {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    gap: 30px;
    padding: 25px;
}

.featured-post-image {
    flex: 1;
    max-width: 40%;
}

.featured-post-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
}

.featured-post-content {
    flex: 2;
}

.featured-post-content h2 {
    font-size: 1.8rem;
    margin: 10px 0;
}

.featured-post-content h2 a {
    color: #1a1a2e;
    text-decoration: none;
}

.featured-post-content h2 a:hover {
    color: #6b4eff;
}

/* Posts secundários (grid 2 colunas) */
.posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 20px;
}

.blog-card-content h3 {
    font-size: 1.2rem;
    margin: 10px 0;
}

.blog-card-content h3 a {
    color: #1a1a2e;
    text-decoration: none;
}

.blog-card-content h3 a:hover {
    color: #6b4eff;
}

/* Categoria */
.blog-category {
    display: inline-block;
    background: #6b4eff;
    color: white;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* Meta data */
.blog-meta {
    font-size: 12px;
    color: #4F4F4F;
    margin: 8px 0;
}

/* Botão leia mais */
.blog-read-more {
    display: inline-block;
    margin-top: 12px;
    color: #6b4eff;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
}

.blog-read-more:hover {
    text-decoration: underline;
}

/* Paginação */
.blog-pagination {
    text-align: center;
    margin-top: 30px;
    padding: 20px 0;
}

.blog-pagination a {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    background: white;
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.2s;
}

.blog-pagination a.active,
.blog-pagination a:hover {
    background: #6b4eff;
    color: white;
    border-color: #6b4eff;
}

/* COLUNA 4 - BANNERS */
.blog-banners {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.banner-widget {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.banner-widget img {
    width: 100%;
    height: auto;
    display: block;
}

/* FOOTER */
.blog-footer {
    background: #1a1a2e;
    color: #888;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .blog-container {
        grid-template-columns: 25% 75%;
        gap: 20px;
    }
    
    .blog-banners {
        display: none;
    }
}

@media (max-width: 768px) {
    .blog-container {
        grid-template-columns: 1fr;
    }
    
    .featured-post {
        flex-direction: column;
    }
    
    .featured-post-image {
        max-width: 100%;
    }
    
    .posts-grid {
        //grid-template-columns: 1fr;
		
		grid-template-columns: 1fr 1fr;
    }
    
    .blog-sidebar {
        order: 2;
    }
}

.site-header-text {
    text-align: center;
    padding: 25px 20px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.site-header-text h1 {
    font-size: 28px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.site-header-text p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

/* LINKS SEO */
.header-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.header-links a {
    font-size: 13px;
    color: #2B00FF;
    text-decoration: none;
    background: #f0edff;
    padding: 6px 12px;
    border-radius: 20px;
    transition: 0.2s;
}

.header-links a:hover {
    background: #2B00FF;
    color: #fff;
}

/* BOTÕES */
.header-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.btn-secondary {
    background: #eee;
    color: #333;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
}

.btn-secondary:hover {
    background: #ddd;
}

/* CTA DISCRETO */
.header-cta a {
    font-size: 13px;
    color: #888;
    text-decoration: none;
}

.header-cta a:hover {
    color: #6b4eff;
}











/* ============================================
   BANNERS LADO DIREITO (FORÇADO)
============================================ */

/* Garante que o bloco funcione */
.blog-banners {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Base do widget */
.banner-widget {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* CTA (botões grandes) */
.banner-cta a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #6b4eff, #8f7bff);
    border-radius: 16px;
    transition: 0.2s;
}

/* TEXTO */
.banner-cta a strong {
    font-size: 16px;
    margin-bottom: 5px;
}

.banner-cta a span {
    font-size: 13px;
    opacity: 0.9;
}

/* HOVER */
.banner-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* QUICK LINKS */
.quick-links {
    padding: 15px;
}

.quick-links h3 {
    font-size: 15px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

/* LISTA */
.quick-links .sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links .sidebar-links li {
    margin-bottom: 8px;
}

/* LINKS */
.quick-links .sidebar-links a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: 0.2s;
}

.quick-links .sidebar-links a:hover {
    color: #6b4eff;
}

.has-submenu > a {
    font-weight: 800;
}


/* ============================================
   POST COMPLETO
============================================ */
.post-full {
    background: white;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.post-meta-top {
    margin-bottom: 20px;
}

.post-meta-top .blog-category a {
    color: white;
    text-decoration: none;
}

.post-title {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.post-featured-image {
    margin: 25px 0;
}

.post-featured-image img {
    width: 100%;
    border-radius: 16px;
}

.post-content h2 {
    font-size: 1.6rem;
    margin: 30px 0 15px;
    color: #1a1a2e;
}

.post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.post-content ul {
    margin: 20px 0 20px 30px;
}

.post-content li {
    margin-bottom: 8px;
}

.post-alert {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin: 30px 0;
    border-radius: 8px;
}

.post-tags {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.post-tags a {
    display: inline-block;
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #666;
    text-decoration: none;
    margin-left: 8px;
}

.post-tags a:hover {
    background: #6b4eff;
    color: white;
}

.post-share {
    margin: 20px 0;
}

.post-share a {
    display: inline-block;
    margin-left: 10px;
    color: #6b4eff;
    text-decoration: none;
}

/* Posts relacionados */
.related-posts {
    background: white;
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 40px;
}

.related-posts h3 {
    margin-bottom: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.related-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
}

.related-card h4 {
    margin-top: 10px;
    font-size: 0.9rem;
}

.related-card a {
    color: #1a1a2e;
    text-decoration: none;
}

.related-card a:hover {
    color: #6b4eff;
}

/* Comentários */
.comments {
    background: white;
    border-radius: 24px;
    padding: 30px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.btn-submit {
    background: #6b4eff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

.btn-submit:hover {
    background: #5a3ee0;
}

@media (max-width: 768px) {
    .post-full {
        padding: 20px;
    }
    
    .post-title {
        font-size: 1.6rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}



/* Grid 2 colunas */
.grid-imagens {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-4 {
    grid-template-columns: 1fr 1fr;
}

.grid-item img {
    width: 100%;
    border-radius: 12px;
}

.legenda {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 8px;
}

/* Carrossel */
.carrossel {
    position: relative;
    margin: 30px 0;
}

.carrossel-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 10px 0;
}

.carrossel-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

.carrossel-slide img {
    width: 100%;
    border-radius: 16px;
}

.carrossel-prev,
.carrossel-next {
    position: absolute;
    top: 40%;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
}

.carrossel-prev {
    left: 10px;
}

.carrossel-next {
    right: 10px;
}

@media (min-width: 768px) {
    .carrossel-slide {
        flex: 0 0 calc(33.33% - 10px);
    }
}


.video-container {
    position: relative;
    margin: 30px 0;
    border-radius: 16px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
}

.video-container .legenda {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}

/* Página de categoria */
.category-description {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.category-description p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Link ativo na sidebar */
.sidebar-sub a.active {
    color: #6b4eff;
    font-weight: 500;
}






/* Página Sobre */
.about-page {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.about-image {
    margin-bottom: 30px;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
}

.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.about-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

.about-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #6b4eff;
}

.about-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.about-section.highlight {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 16px;
}

.about-section.highlight ul {
    margin-left: 20px;
}

.about-section.highlight li {
    margin-bottom: 10px;
}

.about-cta {
    background: linear-gradient(135deg, #6b4eff, #8f7bff);
    color: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    margin-top: 30px;
}

.about-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about-cta p {
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: #6b4eff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .about-page {
        padding: 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-section h2 {
        font-size: 1.3rem;
    }
}


/* Página Contato */
.contact-page {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
}

.info-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.info-card p {
    font-size: 0.9rem;
    color: #666;
}

.contact-form h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6b4eff;
}

.btn-submit {
    background: #6b4eff;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.btn-submit:hover {
    background: #5a3ee0;
}

.form-note {
    font-size: 12px;
    color: #545454;
    margin-top: 15px;
}

.contact-social {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.contact-social h3 {
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: #2A00FA;
    text-decoration: none;
    padding: 8px 16px;
    background: #f0edff;
    border-radius: 20px;
}

.social-links a:hover {
    background: #6b4eff;
    color: white;
}

@media (max-width: 768px) {
    .contact-page {
        padding: 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}



/* Página Busca */
.search-box {
    background: white;
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.search-form input:focus {
    outline: none;
    border-color: #6b4eff;
}

.search-form button {
    background: #6b4eff;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

.search-form button:hover {
    background: #5a3ee0;
}

.search-results {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.results-count {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.result-item {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}

.result-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.result-item h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.result-item h3 a {
    color: #1a1a2e;
    text-decoration: none;
}

.result-item h3 a:hover {
    color: #6b4eff;
}

.result-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.result-item p {
    color: #555;
    margin-bottom: 10px;
}

.result-link {
    color: #6b4eff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.result-link:hover {
    text-decoration: underline;
}

.no-results {
    background: white;
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.no-results p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #666;
}

@media (max-width: 768px) {
    .search-box {
        padding: 20px;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-results {
        padding: 20px;
    }
    
    .result-item h3 {
        font-size: 1.1rem;
    }
}


/* Página FAQ */
.faq-page {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-intro {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a1a2e;
    padding-bottom: 10px;
    border-bottom: 2px solid #6b4eff;
    display: inline-block;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    background: #f8f9fa;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    background: white;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-footer {
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .faq-page {
        padding: 20px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 14px;
        padding-right: 40px;
    }
}


/* Páginas legais (Termos, Política) */
.legal-page {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.last-update {
    color: #575757;
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.legal-section {
    margin-bottom: 35px;
}

.legal-section h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-section ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 20px;
    }
    
    .legal-section h2 {
        font-size: 1.2rem;
    }
}

/* Página 404 */
.error-page {
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.error-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.error-page h1 {
    font-size: 120px;
    color: #6b4eff;
    margin-bottom: 10px;
    line-height: 1;
}

.error-page h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.error-page p {
    color: #666;
    margin-bottom: 30px;
}

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

.error-suggestions {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.error-suggestions h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
}

.error-suggestions li {
    margin-bottom: 10px;
    text-align: center;
}

.error-suggestions a {
    color: #6b4eff;
    text-decoration: none;
}

.error-suggestions a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .error-page {
        padding: 40px 20px;
    }
    
    .error-page h1 {
        font-size: 80px;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
}


/* Página Mais Acessados */
.popular-page {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.popular-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.popular-item {
    display: flex;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.popular-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-number {
    font-size: 32px;
    font-weight: bold;
    color: #6b4eff;
    background: #f0edff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.popular-content {
    flex: 1;
}

.popular-content h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.popular-content h2 a {
    color: #1a1a2e;
    text-decoration: none;
}

.popular-content h2 a:hover {
    color: #6b4eff;
}

.popular-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.popular-content p {
    margin-bottom: 12px;
    color: #555;
}

.popular-link {
    color: #6b4eff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.popular-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .popular-page {
        padding: 20px;
    }
    
    .popular-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .popular-number {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
    
    .popular-content h2 {
        font-size: 1.1rem;
    }
}


/* Página Novidades */
.novidades-page {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.newsletter-box {
    background: linear-gradient(135deg, #6b4eff, #8f7bff);
    color: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    margin: 40px 0;
}

.newsletter-box h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.newsletter-box p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-form button {
    background: #1a1a2e;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

.newsletter-form button:hover {
    background: #2a2a3e;
}

@media (max-width: 768px) {
    .novidades-page {
        padding: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}


/* Página Guia Completo */
.guia-page {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.guia-intro {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    line-height: 1.7;
}

.guia-section {
    margin-bottom: 50px;
}

.guia-section h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #1a1a2e;
    padding-bottom: 10px;
    border-bottom: 2px solid #6b4eff;
    display: inline-block;
}

.guia-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 25px;
}

.guia-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.guia-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.guia-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.guia-card h3 a {
    color: #1a1a2e;
    text-decoration: none;
}

.guia-card h3 a:hover {
    color: #6b4eff;
}

.guia-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.guia-cta {
    background: linear-gradient(135deg, #6b4eff, #8f7bff);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 40px;
}

.guia-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.guia-cta p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.guia-cta .btn-primary {
    background: white;
    color: #6b4eff;
}

.guia-cta .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .guia-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .guia-page {
        padding: 20px;
    }
    
    .guia-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .guia-section h2 {
        font-size: 1.3rem;
    }
    
    .guia-cta {
        padding: 25px;
    }
}

/* Footer Melhorado */
.blog-footer {
    background: #1a1a2e;
    color: #888;
    padding: 50px 20px 20px;
    margin-top: 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #6b4eff;
}

.footer-col p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #aaa;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #6b4eff;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.8rem;
    margin: 5px 0;
}

.footer-credits {
    color: #A999FF;
    font-size: 0.75rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-col ul li a {
        font-size: 0.9rem;
    }
}


	/* ============================================
   BREADCRUMB
============================================ */
.breadcrumb {
    background: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
}

.breadcrumb .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.breadcrumb li:not(:last-child):after {
    content: '/';
    margin: 0 8px;
    color: #ccc;
    font-size: 12px;
}

.breadcrumb a {
    color: #6b4eff;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #4a2ec0;
    text-decoration: underline;
}

.breadcrumb li:last-child {
    color: #333;
    font-weight: 500;
}

/* Responsivo */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 10px 0;
    }
    
    .breadcrumb li {
        font-size: 11px;
    }
    
    .breadcrumb li:not(:last-child):after {
        margin: 0 5px;
    }
}

/* Centralização de texto */
.text-center {
    text-align: center;
}

/* Opções adicionais úteis */
.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

/* Centralização vertical e horizontal (para flexbox) */
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Centralização com grid */
.grid-center {
    display: grid;
    place-items: center;
}

.featured-post-image img,
.blog-card-image img,
.related-card img,
.post-featured-image img {
    width: 100%;
    height: auto;
    /*aspect-ratio: 16 / 9;*/ /* ou a proporção que você quiser */
    object-fit: cover;
}

.ExplcitImg {filter: blur(15px); cursor: pointer;}

.closeAgeModal {position:absolute;top:15px;right:20px;font-size:20px;background:none;border:none;cursor:pointer;}