/* =========================================================
   MATRIX STORE
   PÁGINA DE PRODUTO
========================================================= */


/* =========================================================
   PÁGINA
========================================================= */

.product-page {
    position: relative;

    z-index: 2;

    padding-bottom: 100px;
}


.product-main-section {
    padding:
        45px 0
        70px;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.product-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 22px;

    color: var(--gray);

    font-size: 10px;
}


.product-breadcrumb a {
    transition:
        color .2s ease;
}


.product-breadcrumb a:hover {
    color: var(--green);
}


.product-breadcrumb strong {
    color:
        var(--gray-light);

    font-weight: 600;
}


/* =========================================================
   GRID PRINCIPAL
========================================================= */

.product-main-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(360px, .9fr)
        290px;

    align-items: start;

    gap: 18px;
}


/* =========================================================
   GALERIA DO PRODUTO
   MATRIX STORE
========================================================= */

.product-gallery {
    position: relative;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 14px;

    overflow: hidden;

    border:
        1px solid
        rgba(0, 255, 102, 0.16);

    border-radius: 18px;

    background:
        radial-gradient(
            600px circle
            at var(--gallery-x, 50%)
            var(--gallery-y, 50%),
            rgba(0, 255, 102, 0.07),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            rgba(0, 255, 102, 0.025),
            rgba(2, 7, 4, 0.92)
        );

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);

    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}


/* =========================================================
   GRID TECNOLÓGICO DE FUNDO
========================================================= */

.product-gallery::before {
    content: "";

    position: absolute;
    inset: 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:
        35px 35px;

    opacity: 0.8;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.8),
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.8),
            transparent
        );
}


/* =========================================================
   BRILHO AMBIENTAL
========================================================= */

.product-gallery::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        rgba(0, 255, 102, 0.06);

    filter:
        blur(100px);

    pointer-events: none;

    opacity: 0.5;

    transition:
        opacity 0.4s ease;
}


.product-gallery:hover {
    border-color:
        rgba(0, 255, 102, 0.30);

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.35),
        0 0 45px rgba(0, 255, 102, 0.035),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}


.product-gallery:hover::after {
    opacity: 0.9;
}


/* =========================================================
   STATUS ONLINE
========================================================= */

.product-gallery-status {
    position: absolute;

    top: 14px;
    right: 14px;

    z-index: 5;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding:
        7px 10px;

    border:
        1px solid
        rgba(0, 255, 102, 0.22);

    border-radius:
        999px;

    background:
        rgba(2, 5, 3, 0.82);

    backdrop-filter:
        blur(10px);

    color:
        var(--gray-light);

    font-size:
        8px;

    font-weight:
        800;

    box-shadow:
        0 5px 25px
        rgba(0, 0, 0, 0.35);
}


.status-dot {
    width: 6px;
    height: 6px;

    border-radius:
        50%;

    background:
        var(--green);

    box-shadow:
        0 0 10px
        var(--green);

    animation:
        matrixStatusPulse
        2s ease-in-out
        infinite;
}


@keyframes matrixStatusPulse {

    0%,
    100% {
        opacity: 1;

        box-shadow:
            0 0 8px
            rgba(0, 255, 102, 0.8);
    }

    50% {
        opacity: 0.55;

        box-shadow:
            0 0 18px
            rgba(0, 255, 102, 1);
    }

}


/* =========================================================
   CONTAINER DA IMAGEM

   IMPORTANTE:
   NÃO possui altura fixa.
========================================================= */

.product-gallery-image {
    position: relative;

    z-index: 2;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 13px;

    background:
        rgba(0, 0, 0, 0.18);
}


/* =========================================================
   IMAGEM DO PRODUTO

   A imagem define naturalmente a altura.
   Nenhuma parte será cortada.
========================================================= */

