/**
- CSS CUSTOM 
- DEV MATH 
- SITE: DESIGNMP.NET
- DATE: 03/05/2026
*/


:root {
    --base-h: 205;
    --base-s: 100%;
    --base-l: 50%;
    --base: var(--base-h) var(--base-s) var(--base-l);
}

.base-color {
    color: hsl(var(--base)) !important;
}

.copyInput {
    display: inline-block;
    line-height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.copied::after {
    position: absolute;
    top: 8px;
    right: 12%;
    width: 100px;
    display: block;
    content: "COPIED";
    font-size: 1em;
    padding: 5px 5px;
    color: #fff;
    background-color: hsl(var(--base));
    border-radius: 3px;
    opacity: 0;
    will-change: opacity, transform;
    animation: showcopied 1.5s ease;
}

@keyframes showcopied {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    50% {
        opacity: 0.7;
        transform: translateX(40%);
    }

    70% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
    }
}




.cookies-card {
    width: 520px;
    padding: 30px;
    color: #1E2337;
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 999999;
    transition: all .5s;
    background: #d1d1d1;
    border-radius: 5px;
}

.cookies-card.hide {
    bottom: -500px !important;
}

.radius--10px {
    border-radius: 10px;
}

.cookies-card__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #6e6f70;
    color: #fff;
    font-size: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content {
    margin-bottom: 0;
}

.cookies-btn {
    color: #363636;
    text-decoration: none;
    padding: 10px 35px;
    margin: 3px 5px;
    display: inline-block;
    border-radius: 999px;
}

.cookies-btn:hover {
    color: #363636;
}


@media (max-width: 767px) {
    .cookies-card {
        width: 100%;
        left: 0;
        bottom: 0;
        font-size: 14px;
        padding: 15px;
    }
}




.hover-input-popup {
    position: relative;
}

.input-popup {
    display: none;
}

.hover-input-popup .input-popup {
    display: block;
    position: absolute;
    bottom: 130%;
    left: 50%;
    width: 280px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.input-popup::after {
    position: absolute;
    content: '';
    bottom: -19px;
    left: 50%;
    margin-left: -5px;
    border-width: 10px 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #1a1a1a transparent;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.input-popup p {
    padding-left: 20px;
    position: relative;
}

.input-popup p::before {
    position: absolute;
    content: '';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    left: 0;
    top: 4px;
    line-height: 1;
    font-size: 18px;
}

.input-popup p.error {
    text-decoration: line-through;
}

.input-popup p.error::before {
    content: "\f057";
    color: #ea5455;
}

.input-popup p.success::before {
    content: "\f058";
    color: #28c76f;
}



.show-filter {
    display: none;
}

@media(max-width:767px) {
    .responsive-filter-card {
        display: none;
        transition: none;
    }

    .show-filter {
        display: block;
    }
}

.modal {
    z-index: 9999;
}


/* ////////////////// select 2 css //////////////// */
.select2-dropdown {
    border: 0 !important;
    border-radius: 5px !important;
    box-shadow: 0px 5px 30px rgb(0 0 0 / 10%);
}

.select2-search--dropdown {
    padding: 10px 10px !important;
    border-color: #ced4da !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-color: #ced4da !important;
    padding: 4px 16px;
    border-radius: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
    padding: 10px 14px !important;
    border-bottom: 1px solid #fffbfb;
    font-size: 14px;
}

.select2-results__option.select2-results__message {
    text-align: center !important;
    padding: 12px 14px !important;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
    width: 8px;
    border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
    background: #ddd;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover {
    background: #ddd;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
    position: absolute;
    right: 10px;
    top: 0;
    content: "\f107";
    font-family: "Line Awesome Free";
    font-weight: 900;
    transition: .3s;
}

.select2-container:has(.select2-selection--single) {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    border-color: hsl(var(--border-color)) !important;
    border-width: 1px !important;
    border-radius: 5px !important;
    padding: 0 !important;
    height: 37px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 7px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
    transform: rotate(-180deg);
}

.select2-results__option:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.select2-results__option:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #f1f1f1 !important;
    color: #000 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: var(--texto) !important;
    box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
    outline: 0 !important;
}

.select2-dropdown .country-flag {
    width: 25px;
    height: 25px;
    border-radius: 8px;
}

.select2-dropdown .gateway-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0px !important;
}

.select2-dropdown .gateway-subtitle {
    font-size: 12px;
    margin-bottom: 0px !important;
}

.select2-container--open .select2-selection.select2-selection--single,
.select2-container--open .select2-selection.select2-selection--multiple {
    border-color: hsl(var(--base)) !important;
    border-radius: .375rem !important;
}


.gateway-card {
    padding: 15px;
}

.payment-card-title {
    padding: 13px 25px;
    text-align: center;
    background-color: hsl(var(--base));
    border-radius: 5px;
    border: 0;
    margin-bottom: 0px;
    color: #fff;
}

.payment-system-list {
    --thumb-width: 100px;
    --thumb-height: 40px;
    --radio-size: 12px;
    --hover-border-color: hsl(var(--base));
    background-color: #fff;
    border: 1px solid hsl(var(--black) / 0.09);
    border-radius: 5px;
    height: 100%;

}


.payment-system-list.is-scrollable {
    max-height: min(388px, 70vh);
    overflow-x: auto;
    padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
    width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
    width: 5px;

}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
    background-color: hsl(var(--base));
    border-radius: 10px;
}

.payment-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 18px;
    border-bottom: 1px solid hsl(var(--black) / 0.09);
    transition: all 0.3s;
    border-left: 3px solid transparent;
    cursor: pointer;
}

.payment-item:first-child {
    border-top-color: #fff;
    border-radius: 5px 5px 0 0;
}

.payment-item:last-child {
    border-bottom: 0;
}

.payment-item:hover {
    background-color: #f9f9f9;
}

.payment-item:has(.payment-item__radio:checked):hover {
    background: transparent !important;
}

.payment-item:has(.payment-item__radio:checked) {
    border-left: 3px solid var(--hover-border-color);
    border-radius: 0px;
}

.payment-item__check {
    border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
    border: 3px solid hsl(var(--base));
}

.payment-item__info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: calc(100% - var(--thumb-width))
}

.payment-item__check {
    width: var(--radio-size);
    height: var(--radio-size);
    border: 1px solid hsl(var(--base));
    display: inline-block;
    border-radius: 100%;

}

.payment-item__name {
    padding-left: 10px;
    width: calc(100% - var(--radio-size));
    transition: all 0.3s;
    color: hsl(var(--black));
    font-weight: 500;
    font-size: 14px;
}

.payment-item__thumb {
    width: var(--thumb-width);
    height: var(--thumb-height);
    text-align: right;
    padding-left: 10px;

    &:has(.text) {
        width: fit-content;
    }
}

@media (max-width: 991px) {
    .gateway-card {
        padding: 0;
    }

    .payment-item {
        padding: 10px;
    }

}

.payment-item__thumb img {
    max-width: var(--thumb-width);
    max-height: var(--thumb-height);
    object-fit: cover;
}

.deposit-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
}

.deposit-info__title {
    width: 50%;
    margin-bottom: 0px;
    text-align: left;
}

.deposit-info__title,
.deposit-info__title p {
    font-size: 14px !important;
    color: hsl(var(--black)) !important;
    font-weight: 500;

}

.deposit-info__input {
    width: 50%;
    text-align: right;
    font-size: 14px !important;
    color: hsl(var(--black)) !important;
}

.deposit-info__input-select {
    border: 1px solid var(--border-color);
    width: 100%;
    border-radius: 5px;
    padding-block: 6px;
}

.deposit-info__input-group {
    border: 1px solid var(--border-color);
    border-radius: 5px;

    .deposit-info__input-group-text {
        align-self: center;
        padding-left: 5px;
    }
}

.deposit-info__input-group:has(.form--control[readonly]) {
    background-color: #f2f2f2 !important;
}

.deposit-info__input-group .form--control {
    padding: 5px;
    border: 0;
    height: 35px;
    text-align: right;
}

.deposit-info__input-group .form--control:focus {
    box-shadow: unset;
}

.info-text .text {
    font-size: 13px;
}

.deposit-info__input .text {
    font-size: 14px;

}

.deposit-info__title .text.has-icon {
    display: flex;
    align-items: center;
    gap: 5px
}

.total-amount {
    border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
    font-weight: 600;
}

.payment-item__btn {
    border: 0;
    border-block: 1px solid var(--border-color);
    border-bottom: 0;
    background: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 15px;
    font-weight: 500;
}

.payment-item:hover+.payment-item__btn {
    border-top-color: #fff;
}

button .spinner-border {
    --bs-spinner-width: 1.5rem;
    --bs-spinner-height: 1.5rem;
}


.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 37px !important;
    color: hsl(var(--black)) !important;
    padding-inline: 20px;
    font-size: 14px;
    padding-right: 32px;
}

/* language */
.language_switcher {
    position: relative;
    padding-right: 20px;
    min-width: max-content;
}

@media(max-width: 991px) {
    .language_switcher {
        padding-block: 6px;
        display: inline-flex;
    }

    .language_switcher_wrapper {
        flex: 1;
        text-align: right;
    }
}

.language_switcher::after {
    font-family: 'Line Awesome Free';
    content: "\f107";
    font-weight: 900;
    font-size: 14px;
    position: absolute;
    margin: 0;
    color: #fff;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all ease 350ms;
    -webkit-transition: all ease 350ms;
    -moz-transition: all ease 350ms;
}

.language_switcher.open:after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.language_switcher__caption {
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.language_switcher__caption .icon {
    position: relative;
    height: 20px;
    width: 20px;
    display: flex;
}

.language_switcher__caption .icon img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.language_switcher__caption .text {
    font-size: 0.875rem;
    font-weight: 500;
    flex: 1;
    color: #fff;
    line-height: 1;
    user-select: none;
}

.language_switcher__list {
    width: 120px;
    border-radius: 8px;
    padding: 0;
    overflow-y: hidden !important;
    background: #fff;
    -webkit-box-shadow: 0px 12px 24px rgba(21, 18, 51, 0.13);
    opacity: 0;
    overflow: hidden;
    -webkit-transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75),
        opacity 0.1s linear;
    transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    position: absolute;
    top: calc(100% + 18px);
    z-index: -1;
    visibility: hidden;
}

.language_switcher__list::-webkit-scrollbar-track {
    border-radius: 3px;
    background-color: hsl(var(--base) / 0.3);
}

.language_switcher__list::-webkit-scrollbar {
    width: 3px;
}

.language_switcher__list::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: hsl(var(--base) / 0.8);
}

.language_switcher__list .text {
    font-size: 0.875rem;
    font-weight: 500;
    color: black;
}

.language_switcher.open .language_switcher__list {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    z-index: 1;
    visibility: visible;
}

