/* /Components/Layout/LoadingOverlay.razor.rz.scp.css */
.loading-overlay[b-iekdoo6vk8] {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: radial-gradient(circle at center, #616164 0%, #19191b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease-out;
    transition: opacity 0.2s ease-out;
}

.loading-overlay--fade-out[b-iekdoo6vk8] {
    opacity: 0;
    pointer-events: none;
}

.loading-content[b-iekdoo6vk8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-logo[b-iekdoo6vk8] {
    width: 240px;
    height: 240px;
    object-fit: contain;
    animation: logoPulse 1.2s ease-in-out infinite;
    filter: drop-shadow(0 12px 12px rgba(0, 0, 0, 0.5));
}

@@keyframes fadeIn {
    from[b-iekdoo6vk8] {
        opacity: 0;
    }
    to[b-iekdoo6vk8] {
        opacity: 1;
    }
}

@@keyframes logoPulse {
    0%[b-iekdoo6vk8], 100%[b-iekdoo6vk8] {
        opacity: 1;
        transform: scale(1);
    }
    50%[b-iekdoo6vk8] {
        opacity: 0.85;
        transform: scale(1.05);
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-ehoshxjj2d] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-header[b-ehoshxjj2d] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-height);
}

.skip-link[b-ehoshxjj2d] {
    position: absolute;
    top: -100px;
    left: 0.5rem;
    z-index: 1001;
    padding: 0.5rem 1rem;
    background: #fff;
    color: #1a1a22;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    transition: top 0.2s ease;
}

.skip-link:focus[b-ehoshxjj2d] {
    top: 0.5rem;
}

.site-main[b-ehoshxjj2d] {
    flex: 1;
    width: 100%;
    min-height: 100vh;
    margin-top: 0;
    padding-top: 0;
}

/* Compensação da barra fixa do topo nas páginas que não são a inicial (evita o título ser engolido) */
.site-main--with-header-offset[b-ehoshxjj2d] {
    padding-top: var(--header-height, 4rem);
}

.site-main:focus[b-ehoshxjj2d] {
    outline: none;
}

#blazor-error-ui[b-ehoshxjj2d] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-ehoshxjj2d] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.nav-bar[b-5tdred3svy] {
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: none;
}

.nav-container[b-5tdred3svy] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 1.5rem;
    gap: 1rem;
}

.nav-brand[b-5tdred3svy] {
    display: flex;
    align-items: center;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm, 6px);
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-brand-logo[b-5tdred3svy] {
    height: 4rem;
    width: auto;
    display: block;
}

.nav-brand:hover[b-5tdred3svy] {
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
}

.nav-toggler[b-5tdred3svy] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.nav-toggler-label[b-5tdred3svy] {
    display: none; /* shown in mobile media query */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    border-radius: var(--radius-sm, 6px);
    color: #fff;
}

.nav-toggler-label:hover[b-5tdred3svy] {
    background: rgba(255, 255, 255, 0.08);
}

