/* ==========================================
   MATRIX STORE
========================================== */

:root {
    --bg: #030504;
    --bg-secondary: #070a08;
    --card: #090d0a;
    --card-hover: #0d120e;

    --green: #00ff66;
    --green-dark: #00c853;
    --green-soft: rgba(0, 255, 102, 0.12);

    --white: #f4f7f5;
    --gray: #8b948e;
    --gray-light: #b4bdb7;

    --border: rgba(255, 255, 255, 0.08);
    --border-green: rgba(0, 255, 102, 0.25);

    --container: 1180px;

    --radius: 18px;
    --radius-small: 10px;

    --transition: 0.25s ease;
}

/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

/* ==========================================
   BACKGROUND
========================================== */

.background-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -3;

    background-image:
        linear-gradient(rgba(0, 255, 102, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 102, 0.018) 1px, transparent 1px);

    background-size: 60px 60px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.7),
            transparent 85%
        );
}

.background-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: -2;
}

.glow-1 {
    width: 500px;
    height: 500px;

    background: rgba(0, 255, 102, 0.08);

    top: 100px;
    right: -200px;
}

.glow-2 {
    width: 400px;
    height: 400px;

    background: rgba(0, 255, 102, 0.04);

    bottom: 0;
    left: -150px;
}

/* ==========================================
   TOPBAR
========================================== */

.topbar {
    background:
        linear-gradient(
            90deg,
            #00a841,
            var(--green),
            #00a841
        );

    color: #001707;

    font-size: 12px;
    font-weight: 800;
}

.topbar-content {
    height: 31px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 15px;
}

.topbar-highlight {
    background: rgba(0, 0, 0, 0.15);
    padding: 3px 8px;
    border-radius: 5px;
}

/* ==========================================
   NAVBAR
========================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(3, 5, 4, 0.78);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid var(--border);
}

.navbar {
    height: 74px;

    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;

    gap: 11px;
}

.logo-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            rgba(0, 255, 102, 0.22),
            rgba(0, 255, 102, 0.03)
        );

    border: 1px solid var(--border-green);
    border-radius: 11px;

    color: var(--green);

    font-size: 21px;
    font-weight: 900;

    box-shadow:
        inset 0 0 20px rgba(0, 255, 102, 0.06);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-size: 14px;
    letter-spacing: 0.4px;
}

.logo-text span {
    color: var(--gray);

    font-size: 10px;

    margin-top: 2px;
}

.nav-links {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 32px;
}

.nav-links a {
    color: var(--gray-light);

    font-size: 13px;
    font-weight: 600;

    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--green);
}

.nav-button {
    margin-left: 35px;

    padding: 11px 18px;

    border-radius: 9px;

    background: var(--green);

    color: #001707;

    font-size: 12px;
    font-weight: 800;

    transition: var(--transition);
}

.nav-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 30px rgba(0, 255, 102, 0.2);
}

.menu-button {
    display: none;

    margin-left: auto;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);
    border-radius: 9px;

    background: var(--card);

    cursor: pointer;
}

.menu-button span {
    display: block;

    width: 18px;
    height: 2px;

    background: var(--white);

    margin: 4px auto;
}

/* ==========================================
   HERO
========================================== */

.hero {
    min-height: 650px;

    display: flex;
    align-items: center;

    padding: 95px 0 80px;
}

.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(450px, 1.1fr);

    align-items: center;

    gap: 90px;
}

.badge,
.section-label {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 7px 11px;

    border: 1px solid var(--border-green);
    border-radius: 999px;

    background: var(--green-soft);

    color: var(--green);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.8px;
}

.badge-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 10px var(--green);
}

.hero h1 {
    max-width: 610px;

    margin-top: 23px;

    font-size: clamp(45px, 5vw, 70px);
    line-height: 1.03;

    letter-spacing: -3.5px;
}

.hero h1 span {
    color: var(--green);
}

.hero-description {
    max-width: 560px;

    margin-top: 24px;

    color: var(--gray-light);

    font-size: 16px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 12px;

    margin-top: 30px;
}

.button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 20px;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 800;

    transition: var(--transition);
}

.button-primary {
    background: var(--green);

    color: #001707;

    box-shadow:
        0 0 35px rgba(0, 255, 102, 0.12);
}

.button-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 40px rgba(0, 255, 102, 0.25);
}

.button-secondary {
    border: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.025);

    color: var(--white);
}

.button-secondary:hover {
    border-color: var(--border-green);
    color: var(--green);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 24px;
}

.hero-features div {
    padding: 7px 10px;

    border: 1px solid var(--border);
    border-radius: 999px;

    color: var(--gray);

    font-size: 10px;
    font-weight: 600;
}

