/* ========================================
   VOZ SEGURA - Legal Pages (Privacy & Terms)
   ======================================== */

.legal {
    padding: 120px 0 60px;
    min-height: 100vh;
}

.legal__content {
    max-width: 800px;
    margin: 0 auto;
}

.legal__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 8px;
}

.legal__updated {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--color-gray-300);
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal__section {
    margin-bottom: 36px;
}

.legal__section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 14px;
    padding-top: 8px;
}

.legal__section h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-gray-100);
    margin-top: 18px;
    margin-bottom: 10px;
}

.legal__section p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-gray-200);
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal__section strong {
    font-weight: 600;
    color: var(--color-gray-100);
}

.legal__section em {
    font-style: italic;
    color: var(--color-gray-300);
}

.legal__section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 14px;
}

.legal__section ul li {
    position: relative;
    padding-left: 22px;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--color-gray-200);
    line-height: 1.7;
    margin-bottom: 6px;
}

.legal__section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-purple);
    opacity: 0.6;
}

.legal__section a {
    color: var(--color-purple-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.legal__section a:hover {
    color: var(--color-white);
}

.legal__highlight {
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 16px 0;
}

.legal__highlight p {
    color: var(--color-gray-100);
}

.legal__contact {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 12px;
}

.legal__contact p {
    margin-bottom: 6px;
    font-size: 0.88rem;
}

.legal__contact p:last-child {
    margin-bottom: 0;
}

/* ========================================
   FOOTER (legal pages & site-wide)
   ======================================== */

.legal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
}

.legal-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.legal-footer__links {
    display: flex;
    gap: 20px;
}

.legal-footer__links a {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-gray-300);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-footer__links a:hover {
    color: var(--color-purple-light);
}

.legal-footer__copy {
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .legal {
        padding: 100px 0 40px;
    }

    .legal__title {
        font-size: 1.5rem;
    }

    .legal__content {
        padding: 0 4px;
    }

    .legal-footer__inner {
        flex-direction: column;
        text-align: center;
    }
}
