/* =============================================
   legal.css — Páginas institucionais/legais
   Lovintence
   ============================================= */

body.legal-page {
    background: #f8ebf1;
    min-height: 100vh;
}

/* Header */
.legal-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.legal-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.legal-logo img {
    height: 52px;
    width: auto;
}

.legal-back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.legal-back-link:hover {
    color: var(--site-primary, #008000);
}

/* Main */
.legal-main {
    padding: 40px 0 60px;
}

.legal-container {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

@media (max-width: 600px) {
    .legal-container {
        padding: 24px;
    }
}

.legal-title {
    font-size: 1.8rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 0.82rem;
    color: #999;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.legal-content h2 {
    font-size: 1.15rem;
    color: #333;
    margin: 32px 0 12px;
    font-weight: 700;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1rem;
    color: #444;
    margin: 20px 0 8px;
    font-weight: 600;
}

.legal-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-content ul {
    margin: 0 0 16px 20px;
    padding: 0;
}

.legal-content li {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content strong {
    color: #333;
}

.legal-content a {
    color: var(--site-primary, #008000);
    text-decoration: underline;
}

/* Caixa de destaque */
.legal-highlight {
    background: #f0fdf4;
    border-left: 4px solid var(--site-primary, #008000);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
}

.legal-highlight p {
    margin-bottom: 0;
    color: #166534;
}

/* Caixa de atenção */
.legal-note {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
}

.legal-note p {
    margin-bottom: 0;
    color: #92400e;
    font-size: 0.9rem;
}

/* Contato no rodapé da página */
.legal-contact {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #eee;
    text-align: center;
}

.legal-contact p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 16px;
}

.legal-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: opacity 0.2s;
}

.legal-whatsapp-btn:hover {
    opacity: 0.9;
}

.legal-whatsapp-btn img {
    width: 22px;
    height: 22px;
}