.hero-features span {
    color: var(--green);

    margin-right: 4px;
}

/* HERO CARD */

.hero-card {
    position: relative;

    padding: 1px;

    overflow: hidden;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(0, 255, 102, 0.5),
            rgba(255, 255, 255, 0.04),
            rgba(0, 255, 102, 0.1)
        );

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.5);
}

.hero-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -90px;
    right: -70px;

    background: var(--green);

    filter: blur(100px);

    opacity: 0.15;
}

.hero-card > *:not(.hero-card-glow) {
    position: relative;
    z-index: 2;
}

.hero-card-header {
    height: 55px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 20px;

    background: #080c09;

    border-radius: 21px 21px 0 0;

    color: var(--green);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.7px;
}

.status {
    display: flex;
    align-items: center;

    gap: 7px;

    color: var(--gray-light);
}

.status span,
.product-status span {
    width: 6px;
    height: 6px;

    background: var(--green);

    border-radius: 50%;

    box-shadow:
        0 0 8px var(--green);
}

.hero-product {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(0, 255, 102, 0.08),
            transparent 45%
        ),
        #050806;

    border-radius: 0 0 21px 21px;
}

.product-visual {
    min-height: 330px;

    position: relative;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    overflow: hidden;
}

.matrix-lines {
    position: absolute;
    inset: 0;

    opacity: 0.16;

    background-image:
        linear-gradient(
            rgba(0, 255, 102, 0.2) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 255, 102, 0.2) 1px,
            transparent 1px
        );

    background-size: 35px 35px;

    transform:
        perspective(400px)
        rotateX(60deg)
        scale(1.5);

    transform-origin: bottom;
}

.product-symbol {
    position: relative;

    color: var(--green);

    font-size: 115px;
    font-weight: 900;

    line-height: 1;

    text-shadow:
        0 0 40px rgba(0, 255, 102, 0.4);
}

.product-game {
    position: relative;

    margin-top: 15px;

    color: var(--gray);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 5px;
}

.product-visual h2 {
    position: relative;

    margin-top: 5px;

    font-size: 27px;

    letter-spacing: 4px;
}

.product-visual h2 strong {
    color: var(--green);
}

.hero-product-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--border);
}

.hero-product-info div {
    padding: 16px 20px;

    display: flex;
    flex-direction: column;

    gap: 4px;
}

.hero-product-info div:not(:last-child) {
    border-right: 1px solid var(--border);
}

.hero-product-info span {
    color: var(--gray);

    font-size: 9px;
}

.hero-product-info strong {
    font-size: 11px;
}

/* ==========================================
   SECTIONS
========================================== */

.section {
    padding: 90px 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 30px;

    margin-bottom: 38px;
}

.section-heading.center {
    justify-content: center;

    text-align: center;
}

.section-heading.center > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-heading h2 {
    margin-top: 13px;

    font-size: clamp(28px, 3vw, 40px);

    letter-spacing: -1.5px;
}

.section-heading h2 span {
    color: var(--green);
}

.section-heading > p {
    max-width: 380px;

    color: var(--gray);

    font-size: 12px;
    line-height: 1.7;
}

/* ==========================================
   PRODUCTS
========================================== */

.products-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.product-card {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: var(--card);

    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);

    border-color: var(--border-green);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35);
}

.product-image {
    height: 220px;

    position: relative;

    display: grid;
    place-items: center;

    overflow: hidden;

    border-bottom: 1px solid var(--border);
}

.product-image::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(0, 255, 102, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 255, 102, 0.06) 1px,
            transparent 1px
        );

    background-size: 30px 30px;
}

.product-image-1 {
    background:
        radial-gradient(
            circle,
            rgba(0, 255, 102, 0.15),
            transparent 55%
        ),
        #050806;
}

.product-image-2 {
    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(0, 255, 102, 0.16),
            transparent 50%
        ),
        #050806;
}

.product-image-3 {
    background:
        radial-gradient(
            circle at 70% 20%,
            rgba(0, 255, 102, 0.18),
            transparent 45%
        ),
        #050806;
}

.card-logo {
    position: relative;

    color: var(--green);

    font-size: 65px;
    font-weight: 900;

    text-shadow:
        0 0 30px rgba(0, 255, 102, 0.35);
}

