/* CORREÇÕES DE LAYOUT - VERSÃO OTIMIZADA - 22/11/2025 */

/* Reset básico */
* {
    box-sizing: border-box;
}

body, html {
    display: block;
    visibility: visible;
    opacity: 1;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Container principal */
.container, 
.main-container,
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Conteúdo principal */
.post-content, 
.verse-content, 
.chapter-content,
article {
    display: block;
    visibility: visible;
    opacity: 1;
    height: auto;
}

/* Header e Logo */
.header-logo,
.site-logo {
    max-width: 300px;
    height: auto;
}

/* Links */
a {
    color: #3b82f6;
    text-decoration: none;
}

a:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Esconder contadores específicos */
.post-counter,
.chapter-counter, 
.revelation-counter,
.counter-text,
.post-count {
    display: none;
}

/* Responsivo */
@media (max-width: 768px) {
    .container {
        padding: 0.5rem;
    }
    
    .header-logo {
        max-width: 200px;
    }
}