/* ==========================================================================
     POLITICA DE PRIVACIDAD
     ========================================================================== */

/* Reset y estilos globales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    background-color: #f8f8f8;
}

/* Contenedor principal */
.container {
    width: 83%;
    max-width: 1200px;
    margin: 50px auto;
    background-color: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Encabezado simplificado */
.header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #0066cc;
}

.header h1 {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.date {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #0066cc;
    font-style: italic;
}

/* Secciones */
.section {
    margin-bottom: 40px;
}

.section h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #0066cc;
}

.section h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    margin-top: 25px;
}

.section p {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: justify;
}

.section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.section li {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Cajas destacadas */
.highlight-box {
    background-color: #e6f2ff;
    padding: 30px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid #0066cc;
}

.highlight-box p {
    margin-bottom: 5px;
    font-weight: 400;
}

.highlight-box strong {
    color: #333;
}

/* Caja de contacto */
.contact-box {
    background-color: #d5e9f5;
    padding: 30px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid #0066cc;
}

.contact-box p {
    margin-bottom: 5px;
    font-weight: 400;
}

/* Caja de advertencia */
.warning-box {
    background-color: #f5ecd9;
    padding: 30px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid #0066cc;
}

.warning-box p {
    margin-bottom: 10px;
    font-weight: 400;
}

/* Enlaces */
a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

a:hover {
    color: #0052a3;
    text-decoration: underline;
}

/* Texto en negrita */
strong {
    color: #333;
    font-weight: 600;
}

/* Botón de vuelta */
.back-button {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 30px;
    background-color: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #0052a3;
    color: white;
    text-decoration: none;
}

/* Pie de página */
.footer-note {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
}

.footer-note p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .container {
        width: 95%;
        padding: 30px 20px;
        margin: 20px auto;
    }

    .header h1 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .section h3 {
        font-size: 1.2rem;
    }

    .section p,
    .section li {
        font-size: 1rem;
        text-align: left;
    }

    .highlight-box,
    .contact-box,
    .warning-box {
        padding: 20px;
    }
}

@media screen and (max-width: 576px) {
    .container {
        width: 100%;
        padding: 20px 15px;
        margin: 10px auto;
        border-radius: 0;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .section h2 {
        font-size: 1.3rem;
    }

    .section h3 {
        font-size: 1.1rem;
    }

    .section p,
    .section li {
        font-size: 0.95rem;
    }

    .highlight-box,
    .contact-box,
    .warning-box {
        padding: 15px;
    }
}