/* ===== Página legal estilo minimalista premium ===== */

.legal-clean {
    padding-top: 120px; /* evita que el header tape el título */
}

.legal-clean {
    background: #f3f3f3;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.legal-container {
    background: #ffffff;
    max-width: 900px;
    width: 100%;
    padding: 70px 80px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
    border-radius: 6px;
}

/* ===== TITULO PRINCIPAL LEGAL ===== */

.legal-title {
    font-size: 48px;
    font-weight: 700;
    color: #6A0DAD; /* morado ESCOLI */
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

/* Línea debajo del título */
.legal-title::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    margin: 15px auto 0;
    border-radius: 4px;
    background: linear-gradient(90deg, #ff512f, #f09819);
}

.legal-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 60px;
    font-size: 14px;
}

.legal-content h2 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
}

.legal-content a {
    color: #6d28d9;
    text-decoration: underline;
}

@media (max-width: 768px) {

    main {
        padding-top: 90px;
    }

    .legal-container {
        padding: 40px 25px;
    }

    .legal-title {
        font-size: 40px;
    }

}