.language_switcher__item a {
    cursor: pointer;
    padding: 6px 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.language_switcher__item img {
    height: 20px;
    width: 20px;
    display: block;
    border-radius: 50%;
}

.language_switcher__item:last-of-type {
    border-bottom: 0;
}

.language_switcher__item.selected {
    background: rgba(36, 60, 187, 0.02);
    pointer-events: none;
}

.select2 .dropdown-wrapper {
    display: none;
}

.sort-by {
    gap: 16px;
}

.sort-by .select2-container {
    width: auto !important;
    min-width: 120px;
}


.product-card__thumb .icon {
    position: absolute;
    top: -5px !important;
    z-index: 94;
    left: -34px !important;
    background: hsl(var(--base));
    width: 100px !important;
    text-align: center;
    padding: 5px 10px;
    transform: rotate(-45deg);
    color: hsl(var(--white));
}

.product-card__thumb .icon svg {
    width: 24px;
    height: 24px;
    transform: rotate(45deg);
}

.product-details__thumb {
    position: relative;
    overflow: hidden;
}

.product-details__thumb .icon {
    position: absolute;
    top: -5px !important;
    z-index: 94;
    left: -34px !important;
    background: hsl(var(--success));
    width: 100px !important;
    text-align: center;
    padding: 5px 10px;
    transform: rotate(-45deg);
    color: hsl(var(--white));
}

.product-details__thumb .icon svg {
    width: 24px;
    height: 24px;
    transform: rotate(45deg);
}


.botao {
    /* Estilo Base */
    background-color: var(--botao) !important;
    color: rgb(255, 255, 255);
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    /* Efeitos Visuais */
    box-shadow: 0 4px 15px rgba(0, 100, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Efeito de Brilho no Hover */
.botao:hover {
    background: linear-gradient(135deg, rgb(0, 92, 230) 0%, rgb(0, 180, 255) 100%);
    box-shadow: 0 6px 20px rgba(0, 120, 255, 0.6);
    transform: translateY(-2px);
}

/* Efeito de "Pressionado" */
.botao:active {
    background-color: var(--botao);
    box-shadow: 0 2px 10px rgba(0, 80, 220, 0.5);
    transform: translateY(1px);
}

/* Efeito de Luz Interna (Opcional) */
.botao::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    z-index: -1;
    transition: all 0.5s ease;
}

.botao:hover::before {
    left: 100%;
}

.card {
    background-color: var(--box) !important;
}

.profile-nav-container {
    position: relative;
    margin-bottom: 2rem;
    background: var(--box);
    border-radius: 60px;
    padding: 0.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
}

.profile-nav-scroll {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.5rem 2.5rem;
}

.profile-nav-scroll::-webkit-scrollbar {
    display: none;
}

.profile-nav {
    display: flex;
    gap: 0.25rem;
    min-width: max-content;
}

/* Nav Items */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--texto);
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
}

/* Ícones animados */
.nav-icon {
    position: relative;
    width: 1.1rem;
    height: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-icon i {
    position: absolute;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.nav-icon .nav-icon-hover {
    opacity: 0;
    transform: translateY(4px);
    color: var(--botao);
}

.nav-item:hover .nav-icon i:not(.nav-icon-hover) {
    opacity: 0;
    transform: translateY(-4px);
}

.nav-item:hover .nav-icon .nav-icon-hover {
    opacity: 1;
    transform: translateY(0);
}

/* Labels */
.nav-label {
    transition: all 0.2s ease;
}

/* Badges */
.nav-badge {
    background: linear-gradient(135deg, var(--titulo), var(--botao));
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.15rem 0.45rem;
    border-radius: 30px;
    min-width: 1.3rem;
    text-align: center;
    letter-spacing: -0.2px;
}

.nav-badge.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.nav-badge.danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.nav-badge.success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.nav-badge.pulse {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Hover effect */
.nav-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.05), rgba(72, 202, 228, 0.05));
    border-radius: 50px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-item:hover {
    transform: translateY(-2px);
}

.nav-item:hover::before {
    opacity: 1;
}

/* Active state */
.nav-item.active {
    background: linear-gradient(135deg, var(--titulo), var(--botao));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.nav-item.active .nav-icon i {
    color: white;
}

.nav-item.active .nav-badge {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.nav-item.active::before {
    display: none;
}

/* Scroll Buttons */
.nav-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--box);
    border: 1px solid rgba(0, 119, 182, 0.15);
    color: var(--titulo);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(8px);
}

.nav-scroll-btn:hover {
    background: var(--botao);
    color: white;
    border-color: transparent;
    transform: translateY(-50%) scale(1.05);
}

.nav-scroll-prev {
    left: 8px;
}

.nav-scroll-next {
    right: 8px;
}

/* Hide scroll buttons when not needed */
.profile-nav-scroll:has(.profile-nav:only-child)~.nav-scroll-btn,
.profile-nav-scroll:has(.profile-nav:first-child:last-child)~.nav-scroll-btn {
    display: none;
}

/* Responsive */
@media (max-width: 991px) {
    .profile-nav-container {
        border-radius: 40px;
        margin-bottom: 1.5rem;
    }

    .nav-item {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .nav-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .profile-nav-container {
        border-radius: 30px;
    }

    .nav-item {
        padding: 0.5rem 0.85rem;
    }

    .nav-icon {
        width: 0.9rem;
        height: 0.9rem;
    }

    .nav-icon i {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .profile-nav-scroll {
        padding: 0.4rem 2rem;
    }

    .nav-item {
        gap: 0.35rem;
        padding: 0.45rem 0.7rem;
    }

    .nav-label {
        font-size: 0.7rem;
    }

    .nav-badge {
        font-size: 0.55rem;
        padding: 0.1rem 0.35rem;
    }
}


/* ============================================
   FINTECH HEADER - UNIFICADO 2026
   ============================================ */

.fintech-header {
    background: var(--menu);
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.fintech-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

/* Top Bar */
.fintech-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fintech-header-top__left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.fintech-header-top__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.language-switcher__trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.language-switcher__trigger:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.language-switcher__trigger .lang-flag img {
    width: 20px;
    height: 14px;
    border-radius: 3px;
    object-fit: cover;
}

.lang-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.language-switcher__trigger.active .lang-arrow {
    transform: rotate(180deg);
}

.language-switcher__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--menu);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 140px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.language-switcher__dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.lang-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.lang-item.active {
    background: rgba(72, 202, 228, 0.15);
    color: var(--botao);
}

.lang-item .lang-flag img {
    width: 20px;
    height: 14px;
    border-radius: 3px;
    object-fit: cover;
}

/* Welcome Message */
.welcome-msg {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.welcome-msg strong {
    color: white;
}

.welcome-msg i {
    color: #fbbf24;
    margin-right: 0.25rem;
}

/* Auth Buttons Top */
.auth-buttons {
    display: flex;
    gap: 0.5rem;
}

.auth-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-btn--login {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
}

.auth-btn--login:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.auth-btn--register {
    color: white;
    background: var(--botao);
}

.auth-btn--register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
    color: white;
}

/* User Badge */
.user-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-balance {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.user-balance i {
    color: #fbbf24;
    margin-right: 0.3rem;
}

/* Main Header */
.fintech-header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: -5px 0;
    gap: 1rem;
}

/* Logo */
.fintech-logo {
    flex-shrink: 0;
}

.fintech-logo img {
    height: 30px !important;
    width: auto;
}

/* Mobile Actions */
.fintech-mobile-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.mobile-cart {
    position: relative;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #ef4444;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    padding: 4px;
    cursor: pointer;
}

.hamburger-line {
    width: 24px;
    height: 2.5px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation */
.fintech-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.fintech-nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link i {
    font-size: 0.85rem;
}

.nav-arrow {
    font-size: 0.55rem;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--menu);
    border-radius: 16px;
    padding: 0.5rem;
    min-width: 200px;
    list-style: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.dropdown-link i {
    font-size: 0.75rem;
    color: var(--botao);
}

/* Nav Actions */
.fintech-nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
}

/* Desktop Cart */
.fintech-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fintech-cart:hover {
    background: rgba(72, 202, 228, 0.15);
    color: var(--botao);
}

.fintech-cart .cart-badge {
    top: -2px;
    right: -2px;
}

/* Profile */
.fintech-profile {
    position: relative;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    border: none;
    padding: 0.25rem 0.5rem 0.25rem 0.25rem;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.profile-trigger:hover {
    background: rgba(255, 255, 255, 0.05);
}

.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.profile-name {
    font-size: 0.85rem;
    font-weight: 500;
}

.profile-arrow {
    font-size: 0.55rem;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.5);
}

.profile-trigger.active .profile-arrow {
    transform: rotate(180deg);
}

/* Profile Dropdown */
.profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--menu);
    border-radius: 16px;
    padding: 0.5rem;
    min-width: 260px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-avatar-lg {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-info strong {
    color: white;
    font-size: 0.9rem;
}

.profile-info span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.profile-menu {
    list-style: none;
    padding: 0;
    margin: 0.25rem 0 0;
}

.profile-menu li a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.profile-menu li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.profile-menu li a i {
    width: 20px;
    font-size: 0.9rem;
}

.profile-menu li hr {
    border-color: rgba(255, 255, 255, 0.06);
    margin: 0.25rem 0;
}

/* Desktop Auth Buttons */
.auth-desktop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-login {
    padding: 0.4rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-login:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.btn-register {
    padding: 0.4rem 1.25rem;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    background: linear-gradient(135deg, var(--titulo), var(--botao));
    transition: all 0.3s ease;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
    color: white;
}

/* Mobile Only */
.mobile-only {
    display: none !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .fintech-header-top {
        display: none;
    }

    .fintech-header-main {
        padding: 0.5rem 0;
    }

    .fintech-mobile-actions {
        display: flex;
    }

    .fintech-nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--menu);
        flex-direction: column;
        justify-content: flex-start;
        padding: 1.5rem 1rem;
        transition: right 0.3s ease;
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        z-index: 1060;
    }

    .fintech-nav.open {
        right: 0;
    }

    /* Overlay */
    .fintech-nav::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .fintech-nav.open::before {
        opacity: 1;
        visibility: visible;
    }

    .fintech-nav__list {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 12px;
    }

    .nav-item.dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
        padding: 0.25rem 0;
        margin: 0.25rem 0 0.25rem 1.5rem;
        display: none;
    }

    .nav-item.dropdown .dropdown-menu.open {
        display: block;
    }

    .nav-item.dropdown .nav-arrow {
        margin-left: auto;
    }

    .fintech-nav-actions {
        margin: 1rem 0 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .fintech-cart {
        display: none;
    }

    .fintech-profile {
        width: 100%;
    }

    .profile-trigger {
        width: 100%;
        justify-content: center;
        padding: 0.5rem;
    }

    .profile-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        display: none;
        margin-top: 0.5rem;
    }

    .profile-dropdown.open {
        display: block;
    }

    .profile-header {
        padding: 0.5rem 0.75rem;
    }

    .auth-desktop {
        display: none;
    }

    .mobile-only {
        display: flex !important;
    }

    .mobile-only .nav-link {
        color: rgba(255, 255, 255, 0.6);
    }

    .mobile-only .nav-link:hover {
        color: white;
        background: rgba(255, 255, 255, 0.03);
    }
}

@media (max-width: 576px) {
    .fintech-logo img {
        height: 32px;
    }

    .mobile-cart {
        font-size: 1rem;
    }

    .cart-badge {
        width: 16px;
        height: 16px;
        font-size: 0.5rem;
        top: -4px;
        right: -6px;
    }

    .fintech-nav {
        width: 280px;
        right: -280px;
    }
}


/* ============================================
   FINTECH PRODUCTS PAGE - ESTILO UNIFICADO
   Elegante, Moderno, CodeCanyon Premium
   ============================================ */

:root {
    --card-radius: 16px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* ============================================
   PRODUCTS PAGE - LAYOUT PRINCIPAL
   ============================================ */

.product {
    background: var(--fundo);
    min-height: 100vh;
}

/* Product Inner */
.product__inner {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* Product Body */
.product-body {
    flex: 1;
    min-width: 0;
}

/* Product Grid */
.product-body .row {
    --bs-gutter-y: 1.5rem;
}

/* ============================================
   PRODUCT CARD (x-product)
   ============================================ */

.product-card {
    background: var(--box);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

/* Product Thumb */
.product-card__thumb {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    aspect-ratio: 16/10;
}

.product-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-card__thumb img {
    transform: scale(1.03);
}

/* Product Badges */
.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-card__badge span {
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-trending {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    animation: pulse-badge 2s infinite;
}

.badge-new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.badge-free {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
}

@keyframes pulse-badge {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Product Actions Overlay */
.product-card__actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-smooth);
}

.product-card:hover .product-card__actions {
    opacity: 1;
    transform: translateX(0);
}

.product-card__actions button,
.product-card__actions a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: var(--texto);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    font-size: 0.8rem;
}

.product-card__actions button:hover,
.product-card__actions a:hover {
    background: var(--titulo);
    color: white;
    transform: scale(1.1);
}

.product-card__actions button.liked {
    background: #ef4444;
    color: white;
}

/* Product Content */
.product-card__content {
    padding: 1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--titulo);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.product-card__title a {
    color: inherit;
    text-decoration: none;
}

.product-card__title a:hover {
    color: var(--botao);
}

/* Product Meta */
.product-card__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: rgba(51, 51, 51, 0.6);
    margin-bottom: 0.5rem;
}

.product-card__meta .author {
    color: var(--titulo);
    font-weight: 500;
}

.product-card__meta .author:hover {
    color: var(--botao);
}

/* Product Footer */
.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: auto;
}

.product-card__price {
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    color: #FFF !important;
    background: linear-gradient(135deg, var(--botao), #1a1a8a) !important;
    padding: 6px 16px;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(var(--botao-rgb, 70, 52, 255), 0.3);
    transition: all 0.3s ease;
    position: absolute;
    margin-top: -70px;
    margin-left: 15%;
}

.botao1:hover {
    background-color: var(--botao) !important;
    color: var(--texto) !important;

}

.product-card__price:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--botao-rgb, 70, 52, 255), 0.4);
}

