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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0b0b0f;
    color: #ffffff;
    line-height: 1.5;
}

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

button,
input,
select {
    font: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 11, 15, 0.94);
    border-bottom: 1px solid #22232a;
    backdrop-filter: blur(12px);
}

.header-content {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 2px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu a {
    color: #b7b7c0;
    font-size: 15px;
    transition: 0.2s;
}

.menu a:hover {
    color: #ffffff;
}

.menu-button {
    display: none;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 26px;
    cursor: pointer;
}

/* =========================
   HERO
========================= */

.hero {
    padding: 100px 0 85px;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255, 255, 255, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 30%,
            rgba(255, 255, 255, 0.05),
            transparent 30%
        ),
        #0b0b0f;
}

.hero-content {
    max-width: 760px;
}

.hero-tag,
.section-tag {
    display: inline-block;
    color: #bdbdc7;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.02;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.hero h1 span {
    color: #9b9ba5;
}

.hero p {
    max-width: 650px;
    color: #a7a7b1;
    font-size: 18px;
    margin-bottom: 32px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 10px;
    background: #ffffff;
    color: #0b0b0f;
    font-weight: 800;
    transition: 0.2s;
}

.hero-button:hover {
    transform: translateY(-2px);
}

/* =========================
   SEÇÕES
========================= */

main {
    padding-bottom: 80px;
}

.offers-section,
.categories,
.about {
    padding-top: 80px;
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 24px;
}

.section-header h2,
.categories h2,
.about h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}

.offer-count {
    color: #92929c;
    font-size: 14px;
}

/* =========================
   STATUS
========================= */

.status-gavix {
    display: block;
    width: 100%;
    margin: 0 0 25px;
    padding: 13px 16px;
    border: 1px solid #25262e;
    border-radius: 10px;
    background: #111116;
    color: #a9a9b2;
    font-size: 14px;
}

/* =========================
   FILTROS
========================= */

.filtros {
    display: grid;
    grid-template-columns: 1fr 220px 220px;
    gap: 12px;
    margin-bottom: 28px;
}

.filtros input,
.filtros select {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid #282931;
    border-radius: 10px;
    outline: none;
    background: #111116;
    color: #ffffff;
}

.filtros input::placeholder {
    color: #777782;
}

.filtros input:focus,
.filtros select:focus {
    border-color: #666672;
}

/* =========================
   CARDS
========================= */

