/*
============================================
MOZ SOLUTION - ESTILOS CUSTOMIZADOS BLOG
Identidade visual baseada no site principal (civil.php, service.php, refrigeracao.php)
Mantém a mesma hierarquia visual e cores do template
Última atualização: 24/12/2025 - Barra de pesquisa melhorada
============================================
*/

:root {
    --primary: #FF3E41;          /* Vermelho corporativo (mesma do site) */
    --secondary: #51CFED;        /* Azul secundário (mesma do site) */
    --light: #F8F2F0;            /* Background claro */
    --dark: #171D37;             /* Texto principal */
    --success: #28a745;          /* Verde para check-circles */
    --gray: #6c757d;             /* Texto secundário */
    --gray-light: #f8f9fa;       /* Backgrounds suaves */
}

/* ==================== TIPOGRAFIA ==================== */
body,
.entry-content {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.8;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6,
.entry-title,
.widget-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

/* Hierarquia de Títulos - mesma do site principal */
h1, .entry-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
}

h5 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

h6 {
    font-size: 1rem;
    margin-bottom: 0.625rem;
    color: var(--secondary);  /* Azul como no site */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ==================== ARTIGOS / POSTS ==================== */
.entry-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
    color: #333;
}

/* Links nos artigos */
.entry-content a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.entry-content a:hover {
    color: var(--secondary);
}

/* Listas - estilo do site (check-circle verde) */
.entry-content ul,
.entry-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.entry-content ul {
    list-style: none;
}

.entry-content ul li {
    position: relative;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
}

.entry-content ul li::before {
    content: '\f058';  /* fa-check-circle */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
    font-size: 1.25rem;
}

.entry-content ol li {
    margin-bottom: 0.75rem;
}

/* Blockquotes - estilo do site (.bg-light) */
.entry-content blockquote {
    position: relative;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--light);
    border-radius: 0.25rem;
    font-style: italic;
    color: #555;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.entry-content blockquote::before {
    content: '"';
    position: absolute;
    left: 15px;
    top: -10px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

/* ==================== CARDS DE POSTS (estilo .service-item) ==================== */
.post,
article.post {
    background: #FFFFFF;
    border-radius: 0;  /* Site usa cantos retos */
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    padding: 1.5rem;
}

.post:hover {
    box-shadow: 0 0 50px rgba(0, 0, 0, .12);
    transform: translateY(-5px);
}

/* Imagem Destacada - mesmo comportamento do site */
.post-thumbnail img,
.entry-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post:hover .post-thumbnail img,
.post:hover .entry-image img {
    transform: scale(1.1);  /* Mesmo efeito do .service-item */
}

.post-thumbnail,
.entry-image {
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 0;
}

/* ==================== META INFO ==================== */
.entry-meta,
.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1rem 0;
    font-size: 0.875rem;
    color: #777;
}

.entry-meta a,
.post-meta a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.entry-meta a:hover,
.post-meta a:hover {
    color: var(--secondary);
}

.entry-meta i,
.post-meta i {
    margin-right: 0.5rem;
    color: var(--primary);
}

/* Data, Autor, Categorias */
.posted-on,
.byline,
.cat-links {
    display: inline-flex;
    align-items: center;
}

/* ==================== CATEGORIAS E TAGS ==================== */
.cat-links a,
.tags-links a {
    display: inline-block;
    padding: 6px 16px;
    margin: 0 6px 6px 0;
    background: var(--light);
    color: var(--dark);
    border-radius: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.cat-links a:hover,
.tags-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 62, 65, 0.3);
}

/* ==================== BOTÕES (estilo .btn-slide do site) ==================== */
.btn,
.more-link,
.read-more,
.wp-block-button__link {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: #FFFFFF !important;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: all 0.5s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn:hover,
.more-link:hover,
.read-more:hover,
.wp-block-button__link:hover {
    background: var(--secondary);
}

/* Botão estilo btn-slide com ícone e span */
.btn-slide {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 0;
}

.btn-slide i,
.btn-slide span {
    position: relative;
    height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 0 35px 35px 0;
    transition: .5s;
    z-index: 2;
}

.btn-slide span {
    padding-left: 0;
    left: -100%;
    z-index: 1;
}

.btn-slide:hover i {
    border-radius: 0;
}

.btn-slide:hover span {
    left: 0;
}

.btn-slide:hover i,
.btn-slide:hover span {
    background: var(--secondary);
}

/* ==================== WIDGETS / SIDEBAR ==================== */
.widget {
    background: #FFFFFF;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, .05);
}

.widget-title {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light);
    position: relative;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: #555;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.widget ul li a::before {
    content: '\f105';  /* fa-angle-right */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    color: var(--primary);
    transition: transform 0.2s ease;
}

.widget ul li a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.widget ul li a:hover::before {
    transform: translateX(4px);
}

/* ==================== PAGINAÇÃO ==================== */
.pagination,
.nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
}

.page-numbers,
.nav-links a,
.nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 12px;
    background: #FFFFFF;
    color: var(--dark);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-numbers:hover,
.nav-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
}

.page-numbers.current,
.nav-links .current {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* ==================== BREADCRUMBS ==================== */
.breadcrumb,
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem 0;
    font-size: 0.875rem;
    color: #777;
}

.breadcrumb a,
.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover,
.breadcrumbs a:hover {
    color: var(--secondary);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    margin: 0 0.5rem;
    color: #ccc;
}