/* Só isso que realmente importa */
.product-card__price.free {
    background: linear-gradient(135deg, #10b981, #059669) !important;
}

.product-card__price .free {
    color: #10b981;
}

.product-card__price .old-price {
    font-size: 0.75rem;
    color: rgba(51, 51, 51, 0.4);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 0.3rem;
}

.product-card__rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: rgba(51, 51, 51, 0.6);
}

.product-card__rating i {
    color: #fbbf24;
    font-size: 0.7rem;
}

.product-card__rating .count {
    font-weight: 500;
}

/* ============================================
   LIST VIEW
   ============================================ */

.product-body.list-view .product-card {
    flex-direction: row;
}

.product-body.list-view .product-card__thumb {
    width: 240px;
    aspect-ratio: 16/10;
    flex-shrink: 0;
}

.product-body.list-view .product-card__content {
    padding: 1.25rem;
}

.product-body.list-view .product-card__actions {
    opacity: 1;
    transform: none;
    flex-direction: row;
    position: static;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .product-body.list-view .product-card {
        flex-direction: column;
    }

    .product-body.list-view .product-card__thumb {
        width: 100%;
    }
}

/* ============================================
   SIDEBAR
   ============================================ */

.product-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: var(--box);
    border-radius: var(--card-radius);
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    align-self: flex-start;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.product-sidebar::-webkit-scrollbar {
    width: 4px;
}

.product-sidebar::-webkit-scrollbar-thumb {
    background: var(--botao);
    border-radius: 10px;
}

.close-sidebar {
    display: none;
}

/* Sidebar Items */
.product-sidebar__item {
    margin-bottom: 1.5rem;
}

.product-sidebar__item:last-child {
    margin-bottom: 0;
}

.product-sidebar__title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--titulo);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 119, 182, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-sidebar__title.has-accordion {
    cursor: pointer;
    position: relative;
}

.product-sidebar__title.has-accordion::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.65rem;
    color: rgba(51, 51, 51, 0.3);
    transition: var(--transition-smooth);
}

.product-sidebar__title.has-accordion.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.product-sidebar__content {
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.product-sidebar__content.hidden {
    max-height: 0 !important;
}

/* Text List */
.text-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-list__item {
    margin-bottom: 0.25rem;
}

.text-list__item:last-child {
    margin-bottom: 0;
}

.text-list__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.6rem;
    color: var(--texto);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.text-list__link:hover {
    background: rgba(0, 119, 182, 0.05);
    color: var(--titulo);
}

.text-list__item.active .text-list__link {
    background: rgba(0, 119, 182, 0.08);
    color: var(--titulo);
    font-weight: 600;
}

/* Radio Buttons */
.form--radio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.form--radio:hover {
    background: rgba(0, 119, 182, 0.03);
}

.form--radio .form-check-input {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(0, 119, 182, 0.3);
    transition: var(--transition-smooth);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.form--radio .form-check-input:checked {
    border-color: var(--botao);
    background-color: var(--botao);
}

.form--radio .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(72, 202, 228, 0.15);
}

.form--radio .form-check-label {
    font-size: 0.85rem;
    color: var(--texto);
    cursor: pointer;
}

/* ============================================
   PRODUCTS TOP
   ============================================ */

.product-details-top {
    background: var(--box);
    border-radius: var(--card-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.product-details__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--titulo);
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.product-details-top__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Custom Tabs */
.custom-tab {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-tab__item {
    position: relative;
}

.custom-tab__link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1.1rem;
    background: rgba(0, 119, 182, 0.05);
    color: var(--texto);
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.8rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.custom-tab__link:hover {
    background: rgba(0, 119, 182, 0.1);
    color: var(--titulo);
    transform: translateY(-1px);
}

.custom-tab__item.active .custom-tab__link {
    background: linear-gradient(135deg, var(--titulo), var(--botao));
    color: white;
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.25);
}

.custom-tab__link .notification {
    background: var(--botao);
    color: white;
    font-size: 0.6rem;
    padding: 0.05rem 0.4rem;
    border-radius: 20px;
    font-weight: 600;
}

/* Product Details Right */
.product-details-top__right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Rating List */
.rating-list {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.rating-list i {
    color: #fbbf24;
    font-size: 0.8rem;
}

.rating-list__text {
    font-size: 0.8rem;
    color: var(--texto);
    font-weight: 500;
}

.sales {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.15rem 0.7rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* ============================================
   ADD TO COLLECTION MODAL
   ============================================ */

.custom--modal .modal-content {
    background: var(--box);
    border-radius: var(--card-radius);
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.custom--modal .modal-header {
    border-bottom: 1px solid rgba(0, 119, 182, 0.08);
    padding: 1.25rem 1.5rem;
}

.custom--modal .modal-title {
    color: var(--titulo);
    font-weight: 700;
    font-size: 1.1rem;
}

.custom--modal .modal-title .product-title {
    font-size: 0.85rem;
    color: var(--texto);
    font-weight: 400;
    opacity: 0.7;
}

.custom--modal .close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--texto);
    transition: var(--transition-smooth);
}

.custom--modal .close:hover {
    color: #ef4444;
    transform: rotate(90deg);
}

/* Collections List */
.collections-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.collections-list .items {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.collections-list .items:last-child {
    border-bottom: none;
}

.collections-list .collection-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    background: transparent;
}

.collections-list .collection-item:hover {
    background: rgba(0, 119, 182, 0.03);
}

.collections-list .collection-item .form-check-input {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 2px solid rgba(0, 119, 182, 0.3);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.collections-list .collection-item .form-check-input:checked {
    background-color: var(--botao);
    border-color: var(--botao);
}

.collections-list .collection-item .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(72, 202, 228, 0.15);
}

.in_list {
    background: rgba(0, 119, 182, 0.06) !important;
    border-radius: 8px;
}

/* New Collection Input */
.new_coll_input {
    background: white;
    border: 1.5px solid rgba(0, 119, 182, 0.15);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    width: 100%;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.new_coll_input:focus {
    border-color: var(--botao);
    box-shadow: 0 0 0 4px rgba(72, 202, 228, 0.1);
    outline: none;
}

.visibility-input {
    display: flex;
    gap: 1rem;
}

/* Modal Footer */
.custom--modal .modal-footer {
    border-top: 1px solid rgba(0, 119, 182, 0.08);
    padding: 1rem 1.5rem;
}

.btn--base {
    background: linear-gradient(135deg, var(--titulo), var(--botao));
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.btn--base:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
    color: white;
}

.btn--sm {
    padding: 0.3rem 1rem;
    font-size: 0.75rem;
}

.btn-outline--base {
    background: transparent;
    border: 1.5px solid var(--titulo);
    color: var(--titulo);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.btn-outline--base:hover {
    background: var(--titulo);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   PAGINATION
   ============================================ */

.pt-30 .pagination {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pt-30 .pagination .page-item {
    display: inline-block;
}

.pt-30 .pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 119, 182, 0.1);
    background: var(--box);
    color: var(--texto);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.pt-30 .pagination .page-link:hover {
    border-color: var(--botao);
    color: var(--titulo);
    transform: translateY(-2px);
}

.pt-30 .pagination .active .page-link {
    background: linear-gradient(135deg, var(--titulo), var(--botao));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.25);
}

.pt-30 .pagination .disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   FORM CONTROLS (Sidebar)
   ============================================ */

.form--control {
    background: white;
    border: 1.5px solid rgba(0, 119, 182, 0.15);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    width: 100%;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    color: var(--texto);
}

.form--control:focus {
    border-color: var(--botao);
    box-shadow: 0 0 0 4px rgba(72, 202, 228, 0.1);
    outline: none;
}

.form--control--sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

/* ============================================
   ADS
   ============================================ */

.ads-728x90 {
    grid-column: 1 / -1;
    text-align: center;
    background: var(--box);
    border-radius: var(--card-radius);
    padding: 1rem;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1199px) {
    .product-sidebar {
        width: 250px;
    }
}

@media (max-width: 991px) {
    .product__inner {
        flex-direction: column;
    }

    .product-sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        padding: 1.25rem;
        z-index: 1060;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.1);
    }

    .product-sidebar.open {
        left: 0;
    }

    .close-sidebar {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.05);
        border: none;
        font-size: 1.2rem;
        color: var(--texto);
        margin-left: auto;
        margin-bottom: 1rem;
        cursor: pointer;
        transition: var(--transition-smooth);
    }

    .close-sidebar:hover {
        background: #ef4444;
        color: white;
    }

    /* Overlay */
    .product-sidebar-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1050;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
    }

    .product-sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    .product-details-top {
        padding: 1rem;
    }

    .product-details__title {
        font-size: 1.2rem;
    }

    .product-details-top__inner {
        flex-direction: column;
    }

    .custom-tab {
        gap: 0.3rem;
    }

    .custom-tab__link {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }

    .product-card__thumb {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 576px) {
    .product-card__title {
        font-size: 0.85rem;
    }

    .product-card__meta {
        font-size: 0.7rem;
        flex-wrap: wrap;
    }

    .product-card__price {
        font-size: 0.95rem;
    }

    .product-card__content {
        padding: 0.75rem 1rem;
    }

    .custom--modal .modal-content {
        margin: 0.5rem;
    }
}


/* ============================================
   NAV ACTIONS (desktop: carrinho + perfil/login)
   ============================================ */
.fintech-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Carrinho desktop */
.fintech-cart {
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    padding: 6px 8px;
    border-radius: 8px;
    transition: all 0.2s;
}

.fintech-cart:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #a78bfa;
}

/* Login/Register desktop */
.auth-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-register {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    background: #6c63ff;
    border: 1px solid #6c63ff;
    transition: all 0.2s;
}

.btn-register:hover {
    background: #574fd6;
    border-color: #574fd6;
}

/* ============================================
   PROFILE DROPDOWN (desktop)
   ============================================ */
.fintech-profile {
    position: relative;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 6px 12px 6px 6px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.2s;
}

.profile-trigger:hover,
.profile-trigger.active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.profile-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.profile-avatar-lg {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.profile-arrow {
    font-size: 10px;
    transition: transform 0.2s;
    opacity: 0.7;
}

.profile-trigger.active .profile-arrow {
    transform: rotate(180deg);
}

.profile-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #1e1b4b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 240px;
    z-index: 500;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.profile-dropdown.open {
    display: block;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(108, 99, 255, 0.1);
}

.profile-info strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.profile-info span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.profile-menu {
    list-style: none;
    padding: 8px;
    margin: 0;
}

.profile-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 7px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13.5px;
    transition: all 0.15s;
}

.profile-menu li a:hover {
    background: rgba(108, 99, 255, 0.2);
    color: #c4b5fd;
}

.profile-menu li a.text-danger {
    color: #f87171;
}

.profile-menu li a.text-danger:hover {
    background: rgba(248, 113, 113, 0.1);
    color: #fca5a5;
}

.profile-menu li a i {
    font-size: 15px;
    width: 18px;
    text-align: center;
    opacity: 0.8;
}

.profile-menu hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin: 4px 0;
}

