:root {
    --bg-core: #121212;
    --bg-card: #1e1e1e;
    --text-primary: #ededed;
    --text-secondary: #a1a1aa;
    --accent-b2c: #3d5afe;
    --accent-b2b: #1bc592;
    --font-sans: "Inter", system-ui, sans-serif;
    --font-mono: "JetBrains Mono", monospace;
    --font-logo: "Cinzel Decorative", serif; /* Variable restaurada */
    --container-width: 1280px;
    --header-height: 80px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--bg-core);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: clip;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin-inline: auto;
}

@media (min-width: 1600px) {
    .container {
        width: 68%;
    }
}

.mono-font {
    font-family: var(--font-mono);
}
.text-gradient {
    background: linear-gradient(90deg, #ffffff, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-muted {
    color: #71717a;
}
.text-center {
    text-align: center;
}
.mb-4 {
    margin-bottom: 2rem;
}
.mb-5 {
    margin-bottom: 3rem;
}
.mt-4 {
    margin-top: 2rem;
}
.text-accent-b2b {
    color: var(--accent-b2b);
}

/* Neutralización de enlaces por defecto */
a:visited {
    color: inherit;
}

.legal-content a {
    color: var(--accent-b2c);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition:
        border-color 0.2s ease,
        color 0.2s ease;
}

.legal-content a:visited {
    color: var(--accent-b2c);
}

.legal-content a:hover {
    border-bottom-color: var(--accent-b2c);
    color: #ffffff;
}