.hamburger[b-5tdred3svy],
.hamburger[b-5tdred3svy]::before,
.hamburger[b-5tdred3svy]::after {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger[b-5tdred3svy] {
    position: relative;
}

.hamburger[b-5tdred3svy]::before,
.hamburger[b-5tdred3svy]::after {
    content: "";
    position: absolute;
    left: 0;
}

.hamburger[b-5tdred3svy]::before {
    top: -6px;
}

.hamburger[b-5tdred3svy]::after {
    top: 6px;
}

.nav-toggler:checked ~ .nav-toggler-label .hamburger[b-5tdred3svy] {
    background: transparent;
}

.nav-toggler:checked ~ .nav-toggler-label .hamburger[b-5tdred3svy]::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggler:checked ~ .nav-toggler-label .hamburger[b-5tdred3svy]::after {
    top: 0;
    transform: rotate(-45deg);
}

.nav-menu[b-5tdred3svy] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.nav-menu[b-5tdred3svy]  .nav-link,
.nav-menu[b-5tdred3svy]  a.nav-link {
    padding: 0.5rem 0.85rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm, 6px);
    background: none;
    border: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-menu[b-5tdred3svy]  .nav-link:hover,
.nav-menu[b-5tdred3svy]  a.nav-link:hover {
    background: #fff;
    color: #000;
}

.nav-menu[b-5tdred3svy]  .nav-link.active,
.nav-menu[b-5tdred3svy]  a.nav-link.active {
    background: #fff;
    color: #000;
}

.nav-auth[b-5tdred3svy] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 0.5rem;
    padding-left: 0.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-form[b-5tdred3svy] {
    margin: 0;
    padding: 0;
}

.nav-form[b-5tdred3svy]  .nav-btn,
.nav-form[b-5tdred3svy]  button.nav-link.nav-btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm, 6px);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-form[b-5tdred3svy]  .nav-btn:hover,
.nav-form[b-5tdred3svy]  button.nav-link.nav-btn:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .nav-toggler-label[b-5tdred3svy] {
        display: flex;
    }

    .nav-menu[b-5tdred3svy] {
        position: fixed;
        top: var(--header-height, 4rem);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: rgb(24, 24, 32);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 1rem;
        gap: 0.25rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
        z-index: 99;
    }

    .nav-toggler:checked ~ .nav-menu[b-5tdred3svy] {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link[b-5tdred3svy] {
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm, 6px);
    }

    .nav-auth[b-5tdred3svy] {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        padding-top: 0.75rem;
        margin-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        align-items: stretch;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-anm7qzjm7y],
.components-reconnect-repeated-attempt-visible[b-anm7qzjm7y],
.components-reconnect-failed-visible[b-anm7qzjm7y],
.components-pause-visible[b-anm7qzjm7y],
.components-resume-failed-visible[b-anm7qzjm7y],
.components-rejoining-animation[b-anm7qzjm7y] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-anm7qzjm7y],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-anm7qzjm7y],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-anm7qzjm7y],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-anm7qzjm7y],
#components-reconnect-modal.components-reconnect-retrying[b-anm7qzjm7y],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-anm7qzjm7y],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-anm7qzjm7y],
#components-reconnect-modal.components-reconnect-failed[b-anm7qzjm7y],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-anm7qzjm7y] {
    display: block;
}


#components-reconnect-modal[b-anm7qzjm7y] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-anm7qzjm7y 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-anm7qzjm7y 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-anm7qzjm7y 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-anm7qzjm7y]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-anm7qzjm7y 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-anm7qzjm7y {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-anm7qzjm7y {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-anm7qzjm7y {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-anm7qzjm7y] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-anm7qzjm7y] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-anm7qzjm7y] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-anm7qzjm7y] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-anm7qzjm7y] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-anm7qzjm7y] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-anm7qzjm7y] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-anm7qzjm7y 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-anm7qzjm7y] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-anm7qzjm7y {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/About.razor.rz.scp.css */
.about-lead[b-yhbs4zdzb5] {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #333;
}