.card-game {
    position: absolute;

    left: 18px;
    bottom: 15px;

    z-index: 2;

    color: rgba(255, 255, 255, 0.45);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.product-status {
    position: absolute;

    z-index: 3;

    top: 14px;
    right: 14px;

    display: flex;
    align-items: center;

    gap: 6px;

    padding: 6px 8px;

    background: rgba(0, 0, 0, 0.55);

    border: 1px solid var(--border);
    border-radius: 999px;

    color: var(--gray-light);

    font-size: 8px;
    font-weight: 800;
}

.product-content {
    padding: 20px;
}

.product-category {
    color: var(--green);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}

.product-content h3 {
    margin-top: 7px;

    font-size: 19px;
}

.product-content > p {
    min-height: 42px;

    margin-top: 8px;

    color: var(--gray);

    font-size: 11px;
    line-height: 1.7;
}

.product-details {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    margin-top: 16px;
}

.product-details span {
    padding: 5px 8px;

    border: 1px solid var(--border);
    border-radius: 6px;

    color: var(--gray-light);

    font-size: 8px;
    font-weight: 700;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 15px;

    margin-top: 20px;

    padding-top: 17px;

    border-top: 1px solid var(--border);
}

.price {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.price small {
    color: var(--gray);

    font-size: 8px;
}

.price strong {
    font-size: 18px;
}

.buy-button {
    padding: 10px 15px;

    border: none;
    border-radius: 8px;

    background: var(--green);

    color: #001707;

    font-size: 10px;
    font-weight: 800;

    cursor: pointer;

    transition: var(--transition);
}

.buy-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(0, 255, 102, 0.2);
}

/* ==========================================
   ADVANTAGES
========================================== */

.advantages {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.012);
}

.advantages-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.advantage-card {
    padding: 28px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.025),
            transparent
        );

    transition: var(--transition);
}

.advantage-card:hover {
    border-color: var(--border-green);

    transform: translateY(-4px);
}

.advantage-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border-green);
    border-radius: 11px;

    background: var(--green-soft);
}

.advantage-card h3 {
    margin-top: 18px;

    font-size: 15px;
}

.advantage-card p {
    margin-top: 8px;

    color: var(--gray);

    font-size: 11px;
    line-height: 1.7;
}

/* ==========================================
   FAQ
========================================== */

.faq-container {
    max-width: 850px;
}