.product-gallery-image img {
    position: relative;

    z-index: 2;

    display: block;

    width: 100%;

    height: auto;

    max-width: 100%;

    object-fit:
        contain;

    object-position:
        center;

    border-radius:
        12px;

    transition:
        transform 0.55s
        cubic-bezier(
            0.2,
            0.8,
            0.2,
            1
        ),
        filter 0.45s ease;
}


/* =========================================================
   HOVER DA IMAGEM
========================================================= */

.product-gallery:hover
.product-gallery-image img {

    transform:
        scale(1.012);

    filter:
        brightness(1.04)
        saturate(1.05)
        contrast(1.02);

}


/* =========================================================
   SOMBRA INTERNA NA IMAGEM
========================================================= */

.product-gallery-image::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 3;

    pointer-events: none;

    border-radius:
        inherit;

    box-shadow:
        inset 0 0 35px
        rgba(0, 0, 0, 0.12);
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 800px) {

    .product-gallery {
        min-height: 0;

        padding: 10px;

        border-radius:
            16px;
    }


    .product-gallery-image {
        height: auto;

        min-height: 0;
    }


    .product-gallery-image img {
        width: 100%;
        height: auto;

        max-height: none;
    }

}


@media (max-width: 550px) {

    .product-gallery {
        min-height: 0;

        padding: 8px;
    }


    .product-gallery-image {
        height: auto;
    }


    .product-gallery-status {
        top: 10px;
        right: 10px;
    }

}

/* =========================================================
   LICENÇAS
========================================================= */

.license-title {
    margin-top:
        25px;

    color:
        var(--white);

    font-size:
        11px;

    font-weight:
        800;
}


.licenses {
    display:
        flex;

    flex-direction:
        column;

    gap:
        8px;

    margin-top:
        10px;
}


.license-option {
    width:
        100%;

    min-height:
        68px;

    display:
        grid;

    grid-template-columns:
        auto
        1fr
        auto;

    align-items:
        center;

    gap:
        12px;

    padding:
        12px 13px;

    border:
        1px solid
        var(--border);

    border-radius:
        10px;

    background:
        rgba(255,255,255,.018);

    color:
        var(--white);

    text-align:
        left;

    cursor:
        pointer;

    transition:
        border-color .2s ease,
        background .2s ease,
        transform .2s ease;
}


.license-option:hover {
    border-color:
        rgba(0,255,102,.28);

    background:
        rgba(0,255,102,.025);

    transform:
        translateY(-1px);
}


.license-option.active {
    border-color:
        rgba(0,255,102,.75);

    background:
        linear-gradient(
            90deg,
            rgba(0,255,102,.10),
            rgba(0,255,102,.025)
        );

    box-shadow:
        inset 3px 0 0
        var(--green);
}


.license-radio {
    width:
        15px;

    height:
        15px;

    border:
        2px solid
        #758078;

    border-radius:
        50%;

    position:
        relative;
}


.license-option.active
.license-radio {
    border-color:
        var(--green);
}


.license-option.active
.license-radio::after {
    content: "";

    position:
        absolute;

    inset:
        3px;

    border-radius:
        50%;

    background:
        var(--green);
}


.license-info {
    display:
        flex;

    flex-direction:
        column;

    gap:
        4px;
}


.license-info strong {
    font-size:
        10px;
}


.license-info small {
    color:
        var(--green);

    font-size:
        8px;
}


.license-price {
    font-size:
        12px;

    font-weight:
        900;

    white-space:
        nowrap;
}


/* =========================================================
   COMPRAR
========================================================= */

.product-buy-button {
    width:
        100%;

    min-height:
        50px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        10px;

    margin-top:
        20px;

    border:
        none;

    border-radius:
        10px;

    background:
        var(--green);

    color:
        #001707;

    font-size:
        11px;

    font-weight:
        900;

    cursor:
        pointer;

    box-shadow:
        0 0 30px
        rgba(0,255,102,.10);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.product-buy-button:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 10px 40px
        rgba(0,255,102,.20);
}


