/* ==========================================
   RESET E CONFIGURAÇÕES GERAIS
   ========================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f5f5f5;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ==========================================
   CONTAINER
   ========================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* ==========================================
   HEADER
   ========================================== */

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 1.8rem;
    color: #1e73be;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #333333;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.active {
    color: #1e73be;
    border-bottom-color: #1e73be;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    background: url('https://images.pexels.com/photos/1181467/pexels-photo-1181467.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 115, 190, 0.9) 0%, rgba(13, 90, 158, 0.85) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Hero Search */
.hero-search {
    max-width: 600px;
    margin: 0 auto;
}

.hero-search form {
    display: flex;
    background-color: #ffffff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-search-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.hero-search-input::placeholder {
    color: #999999;
}

.hero-search-button {
    padding: 18px 25px;
    background-color: #1e73be;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.hero-search-button:hover {
    background-color: #0d5a9e;
}

.hero-search-button svg {
    color: #ffffff;
}

/* Page Header (para demais páginas) */
.page-header {
    background: linear-gradient(135deg, #1e73be 0%, #0d5a9e 100%);
    color: #ffffff;
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 25px;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   MAIN CONTENT
   ========================================== */

.main-content {
    padding: 50px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px; /* Reduzido de 40px */
    align-items: start; /* faz com que cada célula tenha a altura do seu conteúdo */
}

/* ==========================================
   POSTS AREA
   ========================================== */

.posts-area {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Posts Grid */
.posts-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Single Post - Post Header Styling */
.single-post .post-header {
    margin-bottom: 30px;
}

.single-post .post-header .post-category {
    display: inline-block;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #1e73be 0%, #0d5a9e 100%);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.single-post .post-header .post-category a {
    color: #ffffff;
}

.single-post .post-header .post-category a:hover {
    color: #ffffff;
    opacity: 0.9;
}

.single-post .post-header .post-title {
    font-size: 2rem;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.single-post .post-header .post-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #888888;
    flex-wrap: wrap;
    align-items: center;
}

/* Estilos antigos removidos - substituídos por badges estilizados */

.single-post .post-header .post-image {
    margin-top: 25px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
}

.single-post .post-header .post-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

/* Responsividade para imagem destacada */
@media (max-width: 768px) {
    .single-post .post-header .post-image img {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .single-post .post-header .post-image img {
        max-height: 200px;
        border-radius: 8px;
    }
}

.post-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.post-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 20px; /* Reduzido de 25px */
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #888888;
    flex-wrap: wrap;
    align-items: center;
}

.post-meta .post-author,
.post-meta .post-date,
.post-meta .post-views {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #f5f5f5;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.post-date {
    color: #888888;
}

.post-category {
    display: inline-block;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #1e73be 0%, #0d5a9e 100%);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.post-category a {
    color: #ffffff;
}

.post-category a:hover {
    color: #ffffff;
    opacity: 0.9;
}

.post-title {
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.post-title a {
    background-image: linear-gradient(#333333, #333333);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    padding-bottom: 2px;
    transition: background-size 0.3s ease;
}

.post-title a:hover {
    background-size: 100% 2px;
    color: #1e73be;
}

.post-card:hover .post-title {
    color: #1e73be;
}

.post-excerpt {
    color: #666666;
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 0.95rem;
    border-left: 3px solid #1e73be;
    padding-left: 15px;
}

.post-content .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1e73be;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.post-content .read-more:hover {
    color: #0d5a9e;
    gap: 12px;
}

.post-content .read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.post-content .read-more:hover::after {
    transform: translateX(4px);
}

/* ==========================================
   SIDEBAR
   ========================================== */

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Reduzido de 30px */
}

.widget {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px; /* Reduzido de 25px */
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 1.2rem;
    color: #333333;
    margin-bottom: 18px; /* Reduzido de 20px */
    font-weight: 700;
    padding-bottom: 10px; /* Reduzido de 12px */
    border-bottom: 2px solid #1e73be;
}

/* Search Widget */
.search-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #1e73be;
}

.search-button {
    padding: 12px;
    background-color: #1e73be;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #0d5a9e;
}

/* Categories Widget */
.categories-list li {
    border-bottom: 1px solid #f0f0f0;
}

.categories-list li:last-child {
    border-bottom: none;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    padding: 10px 0; /* Reduzido de 12px */
    color: #333333;
    transition: color 0.3s ease;
}

.categories-list a:hover {
    color: #1e73be;
}

.categories-list .count {
    color: #999999;
    font-size: 0.9rem;
}

/* Recent Posts Widget */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Reduzido de 15px */
}

.recent-post-item {
    display: flex;
    gap: 10px; /* Reduzido de 12px */
}

.recent-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px; /* Reduzido de 5px */
}

.recent-post-content a {
    color: #333333;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.recent-post-content a:hover {
    color: #1e73be;
}

.recent-post-date {
    color: #999999;
    font-size: 0.8rem;
}

/* Ad Widget */
.ad-space {
    display: flex;
    justify-content: center;
}

.ad-placeholder {
    width: 300px;
    height: 250px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 2px dashed #cccccc;
}

.ad-placeholder p {
    color: #999999;
    font-weight: 600;
    text-align: center;
    line-height: 1.8;
}

/* Tags Widget */
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* Reduzido de 10px */
}