.faq-list {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.faq-item {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: var(--card);
}

.faq-question {
    width: 100%;

    padding: 18px 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border: none;

    background: transparent;

    color: var(--white);

    font-size: 12px;
    font-weight: 700;

    text-align: left;

    cursor: pointer;
}

.faq-question span {
    color: var(--green);

    font-size: 20px;

    transition: var(--transition);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 18px;

    color: var(--gray);

    font-size: 11px;
    line-height: 1.8;
}

.faq-item.active {
    border-color: var(--border-green);
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* ==========================================
   CTA
========================================== */

.cta-section {
    padding: 20px 0 100px;
}

.cta-box {
    position: relative;

    overflow: hidden;

    padding: 70px 30px;

    border: 1px solid var(--border-green);
    border-radius: 22px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(0, 255, 102, 0.11),
            transparent 55%
        ),
        var(--card);

    text-align: center;
}

.cta-content {
    position: relative;
    z-index: 2;

    max-width: 600px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-content h2 {
    margin-top: 16px;

    font-size: clamp(30px, 4vw, 46px);

    letter-spacing: -2px;
}

.cta-content p {
    margin: 14px 0 25px;

    color: var(--gray);

    font-size: 12px;
}

/* ==========================================
   FOOTER
========================================== */

.footer {
    padding: 50px 0 25px;

    border-top: 1px solid var(--border);

    background: #020302;
}

.footer-content {
    display: flex;
    justify-content: space-between;

    gap: 40px;
}

.footer-brand > p {
    margin-top: 14px;

    color: var(--gray);

    font-size: 10px;
}

.footer-links {
    display: flex;
    align-items: center;

    gap: 25px;
}

.footer-links a {
    color: var(--gray);

    font-size: 10px;

    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--green);
}

.copyright {
    margin-top: 40px;

    padding-top: 20px;

    border-top: 1px solid var(--border);

    display: flex;
    justify-content: space-between;

    color: #4e5751;

    font-size: 8px;

    letter-spacing: 0.4px;
}

/* ==========================================
   RESPONSIVO
========================================== */

@media (max-width: 900px) {

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .hero-content {
        max-width: 650px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 700px) {

    .topbar-content {
        font-size: 9px;
    }

    .topbar-highlight {
        display: none;
    }

    .navbar {
        height: 65px;
    }

    .nav-links,
    .nav-button {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .nav-links.active {
        position: absolute;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        top: 65px;
        left: 20px;
        right: 20px;

        padding: 10px;

        border: 1px solid var(--border);
        border-radius: 12px;

        background: #080c09;

        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active a {
        padding: 14px;
    }

    .hero {
        min-height: auto;

        padding: 65px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 45px;

        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .product-visual {
        min-height: 270px;
    }

    .product-symbol {
        font-size: 85px;
    }

    .product-visual h2 {
        font-size: 20px;
    }

    .section {
        padding: 65px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .copyright {
        flex-direction: column;

        gap: 8px;
    }

}

@media (max-width: 450px) {

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .logo-text span {
        display: none;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero-product-info div {
        padding: 13px 10px;
    }

    .hero-product-info strong {
        font-size: 9px;
    }

}

/* ==========================================
   MATRIX INTERACTIVE BACKGROUND
========================================== */

body {
    background:
        radial-gradient(
            circle at 50% 0%,
            #07100b 0%,
            #050b07 32%,
            #030704 65%,
            #020403 100%
        );

    position: relative;
}


/* CANVAS DAS PARTÍCULAS */

#matrixNetwork {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: -4;

    pointer-events: none;
}


/* GRID MAIS VISÍVEL */

.background-grid {
    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: -5;

    background-image:
        linear-gradient(
            rgba(0, 255, 102, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 255, 102, 0.025) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    opacity: 0.78;

    mask-image:
        linear-gradient(
            to bottom,
            black 0%,
            rgba(0, 0, 0, 0.8) 60%,
            transparent 100%
        );
}


/* GLOW QUE SEGUE O MOUSE */

/* ==========================================
   CURSOR MATRIX - ESTRELA
========================================== */

#cursorGlow {
    position: fixed;

    width: 7px;
    height: 7px;

    left: 0;
    top: 0;

    z-index: 9998;

    pointer-events: none;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 4px #ffffff,
        0 0 8px #00ff66,
        0 0 14px #00ff66,
        0 0 24px rgba(0, 255, 102, 0.65);

    transform: translate(-50%, -50%);

    opacity: 0;

    transition: opacity 0.2s ease;
}


/* partículas criadas pelo JS */

.cursor-star-particle {
    position: fixed;

    z-index: 9997;

    pointer-events: none;

    border-radius: 50%;

    background: #00ff66;

    box-shadow:
        0 0 6px #00ff66,
        0 0 12px rgba(0, 255, 102, 0.6);

    transform: translate(-50%, -50%);

    animation:
        cursorStarFade 500ms ease-out forwards;
}


@keyframes cursorStarFade {

    0% {
        opacity: 0.95;

        transform:
            translate(-50%, -50%)
            scale(1);
    }

    100% {
        opacity: 0;

        transform:
            translate(
                calc(-50% + var(--move-x)),
                calc(-50% + var(--move-y))
            )
            scale(0);
    }

}


/* linha/rastro da estrela */

.cursor-trail {
    position: fixed;

    height: 1px;

    z-index: 9996;

    pointer-events: none;

    transform-origin: left center;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.85),
            rgba(0,255,102,0.6),
            transparent
        );

    filter:
        drop-shadow(
            0 0 4px rgba(0,255,102,0.8)
        );

    animation:
        trailDisappear 300ms ease-out forwards;
}


@keyframes trailDisappear {

    from {
        opacity: 0.8;
    }

    to {
        opacity: 0;
    }

}


@media (pointer: coarse) {

    #cursorGlow,
    .cursor-star-particle,
    .cursor-trail {
        display: none;
    }

}
/* VANTAGENS COM GLASS */

.advantages {
    background:
        rgba(5, 12, 8, 0.55);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);
}


/* CARDS COM UM POUCO DE TRANSPARÊNCIA */

.product-card,
.advantage-card,
.faq-item {
    background:
        rgba(8, 15, 10, 0.78);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);
}


/* GLOW NOS CARDS */

.product-card {
    position: relative;
}

.product-card::after {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    pointer-events: none;

    opacity: 0;

    background:
        radial-gradient(
            500px circle at var(--mouse-x) var(--mouse-y),
            rgba(0, 255, 102, 0.09),
            transparent 40%
        );

    transition: opacity 0.3s ease;
}

.product-card:hover::after {
    opacity: 1;
}


/* CURSOR */

@media (pointer: fine) {

    body {
        cursor: default;
    }

    a,
    button {
        cursor: pointer;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    #cursorGlow {
        display: none;
    }

    #matrixNetwork {
        opacity: 0.78;
    }

}



/* ==========================================
   AJUSTES INDEX.PHP / CATÁLOGO
========================================== */

.hero-card {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}

.hero-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 35px 110px rgba(0, 0, 0, 0.58),
        0 0 45px rgba(0, 255, 102, 0.07);
}