.purchase-note {
    margin-top:
        12px;

    color:
        #667069;

    font-size:
        8px;

    line-height:
        1.5;

    text-align:
        center;
}


/* =========================================================
   CARDS LATERAIS
========================================================= */

.product-side-info {
    display:
        flex;

    flex-direction:
        column;

    gap:
        12px;
}


.side-info-card {
    display:
        flex;

    align-items:
        flex-start;

    gap:
        12px;

    padding:
        18px;

    border:
        1px solid
        var(--border);

    border-radius:
        13px;

    background:
        rgba(7,12,9,.75);

    backdrop-filter:
        blur(10px);
}


.side-info-icon {
    width:
        36px;

    height:
        36px;

    flex:
        0 0 36px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid
        rgba(0,255,102,.20);

    border-radius:
        9px;

    background:
        rgba(0,255,102,.06);
}


.side-info-card strong {
    display:
        block;

    font-size:
        11px;
}


.side-info-card p {
    margin-top:
        6px;

    color:
        var(--gray);

    font-size:
        9px;

    line-height:
        1.6;
}


/* =========================================================
   DESCRIÇÃO
========================================================= */

.product-description-section {
    padding:
        10px 0
        80px;
}


.product-description-card {
    padding:
        40px;

    border:
        1px solid
        var(--border);

    border-radius:
        20px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(0,255,102,.045),
            transparent 45%
        ),
        rgba(7,12,9,.78);

    backdrop-filter:
        blur(12px);
}


.description-heading h2 {
    margin-top:
        12px;

    font-size:
        32px;

    letter-spacing:
        -1px;
}


.description-heading h2 span {
    color:
        var(--green);
}


.description-main-text {
    max-width:
        800px;

    margin-top:
        18px;

    color:
        var(--gray-light);

    font-size:
        12px;

    line-height:
        1.8;
}


.features-title {
    margin-top:
        35px;

    padding-top:
        25px;

    border-top:
        1px solid
        var(--border);

    font-size:
        12px;

    font-weight:
        900;
}


.product-feature-grid {
    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        );

    gap:
        10px;

    margin-top:
        15px;
}


.product-feature {
    min-height:
        53px;

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    padding:
        12px;

    border:
        1px solid
        var(--border);

    border-radius:
        10px;

    background:
        rgba(255,255,255,.015);

    color:
        var(--gray-light);

    font-size:
        10px;
}


.feature-check {
    width:
        27px;

    height:
        27px;

    flex:
        0 0 27px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        7px;

    background:
        rgba(0,255,102,.08);

    color:
        var(--green);

    font-weight:
        900;
}


/* =========================================================
   COMO COMPRAR
========================================================= */

.how-buy-section {
    padding:
        20px 0
        80px;
}


.how-buy-grid {
    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap:
        14px;
}


.how-buy-card {
    padding:
        25px;

    border:
        1px solid
        var(--border);

    border-radius:
        15px;

    background:
        rgba(7,12,9,.75);
}


.how-buy-card > span {
    color:
        var(--green);

    font-size:
        10px;

    font-weight:
        900;

    letter-spacing:
        1px;
}


.how-buy-card h3 {
    margin-top:
        15px;

    font-size:
        15px;
}


.how-buy-card p {
    margin-top:
        8px;

    color:
        var(--gray);

    font-size:
        10px;

    line-height:
        1.6;
}


/* =========================================================
   MODAL
========================================================= */

.purchase-modal {
    position:
        fixed;

    inset:
        0;

    z-index:
        99999;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        20px;

    opacity:
        0;

    visibility:
        hidden;

    transition:
        opacity .2s ease,
        visibility .2s ease;
}


.purchase-modal.active {
    opacity:
        1;

    visibility:
        visible;
}


.purchase-modal-overlay {
    position:
        absolute;

    inset:
        0;

    background:
        rgba(0,0,0,.82);

    backdrop-filter:
        blur(12px);
}


