 :root {
     --color-principal: #0080c3;
     --color-secundario: #e84a90;
     --color-cta: #ffffff;
     --color-soft-bg: #e6f0fa;
     --color-soft-text: #0080c3;
 }
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.ctback {
    height: 25vh;
    background-image: url(../img/img-05.jpg);
}

body.size-1280 {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 400;
    background-color: var(--background-color, #f8f9fa);
    color: var(--text-color, #2c3e50);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* CONTENEDOR PRINCIPAL */
main.politica-privacidad {
    max-width: 900px;
    margin: 0 auto 4rem auto;
    padding: 1.5rem 2rem 3rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
    color: var(--text-color);
}

/* TITULO PRINCIPAL */
.pp-titulo {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-soft-text);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.03em;
    line-height: 1.15;
}

/* INDICE/NAVEGACION*/
nav.pp-indice {
    margin-bottom: 2.5rem;
    padding-left: 1.25rem;
    border-left: 4px solid var(--primary-color);
    background-color:#023551;
    color: #e84a90!important;
}

.pp-indice ul {
    list-style: none;
}

.pp-indice li {
    margin-bottom: 1rem;
    color: #e84a90!important;
}

.pp-indice a {
    font-weight: 600;
    text-decoration: none;
    color: var(--link-color, #3949ab);
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.pp-indice a:hover,
.pp-indice a:focus {
    color: var(--primary-color);
    outline-offset: 4px;
    outline: 2px solid var(--primary-color);
    border-radius: 4px;
    padding: 0 0.2rem;
}

/* SECCIONES */
section.pp-seccion {
    margin-bottom: 3rem;
}

.pp-seccion h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.4rem;
    color: var(--primary-color);
}

.pp-seccion p,
.pp-seccion ul {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 1rem;
    color: var(--text-color);
}

.pp-seccion ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}

.pp-seccion ul li {
    margin-bottom: 0.65rem;
}

/* ENLACES DENTRO DEL CONTENIDO */
.pp-seccion a {
    color: var(--link-color);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.25s ease;
}

.pp-seccion a:hover,
.pp-seccion a:focus {
    color: var(--primary-color);
    outline: none;
}

/* TEXTO DESTACADO */
strong {
    font-weight: 700;
    color: var(--primary-color);
}

/* PARTE DEL FOOTER */
footer {
    color: #ccc;
    font-size: 0.9rem;
    text-align: center;
}

/* FOOTER ENLACES */
footer a {
    color: #999;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.25s ease;
}

footer a:hover {
    color: var(--primary-color);
}

.red {
    color: red;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    body.size-1280 {
        padding-top: 15vh;
    }

    .politica-privacidad {
        padding: 1.25rem 1rem 2rem 1rem;
        margin: 1rem 0 2rem 0;
        box-shadow: none;
        border-radius: 0;
    }

    .pp-titulo {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .pp-indice a {
        font-size: 1rem;
    }

    .pp-seccion h2 {
        font-size: 1.4rem;
    }

    .pp-seccion p,
    .pp-seccion ul {
        font-size: 1rem;
    }
}