/* ============================================
   SIDEBAR HEADER (mobile — topo do menu)
   ============================================ */
.sidebar-header {
    display: none;
}

/* ============================================
   SIDEBAR AUTH SECTION (mobile — login/cadastro)
   ============================================ */
.sidebar-auth-section {
    display: none;
}

/* ============================================
   MOBILE ONLY nav items (apenas no sidebar)
   ============================================ */
.nav-item.mobile-only {
    display: none;
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 991px) {

    /* Mostrar ações mobile */
    .fintech-mobile-actions {
        display: flex;
    }

    /* Esconder top bar auth (substituído pelo sidebar) */
    .fintech-header-top .auth-buttons {
        display: none;
    }

    /* Nav vira sidebar */
    .fintech-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 290px;
        height: 100vh;
        background: #12103a;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        padding: 0;
        z-index: 999;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        overflow-x: hidden;
    }

    .fintech-nav.open {
        right: 0;
    }

    /* ---- Topo do sidebar: logo + botão fechar ---- */
    .sidebar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 16px 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        flex-shrink: 0;
    }

    .sidebar-header .sidebar-logo img {
        height: 30px;
        width: auto;
        display: block;
    }

    .sidebar-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.7);
        cursor: pointer;
        font-size: 16px;
        transition: all 0.2s;
        flex-shrink: 0;
    }

    .sidebar-close:hover {
        background: rgba(248, 113, 113, 0.15);
        border-color: rgba(248, 113, 113, 0.3);
        color: #f87171;
    }

    /* ---- Seção de login/cadastro no sidebar ---- */
    .sidebar-auth-section {
        display: flex;
        gap: 8px;
        width: 100%;
        padding: 14px 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        flex-shrink: 0;
    }

    .sidebar-auth-section .auth-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 8px;
    }

    /* ---- Lista de itens ---- */
    .fintech-nav__list {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
        padding: 10px 0;
        flex: 1;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 12px 18px;
        border-radius: 0;
        color: rgba(255, 255, 255, 0.8);
        font-size: 14.5px;
        justify-content: flex-start;
        gap: 10px;
    }

    .nav-link:hover {
        background: rgba(108, 99, 255, 0.12);
        color: #c4b5fd;
        border-radius: 0;
    }

    /* ---- Dropdown mobile: abre para BAIXO ---- */
    .nav-item.dropdown>.dropdown-menu {
        position: static;
        /* sai do posicionamento absoluto */
        display: none;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 0;
        min-width: 100%;
        width: 100%;
        padding: 4px 0;
        box-shadow: none;
    }

    .nav-item.dropdown>.dropdown-menu.open {
        display: block;
        /* abre empurrando os itens abaixo */
    }

    .dropdown-link {
        padding: 11px 18px 11px 38px;
        /* recuo para sub-item */
        border-radius: 0;
        font-size: 13.5px;
        color: rgba(255, 255, 255, 0.6);
    }

    .dropdown-link:hover {
        background: rgba(108, 99, 255, 0.12);
        color: #c4b5fd;
        border-radius: 0;
    }

    .dropdown-link i {
        font-size: 12px;
    }

    /* Seta vira para baixo quando aberto */
    .nav-item.dropdown>.nav-link .nav-arrow {
        margin-left: auto;
        font-size: 12px;
        transition: transform 0.2s;
    }

    .nav-item.dropdown>.nav-link.open .nav-arrow {
        transform: rotate(180deg);
    }

    /* ---- Mostrar itens mobile-only ---- */
    .nav-item.mobile-only {
        display: block;
    }

    /* ---- Esconder ações de desktop dentro da nav ---- */
    .fintech-nav-actions {
        display: none;
    }
}

/* ============================================
   FEATURED SECTION - FINTECH STYLE
   Centralizado, Elegante, Moderno
   ============================================ */

.featured-section {
    background: var(--fundo);
    position: relative;
    overflow: hidden;
}

/* Header Centralizado */
.featured-header {
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--titulo), var(--botao));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.3rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.featured-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--titulo);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.featured-title span {
    background: linear-gradient(135deg, var(--titulo), var(--botao));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-subtitle {
    font-size: 1.1rem;
    color: var(--texto);
    opacity: 0.7;
    max-width: 500px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.featured-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-featured {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--titulo), var(--botao));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.2);
}

.btn-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.3);
    color: white;
}

.btn-featured i {
    font-size: 0.9rem;
}

/* Decoração do Header */
.featured-header::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.featured-header::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -80px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(72, 202, 228, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Produtos Grid */
.featured-products {
    position: relative;
}

.featured-products .row {
    --bs-gutter-y: 1.5rem;
}

/* ADS */
.featured-ads {
    margin-top: 2rem;
    text-align: center;
}

.featured-ads>div {
    display: inline-block;
    background: var(--box);
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .featured-title {
        font-size: 2rem;
    }

    .featured-subtitle {
        font-size: 1rem;
    }

    .featured-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .featured-section {
        padding: 40px 0;
    }

    .featured-title {
        font-size: 1.6rem;
    }

    .featured-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .btn-featured {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }

    .featured-badge {
        font-size: 0.6rem;
        padding: 0.2rem 1rem;
    }
}

@media (max-width: 576px) {
    .featured-title {
        font-size: 1.4rem;
    }

    .featured-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-featured {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
       HERO BANNER - FINTECH MARKETPLACE
       Moderno, Premium, Animado
       ============================================ */

.hero-banner {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--box);
}

/* Background com gradiente e partículas */
.hero-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-banner__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 119, 182, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(72, 202, 228, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 119, 182, 0.05) 0%, transparent 50%);
}

/* Partículas Animadas */
.hero-banner__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--botao);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle linear infinite;
}

.particle-1 {
    left: 10%;
    top: 20%;
    animation-duration: 20s;
    animation-delay: 0s;
    width: 8px;
    height: 8px;
    background: rgba(72, 202, 228, 0.2);
}

.particle-2 {
    right: 15%;
    top: 30%;
    animation-duration: 25s;
    animation-delay: 2s;
    width: 12px;
    height: 12px;
    background: rgba(0, 119, 182, 0.15);
}

.particle-3 {
    left: 30%;
    bottom: 20%;
    animation-duration: 18s;
    animation-delay: 4s;
    background: rgba(72, 202, 228, 0.25);
}

.particle-4 {
    right: 25%;
    bottom: 30%;
    animation-duration: 22s;
    animation-delay: 1s;
    width: 10px;
    height: 10px;
    background: rgba(0, 119, 182, 0.2);
}

.particle-5 {
    left: 50%;
    top: 50%;
    animation-duration: 30s;
    animation-delay: 3s;
    width: 15px;
    height: 15px;
    background: rgba(72, 202, 228, 0.08);
}

@keyframes float-particle {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translate(30px, -50px) scale(1.2);
        opacity: 0.6;
    }

    50% {
        transform: translate(-20px, -100px) scale(0.8);
        opacity: 0.3;
    }

    75% {
        transform: translate(40px, -150px) scale(1.1);
        opacity: 0.5;
    }

    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
}

/* Container */
.hero-banner .container {
    position: relative;
    z-index: 1;
}

.hero-banner__wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 4rem 0;
}

/* Content Left */
.hero-banner__content {
    flex: 1;
    max-width: 600px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(72, 202, 228, 0.12);
    border: 1px solid rgba(72, 202, 228, 0.2);
    color: var(--botao);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    position: relative;
}

.hero-badge__pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-badge i {
    font-size: 0.9rem;
}

/* Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--titulo);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    position: relative;
}

.hero-title__highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--titulo), var(--botao));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-underline {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 12px;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--texto);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

/* Search Box */
.hero-search {
    margin-bottom: 2.5rem;
}

.hero-search__wrapper {
    display: flex;
    align-items: center;
    background: var(--box);
    border: 1px solid var(--botao);
    border-radius: 60px;
    padding: 0.3rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 0 4px rgba(72, 202, 228, 0.1);
}

.hero-search__wrapper:focus-within {
    border-color: var(--botao);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(72, 202, 228, 0.1);
}

.search-icon {
    color: rgba(255, 255, 255, 0.3);
    padding: 0 1rem;
    font-size: 0.9rem;
}