.product-image {
    width: 100%;
    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(0, 255, 102, 0.13),
            transparent 55%
        ),
        #050806;
}

.product-card {
    min-width: 0;
}

.product-content {
    position: relative;
    z-index: 2;
}

.product-content h3 a {
    display: inline-block;
}

.buy-button {
    white-space: nowrap;
}

@media (max-width: 450px) {
    .product-footer {
        align-items: center;
    }

    .buy-button {
        padding: 10px 12px;
    }
}


/* ==========================================
   FILTROS DO CATÁLOGO
========================================== */

.product-filters {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin:
        -10px 0
        28px;
}

.filter-button {
    padding:
        9px 14px;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius:
        999px;

    background:
        rgba(255,255,255,.025);

    color:
        #89928c;

    font-family:
        inherit;

    font-size:
        9px;

    font-weight:
        800;

    text-transform:
        uppercase;

    letter-spacing:
        .5px;

    cursor:
        pointer;

    transition:
        .2s ease;
}

.filter-button:hover {
    color:
        #00ff66;

    border-color:
        rgba(0,255,102,.25);

    background:
        rgba(0,255,102,.04);
}

.filter-button.active {
    color:
        #001707;

    border-color:
        #00ff66;

    background:
        #00ff66;

    box-shadow:
        0 0 20px
        rgba(0,255,102,.1);
}


/* LINKS DOS CARDS */

.product-image {
    display: grid;

    color:
        inherit;
}

.product-content h3 a {
    color:
        inherit;

    transition:
        color .2s ease;
}

.product-content h3 a:hover {
    color:
        #00ff66;
}

.buy-button {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    text-decoration:
        none;
}


/* FILTRO */

.product-card {
    animation:
        productAppear
        .25s ease;
}

@keyframes productAppear {

    from {
        opacity: 0;
        transform:
            translateY(8px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }

}


/* RESPONSIVO */

@media (max-width: 700px) {

    .product-filters {
        flex-wrap:
            nowrap;

        overflow-x:
            auto;

        padding-bottom:
            7px;

        scrollbar-width:
            none;
    }

    .product-filters::-webkit-scrollbar {
        display:
            none;
    }

    .filter-button {
        flex:
            0 0 auto;
    }

}

/* =========================================================
   LOGO OFICIAL MATRIX STORE
========================================================= */

.header .logo,
.footer .logo {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    width: auto;
    max-width: 100%;
}


/*
|--------------------------------------------------------------------------
| CONTAINER DA LOGO
|--------------------------------------------------------------------------
*/

.header .logo .logo-icon.logo-image,
.footer .logo .logo-icon.logo-image {
    width: 44px !important;
    height: 44px !important;

    min-width: 44px !important;
    min-height: 44px !important;

    max-width: 44px !important;
    max-height: 44px !important;

    flex: 0 0 44px;

    display: grid;
    place-items: center;

    padding: 3px !important;
    margin: 0;

    overflow: hidden;

    border:
        1px solid
        rgba(0, 255, 102, 0.28);

    border-radius: 11px;

    background:
        radial-gradient(
            circle at center,
            rgba(0, 255, 102, 0.08),
            rgba(2, 5, 3, 0.95) 72%
        );

    box-shadow:
        inset 0 0 18px
        rgba(0, 255, 102, 0.06),

        0 0 18px
        rgba(0, 255, 102, 0.04);
}


/*
|--------------------------------------------------------------------------
| IMAGEM DA LOGO
|--------------------------------------------------------------------------
|
| contain = nunca corta a logo.
|
*/

.header .logo .logo-icon.logo-image img,
.footer .logo .logo-icon.logo-image img {
    position: static !important;

    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;
    max-height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
    object-position: center !important;

    border-radius: 8px;

    transform: none !important;
}


/* =========================================================
   IMAGENS DOS PRODUTOS
========================================================= */


/*
|--------------------------------------------------------------------------
| ÁREA SUPERIOR DO CARD
|--------------------------------------------------------------------------
*/

.product-image {
    position: relative;

    width: 100%;
    height: 230px;

    display: grid !important;
    place-items: center !important;

    padding: 10px;

    overflow: hidden;

    border-bottom:
        1px solid
        var(--border);

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(0, 255, 102, 0.07),
            transparent 58%
        ),
        #020503;
}


/*
|--------------------------------------------------------------------------
| IMAGEM DO PRODUTO
|--------------------------------------------------------------------------
|
| IMPORTANTE:
|
| object-fit: contain
|
| Faz QUALQUER imagem aparecer inteira.
|
| Horizontal = inteira
| Quadrada    = inteira
| Vertical    = inteira
|
*/

