
/* ======================================= */
/* 1. Estilos Generales y Contenedor       */
/* ======================================= */

body.body-aviso {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-image: url('../style/img/seccion1.jpg'); /* Sintaxis corregida */
    background-color: none;
    color: #ffffff;
    margin: 0;
    padding: 0;
    
}

.aviso-privacidad-main {
    max-width: 80%;
    margin: 40px auto;
    padding: 40px;
    background-color: #505050c7;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ======================================= */
/* 2. Estilos de Tipografía y Títulos      */
/* ======================================= */
.titulo-principal {
    font-size: 4rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.subtitulo {
    font-size: 1.8rem;
    color: #000000;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
   /* border-bottom: 3px solid #f7f7f7;*/
    padding-bottom: 5px;
    font-weight: bold;
}

h2 {
    margin-bottom: 1.5rem; /* Reducir el espacio entre párrafos */
    font-size: 2.2rem; /* Aumentar el tamaño del texto */
}

p, h2, li {
    margin-bottom: 1.5rem; /* Reducir el espacio entre párrafos */
    font-size: 2rem; /* Aumentar el tamaño del texto */
}

/* Estilos de lista para el aviso (con flechas) */
.aviso-lista {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.aviso-lista li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
}

.aviso-lista li::before {
    content: '→';
    color: #f7d046;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* Estilos para los enlaces */
a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #e3000f;
    text-decoration: underline;
}

/* ======================================= */
/* 3. Estilos de Tablas                    */
/* ======================================= */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #000000;
    font-size: 2rem; /* Aumentar el tamaño del texto */
}

thead {
    background-color: #e3000f;
    color: #020202;
    font-weight: bold;
}

tbody tr:nth-child(even) {
    background-color: #000000;
}

tbody tr:hover {
    background-color: #000000;
}

/* El siguiente bloque fue eliminado para unificar los estilos de tabla */
/*
.seccion-compartir table:last-of-type {
    background-color: #e3000f;
    color: #fff;
    margin-top: 1rem;
}

.seccion-compartir table:last-of-type th {
    background-color: #e3000f;
    color: #fff;
}

.seccion-compartir table:last-of-type td {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
*/