/* ==========================================================================
   ESTILOS ESPECÍFICOS - AVISO DE PRIVACIDAD (MONTSERRAT)
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('../img/CMO_Back.jpg'); /* Se asume que el CSS está en /css/ */
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    padding: 50px 15px;
    color: #333;
}

.page-container {
    background-color: white;
    width: 100%;
    max-width: 1200px;
    padding: 60px 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    position: relative;
}

.banner-container {
    width: 100%;
    margin-bottom: 30px;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- NAVBAR --- */
.navbar {
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    padding: 15px 0;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #bfa15f;
    text-align: right;
    padding-right: 10px;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 35px;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navbar a:hover, .active-link {
    color: #bfa15f !important;
    font-weight: 900 !important;
}

/* --- CONTENIDO LEGAL --- */
.privacy-content {
    line-height: 1.8;
}

.privacy-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.privacy-content .subtitle {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 50px;
    color: #bfa15f; 
    letter-spacing: 1px;
}

.year-black {
    color: #000;
}

.privacy-content h2 {
    font-size: 19px;
    font-weight: 700;
    color: #bfa15f;
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.privacy-content p {
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 15px;
    hyphens: none !important;
}

.privacy-content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 25px 25px;
}

.privacy-content li {
    margin-bottom: 8px;
    text-align: justify;
    text-justify: inter-word;
    position: relative;
    font-size: 15px;
}

.privacy-content li::before {
    content: "•";
    color: #bfa15f;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.privacy-content a {
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #bfa15f;
}

/* --- FOOTER --- */
.site-footer {
    margin-top: 60px;
    padding: 40px 0 10px 0;
    border-top: 1px solid #eeeeee;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-links a {
    text-decoration: none;
    color: #999;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.copyright {
    font-size: 11px;
    color: #ccc;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    body { padding: 10px; }
    .page-container { padding: 30px 20px; }
    .menu-toggle { display: block; }
    .navbar ul {
        display: none;
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding-top: 15px;
    }
    .navbar ul.active { display: flex; }
    .navbar a {
        display: block;
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid #f9f9f9;
    }
    .privacy-content h1 { font-size: 24px; }
    .privacy-content p, .privacy-content li {
        font-size: 14.5px;
        line-height: 1.6;
    }
}