/* ====================================== */
/* CSS COMPARTILHADO PARA PÁGINAS INTERNAS */
/* ====================================== */

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px 40px;
    line-height: 1.6;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #0b6b4c 0%, #065a3f 100%);
    color: white;
    border-radius: 12px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0b6b4c;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    padding: 10px 16px;
    border: 2px solid #0b6b4c;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #0b6b4c;
    color: white;
}

.toc {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.toc h3 {
    margin-top: 0;
    color: #111827;
}

.toc ul {
    column-count: 2;
    column-gap: 20px;
    margin: 0;
    padding-left: 20px;
}

@media (max-width: 640px) {
    .toc ul {
        column-count: 1;
    }
}

.content-section {
    margin: 40px 0;
    padding: 24px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.content-section h3 {
    color: #0b6b4c;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.cta-section {
    text-align: center;
    margin: 50px 0;
    padding: 40px 20px;
    background: linear-gradient(135deg, #0b6b4c 0%, #065a3f 100%);
    border-radius: 12px;
    color: white;
}

.cta-btn {
    display: inline-block;
    padding: 16px 32px;
    background: white;
    color: #0b6b4c;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.legal-note {
    background: #fef3cd;
    border: 1px solid #facc15;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
    font-size: 0.9rem;
}

.cross-links {
    background: #f3f4f6;
    border-radius: 8px;
    padding: 16px;
    margin: 30px 0;
    text-align: center;
}

.cross-links a {
    color: #0b6b4c;
    text-decoration: none;
    font-weight: 600;
    margin: 0 8px;
}

.cross-links a:hover {
    text-decoration: underline;
}
