@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");


body::-webkit-scrollbar {
    width: 8px;
    cursor: pointer;
}

body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
}

body::-webkit-scrollbar-track {
    background: transparent;
}

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

body,
button,
input,
select,
textarea {
    font: 400 1rem "Roboto", sans-serif;
}

body {
    min-height: 100vh;
    background: #ffffff;
    color: #111111;
}

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

a:hover {
    color: inherit;
}

.app-header {
    position: sticky;
    top: 0;
    z-index: 999;
}

.app-header .navbar {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.app-logo {
    display: block;
    width: 80px;
    max-height: 44px;
    object-fit: contain;
}

#body {
    width: 100%;
}

.category {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 18px 12px 28px;
}

.category-banner {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #f3f3f3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
    transform: translateY(8px);
    opacity: 0;
    transition: opacity 220ms ease, transform 220ms ease, box-shadow 180ms ease;
}

.category-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.category-banner:hover,
.category-banner:focus {
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.22);
    outline: none;
}

.category-banner:focus-visible {
    outline: 3px solid #373737;
    outline-offset: 3px;
}

.category-banner img {
    display: block;
    width: 100%;
    min-height: 140px;
    max-height: 320px;
    object-fit: cover;
}

.category-banner::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 52%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.62));
    pointer-events: none;
}

.category-banner__label {
    position: absolute;
    right: 16px;
    bottom: 14px;
    left: 16px;
    z-index: 1;
    display: flex;
    display: none;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.category-banner__label strong {
    font-size: 1.25rem;
    line-height: 1.1;
}

.category-banner__label small {
    flex-shrink: 0;
    border-radius: 74px;
    background: rgba(255, 255, 255, 0.92);
    color: #111111;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    text-shadow: none;
}

@media screen and (max-width: 720px) {
    html {
        font-size: 87.5%;
    }

    .category {
        gap: 10px;
        padding: 12px 8px 22px;
    }

    .category-banner {
        border-radius: 6px;
    }

    .category-banner img {
        min-height: 116px;
        max-height: 220px;
    }

    .category-banner__label {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

a[aria-label="Abrir Armeria Series"]{
    background-color: #f3be8f;
}
a[aria-label="Abrir Elite Series"]{
    background-color: #151516;
}
a[aria-label="Abrir Racing Series"]{
    background-color: #203454;
}
