:root {
    --bs-warning: #FFAF1F;
    --bs-warning-rgb: 255, 175, 31;
    --bs-light: #FEFEFE;
    --bs-light-rgb: 254, 254, 254;

}

/* Regular 400 */
@font-face {
    font-family: 'Open Sans';
    src: url('/assets_2025/font/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* SemiBold 600 */
@font-face {
    font-family: 'Open Sans';
    src: url('/assets_2025/font/OpenSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Bold 700 */
@font-face {
    font-family: 'Open Sans';
    src: url('/assets_2025/font/OpenSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

a {
   cursor: pointer !important;
}
/* Estilo Global */
body {
    font-family: 'Open Sans' !important;
    background: #000;
}

.navbar-toggler {
    border: none; 
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.border-warning-custom {
    border: 1px solid rgba(255, 175, 31, 0.15);
}

.btn-primary-custom {

    border-radius: 6px;
    background: var(--bs-warning);
    color: #000;
    transition: background 0.3s ease, color 0.3s ease;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

    .btn-primary-custom:hover {
        background: #FF9E00;
        color: #000;
    }

.btn-secondary-custom {
    border-radius: 6px;
    background: #FFCB4B;
    color: #000;
    transition: background 0.3s ease, color 0.3s ease;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

    .btn-secondary-custom:hover {
        background: #FBC02D;
        color: #000;
    }



/* Base (mobile first) */
.btn-primary-custom,
.btn-secondary-custom {
    font-size: 14px; /* menor em telas pequenas */
    padding: 6px 12px; /* padding reduzido */
    white-space: nowrap; /* impede quebra de linha */
    display: inline-flex; /* garante alinhamento correto */
    align-items: center;
    justify-content: center;
}

/* Tablet (>=768px) */
@media (min-width: 768px) {
    .btn-primary-custom,
    .btn-secondary-custom {
        font-size: 15px;
        padding: 6px 14px;
    }
}

/* Desktop (>=1200px) */
@media (min-width: 1200px) {
    .btn-primary-custom,
    .btn-secondary-custom {
        font-size: 16px;
        padding: 8px 16px;
    }
}



.rotate-90 {
    transform: rotate(90deg);
}

.btn-large {
    padding: 10px 80px !important;
}

.bg-gray-custom {
    background: #0D0D0D;
}

.border-warning-custom {
    --bs-border-opacity: 1;
    border-color: var(--bs-warning) !important;
}

.rounded-40 {
    border-radius: 40px !important;
}

.max-w-1920 {
    max-width: 1920px;
    margin: 0 auto;
}


.bg-opacity-5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.p-40 {
    padding: 24px !important;
}

.px-40 {
    padding: 0 24px !important;
}

.min-h-240 {
    min-height: 240px;
}

/* Base - Mobile First */
.text-sw-sm {
    font-size: 12px;
    line-height: 1.4;
}

.text-sw-md {
    font-size: 14px;
    line-height: normal;
}

.text-sw-lg {
    font-size: 18px;
    line-height: 1.5;
}

.text-sw-xl {
    font-size: 18px;
    line-height: normal;
}

.text-sw-xxl {
    font-size: 24px;
    line-height: normal;
    letter-spacing: -1px;
}

.text-sw-xxxl {
    font-size: 42px;
    line-height: normal;
    letter-spacing: -1px;
}

.text-style-xxxxl {
    font-size: 68px;
    line-height: normal;
    letter-spacing: -1.5px;
}


.pa-1 {
    padding-block: 8px;
}

.pa-2 {
    padding-block: 16px;
}

.pa-3 {
    padding-block: 24px;
}

.pa-4 {
    padding-block: 36px;
}

.pa-5 {
    padding-block: 48px;
}

.pi-1 {
    padding-top: 8px;
}

.pi-2 {
    padding-top: 16px;
}

.pi-3 {
    padding-top: 24px;
}

.pi-4 {
    padding-top: 36px;
}

.pi-5 {
    padding-top: 48px;
}

.pf-1 {
    padding-bottom: 8px;
}

.pf-2 {
    padding-bottom: 16px;
}

.pf-3 {
    padding-bottom: 24px;
}

.pf-4 {
    padding-bottom: 36px;
}

.pf-5 {
    padding-bottom: 48px;
}


/* Tablet >= 768px */
@media (min-width: 768px) {
    .pa-1 {
        padding-block: 12px;
    }

    .pa-2 {
        padding-block: 24px;
    }

    .pa-3 {
        padding-block: 36px;
    }

    .pa-4 {
        padding-block: 54px;
    }

    .pa-5 {
        padding-block: 72px;
    }

    .pi-1 {
        padding-top: 12px;
    }

    .pi-2 {
        padding-top: 24px;
    }

    .pi-3 {
        padding-top: 36px;
    }

    .pi-4 {
        padding-top: 54px;
    }

    .pi-5 {
        padding-top: 72px;
    }

    .pf-1 {
        padding-bottom: 12px;
    }

    .pf-2 {
        padding-bottom: 24px;
    }

    .pf-3 {
        padding-bottom: 36px;
    }

    .pf-4 {
        padding-bottom: 54px;
    }

    .pf-5 {
        padding-bottom: 72px;
    }

    .text-sw-sm {
        font-size: 15px;
    }

    .text-sw-md {
        font-size: 17px;
    }

    .text-sw-lg {
        font-size: 22px;
    }

    .text-sw-xl {
        font-size: 28px;
    }

    .text-sw-xxl {
        font-size: 42px;
    }

    .text-sw-xxxl {
        font-size: 64px;
    }

    .text-style-xxxxl {
        font-size: 80px;
    }

    .p-40 {
        padding: 40px !important;
    }

    .px-40 {
        padding: 0 40px !important;
    }
}

/* Notebook >= 1024px */
@media (min-width: 1024px) {
    .pa-1 {
        padding-block: 16px;
    }

    .pa-2 {
        padding-block: 32px;
    }

    .pa-3 {
        padding-block: 48px;
    }

    .pa-4 {
        padding-block: 72px;
    }

    .pa-5 {
        padding-block: 96px;
    }

    .pi-1 {
        padding-top: 16px;
    }

    .pi-2 {
        padding-top: 32px;
    }

    .pi-3 {
        padding-top: 48px;
    }

    .pi-4 {
        padding-top: 72px;
    }

    .pi-5 {
        padding-top: 96px;
    }

    .pf-1 {
        padding-bottom: 16px;
    }

    .pf-2 {
        padding-bottom: 32px;
    }

    .pf-3 {
        padding-bottom: 48px;
    }

    .pf-4 {
        padding-bottom: 72px;
    }

    .pf-5 {
        padding-bottom: 96px;
    }

    .text-sw-sm {
        font-size: 16px;
    }

    .text-sw-md {
        font-size: 18px;
    }

    .text-sw-lg {
        font-size: 24px;
    }

    .text-sw-xl {
        font-size: 32px;
    }

    .text-sw-xxl {
        font-size: 48px;
    }

    .text-sw-xxxl {
        font-size: 80px;
    }

    .text-style-xxxxl {
        font-size: 100px;
    }
}

/* Desktop >= 1440px */
@media (min-width: 1440px) {
    .text-sw-sm {
        font-size: 16px;
    }

    .text-sw-md {
        font-size: 18px;
    }

    .text-sw-lg {
        font-size: 22px;
    }

    .text-sw-xl {
        font-size: 26px;
    }

    .text-sw-xxl {
        font-size: 42px;
    }

    .text-sw-xxxl {
        font-size: 80px;
    }

    .text-style-xxxxl {
        font-size: 120px;
    }
}



/* #region: Estilo Navbar Master */
.dropdown-menu.nav-version {
    background: rgba(0,0,0,0.45);
    border: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
}

    .dropdown-menu.nav-version.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* itens: estado inicial */
    .dropdown-menu.nav-version li {
        opacity: 0;
        transform: translateY(10px);
    }

    /* animação em cascata */
    .dropdown-menu.nav-version.show li {
        animation: dropdownFadeIn .3s ease forwards;
    }

        .dropdown-menu.nav-version.show li:nth-child(1) {
            animation-delay: 0.05s;
        }

        .dropdown-menu.nav-version.show li:nth-child(2) {
            animation-delay: 0.15s;
        }

        .dropdown-menu.nav-version.show li:nth-child(3) {
            animation-delay: 0.25s;
        }

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(0px);
    }

    to {
        opacity: 1;
        transform: translateY(1px);
    }
}

.nav-version li > a {
   color:var(--bs-light);
}

    .nav-version li > span {
        color: var(--bs-light);
    }

.navbar {
    background: rgba(0, 0, 0, 0.65) !important;
    backdrop-filter: blur(2px);
}

.nav-link, .navbar-brand, .dropdown-toggle {
    color: var(--bs-light) !important;
}

    .nav-link:hover, .dropdown-toggle:hover {
        color: var(--bs-warning) !important;
    }

    .nav-link.active {
        color: var(--bs-warning) !important;
        font-weight: 700;
    }

.account-area {
    color: var(--bs-light) !important;
    transition: color 0.3s ease-in-out;
    cursor: pointer;
}

    .account-area:hover {
        color: var(--bs-warning) !important;
    }

        .account-area:hover a,
        .account-area:hover i {
            color: var(--bs-warning) !important;
        }


/* Mobile first */
.navbar .nav-link,
.navbar .dropdown-toggle,
.navbar .account-area a {
    font-size: 13px; /* menor para caber */
    padding: 0.4rem 0.6rem; /* reduz padding horizontal */
    white-space: nowrap; /* impede quebra de linha */
}

/* Tablet >= 768px */
@media (min-width: 768px) {
    .navbar .nav-link,
    .navbar .dropdown-toggle,
    .navbar .account-area a {
        font-size: 14px;
        padding: 0.45rem 0.75rem;
    }
}

/* Notebook >= 1024px */
@media (min-width: 1024px) {
    .navbar .nav-link,
    .navbar .dropdown-toggle,
    .navbar .account-area a {
        font-size: 15px;
        padding: 0.5rem 1rem;
    }
}

/* Desktop >= 1440px */
@media (min-width: 1440px) {
    .navbar .nav-link,
    .navbar .dropdown-toggle,
    .navbar .account-area a {
        font-size: 16px;
        padding: 0.6rem 1.2rem;
    }
}



/* #endregion:  END: Estilo Navbar Master */


@media (max-width: 767px) {
    .nav.nav-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: start !important;
        gap: 12px !important;
        scroll-snap-type: x mandatory;
        padding-left: 16px;
       
    }

        .nav.nav-pills .nav-item {
            flex: 0 0 180px; 
            scroll-snap-align: start;
        }

    .nav-pills .nav-link {
        padding: 6px 14px !important;
    }

    .btn-large {
        padding: 10px 24px !important;
    }

    /* opcional: esconder scrollbar visual, mas manter scroll funcional */
    .nav.nav-pills::-webkit-scrollbar {
        display: none;
    }
}



.footer-image {
    background-image: url("/assets_2025/images/rodape.png"); /* The image used */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
}

#btnTop {
    bottom: 88px;
    right: 30px;
    display: none;
    z-index: 1050;
    width: 50px;
    height: 50px;
}