.purchase-modal-content {
    position:
        relative;

    z-index:
        2;

    width:
        min(
            100%,
            500px
        );

    padding:
        35px;

    border:
        1px solid
        rgba(0,255,102,.28);

    border-radius:
        20px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(0,255,102,.08),
            transparent 40%
        ),
        #070b08;

    box-shadow:
        0 30px 100px
        rgba(0,0,0,.7);
}


.purchase-modal-close {
    position:
        absolute;

    top:
        14px;

    right:
        14px;

    width:
        35px;

    height:
        35px;

    border:
        1px solid
        var(--border);

    border-radius:
        8px;

    background:
        rgba(255,255,255,.03);

    color:
        #fff;

    font-size:
        19px;

    cursor:
        pointer;
}


.purchase-modal-logo {
    width:
        58px;

    height:
        58px;

    display:
        grid;

    place-items:
        center;

    margin-bottom:
        18px;

    padding:
        4px;

    border:
        1px solid
        rgba(0,255,102,.25);

    border-radius:
        13px;

    background:
        rgba(0,255,102,.04);
}


.purchase-modal-logo img {
    width:
        100%;

    height:
        100%;

    object-fit:
        contain;
}


.purchase-modal-content h2 {
    margin-top:
        15px;

    font-size:
        25px;

    letter-spacing:
        -1px;
}


.purchase-summary {
    margin:
        10px 0
        22px;

    padding:
        12px;

    border:
        1px solid
        var(--border);

    border-radius:
        9px;

    background:
        rgba(255,255,255,.02);

    color:
        var(--gray-light);

    font-size:
        10px;
}


.purchase-channel {
    min-height:
        72px;

    display:
        grid;

    grid-template-columns:
        auto
        1fr
        auto;

    align-items:
        center;

    gap:
        13px;

    margin-top:
        10px;

    padding:
        12px;

    border:
        1px solid
        var(--border);

    border-radius:
        11px;

    background:
        rgba(255,255,255,.02);

    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}


.purchase-channel:hover {
    transform:
        translateY(-2px);
}


.purchase-channel.whatsapp:hover {
    border-color:
        rgba(0,255,102,.35);

    background:
        rgba(0,255,102,.035);
}


.purchase-channel.discord:hover {
    border-color:
        rgba(88,101,242,.42);

    background:
        rgba(88,101,242,.04);
}


.channel-icon {
    width:
        43px;

    height:
        43px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        9px;

    background:
        rgba(0,255,102,.06);
}


.purchase-channel strong {
    display:
        block;

    font-size:
        10px;
}


.purchase-channel span {
    display:
        block;

    margin-top:
        4px;

    color:
        var(--gray);

    font-size:
        8px;
}


/* =========================================================
   404
========================================================= */

.product-not-found {
    min-height:
        65vh;

    display:
        grid;

    align-items:
        center;

    padding:
        80px 0;
}


.not-found-card {
    max-width:
        650px;

    margin:
        0 auto;

    padding:
        50px;

    border:
        1px solid
        var(--border);

    border-radius:
        20px;

    background:
        rgba(7,12,9,.82);

    text-align:
        center;
}


.not-found-card
.section-label {
    margin:
        0 auto;
}


.not-found-card h1 {
    margin-top:
        20px;

    font-size:
        38px;
}