.product-card-img {
    position: relative !important;

    inset: auto !important;

    z-index: 1;

    display: block;

    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;
    max-height: 100% !important;

    object-fit: contain !important;
    object-position: center !important;

    border-radius: 10px;

    transform: none;

    transition:
        transform .35s ease,
        filter .35s ease;
}


/*
|--------------------------------------------------------------------------
| GRID MATRIX ATRÁS DA IMAGEM
|--------------------------------------------------------------------------
|
| Quando uma imagem não ocupar todo o espaço,
| esse fundo aparece em vez de ficar um vazio feio.
|
*/

.product-image::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 0;

    pointer-events: none;

    background-image:

        linear-gradient(
            rgba(0, 255, 102, 0.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(0, 255, 102, 0.025) 1px,
            transparent 1px
        );

    background-size:
        28px 28px;

    opacity: 0.65;
}


/*
|--------------------------------------------------------------------------
| SOMBRA NA PARTE INFERIOR
|--------------------------------------------------------------------------
|
| Não cobre mais a arte inteira.
|
*/

.product-image-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,

            transparent 0%,

            transparent 64%,

            rgba(
                2,
                5,
                3,
                0.10
            ) 76%,

            rgba(
                2,
                5,
                3,
                0.70
            ) 100%
        );
}


/*
|--------------------------------------------------------------------------
| STATUS ONLINE
|--------------------------------------------------------------------------
*/

.product-status {
    z-index: 6;
}


/*
|--------------------------------------------------------------------------
| NOME DO JOGO SOBRE A IMAGEM
|--------------------------------------------------------------------------
*/

.card-game {
    z-index: 6;

    color:
        rgba(
            255,
            255,
            255,
            0.82
        );

    text-shadow:

        0 2px 10px
        rgba(
            0,
            0,
            0,
            0.95
        ),

        0 0 8px
        rgba(
            0,
            0,
            0,
            0.8
        );
}


/*
|--------------------------------------------------------------------------
| HOVER
|--------------------------------------------------------------------------
|
| Zoom extremamente leve.
| Continua mostrando praticamente 100% da arte.
|
*/

.product-card:hover
.product-card-img {
    transform:
        scale(1.015);

    filter:
        brightness(1.05)
        saturate(1.03);
}


/* =========================================================
   HERO — PRODUTO EM DESTAQUE
========================================================= */


/*
|--------------------------------------------------------------------------
| ÁREA DA IMAGEM
|--------------------------------------------------------------------------
*/

.hero-product-visual {
    position: relative;

    min-height: 330px;

    display: grid;
    place-items: center;

    padding: 12px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 50% 45%,
            rgba(0, 255, 102, 0.07),
            transparent 58%
        ),

        #020503;
}


/*
|--------------------------------------------------------------------------
| IMAGEM DO HERO
|--------------------------------------------------------------------------
|
| Também mostra a imagem inteira.
|
*/

.hero-product-image {
    position: relative !important;

    inset: auto !important;

    z-index: 1;

    display: block;

    width: 100% !important;
    height: 100% !important;

    max-width: 100%;
    max-height: 306px;

    object-fit: contain !important;
    object-position: center !important;

    border-radius: 12px;

    transform: none;

    transition:
        transform .45s ease,
        filter .45s ease;
}


/*
|--------------------------------------------------------------------------
| DEGRADÊ DO HERO
|--------------------------------------------------------------------------
*/

.hero-product-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,

            transparent 0%,

            transparent 62%,

            rgba(
                2,
                5,
                3,
                0.20
            ) 74%,

            rgba(
                2,
                5,
                3,
                0.94
            ) 100%
        );
}


/*
|--------------------------------------------------------------------------
| GRID DO HERO
|--------------------------------------------------------------------------
*/

.hero-product-visual
.matrix-lines {
    z-index: 3;

    opacity: 0.045;
}


/*
|--------------------------------------------------------------------------
| TEXTO DO HERO
|--------------------------------------------------------------------------
*/

.hero-product-title {
    position: absolute;

    left: 0;
    right: 0;

    bottom: 28px;

    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


.hero-product-title
.product-game {
    margin-top: 0;

    color:
        rgba(
            255,
            255,
            255,
            0.72
        );

    text-shadow:
        0 2px 15px
        rgba(
            0,
            0,
            0,
            0.9
        );
}


.hero-product-title h2 {
    margin-top: 7px;

    color: #ffffff;

    text-shadow:
        0 3px 20px
        rgba(
            0,
            0,
            0,
            0.9
        );
}


/*
|--------------------------------------------------------------------------
| HOVER HERO
|--------------------------------------------------------------------------
*/

.hero-card:hover
.hero-product-image {
    transform:
        scale(1.012);

    filter:
        brightness(1.04)
        saturate(1.03);
}


/* =========================================================
   AJUSTES EXTRAS DOS CARDS
========================================================= */

.product-card {
    min-width: 0;
}


.product-content {
    position: relative;

    z-index: 4;
}


.product-content h3 a {
    display: inline-block;

    color: inherit;

    transition:
        color .2s ease;
}


.product-content h3 a:hover {
    color:
        var(--green);
}


.buy-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    white-space: nowrap;

    text-decoration: none;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 900px) {

    .product-image {
        height: 240px;
    }

}