.about-blocks[b-yhbs4zdzb5] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-block h2[b-yhbs4zdzb5] {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.about-block p[b-yhbs4zdzb5] {
    margin: 0;
    line-height: 1.7;
    color: #444;
}
/* /Components/Pages/AlphaKey.razor.rz.scp.css */
.alpha-intro[b-dv81zec3cf] {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #444;
}

.alpha-form[b-dv81zec3cf] {
    max-width: 480px;
}

.form-group[b-dv81zec3cf] {
    margin-bottom: 1.25rem;
}

.form-group label[b-dv81zec3cf] {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.form-control[b-dv81zec3cf] {
    width: 100%;
    padding: 0.6rem 0.85rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: var(--radius-sm);
    font-family: inherit;
}

.form-control:focus[b-dv81zec3cf] {
    outline: none;
    border-color: #258cfb;
    box-shadow: 0 0 0 0.2rem rgba(37, 140, 251, 0.25);
}

.validation-message[b-dv81zec3cf] {
    font-size: 0.875rem;
    color: #e50000;
    margin-top: 0.35rem;
}

.btn-submit[b-dv81zec3cf] {
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #1b6ec2;
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-submit:hover[b-dv81zec3cf] {
    background: #1861ac;
}

.alert[b-dv81zec3cf] {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
}

.alert-success[b-dv81zec3cf] {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.hero[b-l67y7wof47] {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero[b-l67y7wof47]::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/assets/backgrounds/background-2025-09-21-171130-2.png");
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transform-origin: center;
    animation: heroZoom-b-l67y7wof47 40s ease-out forwards;
    will-change: transform;
}

.hero-overlay[b-l67y7wof47] {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 100%);
}

.hero-content[b-l67y7wof47] {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 720px;
}

.hero-title[b-l67y7wof47] {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    font-family: 'Square Sans Pro', sans-serif;
    font-style: italic;
}

.hero-subtitle[b-l67y7wof47] {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: rgba(255,255,255,0.95);
    margin: 0 0 2rem;
    line-height: 1.4;
}

@keyframes heroZoom-b-l67y7wof47 {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.15);
    }
}

.btn-hero[b-l67y7wof47] {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: #e63946;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-hero:hover[b-l67y7wof47] {
    background: #d62d3a;
    color: #fff;
    transform: translateY(-2px);
}

.btn-hero-steam[b-l67y7wof47] {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.btn-hero-steam:hover[b-l67y7wof47] {
    background: transparent;
}

.btn-hero-steam img[b-l67y7wof47] {
    height: 56px;
    width: auto;
    display: block;
}

.section[b-l67y7wof47] {
    padding: 4rem 0;
}

.trailer-section[b-l67y7wof47] {
    position: relative;
    isolation: isolate;
    background-image: url("/assets/backgrounds/background-2025-07-08-200403.png");
    background-size: cover;
    background-position: center;
}

.trailer-section[b-l67y7wof47]::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.trailer-section .section-content[b-l67y7wof47] {
    position: relative;
    z-index: 1;
}

.trailer-section .section-title[b-l67y7wof47] {
    color: #fff;
}

.news-section[b-l67y7wof47] {
    position: relative;
    z-index: 1;
}

.section-dark[b-l67y7wof47] {
    background: #1a1a22;
    color: #e4e4e8;
}

.container[b-l67y7wof47] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-content[b-l67y7wof47] {
    padding: 0 1.5rem;
}

.section-title[b-l67y7wof47] {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 2rem;
    color: inherit;
}

.section-dark .section-title[b-l67y7wof47] {
    color: #fff;
}

.text-blocks[b-l67y7wof47] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.text-block p[b-l67y7wof47] {
    margin: 0;
    line-height: 1.7;
    font-size: 1.05rem;
}

.video-wrapper[b-l67y7wof47] {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper iframe[b-l67y7wof47] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.news-section-header[b-l67y7wof47] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.link-more[b-l67y7wof47] {
    color: #e63946;
    font-weight: 600;
    text-decoration: none;
}

.link-more:hover[b-l67y7wof47] {
    text-decoration: underline;
    color: #e63946;
}

.carousel[b-l67y7wof47] {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
    max-width: 700px;
    margin: 0 auto;
}

.carousel-btn[b-l67y7wof47] {
    flex-shrink: 0;
    width: 48px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 1.75rem;
    cursor: pointer;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.carousel-btn:hover[b-l67y7wof47] {
    background: rgba(255,255,255,0.18);
}

.carousel-viewport[b-l67y7wof47] {
    flex: 1;
    overflow: hidden;
}

.carousel-track[b-l67y7wof47] {
    display: flex;
    transition: transform 0.35s ease-out;
}

.carousel-slide[b-l67y7wof47] {
    flex: 0 0 100%;
    min-width: 0;
}

.news-card[b-l67y7wof47] {
    display: block;
    background: #252530;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.news-card:hover[b-l67y7wof47] {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
    color: inherit;
}

.news-card-image[b-l67y7wof47] {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #333;
}

.news-card-body[b-l67y7wof47] {
    padding: 1.25rem;
}

.news-card-date[b-l67y7wof47] {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    display: block;
    margin-bottom: 0.5rem;
}

.news-card-title[b-l67y7wof47] {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #fff;
}

.news-card-summary[b-l67y7wof47] {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 0.75rem;
    color: rgba(255,255,255,0.85);
}

.news-card-link[b-l67y7wof47] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e63946;
}

.news-carousel-indicators[b-l67y7wof47] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.carousel-dot[b-l67y7wof47] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot:hover[b-l67y7wof47] {
    background: rgba(255,255,255,0.5);
}

.carousel-dot.active[b-l67y7wof47] {
    background: #e63946;
    transform: scale(1.2);
}

@media (max-width: 480px) {
    .carousel[b-l67y7wof47] {
        flex-direction: column;
        align-items: center;
    }

    .carousel-btn[b-l67y7wof47] {
        order: 2;
        width: 100%;
        max-width: 200px;
    }

    .carousel-btn-prev[b-l67y7wof47] {
        order: 1;
    }

    .carousel-viewport[b-l67y7wof47] {
        order: 0;
        width: 100%;
    }
}
/* /Components/Pages/News/Detail.razor.rz.scp.css */
.btn-back[b-vjutrbolc8] {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: #006bb7;
    text-decoration: none;
    font-weight: 500;
}

.btn-back:hover[b-vjutrbolc8] {
    text-decoration: underline;
    color: #006bb7;
}

.news-detail-date[b-vjutrbolc8] {
    font-size: 0.9rem;
    color: #666;
    display: block;
    margin-bottom: 0.5rem;
}

.news-detail-title[b-vjutrbolc8] {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    line-height: 1.2;
}

.news-detail-image[b-vjutrbolc8] {
    width: 100%;
    height: 360px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.news-detail-body[b-vjutrbolc8] {
    line-height: 1.75;
}

.news-detail-body[b-vjutrbolc8]  p {
    margin-bottom: 1rem;
}

.news-detail-body[b-vjutrbolc8]  p:last-child {
    margin-bottom: 0;
}
/* /Components/Pages/News/Index.razor.rz.scp.css */
/* Hero: imagem de fundo + título (vai até o topo; header sobrepõe) */
.news-hero[b-n3qhpt0zbd] {
    position: relative;
    min-height: 46vh;
    padding-top: var(--header-height);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.news-hero[b-n3qhpt0zbd]::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/assets/backgrounds/background-2025-09-21-171130-2.png");
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transform-origin: center;
    animation: news-hero-zoom-b-n3qhpt0zbd 40s ease-out forwards;
    will-change: transform;
}

@keyframes news-hero-zoom-b-n3qhpt0zbd {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.15);
    }
}

.news-hero-overlay[b-n3qhpt0zbd] {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.7) 100%);
}