.not-found-card p {
    margin:
        12px 0
        25px;

    color:
        var(--gray);
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media
(max-width: 1100px) {

    .product-main-grid {

        grid-template-columns:
            minmax(0,1fr)
            minmax(330px,.8fr);

    }


    .product-side-info {

        grid-column:
            1 / -1;

        display:
            grid;

        grid-template-columns:
            repeat(3,1fr);

    }

}


@media
(max-width: 800px) {

    .product-main-grid {

        grid-template-columns:
            1fr;

    }


    .product-gallery {

        min-height:
            390px;

    }


    .product-gallery-image {

        height:
            350px;

    }


    .product-side-info {

        grid-template-columns:
            1fr;

    }


    .product-feature-grid {

        grid-template-columns:
            1fr;

    }


    .how-buy-grid {

        grid-template-columns:
            1fr;

    }

}


@media
(max-width: 550px) {

    .product-main-section {

        padding-top:
            30px;

    }


    .product-gallery {

        min-height:
            300px;

        padding:
            10px;

    }


    .product-gallery-image {

        height:
            280px;

    }


    .product-buy-panel {

        padding:
            20px 16px;

    }


    .product-description-card {

        padding:
            27px 18px;

    }


    .license-option {

        grid-template-columns:
            auto
            1fr;

    }


    .license-price {

        grid-column:
            2;

    }


    .purchase-modal-content {

        padding:
            30px 18px
            20px;

    }

}

/* =========================================================
   MATRIX STORE
   DESCRIÇÃO PREMIUM / INTERATIVA
========================================================= */


/* =========================================================
   CARD PRINCIPAL DA DESCRIÇÃO
========================================================= */

.product-description-card {
    position: relative;

    overflow: hidden;

    padding: 42px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 24px;

    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(0, 255, 102, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 100%,
            rgba(0, 255, 102, 0.04),
            transparent 34%
        ),
        rgba(4, 10, 6, 0.86);

    backdrop-filter:
        blur(16px);

    -webkit-backdrop-filter:
        blur(16px);

    box-shadow:
        0 25px 90px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);

    isolation: isolate;
}


/* brilho ambiental */

.product-description-card::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    top: -190px;
    right: -120px;

    border-radius: 50%;

    background:
        rgba(0, 255, 102, 0.14);

    filter:
        blur(120px);

    pointer-events: none;

    z-index: -1;

    animation:
        descriptionGlow 7s
        ease-in-out
        infinite alternate;
}


@keyframes descriptionGlow {

    from {
        transform:
            translate3d(
                0,
                0,
                0
            );

        opacity:
            0.55;
    }

    to {
        transform:
            translate3d(
                -80px,
                70px,
                0
            );

        opacity:
            0.9;
    }

}


/* =========================================================
   CABEÇALHO DA DESCRIÇÃO
========================================================= */

.description-heading {
    position: relative;

    max-width: 760px;
}


.description-heading .section-label {
    margin-bottom: 16px;
}


.description-heading h2 {
    margin: 0;

    font-size:
        clamp(
            30px,
            3.5vw,
            46px
        );

    line-height: 1;

    letter-spacing:
        -2px;
}


.description-heading h2 span {
    color:
        var(--green);
}


/* texto principal */

.description-main-text {
    position: relative;

    max-width: 920px;

    margin-top: 20px;

    padding-left: 18px;

    color:
        rgba(
            220,
            230,
            223,
            0.78
        );

    font-size:
        13px;

    line-height:
        1.9;

    border-left:
        2px solid
        rgba(0, 255, 102, 0.55);
}


.description-main-text::before {
    content: "";

    position: absolute;

    left: -5px;
    top: 4px;

    width: 8px;
    height: 8px;

    border-radius:
        50%;

    background:
        var(--green);

    box-shadow:
        0 0 14px
        rgba(0, 255, 102, 0.75);
}


/* =========================================================
   CONTAINER DAS SEÇÕES
========================================================= */

.product-detail-sections {
    display: flex;

    flex-direction: column;

    gap: 18px;

    margin-top: 38px;
}


/* =========================================================
   CADA BLOCO
========================================================= */

.product-detail-section {
    position: relative;

    overflow: hidden;

    padding: 24px;

    border:
        1px solid
        rgba(255, 255, 255, 0.07);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.025),
            rgba(255, 255, 255, 0.008)
        );

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.018);

    transition:
        transform 0.30s ease,
        border-color 0.30s ease,
        background 0.30s ease,
        box-shadow 0.30s ease;

    animation:
        detailCardEnter
        .65s ease
        both;
}


