/* Acervo O Popular do Parana - Estilos publicos */
:root {
    --color-text: #333;
    --color-muted: #666;
    --color-border: #ccc;
    --color-bg: #fff;
    --color-accent: #1a1a1a;
    --container-max: 1200px;
}

* { box-sizing: border-box; }
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.5;
}
a { color: inherit; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

.site-content { width: 100%; }

.first-header { width: 100%; background: #fff; padding: 1.5rem 0; border-bottom: 1px solid var(--color-border); }
.first-header .header-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.first-header .custom-logo { max-height: 60px; width: auto; }

.secondary-header { width: 100%; background: #fff; padding: 1rem 0; border-bottom: 1px solid var(--color-border); }
.secondary-header .header-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-toggle, .login-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--color-text);
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
}
.menu-toggle i, .login-button i { font-size: 1.2em; }
.site-title { font-size: 1em; font-weight: 400; color: var(--color-text); margin: 0; text-align: center; }
.site-title strong { font-weight: 600; }

@media (max-width: 768px) {
    .first-header .custom-logo { max-height: 50px; }
    .site-title { font-size: 0.85em; }
    .site-title strong { display: block; margin-bottom: 0.2rem; }
    .menu-toggle span, .login-button span { font-size: 0.9em; }
}

/* Off-canvas menu */
.off-canvas-menu {
    position: fixed; top: 0; left: -300px;
    width: 300px; height: 100vh;
    background: #fff; z-index: 9999;
    transition: left .3s ease;
    box-shadow: 2px 0 5px rgba(0,0,0,.1);
}
.off-canvas-menu.active { left: 0; }
.menu-header {
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-title { margin: 0; font-size: 1em; font-weight: 500; }
.close-menu { background: none; border: none; padding: 0; cursor: pointer; color: var(--color-text); font-size: 1.2em; }
.menu-content { padding: 1rem; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li { margin-bottom: 1.5rem; }
.menu-list a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: .8rem;
    font-weight: 500;
}
.menu-list a i { width: 20px; text-align: center; font-size: 1.1em; }
.menu-overlay {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,.5); z-index: 9998;
}
.menu-overlay.active { display: block; }

/* Footer */
.footer-info { border-bottom: 1px solid var(--color-border); padding: 2rem 0; background: #fff; }
.footer-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding: 0 1rem;
}
@media (max-width: 992px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-column h3 { font-size: 1em; font-weight: 600; margin-bottom: 1rem; color: var(--color-text); }
.footer-column p, .footer-column a { font-size: 0.9em; color: var(--color-muted); line-height: 1.6; text-decoration: none; }
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column ul li { margin-bottom: 0.5rem; }
.footer-column ul li a { color: var(--color-muted); text-decoration: none; transition: color 0.2s ease; }
.footer-column ul li a:hover { color: var(--color-text); }
.footer-logo img { max-width: 200px; height: auto; filter: grayscale(100%); margin-bottom: 1rem; }
.whatsapp-btn, .saiba-mais {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: var(--color-muted);
    text-decoration: none;
    transition: all 0.2s ease;
}
.saiba-mais { font-size: 0.9em; margin: 1rem 0 2rem; }
.whatsapp-btn:hover, .saiba-mais:hover { background: #f5f5f5; color: var(--color-text); }
.social-icons { display: flex; gap: 1rem; margin-top: 1rem; }
.social-icons a { color: var(--color-muted); font-size: 1.2em; transition: color 0.2s ease; }
.social-icons a:hover { color: var(--color-text); }
.copyright { font-size: 0.7em; text-align: center; padding: 1rem; line-height: 1.4; color: var(--color-muted); }