.tag-link {
    display: inline-block;
    padding: 6px 12px; /* Reduzido de 8px 15px */
    background-color: #f0f0f0;
    color: #333333;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background-color: #1e73be;
    color: #ffffff;
}

/* Search Results Grid - 2 columns */
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* Reduzido de 30px */
}

/* Garante que os cards no grid usem flex column e altura total */
.search-results-grid .post-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* já é implícito, mas reforça */
}


.search-results-grid .post-image {
    height: 160px; /* Reduzido de 180px */
}

/* O conteúdo deve ocupar toda a altura e também ser flex column */
.search-results-grid .post-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* expande para ocupar a altura total do card */
    padding: 20px; /* mantenha o padding desejado */
}


/* O resumo (excerpt) cresce para ocupar o espaço vazio */
.search-results-grid .post-excerpt {
    flex-grow: 1; /* faz o resumo expandir */
    margin-bottom: 15px; /* espaço antes do botão (ajustável) */
}

/* Remove qualquer margin ou padding extra que possa atrapalhar */
.search-results-grid .post-content > *:last-child {
    margin-bottom: 0; /* garante que o último elemento (botão) não tenha margem inferior */
}

.search-results-grid .btn-read-more {
    display: inline-block;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

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

.contact-form .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333333;
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #1e73be;
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.contact-form .form-actions {
    text-align: center;
    margin-top: 25px;
}

.contact-form .btn-submit {
    background-color: #1e73be;
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .btn-submit:hover {
    background-color: #0d5a9e;
}

/* Botão com ícone */
.btn.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #1e73be;
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn.btn-primary:hover {
    background-color: #0d5a9e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 115, 190, 0.4);
}

.btn.btn-primary svg {
    flex-shrink: 0;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-item h3 {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-info-item p {
    color: #666666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.contact-info-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.contact-info-text strong {
    display: block;
    color: #333333;
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-text p {
    color: #666666;
    font-size: 0.95rem;
    margin: 0;
}

/* Redes Sociais na página de contato */
.contact-info .social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.contact-info .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    color: #333333;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-info .social-link:hover {
    background-color: #1e73be;
    color: #ffffff;
    transform: translateY(-3px);
}

.contact-info .social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.contact-info .social-link:hover svg {
    transform: scale(1.1);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background-color: #333333;
    color: #ffffff;
    padding: 40px 0 20px; /* Reduzido padding-top de 50px para 40px */
    margin-top: 30px; /* Reduzido de 50px */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px; /* Reduzido de 40px */
    margin-bottom: 30px; /* Reduzido de 40px */
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 15px; /* Reduzido de 20px */
    color: #ffffff;
    font-weight: 700;
}

.footer-column p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 8px; /* Reduzido de 10px */
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Reduzido de 10px */
}

.footer-links a {
    color: #cccccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1e73be;
}

/* Footer Logo */
.footer-logo {
    text-align: left;
}

.footer-logo-img {
    margin-bottom: 15px;
}

.footer-logo-img svg {
    display: block;
}

.footer-bottom {
    border-top: 1px solid #555555;
    padding-top: 18px; /* Reduzido de 20px */
    text-align: center;
}

.footer-bottom p {
    color: #999999;
    font-size: 0.85rem;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 12px; /* Reduzido de 15px */
    margin-top: 12px; /* Reduzido de 15px */
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; /* Reduzido de 40px */
    height: 36px; /* Reduzido de 40px */
    background-color: #1e73be;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.2rem; /* Reduzido de 1.3rem */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background-color: #0d5a9e;
    transform: scale(1.1);
}

.social-links a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ==========================================
   SINGLE POST PAGE
   ========================================== */

.post-single-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px; /* Reduzido de 40px */
}

.post-single-content {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.single-post-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.single-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post-body {
    padding: 40px; /* Reduzido de 50px */
}

.single-post-meta {
    display: flex;
    gap: 18px; /* Reduzido de 20px */
    margin-bottom: 20px; /* Reduzido de 25px */
    padding-bottom: 18px; /* Reduzido de 20px */
    border-bottom: 2px solid #f0f0f0;
}

.single-post-date,
.single-post-author,
.single-post-category {
    display: flex;
    flex-direction: column;
    gap: 4px; /* Reduzido de 5px */
}

.single-post-date span,
.single-post-author span,
.single-post-category span {
    font-size: 0.8rem; /* Reduzido de 0.85rem */
    color: #999999;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.single-post-date strong,
.single-post-author strong,
.single-post-category strong {
    color: #333333;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: normal;
}

.single-post-title {
    font-size: 2.2rem;
    color: #333333;
    margin-bottom: 25px; /* Reduzido de 30px */
    font-weight: 700;
    line-height: 1.3;
}

.single-post-excerpt {
    font-size: 1.1rem;
    color: #666666;
    font-style: italic;
    margin-bottom: 25px; /* Reduzido de 30px */
    padding: 18px; /* Reduzido de 20px */
    background-color: #f9f9f9;
    border-left: 4px solid #1e73be;
}

.single-post-text {
    color: #555555;
    line-height: 1.8;
    margin-bottom: 25px; /* Reduzido de 30px */
}

.single-post-text p {
    margin-bottom: 18px; /* Reduzido de 20px */
}

.single-post-text h3 {
    font-size: 1.5rem;
    color: #333333;
    margin: 25px 0 12px; /* Reduzido de 30px 0 15px */
    font-weight: 700;
}

.single-post-text ul {
    margin-left: 18px; /* Reduzido de 20px */
    margin-bottom: 18px; /* Reduzido de 20px */
    list-style: disc;
}

.single-post-text li {
    margin-bottom: 8px; /* Reduzido de 10px */
    color: #555555;
}

.post-navigation {
    display: flex;
    gap: 18px; /* Reduzido de 20px */
    margin-top: 35px; /* Reduzido de 40px */
    padding-top: 25px; /* Reduzido de 30px */
    border-top: 2px solid #f0f0f0;
}

.post-nav-item {
    flex: 1;
    padding: 12px; /* Reduzido de 15px */
    background-color: #f9f9f9;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.post-nav-item:hover {
    background-color: #f0f0f0;
}

.post-nav-label {
    font-size: 0.8rem; /* Reduzido de 0.85rem */
    color: #999999;
    text-transform: uppercase;
    font-weight: 600;
}

.post-nav-title {
    color: #1e73be;
    font-weight: 600;
    margin-top: 4px; /* Reduzido de 5px */
}

.post-nav-item.next {
    text-align: right;
}

/* ==========================================
   COMMENTS SECTION
   ========================================== */

.comments-section {
    margin-top: 40px; /* Reduzido de 50px */
}

.comments-title {
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 25px; /* Reduzido de 30px */
    font-weight: 700;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Reduzido de 25px */
    margin-bottom: 35px; /* Reduzido de 40px */
}

.comment-item {
    padding: 18px; /* Reduzido de 20px */
    background-color: #f9f9f9;
    border-radius: 5px;
    border-left: 4px solid #1e73be;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 10px; /* Reduzido de 12px */
    margin-bottom: 10px; /* Reduzido de 12px */
}

.comment-avatar {
    width: 36px; /* Reduzido de 40px */
    height: 36px; /* Reduzido de 40px */
    border-radius: 50%;
    background: linear-gradient(135deg, #1e73be 0%, #0d5a9e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem; /* Reduzido de 1.2rem */
}

.comment-name {
    font-weight: 600;
    color: #333333;
}

.comment-date {
    color: #999999;
    font-size: 0.8rem; /* Reduzido de 0.85rem */
    margin-left: auto;
}

.comment-text {
    color: #555555;
    line-height: 1.7;
}

/* Comment Website Link */
.comment-website {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eeeeee;
}

.comment-website-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #888888;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.comment-website-link:hover {
    color: #1e73be;
}

.comment-website-link svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.comment-website-link:hover svg {
    opacity: 1;
}

.comment-reply-link {
    display: inline-block;
    margin-top: 8px; /* Reduzido de 10px */
    color: #1e73be;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

.comment-reply-link:hover {
    color: #0d5a9e;
}

/* Comment Form */
.comment-form-section {
    background-color: #ffffff;
    padding: 25px; /* Reduzido de 30px */
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.comment-form-title {
    font-size: 1.3rem;
    color: #333333;
    margin-bottom: 18px; /* Reduzido de 20px */
    font-weight: 700;
}

.form-group {
    margin-bottom: 18px; /* Reduzido de 20px */
}

.form-group label {
    display: block;
    margin-bottom: 6px; /* Reduzido de 8px */
    color: #333333;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px; /* Reduzido de 12px */
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e73be;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px; /* Reduzido de 150px */
}

.form-group .field-hint {
    display: block;
    font-size: 0.8rem;
    color: #888888;
    margin-top: 5px;
    font-style: italic;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px; /* Reduzido de 20px */
}

.btn-submit {
    background-color: #1e73be;
    color: #ffffff;
    padding: 12px 35px; /* Reduzido padding vertical de 14px para 12px */
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #0d5a9e;
}

/* ==========================================
   RESPONSIVIDADE
   ========================================== */

/* Tablets */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: 2;
    }

    .posts-area {
        order: 1;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px; /* Reduzido de 30px */
    }

    .post-single-wrapper {
        grid-template-columns: 1fr;
    }

    .single-post-body {
        padding: 25px; /* Reduzido de 30px */
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-search form {
        flex-direction: column;
        border-radius: 10px;
    }

    .hero-search-input {
        padding: 15px 20px;
    }

    .hero-search-button {
        padding: 15px;
    }

    /* Page Header responsivo */
    .page-header {
        padding: 60px 20px;
    }

    .page-header h2 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .post-image {
        height: 200px; /* Reduzido de 220px */
    }

    .post-title {
        font-size: 1.3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px; /* Reduzido de 30px */
    }

    .ad-placeholder {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .nav ul {
        gap: 10px;
    }

    .nav a {
        font-size: 0.85rem;
    }

    .hero {
        padding: 30px 20px; /* Reduzido de 40px */
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    /* Page Header mobile pequeno */
    .page-header {
        padding: 30px 20px;
    }

    .page-header h2 {
        font-size: 1.6rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .post-content {
        padding: 18px; /* Reduzido de 20px */
    }

    .post-title {
        font-size: 1.2rem;
    }

    .widget {
        padding: 18px; /* Reduzido de 20px */
    }

    /* Search Results Grid - 2 columns responsive */
    .search-results-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   POST NAVIGATION CONTAINER
   ========================================== */

.post-nav-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Botão Voltar para Home */
.post-nav-back {
    margin-bottom: 20px;
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    min-height: 48px;
}

.back-to-home:hover {
    background: linear-gradient(135deg, #5a6268 0%, #343a40 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-home .back-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-home .back-icon svg {
    color: #ffffff;
}

/* Container dos botões Anterior/Próximo */
.post-nav-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}

.post-nav-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #1e73be 0%, #0d5a9e 100%);
    color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 115, 190, 0.3);
    min-height: 80px;
    min-width: 48px;
}

.post-nav-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 115, 190, 0.4);
    background: linear-gradient(135deg, #0d5a9e 0%, #0a4680 100%);
}

.post-nav-item.prev {
    justify-content: flex-start;
}

.post-nav-item.next {
    justify-content: flex-end;
    text-align: right;
}

.post-nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.post-nav-arrow svg {
    color: #ffffff;
}

.post-nav-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    overflow: hidden;
    flex: 1;
}

.post-nav-item .post-nav-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.post-nav-item .post-nav-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsividade */
@media (max-width: 768px) {
    .post-nav-container {
        flex-direction: column;
    }

    .post-nav-item {
        max-width: 100%;
    }

    .post-nav-item.prev,
    .post-nav-item.next {
        justify-content: space-between;
    }

    .back-to-home {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .post-nav-item {
        padding: 16px 20px;
        gap: 12px;
    }

    .post-nav-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .post-nav-item .post-nav-title {
        font-size: 0.9rem;
    }

    .back-to-home {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* ==========================================
   POST SHARE (Compartilhamento)
   ========================================== */

.post-share {
    margin-top: 40px;
    padding-top: 35px;
    border-top: 2px solid #f0f0f0;
}

.share-label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn svg {
    flex-shrink: 0;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5dc9 100%);
}

.share-facebook:hover {
    background: linear-gradient(135deg, #0d5dc9 0%, #0a4ba8 100%);
}

.share-twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.share-twitter:hover {
    background: linear-gradient(135deg, #0d8bd9 0%, #0a6fad 100%);
}

.share-linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
}

.share-linkedin:hover {
    background: linear-gradient(135deg, #005885 0%, #003d5c 100%);
}

.share-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%) !important;
}

.share-whatsapp:hover {
    background: linear-gradient(135deg, #1da851 0%, #157a3e 100%) !important;
}

.share-email {
    background: linear-gradient(135deg, #ea4335 0%, #c5221f 100%);
}

.share-email:hover {
    background: linear-gradient(135deg, #c5221f 0%, #a31b17 100%);
}

/* Responsividade para share buttons */
@media (max-width: 480px) {
    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

.form-messages {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.form-messages.success {
    display: block;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-messages.error {
    display: block;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.form-messages ul {
    margin: 0;
    padding-left: 20px;
}

.form-messages li {
    margin-bottom: 5px;
}

/* Comment Form Info */
.comment-form-info {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-style: italic;
}

/* No Comments Message */
.no-comments {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    color: #666666;
    margin-bottom: 30px;
}

/* Loading state for button */
.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.post-video {
    margin: 30px 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 800px; /* Aumentado para vídeos maiores */
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Post Navigation */
@media (max-width: 768px) {
    .post-nav-container {
        flex-direction: column;
    }

    .post-nav-item.prev,
    .post-nav-item.next {
        align-items: stretch;
        text-align: left;
    }

    .post-nav-item.next {
        text-align: left;
    }
}

/* ==========================================
   METADATA BADGES E CHIPS ESTILIZADOS
   ========================================== */

.single-post .post-header .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    align-items: stretch;
}

/* Badge Base */
.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.meta-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.meta-icon {
    flex-shrink: 0;
    opacity: 0.7;
}

.meta-label {
    color: #6c757d;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    color: #333333;
    font-weight: 600;
}

/* Badge Autor */
.meta-author {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-color: #90caf9;
}

.meta-author .meta-icon {
    color: #1e88e5;
}

.meta-author .author-name {
    color: #1565c0;
    font-weight: 700;
}

.meta-author .author-role {
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
    color: white;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Badge Data */
.meta-date {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-color: #ffcc80;
}

.meta-date .meta-icon {
    color: #fb8c00;
}

.meta-date .meta-value {
    color: #e65100;
}

/* Badge Visualizações */
.meta-views {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-color: #a5d6a7;
}

.meta-views .meta-icon {
    color: #43a047;
}

.meta-views .meta-value {
    color: #2e7d32;
    font-weight: 700;
}

/* Post Tags Container */
.post-tags-container {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.post-tags .tags-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #6c757d;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-tags .tags-label svg {
    color: #6c757d;
}

/* Tag Chips */
.tag-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.tag-chip:hover {
    background: linear-gradient(135deg, #1e73be 0%, #0d5a9e 100%);
    color: #ffffff;
    border-color: #1e73be;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 115, 190, 0.3);
}

/* ==========================================
   SHARE BUTTONS MELHORADOS
   ========================================== */

.post-share .share-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-share .share-label svg {
    color: #1e73be;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
}

.share-btn svg {
    flex-shrink: 0;
}

.share-btn-text {
    display: inline;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   MOBILE SHARE BAR
   ========================================== */

.mobile-share-bar {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}

.mobile-share-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #1e73be 0%, #0d5a9e 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(30, 115, 190, 0.5);
    transition: all 0.3s ease;
    min-height: 56px;
}

.mobile-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(30, 115, 190, 0.6);
}

.mobile-share-btn:active {
    transform: translateY(0);
}

/* ==========================================
   MOBILE SHARE MODAL
   ========================================== */

.share-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    align-items: flex-end;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.share-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.share-modal-content {
    background: #ffffff;
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 500px;
    padding: 25px;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.share-modal-header span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333333;
}

.share-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.share-modal-close:hover {
    background: #f8f9fa;
}

.share-modal-close svg {
    color: #6c757d;
}

.share-modal-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.share-modal-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.8rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 80px;
}

.share-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-modal-btn svg {
    flex-shrink: 0;
}

.share-copy {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100());
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.share-copy:hover {
    background: linear-gradient(135deg, #5a6268 0%, #343a40 100%);
}

.share-copy.copied {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%) !important;
}

/* ==========================================
   MOBILE NAV SHARE BUTTON
   ========================================== */

.mobile-nav-share {
    display: none;
    margin-bottom: 15px;
}

.mobile-share-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #1e73be 0%, #0d5a9e 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(30, 115, 190, 0.3);
    transition: all 0.3s ease;
    min-height: 52px;
}

.mobile-share-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 115, 190, 0.4);
}

.mobile-share-trigger svg {
    flex-shrink: 0;
}

/* ==========================================
   MOBILE BOTTOM NAVIGATION BAR
   ========================================== */

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 8px 10px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0));
}

.mobile-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 10px;
    color: #6c757d;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    min-width: 56px;
    min-height: 48px;
}

.mobile-bottom-nav-item:hover,
.mobile-bottom-nav-item:active {
    color: #1e73be;
    background: #f8f9fa;
}

.mobile-bottom-nav-item svg {
    flex-shrink: 0;
}

.mobile-bottom-share-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.mobile-bottom-share-btn:active {
    color: #0d5a9e;
    background: #e3f2fd;
}

/* ====================================
   BANNERS - PUBLICIDADE
   ==================================== */
.banner-container {
    text-align: center;
    margin: 10px 0;
    padding: 10px 0;
}

.banner img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.banner-top-container {
    padding: 20px 0;
}

.banner-top img {
    max-height: 90px;
    width: auto;
}

.banner-sidebar-container {
    margin: 0;
    padding: 0;
}

.banner-sidebar img {
    max-width: 100%;
    width: 300px;
    height: auto;
}

.banner-bottom-container {
    padding: 20px 0;
}

.banner-bottom img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
}

.banner-home-top-container {
    padding: 20px 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
}

.banner-home-top img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
}

.banner-home-bottom-container {
    padding: 20px 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 10px;
}

.banner-home-bottom img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
}

@media (max-width: 768px) {
    .banner-top img,
    .banner-bottom img,
    .banner-home-top img,
    .banner-home-bottom img {
        max-height: 60px;
    }
    
    .banner-sidebar img {
        width: 100%;
        max-width: 300px;
    }
}

/* ==========================================
   RESPONSIVIDADE MOBILE
   ========================================== */

@media (max-width: 768px) {
    /* Mostrar elementos mobile */
    .mobile-share-bar,
    .mobile-nav-share,
    .mobile-bottom-nav {
        display: flex;
    }
    
    /* Ajustar padding do conteúdo para a bottom nav */
    .single-post {
        padding-bottom: 80px;
    }
    
    /* Ajustar metadados para mobile */
    .single-post .post-header .post-meta {
        gap: 8px;
    }
    
    .meta-badge {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .meta-badge .author-role {
        display: none;
    }
    
    /* Ajustar título do post para mobile */
    .single-post .post-header .post-title {
        font-size: 1.5rem;
    }
    
    /* Ajustar share buttons para mobile */
    .share-buttons {
        display: none;
    }
    
    .post-share .share-label {
        display: none;
    }
    
    /* Ajustar post navigation para mobile */
    .post-nav-container {
        gap: 12px;
    }
    
    .post-nav-item {
        padding: 16px 20px;
        min-height: 72px;
    }
    
    .post-nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .post-nav-item .post-nav-title {
        font-size: 0.9rem;
    }
    
    .back-to-home {
        width: 100%;
        justify-content: center;
    }
    
    /* Tags no mobile */
    .tag-chip {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .mobile-bottom-nav {
        justify-content: space-between;
    }
    
    .mobile-bottom-nav-item {
        padding: 6px 8px;
        min-width: 48px;
    }
    
    .mobile-bottom-nav-item span {
        font-size: 0.6rem;
    }
    
    .share-modal-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .meta-badge {
        padding: 5px 8px;
        font-size: 0.7rem;
    }
    
    .meta-badge .meta-label {
        display: none;
    }
    
    /* Título do post responsivo */
    .single-post .post-header .post-title {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    
    /* Categoria responsiva */
    .single-post .post-header .post-category {
        font-size: 0.65rem;
        padding: 5px 10px;
    }
    
    /* Post body responsivo */
    .post-body {
        padding: 0 15px;
    }
    
    .post-body img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
    
    /* Video container responsivo */
    .post-video {
        margin: 20px -15px;
    }
    
    .video-container {
        border-radius: 0;
    }
    
    /* Share modal mais adaptável */
    .share-modal-content {
        padding: 20px 15px;
        border-radius: 15px 15px 0 0;
    }
    
    .share-modal-btn {
        padding: 12px 8px;
        min-height: 70px;
        font-size: 0.7rem;
    }
    
    /* Comment form responsivo */
    .comment-form-section {
        padding: 15px;
    }
    
    .comment-form-section .form-row {
        gap: 12px;
    }
}