﻿
    .topbar {
    font-family: "Montserrat", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size-adjust: 0.52;
    }

    .topbar a:hover {
    background: rgba(35, 80, 125, 0.26);
    color: #fff;
    transform: translateY(-1px);
    box-shadow:
    0 0 0 1px rgba(116, 205, 255, 0.22),
    0 0 14px rgba(68, 174, 255, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

    .topbar {
    position: fixed;
    inset: 0 0 auto 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 clamp(4px, 1vw, 28px);
    gap: clamp(4px, 1vw, 22px);

    background: rgba(5, 10, 20, 0.78);
    backdrop-filter: blur(8px);

    z-index: 100;

    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    }

    /* LOGO */
    .topbar__left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 auto;
    line-height: 0;
    min-width: 0;
    }

    .topbar__logo {
    height: clamp(38px, 3.6vw, 72px);
    width: auto;
    max-width: clamp(38px, 12vw, 96px);
    object-fit: contain;
    display: block;
    }

    /* BOTONES */
    .Btn {
    border: 1px solid rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.08);
    color: #fff;

    padding: clamp(4px, 0.45vw, 10px) clamp(6px, 0.8vw, 18px);
    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    white-space: nowrap;
    flex: 0 1 auto;

    font-size: clamp(9px, 0.82vw, 18px);
    font-weight: 400;
    line-height: 1;

    text-decoration: none;
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    }

    .Btn:hover,
    .Btn:focus,
    .Btn:active,
    .Btn:visited {
    text-decoration: none;
    color: #fff;
    }

    .Btn.is-active,
.Btn.is-pending-active,
.Btn[aria-current="page"] {
    background:
    radial-gradient(circle at 50% 0%, rgba(126, 211, 255, 0.18), transparent 62%),
    rgba(20, 42, 66, 0.48);
    border-color: rgba(126, 211, 255, 0.58);
    color: #fff;
    box-shadow:
    0 0 0 1px rgba(126,211,255,0.16),
    0 0 14px rgba(70,177,255,0.20),
    0 4px 16px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.12);
    }

    .Btn.is-active:hover,
    .Btn.is-pending-active:hover,
    .Btn[aria-current="page"]:hover {
    background:
    radial-gradient(circle at 50% 0%, rgba(144, 221, 255, 0.24), transparent 64%),
    rgba(26, 58, 90, 0.56);
    border-color: rgba(150, 224, 255, 0.68);
    box-shadow:
    0 0 0 1px rgba(126,211,255,0.22),
    0 0 18px rgba(70,177,255,0.26),
    0 6px 18px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.14);
    }