/* entrada progressiva */

.product-detail-section:nth-child(1) {
    animation-delay:
        .05s;
}

.product-detail-section:nth-child(2) {
    animation-delay:
        .12s;
}

.product-detail-section:nth-child(3) {
    animation-delay:
        .19s;
}

.product-detail-section:nth-child(4) {
    animation-delay:
        .26s;
}

.product-detail-section:nth-child(5) {
    animation-delay:
        .33s;
}


@keyframes detailCardEnter {

    from {
        opacity: 0;

        transform:
            translateY(18px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* glow de hover */

.product-detail-section::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: 0;

    background:
        radial-gradient(
            500px circle
            at var(--section-x, 50%)
            var(--section-y, 50%),
            rgba(0, 255, 102, 0.07),
            transparent 42%
        );

    transition:
        opacity .3s ease;
}


.product-detail-section:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(0, 255, 102, 0.24);

    background:
        linear-gradient(
            145deg,
            rgba(0, 255, 102, 0.035),
            rgba(255, 255, 255, 0.01)
        );

    box-shadow:
        0 18px 50px
        rgba(0, 0, 0, 0.22);
}


.product-detail-section:hover::before {
    opacity: 1;
}


/* =========================================================
   CABEÇALHO DE CADA BLOCO
========================================================= */

.product-detail-heading {
    display: grid;

    grid-template-columns:
        auto
        1fr;

    align-items: start;

    gap: 14px;

    position: relative;

    z-index: 2;
}


.detail-accent {
    width: 5px;
    height: 46px;

    border-radius:
        999px;

    background:
        linear-gradient(
            to bottom,
            #00ff66,
            rgba(0, 255, 102, 0.15)
        );

    box-shadow:
        0 0 16px
        rgba(0, 255, 102, 0.28);
}


.product-detail-heading h3 {
    margin: 0;

    font-size:
        clamp(
            17px,
            2vw,
            22px
        );

    line-height: 1.2;

    letter-spacing:
        -0.5px;

    color:
        #ffffff;
}


.product-detail-heading p {
    max-width: 900px;

    margin-top: 7px;

    color:
        rgba(
            184,
            197,
            188,
            0.74
        );

    font-size:
        11px;

    line-height:
        1.75;
}


/* =========================================================
   GRID DE RECURSOS
========================================================= */

.product-detail-section
.product-feature-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 10px;

    margin-top: 20px;

    position: relative;

    z-index: 2;
}


/* =========================================================
   CARD DE RECURSO
========================================================= */

.product-detail-section
.product-feature {
    position: relative;

    min-height: 58px;

    display: flex;

    align-items: center;

    gap: 11px;

    padding:
        12px 14px;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.065);

    border-radius:
        11px;

    background:
        rgba(
            2,
            8,
            4,
            0.56
        );

    color:
        rgba(
            225,
            234,
            228,
            0.80
        );

    font-size:
        10px;

    line-height:
        1.5;

    transition:
        transform .22s ease,
        border-color .22s ease,
        background .22s ease,
        color .22s ease;
}


.product-detail-section
.product-feature::after {
    content: "";

    position: absolute;

    width: 80px;
    height: 80px;

    right: -55px;
    top: -55px;

    border-radius:
        50%;

    background:
        rgba(0, 255, 102, 0.12);

    filter:
        blur(25px);

    opacity: 0;

    transition:
        opacity .3s ease;
}


.product-detail-section
.product-feature:hover {
    transform:
        translateX(4px);

    border-color:
        rgba(0, 255, 102, 0.24);

    background:
        rgba(
            0,
            255,
            102,
            0.035
        );

    color:
        #ffffff;
}


.product-detail-section
.product-feature:hover::after {
    opacity: 1;
}


/* =========================================================
   CHECK
========================================================= */