/* Área entre a base do header e a base da imagem; o título fica centrado aqui */
.news-hero-body[b-n3qhpt0zbd] {
    position: relative;
    z-index: 1;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-hero-title[b-n3qhpt0zbd] {
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.06em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* Lista vertical de notícias */
.news-list-section[b-n3qhpt0zbd] {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.news-list[b-n3qhpt0zbd] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.news-card[b-n3qhpt0zbd] {
    display: block;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover[b-n3qhpt0zbd] {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

.news-card-image[b-n3qhpt0zbd] {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e8e8ec;
}

.news-card-body[b-n3qhpt0zbd] {
    padding: 1.25rem;
}

.news-card-date[b-n3qhpt0zbd] {
    font-size: 0.85rem;
    color: #666;
    display: block;
    margin-bottom: 0.5rem;
}

.news-card-title[b-n3qhpt0zbd] {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #1a1a22;
}

.news-card-summary[b-n3qhpt0zbd] {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 0.75rem;
    color: #444;
}

.news-card-link[b-n3qhpt0zbd] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e63946;
}
/* /Components/Pages/Support.razor.rz.scp.css */
.support-intro[b-osjkhz3dcq] {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #444;
}

.faq h2[b-osjkhz3dcq] {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 1.25rem;
}

.faq-item[b-osjkhz3dcq] {
    padding: 1.25rem 0;
    border-bottom: 1px solid #e8e8ec;
}

.faq-item:last-child[b-osjkhz3dcq] {
    border-bottom: none;
}

.faq-item h3[b-osjkhz3dcq] {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.faq-item p[b-osjkhz3dcq] {
    margin: 0;
    line-height: 1.6;
    color: #444;
}

.faq-item a[b-osjkhz3dcq] {
    color: #006bb7;
}