.hero-search__input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem 0;
    color: var(--texto) !important;
    font-size: 0.95rem;
    outline: none;
}

.hero-search__input::placeholder {
    color: var(--texto) !important;
}

.hero-search__btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.8rem;
    background: var(--botao);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-search__btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 119, 182, 0.3);
}

.hero-search__btn i {
    transition: transform 0.3s ease;
}

.hero-search__btn:hover i {
    transform: translateX(4px);
}

/* Search Tags */
.hero-search__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.tag-label {
    color: var(--texto);
    font-size: 0.8rem;
    font-weight: 500;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--texto);
    font-size: 0.75rem;
    text-decoration: none;
    padding: 0.2rem 0.8rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.tag-item:hover {
    background: rgba(72, 202, 228, 0.1);
    color: var(--botao);
    border-color: rgba(72, 202, 228, 0.2);
    transform: translateY(-1px);
}

.tag-item i {
    font-size: 0.5rem;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--texto);
    letter-spacing: -0.5px;
}

.stat-number.counted {
    animation: count-up 2s ease-out forwards;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--texto);
    font-weight: 500;
    margin-top: 0.1rem;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: var(--botao);
}

/* Visual Right */
.hero-banner__visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual__wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.hero-visual__image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 3;
    animation: float-card 4s ease-in-out infinite;
}

.floating-card .card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.floating-card .card-content i {
    font-size: 1.2rem;
    color: var(--botao);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(72, 202, 228, 0.1);
    border-radius: 10px;
}

.floating-card .card-content strong {
    color: var(--texto);
    font-size: 0.9rem;
    display: block;
}

.floating-card .card-content span {
    color: var(--texto);
    font-size: 0.7rem;
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -8%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 10%;
    right: 5%;
    animation-delay: 3s;
}

@keyframes float-card {

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

    50% {
        transform: translateY(-10px);
    }
}

/* Decoração Visual */
.hero-visual__decoration {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(72, 202, 228, 0.08);
}

.deco-1 {
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    animation: rotate-slow 20s linear infinite;
}

.deco-2 {
    bottom: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    border-color: rgba(0, 119, 182, 0.06);
    animation: rotate-slow 15s linear infinite reverse;
}

.deco-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-color: rgba(72, 202, 228, 0.04);
    animation: rotate-slow 25s linear infinite;
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Wave Bottom */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* ============================================
       RESPONSIVE
       ============================================ */

@media (max-width: 1199px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 991px) {
    .hero-banner__wrapper {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
        gap: 2rem;
    }

    .hero-banner__content {
        max-width: 100%;
        text-align: center;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-search__wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-search__tags {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual__wrapper {
        max-width: 400px;
    }

    .hero-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-search__wrapper {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 0.5rem;
    }

    .hero-search__input {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 0.8rem 1.2rem;
        width: 100%;
    }

    .hero-search__btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem;
    }

    .search-icon {
        display: none;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        align-items: center;
        padding: 0.5rem 1rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
        min-width: 100px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .hero-visual__wrapper {
        max-width: 300px;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.3rem 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-search__tags {
        gap: 0.3rem;
    }

    .tag-item {
        font-size: 0.65rem;
        padding: 0.15rem 0.6rem;
    }

    .tag-label {
        font-size: 0.7rem;
    }
}


/* ============================================
           CART PAGE - FINTECH STYLE
           USANDO AS CLASSES CORRETAS DO HTML
           ============================================ */

.cart-page {
    background: var(--fundo);
    padding: 60px 0 80px;
}

/* Header */
.cart-page .cart-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cart-page .cart-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 119, 182, 0.08);
    color: var(--titulo);
    padding: 0.3rem 1.2rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.cart-page .cart-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--titulo);
    margin-bottom: 0.5rem;
}

.cart-page .cart-subtitle {
    color: var(--texto);
    opacity: 0.6;
    font-size: 1rem;
}

/* Cart Items */
.cart-page .cart-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-page .cart-item {
    background: var(--box);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 119, 182, 0.06);
    transition: all 0.3s ease;
}

.cart-page .cart-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.cart-page .cart-item__inner {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

/* Thumb */
.cart-page .cart-item__thumb {
    flex-shrink: 0;
}

.cart-page .cart-item__thumb a {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
}

.cart-page .cart-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart-page .cart-item__thumb a:hover img {
    transform: scale(1.05);
}

/* Content */
.cart-page .cart-item__content {
    flex: 1;
    min-width: 0;
}

.cart-page .cart-item__title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-page .cart-item__title a {
    color: var(--titulo);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cart-page .cart-item__title a:hover {
    color: var(--botao);
}

.cart-page .cart-item__category {
    font-size: 0.8rem;
    color: rgba(51, 51, 51, 0.5);
}

.cart-page .cart-item__category a {
    color: var(--titulo);
    text-decoration: none;
}

.cart-page .cart-item__category a:hover {
    color: var(--botao);
}

/* Extended Support */
.cart-page .cart-item__extended {
    margin-top: 0.5rem;
}

.cart-page .cart-item__extended .form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.cart-page .cart-item__extended .form-check-input {
    width: 36px;
    height: 20px;
    background-color: #e2e8f0;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin: 0;
}

.cart-page .cart-item__extended .form-check-input:checked {
    background: linear-gradient(135deg, var(--titulo), var(--botao));
}

.cart-page .cart-item__extended .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(72, 202, 228, 0.15);
}

.cart-page .cart-item__extended .form-check-label {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--texto);
    cursor: pointer;
    margin: 0;
}

.cart-page .cart-item__extended .form-check-label i {
    color: var(--botao);
}

.cart-page .extended-price {
    font-weight: 600;
    color: var(--titulo);
}

/* Remove */
.cart-page .cart-item__remove {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: transparent;
    border: none;
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.25rem;
}

.cart-page .cart-item__remove:hover {
    color: #dc2626;
    transform: translateX(-2px);
}

.cart-page .cart-item__remove i {
    font-size: 0.7rem;
}

/* Price */
.cart-page .cart-item__price {
    text-align: right;
    flex-shrink: 0;
    padding-left: 1rem;
    border-left: 1px solid rgba(0, 0, 0, 0.04);
}

.cart-page .price-label {
    display: block;
    font-size: 0.65rem;
    color: rgba(51, 51, 51, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-page .price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--titulo);
}

/* ============================================
           ORDER SUMMARY
           ============================================ */

.cart-page .order-summary {
    background: var(--box);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 119, 182, 0.06);
    position: sticky;
    top: 100px;
}

.cart-page .order-summary__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--titulo);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-page .order-summary__title i {
    color: var(--botao);
}

.cart-page .order-summary__items {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.cart-page .order-summary__items::-webkit-scrollbar {
    width: 4px;
}

.cart-page .order-summary__items::-webkit-scrollbar-thumb {
    background: var(--botao);
    border-radius: 10px;
}

.cart-page .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    font-size: 0.85rem;
    color: var(--texto);
}

.cart-page .summary-item__name {
    opacity: 0.7;
    max-width: 70%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-page .summary-item__price {
    font-weight: 500;
}

.cart-page .order-summary__divider {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin: 0.75rem 0;
}

.cart-page .order-summary__row {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.cart-page .order-summary__row .label {
    color: rgba(51, 51, 51, 0.6);
}

.cart-page .order-summary__row .value {
    font-weight: 500;
    color: var(--texto);
}

.cart-page .order-summary__row .value.text-success {
    color: #10b981 !important;
}

/* Coupon */
.cart-page .coupon-section {
    margin: 0.75rem 0;
}

.cart-page .coupon-input-wrapper {
    display: flex;
    align-items: center;
    background: var(--fundo);
    border-radius: 12px;
    padding: 0.25rem;
    border: 1px solid rgba(0, 119, 182, 0.08);
    transition: all 0.3s ease;
}

.cart-page .coupon-input-wrapper:focus-within {
    border-color: var(--botao);
    box-shadow: 0 0 0 3px rgba(72, 202, 228, 0.1);
}

.cart-page .coupon-input-wrapper i {
    padding: 0 0.75rem;
    color: rgba(51, 51, 51, 0.3);
    font-size: 0.85rem;
}

.cart-page .coupon-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.6rem 0;
    font-size: 0.85rem;
    color: var(--texto);
    outline: none;
}

.cart-page .coupon-input::placeholder {
    color: rgba(51, 51, 51, 0.3);
}

.cart-page .coupon-apply {
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--titulo), var(--botao));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cart-page .coupon-apply:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.2);
}

/* Total */
.cart-page .order-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.cart-page .total-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--texto);
}

.cart-page .total-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--titulo);
}

/* Checkout */
.cart-page .btn-checkout {
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, var(--titulo), var(--botao));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.cart-page .btn-checkout:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.3);
}

.cart-page .btn-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cart-page .btn-checkout i {
    font-size: 0.85rem;
}

/* Secure */
.cart-page .order-summary__secure {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: rgba(51, 51, 51, 0.4);
}

.cart-page .order-summary__secure i {
    color: #10b981;
    margin-right: 0.3rem;
}

.cart-page .order-summary__secure strong {
    color: var(--titulo);
}

/* Empty */
.cart-page .cart-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--box);
    border-radius: 16px;
}

.cart-page .cart-empty__icon {
    font-size: 4rem;
    color: rgba(0, 119, 182, 0.15);
    margin-bottom: 1rem;
}

