/* --- NAVBAR ESTILO HSR --- */
.navbar {
    background: rgba(15, 17, 36, 0.85) !important; /* Fondo oscuro semi-transparente */
    backdrop-filter: blur(10px); /* Efecto de desenfoque detrás (Glassmorphism) */
    border-bottom: 1px solid rgba(255, 215, 128, 0.2); /* Línea dorada sutil abajo */
    padding: 0 !important;
    position: sticky; /* Se queda fija arriba al bajar */
    top: 0;
    z-index: 1000;
}

.navbar-nav .nav-link {
    color: #8a91b4 !important;
    font-weight: 500;
    font-size: 14px;
    height: 55px; /* Altura fija para que los bordes se vean iguales */
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent; /* Preparado para el efecto activo */
}

/* Efecto al pasar el mouse */
.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05);
}

/* Estado Activo (En el que estás actualmente) */
.navbar-nav .nav-link.active {
    color: #ffffff !important;
    background: linear-gradient(0deg, rgba(63, 81, 181, 0.3) 0%, rgba(63, 81, 181, 0) 100%) !important;
    border-bottom: 3px solid #ffd780; /* Línea dorada brillante abajo */
}

/* Icono de retroceder */
.back-icon {
    transition: transform 0.2s ease;
    color: #ffd780;
}

.nav-link:hover .back-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px #ffd780);
}

/* Separadores entre links */
.border-end {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Ajustes de imágenes en la nav */
.navbar img {
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.5));
}
*{
    box-sizing: border-box;
    background-position: 0, center;
    background-repeat: no-repeat, repeat;
    background-size: cover, auto;
    background-attachment: fixed, scroll;
    content: "\2024";

}


body{
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif:"Segoe UI""Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --font-family-monospace: "Liberation Mono","Courier New",monospace;
    box-sizing: border-box;
    line-height: 1.5;
    text-align: left;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    font-family: "Roboto",sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #dbddef;
    background-color: #1c1f46;
    background-image: none;
}