*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Exo 2', sans-serif;
}
body{
    font-size: 16px;
    line-height: 1.5;
    background-color: #111112;
    color: #fff;
}

.banner-header-top{
    height: 46px;
    display: flex;
    background-color: #0a1021;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #fff;
    font-size: 14px;
    padding: 0 16px;
    text-align: center;
}

.banner-header-line-wrap{
    position: relative;
    height: 0;
}

.banner-header-line{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(224, 36, 43, 0.6), transparent);
}

.header-menu{
    margin: 0 auto;
    max-width: 1280px;
    padding: 16px 40px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.menu-toggle{
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: 1px solid #f5f5f5;
    border-radius: 0 12px 0 12px;
    cursor: pointer;
    flex-shrink: 0;
}

.menu-toggle span{
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-active span:nth-child(1){
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2){
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
}

.logo-header-img{
    width: 150px;
}

.search-bar{
    display: flex;
    align-items: center;
    max-width: 410px;
    width: 100%;
    height: 40px;
    background-color: #222224;
    border-radius: 9999px;
    position: relative;
}

.search-bar > img{
    width: 25px;
    height: 25px;
    position: absolute;
    left: 10px;
    z-index: 1;
    pointer-events: none;
}

.search-input{
    height: 40px;
    background-color: #222224;
    border-radius: 0px 12px 0px 12px;
    border: none;
    width: 100%;
    max-width: 410px;
    padding: 0px 8px 0px 38px;
    outline: none;
    color: #fff;
}

.search-results{
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 60;
}

.search-results[hidden]{
    display: none !important;
}

.search-results-panel{
    background-color: #16161f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 12px 0 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.search-results-header{
    padding: 12px 14px 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #9c9ca6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.search-results-list{
    display: flex;
    flex-direction: column;
    max-height: 320px;
    overflow-y: auto;
}

.search-result-item{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background-color 0.2s ease;
}

.search-result-item:last-child{
    border-bottom: none;
}

.search-result-item:hover{
    background-color: rgba(224, 36, 43, 0.1);
}

.search-result-item img{
    position: static;
    width: 42px;
    height: 56px;
    object-fit: cover;
    border-radius: 0 6px 0 6px;
    flex-shrink: 0;
}

.search-result-info{
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.search-result-name{
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-meta{
    font-size: 12px;
    color: #6f6f7a;
}

.search-result-price{
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-top: 2px;
}

.search-results-empty{
    padding: 20px 14px;
    font-size: 13px;
    color: #9c9ca6;
    text-align: center;
}

.cart-wrap{
    position: relative;
    flex-shrink: 0;
}

.cart{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    height: 40px;
    background-color: #e0242b;
    border: 1px solid #f5f5f5;
    border-radius: 0 12px 0 12px;
    gap: 8px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.cart-wrap:hover .cart{
    background-color: #060913;
}

.cart-popup{
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 50;
    padding-top: 12px;
    width: 340px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.cart-wrap:hover .cart-popup,
.cart-wrap:focus-within .cart-popup,
.cart-wrap.is-open .cart-popup{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-popup-panel{
    background-color: #1a1a1b;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    overflow: hidden;
}

.cart-popup-panel::before{
    content: "";
    display: block;
    height: 2px;
    background: linear-gradient(to right, transparent, #e0242b, transparent);
}

.cart-popup-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    font-weight: 700;
}

.cart-popup-count{
    font-weight: 500;
    font-size: 12px;
    color: #969696;
}

.cart-popup-items{
    display: flex;
    flex-direction: column;
    max-height: 300px;
    overflow-y: auto;
}

.cart-popup-item{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-popup-item img{
    width: 48px;
    height: 68px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.cart-popup-item-info{
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.cart-popup-item-name{
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-popup-item-meta{
    font-size: 11px;
    color: #969696;
}

.cart-popup-item-price{
    font-size: 14px;
    font-weight: 700;
    color: #ff5a60;
    margin-top: 2px;
}

.cart-popup-remove{
    background: transparent;
    border: none;
    color: #969696;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 0 4px 0 4px;
    flex-shrink: 0;
}

.cart-popup-remove:hover{
    color: #fff;
    background-color: rgba(224, 36, 43, 0.25);
}

.cart-popup-total{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    font-size: 14px;
    color: #c9c9cc;
}

.cart-popup-total strong{
    font-size: 18px;
    color: #fff;
}

.cart-popup-actions{
    display: flex;
    gap: 8px;
    padding: 0 16px 16px;
}

.cart-popup-btn,
.cart-popup-btn-outline{
    flex: 1;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 12px 0 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cart-popup-btn{
    background-color: #e0242b;
    border: 1px solid #e0242b;
}

.cart-popup-btn:hover{
    background-color: #b81c22;
    border-color: #b81c22;
}

.cart-popup-btn-outline{
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cart-popup-btn-outline:hover{
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.08);
}

.cart-icon{
    width: 25px;
}

.cart-count{
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #0a1021;
    border: 1px solid #f5f5f5;
    border-radius: 99999px;
    padding: 0px 4px;
    font-size: 12px;
    color: #fff;
}

.sub-menu{
    margin: 0 auto;
    max-width: 1280px;
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 14px;
    padding: 8px 40px;
}

.sub-menu a{
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.sub-menu a:hover,
.sub-menu div:hover{
    cursor: pointer;
    text-decoration: underline;
    color: #e0242b;
}

.sub-menu a.is-active{
    color: #ff5a60;
    font-weight: 700;
}

.banner-carousel{
    margin: 16px auto 0;
    max-width: 1280px;
    padding: 0 40px;
}

.banner-carousel-viewport{
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.banner-carousel-track{
    display: flex;
    transition: transform 0.5s ease;
}

.banner-slide{
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
}

.banner-slide img{
    display: block;
    width: 100%;
    height: auto;
}

.banner-carousel-dots{
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.banner-dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #f5f5f5;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
}

.banner-dot.active{
    border: 1px solid #e0242b;
    background-color: #e0242b;
}

.highlights-container{
    padding: 30px 40px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.highlights-item{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.highlights-icon{
    width: 30px;
    height: 30px;
}

.game-highlight-container{
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.game-highlight-title{
    font-size: 30px;
    font-weight: bold;
}

.game-highlight-description{
    font-size: 14px;
}

.game-highlight-bottom{
    display: flex;
    gap: 16px;
    align-items: stretch;
    min-width: 0;
}

.banner-game-highlight{
    flex: 1 1 50%;
    min-width: 0;
    display: flex;
}

.banner-game-highlight-img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.game-highlight-bottom-right{
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.game-highlight-bottom-right-item{
    flex: 1 1 0;
    display: flex;
    gap: 12px;
    align-items: center;
    min-width: 0;
    text-decoration: none;
    color: inherit;
}

.game-highlight-bottom-right-img{
    display: block;
    width: 48%;
    height: auto;
    flex-shrink: 0;
    border-radius: 8px;
}

.game-highlight-bottom-right-item-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.game-highlight-oldprice{
    text-decoration: line-through;
    font-size: 12px;
    color: #969696;
}

.game-highlight-newprice{
    background-color: #e0242b;
    border-radius: 0 12px 0 12px;
    padding: 4px 8px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border: 1px solid #fff;
    margin-top: 10px;
}

.categorias-buttons-container{
    max-width: 1280px;
    width: 100%;
    padding: 0 40px 40px;
    margin: 0 auto;
}

.categorias-title{
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

.categorias-carousel{
    display: flex;
    align-items: center;
    gap: 12px;
}

.categorias-viewport{
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

.categorias-track{
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
}

.categorias-track a{
    flex: 0 0 auto;
    min-width: 0;
}

.categorias-track img{
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.categorias-nav{
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #f5f5f5;
    background-color: #0a1021;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.categorias-nav:hover{
    background-color: #e0242b;
    border-color: #e0242b;
}

.categorias-dots{
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.categorias-dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #f5f5f5;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
}

.categorias-dot.active{
    border: 1px solid #e0242b;
    background-color: #e0242b;
}

.video-container{
    padding: 40px 40px 48px;
    background-color: #1a1a1b;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 24px;
    font-weight: bold;
    width: 100%;
    gap: 20px;
}

.video-container img{
    display: block;
    width: 100%;
    max-width: 1280px;
    height: auto;
    border-radius: 8px;
}

.platform-section{
    width: 100%;
    padding: 40px 0;
}

.platform-section:nth-of-type(even),
.platform-section[data-platform="ps4"]{
    background-color: #1a1a1b;
}

.platform-section-inner{
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.platform-title{
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 24px;
}

.games-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 258px));
    gap: 20px;
    justify-content: space-between;
}

.game-card{
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
    background-color: #222224;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2a2a2c;
    width: 100%;
    max-width: 258px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.2s ease;
    transition-delay: var(--delay, 0s);
}

.game-card.is-visible{
    opacity: 1;
    transform: translateY(0);
}

.game-card.is-visible:hover{
    border-color: #e0242b;
    transform: translateY(-4px);
    transition-delay: 0s;
}

.game-card::after{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-120%);
    background: linear-gradient(
        115deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.12) 45%,
        rgba(255, 255, 255, 0.28) 50%,
        rgba(255, 255, 255, 0.12) 55%,
        rgba(255, 255, 255, 0) 70%
    );
    animation: game-card-shimmer 4s ease-out infinite;
    animation-delay: var(--shimmer-delay, 0s);
}

@keyframes game-card-shimmer{
    0%{
        opacity: 0;
        transform: translateX(-120%);
    }
    5%{
        opacity: 1;
    }
    25%{
        opacity: 0;
        transform: translateX(120%);
    }
    100%{
        opacity: 0;
        transform: translateX(120%);
    }
}

.game-card.is-hidden{
    display: none;
}

.games-grid.is-expanded .game-card.is-hidden{
    display: flex;
}

.game-card-img{
    display: block;
    width: 100%;
    max-width: 258px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-card-img{
    transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce){
    .game-card{
        opacity: 1;
        transform: none;
        transition: border-color 0.2s ease;
    }

    .game-card::after{
        animation: none;
    }

    .game-card:hover .game-card-img{
        transform: none;
    }
}

.game-card-body{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    flex: 1;
}

.game-card-name{
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.game-card-price{
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.game-card-price strong{
    font-size: 18px;
    color: #fff;
}

.game-card-price span{
    font-size: 12px;
    color: #969696;
}

.game-card-pix{
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.game-card-pix img{
    width: 16px;
    height: 16px;
}

.game-card-btn{
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    padding: 0 10px;
    background-color: #e0242b;
    border: 1px solid #f5f5f5;
    border-radius: 0 12px 0 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.game-card-btn img{
    width: 18px;
    height: 18px;
}

.games-expand-btn{
    display: block;
    margin: 28px auto 0;
    min-width: 180px;
    height: 44px;
    padding: 0 24px;
    background-color: transparent;
    border: 1px solid #f5f5f5;
    border-radius: 0 12px 0 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

.games-expand-btn:hover{
    background-color: #e0242b;
    border-color: #e0242b;
}

/* ===== Páginas internas (categoria e jogo) ===== */

.breadcrumb{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #969696;
    margin-bottom: 24px;
}

.breadcrumb a{
    color: #969696;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover{
    color: #fff;
}

.category-page,
.product-page{
    padding: 32px 0 56px;
}

.category-inner,
.product-inner{
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.category-hero{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #1a1a1b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 12px 0 12px;
    margin-bottom: 28px;
}

.category-hero-img{
    width: 141px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.category-title{
    font-size: 30px;
    font-weight: bold;
}

.category-subtitle{
    font-size: 14px;
    color: #969696;
}

.category-toolbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.category-count{
    font-size: 14px;
    color: #969696;
}

.category-sort-wrap{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #969696;
}

.category-sort{
    height: 38px;
    padding: 0 10px;
    background-color: #222224;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 8px 0 8px;
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
}

.product-top{
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 48px;
}

.product-gallery{
    flex: 1 1 50%;
    min-width: 0;
}

.product-gallery-viewport{
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0 12px 0 12px;
    background-color: #1a1a1b;
}

.product-gallery-track{
    display: flex;
    transition: transform 0.4s ease;
}

.product-gallery-slide{
    flex: 0 0 100%;
    min-width: 0;
}

.product-gallery-slide img{
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.product-gallery-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(10, 10, 11, 0.7);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.product-gallery-nav:hover{
    background-color: #e0242b;
    border-color: #e0242b;
}

.product-gallery-prev{
    left: 12px;
}

.product-gallery-next{
    right: 12px;
}

.product-thumbs{
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.product-thumb{
    flex: 1;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0 8px 0 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.product-thumb img{
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-thumb.is-active,
.product-thumb:hover{
    border-color: #e0242b;
}

.product-info{
    flex: 1 1 50%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-tag{
    padding: 4px 12px;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 12px;
    font-weight: 600;
}

.product-tag-accent{
    background-color: rgba(224, 36, 43, 0.15);
    border-color: rgba(224, 36, 43, 0.4);
    color: #ff5a60;
}

.product-title{
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
}

.product-rating{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #969696;
}

.product-stars,
.reviews-stars,
.review-stars{
    color: #ffc83d;
    letter-spacing: 2px;
}

.product-rating-value{
    color: #fff;
    font-weight: 700;
}

.product-rating-count{
    color: #969696;
    text-decoration: underline;
}

.product-rating-count:hover{
    color: #fff;
}

.product-price-box{
    padding: 16px;
    background-color: #1a1a1b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 12px 0 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-price-old{
    font-size: 14px;
    color: #969696;
    text-decoration: line-through;
}

.product-price-row{
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-price-new{
    font-size: 32px;
    font-weight: bold;
}

.product-discount{
    padding: 2px 10px;
    border-radius: 9999px;
    background-color: rgba(224, 36, 43, 0.15);
    border: 1px solid rgba(224, 36, 43, 0.4);
    color: #ff5a60;
    font-size: 12px;
    font-weight: 700;
}

.product-price-pix{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #c9c9cc;
    margin-top: 4px;
}

.product-price-pix img{
    width: 18px;
    height: 18px;
}

.product-price-pix strong{
    color: #fff;
}

.product-price-installment{
    font-size: 13px;
    color: #969696;
}

.product-actions{
    display: flex;
    gap: 12px;
}

.product-qty{
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0 8px 0 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-qty-btn{
    width: 38px;
    height: 46px;
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.product-qty-btn:hover{
    background-color: rgba(255, 255, 255, 0.1);
}

.product-qty-input{
    width: 44px;
    height: 46px;
    background-color: transparent;
    border: none;
    color: #fff;
    text-align: center;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    outline: none;
}

.product-buy-btn,
.product-buynow-btn{
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 0 8px 0 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    color: #fff;
}

.product-buy-btn{
    flex: 1;
    background-color: #e0242b;
    border: 1px solid #f5f5f5;
}

.product-buy-btn:hover{
    background-color: #b81c22;
}

.product-buy-btn img{
    width: 20px;
    height: 20px;
}

.product-buynow-btn{
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.product-buynow-btn:hover{
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.08);
}

.product-shipping{
    padding: 16px;
    background-color: #1a1a1b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 12px 0 12px;
}

.product-shipping-title{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-shipping-title svg{
    width: 18px;
    height: 18px;
    color: #e0242b;
}

.product-shipping-form{
    display: flex;
    gap: 8px;
}

.product-shipping-input{
    flex: 1;
    height: 42px;
    padding: 0 12px;
    background-color: #222224;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 8px 0 8px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.product-shipping-input:focus{
    border-color: #e0242b;
}

.product-shipping-btn{
    height: 42px;
    padding: 0 20px;
    background-color: #e0242b;
    border: 1px solid #f5f5f5;
    border-radius: 0 8px 0 8px;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.product-shipping-btn:hover{
    background-color: #b81c22;
}

.product-shipping-result{
    margin-top: 12px;
    font-size: 14px;
}

.product-shipping-result.is-error{
    color: #ff5a60;
}

.product-shipping-option{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #c9c9cc;
}

.product-shipping-note{
    margin-top: 10px;
    font-size: 12px;
    color: #969696;
}

.product-benefits{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: #c9c9cc;
}

.product-benefits li{
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-benefits svg{
    width: 18px;
    height: 18px;
    color: #e0242b;
    flex-shrink: 0;
}

.product-section{
    margin-bottom: 48px;
}

.product-section-title{
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 16px;
}

.product-description{
    font-size: 15px;
    line-height: 1.7;
    color: #c9c9cc;
    max-width: 900px;
}

.product-specs{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.product-spec{
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 14px;
    background-color: #1a1a1b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 8px 0 8px;
}

.product-spec span{
    font-size: 12px;
    color: #969696;
}

.product-spec strong{
    font-size: 14px;
}

.reviews-container{
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.reviews-summary{
    flex: 0 0 260px;
    padding: 20px;
    background-color: #1a1a1b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 12px 0 12px;
    text-align: center;
}

.reviews-average{
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
}

.reviews-stars{
    font-size: 20px;
    margin: 6px 0;
}

.reviews-total{
    font-size: 13px;
    color: #969696;
}

.reviews-bars{
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
    text-align: left;
}

.reviews-bar{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #969696;
}

.reviews-bar-track{
    flex: 1;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    overflow: hidden;
}

.reviews-bar-fill{
    height: 100%;
    background-color: #e0242b;
}

.reviews-bar-value{
    width: 34px;
    text-align: right;
}

.reviews-list{
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-item{
    padding: 16px;
    background-color: #1a1a1b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 12px 0 12px;
}

.review-head{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.review-avatar{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #e0242b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.review-author{
    font-size: 14px;
    font-weight: 700;
}

.review-date{
    font-size: 12px;
    color: #969696;
}

.review-head .review-stars{
    margin-left: auto;
    font-size: 14px;
}

.review-text{
    font-size: 14px;
    line-height: 1.6;
    color: #c9c9cc;
}

.site-footer{
    position: relative;
    width: 100%;
    background-color: #0a0a0b;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.footer-top-line{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(224, 36, 43, 0.6),
        transparent
    );
}

.footer-main{
    padding: 48px 0;
}

.footer-inner{
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-main .footer-inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-brand{
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 360px;
}

.footer-logo img{
    display: block;
    width: 180px;
    height: auto;
}

.footer-description{
    font-size: 14px;
    line-height: 1.6;
    color: #c9c9cc;
}

.footer-badges{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-badge{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 9999px;
    background-color: rgba(224, 36, 43, 0.1);
    border: 1px solid rgba(224, 36, 43, 0.3);
    color: #ff5a60;
    font-size: 12px;
    font-weight: 600;
}

.footer-badge svg{
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.footer-columns{
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-column-title{
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
}

.footer-links a{
    color: #969696;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover{
    color: #fff;
}

.footer-info{
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.footer-info-item{
    display: flex;
    align-items: center;
    gap: 8px;
    color: #969696;
}

.footer-info-item svg{
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #e0242b;
}

.footer-info-item a{
    color: #969696;
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-word;
}

.footer-info-item a:hover{
    color: #fff;
}

.footer-payments{
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-payments-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-payments-group{
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-payments-label{
    font-size: 13px;
    color: #969696;
}

.footer-flags{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-flag{
    display: block;
    height: 26px;
    width: auto;
    border-radius: 4px;
}

.footer-security-label{
    display: block;
    height: 46px;
    width: auto;
}

.footer-bottom{
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
    flex-wrap: wrap;
}

.footer-social{
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social-label{
    font-size: 14px;
    color: #969696;
}

.footer-social-icons{
    display: flex;
    gap: 12px;
}

.footer-social-icons a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(224, 36, 43, 0.15);
    border: 1px solid rgba(224, 36, 43, 0.3);
    color: #ff5a60;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-social-icons a:hover{
    background-color: #e0242b;
    border-color: #e0242b;
    color: #fff;
    transform: translateY(-2px);
}

.footer-social-icons svg{
    width: 20px;
    height: 20px;
}

.footer-legal{
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: #969696;
    flex-wrap: wrap;
}

.footer-legal-links{
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal-links a{
    color: #969696;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover{
    color: #fff;
}

@media (max-width: 768px){
    .banner-header-top{
        height: auto;
        min-height: 40px;
        font-size: 12px;
        padding: 8px 16px;
    }

    .header-menu{
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .menu-toggle{
        display: flex;
        order: 1;
    }

    .logo-wrap{
        order: 2;
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .logo-header-img{
        width: 110px;
    }

    .cart-wrap{
        order: 3;
    }

    .cart{
        padding: 0 12px;
    }

    .cart-popup{
        width: min(320px, calc(100vw - 32px));
    }

    .cart-label{
        display: none;
    }

    .search-bar{
        order: 4;
        max-width: none;
        flex: 1 1 100%;
    }

    .search-input{
        max-width: none;
    }

    .search-results{
        left: 0;
        right: 0;
        width: 100%;
    }

    .sub-menu{
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 16px 12px;
        max-width: none;
    }

    .sub-menu.is-open{
        display: flex;
    }

    .sub-menu a,
    .sub-menu div{
        padding: 12px 8px;
        border-bottom: 1px solid #2a2a2c;
        font-size: 14px;
    }

    .sub-menu a:last-child,
    .sub-menu div:last-child{
        border-bottom: none;
    }

    .banner-carousel{
        padding: 0 16px;
        margin-top: 12px;
    }

    .highlights-container{
        padding: 20px 16px;
        flex-wrap: wrap;
        gap: 16px;
    }

    .highlights-item{
        flex: 1 1 calc(50% - 8px);
        min-width: 140px;
    }

    .game-highlight-container{
        padding: 0 16px 32px;
        gap: 20px;
    }

    .game-highlight-title{
        font-size: 24px;
    }

    .game-highlight-bottom{
        flex-direction: column;
        gap: 12px;
    }

    .banner-game-highlight,
    .game-highlight-bottom-right{
        flex: 1 1 auto;
        width: 100%;
    }

    .banner-game-highlight-img{
        height: auto;
        object-fit: contain;
    }

    .game-highlight-bottom-right-item{
        width: 100%;
        flex: 0 0 auto;
    }

    .game-highlight-bottom-right-img{
        width: 45%;
        height: auto;
    }

    .categorias-buttons-container{
        padding: 0 16px 32px;
    }

    .categorias-title{
        font-size: 22px;
        margin-bottom: 14px;
    }

    .categorias-carousel{
        gap: 8px;
    }

    .categorias-track{
        gap: 10px;
    }

    .categorias-nav{
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .categorias-dots{
        gap: 6px;
        margin-top: 12px;
        flex-wrap: wrap;
        padding: 0 4px;
    }

    .categorias-dot{
        width: 8px;
        height: 8px;
    }

    .video-container{
        padding: 24px 16px 32px;
        font-size: 20px;
        gap: 14px;
    }

    .video-container img{
        width: 100%;
        max-width: 100%;
        border-radius: 8px;
    }

    .platform-section{
        padding: 28px 0;
    }

    .platform-section-inner{
        padding: 0 16px;
    }

    .platform-title{
        font-size: 22px;
        margin-bottom: 16px;
    }

    .games-grid{
        grid-template-columns: repeat(2, minmax(0, 258px));
        gap: 12px;
        justify-content: space-between;
    }

    .game-card-body{
        padding: 10px;
        gap: 8px;
    }

    .game-card-name{
        font-size: 12px;
        min-height: 2.6em;
    }

    .game-card-price strong{
        font-size: 15px;
    }

    .game-card-btn{
        height: 36px;
        font-size: 10px;
        gap: 6px;
        padding: 0 6px;
    }

    .game-card-btn img{
        width: 14px;
        height: 14px;
    }

    .games-expand-btn{
        width: 100%;
        margin-top: 20px;
    }

    .category-page,
    .product-page{
        padding: 20px 0 36px;
    }

    .category-inner,
    .product-inner{
        padding: 0 16px;
    }

    .breadcrumb{
        margin-bottom: 16px;
        font-size: 12px;
    }

    .category-hero{
        gap: 14px;
        padding: 14px;
        margin-bottom: 20px;
    }

    .category-hero-img{
        width: 90px;
    }

    .category-title{
        font-size: 22px;
    }

    .category-subtitle{
        font-size: 12px;
    }

    .category-toolbar{
        gap: 10px;
    }

    .product-top{
        flex-direction: column;
        gap: 20px;
        margin-bottom: 32px;
    }

    .product-gallery,
    .product-info{
        flex: 1 1 auto;
        width: 100%;
    }

    .product-title{
        font-size: 22px;
    }

    .product-price-new{
        font-size: 26px;
    }

    .product-section{
        margin-bottom: 32px;
    }

    .product-section-title{
        font-size: 19px;
    }

    .product-specs{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reviews-container{
        flex-direction: column;
        gap: 16px;
    }

    .reviews-summary{
        flex: 1 1 auto;
        width: 100%;
    }

    .footer-main{
        padding: 32px 0;
    }

    .footer-inner{
        padding: 0 16px;
    }

    .footer-main .footer-inner{
        flex-direction: column;
        gap: 32px;
    }

    .footer-brand{
        max-width: none;
    }

    .footer-logo img{
        width: 150px;
    }

    .footer-columns{
        flex-direction: column;
        gap: 28px;
        width: 100%;
    }

    .footer-column-title{
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer-payments-inner{
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .footer-payments-group{
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .footer-flag{
        height: 22px;
    }

    .footer-security-label{
        height: 38px;
    }

    .footer-bottom-inner{
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-legal{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-legal-links{
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* ===== Checkout ===== */
[hidden]{
    display: none !important;
}

.checkout-body{
    background-color: #0d0d12;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.checkout-header{
    background-color: #0a1021;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-header-inner{
    max-width: 1080px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.checkout-logo img{
    display: block;
    height: 44px;
    width: auto;
}

.checkout-header-right{
    display: flex;
    align-items: center;
    gap: 24px;
}

.checkout-secure{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #9c9ca6;
}

.checkout-secure svg{
    width: 18px;
    height: 18px;
}

.checkout-header-cart{
    position: relative;
    display: block;
}

.checkout-header-cart img{
    display: block;
    width: 24px;
    height: 24px;
}

.checkout-header-cart-count{
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 50%;
    background-color: #e0242b;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-stepper{
    background-color: #12121a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.checkout-stepper-inner{
    max-width: 1080px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-stepper-item{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6f6f7a;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.checkout-stepper-num{
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 13px;
}

.checkout-stepper-item.is-active{
    color: #fff;
}

.checkout-stepper-item.is-active .checkout-stepper-num{
    background-color: #e0242b;
    border-color: #e0242b;
}

.checkout-stepper-item.is-done{
    color: #4caf7d;
}

.checkout-stepper-item.is-done .checkout-stepper-num{
    background-color: #4caf7d;
    border-color: #4caf7d;
    color: #0d0d12;
}

.checkout-stepper-line{
    flex: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.12);
}

.checkout-main{
    flex: 1;
    padding: 32px 24px 56px;
}

.checkout-inner{
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.checkout-content{
    background-color: #16161f;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0 16px 0 16px;
    padding: 28px;
}

.checkout-panel{
    display: none;
}

.checkout-panel.is-active{
    display: block;
}

.checkout-panel-title{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.checkout-panel-desc{
    font-size: 14px;
    color: #9c9ca6;
    margin-bottom: 24px;
}

.checkout-form{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.checkout-field{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.checkout-field label{
    font-size: 13px;
    font-weight: 600;
    color: #c8c8d0;
}

.checkout-field input,
.checkout-select{
    width: 100%;
    padding: 12px 14px;
    background-color: #0f0f16;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 8px 0 8px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease;
}

.checkout-field input::placeholder{
    color: #5f5f6b;
}

.checkout-field input:focus,
.checkout-select:focus{
    border-color: #e0242b;
}

.checkout-field input.has-error{
    border-color: #e0242b;
}

.checkout-error{
    font-size: 12px;
    color: #ff6b73;
    min-height: 14px;
}

.checkout-field-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkout-btn,
.checkout-btn-outline{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 0 8px 0 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Exo 2', sans-serif;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.checkout-btn{
    background-color: #e0242b;
    color: #fff;
}

.checkout-btn:hover{
    background-color: #b81c22;
}

.checkout-btn-outline{
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.checkout-btn-outline:hover{
    border-color: #fff;
}

.checkout-actions{
    display: flex;
    gap: 12px;
}

.checkout-actions .checkout-btn{
    flex: 1;
}

.payment-methods{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.payment-method{
    padding: 18px;
    background-color: #0f0f16;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 12px 0 12px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.payment-method.is-selected{
    border-color: #e0242b;
    background-color: rgba(224, 36, 43, 0.06);
}

.payment-method input[type="radio"]{
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.payment-method input[type="radio"]:checked{
    border-color: #e0242b;
    box-shadow: inset 0 0 0 4px #e0242b;
}

.payment-method-head{
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.payment-method-head img{
    height: 26px;
    width: auto;
    border-radius: 4px;
}

.payment-method-name{
    font-size: 16px;
    font-weight: 700;
}

.payment-method-badge{
    padding: 3px 8px;
    border-radius: 0 6px 0 6px;
    background-color: #4caf7d;
    color: #0d0d12;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.payment-method-desc{
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #9c9ca6;
}

.payment-card-fields{
    display: none;
    flex-direction: column;
    gap: 16px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-method.is-selected .payment-card-fields{
    display: flex;
}

.finalization{
    text-align: center;
}

.pix-timer{
    color: #e0242b;
}

.pix-waiting{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 8px 16px;
    border-radius: 0 8px 0 8px;
    background-color: rgba(224, 165, 36, 0.12);
    color: #e6a91f;
    font-size: 14px;
    font-weight: 600;
}

.pix-waiting svg{
    width: 32px;
    height: 8px;
}

.pix-box{
    max-width: 420px;
    margin: 0 auto;
    padding: 26px 22px;
    background-color: #0f0f16;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 16px 0 16px;
}

.pix-instruction{
    font-size: 14px;
    color: #c8c8d0;
    margin-bottom: 20px;
}

.pix-qrcode{
    display: block;
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
}

.pix-total{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 15px;
    color: #9c9ca6;
}

.pix-total strong{
    font-size: 20px;
    color: #fff;
}

.pix-copy-btn{
    position: relative;
    width: 100%;
}

.pix-copy-feedback{
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 10px;
    border-radius: 0 6px 0 6px;
    background-color: #4caf7d;
    color: #0d0d12;
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.pix-copy-feedback.is-visible{
    opacity: 1;
}

.pix-helper{
    margin-top: 18px;
    font-size: 13px;
    color: #9c9ca6;
}

.pix-gateway{
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    color: #6f6f7a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pix-gateway strong{
    color: #c8c8d0;
}

.order-approved-icon{
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    color: #4caf7d;
}

.order-approved-icon svg{
    width: 100%;
    height: 100%;
}

.order-approved-number{
    margin-bottom: 24px;
    font-size: 14px;
    color: #9c9ca6;
}

.order-approved-number strong{
    color: #fff;
}

.checkout-summary{
    position: sticky;
    top: 24px;
    background-color: #16161f;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0 16px 0 16px;
    padding: 22px;
}

.checkout-summary-title{
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
}

.checkout-summary-items{
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-summary-item{
    display: flex;
    gap: 12px;
}

.checkout-summary-item img{
    width: 52px;
    height: 68px;
    object-fit: cover;
    border-radius: 0 6px 0 6px;
    flex-shrink: 0;
}

.checkout-summary-item-name{
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.checkout-summary-item-meta{
    font-size: 12px;
    color: #6f6f7a;
}

.checkout-summary-item-price{
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-top: 4px;
}

.checkout-summary-lines{
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
}

.checkout-summary-line{
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #9c9ca6;
}

.checkout-summary-free{
    color: #4caf7d;
    font-weight: 600;
}

.checkout-summary-total{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
}

.checkout-summary-total strong{
    font-size: 22px;
    color: #fff;
}

.checkout-summary-note{
    margin-top: 8px;
    font-size: 12px;
    color: #6f6f7a;
}

.checkout-footer{
    background-color: #0a0a0b;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.checkout-footer-inner{
    max-width: 1080px;
    margin: 0 auto;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.checkout-footer-store{
    font-size: 13px;
    color: #9c9ca6;
}

.checkout-footer-flags{
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.checkout-footer-flags img{
    height: 22px;
    width: auto;
    border-radius: 4px;
}

.checkout-footer-security{
    height: 34px;
    width: auto;
}

@media (max-width: 900px){
    .checkout-inner{
        grid-template-columns: 1fr;
    }

    .checkout-summary{
        position: static;
        order: -1;
    }
}

@media (max-width: 600px){
    .checkout-header-inner{
        padding: 12px 16px;
    }

    .checkout-logo img{
        height: 34px;
    }

    .checkout-secure-text{
        display: none;
    }

    .checkout-stepper-inner{
        padding: 14px 16px;
        gap: 8px;
    }

    .checkout-stepper-label{
        display: none;
    }

    .checkout-stepper-item.is-active .checkout-stepper-label{
        display: inline;
    }

    .checkout-main{
        padding: 20px 16px 40px;
    }

    .checkout-content{
        padding: 20px 16px;
    }

    .checkout-panel-title{
        font-size: 20px;
    }

    .checkout-field-row{
        grid-template-columns: 1fr;
    }

    .checkout-actions{
        flex-direction: column-reverse;
    }

    .pix-qrcode{
        width: 190px;
        height: 190px;
    }

    .checkout-footer-inner{
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 16px;
    }
}

/* ===== Páginas institucionais / políticas ===== */
.policy-page{
    padding: 28px 24px 64px;
}

.policy-inner{
    max-width: 860px;
    margin: 0 auto;
}

.policy-header{
    margin-bottom: 28px;
}

.policy-title{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.policy-lead{
    font-size: 15px;
    color: #9c9ca6;
    line-height: 1.6;
}

.policy-section{
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-section:last-child{
    border-bottom: none;
}

.policy-section h2{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.policy-section p{
    font-size: 15px;
    color: #c8c8d0;
    line-height: 1.7;
    margin-bottom: 12px;
}

.policy-section ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 12px;
    padding: 0;
}

.policy-section li{
    position: relative;
    padding-left: 18px;
    font-size: 15px;
    color: #c8c8d0;
    line-height: 1.6;
}

.policy-section li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #e0242b;
}

.policy-section a{
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.policy-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.policy-btn,
.policy-btn-outline{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 0 8px 0 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
}

.policy-btn{
    background-color: #e0242b;
    color: #fff;
}

.policy-btn:hover{
    background-color: #b81c22;
}

.policy-btn-outline{
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.policy-btn-outline:hover{
    border-color: #fff;
}

.policy-contact-box{
    margin-top: 8px;
    padding: 22px;
    background-color: #16161f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 16px 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.category-empty{
    grid-column: 1 / -1;
    padding: 40px 24px;
    text-align: center;
    background-color: #16161f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 16px 0 16px;
}

.category-empty p{
    color: #9c9ca6;
    margin-bottom: 20px;
    font-size: 15px;
}

@media (max-width: 600px){
    .policy-page{
        padding: 20px 16px 48px;
    }

    .policy-title{
        font-size: 24px;
    }

    .policy-actions{
        flex-direction: column;
    }

    .policy-btn,
    .policy-btn-outline{
        width: 100%;
    }
}
