/*
 * Archivo CSS para la página de Política de Privacidad
 * Manteniendo el estilo corporativo de TVoPLUS.
 */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #1a1a2e;
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 2rem;
    padding-bottom: 150px;
    background-image: linear-gradient(135deg, rgba(14, 14, 30, 0.9) 0%, rgba(42, 42, 74, 0.9) 50%, rgba(14, 14, 30, 0.9) 100%), url('https://i.postimg.cc/VkBS2MFp/img2-wallspic-com-angulo-modo-monocromo-fila-monocromo-el-arte-abstracto-2618x1636.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}

.logo-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.logo-corporativo {
    max-width: 200px;
    height: auto;
}

.content-container {
    background-color: #33334d;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 800px;
    margin-bottom: 20px;
    text-align: justify;
}

h1 {
    color: #7B68EE;
    text-align: center;
    margin-bottom: 2rem;
}

h2 {
    color: #7B68EE;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

p, li {
    line-height: 1.6;
    margin-bottom: 1rem;
}

ul {
    padding-left: 20px;
}

.section {
    margin-bottom: 2rem;
}

/* Estilo para el botón "Volver al inicio" */
.back-button-container {
    text-align: center;
    margin: 20px 0;
}

.back-to-home-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.back-to-home-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.back-to-home-button i {
    font-size: 16px;
}

/* Estilos de botones flotantes y modal eliminados */