/* --- ESTILOS AVISO LEGAL --- */
.legal-content {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-family: "Manrope", sans-serif;
}

.legal-content h2 {
    font-family: "Syncopate", sans-serif;
    color: #fff;
    margin-top: 50px;
    margin-bottom: 25px;
    font-size: 1.3rem;
    border-left: 3px solid var(--accent-blue);
    padding-left: 15px;
    line-height: 1.4;
}

.legal-content p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 300;
}

.legal-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
    color: #aaa;
    list-style-type: none; /* Quitamos puntos por defecto */
}

.legal-content li {
    color: #ccc;
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    padding-left: 15px;
}

/* Pequeño acento en las listas */
.legal-content li::before {
    content: "›";
    color: var(--accent-blue);
    position: absolute;
    left: -5px;
    font-weight: 800;
}

.legal-content strong {
    color: #fff;
    font-weight: 700;
}

/* Enlaces dentro del texto legal */
.legal-content a {
    color: #3b82f6;
    text-decoration: none;
    transition: 0.3s;
}

.legal-content a:hover {
    text-decoration: underline;
    color: #fff;
}
/* Botón flotante */
.btn-back-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #fff;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    z-index: 100;
    transition: 0.3s;
}
.btn-back-fixed:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 25px;
    }
    .legal-content h2 {
        font-size: 1.1rem;
    }
}


/* 1. INTERNAL HERO (El contenedor del título) */
.internal-hero {
    position: relative;
    padding: 120px 20px 60px; /* Mucho espacio arriba para separarlo del Nav */
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 10;
}

/* 2. LABEL BOX ("SYSTEM OPERATORS") */
.label-box {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    font-family: "Syncopate", sans-serif; /* Tu fuente técnica */
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-blue); /* Usa la variable azul del core */
    background: rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

/* 3. AJUSTE DEL TÍTULO H1 EN ESTE MÓDULO */
.internal-hero h1.glitch-text {
    /* Nos aseguramos que use la fuente correcta si el core falla por algo */
    font-family: "Syncopate", sans-serif; 
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    /* Efecto de sombra para separarlo del fondo */
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

:root {
    --accent-blue: #3b82f6;
}