﻿/* ==========================================================================
   LEGAL / POLÍTICA DE PRIVACIDAD
   ========================================================================== */

.seccion_base {
    background: var(--standar-bg);
}

.privacy__policy--section {
    padding-top: 4rem;
}


/* ==========================================================================
   LEGAL - CONTENEDOR
   ========================================================================== */

.legal-content {
    max-width: 1100px;
    margin: 0 auto 5.5rem;
    padding: 2.3rem 3.5rem;
    overflow: hidden;
    color: var(--color-text);
    background: var(--standar-white);
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), 0 8px 18px rgba(0, 0, 0, 0.04);
    font-size: 1.5rem;
    line-height: 1.8;
}

.legal-header {
    margin-bottom: 3rem;
}


/* ==========================================================================
   LEGAL - TÍTULOS
   ========================================================================== */

.legal-content h1 {
    margin: 0;
    padding-bottom: 0;
    color: #333;
    font-size: 2.5rem;
    font-weight: 800;
}

.legal-content h2 {
    color: #333;
}

.legal-block {
    margin-top: 2rem;
}

.legal-block__title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0 1.5rem;
    text-align: center;
}

.legal-block h3 {
    position: relative;
    margin: 2rem 0 1rem;
    padding-left: 1rem;
    color: #333;
    font-size: 1.7rem;
    font-weight: 600;
}

    .legal-block h3::before {
        content: "";
        position: absolute;
        top: 0.2rem;
        left: 0;
        width: 4px;
        height: 2.2rem;
        background-color: color-mix(in srgb, var(--color-elegant) 85%, #000);
        border-radius: 2px;
    }


/* ==========================================================================
   LEGAL - LISTA ORDENADA
   ========================================================================== */

.legal-list {
    margin: 1rem 0 1.5rem;
    padding-left: 0;
    list-style: none;
    counter-reset: legal-counter;
}

    .legal-list li {
        position: relative;
        margin-bottom: 0.6rem;
        padding-left: 2.2rem;
        color: #333;
        line-height: 1.6;
        counter-increment: legal-counter;
    }

        .legal-list li::before {
            content: counter(legal-counter) ".";
            position: absolute;
            top: 0;
            left: 0;
            color: var(--base-color);
            font-weight: 600;
        }


/* ==========================================================================
   LEGAL - LISTA CON VIÑETAS
   ========================================================================== */

.legal-bullets {
    margin: 0.8rem 0 1.5rem;
    padding-left: 0;
    list-style: none;
}

    .legal-bullets li {
        position: relative;
        margin-bottom: 0.6rem;
        padding-left: 1.6rem;
        color: #333;
        line-height: 1.6;
    }

        .legal-bullets li::before {
            content: "•";
            position: absolute;
            top: 0;
            left: 0;
            color: var(--base-color);
            font-size: 1.2rem;
            line-height: 1;
        }


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    .seccion_base {
        background: var(--standar-white);
    }

    .legal-content {
        padding: 5px;
        box-shadow: none;
    }
}

@media (max-width: 576px) {
    .legal-content h1 {
        margin: 0;
        padding-bottom: 0;
        color: #333;
        font-size: 1.9rem;
        font-weight: 800;
    }

    .legal-content h2 {
        font-size: 1.4rem;
    }

    .ornamento::before {
        margin-right: 16px;
        letter-spacing: -5.2px;
        transform: scaleX(2.9);
    }
}
