/* =========================================
   PÁGINAS LEGALES (TOS, Privacidad, etc.)
   ========================================= */
.legal-container-page {
    min-height: 70vh;
    padding: 120px 20px 60px; /* Deja espacio superior para que no lo tape el nav */
    display: flex;
    justify-content: center;
}

.legal-wrapper {
    width: 100%;
    max-width: 800px;
}

.back-to-home {
    display: inline-block;
    margin-bottom: 25px;
    color: #FBB03B;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.back-to-home:hover {
    transform: translateX(-5px);
}

.legal-article {
    background-color: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    color: #9ca3af;
    line-height: 1.7;
}

.legal-article h1 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    border-bottom: 2px solid rgba(251, 176, 59, 0.3);
    padding-bottom: 15px;
    margin-top: 0;
    margin-bottom: 10px;
}

.legal-date {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 30px;
}

.legal-article h2 {
    color: #e5e7eb;
    font-size: 20px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-list li {
    margin-bottom: 8px;
}

.legal-article strong {
    color: #ffffff;
}