/* TABLET / CELULAR */

@media (max-width: 700px) {

    /*
    |--------------------------------------------------------------------------
    | LOGO
    |--------------------------------------------------------------------------
    */

    .header
    .logo
    .logo-icon.logo-image,

    .footer
    .logo
    .logo-icon.logo-image {

        width: 40px !important;
        height: 40px !important;

        min-width: 40px !important;
        min-height: 40px !important;

        max-width: 40px !important;
        max-height: 40px !important;

        flex-basis: 40px;
    }


    /*
    |--------------------------------------------------------------------------
    | PRODUTOS
    |--------------------------------------------------------------------------
    */

    .product-image {
        height: 250px;

        padding: 9px;
    }


    /*
    |--------------------------------------------------------------------------
    | HERO
    |--------------------------------------------------------------------------
    */

    .hero-product-visual {
        min-height: 280px;

        padding: 10px;
    }


    .hero-product-image {
        max-height: 256px;
    }


    .hero-product-title {
        bottom: 22px;
    }

}


/* CELULAR PEQUENO */

@media (max-width: 450px) {

    .product-image {
        height: 225px;
    }


    .product-footer {
        align-items: center;
    }


    .buy-button {
        padding:
            10px 12px;
    }

}

/* =========================================================
   HERO BANNER MATRIX STORE
========================================================= */

.hero-banner {
    position: relative;

    width: 100%;
    height: 390px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border:
        1px solid
        rgba(0, 255, 102, 0.30);

    border-radius: 22px;

    background: #020503;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35),
        0 0 40px rgba(0, 255, 102, 0.025);

    isolation: isolate;
}


/* IMAGEM */

.hero-banner-image {
    width: 100%;
    height: 100%;

    display: block;

    /*
     * Mostra a imagem INTEIRA,
     * independentemente da proporção.
     */
    object-fit: contain;
    object-position: center;

    position: relative;
    z-index: 1;
}


/* EFEITO DE LUZ */

.hero-banner-shine {
    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            115deg,
            transparent 20%,
            rgba(0, 255, 102, 0.025) 42%,
            rgba(255, 255, 255, 0.045) 50%,
            rgba(0, 255, 102, 0.025) 58%,
            transparent 80%
        );

    transform: translateX(-100%);

    transition:
        transform 0.8s ease;
}


/* HOVER */

.hero-banner:hover
.hero-banner-shine {
    transform:
        translateX(100%);
}


.hero-banner:hover
.hero-banner-image {
    filter:
        brightness(1.04)
        saturate(1.04);
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 900px) {

    .hero-banner {
        height: 340px;
    }

}


@media (max-width: 700px) {

    .hero-banner {
        height: 280px;

        border-radius: 18px;
    }

}


@media (max-width: 450px) {

    .hero-banner {
        height: 230px;

        border-radius: 15px;
    }

}

/* =========================================================
   HERO BANNER MATRIX STORE — PREMIUM
========================================================= */

.hero-banner {
    position: relative;

    /* maior que o atual */
    width: 108%;
    height: 440px;

    justify-self: center;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border:
        1px solid
        rgba(0, 255, 102, 0.42);

    border-radius: 24px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(0, 255, 102, 0.10),
            transparent 62%
        ),
        #020503;

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.42),
        0 0 35px rgba(0, 255, 102, 0.05),
        inset 0 0 35px rgba(0, 255, 102, 0.025);

    isolation: isolate;

    /*
     * Flutuação suave.
     * Não interfere no canvas/animação do fundo.
     */
    animation:
        bannerFloat 5s ease-in-out infinite,
        bannerGlow 4s ease-in-out infinite;

    transition:
        border-color .35s ease,
        box-shadow .35s ease;
}


/* =========================================================
   IMAGEM
========================================================= */

.hero-banner-image {
    position: relative;

    z-index: 1;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    border-radius: inherit;

    transition:
        transform .55s cubic-bezier(.2,.8,.2,1),
        filter .55s ease;
}