.product-detail-section
.feature-check {
    width: 30px;
    height: 30px;

    flex:
        0 0 30px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(0, 255, 102, 0.20);

    border-radius:
        8px;

    background:
        linear-gradient(
            145deg,
            rgba(0, 255, 102, 0.13),
            rgba(0, 255, 102, 0.04)
        );

    color:
        var(--green);

    font-size:
        12px;

    font-weight:
        900;

    box-shadow:
        inset 0 0 12px
        rgba(0, 255, 102, 0.035);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.product-detail-section
.product-feature:hover
.feature-check {
    transform:
        rotate(-6deg)
        scale(1.08);

    background:
        rgba(0, 255, 102, 0.15);

    box-shadow:
        0 0 15px
        rgba(0, 255, 102, 0.11);
}


/* =========================================================
   DIVISOR ENTRE SEÇÕES
========================================================= */

.product-detail-section
+ .product-detail-section {
    margin-top: 0;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 800px) {

    .product-description-card {
        padding:
            30px 22px;
    }


    .product-detail-section
    .product-feature-grid {
        grid-template-columns:
            1fr;
    }


    .product-detail-section {
        padding:
            20px;
    }

}


@media (max-width: 520px) {

    .product-description-card {
        padding:
            24px 16px;

        border-radius:
            18px;
    }


    .description-main-text {
        padding-left:
            14px;

        font-size:
            11px;
    }


    .product-detail-heading {
        gap:
            10px;
    }


    .detail-accent {
        width:
            4px;

        height:
            38px;
    }


    .product-detail-heading h3 {
        font-size:
            17px;
    }


    .product-detail-section {
        padding:
            17px;
    }


    .product-detail-section
    .product-feature {
        min-height:
            54px;

        padding:
            11px;
    }

}


/* =========================================================
   REDUÇÃO DE MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .product-description-card::before,
    .product-detail-section {
        animation:
            none !important;
    }

}

/* =========================================================
   VÍDEO DEMONSTRATIVO DO PRODUTO
========================================================= */

.product-video-section {
    width: 100%;
    margin: 38px 0 48px;
    padding: 30px;

    position: relative;
    overflow: hidden;

    border: 1px solid rgba(0, 255, 110, 0.20);
    border-radius: 24px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(0, 255, 110, 0.08),
            transparent 45%
        ),
        rgba(3, 12, 8, 0.72);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);

    backdrop-filter: blur(12px);
}


/* glow decorativo */

.product-video-section::before {
    content: "";

    position: absolute;
    width: 450px;
    height: 450px;

    top: -300px;
    left: 50%;

    transform: translateX(-50%);

    background: rgba(0, 255, 110, 0.10);

    filter: blur(100px);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   CABEÇALHO
========================================================= */

.product-video-heading {
    position: relative;
    z-index: 2;

    text-align: center;

    max-width: 750px;

    margin:
        0 auto
        28px;
}


.product-video-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 12px;

    padding: 7px 13px;

    border-radius: 999px;

    border: 1px solid rgba(0, 255, 110, 0.25);

    background: rgba(0, 255, 110, 0.07);

    color: #00ff6a;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.product-video-heading h3 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(
        26px,
        3vw,
        40px
    );

    font-weight: 900;

    line-height: 1.05;

    letter-spacing: -1.2px;
}


.product-video-heading h3 span {
    color: #00ff6a;
}


