.background {
    font-family: 'Poppins', sans-serif;    
    background: radial-gradient(circle at 20% 50%, #020a13 30%, rgba(0, 0, 0, 0.6)), url('/static/img/otras/1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center; /* Corregido */
    height: 105vh;
    overflow: hidden;
    position: relative; /* Importante para que los pseudo-elementos funcionen */
    z-index: 0;
}


.Style_Background_Overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 2s ease-in-out;
    z-index: -1;
    opacity: 1;
}

/*Estilos para las POLITICAS DE PRIVACIDAD Y TÉRMINOS DE USO*/

.Style-body-policy {
    text-align: center;
    padding: 50px;
    background-image: radial-gradient(circle at 20% 50%, #020a13 30%, rgba(0, 0, 0, 0.6)), url('/static/img/otras/1.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Container-policy {
    flex-direction:column;
    width: 600px;
    height: 650px;
    background-color: #fafafa;
    border-radius: 50px;
    box-shadow: 2px 12px 25px rgba(162, 82, 129, 0.8);
    border: solid 1px #808080;
    overflow: hidden;
    padding:20px;
}

.Style-title-policy {
    font-family: Geist, sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    padding: 10px;
    outline: none;
    list-style: none;
    display: block;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}
.Style-subtitulo-policy {
    font-family: Geist, sans-serif;
    margin: 20px 0 0 10px;
    font-weight: 400;
    font-size: 1.2rem;
    padding: 5px;
    outline: none;
    color: #030303;
    display: flex;
    box-sizing: border-box;
    text-align: left;
}
.Style-text-policy {
    color: #333333;
    margin: 5px 0 0 10px;
    text-align: left;
}