/* =========================================================
   SOMBRA / PROFUNDIDADE
========================================================= */

.hero-banner-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    border-radius: inherit;

    background:
        linear-gradient(
            180deg,
            rgba(0,255,102,.025) 0%,
            transparent 25%,
            transparent 70%,
            rgba(0,0,0,.18) 100%
        );
}


/* =========================================================
   BRILHO INTERNO SE MOVENDO
========================================================= */

.hero-banner::before {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    left: -90px;
    top: -100px;

    z-index: 2;

    pointer-events: none;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,255,102,.16),
            rgba(0,255,102,.05) 35%,
            transparent 70%
        );

    filter: blur(18px);

    animation:
        bannerOrb 7s ease-in-out infinite alternate;
}


/* =========================================================
   SEGUNDO GLOW
========================================================= */

.hero-banner::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -60px;
    bottom: -70px;

    z-index: 2;

    pointer-events: none;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,255,102,.12),
            transparent 68%
        );

    filter: blur(20px);

    animation:
        bannerOrbTwo 6s ease-in-out infinite alternate;
}


/* =========================================================
   REFLEXO PASSANDO PELO BANNER
========================================================= */

.hero-banner-shine {
    position: absolute;

    top: -30%;
    bottom: -30%;

    left: -65%;

    width: 32%;

    z-index: 4;

    pointer-events: none;

    opacity: 0;

    background:
        linear-gradient(
            110deg,

            transparent 0%,

            rgba(0,255,102,.015) 30%,

            rgba(255,255,255,.13) 50%,

            rgba(0,255,102,.035) 65%,

            transparent 100%
        );

    filter: blur(3px);

    transform:
        skewX(-15deg);

    animation:
        bannerShine 6s ease-in-out infinite;
}


/* =========================================================
   HOVER
========================================================= */

.hero-banner:hover {
    border-color:
        rgba(0,255,102,.72);

    box-shadow:
        0 35px 100px rgba(0,0,0,.48),
        0 0 42px rgba(0,255,102,.10),
        0 0 90px rgba(0,255,102,.035),
        inset 0 0 40px rgba(0,255,102,.035);
}


.hero-banner:hover
.hero-banner-image {
    transform:
        scale(1.018);

    filter:
        brightness(1.07)
        saturate(1.08);
}


/* =========================================================
   ANIMAÇÃO — FLUTUANDO
========================================================= */

@keyframes bannerFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-10px);
    }

}


/* =========================================================
   ANIMAÇÃO — BORDA / GLOW
========================================================= */

@keyframes bannerGlow {

    0%,
    100% {

        box-shadow:
            0 30px 90px rgba(0,0,0,.42),
            0 0 25px rgba(0,255,102,.035),
            inset 0 0 30px rgba(0,255,102,.02);
    }

    50% {

        box-shadow:
            0 35px 95px rgba(0,0,0,.46),
            0 0 45px rgba(0,255,102,.09),
            inset 0 0 35px rgba(0,255,102,.035);
    }

}


/* =========================================================
   ANIMAÇÃO — GLOW ESQUERDO
========================================================= */

@keyframes bannerOrb {

    0% {
        transform:
            translate(
                0,
                0
            );
    }

    100% {
        transform:
            translate(
                130px,
                80px
            );
    }

}


/* =========================================================
   ANIMAÇÃO — GLOW DIREITO
========================================================= */

@keyframes bannerOrbTwo {

    0% {
        transform:
            translate(
                0,
                0
            );
    }

    100% {
        transform:
            translate(
                -100px,
                -55px
            );
    }

}


/* =========================================================
   ANIMAÇÃO — REFLEXO
========================================================= */

@keyframes bannerShine {

    0%,
    55% {

        left: -65%;

        opacity: 0;
    }

    60% {

        opacity: .75;
    }

    78% {

        opacity: .75;
    }

    84% {

        left: 135%;

        opacity: 0;
    }

    100% {

        left: 135%;

        opacity: 0;
    }

}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 1100px) {

    .hero-banner {
        width: 104%;
        height: 400px;
    }

}


@media (max-width: 900px) {

    .hero-banner {
        width: 100%;
        height: 350px;
    }

}


@media (max-width: 700px) {

    .hero-banner {
        width: 100%;
        height: 285px;

        border-radius: 18px;

        animation:
            bannerFloat 5s ease-in-out infinite;
    }

}


@media (max-width: 450px) {

    .hero-banner {
        height: 230px;
    }

}


/* =========================================================
   ACESSIBILIDADE
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-banner,
    .hero-banner::before,
    .hero-banner::after,
    .hero-banner-shine {
        animation: none !important;
    }

}