/*
Theme Name: Lotawhats
Theme URI: https://meuplugin.com
Author: Marcio Felix
Author URI: https://meuplugin.com
Description: Tema profissional WordPress para Lotazap com excelente experiência de leitura
Version: 2.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lotawhats
*/

/* ======================
   Variáveis e Configurações Base
   ====================== */
:root {
    /* Cores principais com gradientes */
    --primary-color: #024746;
    --secondary-color: #25D366;
    --accent-color: #128C7E;
    --text-color: #1F2A44;
    --text-light: #6B7280;
    --background-light: #F9FAFB;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #024746 0%, #036057 100%);
    --gradient-secondary: linear-gradient(135deg, #25D366 0%, #1AB359 100%);
    --gradient-accent: linear-gradient(135deg, #128C7E 0%, #0E6B5B 100%);

    /* Tipografia */
    --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.7;

    /* Espaçamentos */
    --content-max-width: 1200px;
    --container-padding: 1.5rem;
    --section-spacing: 5rem;

    /* Bordas e sombras */
    --border-radius: 10px;
    --border-radius-lg: 16px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);

    /* Tamanhos de imagens */
    --thumbnail-height: 220px;
    --single-image-max-height: 600px;
}

/* ======================
   Reset e Estilos Base
   ====================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-color);
    background-color: var(--background-light);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* ======================
   Layout Principal
   ====================== */
.container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.main-content {
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    margin: var(--section-spacing) auto;
}

/* ======================
   Tipografia
   ====================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-base);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    margin-top: 0.75rem;
    border-radius: 2px;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.75rem;
    text-align: justify;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* ======================
   Header
   ====================== */
.site-header {
    background: var(--gradient-primary);
    padding: var(--header-padding);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-logo img {
    max-width: var(--logo-max-width);
    height: auto;
    transition: transform 0.3s ease;
}

.site-logo img:hover {
    transform: scale(1.05);
}

.search-form {
    display: flex;
    max-width: 300px;
}

.search-form .form-control {
    border-radius: var(--search-border-radius) 0 0 var(--search-border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.search-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-form .btn {
    background: var(--gradient-secondary);
    border: none;
    border-radius: 0 var(--search-border-radius) var(--search-border-radius) 0;
    padding: 0 1rem;
}

/* ======================
   Menu Principal
   ====================== */
.primary-navbar {
    background: transparent !important;
    padding: 1rem 0;
}

.primary-navbar .navbar-nav {
    display: flex;
    align-items: center;
    gap: var(--menu-item-spacing);
}

.primary-navbar .nav-link {
    color: var(--menu-text-color) !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.primary-navbar .nav-link:hover,
.primary-navbar .nav-link:focus {
    background: var(--gradient-secondary);
    color: var(--white) !important;
    transform: translateY(-2px);
}

.primary-navbar .dropdown-menu {
    background: var(--white);
    border: none;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
}

.primary-navbar .dropdown-item {
    color: var(--text-color);
    padding: 0.5rem 1.5rem;
}

.primary-navbar .dropdown-item:hover {
    background: var(--gradient-secondary);
    color: var(--white);
}

/* ======================
   Menu de Categorias
   ====================== */
.secondary-menu-container {
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.secondary-navbar {
    padding: 1rem 0;
}

.secondary-navbar .navbar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.secondary-navbar .nav-link {
    background: var(--gradient-secondary);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.secondary-navbar .nav-link:hover,
.secondary-navbar .nav-link:focus {
    background: var(--gradient-accent);
    transform: translateY(-2px);
}

.secondary-navbar .nav-link i {
    font-size: 0.9rem;
}

/* ======================
   Componentes de Grupo
   ====================== */
.group-card {
    background: var(--white);
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.group-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.group-thumbnail {
    display: block;
    overflow: hidden;
    height: var(--thumbnail-height);
    position: relative;
}

.group-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.group-card:hover .group-thumbnail img {
    transform: scale(1.05);
}

.group-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.group-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.group-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.group-meta {
    margin-top: auto;
}

.btn-group-action {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    display: block;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-group-action:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    text-decoration: none;
}

/* ======================
   Página Individual (Single) - ATUALIZADO
   ====================== */
.single-grupo {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
}

.article-header {
    margin-bottom: 2rem;
    text-align: center;
}

.article-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.article-meta {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.featured-image-container {
    position: relative;
    width: 100%;
    margin: 0 auto 2rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.featured-image-single {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.featured-image-container:hover .featured-image-single {
    transform: scale(1.02);
}

.featured-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    pointer-events: none;
}

.article-content {
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    padding-top: 2rem;
}

.article-content p {
    margin-bottom: 1.75rem;
    orphans: 3;
    widows: 3;
}

/* ======================
   Gerenciamento de Imagens Otimizado
   ====================== */
.article-content img,
.wp-block-image img,
.size-full {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 1.5rem auto;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.aligncenter {
    display: block;
    margin: 1.5rem auto;
}

.alignleft {
    float: left;
    margin: 0 1.5rem 1rem 0;
    max-width: 50%;
}

.alignright {
    float: right;
    margin: 0 0 1rem 1.5rem;
    max-width: 50%;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.wp-caption-text {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.5rem;
}

/* ======================
   Componentes Gerais
   ====================== */
.badge {
    font-weight: 500;
    padding: 0.4em 0.8em;
    border-radius: 20px;
    font-size: 0.85em;
    letter-spacing: 0.5px;
}

.badge-primary {
    background-color: var(--primary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    display: inline-block;
}

/* ======================
   Responsividade
   ====================== */
@media (max-width: 992px) {
    :root {
        --content-max-width: 90%;
        --container-padding: 1.25rem;
        --thumbnail-height: 180px;
        --single-image-max-height: 400px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .alignleft,
    .alignright {
        float: none;
        display: block;
        margin: 1.5rem auto;
        max-width: 100%;
    }
    
    .featured-image-single {
        height: 350px;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-base: 0.95rem;
        --section-spacing: 3rem;
        --thumbnail-height: 160px;
        --single-image-max-height: 350px;
    }
    
    .main-content {
        padding: 1.5rem;
    }
    
    .group-card {
        margin-bottom: 1.5rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .featured-image-single {
        height: 300px;
    }
}

@media (max-width: 576px) {
    :root {
        --container-padding: 1rem;
        --thumbnail-height: 140px;
        --single-image-max-height: 300px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .featured-image-single {
        height: 250px;
        margin: 1rem 0;
    }
    
    .article-title {
        font-size: 1.7rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ======================
   Utilitários
   ====================== */
.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.py-5 {
    padding: 3rem 0;
}

.rounded {
    border-radius: var(--border-radius);
}

.shadow-sm {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ======================
   Efeitos e Animações
   ====================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* ======================
   Estilos de Imagem Avançados
   ====================== */
.custom-logo {
    max-height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

.custom-logo:hover {
    opacity: 0.9;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-rounded {
    border-radius: var(--border-radius);
}

.img-hover-zoom {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.img-hover-zoom img {
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.03);
}

.post-thumbnail {
    width: 100%;
    height: var(--thumbnail-height);
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ======================
   Loader para imagens
   ====================== */
.lazy-load {
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.lazy-load::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ======================
   Acessibilidade
   ====================== */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* ======================
   Performance Optimizations
   ====================== */
img[data-src],
img[data-srcset] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.lazyloaded {
    opacity: 1;
}

/* -------------------------------------------------
   RESET & BASE
-------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Utilitário de cor (mesma usada nos títulos) */
.text-teal { color:#92a7a6; }

/* Limite global p/ páginas (equivalente ao inline style max-width:960px) */
.container { max-width:960px; }

/* -------------------------------------------------
   HEADER
-------------------------------------------------- */

header a { color:#fff; text-decoration:none; font-weight:600; }

/* -------------------------------------------------
   CATEGORY MENU
-------------------------------------------------- */
.category-menu        { background:#e6f2f0; }
.category-menu ul     { margin:0; padding:0; list-style:none; }
.category-menu li a   {
    background:#cce7e3;
    color:#024746;
    padding:8px 12px;
    border-radius:20px;
    font-weight:500;
    display:inline-block;
    text-decoration:none;
}

/* -------------------------------------------------
   HERO
-------------------------------------------------- */
.hero { background:#f9f9f9; padding: 40px 0; }
.hero h1 { color:#757777; font-weight:700; font-size:2rem; margin-bottom:20px; }

/* -------------------------------------------------
   SEÇÕES
-------------------------------------------------- */
.section-title { color:#024746; font-size:1.6rem; font-weight:600; margin-bottom:20px; }

/* -------------------------------------------------
   CARDS (grupos & blog)
-------------------------------------------------- */
article.border { transition:all .15s ease-in-out; }
article.border:hover { transform:translateY(-2px); box-shadow:0 6px 16px rgba(0,0,0,0.08); }

/* -------------------------------------------------
   RESPONSIVO
-------------------------------------------------- */
@media (max-width:768px) {
    .hero h1       { font-size:1.3rem; }
    .section-title { font-size:1.3rem; }
}

@media (max-width:480px) {
    /* Botão pleno em 100% para telas muito pequenas */
    .btn { width:100%; }
}

lement.style {
    height: 140px;
    object-fit: cover;
}
.w-100 {
    width: 100% !important;
}
article img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}
img, svg {
    vertical-align: middle;
}
*, *::before, *::after {
    box-sizing: border-box;
}

a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: underline;
}
user agent stylesheet
a:-webkit-any-link {
    color: -webkit-link;
    cursor: pointer;
}
.g-4, .gy-4 {
    --bs-gutter-y: 1.5rem;
}
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex
;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}
body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}
body, .whatsapp-widget, .whatsapp-message-box, .chat-body, #attendant-name, button#close-chat, .title_form {
    font-family: 'Open Sans', sans-serif;
}


:root {
    --bs-breakpoint-xs: 0;
    --bs-breakpoint-sm: 576px;
    --bs-breakpoint-md: 768px;
    --bs-breakpoint-lg: 992px;
    --bs-breakpoint-xl: 1200px;
    --bs-breakpoint-xxl: 1400px;
}

/* ======================
   Estilos para Blog/Home
   ====================== */

/* Container principal da listagem */
.blog-posts-container {
    padding: 2rem 0;
}

/* Grid de posts */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Card individual do post */
.post-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Cabeçalho do card */
.post-card .entry-header {
    position: relative;
}

/* Imagem destacada */
.post-card .post-thumbnail {
    height: 200px;
    overflow: hidden;
}

.post-card .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

/* Conteúdo do card */
.post-card .entry-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-card .entry-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.post-card .entry-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.post-card .entry-title a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.post-card .entry-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Meta informações */
.post-card .entry-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Botão "Leia mais" */
.post-card .read-more {
    margin-top: 1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.post-card .read-more:hover {
    background: var(--secondary-color);
}

/* ======================
   Responsividade
   ====================== */
@media (max-width: 992px) {
    .posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .post-card .entry-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
}


/* Garante que estilos do single não afetem a home */
.single-post article, 
.single-grupo article {
    /* Seus estilos específicos para single */
    padding: 2rem;
    margin-bottom: 3rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

/* Reset para artigos na home */
.blog .post-card,
.home .post-card,
.archive .post-card {
    padding: 0;
    margin-bottom: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

/* ======================
   Grid de Posts
   ====================== */

/* Grid Padrão */
.posts-grid.standard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Grid Masonry */
.posts-grid.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.masonry-grid .post-card {
    height: auto;
}

/* Grid Alternado */
.posts-grid.alternate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.alternate-grid .post-card.medium-card {
    grid-column: span 2;
}

.alternate-grid .post-card.large-card {
    grid-column: span 3;
    display: flex;
}

.alternate-grid .post-card.large-card .entry-header {
    flex: 0 0 50%;
}

.alternate-grid .post-card.large-card .entry-content {
    flex: 0 0 50%;
    padding: 2rem;
}

/* Badges de Categoria */
.post-categories {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    z-index: 2;
}

.category-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    background: var(--primary-color);
}

/* Estilos específicos por categoria */
.category-tecnologia .category-badge {
    background: #2563eb;
}

.category-negocios .category-badge {
    background: #059669;
}

.category-saude .category-badge {
    background: #dc2626;
}

/* Efeitos hover com cores de categoria */
.post-card.category-tecnologia:hover {
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

.post-card.category-negocios:hover {
    box-shadow: 0 5px 15px rgba(5, 150, 105, 0.2);
}

.post-card.category-saude:hover {
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.2);
}

/* ======================
   Responsividade
   ====================== */
@media (max-width: 992px) {
    .posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .alternate-grid .post-card.medium-card,
    .alternate-grid .post-card.large-card {
        grid-column: span 3;
    }
    
    .alternate-grid .post-card.large-card {
        flex-direction: column;
    }
    
    .alternate-grid .post-card.large-card .entry-header,
    .alternate-grid .post-card.large-card .entry-content {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:768px) {
	.hero h1       { font-size:1.3rem; }
	.section-title { font-size:1.3rem; }
}

@media (max-width:480px) {
	/* BotÃ£o pleno em 100% para telas muito pequenas */
	.btn { width:100%; }
}

/* Trending Posts Styles */
.trending-posts-section {
    margin: 2rem 0;
}

.post-agrupador-horizontal-g1 {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.trending-title {
    font-family: opensans, opensans-bastian, Arial, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: -0.4px;
    color: #333;
    line-height: 20px;
    margin: 0;
}

.trending-post {
    padding: 1.5rem 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.trending-post.has-border-top {
    border-top: 1px solid #eee;
}

.trending-post-content {
    flex: 1;
}

.trending-category {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.75px;
    line-height: 20px;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: opensans, opensans-bastian, Arial, sans-serif;
}

.trending-post-title {
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: -1px;
    font-family: opensans, opensans-bastian, Arial, sans-serif;
    font-weight: 700;
    color: var(--gui-color-primary);
    text-decoration: none;
    display: block;
}

.trending-post-thumbnail img {
    float: right;
    margin: 0 0 0 1rem;
    border-radius: var(--glb-fd-p-agrupador-horizontal-img-border-radius);
    width: 94px;
    height: 94px;
    object-fit: cover;
}

.trending-footer {
    border-top: 1px solid #eee;
    padding: 16px 24px;
}

.trending-more-link {
    font-size: 14px;
    line-height: 1.14;
    letter-spacing: -0.7px;
    font-family: opensans, opensans-bastian, Arial, sans-serif;
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
    color: var(--gui-color-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.post-bastian-products__arrow {
    margin-left: 5px;
}

/* ======================
   Right Sidebar Layout
   ====================== */
.right-sidebar-wrapper {
    position: fixed;
    right: 20px;
    top: 100px;
    width: 300px;
    z-index: 100;
}

.trending-posts-widget {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

/* Ad Space Styles */
.ad-space {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.ad-space img,
.ad-space iframe {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.ad-space .ad-label {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .right-sidebar-wrapper {
        position: static;
        width: 100%;
        margin-top: 2rem;
    }
    
    .trending-posts-widget,
    .ad-space {
        max-width: 100%;
    }
}

/* ======================
   Trending Posts Sidebar Layout
   ====================== */
.content-sidebar-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.sidebar-position-right {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: flex-start;
}

.sidebar-position-left {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.sidebar-position-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* ======================
   Trending Posts Widget
   ====================== */
.trending-posts-widget {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.trending-header {
    border-bottom: 1px solid #eeeeee;
    padding: 1rem 1.5rem;
}

.trending-title {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: -0.4px;
    color: #333333;
    line-height: 20px;
    margin: 0;
}

.trending-posts-container {
    padding: 0 1.5rem;
}

.trending-post {
    padding: 1.5rem 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.trending-post.has-border-top {
    border-top: 1px solid #eeeeee;
}

.trending-post-content {
    flex: 1;
}

.trending-post-category {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.75px;
    line-height: 20px;
    color: #333333;
    margin-bottom: 0.5rem;
    font-family: 'Open Sans', Arial, sans-serif;
}

.trending-post-title {
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: -1px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: block;
}

.trending-post-title:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.trending-post-thumbnail {
    margin-left: 1rem;
    flex-shrink: 0;
}

.trending-thumbnail {
    width: 94px;
    height: 94px;
    border-radius: 4px;
    object-fit: cover;
}

.trending-footer {
    border-top: 1px solid #eeeeee;
    padding: 16px 24px;
}

.trending-more-link {
    font-size: 14px;
    line-height: 1.14;
    letter-spacing: -0.7px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trending-more-link:hover {
    color: var(--secondary-color);
}

.trending-arrow-icon {
    margin-left: 0.5rem;
}

.trending-arrow-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Ad Space Styles */
.sidebar-ad-space {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    text-align: center;
    margin-bottom: 1.5rem;
}

.sidebar-ad-space img,
.sidebar-ad-space iframe {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
}

.ad-label {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-align: center;
}

.ad-placeholder {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #999;
    border-radius: 4px;
}

/* Sidebar Layout Styles */
.content-sidebar-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.sidebar-layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Fixed Sidebar Option */
.sidebar-fixed-enabled .sidebar-position-right {
    position: fixed;
    right: 20px;
    top: 100px;
    width: 300px;
    z-index: 100;
}

.sidebar-fixed-enabled .sidebar-position-left {
    position: fixed;
    left: 20px;
    top: 100px;
    width: 300px;
    z-index: 100;
}

.sidebar-fixed-enabled .main-content {
    width: calc(100% - 340px);
    margin-right: 340px;
}

.sidebar-fixed-enabled .sidebar-position-left + .main-content {
    margin-left: 340px;
    margin-right: 0;
}

/* Column Layouts */
.sidebar-layout-column.sidebar-position-right {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

.sidebar-layout-column.sidebar-position-left {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .sidebar-layout-column {
        grid-template-columns: 1fr !important;
    }
    
    .sidebar-fixed-enabled .sidebar-position-right,
    .sidebar-fixed-enabled .sidebar-position-left {
        position: static;
        width: 100%;
    }
    
    .sidebar-fixed-enabled .main-content {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .trending-post {
        flex-direction: column;
    }
    
    .trending-post-thumbnail {
        margin: 1rem 0 0 0;
        align-self: flex-start;
    }
    
    .trending-thumbnail {
        width: 100%;
        height: auto;
        max-width: 150px;
    }
}

/* ======================
   Seção de Últimos Grupos
   ====================== */

.latest-groups-section {
    background-color: var(--latest-groups-bg, #f8f9fa);
    padding: 3rem 0;
}

.latest-groups-section .section-header {
    margin-bottom: 2rem;
    text-align: center;
}

.latest-groups-section .section-title {
    color: var(--latest-groups-title-color, #024746);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.latest-groups-section .section-subtitle {
    color: var(--latest-groups-subtitle-color, #6c757d);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.latest-groups-section .section-divider {
    background-color: var(--latest-groups-divider-color, #25D366);
    height: 3px;
    width: 60px;
    margin: 0 auto;
}

.groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.group-card {
    background-color: var(--latest-groups-card-bg, #ffffff);
    color: var(--latest-groups-card-text, #333333);
    border-radius: var(--latest-groups-card-radius, 8px);
    border: 1px solid var(--latest-groups-card-border, #e9ecef);
    box-shadow: var(--latest-groups-card-shadow, 0 2px 10px rgba(0,0,0,0.1));
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.group-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--latest-groups-card-hover-shadow, 0 5px 15px rgba(0,0,0,0.1));
}

.group-thumbnail {
    display: block;
    height: 180px;
    overflow: hidden;
}

.group-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.group-card:hover .group-thumbnail img {
    transform: scale(1.05);
}

.placeholder-image {
    background-color: var(--latest-groups-placeholder-bg, #e9ecef);
}

.group-content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.group-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.group-title a {
    color: var(--latest-groups-title-color, #024746);
    text-decoration: none;
    transition: color 0.2s ease;
}

.group-title a:hover {
    color: var(--latest-groups-title-hover, #25D366);
}

.group-categories {
    margin-bottom: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.group-category {
    background-color: var(--latest-groups-category-bg, #25D366);
    color: var(--latest-groups-category-text, #ffffff);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.group-button {
    display: block;
    text-align: center;
    padding: 0.5rem;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.2s ease;
}

.join-button {
    background-color: var(--latest-groups-join-btn-bg, #25D366);
    color: var(--latest-groups-join-btn-text, #ffffff);
    border: 1px solid var(--latest-groups-join-btn-border, #25D366);
}

.join-button:hover {
    background-color: var(--latest-groups-join-btn-hover-bg, #128C7E);
    border-color: var(--latest-groups-join-btn-hover-border, #128C7E);
    color: var(--latest-groups-join-btn-hover-text, #ffffff);
}

.details-button {
    background-color: var(--latest-groups-details-btn-bg, transparent);
    color: var(--latest-groups-details-btn-text, #6c757d);
    border: 1px solid var(--latest-groups-details-btn-border, #6c757d);
}

.details-button:hover {
    background-color: var(--latest-groups-details-btn-hover-bg, #6c757d);
    color: var(--latest-groups-details-btn-hover-text, #ffffff);
}

.more-groups-button {
    margin-top: 2rem;
    text-align: center;
}

.view-all-button {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--latest-groups-viewall-btn-bg, transparent);
    color: var(--latest-groups-viewall-btn-text, #024746);
    border: 1px solid var(--latest-groups-viewall-btn-border, #024746);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.view-all-button:hover {
    background-color: var(--latest-groups-viewall-btn-hover-bg, #024746);
    color: var(--latest-groups-viewall-btn-hover-text, #ffffff);
}

.no-groups-message {
    text-align: center;
    padding: 2rem;
    background-color: var(--latest-groups-alert-bg, #e7f8f8);
    color: var(--latest-groups-alert-text, #024746);
    border-radius: 8px;
}

/* Responsividade */
@media (max-width: 767.98px) {
    .groups-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .latest-groups-section {
        padding: 2rem 0;
    }
}

.details-button {
    background-color: var(--latest-groups-details-btn-bg, transparent);
    color: var(--latest-groups-details-btn-text, #6c757d);
    border: 1px solid var(--latest-groups-details-btn-border, #6c757d);
}

.details-button:hover {
    background-color: var(--latest-groups-details-btn-hover-bg, #6c757d);
    color: var(--latest-groups-details-btn-hover-text, #ffffff);
    border-color: var(--latest-groups-details-btn-hover-bg, #6c757d);
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero .btn-primary {
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 0.75rem 2rem;
}

.hero .btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ===========================================
   Lead Capture Form Styles
   =========================================== */

.lead-form-section {
    padding: 4rem 0;
    background-color: var(--form-bg, #f8f9fa);
    color: var(--form-text, #333333);
    transition: all 0.3s ease;
    margin: 2rem 0;
    border-radius: 8px;
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-title {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    color: inherit;
    font-weight: 700;
    line-height: 1.3;
}

.form-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 0;
    color: inherit;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.lotazap-lead-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.form-grid {
    display: grid;
    gap: 1.25rem;
}

.form-stacked .form-grid {
    grid-template-columns: 1fr;
}

.form-inline .form-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.form-group {
    margin-bottom: 0;
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--form-field-border, #ced4da);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--form-field-bg, #ffffff);
    color: var(--form-field-text, #495057);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
}

.form-group input::placeholder {
    color: rgba(var(--form-field-text-rgb), 0.7);
}

.form-submit {
    width: 100%;
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--form-button-bg, #25D366);
    color: var(--form-button-text, #ffffff);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.form-submit:hover {
    background-color: var(--form-button-hover, #128C7E);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.form-submit:active {
    transform: translateY(0);
}

.form-submit i {
    font-size: 1em;
    transition: transform 0.3s ease;
}

.form-submit:hover i {
    transform: translateX(3px);
}

/* Loading animation */
.form-submit.loading::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(255,255,255,0.3), 
                transparent);
    animation: loadingShimmer 1.5s infinite;
}

@keyframes loadingShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Success/Error Messages */
.form-message {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid #28a745;
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lead-form-section {
        padding: 3rem 0;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .form-inline .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group input {
        padding: 0.75rem 1rem;
    }
}

/* Platform-specific styles */
.form-mailchimp .form-group:last-child {
    grid-column: 1 / -1;
}

.form-convertkit .form-group:last-child {
    grid-column: 1 / -1;
}

.form-activecampaign .form-group {
    grid-column: 1 / -1;
}

/* Estilos para a tabela de leads no admin */
.wrap {
    padding: 20px;
}

#leadsTable {
    margin-top: 20px;
    border-collapse: collapse;
    width: 100%;
}

#leadsTable th {
    background-color: #f1f1f1;
    padding: 10px;
    text-align: left;
}

#leadsTable td {
    padding: 8px 10px;
    border-bottom: 1px solid #ddd;
}

.export-buttons {
    margin-bottom: 20px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 5px 10px;
    margin: 0 2px;
    border: 1px solid #ddd;
    background: #f9f9f9;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #0073aa;
    color: white !important;
    border: 1px solid #0073aa;
}

.sticky-menu {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sticky-header .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Se ambos os menus estiverem fixos, ajuste a posição */
.sticky-menu + .sticky-header .site-header {
    top: 50px; /* Ajuste conforme a altura do menu de categorias */
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-row {
    position: relative;
    z-index: 2;
}

.hero-content-col {
    padding: 30px;
}

.hero-image-col {
    padding: 30px;
}

.hero-main-image {
    max-height: 400px;
    width: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-main-image:hover {
    transform: scale(1.03);
}

/* Layout variations */
.hero-row.image-right {
    flex-direction: row;
}

.hero-row.image-left {
    flex-direction: row-reverse;
}

/* Popular groups styles */
.popular-groups-wrapper {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.popular-groups-title {
    margin-bottom: 30px;
    text-align: center;
}

.group-card {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    transition: transform 0.3s ease;
}

.group-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 991.98px) {
    .hero-row {
        flex-direction: column;
    }
    
    .hero-content-col, 
    .hero-image-col {
        text-align: center !important;
    }
    
    .hero-button {
        margin: 0 auto;
    }
}
/* Remove o sublinhado dos links ao passar o mouse */
a:hover,
a:focus,
a:active {
    text-decoration: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito Sans', 'Helvetica Neue', Arial, sans-serif;
}

/* BODY */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #fff;
}

/* LINKS em preto */
a {
    text-decoration: none;
}
a:hover {
    color: #333 !important;
    text-decoration: underline;
}

/* HEADER */
/* Placeholder para a LOGO */
.img-placeholder-logo {
    width: 40px;
    height: 40px;
    background-color: #ccc;
    display: inline-block;
    border-radius: 4px;
}

/* Top Bar (barra superior) */
.top-bar .nav-link {
    font-weight: 500;
}
.top-bar .btn-dark {
    background-color: #000;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
}

/* Sub Bar (barra inferior) */
.sub-bar {
    background-color: #008B8B; /* Ajuste conforme o tom desejado */
    padding: 5px 0;
}
.sub-bar .navbar-toggler {
    border-color: rgba(255,255,255,0.1);
}
.sub-bar .navbar-toggler-icon {
    filter: invert(1); /* Ícone hamburguer em branco */
}
.sub-bar .nav-link {
    font-weight: 500;
    color: #fff !important;
}

/* DROPDOWN (Submenus) */
.dropdown-menu {
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.dropdown-item {
    font-size: 0.95rem;
}
.dropdown-item:hover {
    background-color: #f2f2f2;
}
.sub-bar ul li{
    margin: 0 6px;
}

/* Ajuste para o Submenu ficar alinhado e funcional */
.sub-bar .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Estilização do Submenu */
.sub-bar .navbar-nav .menu-item {
    position: relative;
}

/* Ajuste do Dropdown */
.sub-bar .navbar-nav .menu-item .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    display: none;
    border-radius: 4px;
    z-index: 999;
    padding: 10px 0;
}

/* Exibir o submenu ao passar o mouse */
.sub-bar .navbar-nav .menu-item:hover > .sub-menu {
    display: block;
}

/* Estilização dos links do Submenu */
.sub-bar .navbar-nav .sub-menu .menu-item {
    padding: 8px 15px;
    list-style: none;
}

.sub-bar .navbar-nav .sub-menu .menu-item a {
    color: #333!important;
    font-size: 14px;
    text-decoration: none;
    display: block;
    font-weight: bold;
}

/* Efeito hover nos links do Submenu */
.sub-bar .navbar-nav .sub-menu .menu-item a:hover {
    border-radius: 2px;
}

/* Ajuste para submenu funcionar corretamente em telas menores */
@media (max-width: 992px) {
    .sub-bar .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .sub-bar .navbar-nav .menu-item .sub-menu {
        position: relative;
        top: auto;
        left: auto;
        background: transparent;
        box-shadow: none;
        display: block;
        padding: 0;
    }

    .sub-bar .navbar-nav .sub-menu .menu-item a {
        padding-left: 20px;
    }
}

/* Ajuste para o Top Bar */
.top-bar {
    background-color: #fff;
    padding: 10px 0;
}

.top-bar .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .navbar-nav .menu-item {
    position: relative;
    padding: 10px;
}

/* Ajuste do Dropdown no Top Bar */
.top-bar .navbar-nav .menu-item .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    display: none;
    border-radius: 4px;
    z-index: 999;
    padding: 10px 0;
    border: 1px solid #e0e0e0;
}

/* Exibir o submenu ao passar o mouse */
.top-bar .navbar-nav .menu-item:hover > .sub-menu {
    display: block;
}

/* Estilização dos links do Submenu */
.top-bar .navbar-nav .sub-menu .menu-item {
    padding: 8px 15px;
    list-style: none;
}

.top-bar .navbar-nav .sub-menu .menu-item a {
    color: #333 !important;
    font-size: 14px;
    text-decoration: none;
    display: block;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

/* Efeito hover nos links do Submenu */
.top-bar .navbar-nav .sub-menu .menu-item a:hover {
    border-radius: 4px;
}

/* Ajuste para submenu funcionar corretamente em telas menores */
@media (max-width: 992px) {
    .top-bar .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-bar .navbar-nav .menu-item .sub-menu {
        position: relative;
        top: auto;
        left: auto;
        background: transparent;
        box-shadow: none;
        display: block;
        padding: 0;
    }

    .top-bar .navbar-nav .sub-menu .menu-item a {
        padding-left: 20px;
    }
}


    /* HERO SECTION */
.hero {
    background-color: #eee;
}
.hero-title {
    font-size: 2rem;
    font-weight: bold;
}
.hero-desc {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}
.img-placeholder-hero {
    width: 100%;
    height: 300px;
    background-color: #ccc;
    border-radius: 4px;
}

/* CONTEÚDO PRINCIPAL */
/* Cada caixa de post (link que envolve a box) */
.post-box {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s;
}

.img-placeholder {
    width: 100%;
    min-height: 120px;
    background-color: #ccc;
    border-radius: 4px;
}
.img-placeholder-right {
    width: 100%;
    height: 500px;
    background-color: #bbb;
    border-radius: 4px;
}

/* Títulos dos posts */
.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #212529;
}
.blog-excerpt {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.blog-readmore {
    font-weight: 600;
    color: #000 !important;
}
.blog-readmore:hover {
    text-decoration: underline;
}

/* NEWSLETTER */
.newsletter-fullwidth {
    background-color: #004d40;
}
.newsletter-fullwidth .form-label {
    color: #fff;
}
.newsletter-fullwidth .form-control {
    border-radius: 4px;
    border: 1px solid #ddd;
}

/* FOOTER */
footer h5 {
    color: #212529;
}
footer a {
    color: #000 !important;
    text-decoration: none;
}
footer a:hover {
    color: #333 !important;
    text-decoration: underline;
}
.post-box:hover,
.post-box:hover * {
    text-decoration: none !important;
}
.btn-cta {
    background-color: #008B8B;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
}
.btn-cta:hover {
    background-color: #008B8B;
    color: #fff;
    text-decoration: none!important;
}

.entry-content 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: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.entry-title{
    font-size: 2.6rem;
    font-weight: 700;
    margin: 35px 0;
}

hr {
    border: none; /* Remove a borda padrão */
    height: 1px; /* Define a altura da linha */
    background-color: #d6d6d6; /* Cinza suave */
    margin: 20px 0; /* Espaçamento vertical */
    opacity: 0.7; /* Torna a linha mais sutil */
}

/* Estilos para Posts Relacionados - Layout responsivo */
/* Container do grid de posts relacionados */
.related-posts-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* 3 colunas para desktop */
    gap: 20px;
    margin-bottom: 30px;
}

/* Artigo individual */
.related-post {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Container da miniatura com proporção fixa */
.post-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Proporção 16:9 para desktop */
    overflow: hidden;
}

/* Remover atributos width e height das imagens para permitir controle via CSS */
.post-thumbnail img {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    max-width: none !important;
}

.related-post:hover .post-thumbnail img {
    transform: scale(1.05);
}

/* Conteúdo do post */
.related-post-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Título do post */
.related-post-title {
    font-size: 16px; /* Reduzido para 3 colunas */
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
    overflow: hidden;
    height: auto;
}

.related-post-title a {
    color: inherit;
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .related-posts-grid {
        grid-template-columns: 1fr !important; /* 1 coluna para mobile */
    }
    
    .related-post {
        text-align: center;
    }
    
    .related-post-title {
        font-size: 18px; /* Maior para 1 coluna */
    }
    
    .post-thumbnail {
        padding-bottom: 70%;
    }
    
    .related-post-content {
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .related-posts-grid {
        gap: 15px;
    }
    
    .related-post {
        margin-bottom: 25px;
    }
    
    .post-thumbnail {
        padding-bottom: 75%;
    }
    
    .related-post-content {
        padding: 15px 10px;
    }
    
    .related-post-title {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

/* Author Card */
.author-card {
    display: flex;
    align-items: center;
    padding: 20px;
    margin: 30px 0;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #ddd;
}

/* Avatar: torna-o circular */
.author-card-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

/* Conteúdo */
.author-card-content {
    flex: 1;
}

.author-card-name {
    margin: 0 0 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.author-card-name a {
    color: #212529;
    text-decoration: none;
    transition: color 0.3s ease;
}

.author-card-name a:hover {
    color: #008B8B;
}

.author-card-bio {
    margin: 0 0 15px;
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
}

/* Social Links */
.author-card-social {
    display: flex;
    gap: 15px;
}

.author-card-social-link {
    font-size: 1.5rem;
    color: #008B8B;
    transition: color 0.3s ease;
}

.author-card-social-link:hover {
    color: #005f5f;
}

/* FOOTER */
.site-footer {
    font-size: 0.9rem;
}

.footer-columns {
    margin-bottom: 30px;
}

.footer-column {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 60%;
    height: auto;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #212529;
}

/* Menu do rodapé */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu li {
    margin-bottom: 8px;
    list-style: none;
}

.footer-menu li a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: #008B8B;
}

/* Redes Sociais */
.footer-social-links a {
    font-size: 1.5rem;
    color: #008B8B;
    transition: color 0.3s ease;
}

.footer-social-links a:hover {
    color: #005f5f;
}

/* Direitos autorais */
.footer-bottom p {
    margin: 0;
    color: #555;
}
.archive-header {
    margin: 30px 0;
    font-weight: 700;
}
.archive-header h1 {
    font-size: 2.6rem;
    margin: 20px 0;
    font-weight: 700;
}

/* Estilo para o Índice */
.post-toc {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 15px;
    border-radius: 3px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.toc-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    text-align: left;
}

.toc-list {
    list-style: none;
    padding-left: 0;
}

.toc-item {
    margin: 5px 0;
}

.toc-item a {
    text-decoration: none;
    color: #0073aa;
    font-size: 16px;
    transition: color 0.3s;
}

.toc-item a:hover {
    color: #005680;
}

/* Diferenciar H2 e H3 */
.toc-level-2 {
    font-weight: bold;
    padding-left: 5px;
}

.toc-level-3 {
    font-size: 14px;
    padding-left: 15px;
}

/* Estilo do Box de Venda Fixa */
.box-venda-fixa {
    background: #25D366; /* Verde do WhatsApp */
    border: 2px solid #1ebe5d; /* Borda com tom mais escuro do verde */
    padding: 20px;
    border-radius: 4px;
    text-align: left;
    margin: 40px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #ffffff; /* Texto branco */
}

/* Título do Box */
.box-venda-title {
    font-size: 30px;
    font-weight: bold;
    color: #ffffff; /* Título branco para contraste */
    margin: 10px 0 !important;
}

/* Descrição do Box */
.box-venda-desc {
    font-size: 16px;
    color: #f2f2f2; /* Cinza claro para melhor legibilidade */
    margin-bottom: 15px;
}

/* Botão CTA (Branco com texto verde) */
.box-venda-btn {
    display: inline-block;
    background: #ffffff!important; /* Botão branco */
    color: #25D366!important; /* Texto do botão com o verde do WhatsApp */
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease-in-out;
}

/* Efeito hover no botão */
.box-venda-btn:hover {
    background: #f2f2f2!important; /* Um tom mais escuro do branco */
    transform: scale(1.05);
    text-decoration: none!important;
}

.box-venda-btn {
    display: inline-block;
    background: #0073aa;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.box-venda-btn:hover {
    background: #005680;
}
/* Estilo da Página 404 */
.error-404 {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 60px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.error-title {
    font-size: 80px;
    font-weight: bold;
    color: #25D366; /* Verde WhatsApp */
    margin: 0;
}

.error-subtitle {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.error-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Botão de Voltar */
.error-btn {
    display: inline-block;
    background: #25D366; /* Verde WhatsApp */
    color: #ffffff;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease-in-out;
}

.error-btn:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}

/* Barra de Pesquisa */
.error-search {
    margin-top: 20px;
}
/* Estilo da Página de Pesquisa */
.search-header {
    text-align: center;
    margin-bottom: 30px;
}

.search-title {
    font-size: 26px;
    font-weight: bold;
    color: #333;
}

.search-title span {
    color: #25D366; /* Verde do WhatsApp para destaque */
}

/* Estilo para quando não houver resultados */
.no-results {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 60px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.no-results-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.no-results-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Botão para voltar à Home */
.no-results-btn {
    display: inline-block;
    background: #25D366; /* Verde WhatsApp */
    color: #ffffff;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease-in-out;
}

.no-results-btn:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}

/* Barra de Pesquisa dentro do box de erro */
.no-results-search {
    margin-top: 20px;
}

.container-posts img {
    width: 100%;           /* Largura de 100% do container */
    height: 180px;         /* Altura fixa similar à imagem roxa */
    object-fit: cover;     /* Mantém a proporção da imagem */
    object-position: center; /* Centraliza a imagem */
    border-radius: 8px;    /* Cantos arredondados como na imagem */
    transition: transform 0.3s ease; /* Efeito suave ao passar o mouse */
}

/* Opcional: efeito hover para destacar a imagem quando passar o mouse */
.container-posts a:hover img {
    transform: scale(1.03);
}

/* Estilo específico para cards post */
.post-box {
    display: block;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Adicione uma sombra sutil nos cards, similar ao card roxo */
.post-box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Estilo para o título dos posts */
.blog-title {
    font-size: 1.3rem;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #333;
}

/* Estilo para o resumo dos posts */
.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Estilo para o "Leia mais" */
.blog-readmore {
    color: #7353d9; /* Cor roxa similar à imagem */
    font-weight: bold;
    font-size: 0.9rem;
}

/* Estilos para newsletter - versão otimizada e responsiva */
.newsletter-fullwidth {
    padding: 30px 0;
}

/* Estrutura e alinhamento do container */
.newsletter-fullwidth .container {
    text-align: left;
    max-width: 1140px;
    margin: 0 auto;
}

/* Estilização de texto */
.newsletter-fullwidth h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left;
}

.newsletter-fullwidth p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: left;
}

/* Formulário e campos */
.newsletter-fullwidth form {
    background-color: transparent !important;
    padding: 0 !important;
    margin: 20px 0 !important;
    box-shadow: none !important;
    width: 100%;
    border-radius: 0;
}

.newsletter-fullwidth form .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
    gap: 15px 0; /* Espaçamento vertical entre linhas */
}

.newsletter-fullwidth form .col-12 {
    padding: 0 10px;
    margin-bottom: 15px;
}

.newsletter-fullwidth form .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    text-align: left;
}

.newsletter-fullwidth form .form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: inherit;
    border-radius: 4px;
    height: 45px;
}

.newsletter-fullwidth form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Estilização do botão */
.newsletter-fullwidth .btn-light {
    background-color: #fff;
    color: #004d40; /* Usar a cor complementar ao fundo da newsletter */
    font-weight: 600;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    height: 45px;
    margin-top: 24px; /* Espaçamento importante entre o campo e o botão */
}

.newsletter-fullwidth .btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Mensagens de resposta */
.newsletter-response {
    width: 100%;
}

.newsletter-fullwidth .newsletter-response .alert {
    text-align: left;
    margin-top: 15px;
    padding: 12px 15px;
    background-color: transparent;
    border: none;
    border-radius: 4px;
    font-weight: 500;
}

.newsletter-fullwidth .newsletter-response .alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.newsletter-fullwidth .newsletter-footer {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.9;
}

/* Responsividade */
@media (max-width: 768px) {
    .newsletter-fullwidth {
        padding: 25px 0;
    }
    
    .newsletter-fullwidth h3 {
        font-size: 22px;
    }
    
    .newsletter-fullwidth form .col-md-5,
    .newsletter-fullwidth form .col-md-2 {
        width: 100%;
    }
    
    .newsletter-fullwidth .btn-light {
        margin-top: 5px; /* Ajuste do espaçamento em telas menores */
    }
    
    .newsletter-fullwidth form .align-self-end {
        align-self: stretch !important;
    }
}

/* Ajuste extra para telas muito pequenas */
@media (max-width: 576px) {
    .newsletter-fullwidth .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .newsletter-fullwidth h3 {
        font-size: 20px;
    }
    
    .newsletter-fullwidth p {
        font-size: 15px;
    }
}

/* =========== CITAÇÕES COM ESTILO NEUTRO ELEGANTE =========== */
blockquote {
    position: relative;
    padding: 40px 50px 40px 80px;
    margin: 40px 0;
    background: linear-gradient(135deg, rgba(250, 250, 250, 0.9) 0%, rgba(245, 245, 245, 0.85) 100%);
    border-left: 6px solid #666666; /* Cinza neutro */
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0 12px 12px 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
    font-family: 'Georgia', serif;
    font-style: italic;
    letter-spacing: 0.6px;
    line-height: 1.8;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Corrigido: usando o código Unicode para aspas de abertura */
blockquote::before {
    content: "\201C"; /* Código Unicode para aspas duplas de abertura */
    font-family: 'Georgia', serif;
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 8em;
    color: rgba(0, 0, 0, 0.08); /* Cinza muito claro */
    z-index: 0;
    line-height: 0.8;
}

/* Aspas decorativas no final - adicionado pseudoelemento para isso */
blockquote::after {
    content: "\201D"; /* Código Unicode para aspas duplas de fechamento */
    font-family: 'Georgia', serif;
    position: absolute;
    bottom: -20px;
    right: 30px;
    font-size: 5em;
    color: rgba(0, 0, 0, 0.05);
    line-height: 0.8;
}

/* Linhas decorativas na parte inferior - agora como pseudoelemento separado */
blockquote .blockquote-line {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2), transparent);
}

blockquote p {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    color: #333;
    font-size: 1.15em;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
}

blockquote p:last-of-type {
    margin-bottom: 0;
}

blockquote cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    font-size: 0.9em;
    margin-top: 20px;
    color: #555;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding-top: 10px;
}

blockquote cite:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgba(0, 0, 0, 0.2);
}

blockquote:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 15px 25px rgba(0, 0, 0, 0.05);
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

/* =========== TABELAS COM ESTILO NEUTRO ELEGANTE =========== */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 30px 0;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.1); /* Borda externa cinza */
}

table thead tr {
    background: linear-gradient(135deg, #4A4A4A, #666666); /* Gradiente cinza neutro */
    color: white;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

table th {
    padding: 16px 20px;
    font-size: 0.9em;
    border-bottom: 3px solid rgba(0, 0, 0, 0.2); /* Borda inferior do cabeçalho */
    border-right: 1px solid rgba(255, 255, 255, 0.2); /* Divisória entre colunas do cabeçalho */
}

table th:last-child {
    border-right: none;
}

table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Borda entre linhas */
    border-right: 1px solid rgba(0, 0, 0, 0.05); /* Borda entre colunas */
    font-size: 0.95em;
    color: #444;
}

table td:last-child {
    border-right: none;
}

table tbody tr:last-child td {
    border-bottom: none;
}

table tbody tr {
    transition: all 0.3s ease;
}

table tbody tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02); /* Cinza muito claro para linhas alternadas */
}

table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.04); /* Cinza claro para hover */
    cursor: default;
}

/* Estilização para a primeira coluna */
table tbody tr td:first-child {
    font-weight: 600;
    color: #333;
    border-left: 4px solid transparent; /* Preparação para o hover effect */
}

table tbody tr:hover td:first-child {
    border-left: 4px solid rgba(0, 0, 0, 0.2); /* Indicador lateral cinza */
}

/* Animação sutil ao carregar a página */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

blockquote, table {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Estilo moderno para paginação numerada de posts */
.page-numbers {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    margin: 0 5px;
    text-decoration: none;
    color: #333;
    background-color: #f4f4f4;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.page-numbers:hover {
    background-color: #e0e0e0;
}

.page-numbers.dots {
    background: transparent;
    font-weight: bold;
}

.page-numbers.next, .page-numbers.prev {
    padding: 0 15px;
    width: auto;
}

/* Botão hamburguer fixo no topo direito */
.desktop-hamburger {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  display: none;
}

.desktop-hamburger button {
  background: #000;
  color: #fff;
  font-size: 24px;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Mostrar só em telas maiores */
@media screen and (min-width: 1024px) {
  .desktop-hamburger {
    display: block;
  }
}

/* Menu lateral offcanvas */
.offcanvas-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background-color: #111;
  color: white;
  z-index: 9998;
  transition: left 0.3s ease;
  padding: 20px;
  overflow-y: auto;
}

.offcanvas-menu.active {
  left: 0;
}

.offcanvas-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offcanvas-nav li a {
  color: white;
  text-decoration: none;
  padding: 10px 0;
  display: block;
}

#close-offcanvas {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}

/* Footer Styles */
.site-footer {
    position: relative;
    overflow: hidden;
}

.site-footer a {
    transition: all 0.3s ease;
}

.site-footer a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.hover-text-white:hover {
    color: #fff !important;
}

.footer-logo img {
    max-height: 50px;
    width: auto;
}

.social-icons a {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

.btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .site-footer .col-6 {
        text-align: center;
    }
    
    .footer-bottom .list-inline {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom .list-inline-item {
        margin: 5px 0;
    }
}