.product-video-heading p {
    max-width: 600px;

    margin:
        12px auto
        0;

    color: rgba(255, 255, 255, 0.58);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   CONTAINER DO VÍDEO
========================================================= */

.product-video-wrapper {
    width: 100%;

    max-width: 1050px;

    margin: 0 auto;

    position: relative;

    overflow: hidden;

    border-radius: 20px;

    border: 1px solid rgba(0, 255, 110, 0.28);

    background: #000;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(0, 255, 110, 0.06);

    /* SHORT DO YOUTUBE */
    aspect-ratio: 16 / 9;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.product-video-wrapper:hover {
    transform: translateY(-4px);

    border-color: rgba(0, 255, 110, 0.55);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.65),
        0 0 55px rgba(0, 255, 110, 0.12);
}


/* =========================================================
   IFRAME
========================================================= */

.product-video-wrapper iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* =========================================================
   LINHA DE LUZ
========================================================= */

.product-video-wrapper::before {
    content: "";

    position: absolute;

    z-index: 2;

    top: 0;
    left: 10%;

    width: 80%;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #00ff6a,
        transparent
    );

    box-shadow:
        0 0 15px #00ff6a;

    pointer-events: none;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 900px) {

    .product-video-section {
        margin: 28px 0 38px;
        padding: 22px;
        border-radius: 20px;
    }


    .product-video-wrapper {
        max-width: 100%;

        aspect-ratio: 16 / 9;
    }

}


@media (max-width: 600px) {

    .product-video-section {
        padding: 16px;
    }


    .product-video-heading {
        margin-bottom: 20px;
    }


    .product-video-heading h3 {
        font-size: 25px;
    }


    .product-video-heading p {
        font-size: 13px;
    }


    .product-video-wrapper {
        border-radius: 14px;
    }

}

/* =========================================================
   FORÇA FINAL DO PLAYER
   Deve ficar no ÚLTIMO bloco do produto.css
========================================================= */

.product-description-card .product-video-section {
    display: block !important;

    width: 100% !important;
    max-width: none !important;

    margin: 40px 0 50px !important;
    padding: 30px !important;

    box-sizing: border-box !important;
}


.product-description-card .product-video-heading {
    display: block !important;

    width: 100% !important;
    max-width: 800px !important;

    margin:
        0 auto
        28px !important;

    text-align: center !important;
}


.product-description-card .product-video-wrapper {
    position: relative !important;

    display: block !important;

    width: 100% !important;
    max-width: 1050px !important;

    height: auto !important;

    margin:
        0 auto !important;

    aspect-ratio:
        16 / 9 !important;

    overflow:
        hidden !important;

    border-radius:
        20px !important;

    background:
        #000 !important;
}


.product-description-card
.product-video-wrapper iframe {
    position: absolute !important;

    inset: 0 !important;

    display: block !important;

    width: 100% !important;
    height: 100% !important;

    min-width: 100% !important;
    min-height: 100% !important;

    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
}


/* TÍTULO */

.product-description-card
.product-video-label {
    display: inline-flex !important;

    padding:
        7px 13px !important;

    margin-bottom:
        12px !important;

    border:
        1px solid
        rgba(0, 255, 102, .28) !important;

    border-radius:
        999px !important;

    background:
        rgba(0, 255, 102, .07) !important;

    color:
        #00ff66 !important;

    font-size:
        10px !important;

    font-weight:
        900 !important;

    letter-spacing:
        1px !important;
}


.product-description-card
.product-video-heading h3 {
    margin:
        0 !important;

    color:
        #fff !important;

    font-size:
        clamp(
            28px,
            3vw,
            40px
        ) !important;

    font-weight:
        900 !important;

    line-height:
        1.08 !important;

    letter-spacing:
        -1.5px !important;
}


.product-description-card
.product-video-heading h3 span {
    color:
        #00ff66 !important;
}


.product-description-card
.product-video-heading p {
    max-width:
        650px !important;

    margin:
        12px auto 0 !important;

    color:
        rgba(
            255,
            255,
            255,
            .60
        ) !important;

    font-size:
        13px !important;

    line-height:
        1.7 !important;
}


/* MOBILE */

@media (max-width: 700px) {

    .product-description-card
    .product-video-section {

        padding:
            18px !important;

    }

    .product-description-card
    .product-video-wrapper {

        width:
            100% !important;

        max-width:
            100% !important;

    }

}