/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo de la pagina */
.pagina {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #cbd5e1; /* Gris medio que hace resaltar la tarjeta */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Estilo de la pagina */
.cuerpo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 0 0 0;
}

/* Estilo del contenido */
.tarjeta-legal {
    background-color: white;
    width: 95%; /* Ancho solicitado */
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.tarjeta-legal h1 {
    color: #00a8cc;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

hr {
    border: 0;
    border-top: 2px solid #f1f5f9;
    margin-bottom: 15px;
}

.punto-legal {
    margin-bottom: 20px;
}

.punto-legal h2 {
    color: #1e293b;
    font-size: 1.4rem;
    margin-bottom: 12px;
    border-left: 5px solid #00a8cc;
    padding-left: 15px;
}

.punto-legal p {
    line-height: 1.8;
    color: #475569;
    text-align: justify;
}

.fecha-actualizacion {
    margin-top: 50px;
    text-align: center;
    font-weight: bold;
    color: #64748b;
    font-size: 1rem;
}