a{
    text-decoration: none;
    color: inherit;

}

ul{
    list-style: none;
   
}

body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

*{
    box-sizing: border-box;
}

/* --- 1. CONFIGURACIÓN DE FUENTES Y VARIABLES --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Orbitron:wght@400;700;900&display=swap');


/* --- 2. RESET GLOBAL Y COMPORTAMIENTO BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-dark);
}


/* Scrollbar oscura (Tarea 5.1, 2026-07-31) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(56, 189, 248, 0.35);
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

body {
    background-color: var(--bg-dark);
    font-family: var(--font-body);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Evitar desbordes accidentales por elementos flotantes */
html, body {
    width: 100%;
    max-width: 100vw;
}

/* --- 3. COMPONENTES REUTILIZABLES --- */
.brand-overline {
    font-family: var(--font-title);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 700;
}

/* Botón Estilo Astado Dev */
.btn-primary {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-main);
    text-decoration: none;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.05);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.35);
    transform: translateY(-2px);
}
