/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos de la pagina */
.pagina {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #cbd5e1;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #334155;
}

/* Estilo del contenido de enmedio */
.cuerpo {
    display: flex;
    justify-content: center;
    padding: 25px 0 0 0;
}

.tarjeta-legal {
    background-color: #ffffff;
    width: 95%;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.tarjeta-legal h1 {
    color: #00a8cc;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
}

hr {
    border: 0;
    border-top: 2px solid #e2e8f0;
    margin-bottom: 15px;
}

.punto-legal {
    margin-bottom: 20px;
}

.punto-legal h2 {
    color: #0f172a;
    font-size: 1.4rem;
    margin-bottom: 15px;
    border-left: 5px solid #00a8cc;
    padding-left: 15px;
}

.punto-legal p {
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 10px;
}

.punto-legal ul {
    margin-left: 30px;
    margin-top: 10px;
}

.punto-legal li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.fecha-actualizacion {
    text-align: center;
    margin-top: 30px;
    font-size: 0.95rem;
    color: #94a3b8;
    font-style: italic;
}