/* ===================================== */
/* PRIVACIDAD */
/* ===================================== */

body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: #ffffff;
    color: #111827;
    margin: 0;
}
/* ===================================== */
/* MARCA DE AGUA */
/* ===================================== */

body::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 500px; /* tamaño de la marca */
    height: 500px;

    background-image: url("/ShinkaDesign/Imagenes/MarcaDeAguaShinka.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    opacity: 0.05; /* 🔥 clave: muy baja para efecto watermark */

    pointer-events: none; /* no bloquea clicks */
    z-index: 0;
}

/* Asegura que el contenido quede encima */
.privacy-container {
    position: relative;
    z-index: 1;
}

/* CONTENEDOR */
.privacy-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

/* TITULOS */
h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

h2 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* TEXTO */
p {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
}

/* LISTAS */
ul {
    padding-left: 20px;
    color: #4b5563;
}

li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* COLOR DESTACADO */
.highlight {
    color: #0DAF99;
    font-weight: 500;
}

/* FECHA */
.last-update {
    margin-top: 40px;
    font-size: 13px;
    color: #9ca3af;
}