/* ==================== COMENTÁRIOS ==================== */
.comments-area {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--light);
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    background: #FFFFFF;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.comment:hover {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

.comment-author {
    font-weight: 700;
    color: var(--dark);
}

.comment-metadata a {
    color: #999;
    font-size: 0.875rem;
    text-decoration: none;
}

.comment-reply-link {
    color: var(--primary);
    font-size: 0.875rem;
    text-decoration: none;
    font-weight: 600;
}

.comment-reply-link:hover {
    color: var(--secondary);
}

/* ==================== FORMULÁRIOS ==================== */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    height: 55px;  /* Mesma altura do site */
}

.comment-form textarea {
    height: auto;
    min-height: 120px;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.comment-form input[type="submit"] {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.comment-form input[type="submit"]:hover {
    background: var(--secondary);
}

/* ==================== IMAGENS E MEDIA ==================== */
.wp-block-image img,
.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: #777;
    font-style: italic;
    margin-top: 0.5rem;
    text-align: center;
}

/* ==================== TABELAS ==================== */
.entry-content table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 0;
    overflow: hidden;
}

.entry-content table th {
    background: var(--primary);
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
}

.entry-content table td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.entry-content table tr:nth-child(even) {
    background: var(--light);
}

.entry-content table tr:hover {
    background: rgba(255, 62, 65, 0.05);
}

/* ==================== HIGHLIGHTS / DESTAQUE ==================== */
.entry-content mark,
.highlight {
    background: rgba(255, 62, 65, 0.15);
    padding: 2px 6px;
    border-radius: 0;
}

.entry-content code {
    background: var(--light);
    padding: 3px 8px;
    border-radius: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--primary);
}

.entry-content pre {
    background: var(--dark);
    color: #f8f8f2;
    padding: 1.5rem;
    border-radius: 0;
    overflow-x: auto;
    margin: 2rem 0;
}

.entry-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