.cart-page .cart-empty h4 {
    color: var(--titulo);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cart-page .cart-empty p {
    color: var(--texto);
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.cart-page .btn-empty {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.8rem;
    background: linear-gradient(135deg, var(--titulo), var(--botao));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cart-page .btn-empty:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
    color: white;
}

/* ============================================
           RESPONSIVE
           ============================================ */

@media (max-width: 991px) {
    .cart-page .cart-item__inner {
        flex-wrap: wrap;
    }

    .cart-page .cart-item__price {
        width: 100%;
        padding-left: 0;
        border-left: none;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding-top: 0.5rem;
        margin-top: 0.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.04);
    }

    .cart-page .price-label {
        font-size: 0.7rem;
    }

    .cart-page .order-summary {
        position: static;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .cart-page {
        padding: 40px 0;
    }

    .cart-page .cart-title {
        font-size: 1.6rem;
    }

    .cart-page .cart-item {
        padding: 1rem;
    }

    .cart-page .cart-item__thumb a {
        width: 60px;
        height: 60px;
    }

    .cart-page .cart-item__title {
        font-size: 0.85rem;
    }

    .cart-page .cart-item__extended .form-check-label {
        font-size: 0.7rem;
    }

    .cart-page .price-value {
        font-size: 0.95rem;
    }

    .cart-page .order-summary {
        padding: 1rem;
    }

    .cart-page .total-value {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .cart-page .cart-item__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .cart-page .cart-item__thumb {
        display: flex;
        justify-content: center;
    }

    .cart-page .cart-item__thumb a {
        width: 100px;
        height: 100px;
    }

    .cart-page .cart-item__content {
        text-align: center;
    }

    .cart-page .cart-item__category {
        justify-content: center;
    }

    .cart-page .cart-item__extended .form-check {
        justify-content: center;
    }

    .cart-page .cart-item__remove {
        justify-content: center;
        width: 100%;
    }

    .cart-page .cart-item__price {
        justify-content: center;
        border-top: 1px solid rgba(0, 0, 0, 0.04);
        padding-top: 0.75rem;
    }

    .cart-page .coupon-input-wrapper {
        flex-wrap: wrap;
        background: transparent;
        border: none;
        padding: 0;
        gap: 0.5rem;
    }

    .cart-page .coupon-input {
        width: 100%;
        background: var(--fundo);
        padding: 0.6rem 1rem;
        border-radius: 12px;
        border: 1px solid rgba(0, 119, 182, 0.08);
    }

    .cart-page .coupon-apply {
        width: 100%;
        padding: 0.6rem;
    }

    .cart-page .btn-checkout {
        font-size: 0.85rem;
        padding: 0.7rem;
    }
}

/* Adicione no seu arquivo CSS */

/* Botão de Compra DS */
.btn-ds-buy {
    background: var(--botao);
    color: white !important;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
}

.btn-ds-buy:hover {
    background: var(--botao);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    color: white !important;
    text-decoration: none !important;
}

.btn-ds-buy:active {
    transform: translateY(0);
}

.btn-ds-buy i {
    font-size: 1.1rem;
}

/* Badge DS */
.ds-product-banner .ds-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--botao);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.ds-product-banner .ds-badge i {
    font-size: 0.9rem;
}

/* Selos de Segurança */
.ds-security-badges .badge {
    padding: 6px 14px;
    font-weight: 500;
    border-radius: 50px;
    font-size: 0.75rem;
}

.ds-security-badges .badge i {
    margin-right: 4px;
}

/* Alert personalizado */
.ds-product-banner .alert-info {
    background: #f0f4ff;
    border-color: #c7d8ff;
    color: #4a6fa5;
    border-radius: 10px;
    padding: 10px 14px;
}

/* Preços DS */
.ds-pricing {
    background: #f8f9fa;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.ds-pricing .fw-bold {
    font-size: 1.1rem;
}

.ds-pricing del {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 768px) {
    .btn-ds-buy {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .ds-security-badges {
        flex-wrap: wrap;
        gap: 6px !important;
    }

    .ds-security-badges .badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

/* Estilos para a galeria */
.gallery-main {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-main-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f5f5f5;
}

.gallery-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery-thumbnails {
    margin-top: 15px;
    padding: 10px 0;
}

.thumbnails-wrapper {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
    scrollbar-width: thin;
}

.thumbnails-wrapper::-webkit-scrollbar {
    height: 6px;
}

.thumbnails-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.thumbnails-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.thumbnail-item {
    flex: 0 0 80px;
    height: 80px;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.thumbnail-item:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: #007bff;
    opacity: 1;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ajuste para áudio */
.audio-card .gallery-main {
    min-height: 100px;
}

/* Responsividade */
@media (max-width: 768px) {
    .gallery-main-image {
        height: 300px;
    }

    .thumbnail-item {
        flex: 0 0 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .gallery-main-image {
        height: 250px;
    }

    .thumbnail-item {
        flex: 0 0 50px;
        height: 50px;
    }
}

.screenshots-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.screenshot-thumb {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.screenshot-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshot-thumb .remove-screenshot {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.screenshot-thumb .remove-screenshot:hover {
    transform: scale(1.2);
    background: #ff0000;
}

/* Media file info */
.media-file-info {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.media-file-info i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.media-file-info p {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    word-break: break-all;
    max-width: 100%;
}

.media-file-info small {
    color: #6c757d;
    font-size: 12px;
}

.media-file-info .file-size {
    display: inline-block;
    margin-top: 5px;
    padding: 2px 12px;
    background: #e9ecef;
    border-radius: 20px;
    font-size: 12px;
    color: #495057;
}

/* Screenshots grid */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 10px;
    min-height: 120px;
}

.screenshot-thumb.existing {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

.screenshot-thumb.existing img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshot-thumb.existing .screenshot-label {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
}

.screenshot-add-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s;
    color: #6c757d;
}

.screenshot-add-more:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.screenshot-add-more i {
    font-size: 24px;
    margin-bottom: 4px;
}

.screenshot-add-more span {
    font-size: 11px;
}

.existing-file {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #28a745;
    font-size: 13px;
    margin-left: 8px;
}

.existing-file i {
    font-size: 14px;
}

/* Product Details Top Styles - Prefixo pd- para evitar conflitos com Bootstrap */
.pd-top {
    background: var(--box);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

/* Product Status Alerts */
.pd-alerts {
    animation: pdSlideDown 0.5s ease;
}

@keyframes pdSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Header */
.pd-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pd-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--titulo);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Product Meta Wrapper */
.pd-meta-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(var(--texto-rgb), 0.08);
}

/* Navigation */
.pd-nav {
    flex: 1;
    min-width: 0;
}

.pd-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pd-nav-item {
    position: relative;
}

.pd-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    color: var(--texto);
    background: transparent;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
}

.pd-nav-link i {
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.pd-nav-link:hover {
    background: rgba(var(--botao-rgb), 0.08);
    color: var(--botao);
    transform: translateY(-2px);
    text-decoration: none;
}

.pd-nav-link:hover i {
    opacity: 1;
}

.pd-nav-item.active .pd-nav-link {
    background: var(--botao);
    color: white;
    border-color: var(--botao);
    box-shadow: 0 4px 15px rgba(var(--botao-rgb), 0.3);
}

.pd-nav-item.active .pd-nav-link i {
    opacity: 1;
}

/* Badge */
.pd-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 50px;
    background: rgba(var(--botao-rgb), 0.15);
    color: var(--botao);
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pd-nav-item.active .pd-badge {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

/* Product Stats */
.pd-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.pd-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pd-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pd-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.pd-stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.pd-rating-count {
    color: var(--texto);
    font-size: 0.85rem;
    font-weight: 500;
}

.pd-sales {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--texto);
    font-weight: 500;
    font-size: 0.9rem;
}

.pd-sales i {
    color: var(--titulo);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .pd-top {
        padding: 1.5rem;
    }

    .pd-meta-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .pd-nav-list {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .pd-nav-list::-webkit-scrollbar {
        height: 4px;
    }

    .pd-nav-list::-webkit-scrollbar-track {
        background: rgba(var(--texto-rgb), 0.05);
        border-radius: 4px;
    }

    .pd-nav-list::-webkit-scrollbar-thumb {
        background: var(--botao);
        border-radius: 4px;
    }

    .pd-nav-link {
        white-space: nowrap;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .pd-stats {
        justify-content: flex-start;
        gap: 1rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(var(--texto-rgb), 0.08);
    }
}

@media (max-width: 576px) {
    .pd-top {
        padding: 1rem;
        border-radius: 12px;
    }

    .pd-title {
        font-size: 1.3rem;
    }

    .pd-nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        gap: 0.3rem;
    }

    .pd-nav-link i {
        font-size: 0.85rem;
    }

    .pd-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        width: 100%;
    }

    .pd-social {
        width: 100%;
        justify-content: flex-start;
    }

    .pd-rating {
        width: 100%;
    }

    .pd-sales {
        width: 100%;
    }
}

/* Animation for active tab indicator */
.pd-nav-item.active .pd-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--botao);
    border-radius: 3px;
}

/* Hover effects for desktop */
@media (min-width: 993px) {
    .pd-nav-link {
        position: relative;
    }

    .pd-nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 60%;
        height: 3px;
        background: var(--botao);
        border-radius: 3px;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .pd-nav-link:hover::after {
        transform: translateX(-50%) scaleX(1);
    }

    .pd-nav-item.active .pd-nav-link::after {
        transform: translateX(-50%) scaleX(1);
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .pd-top {
        background: rgba(var(--box), 0.8);
    }

    .pd-nav-link {
        color: rgba(var(--texto-rgb), 0.9);
    }

    .pd-nav-link:hover {
        background: rgba(var(--botao-rgb), 0.15);
    }

    .pd-meta-wrapper {
        border-top-color: rgba(var(--texto-rgb), 0.15);
    }
}

/* Ajustes finos para a sidebar */
.profile-content {
    background: var(--box, #f5f5f5);
    border-radius: 16px;
    padding: 1.5rem;
    min-height: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Animações suaves */
.profile-sidebar,
.profile-content {
    transition: all 0.3s ease;
}

/* Scrollbar personalizada para a sidebar */
.profile-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

/* Melhorias no hover dos links */
.profile-sidebar__nav .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--botao, #48cae4);
    border-radius: 0 3px 3px 0;
    transition: height 0.3s ease;
}

.profile-sidebar__nav .nav-link:hover::before,
.profile-sidebar__nav .nav-link.active::before {
    height: 60%;
}

/* Responsividade extra */
@media (max-width: 768px) {
    .profile-content {
        padding: 1rem;
        min-height: 300px;
    }
}

/* ===== ESTILOS DA SIDEBAR ===== */
.profile-sidebar {
    background: var(--box, #f5f5f5);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 90px;
    height: fit-content;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.profile-sidebar::-webkit-scrollbar {
    width: 3px;
}

.profile-sidebar::-webkit-scrollbar-thumb {
    background: var(--botao, #48cae4);
    border-radius: 10px;
}

/* Botão de fechar (mobile) */
.profile-sidebar__close {
    display: none;
    justify-content: flex-end;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 0.75rem;
}

.profile-sidebar__close .btn-close {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Mobile toggle button */
.profile-mobile-toggle {
    display: none;
    position: fixed;
    bottom: 95px !important;
    right: 20px;
    z-index: 999;
    background: var(--botao, #48cae4);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(72, 202, 228, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-mobile-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(72, 202, 228, 0.5);
}

.profile-mobile-toggle i {
    font-size: 1rem;
}

/* Overlay */
.profile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    backdrop-filter: blur(4px);
    animation: fadeInOverlay 0.3s ease;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===== HEADER COMPACTO ===== */
.profile-sidebar__header {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 1rem;
}

.author-avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.author-avatar-wrapper .author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--botao, #48cae4);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.author-avatar-wrapper .author-avatar:hover {
    transform: scale(1.05);
}

.author-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.3);
}

.author-name {
    color: var(--titulo, #0077b6);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.author-member-since {
    font-size: 0.7rem;
    color: var(--texto, #333333);
    opacity: 0.6;
    display: block;
}

.author-member-since i {
    margin-right: 4px;
}

/* ===== SALDO ===== */
.profile-sidebar__balance {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 0.75rem;
}

.balance-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--texto, #333333);
    opacity: 0.5;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.balance-info {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.balance-amount {
    font-weight: 700;
    color: var(--titulo, #0077b6);
    font-size: 1rem;
}

.balance-status {
    font-size: 0.6rem;
    color: var(--texto, #333333);
    opacity: 0.5;
}

/* ===== STATS ===== */
.profile-sidebar__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 0.75rem;
}

.stat-item {
    text-align: center;
    padding: 0.4rem 0.25rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.4);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
}

.stat-icon {
    display: block;
    font-size: 0.9rem;
    color: var(--botao, #48cae4);
    margin-bottom: 0.1rem;
}

.stat-value {
    font-weight: 700;
    color: var(--titulo, #0077b6);
    font-size: 0.9rem;
    display: block;
}

.stat-label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--texto, #333333);
    opacity: 0.5;
    text-transform: uppercase;
}

/* ===== NAVEGAÇÃO ===== */
.profile-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.profile-sidebar__nav .nav-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    color: var(--texto, #333333);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.profile-sidebar__nav .nav-link i {
    width: 18px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--texto, #333333);
    opacity: 0.5;
    transition: all 0.2s ease;
}

.profile-sidebar__nav .nav-link:hover {
    background: rgba(72, 202, 228, 0.06);
    color: var(--botao, #48cae4);
    padding-left: 0.75rem;
}

.profile-sidebar__nav .nav-link:hover i {
    opacity: 1;
    color: var(--botao, #48cae4);
}

.profile-sidebar__nav .nav-link.active {
    background: var(--botao, #48cae4);
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(72, 202, 228, 0.25);
}

.profile-sidebar__nav .nav-link.active i {
    opacity: 1;
    color: white;
}

.profile-sidebar__nav .nav-badge {
    margin-left: auto;
    background: var(--titulo, #0077b6);
    color: white;
    font-size: 0.6rem;
    padding: 0.1rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
    min-width: 18px;
    text-align: center;
    line-height: 1.4;
}

.profile-sidebar__nav .nav-badge.warning {
    background: #ff9800;
}

.profile-sidebar__nav .nav-badge.danger {
    background: #f44336;
}

.profile-sidebar__nav .nav-badge.success {
    background: #4CAF50;
}

.profile-sidebar__nav .nav-badge.pulse {
    background: #ff5722;
    animation: pulse-badge 1.5s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

/* ===== BOTÃO FOLLOW ===== */
.follow-form .btn {
    border-radius: 20px;
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    transition: all 0.3s ease;
}

.follow-form .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(72, 202, 228, 0.25);
}

/* ===== LAYOUT PRINCIPAL ===== */
.profile-page .container {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.profile-content {
    background: var(--box, #f5f5f5);
    border-radius: 12px;
    padding: 1.5rem;
    min-height: 400px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .profile-page .container {
        grid-template-columns: 220px 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {

    /* Esconde a sidebar por padrão no mobile */
    .profile-sidebar {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        max-height: 100vh;
        z-index: 1050;
        border-radius: 0;
        padding: 1.25rem;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: var(--box, #f5f5f5);
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        border: none;
    }

    .profile-sidebar.open {
        right: 0;
    }

    /* Mostra o botão de fechar no mobile */
    .profile-sidebar__close {
        display: flex;
    }

    /* Mostra o botão toggle no mobile */
    .profile-mobile-toggle {
        display: flex;
    }

    /* Mostra o overlay quando a sidebar está aberta */
    .profile-overlay.active {
        display: block;
    }

    .profile-page .container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .profile-content {
        padding: 1rem;
        min-height: 300px;
    }

    .author-avatar-wrapper .author-avatar {
        width: 60px;
        height: 60px;
    }

    .profile-sidebar__stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .profile-sidebar__nav {
        display: flex;
        flex-direction: column;
        gap: 0.1rem;
    }

    .profile-sidebar__nav .nav-link {
        font-size: 0.8rem;
        padding: 0.45rem 0.6rem;
    }

    /* Ajuste para telas muito pequenas */
    @media (max-width: 480px) {
        .profile-sidebar {
            width: 100%;
            right: -100%;
        }

        .profile-sidebar.open {
            right: 0;
        }

        .profile-mobile-toggle {
            bottom: 70px;
            right: 15px;
            padding: 0.5rem 1rem;
            font-size: 0.75rem;
            border-radius: 40px;
        }

        .profile-content {
            padding: 0.75rem;
        }

        .stat-item {
            padding: 0.3rem 0.15rem;
        }

        .stat-value {
            font-size: 0.8rem;
        }

        .author-name {
            font-size: 0.85rem;
        }

        .balance-amount {
            font-size: 0.85rem;
        }
    }
}

/* Para tablets, ainda mostra a sidebar normal */
@media (min-width: 769px) and (max-width: 1024px) {
    .profile-mobile-toggle {
        display: none !important;
    }

    .profile-overlay {
        display: none !important;
    }

    .profile-sidebar__close {
        display: none !important;
    }
}


.license-header {
    transition: background-color 0.2s ease;
    padding: 10px 12px;
    border-radius: 6px;
}

.license-header:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.license-toggle-icon {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.license-body {
    padding: 0 12px 12px 12px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.common-sidebar__license {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.common-sidebar__license:last-of-type {
    margin-bottom: 12px;
}

/* ===== COMMISSION CARD ===== */
.referral-commission-card {
    background: linear-gradient(135deg, var(--botao), var(--botao-rgb));
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
}

.referral-commission-card__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.referral-commission-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    flex-shrink: 0;
}

.referral-commission-card__content {
    flex: 1;
    color: #fff;
}

.referral-commission-card__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #fff;
}

.referral-commission-card__text {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    color: #fff;
}

.referral-commission-card__text strong {
    color: #fff;
    font-weight: 700;
}

@media (max-width: 575px) {
    .referral-commission-card__inner {
        flex-direction: column;
        text-align: center;
        padding: 16px;
        gap: 12px;
    }

    .referral-commission-card__icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .referral-commission-card__title {
        font-size: 15px;
    }

    .referral-commission-card__text {
        font-size: 13px;
    }
}

/* ===== STAT CARDS ===== */
.referral-stat-card {
    background: var(--box);
    border-radius: 16px;
    padding: 20px 22px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.referral-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.referral-stat-card__body {
    display: flex;
    align-items: center;
    gap: 16px;
}

.referral-stat-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
}

.referral-stat-card__icon--purple {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.referral-stat-card__icon--blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.referral-stat-card__icon--green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.referral-stat-card__icon--orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.referral-stat-card__info {
    flex: 1;
    min-width: 0;
}

.referral-stat-card__label {
    display: block;
    font-size: 13px;
    color: var(--texto);
    opacity: 0.65;
    font-weight: 500;
    margin-bottom: 2px;
}

.referral-stat-card__value {
    font-size: 24px;
    font-weight: 700;
    color: var(--titulo);
    margin: 0;
    line-height: 1.3;
}

.referral-stat-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.referral-stat-card__period {
    font-size: 12px;
    color: var(--texto);
    opacity: 0.5;
}

/* Badges */
.referral-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.referral-badge--success {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.referral-badge--danger {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

.referral-badge--warning {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
}

/* ===== LINK CARD ===== */
.referral-link-card {
    background: var(--box);
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.referral-link-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.referral-link-card__title-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.referral-link-card__icon {
    font-size: 22px;
    color: var(--botao);
}

.referral-link-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--titulo);
    margin: 0;
}

.referral-link-card__badge {
    background: var(--botao);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.referral-link-card__badge:hover {
    opacity: 0.85;
    transform: scale(0.98);
}

.referral-link-card__input-group {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(0, 0, 0, 0.06);
    transition: border-color 0.3s ease;
}

.referral-link-card__input-group:focus-within {
    border-color: var(--botao);
}

.referral-link-input {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: rgba(0, 0, 0, 0.02);
    font-size: 14px;
    color: var(--texto);
    min-width: 0;
}

.referral-link-input:focus {
    outline: none;
}

.referral-link-copy-btn {
    padding: 10px 20px;
    background: var(--botao);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.referral-link-copy-btn:hover {
    opacity: 0.85;
}

.referral-link-copy-btn.copied {
    background: #10b981;
}

/* ===== USERS CARD ===== */
.referral-users-card {
    background: var(--box);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.referral-users-card__header {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.referral-users-card__title-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.referral-users-card__icon {
    font-size: 20px;
    color: var(--botao);
}

.referral-users-card__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--titulo);
    margin: 0;
}

.referral-users-card__count {
    background: var(--botao);
    color: #fff;
    padding: 0 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 22px;
}

.referral-search-input {
    height: 34px;
    font-size: 13px;
    border-radius: 8px 0 0 8px !important;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(0, 0, 0, 0.02);
}

.referral-search-input:focus {
    border-color: var(--botao);
    box-shadow: none;
}

.referral-search-btn {
    border-radius: 0 8px 8px 0 !important;
    height: 34px;
    padding: 0 14px;
    font-size: 13px;
}

.referral-users-card__body {
    padding: 0;
}

.referral-users-table-wrap {
    overflow-x: auto;
}

.referral-users-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.referral-users-table thead th {
    padding: 12px 20px;
    text-align: left;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--texto);
    opacity: 0.5;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.referral-users-table tbody td {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    vertical-align: middle;
}

.referral-users-table tbody tr:last-child td {
    border-bottom: none;
}

.referral-users-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.01);
}

.referral-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.referral-user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.referral-user-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--texto);
}

.referral-user-username {
    font-size: 12px;
    color: var(--botao);
    text-decoration: none;
}

.referral-user-username:hover {
    text-decoration: underline;
}

.referral-user-date {
    font-size: 13px;
    color: var(--texto);
}

.referral-user-relative {
    font-size: 11px;
    color: var(--texto);
    opacity: 0.4;
    margin-top: 1px;
}

.referral-users-card__footer {
    padding: 12px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* ===== EARNINGS CARD ===== */
.referral-earnings-card {
    background: var(--box);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.referral-earnings-card__header {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.referral-earnings-card__title-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.referral-earnings-card__icon {
    font-size: 20px;
    color: var(--botao);
}

.referral-earnings-card__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--titulo);
    margin: 0;
}

.referral-earnings-card__filters {
    display: flex;
    gap: 6px;
}

.referral-earnings-badge {
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.referral-earnings-badge--credit {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.referral-earnings-badge--debit {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

.referral-earnings-card__body {
    padding: 0;
}

.referral-earnings-table-wrap {
    overflow-x: auto;
}

.referral-earnings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.referral-earnings-table thead th {
    padding: 12px 20px;
    text-align: left;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--texto);
    opacity: 0.5;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.referral-earnings-table tbody td {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    vertical-align: middle;
}

.referral-earnings-table tbody tr:last-child td {
    border-bottom: none;
}

.referral-earnings-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.01);
}

.referral-trx-badge {
    background: rgba(0, 0, 0, 0.04);
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--texto);
    font-family: monospace;
}

.referral-amount {
    font-weight: 700;
}

.referral-amount--credit {
    color: #059669;
}

.referral-amount--debit {
    color: #dc2626;
}

.referral-balance {
    font-weight: 600;
    color: var(--texto);
}

.referral-details-text {
    font-size: 13px;
    color: var(--texto);
    opacity: 0.7;
}

.referral-earnings-card__footer {
    padding: 12px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* ===== EMPTY STATE ===== */
.referral-empty-state {
    padding: 48px 20px;
    text-align: center;
}

.referral-empty-state__icon {
    font-size: 48px;
    color: var(--texto);
    opacity: 0.1;
    display: block;
    margin-bottom: 16px;
}

.referral-empty-state__text {
    font-size: 16px;
    font-weight: 500;
    color: var(--texto);
    margin-bottom: 4px;
}

.referral-empty-state__sub {
    font-size: 13px;
    color: var(--texto);
    opacity: 0.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .referral-stat-card__value {
        font-size: 20px;
    }

    .referral-stat-card__icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .referral-users-card__header,
    .referral-earnings-card__header {
        flex-direction: column;
        align-items: stretch;
    }

    .referral-earnings-card__filters {
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .referral-stat-card {
        padding: 16px;
    }

    .referral-stat-card__value {
        font-size: 18px;
    }

    .referral-stat-card__icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 10px;
    }

    .referral-link-card {
        padding: 16px;
    }

    .referral-link-input {
        font-size: 12px;
        padding: 8px 12px;
    }

    .referral-link-copy-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .referral-link-copy-btn span {
        display: none;
    }

    .referral-users-table tbody td,
    .referral-earnings-table tbody td {
        padding: 10px 14px;
        font-size: 13px;
    }

    .referral-users-table thead th,
    .referral-earnings-table thead th {
        padding: 10px 14px;
        font-size: 10px;
    }

    .referral-user-avatar {
        width: 32px;
        height: 32px;
    }

    .referral-user-name {
        font-size: 13px;
    }

    .referral-empty-state {
        padding: 32px 16px;
    }

    .referral-empty-state__icon {
        font-size: 36px;
    }
}

/* Scrollbar */
.referral-users-table-wrap::-webkit-scrollbar,
.referral-earnings-table-wrap::-webkit-scrollbar {
    height: 4px;
}

.referral-users-table-wrap::-webkit-scrollbar-track,
.referral-earnings-table-wrap::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
}

.referral-users-table-wrap::-webkit-scrollbar-thumb,
.referral-earnings-table-wrap::-webkit-scrollbar-thumb {
    background: var(--botao);
    border-radius: 4px;
}

/* ============================================
   WEBBY PRODUCT CARD 
   ============================================ */

/* Card principal */
.wb-produto-card {
    background: var(--box);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.wb-produto-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* ===== THUMB / IMAGEM ===== */
.wb-produto-card__thumb {
    position: relative;
    background: #f8faff;
    overflow: hidden;
    min-height: 150px;
}

.wb-produto-card__thumb .wb-produto-imagem {
    width: 100%;
    display: block;
    min-height: 150px;
    transition: transform 0.4s ease;
}

.wb-produto-card:hover .wb-produto-imagem {
    transform: scale(1.03);
}

/* ===== BADGE TRENDING ===== */
.wb-produto-card__icone-trend {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--botao);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.wb-produto-card__icone-trend svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* ===== BOTÃO SALVAR (FAVORITO) ===== */
.wb-produto-card__salvar {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.wb-produto-card__salvar:hover {
    background: #fff;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.wb-produto-card__salvar i {
    color: var(--texto);
    font-size: 16px;
    transition: color 0.2s ease;
}

.wb-produto-card__salvar:hover i {
    color: var(--titulo);
}

/* ===== CONTEÚDO DO CARD ===== */
.wb-produto-card__conteudo {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: var(--box);
}

/* ===== CABEÇALHO (PREÇO + BOTÃO COMPRAR) ===== */
.wb-produto-card__cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

/* ===== PREÇO ===== */
.wb-produto-card__preco {
    font-size: 18px;
    font-weight: 700;
    color: var(--titulo);
    display: flex;
    align-items: center;
    gap: 8px;
}

.wb-produto-card__preco--gratis {
    color: #22c55e;
}

.wb-produto-card__preco del {
    font-size: 14px;
    font-weight: 400;
    color: #94a3b8;
    margin-right: 4px;
}

.wb-produto-card__preco .wb-preco-desconto {
    color: #22c55e;
}

/* ===== BOTÃO COMPRAR COM CARRINHO ===== */
.wb-btn-comprar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--botao);
    color: #fff;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.wb-btn-comprar:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.wb-btn-comprar i {
    font-size: 16px;
}

/* ===== TÍTULO E AUTOR ===== */
.wb-produto-card__topo {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 4px;
}

.wb-produto-card__titulo-wrapper {
    flex: 1;
    min-width: 0;
}

.wb-produto-card__titulo {
    font-size: 16px;
    font-weight: 600;
    color: var(--texto);
    margin: 0 0 2px 0;
    line-height: 1.3;
}

.wb-produto-card__titulo a {
    color: var(--texto);
    text-decoration: none;
    transition: color 0.2s ease;
}

.wb-produto-card__titulo a:hover {
    color: var(--titulo);
}

.wb-produto-card__autor {
    font-size: 13px;
    color: #94a3b8;
}

.wb-produto-card__autor a {
    color: var(--texto);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.wb-produto-card__autor a:hover {
    color: var(--titulo);
}

/* ===== BOTÃO SALVAR MOBILE ===== */
.wb-produto-card__salvar-mobile {
    display: none;
}

/* ===== RODAPÉ (VENDAS + LIVE PREVIEW) ===== */
.wb-produto-card__rodape {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
    gap: 8px;
}

.wb-produto-card__info-rodape {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.wb-produto-card__vendas {
    font-size: 13px;
    color: #94a3b8;
}

.wb-produto-card__vendas strong {
    color: var(--texto);
    font-weight: 600;
}

/* ===== BOTÃO LIVE PREVIEW ===== */
.wb-btn-preview {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--texto);
    background: transparent;
    border: 1.5px solid var(--botao);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
    height: 32px;
}

.wb-btn-preview:hover {
    background: var(--botao);
    color: #fff;
    border-color: var(--botao);
    transform: scale(1.02);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 576px) {
    .wb-produto-card__conteudo {
        padding: 12px 14px 14px;
    }

    .wb-produto-card__titulo {
        font-size: 14px;
    }

    .wb-produto-card__preco {
        font-size: 16px;
    }

    .wb-produto-card__rodape {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .wb-btn-preview {
        width: 100%;
        justify-content: center;
    }

    .wb-produto-card__salvar-mobile {
        display: flex;
    }

    .wb-produto-card__salvar {
        display: none;
    }
}


/* Container do dropdown - IMPORTANTE: position relative */
.nav-item.fintech-dropdown {
    position: relative !important;
}

/* Trigger (link principal) */
.nav-link.fintech-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    cursor: pointer;
    position: relative;
}

.nav-link.fintech-dropdown-trigger .fintech-dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
    margin-left: auto;
}

/* Seta girada quando aberto */
.nav-link.fintech-dropdown-trigger.active .fintech-dropdown-arrow,
.nav-item.fintech-dropdown:hover .nav-link.fintech-dropdown-trigger .fintech-dropdown-arrow {
    transform: rotate(180deg);
}


.fintech-dropdown-menu {
    display: none;
    position: absolute !important;

    top: 100% !important;

    left: 0 !important;
    right: auto !important;
    min-width: 220px;
    width: max-content;
    max-width: 280px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    margin: 8px 0 0 0;
    list-style: none;
    z-index: 9999;
    border: 1px solid rgba(0, 0, 0, 0.08);

    /* Garante que não vai para o lado */
    transform: translateX(0) !important;
    float: none !important;
    clear: both !important;
}

/* Desktop - hover */
@media (min-width: 992px) {
    .nav-item.fintech-dropdown:hover .fintech-dropdown-menu {
        display: block !important;
        animation: fintechFadeDown 0.25s ease;
    }

    /* Remove qualquer estilo que possa estar puxando para o lado */
    .nav-item.fintech-dropdown .fintech-dropdown-menu {
        left: 0 !important;
        right: auto !important;
    }
}

/* Mobile - clique */
@media (max-width: 991px) {
    .fintech-dropdown-menu {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.04);
        border: none;
        padding-left: 20px;
        margin: 0;
        border-radius: 0;
        width: 100%;
        max-width: 100%;
    }

    .fintech-nav .fintech-nav__list li.nav-item.fintech-dropdown {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        flex-wrap: nowrap !important;
    }

    .fintech-nav .fintech-nav__list li.nav-item.fintech-dropdown>.nav-link {
        width: 100%;
        flex: 0 0 auto;
    }

    .fintech-nav .fintech-nav__list li.nav-item.fintech-dropdown>.fintech-dropdown-menu {
        width: 100%;
        flex: 0 0 auto;
        position: static !important;
        top: auto !important;
        left: auto !important;
    }

    .fintech-dropdown-menu.open {
        display: block !important;
    }
}

/* Itens do dropdown */
.fintech-dropdown-link {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

.fintech-dropdown-link:hover {
    background: rgba(0, 0, 0, 0.05);
    padding-left: 25px;
    color: #2563eb;
}

.fintech-dropdown-link i {
    font-size: 14px;
    opacity: 0.7;
    width: 18px;
    flex-shrink: 0;
}

/* Animação */
@keyframes fintechFadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ESTILOS PARA O HEADER ESCURO ===== */
.fintech-header .fintech-dropdown-menu {
    background: #1a1a2e;
    border-color: rgba(255, 255, 255, 0.08);
}

.fintech-header .fintech-dropdown-link {
    color: #e2e8f0;
}

.fintech-header .fintech-dropdown-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #60a5fa;
}

/* ===== CORREÇÃO PARA NAVEGAÇÃO ===== */
.fintech-nav__list {
    position: relative;
}

/* Garante que os dropdowns não vazem */
.fintech-nav {
    overflow: visible !important;
}

.fintech-nav__list .nav-item {
    position: relative;
}


@media (max-width: 991px) {
    .fintech-nav__list .nav-link {
        white-space: nowrap;
    }

    .fintech-nav__list .nav-link span {
        flex: 1 1 auto;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
    }

    .fintech-dropdown-arrow {
        flex-shrink: 0;
    }
}

.fintech-nav {
    overflow: visible !important;
}

@media (min-width: 992px) {

    .fintech-header,
    .fintech-header-main,
    .fintech-header .container,
    .fintech-nav__list,
    .fintech-nav__list .nav-item {
        overflow: visible !important;
    }

    .fintech-header {
        position: relative;
        z-index: 100;
    }

    .fintech-dropdown-menu {
        margin-top: 0 !important;
        padding-top: 14px;
    }

    .fintech-nav__list .nav-item.fintech-dropdown {
        display: block !important;
    }

    .fintech-nav__list .nav-item.fintech-dropdown>.nav-link {
        width: 100%;
    }

    .fintech-dropdown-menu {
        display: none;
        width: 100%;
    }
}


/* Estilos gerais do footer */
.footer {
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

/* Animações suaves para os ícones sociais */
.social-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
    box-shadow: 0 5px 15px rgba(var(--botao-rgb), 0.3);
}

/* Efeito hover nos links */
.footer-links ul li a {
    position: relative;
    transition: all 0.3s ease;
}

.footer-links ul li a::before {
    content: '›';
    margin-right: 5px;
    color: var(--botao);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    margin-right: 8px;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer .row .col-md-6 {
        text-align: center !important;
    }
}