.lista-ofertas {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.card {
    position: relative;
    overflow: hidden;
    border: 1px solid #24252c;
    border-radius: 16px;
    background: #111116;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-7px);
    border-color: #555660;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.38);
}

.card > img {
    display: block;
    width: 100%;
    height: 195px;
    object-fit: cover;
    background: #18181e;
    transition: transform 0.3s ease;
}

.card:hover > img {
    transform: scale(1.035);
}

.card-content {
    padding: 18px;
}

.card h3 {
    min-height: 48px;
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.4;
}

.desconto {
    display: inline-flex;
    align-items: center;
    margin-bottom: 13px;
    padding: 6px 9px;
    border-radius: 7px;
    background: #ffffff;
    color: #0b0b0f;
    font-size: 12px;
    font-weight: 900;
}

.preco-antigo {
    color: #777782;
    font-size: 13px;
    text-decoration: line-through;
}

.preco {
    margin-top: 2px;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.economia {
    margin-top: 8px;
    color: #b8b8c2;
    font-size: 13px;
    font-weight: 700;
}

.loja {
    margin-top: 15px;
    color: #d0d0d7;
    font-size: 13px;
    font-weight: 700;
}

.plataforma {
    margin-top: 6px;
    color: #85858f;
    font-size: 13px;
}

.botao {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    margin-top: 17px;
    border-radius: 9px;
    background: #ffffff;
    color: #0b0b0f;
    font-size: 13px;
    font-weight: 900;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.botao:hover {
    transform: translateY(-2px);
    background: #e9e9ed;
}

/* =========================
   CATEGORIAS
========================= */

.category-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 25px;
}

.category-list button {
    min-height: 70px;
    border: 1px solid #282931;
    border-radius: 12px;
    background: #111116;
    color: #ffffff;
    cursor: pointer;
    transition: 0.2s;
}

.category-list button:hover {
    transform: translateY(-3px);
    border-color: #555660;
}

/* =========================
   SOBRE
========================= */

.about {
    max-width: 850px;
}

.about p {
    margin-top: 20px;
    color: #9999a3;
    font-size: 17px;
}

/* =========================
   FOOTER
========================= */

footer {
    border-top: 1px solid #22232a;
    background: #08080b;
}

.footer-content {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #777782;
    font-size: 13px;
}

.footer-content strong {
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 1px;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 1000px) {

    .lista-ofertas {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .filtros {
        grid-template-columns: 1fr 1fr;
    }

    .filtros input {
        grid-column: 1 / -1;
    }

}

@media (max-width: 720px) {

    .header-content {
        min-height: 68px;
    }

    .menu {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .hero {
        padding: 75px 0 65px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .section-header {
        align-items: start;
        flex-direction: column;
    }

    .lista-ofertas {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        justify-content: center;
        padding: 25px 0;
    }

}

@media (max-width: 500px) {

    .container {
        width: min(94%, 1180px);
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }

    .filtros {
        grid-template-columns: 1fr;
    }

    .filtros input {
        grid-column: auto;
    }

    .lista-ofertas {
        grid-template-columns: 1fr;
    }

    .card > img {
        height: 210px;
    }

    .category-list {
        grid-template-columns: 1fr;
    }

}/* =========================
   LOJAS
========================= */

.stores-section {
    padding-top: 80px;
}

.lista-lojas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.store-card {
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid #282931;
    border-radius: 14px;
    background: #111116;
    color: #ffffff;
    cursor: pointer;
    text-align: left;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.store-card:hover {
    transform: translateY(-5px);
    border-color: #555660;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.store-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    background: #202127;
    font-size: 21px;
}

.store-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.store-info strong {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.store-info small {
    color: #85858f;
    font-size: 12px;
}

.store-arrow {
    margin-left: auto;
    color: #888893;
    font-size: 20px;
}


/* =========================
   RESPONSIVO - LOJAS
========================= */

@media (max-width: 1000px) {

    .lista-lojas {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 500px) {

    .lista-lojas {
        grid-template-columns: 1fr;
    }

}/* =========================
   PÁGINA INDIVIDUAL
========================= */

.pagina-jogo {
    padding-top: 45px;
    padding-bottom: 80px;
}

.voltar {
    display: inline-block;
    margin-bottom: 30px;
    color: #a5a5af;
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s;
}

.voltar:hover {
    color: #ffffff;
    transform: translateX(-3px);
}

.detalhes-jogo {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 1.1fr);
    gap: 45px;
    align-items: center;
    padding: 35px;
    border: 1px solid #282931;
    border-radius: 18px;
    background: #111116;
}

.jogo-imagem img {
    display: block;
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 14px;
    background: #18181e;
}

.jogo-info h1 {
    margin: 10px 0 20px;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.jogo-preco-antigo {
    color: #777782;
    font-size: 15px;
    text-decoration: line-through;
}

.jogo-preco {
    margin-top: 3px;
    font-size: 40px;
    font-weight: 900;
}

.jogo-economia {
    margin-top: 8px;
    color: #b8b8c2;
    font-size: 15px;
    font-weight: 700;
}

.jogo-detalhes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 25px;
}

.jogo-detalhes > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    border: 1px solid #282931;
    border-radius: 10px;
    background: #0d0d11;
}

.jogo-detalhes strong {
    color: #ffffff;
    font-size: 13px;
}

.jogo-detalhes span {
    color: #888893;
    font-size: 13px;
}

.jogo-botao {
    margin-top: 25px;
    min-height: 52px;
    font-size: 14px;
}


/* =========================
   COMPARAÇÃO DE LOJAS
========================= */

.outras-ofertas {
    padding-top: 70px;
}

.comparacao-lojas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.oferta-loja {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 18px;
    border: 1px solid #282931;
    border-radius: 13px;
    background: #111116;
    transition: 0.2s;
}

.oferta-loja:hover {
    border-color: #555660;
    transform: translateY(-2px);
}

.oferta-loja > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.oferta-loja > div:first-child strong {
    font-size: 16px;
}

.oferta-loja > div:first-child span {
    color: #85858f;
    font-size: 13px;
}

.oferta-loja > div:last-child {
    display: flex;
    align-items: center;
    gap: 20px;
}

.preco-comparacao {
    font-size: 21px;
    white-space: nowrap;
}


/* =========================
   RESPONSIVO - PÁGINA
========================= */

@media (max-width: 800px) {

    .detalhes-jogo {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 22px;
    }

    .jogo-imagem img {
        max-height: 400px;
    }

}


@media (max-width: 600px) {

    .jogo-detalhes {
        grid-template-columns: 1fr;
    }

    .oferta-loja {
        align-items: flex-start;
        flex-direction: column;
    }

    .oferta-loja > div:last-child {
        width: 100%;
        justify-content: space-between;
    }

    .preco-comparacao {
        font-size: 18px;
    }

}/* =========================================
   GAVIX — NOVO VISUAL DA HOME
========================================= */

/* Fundo geral */
body {
    background: #08090d;
    color: #f5f5f7;
}


/* Container */
.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 9, 13, 0.92);
    border-bottom: 1px solid #22242c;
    backdrop-filter: blur(14px);
}

.header-content {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    color: #ffffff;
    text-decoration: none;
    font-size: 25px;
    font-weight: 950;
    letter-spacing: -1px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.menu a {
    color: #a7a8b0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s;
}

.menu a:hover {
    color: #ffffff;
}

.menu-button {
    display: none;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 25px;
    cursor: pointer;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #20222a;
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(255, 255, 255, 0.09),
            transparent 30%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(255, 255, 255, 0.05),
            transparent 28%
        ),
        #090a0f;
}

.hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -120px;
    top: -150px;
    border-radius: 50%;
    border: 1px solid #292b34;
}

.hero::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: 30px;
    bottom: -160px;
    border-radius: 50%;
    border: 1px solid #24262e;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 80px 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid #30323a;
    border-radius: 999px;
    background: #111218;
    color: #d5d5db;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.hero h1 {
    margin: 22px 0 20px;
    font-size: clamp(45px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: -4px;
    font-weight: 950;
}

.hero h1 span {
    display: block;
    color: #a9abb4;
}

.hero p {
    max-width: 650px;
    margin: 0 0 30px;
    color: #92949e;
    font-size: 17px;
    line-height: 1.7;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 10px;
    background: #ffffff;
    color: #090a0f;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    transition: 0.2s;
}

.hero-button:hover {
    transform: translateY(-3px);
    background: #e9e9ec;
}


/* =========================================
   SEÇÕES
========================================= */

main.container {
    padding-top: 25px;
}

.offers-section,
.stores-section,
.categories,
.about {
    padding: 80px 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.section-tag {
    display: inline-block;
    margin-bottom: 8px;
    color: #888b96;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.section-header h2,
.categories h2,
.about h2 {
    margin: 0;
    font-size: clamp(27px, 4vw, 42px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.offer-count {
    color: #858792;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================
   STATUS
========================================= */

.status-gavix {
    margin-bottom: 22px;
    padding: 13px 16px;
    border: 1px solid #24262e;
    border-radius: 10px;
    background: #101116;
    color: #8e909a;
    font-size: 13px;
}


/* =========================================
   FILTROS
========================================= */

.filtros {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 25px;
}

.filtros input,
.filtros select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #292b33;
    border-radius: 9px;
    outline: none;
    background: #101116;
    color: #eeeeF2;
    font-size: 13px;
}

.filtros input::placeholder {
    color: #6f717b;
}

.filtros input:focus,
.filtros select:focus {
    border-color: #5b5e69;
}


/* =========================================
   CARDS
========================================= */

.lista-ofertas {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.card {
    overflow: hidden;
    border: 1px solid #262830;
    border-radius: 14px;
    background: #101116;
    transition:
        transform 0.2s,
        border-color 0.2s,
        box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #484b56;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.card > img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #181920;
}

.card-content {
    padding: 17px;
}

.card-content h3 {
    min-height: 44px;
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.35;
}

.desconto {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 8px;
    border-radius: 6px;
    background: #1b1d24;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
}

.preco-antigo {
    color: #6e7079;
    font-size: 12px;
    text-decoration: line-through;
}

.preco {
    margin-top: 2px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 950;
}

.economia {
    margin-top: 5px;
    color: #92949d;
    font-size: 12px;
    font-weight: 700;
}

.loja,
.plataforma {
    margin-top: 9px;
    color: #858791;
    font-size: 12px;
}

.botao {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    margin-top: 16px;
    border-radius: 8px;
    background: #ffffff;
    color: #090a0f;
    text-decoration: none;
    font-size: 11px;
    font-weight: 950;
    transition: 0.2s;
}

.botao:hover {
    background: #dedee2;
    transform: translateY(-2px);
}


/* =========================================
   LOJAS
========================================= */

.lista-lojas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.store-card {
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid #282a32;
    border-radius: 12px;
    background: #101116;
    color: #ffffff;
    cursor: pointer;
    text-align: left;
    transition: 0.2s;
}

.store-card:hover {
    transform: translateY(-3px);
    border-color: #50535e;
}

.store-icon {
    font-size: 24px;
}

.store-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.store-info strong {
    font-size: 14px;
}

.store-info small {
    color: #777a85;
    font-size: 11px;
}

.store-arrow {
    margin-left: auto;
    color: #777a85;
    font-size: 20px;
}


/* =========================================
   CATEGORIAS
========================================= */

.category-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 25px;
}

.category-list button {
    min-height: 90px;
    border: 1px solid #282a32;
    border-radius: 12px;
    background: #101116;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s;
}

.category-list button:hover {
    transform: translateY(-3px);
    border-color: #50535e;
    background: #15161c;
}


/* =========================================
   SOBRE
========================================= */

.about {
    max-width: 850px;
}

.about p {
    max-width: 700px;
    margin-top: 18px;
    color: #858791;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   FOOTER
========================================= */

footer {
    border-top: 1px solid #24262d;
    background: #07080b;
}

.footer-content {
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #71737d;
    font-size: 12px;
}

.footer-content strong {
    color: #ffffff;
    font-size: 18px;
}


/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 1000px) {

    .lista-ofertas {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .filtros {
        grid-template-columns: 1fr 1fr;
    }

    .lista-lojas,
    .category-list {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .menu {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .hero {
        min-height: 500px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .lista-ofertas {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .filtros {
        grid-template-columns: 1fr;
    }

    .footer-content {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

}


@media (max-width: 480px) {

    .hero-content {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero p {
        font-size: 15px;
    }

    .lista-ofertas {
        grid-template-columns: 1fr;
    }

    .lista-lojas,
    .category-list {
        grid-template-columns: 1fr;
    }

}/* =========================================
   CARDS — DESTAQUE PREMIUM
========================================= */

.card {
    position: relative;
    overflow: hidden;
}

.card > img {
    transition: transform 0.35s ease;
}

.card:hover > img {
    transform: scale(1.04);
}

.card-content {
    position: relative;
}

.card-content h3 {
    transition: color 0.2s ease;
}

.card:hover .card-content h3 {
    color: #e5e5e8;
}

.desconto {
    border: 1px solid #343640;
    background: #181a20;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.preco {
    font-size: 27px;
    letter-spacing: -0.5px;
}

.economia {
    display: inline-block;
    margin-top: 7px;
    padding: 5px 7px;
    border-radius: 5px;
    background: #17191f;
}

.loja,
.plataforma {
    display: flex;
    align-items: center;
    gap: 5px;
}

.botao {
    position: relative;
    overflow: hidden;
}

.botao::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-20deg);
    transition: left 0.45s ease;
}

.botao:hover::after {
    left: 130%;
}


/* =========================================
   BADGE DE MELHOR OFERTA
========================================= */

.card:first-child::before {
    content: "🔥 DESTAQUE";
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    padding: 6px 9px;
    border: 1px solid #3b3d46;
    border-radius: 6px;
    background: rgba(8, 9, 13, 0.9);
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.5px;
}


/* =========================================
   ESPAÇAMENTO DOS CARDS
========================================= */

.lista-ofertas {
    align-items: stretch;
}

.lista-ofertas .card {
    height: 100%;
}

.lista-ofertas .card-content {
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

.lista-ofertas .botao {
    margin-top: auto;
}


/* =========================================
   HOVER MAIS SUAVE
========================================= */

.card,
.store-card,
.category-list button {
    will-change: transform;
}
/* =========================================
   HEADER PREMIUM
========================================= */

.header {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.logo::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.45);
}

.menu a {
    position: relative;
    padding: 25px 0;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 17px;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: #ffffff;
    transition: width 0.25s ease;
}

.menu a:hover::after {
    width: 100%;
}

.menu-button {
    width: 42px;
    height: 42px;
    border: 1px solid #2c2e36;
    border-radius: 9px;
    background: #111218;
    font-size: 20px;
}

.menu-button:hover {
    background: #181a20;
}/* =========================================
   OFERTAS IMPERDÍVEIS
========================================= */

.imperdiveis-section {
    position: relative;
    margin: 20px 0;
    padding: 55px 0;
}

.imperdiveis-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border: 1px solid #252730;
    border-radius: 20px;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(255, 255, 255, 0.06),
            transparent 28%
        ),
        #0d0e13;
}

.imperdiveis-section .section-header {
    padding: 0 35px;
}

.imperdiveis-section .lista-ofertas {
    padding: 0 35px 5px;
}

.card-destaque {
    border-color: #3b3d47;
}

.card-destaque:hover {
    border-color: #626570;
}

.badge-imperdivel {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 10px;
    padding: 5px 8px;
    border: 1px solid #363842;
    border-radius: 6px;
    background: #191b21;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.imperdiveis-section .card {
    background: #111218;
}

.imperdiveis-section .preco {
    font-size: 28px;
}

@media (max-width: 700px) {

    .imperdiveis-section {
        padding: 40px 0;
    }

    .imperdiveis-section .section-header {
        padding: 0 20px;
    }

    .imperdiveis-section .lista-ofertas {
        padding: 0 20px 5px;
    }

}