/* ==================== RESPONSIVIDADE ==================== */
@media (max-width: 768px) {
    h1, .entry-title {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.375rem;
    }

    .entry-content p {
        text-align: left;
    }

    .entry-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .pagination,
    .nav-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    h1, .entry-title {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .widget {
        padding: 1rem;
    }

    .comment {
        padding: 1rem;
    }
}

/* ==================== COMPONENTES ADICIONAIS DO SITE ==================== */

/* Seções centralizadas */
.text-center h1,
.text-center h2,
.text-center h6 {
    text-align: center;
}

.text-center p {
    text-align: center;
}

/* Display classes (page headers) */
.display-3 {
    font-size: 3rem;
    font-weight: 700;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .display-3 {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 1.75rem;
    }
}

/* Ícones grandes com texto (estilo about.php) */
.icon-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.icon-feature i {
    color: var(--primary);
    font-size: 3rem;
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.icon-feature h5 {
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.icon-feature p {
    margin: 0;
    color: #666;
}

/* Feature text sections (d-flex mb-5) */
.entry-content .d-flex {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.entry-content .d-flex i {
    color: var(--primary);
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.entry-content .d-flex h5 {
    margin-bottom: 0.5rem;
}

/* Seção de orçamento/quote */
.quote-section,
.bg-light.p-5 {
    background: var(--light) !important;
    padding: 2rem;
    border-radius: 0;
    margin-bottom: 2rem;
}

.quote-section h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Formulários no estilo do site */
.form-control {
    border: 0;
    border-radius: 0;
    height: 55px;
    padding: 0 1rem;
    background: white;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 62, 65, 0.15);
}

textarea.form-control {
    height: auto;
    min-height: 120px;
    padding: 1rem;
}

/* Botão de formulário width 100% */
.btn.w-100 {
    width: 100%;
    padding: 1rem;
}

/* Contact info com ícone */
.contact-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-feature i {
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-right: 1rem;
}

.contact-feature h6 {
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.contact-feature h5 {
    margin: 0;
    color: var(--primary);
}

/* Seções de conteúdo do blog */
.entry-content .container-fluid,
.entry-content .container {
    margin-bottom: 3rem;
}

.entry-content .py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Listas unstyled com check */
.list-unstyled {
    list-style: none;
    padding: 0;
}

.list-unstyled li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.list-unstyled li i {
    color: var(--success);
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Animated elements */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.slideInDown {
    animation-name: slideInDown;
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* WP Gutenberg blocks compatibility */
.wp-block-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.wp-block-column {
    flex: 1;
    min-width: 300px;
}

/* Call to action sections */
.cta-section {
    background: var(--light);
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Stats/Numbers section */
.stats-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stats-item i {
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stats-item h3 {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stats-item p {
    color: var(--gray);
    margin: 0;
}

/* Overflow hidden para imagens */
.overflow-hidden {
    overflow: hidden;
}

.overflow-hidden img {
    transition: transform 0.5s ease;
}

.overflow-hidden:hover img {
    transform: scale(1.1);
}

/* Position relative para containers */
.position-relative {
    position: relative;
}

/* Spacing utilities */
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* Grid utilities */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.g-4 > * {
    padding: 0.75rem;
}

.g-5 > * {
    padding: 1.5rem;
}

/* Flex utilities */
.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

/* Text utilities */
.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-white {
    color: white !important;
}

.text-dark {
    color: var(--dark) !important;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ==================== BLOG HOME PAGE - CARDS DE ARTIGOS ==================== */
/* Layout profissional - Estilo index.php do projeto principal */

.blog-posts-wrapper {
    width: 100%;
}

/* Card de post individual - Estilo contact-card do index.php */
.blog-post-card {
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 15px rgba(0, 0, 0, .08);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2rem !important;
}

.blog-post-card:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, .15);
    transform: translateY(-3px);
    background: #ffffff;
}

/* Row dentro do card - sem gaps */
.blog-post-card .row {
    margin: 0;
}

.blog-post-card .row > * {
    padding: 0;
}

/* Wrapper da imagem do post */
.post-thumbnail-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 280px;
    background: #e8e8e8;
}

.post-image-link {
    display: block;
    height: 100%;
    overflow: hidden;
}

.post-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-post-card:hover .post-featured-image {
    transform: scale(1.05);
}

/* Badge de categoria sobre a imagem */
.post-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b6e 100%);
    color: #FFFFFF;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(255, 62, 65, 0.3);
}

/* Conteúdo do post */
.post-content-wrapper {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: transparent;
}

/* Meta informações */
.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.8125rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.entry-meta i {
    color: var(--primary);
    font-size: 0.875rem;
}

/* Título do post */
.blog-post-card .entry-title {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #000;
}

.blog-post-card .entry-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-card .entry-title a:hover {
    color: var(--primary);
}

/* Excerpt */
.entry-excerpt {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Botão Read More - Estilo do index.php */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 24px;
    background: var(--primary);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.btn-read-more:hover {
    background: var(--secondary);
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(81, 207, 237, 0.4);
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

/* Paginação moderna */
.blog-pagination {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e8e8e8;
}

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: #f9f9f9;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(255, 62, 65, 0.3);
}

.blog-pagination .page-numbers.dots {
    border: none;
    background: transparent;
    cursor: default;
}

.blog-pagination .page-numbers.dots:hover {
    transform: none;
    box-shadow: none;
}

/* No posts found */
.no-posts-found {
    text-align: center;
    padding: 4rem 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 15px rgba(0, 0, 0, .08);
}

.no-posts-icon {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.no-posts-found h3 {
    font-size: 1.5rem;
    color: #000;
    font-weight: 800;
    margin-bottom: 1rem;
}

.no-posts-found p {
    color: #666;
    font-size: 1rem;
}

/* Responsivo para posts */
@media (max-width: 768px) {
    .post-content-wrapper {
        padding: 1.5rem;
    }
    
    .blog-post-card .entry-title {
        font-size: 1.25rem;
    }
    
    .post-thumbnail-wrapper {
        min-height: 200px;
    }
    
    .entry-meta {
        gap: 0.75rem;
        font-size: 0.8rem;
    }
}


/* ==================== SIDEBAR WIDGETS - APRIMORADOS ==================== */
/* Widget área completa */
.widget-area,
#secondary {
    padding-left: 1.5rem;
}


/* ==================== WORDPRESS GUTENBERG SEARCH BLOCK ==================== */
/* Barra de pesquisa premium otimizada - WordPress Gutenberg Block */

.wp-block-search {
    margin-bottom: 2rem;
    position: relative;
}

/* Label/Título da pesquisa - oculto */
.wp-block-search__label {
    display: none !important;
}

/* Container do input + botão */
.wp-block-search__inside-wrapper {
    display: flex;
    gap: 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    padding: 1.75rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.wp-block-search__inside-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transition: width 0.4s ease;
}

.wp-block-search__inside-wrapper:focus-within::after {
    width: 100%;
}

/* Campo de input com ícone interno */
.wp-block-search__input {
    flex: 1 !important;
    padding: 1rem 1.5rem 1rem 3.25rem !important;
    border: 2px solid #e8e8e8 !important;
    border-right: none !important;
    border-radius: 0 !important;
    font-size: 0.95rem !important;
    font-family: 'Inter', sans-serif !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: #FFFFFF !important;
    color: var(--dark) !important;
    height: 55px !important;
    margin: 0 !important;
}

.wp-block-search__input::placeholder {
    color: #aaa !important;
    font-style: normal !important;
    font-weight: 400 !important;
    transition: color 0.3s ease !important;
}

.wp-block-search__input:focus::placeholder {
    color: #ddd !important;
}

.wp-block-search__input:focus {
    outline: none !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(255, 62, 65, 0.1) !important;
    background: #FFFFFF !important;
    position: relative;
    z-index: 2;
}

/* Ícone de lupa animado */
.wp-block-search__inside-wrapper::before {
    content: '\f002';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 2.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.15rem;
    z-index: 3;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-block-search__inside-wrapper:focus-within::before {
    color: var(--secondary);
    transform: translateY(-50%) scale(1.2) rotate(90deg);
}

/* Botão de pesquisa premium com efeitos */
.wp-block-search__button {
    padding: 0 2.5rem !important;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b6e 100%) !important;
    color: #FFFFFF !important;
    border: 2px solid var(--primary) !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    position: relative !important;
    overflow: hidden !important;
    height: 55px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 140px !important;
    margin: 0 !important;
    box-shadow: 0 4px 15px rgba(255, 62, 65, 0.2) !important;
}

/* Efeito de slide no hover */
.wp-block-search__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, #3bb8d8 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

/* Ícone de seta que aparece no hover */
.wp-block-search__button::after {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.wp-block-search__button:hover::before {
    left: 0;
}

.wp-block-search__button:hover {
    color: #FFFFFF !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(81, 207, 237, 0.35) !important;
    border-color: var(--secondary) !important;
}

.wp-block-search__button:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.wp-block-search__button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 62, 65, 0.25) !important;
}

/* Esconde o SVG padrão do WordPress */
.wp-block-search__button svg {
    display: none !important;
}

/* Texto do botão com z-index para ficar acima do ::before */
.wp-block-search__button span {
    position: relative;
    z-index: 1;
}

/* Responsivo - Mobile First */
@media (max-width: 768px) {
    .wp-block-search__label {
        padding: 1rem 1.25rem;
        font-size: 0.875rem !important;
    }

    .wp-block-search__inside-wrapper {
        padding: 1.25rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .wp-block-search__input {
        border: 2px solid #e8e8e8 !important;
        border-radius: 0 !important;
        padding-left: 3rem !important;
        height: 50px !important;
    }
    
    .wp-block-search__button {
        width: 100% !important;
        justify-content: center;
        min-width: unset !important;
        height: 50px !important;
    }
    
    .wp-block-search__inside-wrapper::before {
        left: 2.25rem;
    }

    .wp-block-search__button::after {
        margin-left: 0.75rem;
    }
}

/* Widget Search Clássico - Fallback (caso ainda exista) */
.widget_search .widget-title {
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b6e 100%);
    color: #FFFFFF;
    margin: 0;
    padding: 1.25rem 1.75rem;
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.widget_search .search-form {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    padding: 1.75rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
}

/* Widget Recent Posts */
.widget_recent_entries ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_recent_entries ul li {
    padding: 0 !important;
    border: none !important;
    margin-bottom: 1.5rem;
}

.widget_recent_entries ul li:last-child {
    margin-bottom: 0;
}

.widget_recent_entries ul li a {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
}

.widget_recent_entries ul li a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.widget_recent_entries ul li a::before {
    display: none;
}

/* Card interno para Recent Posts */
.widget_recent_entries ul li .post-thumbnail {
    width: 100%;
    height: 120px;
    object-fit: cover;
    background: var(--light);
}

.widget_recent_entries ul li span {
    display: block;
    padding: 1rem;
}

.widget_recent_entries ul li .post-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.widget_recent_entries .post-date {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
    padding: 0 1rem 1rem;
}

.widget_recent_entries .post-date::before {
    content: '\f017';
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    margin-right: 0.5rem;
    color: var(--primary);
}

/* Widget Recent Comments - Cards */
.widget_recent_comments ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_recent_comments ul li {
    padding: 0 !important;
    margin-bottom: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.widget_recent_comments ul li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.widget_recent_comments ul li::before {
    content: '\f075';
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    color: var(--secondary);
    padding: 1rem 0 0 1rem;
    display: block;
    font-size: 1.2rem;
}

.widget_recent_comments ul li a {
    display: block;
    padding: 0.5rem 1rem 1rem;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
}

.widget_recent_comments .comment-author-link {
    font-weight: 600;
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
}

.widget_recent_comments a:hover .comment-author-link {
    color: var(--secondary);
}

/* Widget Archives */
.widget_archive ul li,
.widget_categories ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget_archive ul li a,
.widget_categories ul li a {
    flex: 1;
    font-weight: 500;
}

.widget_archive .post-count,
.widget_categories .post-count {
    background: var(--light);
    color: var(--dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Widget Categories */
.widget_categories ul li::before {
    content: '\f07b' !important;  /* fa-folder */
}

.widget_categories ul li a:hover {
    color: var(--secondary) !important;
}

/* Widget Calendar */
.widget_calendar table {
    width: 100%;
    border-collapse: collapse;
}

.widget_calendar caption {
    font-weight: 700;
    padding: 0.5rem;
    background: var(--light);
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget_calendar th,
.widget_calendar td {
    padding: 0.5rem;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.widget_calendar th {
    background: var(--primary);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.85rem;
}

.widget_calendar td a {
    display: block;
    background: var(--primary);
    color: #FFFFFF;
    border-radius: 0;
    transition: all 0.3s ease;
}

.widget_calendar td a:hover {
    background: var(--secondary);
}

/* Widget Tag Cloud */
.widget_tag_cloud .tagcloud a {
    display: inline-block;
    padding: 0.4rem 1rem;
    margin: 0.25rem;
    background: var(--light);
    color: var(--dark);
    font-size: 0.85rem !important;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.widget_tag_cloud .tagcloud a:hover {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
}


/* ==================== WHATSAPP MODAL - FOOTER ==================== */
/* Botão flutuante de suporte */
.suporte-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #ff6b6e);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 62, 65, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.suporte-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 62, 65, 0.6);
    color: #FFFFFF;
}

/* Badge de notificação */
.support-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #25D366;
    border-radius: 50%;
    border: 3px solid #FFFFFF;
}

.support-badge .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}

/* Modal overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

/* Modal content */
.modal-content {
    background: #FFFFFF;
    border-radius: 0;
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botão fechar */
.close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.close-button:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

/* Modal header */
.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.modal-header h4 {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 0;
}

/* Opções do modal */
.modal-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.modal-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 0;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.modal-option:hover {
    background: #FFFFFF;
    border-color: var(--primary);
    transform: translateX(5px);
}

.modal-option i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 30px;
    text-align: center;
}

.modal-option span {
    font-weight: 600;
    font-size: 1rem;
}

/* Divisor */
.modal-divider {
    height: 1px;
    background: #ddd;
    margin: 1.5rem 0;
}

/* Caixa de mensagem customizada */
.custom-message-box label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.custom-message-box textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    resize: vertical;
    transition: all 0.3s ease;
}

.custom-message-box textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 62, 65, 0.15);
}

/* Footer da mensagem */
.message-footer {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.message-footer select {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 0.9rem;
    background: #FFFFFF;
    cursor: pointer;
}

.send-btn {
    padding: 0.75rem 1.5rem;
    background: #25D366;
    color: #FFFFFF;
    border: none;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.send-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.send-btn i {
    font-size: 1rem;
}

/* ==================== TYPED TITLE + SUBTITLE (BANNER) ==================== */
.typed-text-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 150px;
    margin-bottom: 30px;
}

.typed-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    overflow: hidden;
    border-right: 4px solid var(--primary);
    padding-right: 6px;
}

.banner-subtitle {
    font-size: 1rem;
    color: #555;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .typed-text {
        font-size: 1.5rem;
    }
}


/* ==================== BLOG.PHP SPECIFIC STYLES ==================== */
/* Estilos inline do blog.php convertidos para CSS externo */

/* Navbar Custom */
.btn-home {
    background: white;
    color: #FF3E41;
    font-weight: bold;
    border-radius: 5px;
    padding: 5px 15px;
    text-decoration: none;
    margin-left: 20px;
}

.btn-home:hover {
    background: #f1f1f1;
}

/* Blog Section */
.blog-section {
    background: #f9f9f9;
    padding: 40px 0;
    margin-top: -30px;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 15px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.blog-card img:hover {
    transform: scale(1.05);
}

.blog-title {
    color: #00985b;
    font-weight: bold;
    margin-bottom: 15px;
}

.blog-text {
    max-height: 120px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-bottom: 10px;
}

.blog-text.expanded {
    max-height: 1000px;
}

.toggle-btn {
    background: none;
    border: none;
    color: #00985b;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
    align-self: start;
}

.toggle-btn:hover {
    text-decoration: underline;
}

/* Responsivo específico do blog.php */
@media (max-width: 768px) {
    .btn-home {
        margin-left: 0;
        margin-top: 10px;
    }
}


/* ==================== BANNER / PAGE HEADER ==================== */
/* Banner principal do blog - reaproveitado do blog.php */
.page-header {
    position: relative;
    margin-bottom: 3rem !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
    padding: 5rem 0 !important;
}

.page-header h1,
.page-header .display-3 {
    color: #FFFFFF !important;
    font-size: 3rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    text-shadow: none !important;
    font-family: 'Roboto', sans-serif !important;
    line-height: 1.3 !important;
}

.page-header .breadcrumb {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    animation: slideInDown 1s;
}

.page-header .breadcrumb-item {
    font-size: 1rem !important;
}

.page-header .breadcrumb-item a {
    color: #FFFFFF !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.page-header .breadcrumb-item a:hover {
    color: var(--secondary) !important;
}

.page-header .breadcrumb-item.active {
    color: #FFFFFF !important;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    content: "/" !important;
    color: var(--light) !important;
    padding: 0 0.5rem !important;
}

/* Animação slideInDown do banner */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo do banner */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0 !important;
    }
    
    .page-header h1,
    .page-header .display-3 {
        font-size: 2rem !important;
    }
    
    .page-header .breadcrumb-item {
        font-size: 0.875rem !important;
    }
}

/* ==================== BLOG LANDING PAGE STYLES ==================== */

/* Hero Section */
.hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 62, 65, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(81, 207, 237, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary), #ff6b6e);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn-hero-primary {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), #ff6b6e);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 62, 65, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 62, 65, 0.4);
    color: white;
}

.btn-hero-secondary {
    padding: 16px 32px;
    background: white;
    color: var(--dark);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.hero-illustration {
    position: relative;
    animation: fadeIn 1s ease 0.5s backwards;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    font-size: 18px;
    color: var(--primary);
}

.floating-badge.badge-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-badge.badge-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 1s;
}

.floating-badge.badge-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 62, 65, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Featured Post Section */
.featured-post-section {
    padding: 80px 0;
    background: white;
}

.featured-post-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.featured-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.featured-post-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 450px;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post-card:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
}

.featured-post-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta-featured {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.post-meta-featured span {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
}

.post-category {
    background: rgba(255, 62, 65, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
}

.featured-post-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-post-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-post-title a:hover {
    color: var(--primary);
}

.featured-post-excerpt {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.featured-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-info img {
    border-radius: 50%;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 14px;
}

.read-time {
    font-size: 13px;
    color: #999;
}

.btn-read-featured {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary), #ff6b6e);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-read-featured:hover {
    transform: translateX(5px);
    color: white;
}

/* Recent Posts Section */
.recent-posts-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.recent-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.recent-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.recent-post-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recent-post-card:hover .recent-post-image img {
    transform: scale(1.1);
}

.recent-post-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.recent-post-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.recent-post-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #999;
}

.recent-post-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.recent-post-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-title a:hover {
    color: var(--primary);
}

.recent-post-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.btn-read-more-small {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-read-more-small:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.btn-view-all {
    padding: 16px 40px;
    background: white;
    color: var(--dark);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: white;
}

.category-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #ff6b6e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.category-info {
    flex: 1;
}

.category-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.category-count {
    font-size: 14px;
    color: #999;
}

.category-arrow {
    font-size: 18px;
    color: #ccc;
    transition: all 0.3s ease;
}

.category-card:hover .category-arrow {
    color: var(--primary);
    transform: translateX(5px);
}

/* Authority Section */
.authority-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.authority-image {
    position: relative;
}

.authority-image img {
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.authority-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.authority-badge i {
    font-size: 28px;
    color: #FFD700;
}

.authority-badge span {
    font-weight: 700;
    color: var(--dark);
    font-size: 15px;
}

.authority-content {
    padding-left: 40px;
}

.authority-description {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.authority-features {
    margin: 40px 0;
}

.authority-feature {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 62, 65, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-text h6 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.feature-text p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.authority-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    flex: 1;
}

.stat-number-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label-small {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #2c3e50 100%);
}

.newsletter-card {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.newsletter-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #ff6b6e);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 24px;
}

.newsletter-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.newsletter-description {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.newsletter-benefits {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.newsletter-benefits li {
    padding: 10px 0;
    color: #666;
    font-size: 15px;
}

.newsletter-benefits i {
    color: var(--success);
}

.newsletter-form-wrapper {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.form-group-newsletter {
    margin-bottom: 20px;
}

.form-group-newsletter label {
    display: block;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.input-icon input {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.input-icon input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 62, 65, 0.1);
}

.newsletter-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #666;
}

.newsletter-checkbox input {
    margin-top: 2px;
    cursor: pointer;
}

.newsletter-checkbox a {
    color: var(--primary);
    text-decoration: none;
}

.btn-newsletter-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), #ff6b6e);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 62, 65, 0.3);
}

.newsletter-privacy {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 16px;
}

.newsletter-success {
    text-align: center;
    padding: 40px;
}

.newsletter-success i {
    font-size: 60px;
    color: var(--success);
    margin-bottom: 20px;
}

.newsletter-success h4 {
    color: var(--dark);
    margin-bottom: 10px;
}

.newsletter-success p {
    color: #666;
}

/* Blog Footer CTA */
.blog-footer-cta {
    padding: 60px 0;
    background: white;
}

.footer-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.footer-cta-description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 40px;
}

.footer-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-footer-primary {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), #ff6b6e);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-footer-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 62, 65, 0.3);
    color: white;
}

.btn-footer-secondary {
    padding: 16px 32px;
    background: white;
    color: var(--dark);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-footer-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .floating-badge {
        display: none;
    }
    
    .featured-post-image {
        min-height: 300px;
    }
    
    .featured-post-content {
        padding: 30px;
    }
    
    .featured-post-title {
        font-size: 1.75rem;
    }
    
    .authority-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .authority-stats {
        flex-wrap: wrap;
    }
    
    .newsletter-card {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .featured-post-card .row {
        flex-direction: column-reverse;
    }
    
    .featured-post-image {
        min-height: 250px;
    }
    
    .featured-post-content {
        padding: 24px;
    }
    
    .featured-post-title {
        font-size: 1.5rem;
    }
    
    .featured-post-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .recent-post-image {
        height: 180px;
    }
    
    .category-card {
        padding: 20px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .newsletter-card {
        padding: 30px 20px;
    }
    
    .newsletter-title {
        font-size: 1.75rem;
    }
    
    .newsletter-form-wrapper {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .footer-cta-title {
        font-size: 1.75rem;
    }
    
    .footer-cta-description {
        font-size: 1rem;
    }
    
    .footer-cta-buttons {
        flex-direction: column;
    }
    
    .btn-footer-primary,
    .btn-footer-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ====================================
   SINGLE ARTICLE PAGE STYLES
   ==================================== */

/* Article Hero Section */
.article-single {
    background: #fff;
}

.article-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 62, 65, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.article-hero-content {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.article-breadcrumb {
    margin-bottom: 20px;
}

.article-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.article-breadcrumb .breadcrumb-item {
    color: #6c757d;
}

.article-breadcrumb .breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary);
}

.article-breadcrumb .breadcrumb-item.active {
    color: var(--dark);
    font-weight: 500;
}

.article-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
}

/* Category Badge */
.article-category-badge-wrapper {
    margin-bottom: 20px;
}

.article-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff5a5d 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-category-badge i {
    margin-right: 8px;
}

/* Article Title */
.article-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin: 20px 0 30px;
    font-family: 'Roboto', sans-serif;
}

/* Meta Hero Grid */
.article-meta-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.meta-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.meta-item i {
    font-size: 24px;
    color: var(--primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 62, 65, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.meta-text {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.meta-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

/* Featured Image */
.article-featured-image-wrapper {
    margin: 40px 0;
}

.article-featured-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

/* Article Content Section */
.article-content-section {
    padding: 60px 0;
    background: #fff;
}

/* Simple Social Share Inline */
.article-share-simple {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.article-share-simple .share-text {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    margin-right: 8px;
}

.article-share-simple .share-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.article-share-simple .share-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.article-share-simple .share-icon.facebook {
    background: #1877f2;
}

.article-share-simple .share-icon.twitter {
    background: #1da1f2;
}

.article-share-simple .share-icon.linkedin {
    background: #0077b5;
}

.article-share-simple .share-icon.whatsapp {
    background: #25d366;
}

.article-share-simple .share-icon.copy {
    background: #6c757d;
}

/* Article Body */
.article-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 50px;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-body h2 {
    font-size: 2rem;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
}

.article-body h3 {
    font-size: 1.5rem;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-body a:hover {
    color: #ff5a5d;
}

.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body blockquote {
    border-left: 4px solid var(--primary);
    background: #f8f9fa;
    padding: 20px 30px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
    border-radius: 0 8px 8px 0;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-body code {
    background: #f8f9fa;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--primary);
    font-size: 0.9em;
}

.article-body pre {
    background: #282c34;
    color: #abb2bf;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.article-body pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.article-body table th,
.article-body table td {
    padding: 12px;
    border: 1px solid #dee2e6;
    text-align: left;
}

.article-body table th {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
}

.article-body table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Tags Section */
.article-tags {
    margin: 50px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 16px;
}

.tags-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.tags-title i {
    color: var(--primary);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    color: #555;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Author Bio Card */
.author-bio-card {
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.author-bio-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.author-bio-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-bio-info {
    flex: 1;
}

.author-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.author-role {
    font-size: 0.875rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 5px 0 0;
}

.author-bio-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.author-bio-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
}

.stat-item i {
    color: var(--primary);
    font-size: 16px;
}

/* Post Navigation */
.post-navigation {
    margin: 60px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nav-post {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.nav-post:hover {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.nav-post.prev-post {
    text-align: left;
}

.nav-post.next-post {
    text-align: right;
}

.nav-label {
    font-size: 0.875rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.nav-post.next-post .nav-label {
    justify-content: flex-end;
}

.nav-label i {
    color: var(--primary);
}

.nav-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    line-height: 1.4;
}

.nav-post-empty {
    display: none;
}

/* Related Posts Section */
.related-posts-section {
    margin: 60px 0;
    padding: 50px 0;
    border-top: 2px solid #e9ecef;
}

.related-posts-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.related-posts-title i {
    color: var(--primary);
}

.related-post-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.related-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.related-post-image {
    display: block;
    overflow: hidden;
    height: 200px;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.1);
}

.related-post-content {
    padding: 20px;
}

.related-post-date {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 10px;
}

.related-post-date i {
    margin-right: 5px;
}

.related-post-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.related-post-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: var(--primary);
}

/* Comments Section */
.comments-section {
    margin: 60px 0;
    padding: 50px 0;
    border-top: 2px solid #e9ecef;
}

.comments-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.comments-title i {
    color: var(--primary);
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary) 0%, #ff5a5d 100%);
    color: #fff;
    text-align: center;
}

.newsletter-widget-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.newsletter-widget-icon i {
    font-size: 30px;
}

.newsletter-widget .widget-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.newsletter-widget .widget-description {
    font-size: 0.875rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.sidebar-newsletter-form {
    display: flex;
    gap: 10px;
}

.sidebar-newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 50px;
    font-size: 0.875rem;
    outline: none;
}

.sidebar-newsletter-form button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--dark);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.sidebar-newsletter-form button:hover {
    background: #000;
    transform: scale(1.1);
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, #171D37 0%, #2a3252 100%);
    color: #fff;
    text-align: center;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 62, 65, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cta-icon i {
    font-size: 35px;
    color: var(--primary);
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.cta-description {
    font-size: 0.875rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #ff5a5d;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 62, 65, 0.3);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .article-title {
        font-size: 2.25rem;
    }
    
    .article-meta-hero {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-share-sticky {
        left: 10px;
        gap: 8px;
    }
    
    .share-label {
        font-size: 0.65rem;
    }
    
    .share-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .share-btn:active {
        transform: scale(0.95);
    }
    
    .article-sidebar {
        position: static;
        margin-top: 50px;
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
    }
    
    .nav-post.next-post {
        text-align: left;
    }
    
    .nav-post.next-post .nav-label {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .article-hero {
        padding: 40px 0 30px;
    }
    
    .article-title {
        font-size: 1.75rem;
    }
    
    .article-meta-hero {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-body h3 {
        font-size: 1.25rem;
    }
    
    .related-posts-title,
    .comments-title {
        font-size: 1.5rem;
    }
    
    .author-bio-card {
        padding: 25px;
    }
    
    .author-bio-header {
        flex-direction: column;
        text-align: center;
    }
    
    .related-post-image {
        height: 180px;
    }
    
    .social-share-sticky {
        left: 5px;
        top: 50%;
        gap: 6px;
    }
    
    .share-label {
        font-size: 0.6rem;
        padding: 8px 0;
    }
    
    .share-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
        border-radius: 8px;
    }
}

/* ====================================
   RESPONSIVIDADE COMPLETA - LANDING PAGE
   ==================================== */

/* Tablet (991px e abaixo) */
@media (max-width: 991px) {
    /* Hero Section */
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-illustration {
        margin-top: 40px;
    }
    
    .floating-badge {
        width: 100px;
        height: 100px;
        font-size: 0.75rem;
    }
    
    .floating-badge i {
        font-size: 20px;
    }
    
    /* Featured Post */
    .featured-post-card .row {
        flex-direction: column;
    }
    
    .featured-post-image,
    .featured-post-content {
        padding: 0;
    }
    
    .featured-post-image {
        height: 300px;
    }
    
    .featured-post-content {
        padding: 30px 20px;
    }
    
    /* Recent Posts */
    .recent-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Categories */
    .category-card {
        padding: 20px;
    }
    
    /* Authority Section */
    .authority-image {
        margin-bottom: 40px;
    }
    
    .authority-features {
        gap: 20px;
    }
    
    /* Newsletter */
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .newsletter-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Mobile (767px e abaixo) */
@media (max-width: 767px) {
    /* Hero Section */
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.875rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-illustration {
        margin-top: 30px;
    }
    
    .floating-badge {
        width: 80px;
        height: 80px;
        font-size: 0.65rem;
        padding: 8px;
    }
    
    .floating-badge i {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .badge-1 {
        top: -10px;
        right: -10px;
    }
    
    .badge-2 {
        bottom: 30%;
        left: -10px;
    }
    
    .badge-3 {
        bottom: -10px;
        right: 20%;
    }
    
    /* Section Headers */
    .section-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }
    
    .section-description {
        font-size: 0.875rem;
    }
    
    /* Featured Post */
    .featured-post-section {
        padding: 40px 0;
    }
    
    .featured-post-image {
        height: 250px;
    }
    
    .featured-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
    
    .featured-post-content {
        padding: 25px 15px;
    }
    
    .featured-post-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .featured-post-excerpt {
        font-size: 0.875rem;
        margin: 15px 0;
    }
    
    .featured-post-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .meta-item {
        font-size: 0.75rem;
    }
    
    .btn-read-more {
        width: 100%;
        justify-content: center;
        font-size: 0.875rem;
    }
    
    /* Recent Posts */
    .recent-posts-section {
        padding: 40px 0;
    }
    
    .recent-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .post-card-image {
        height: 220px;
    }
    
    .post-card-content {
        padding: 20px 15px;
    }
    
    .post-category {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .post-card-title {
        font-size: 1.125rem;
        margin: 12px 0;
    }
    
    .post-card-excerpt {
        font-size: 0.875rem;
    }
    
    .post-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .post-author {
        font-size: 0.75rem;
    }
    
    .post-date {
        font-size: 0.7rem;
    }
    
    .btn-view-all {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.875rem;
    }
    
    /* Categories */
    .categories-section {
        padding: 40px 0;
    }
    
    .category-card {
        padding: 20px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .category-icon i {
        font-size: 22px;
    }
    
    .category-name {
        font-size: 1rem;
    }
    
    .category-count {
        font-size: 0.75rem;
    }
    
    .category-arrow {
        align-self: flex-end;
        margin-top: -30px;
    }
    
    /* Authority Section */
    .authority-section {
        padding: 40px 0;
    }
    
    .authority-image {
        margin-bottom: 30px;
    }
    
    .authority-badge {
        padding: 12px 20px;
        font-size: 0.75rem;
    }
    
    .authority-badge i {
        font-size: 20px;
    }
    
    .authority-description {
        font-size: 0.875rem;
        margin-bottom: 15px;
    }
    
    .authority-feature {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 22px;
    }
    
    .feature-text h6 {
        font-size: 0.9rem;
    }
    
    .feature-text p {
        font-size: 0.8rem;
    }
    
    .authority-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-box {
        padding: 20px 15px;
    }
    
    .stat-box-number {
        font-size: 1.75rem;
    }
    
    .stat-box-label {
        font-size: 0.8rem;
    }
    
    /* Newsletter Section */
    .newsletter-section {
        padding: 40px 0;
    }
    
    .newsletter-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .newsletter-icon i {
        font-size: 28px;
    }
    
    .newsletter-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }
    
    .newsletter-subtitle {
        font-size: 0.875rem;
        margin-bottom: 25px;
    }
    
    .newsletter-form {
        gap: 10px;
    }
    
    .newsletter-form input {
        padding: 14px 16px;
        font-size: 0.875rem;
    }
    
    .newsletter-form button {
        padding: 14px 20px;
        font-size: 0.875rem;
    }
    
    .newsletter-benefits {
        margin-top: 25px;
    }
    
    .benefit-item {
        font-size: 0.8rem;
        padding: 10px 0;
    }
    
    .benefit-item i {
        font-size: 14px;
    }
    
    .newsletter-privacy {
        font-size: 0.7rem;
        margin-top: 15px;
    }
    
    /* Footer CTA */
    .footer-cta-section {
        padding: 40px 0;
    }
    
    .footer-cta-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .footer-cta-description {
        font-size: 0.875rem;
        margin-bottom: 25px;
    }
    
    .footer-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-footer-primary,
    .btn-footer-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.875rem;
    }
}

/* Mobile Pequeno (480px e abaixo) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .featured-post-title {
        font-size: 1.25rem;
    }
    
    .post-card-title {
        font-size: 1rem;
    }
    
    .floating-badge {
        display: none;
    }
    
    .authority-badge {
        position: static;
        margin-top: 15px;
    }
}

/* Ajustes para orientação paisagem em dispositivos móveis */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        padding: 30px 0;
    }
    
    .hero-illustration {
        display: none;
    }
    
    .featured-post-image {
        height: 200px;
    }
    
    .post-card-image {
        height: 180px;
    }
}

/* Otimizações para telas de alta densidade (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .floating-badge,
    .category-icon,
    .feature-icon,
    .newsletter-icon {
        backface-visibility: hidden;
        -webkit-font-smoothing: antialiased;
    }
}
