﻿/* --- CONTENEDOR PRINCIPAL CON DISTRIBUCIÓN DE DOS COLUMNAS --- */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 4%;
    display: grid;
    gap: 40px;
}

/* CUERPO DEL TEXTO LEGAL */
.privacy-content {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);

}


.privacy-section {
    margin-bottom: 35px;
}

    .privacy-section:last-child {
        margin-bottom: 0;
    }

    .privacy-section h2 {
        font-size: 20px;
        font-weight: 700;
        color: #1E293B;
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
        /* Línea decorativa roja al lado de cada título */
        .privacy-section h2::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 20px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }

    .privacy-section p {
        color: #475569;
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 14px;
    }

    .privacy-section ul {
        list-style-type: none;
        padding-left: 5px;
        margin-bottom: 14px;
    }

        .privacy-section ul li {
            position: relative;
            font-size: 14.5px;
            color: #475569;
            margin-bottom: 8px;
            padding-left: 20px;
        }

            .privacy-section ul li::before {
                content: '•';
                color: var(--primary-color);
                font-weight: bold;
                position: absolute;
                left: 5px;
                top: 0;
            }

/* --- RESPONSIVIDAD --- */
@media (max-width: 992px) {
    .main-container {
        gap: 30px;
    }
    /* Oculta índice lateral en tablets/móviles para priorizar lectura */
    .privacy-content {
        padding: 30px;
    }
}

