/* --- VARIABLES --- */
:root {
    --gold: #bf9a33;
    --dark-bg: #0d0d0d;
    --card-bg: rgba(255, 255, 255, 0.03);
    --text-main: #eeeeee;
    --text-dim: #bbbbbb;
}

/* --- ESTILOS BASE (MÓVIL) --- */
.legal-container {
    width: 92%;
    margin: 80px auto 40px; /* Menos margen superior en móvil */
    padding: 20px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(191, 154, 51, 0.15);
    border-radius: 16px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    line-height: 1.5;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.legal-container h1 {
    font-family: 'Anton', sans-serif;
    color: var(--gold);
    font-size: 2.2rem; /* Título más pequeño en móvil */
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.legal-container h2 {
    font-family: 'Anton', sans-serif;
    color: var(--gold);
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-top: 35px;
    margin-bottom: 15px;
    display: block; /* En móvil, la línea va debajo */
}

.legal-container h2::after {
    content: "";
    display: block;
    width: 60px; /* Línea corta debajo del título en móvil */
    height: 2px;
    background: var(--gold);
    margin-top: 8px;
    opacity: 0.6;
}

.legal-container p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--text-dim);
}

.legal-container ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.legal-container li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.legal-container li::before {
    content: "■";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.7rem;
    top: 3px;
}

/* --- TABLET (min-width: 768px) --- */
@media (min-width: 768px) {
    .legal-container {
        width: 85%;
        margin-top: 100px;
        padding: 40px;
        border-radius: 24px;
        line-height: 1.8;
    }

    .legal-container h1 {
        font-size: 3rem;
        margin-bottom: 40px;
    }

    .legal-container h2 {
        font-size: 1.7rem;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .legal-container h2::after {
        flex: 1; /* La línea vuelve a ser larga y lateral */
        height: 1px;
        background: linear-gradient(to right, rgba(191, 154, 51, 0.4), transparent);
        margin-top: 0;
    }

    .legal-container p, .legal-container li {
        font-size: 1rem;
    }
}

/* --- ESCRITORIO (min-width: 1024px) --- */
@media (min-width: 1024px) {
    .legal-container {
        max-width: 1000px;
        margin-top: 120px;
        padding: 60px;
    }

    .legal-container h1 {
        font-size: 3.8rem;
        letter-spacing: 2px;
    }

    .back-link {
        font-size: 0.95rem;
    }
}

/* Animación de entrada */
section {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}