/* =========================================================
   FÓRMULA X DEV STUDIO
   SITE PÚBLICO
   ========================================================= */

:root {
    --bg: #07060b;
    --bg-soft: #0c0912;
    --card: #100d17;
    --card-soft: #15101e;

    --text: #f5f5f7;
    --muted: #96929d;

    --purple: #8658ff;
    --purple-2: #a753ff;
    --blue: #29cbff;
    --pink: #ec4ed2;

    --border: rgba(255,255,255,.08);

    --container: 1120px;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    min-height: 100vh;

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(103,63,173,.18),
            transparent 35%
        ),
        var(--bg);

    color: var(--text);

    overflow-x: hidden;
}


body.modal-open {
    overflow: hidden;
}


img {
    display: block;
    max-width: 100%;
}


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


button,
input,
textarea,
select {
    font: inherit;
}


button {
    color: inherit;
}


.container {
    width:
        min(
            calc(100% - 32px),
            var(--container)
        );

    margin-inline: auto;
}



/* =========================================================
   SPLASH
   ========================================================= */

.splash {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #131020 0,
            #060509 52%
        );

    transition:
        opacity .4s ease,
        visibility .4s ease;
}


.splash-hidden {
    opacity: 0;
    visibility: hidden;
}


.splash-inner {
    width: min(82vw, 290px);

    text-align: center;
}


.splash-symbol {
    width: 125px;
    height: 105px;

    margin: 0 auto 6px;

    object-fit: contain;
}


.splash-inner strong {
    display: block;

    font-size: 20px;
    letter-spacing: 4px;
}


.splash-inner span {
    display: block;

    margin-top: 7px;

    font-size: 9px;

    letter-spacing: 6px;

    color: #7f7988;
}


.splash-line {
    width: 90px;
    height: 2px;

    margin: 18px auto 0;

    border-radius: 99px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--purple),
            var(--pink)
        );
}



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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    border-bottom:
        1px solid var(--border);

    background:
        rgba(7,6,11,.9);

    backdrop-filter:
        blur(14px);
}


.header-inner {
    height: 66px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;
}


.brand {
    width: 178px;
    height: 48px;

    display: flex;
    align-items: center;
}


.brand img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: left center;
}


.desktop-nav {
    display: flex;
    align-items: center;

    gap: 26px;
}


.desktop-nav a {
    font-size: 13px;
    font-weight: 600;

    color: #aaa6af;

    transition: .2s ease;
}


.desktop-nav a:hover {
    color: white;
}


.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 10px;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background:
        rgba(255,255,255,.035);

    cursor: pointer;
}


.menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 4px 0;

    border-radius: 99px;

    background: #dcd8e1;

    transition: .2s ease;
}


.mobile-nav {
    display: none;
}



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

.hero {
    position: relative;

    min-height: 490px;

    display: flex;
    align-items: center;

    overflow: hidden;

    isolation: isolate;
}


.hero-background {
    position: absolute;
    inset: 0;
    z-index: -3;

    background-image:
        url(
            "/assets/images/backgrounds/background-hero.webp"
        );

    background-size: cover;
    background-position: center;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(7,6,11,.98) 0%,
            rgba(7,6,11,.88) 48%,
            rgba(7,6,11,.48) 100%
        );
}


.hero-content {
    min-height: 490px;

    display: grid;
    grid-template-columns:
        1fr .85fr;

    align-items: center;

    gap: 50px;

    padding-block: 50px;
}


.eyebrow {
    display: inline-block;

    margin-bottom: 15px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #9d80ff;
}


.hero h1 {
    max-width: 620px;

    margin: 0;

    font-size:
        clamp(
            45px,
            7vw,
            72px
        );

    line-height: .98;

    letter-spacing: -3px;
}


.hero h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            #8471ff,
            var(--pink)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.hero-copy > p {
    max-width: 590px;

    margin:
        22px 0 0;

    font-size: 16px;
    line-height: 1.75;

    color: var(--muted);
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 28px;
}


.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 22px;

    border:
        1px solid rgba(255,255,255,.06);

    border-radius: 22px;

    background:
        rgba(9,7,14,.32);

    backdrop-filter:
        blur(5px);
}


.hero-brand img {
    width: 100%;
}



/* =========================================================
   BOTÕES
   ========================================================= */

.button {
    min-height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding:
        0 17px;

    border:
        1px solid transparent;

    border-radius: 8px;

    cursor: pointer;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}


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


.button-primary {
    background:
        linear-gradient(
            100deg,
            #6046ee,
            #934cff
        );

    color: #fff;
}


.button-primary:hover {
    background:
        linear-gradient(
            100deg,
            #7055ff,
            #a35aff
        );
}


.button-secondary {
    border-color:
        rgba(255,255,255,.12);

    background:
        rgba(255,255,255,.035);

    color: #ddd9e2;
}


.button-secondary:hover {
    border-color:
        rgba(151,99,255,.5);

    background:
        rgba(128,78,225,.08);
}



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

.section {
    padding:
        72px 0;
}


.projects-section {
    border-block:
        1px solid rgba(255,255,255,.055);

    background:
        rgba(255,255,255,.012);
}


.section-header {
    max-width: 640px;

    margin-bottom: 30px;
}


.section-header > span {
    display: block;

    margin-bottom: 9px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #a079ff;
}


.section-header h2 {
    margin: 0;

    font-size:
        clamp(
            30px,
            5vw,
            43px
        );

    letter-spacing: -1.5px;
}


.section-header p {
    margin:
        12px 0 0;

    font-size: 14px;
    line-height: 1.7;

    color: #85818b;
}



/* =========================================================
   SERVIÇOS
   ========================================================= */

.service-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 16px;
}


.service-card {
    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 15px;

    background:
        var(--card);

    transition:
        transform .2s ease,
        border-color .2s ease;
}


.service-card:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(141,91,255,.28);
}


.service-image {
    aspect-ratio: 16 / 8.8;

    overflow: hidden;

    background: #08070d;
}


.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.service-body {
    padding: 19px;
}


.service-body h3 {
    margin:
        0 0 8px;

    font-size: 19px;
}


.service-body > p {
    min-height: 45px;

    margin:
        0 0 15px;

    font-size: 13px;
    line-height: 1.6;

    color: #918d97;
}


.service-price {
    display: block;

    margin-bottom: 17px;

    font-size: 13px;
    font-weight: 800;

    color: #ab8cff;
}


.service-actions {
    display: grid;
    grid-template-columns:
        1fr 1fr;

    gap: 8px;
}



/* =========================================================
   PROJETOS
   ========================================================= */

.project-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 16px;
}


.project-card {
    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 15px;

    background:
        var(--card);
}


.project-image {
    aspect-ratio: 16 / 9;

    overflow: hidden;
}


.project-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.project-body {
    padding: 19px;
}


.project-body > span {
    display: block;

    margin-bottom: 8px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #9d79ff;
}


.project-body h3 {
    margin:
        0 0 9px;

    font-size: 20px;
}


.project-body p {
    margin: 0;

    font-size: 13px;
    line-height: 1.65;

    color: #918d97;
}



/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    padding:
        70px 0;
}


.cta-card {
    position: relative;

    min-height: 330px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 17px;

    isolation: isolate;
}


.cta-background {
    position: absolute;
    inset: 0;
    z-index: -3;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.cta-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(7,6,11,.95),
            rgba(7,6,11,.70)
        );
}


.cta-content {
    max-width: 620px;

    padding:
        40px;
}


.cta-content > span {
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #a17eff;
}


.cta-content h2 {
    margin:
        10px 0 0;

    font-size:
        clamp(
            34px,
            6vw,
            55px
        );

    line-height: 1;

    letter-spacing: -2px;
}


.cta-content p {
    margin:
        16px 0 24px;

    line-height: 1.7;

    color: #9b97a0;
}



/* =========================================================
   MODAL
   ========================================================= */

.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 18px;

    background:
        rgba(0,0,0,.78);

    backdrop-filter:
        blur(5px);
}


.modal.open {
    display: flex;
}


.modal-box {
    position: relative;

    width:
        min(
            100%,
            510px
        );

    max-height:
        calc(100vh - 40px);

    overflow-y: auto;

    padding:
        27px;

    border:
        1px solid rgba(255,255,255,.1);

    border-radius:
        14px;

    background:
        #0e0b14;

    box-shadow:
        0 35px 80px rgba(0,0,0,.45);
}


.modal-close {
    position: absolute;
    right: 12px;
    top: 8px;

    width: 38px;
    height: 38px;

    border: 0;

    background:
        transparent;

    color: #ccc6d2;

    font-size: 27px;

    cursor: pointer;
}


.modal-label {
    display: block;

    margin-bottom: 8px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #a17eff;
}


.modal-box h3 {
    margin:
        0 35px 15px 0;

    font-size: 26px;
}


.modal-box p {
    margin: 0;

    white-space:
        pre-line;

    font-size: 14px;
    line-height: 1.75;

    color: #a09ca5;
}


.modal-ok {
    width: 100%;

    margin-top: 23px;
}



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

.site-footer {
    border-top:
        1px solid var(--border);

    background:
        #050407;
}


.footer-grid {
    display: grid;
    grid-template-columns:
        1.5fr .6fr .6fr;

    gap: 45px;

    padding-block:
        45px;
}


.footer-brand img {
    width: 200px;
    height: 55px;

    object-fit: contain;
    object-position: left center;
}


.footer-brand p {
    max-width: 410px;

    margin:
        13px 0 0;

    font-size: 13px;
    line-height: 1.65;

    color: #77737d;
}


.footer-links {
    display: flex;
    flex-direction: column;

    gap: 9px;
}


.footer-links strong {
    margin-bottom: 3px;

    font-size: 11px;

    color: #d5d1d9;
}


.footer-links a {
    width: fit-content;

    font-size: 12px;

    color: #77737d;

    transition: .2s;
}


.footer-links a:hover {
    color: white;
}


.footer-bottom {
    min-height: 55px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    border-top:
        1px solid rgba(255,255,255,.055);

    font-size: 10px;

    color: #625f66;
}



/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 820px) {

    .desktop-nav {
        display: none;
    }


    .menu-toggle {
        display: block;
    }


    .mobile-nav.open {
        display: flex;
        flex-direction: column;

        gap: 2px;

        padding:
            6px 16px 14px;

        border-top:
            1px solid rgba(255,255,255,.055);

        background:
            rgba(7,6,11,.98);
    }


    .mobile-nav a {
        padding:
            11px 8px;

        border-radius:
            7px;

        font-size: 13px;

        color: #aaa6af;
    }


    .mobile-nav a:hover {
        background:
            rgba(255,255,255,.04);

        color: white;
    }


    .hero-content {
        grid-template-columns:
            1fr;

        gap: 30px;

        padding-block:
            45px;
    }


    .hero-brand {
        display: none;
    }


    .hero-overlay {
        background:
            rgba(7,6,11,.78);
    }


    .service-grid,
    .project-grid {
        grid-template-columns:
            1fr 1fr;
    }


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


    .footer-brand {
        grid-column:
            1 / -1;
    }

}



@media (max-width: 560px) {

    .container {
        width:
            calc(100% - 24px);
    }


    .header-inner {
        height: 62px;
    }


    .brand {
        width: 148px;
        height: 42px;
    }


    .hero,
    .hero-content {
        min-height: 430px;
    }


    .hero-content {
        padding-block:
            42px;
    }


    .hero h1 {
        font-size: 44px;

        letter-spacing:
            -2px;
    }


    .hero-copy > p {
        margin-top: 17px;

        font-size: 14px;
    }


    .hero-actions {
        display: grid;
        grid-template-columns:
            1fr 1fr;

        margin-top: 23px;
    }


    .section {
        padding:
            52px 0;
    }


    .section-header {
        margin-bottom: 23px;
    }


    .section-header h2 {
        font-size: 30px;
    }


    .service-grid,
    .project-grid {
        grid-template-columns:
            1fr;
    }


    .service-image {
        aspect-ratio:
            16 / 9;
    }


    .service-body {
        padding: 16px;
    }


    .service-body > p {
        min-height: auto;
    }


    .service-actions {
        grid-template-columns:
            1fr 1fr;
    }


    .cta-section {
        padding:
            52px 0;
    }


    .cta-card {
        min-height:
            320px;
    }


    .cta-overlay {
        background:
            rgba(7,6,11,.80);
    }


    .cta-content {
        padding:
            27px 20px;
    }


    .cta-content h2 {
        font-size: 38px;
    }


    .footer-grid {
        grid-template-columns:
            1fr;

        gap: 28px;

        padding-block:
            36px;
    }


    .footer-brand {
        grid-column: auto;
    }


    .footer-bottom {
        align-items:
            flex-start;

        flex-direction:
            column;

        justify-content:
            center;

        padding-block:
            16px;
    }

}



@media (max-width: 370px) {

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


    .hero-actions,
    .service-actions {
        grid-template-columns:
            1fr;
    }

}


/* =========================================================
   SPLASH + HERO REVEAL
   ========================================================= */

.splash-inner {
    animation:
        splash-enter .8s ease both;
}

.splash-symbol {
    animation:
        splash-symbol 2.2s ease-in-out infinite alternate;
}

.splash-line {
    position: relative;
    overflow: hidden;
}

.splash-line::after {
    content: "";
    position: absolute;
    inset: 0;

    width: 45%;

    background:
        linear-gradient(
            90deg,
            transparent,
            #ffffff,
            transparent
        );

    transform:
        translateX(-160%);

    animation:
        splash-line-move 1.6s ease-in-out infinite;
}


/* HERO começa oculto */

.hero .eyebrow,
.hero h1,
.hero-copy > p,
.hero-actions,
.hero-brand {
    opacity: 0;
}


/* Quando o Splash termina */

.site-reveal .hero .eyebrow {
    animation:
        hero-eyebrow-in .55s ease .10s forwards;
}

.site-reveal .hero h1 {
    animation:
        hero-title-in .8s cubic-bezier(.2,.8,.2,1) .28s forwards;
}

.site-reveal .hero-copy > p {
    animation:
        hero-text-in .65s ease .72s forwards;
}

.site-reveal .hero-actions {
    animation:
        hero-actions-in .65s ease 1.02s forwards;
}

.site-reveal .hero-brand {
    animation:
        hero-brand-in .9s cubic-bezier(.2,.8,.2,1) .42s forwards;
}


/* brilho no título */

.site-reveal .hero h1 span {
    position: relative;

    background-size: 220% 100%;

    animation:
        hero-gradient-move 3.2s ease-in-out 1.2s infinite alternate;
}


/* animação suave do fundo */

.site-reveal .hero-background {
    animation:
        hero-bg-zoom 9s ease-out forwards;
}


/* =========================================================
   KEYFRAMES
   ========================================================= */

@keyframes splash-enter {

    from {
        opacity: 0;
        transform:
            scale(.94);
    }

    to {
        opacity: 1;
        transform:
            scale(1);
    }
}


@keyframes splash-symbol {

    from {
        transform:
            translateY(0)
            scale(1);

        filter:
            drop-shadow(
                0 0 8px rgba(60,210,255,.25)
            );
    }

    to {
        transform:
            translateY(-7px)
            scale(1.035);

        filter:
            drop-shadow(
                0 0 22px rgba(148,86,255,.45)
            );
    }
}


@keyframes splash-line-move {

    0% {
        transform:
            translateX(-160%);
    }

    100% {
        transform:
            translateX(300%);
    }
}


@keyframes hero-eyebrow-in {

    from {
        opacity: 0;
        transform:
            translateY(16px);
    }

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


@keyframes hero-title-in {

    from {
        opacity: 0;

        transform:
            translateY(32px)
            scale(.97);

        filter:
            blur(8px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);

        filter:
            blur(0);
    }
}


@keyframes hero-text-in {

    from {
        opacity: 0;
        transform:
            translateY(18px);
    }

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


@keyframes hero-actions-in {

    from {
        opacity: 0;
        transform:
            translateY(14px);
    }

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


@keyframes hero-brand-in {

    from {
        opacity: 0;

        transform:
            translateX(36px)
            scale(.95);

        filter:
            blur(8px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0)
            scale(1);

        filter:
            blur(0);
    }
}


@keyframes hero-gradient-move {

    0% {
        background-position:
            0% center;
    }

    100% {
        background-position:
            100% center;
    }
}


@keyframes hero-bg-zoom {

    from {
        transform:
            scale(1.04);
    }

    to {
        transform:
            scale(1);
    }
}


/* acessibilidade */

@media (prefers-reduced-motion: reduce) {

    .splash-inner,
    .splash-symbol,
    .splash-line::after,
    .hero .eyebrow,
    .hero h1,
    .hero-copy > p,
    .hero-actions,
    .hero-brand,
    .hero-background {
        animation:
            none !important;
    }

    .hero .eyebrow,
    .hero h1,
    .hero-copy > p,
    .hero-actions,
    .hero-brand {
        opacity: 1;
    }
}


/* =========================================================
   SOCIAL SECTION
   ========================================================= */

.social-section {
    border-top:
        1px solid rgba(255,255,255,.055);
}


.social-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 12px;
}


.social-card {
    min-height: 86px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 17px;

    border:
        1px solid var(--border);

    border-radius: 13px;

    background:
        rgba(255,255,255,.025);

    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}


.social-card:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(150,95,255,.35);

    background:
        rgba(127,77,230,.06);
}


.social-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            rgba(39,211,255,.13),
            rgba(137,87,255,.16),
            rgba(236,78,210,.12)
        );
}


.social-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: #c2aaff;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.social-card strong {
    display: block;

    font-size: 14px;
}


.social-card div > span {
    display: block;

    margin-top: 4px;

    font-size: 10px;

    color: #77737d;
}


.social-arrow {
    margin-left: auto;

    color: #706b75;

    font-size: 18px;
}


.footer-empty {
    font-size: 12px;

    color: #5f5b64;
}


@media (max-width: 820px) {

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

}


@media (max-width: 560px) {

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

}


/* =========================================================
   PRODUTOS DIGITAIS
   ========================================================= */

.products-public-section {
    border-block:
        1px solid rgba(255,255,255,.055);
    background:
        rgba(255,255,255,.012);
}

.products-public-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0,1fr));
    gap: 15px;
}

.product-public-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--card);
}

.product-public-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.product-public-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.product-public-card:hover
.product-public-image img {
    transform: scale(1.025);
}

.product-public-body {
    padding: 17px;
}

.product-public-body > span {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9c7aff;
}

.product-public-body h3 {
    margin: 7px 0 8px;
    font-size: 18px;
}

.product-public-body > p {
    margin: 0;
    min-height: 42px;
    font-size: 12px;
    line-height: 1.6;
    color: #8e8a94;
}

.product-public-footer {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-public-footer strong {
    color: #b296ff;
}


/* Página individual */

.product-page {
    min-height: 70vh;
}

.product-detail {
    padding: 65px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns:
        1.05fr .95fr;
    gap: 45px;
    align-items: start;
}

.product-main-image {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--card);
}

.product-main-image img {
    width: 100%;
}

.product-gallery {
    margin-top: 10px;
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 8px;
}

.product-gallery img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
}

.product-info h1 {
    margin: 8px 0 14px;
    font-size:
        clamp(35px, 5vw, 55px);
    line-height: 1;
}

.product-short {
    line-height: 1.7;
    color: #99949f;
}

.product-price-public {
    margin: 22px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-price-public strong {
    font-size: 28px;
    color: #b297ff;
}

.product-price-public del {
    color: #66616b;
}

.product-meta {
    display: grid;
    gap: 7px;
    margin-bottom: 22px;
}

.product-meta span {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 11px 0;
    border-bottom:
        1px solid rgba(255,255,255,.06);
    font-size: 12px;
    color: #77727d;
}

.product-meta strong {
    color: #b8b3bd;
}

.product-public-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-content-sections {
    display: grid;
    gap: 13px;
}

.product-content-sections article {
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: rgba(255,255,255,.022);
}

.product-content-sections h2 {
    margin: 0 0 11px;
    font-size: 20px;
}

.product-content-sections p {
    margin: 0;
    line-height: 1.8;
    color: #96919b;
}

@media (max-width: 850px) {

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

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 560px) {

    .products-public-grid {
        grid-template-columns: 1fr;
    }

    .product-detail {
        padding: 40px 0;
    }

    .product-gallery {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .product-public-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   LOJA DIGITAL - CATEGORIAS
   ========================================================= */

.store-section {
    border-block:
        1px solid rgba(255,255,255,.055);

    background:
        rgba(255,255,255,.012);
}


.store-categories {
    display: flex;

    gap: 9px;

    overflow-x: auto;

    padding:
        0 0 18px;

    margin-bottom: 10px;

    scrollbar-width: none;
}


.store-categories::-webkit-scrollbar {
    display: none;
}


.store-category {
    min-width: 135px;

    min-height: 57px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    gap: 3px;

    padding:
        10px 14px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 10px;

    background:
        rgba(255,255,255,.025);

    color: #aaa5af;

    cursor: pointer;

    transition:
        .2s ease;
}


.store-category strong {
    font-size: 12px;
}


.store-category span {
    font-size: 9px;

    color: #67626d;
}


.store-category:hover,
.store-category.active {
    border-color:
        rgba(145,88,255,.45);

    background:
        rgba(130,76,235,.1);

    color: white;
}


.store-category.active span {
    color: #9b82e8;
}


.product-public-price {
    min-height: 30px;

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 13px;
}


.product-public-price strong {
    font-size: 18px;

    color: #b194ff;
}


.product-public-price del {
    font-size: 11px;

    color: #65616a;
}


.product-public-actions {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 7px;

    margin-top: 13px;
}


.store-empty {
    padding:
        35px;

    border:
        1px dashed rgba(255,255,255,.09);

    border-radius: 12px;

    text-align: center;
}


.store-empty strong {
    display: block;

    margin-bottom: 7px;
}


.store-empty p {
    margin: 0;

    color: #77727d;

    font-size: 12px;
}


@media (max-width: 560px) {

    .store-categories {
        margin-inline:
            -12px;

        padding-inline:
            12px;
    }


    .store-category {
        min-width:
            145px;
    }

}


/* =========================================================
   NAVEGAÇÃO / CANCELAR PRODUTO
   ========================================================= */

.product-back-area {
    padding-top: 24px;
}


.product-back-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    min-height: 38px;

    padding: 0 13px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 8px;

    background:
        rgba(255,255,255,.025);

    color: #9d98a3;

    font-size: 12px;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}


.product-back-button:hover {
    color: #fff;

    border-color:
        rgba(145,88,255,.35);

    background:
        rgba(130,76,235,.08);
}


.button-cancel {
    border:
        1px solid rgba(255,100,120,.15);

    background:
        rgba(255,80,100,.045);

    color:
        #c9979f;
}


.button-cancel:hover {
    border-color:
        rgba(255,100,120,.30);

    background:
        rgba(255,80,100,.08);

    color:
        #ffb1bc;
}


@media (max-width: 560px) {

    .product-back-area {
        padding-top: 16px;
    }

}


/* =========================================================
   CHECKOUT / PEDIDO / PIX
   ========================================================= */

.checkout-page,
.order-page {
    min-height: 70vh;
}


.checkout-grid {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 30px;

    align-items: start;
}


.checkout-product,
.checkout-form-card,
.order-card {
    border:
        1px solid var(--border);

    border-radius: 14px;

    background:
        rgba(255,255,255,.025);
}


.checkout-product {
    padding: 20px;
}


.checkout-product > img {
    width: 100%;

    aspect-ratio: 16 / 10;

    object-fit: cover;

    margin-top: 18px;

    border-radius: 10px;
}


.checkout-product > span {
    display: block;

    margin-top: 17px;

    font-size: 9px;

    letter-spacing: 2px;

    color: #a07dff;
}


.checkout-product h1 {
    margin:
        7px 0 9px;

    font-size: 28px;
}


.checkout-product p {
    color: #8d8993;

    line-height: 1.65;

    font-size: 13px;
}


.checkout-price {
    display: block;

    margin-top: 18px;

    font-size: 27px;

    color: #b093ff;
}


.checkout-form-card {
    padding: 25px;
}


.checkout-form-card h2 {
    margin:
        7px 0 8px;

    font-size: 28px;
}


.checkout-form-card > p {
    color: #87828d;

    font-size: 13px;

    line-height: 1.65;
}


.checkout-form-card form,
.proof-form {
    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-top: 20px;
}


.checkout-form-card label {
    display: flex;

    flex-direction: column;

    gap: 7px;

    color: #99949f;

    font-size: 12px;
}


.checkout-form-card input,
.checkout-form-card textarea,
.proof-form input {
    width: 100%;

    padding: 12px;

    border:
        1px solid rgba(255,255,255,.1);

    border-radius: 8px;

    background: #100e16;

    color: white;

    outline: none;
}


.checkout-error,
.order-warning {
    margin-top: 14px;

    padding: 12px;

    border-radius: 8px;

    background:
        rgba(255,80,100,.1);

    color: #ff9bac;

    font-size: 12px;
}


.order-container {
    max-width: 900px;
}


.order-header {
    margin-bottom: 25px;
}


.order-header h1 {
    margin:
        7px 0 15px;

    font-size:
        clamp(38px, 7vw, 62px);
}


.order-status,
.admin-order-status {
    display: inline-flex;

    padding:
        6px 9px;

    border-radius: 999px;

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;
}


.order-status.aguardando-pagamento,
.admin-order-status.aguardando-pagamento {
    background:
        rgba(244,190,70,.12);

    color: #e9bf68;
}


.order-status.comprovante-enviado,
.admin-order-status.comprovante-enviado {
    background:
        rgba(80,150,255,.13);

    color: #82b0ff;
}


.order-status.pago,
.admin-order-status.pago {
    background:
        rgba(50,210,130,.13);

    color: #69dfa4;
}


.order-status.recusado,
.admin-order-status.recusado,
.order-status.cancelado,
.admin-order-status.cancelado {
    background:
        rgba(255,75,100,.12);

    color: #ff8a9c;
}


.order-grid {
    display: grid;

    gap: 14px;
}


.order-card {
    padding: 22px;
}


.order-card h2 {
    margin:
        0 0 15px;

    font-size: 20px;
}


.order-card p {
    color: #8c8792;

    line-height: 1.65;

    font-size: 13px;
}


.order-total {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 18px;

    padding-top: 16px;

    border-top:
        1px solid rgba(255,255,255,.07);

    color: #88838e;
}


.order-total strong {
    font-size: 23px;

    color: #b398ff;
}


.pix-card {
    text-align: center;
}


.pix-qr {
    width: min(
        100%,
        270px
    );

    margin:
        0 auto 20px;

    border-radius: 12px;

    background: white;
}


.pix-field {
    display: flex;

    justify-content: space-between;

    gap: 15px;

    padding:
        12px 0;

    border-bottom:
        1px solid rgba(255,255,255,.06);

    text-align: left;

    font-size: 12px;
}


.pix-field span {
    color: #74707a;
}


.pix-key {
    display: grid;

    grid-template-columns:
        1fr auto;

    align-items: center;
}


.pix-key > span {
    grid-column:
        1 / -1;
}


.pix-key strong {
    overflow-wrap: anywhere;
}


.pix-instructions {
    margin-top: 18px;
}


.order-approved {
    text-align: center;
}


.approved-check {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin:
        0 auto 17px;

    border-radius: 50%;

    background:
        rgba(50,210,130,.12);

    color: #69dfa4;

    font-size: 31px;
}


.download-count {
    margin:
        17px 0;

    color: #85808b;

    font-size: 12px;
}


.order-waiting {
    text-align: center;
}


.order-footer-actions {
    margin-top: 20px;
}


@media (max-width: 750px) {

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

}


/* =========================================================
   CLIENTES / CONTA
   ========================================================= */

.customer-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}


.customer-nav-link,
.customer-account-button {
    position: relative;

    min-height: 36px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 11px;

    border-radius: 8px;

    font-size: 11px;
    font-weight: 700;
}


.customer-nav-link {
    color: #9d98a3;
}


.customer-account-button {
    border:
        1px solid rgba(143,91,255,.3);

    background:
        rgba(126,76,226,.10);

    color: #c5b3ff;
}


.nav-badge {
    position: absolute;

    right: -4px;
    top: -5px;

    min-width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 5px;

    border-radius: 99px;

    background: #8658ff;

    color: white;

    font-size: 8px;
}


.mobile-customer-area {
    display: contents;
}


.auth-container {
    max-width: 520px;
}


.auth-card {
    padding: 28px;

    border:
        1px solid var(--border);

    border-radius: 16px;

    background:
        rgba(255,255,255,.025);
}


.auth-card h1 {
    margin: 7px 0 10px;

    font-size: 38px;
}


.auth-card > p {
    color: #8e8994;

    font-size: 13px;

    line-height: 1.65;
}


.auth-card form {
    display: grid;

    gap: 14px;

    margin-top: 22px;
}


.auth-card label {
    display: grid;

    gap: 7px;

    color: #99949f;

    font-size: 12px;
}


.auth-card input {
    width: 100%;

    padding: 12px;

    border:
        1px solid rgba(255,255,255,.1);

    border-radius: 8px;

    outline: none;

    background: #100e16;

    color: #fff;
}


.auth-footer {
    margin-top: 20px;

    color: #77727d;

    font-size: 12px;

    text-align: center;
}


.auth-footer a {
    color: #ae91ff;

    font-weight: 700;
}


.account-heading h1,
.account-page-header h1 {
    margin: 7px 0 6px;

    font-size:
        clamp(32px, 6vw, 48px);
}


.account-heading p {
    color: #85808a;
}


.account-stats {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 10px;

    margin: 25px 0;
}


.account-stat {
    padding: 18px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        rgba(255,255,255,.025);
}


.account-stat span {
    display: block;

    color: #807b86;

    font-size: 10px;
}


.account-stat strong {
    display: block;

    margin-top: 7px;

    font-size: 25px;

    color: #b297ff;
}


.account-columns {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;
}


.account-panel {
    padding: 20px;

    border:
        1px solid var(--border);

    border-radius: 13px;

    background:
        rgba(255,255,255,.022);
}


.account-panel-title,
.account-page-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}


.account-panel-title h2 {
    margin: 0;

    font-size: 18px;
}


.account-panel-title a {
    color: #9f81ef;

    font-size: 10px;
}


.account-order-list,
.notification-list,
.customer-orders,
.download-list,
.notification-page-list,
.cart-list {
    display: grid;

    gap: 9px;

    margin-top: 16px;
}


.account-order,
.notification-item {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    padding: 12px;

    border:
        1px solid rgba(255,255,255,.06);

    border-radius: 8px;
}


.account-order strong,
.notification-item strong {
    display: block;

    font-size: 12px;
}


.account-order div > span,
.notification-item span {
    display: block;

    margin-top: 4px;

    color: #706b76;

    font-size: 10px;
}


.notification-item.unread,
.notification-page-item.unread {
    border-color:
        rgba(135,86,255,.3);

    background:
        rgba(127,77,226,.06);
}


.account-empty {
    color: #706b76;

    font-size: 12px;
}


.customer-order-card,
.download-card,
.notification-page-item,
.cart-item {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;

    padding: 17px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        rgba(255,255,255,.022);
}


.customer-order-card span,
.download-card span {
    color: #7f7985;

    font-size: 10px;
}


.customer-order-card h2,
.download-card h2,
.cart-item h2 {
    margin: 6px 0;

    font-size: 17px;
}


.customer-order-card p,
.download-card p {
    margin: 0;

    color: #a68cff;

    font-size: 12px;
}


.customer-order-actions,
.cart-actions {
    display: flex;

    align-items: center;

    gap: 8px;

    flex-wrap: wrap;
}


.notification-page-item {
    display: block;
}


.notification-page-item strong {
    display: block;
}


.notification-page-item p {
    margin: 7px 0;

    color: #918c97;

    font-size: 12px;
}


.notification-page-item > span {
    color: #625d68;

    font-size: 9px;
}


.cart-item > img {
    width: 110px;
    height: 75px;

    flex-shrink: 0;

    object-fit: cover;

    border-radius: 8px;
}


.cart-info {
    flex: 1;
}


.cart-info strong {
    color: #b297ff;
}


.cart-actions form,
.inline-form {
    margin: 0;
}


.cart-total {
    display: flex;

    justify-content: space-between;

    margin-top: 15px;

    padding: 19px;

    border:
        1px solid var(--border);

    border-radius: 11px;

    color: #85808a;
}


.cart-total strong {
    color: #b297ff;

    font-size: 20px;
}


.download-unavailable {
    color: #77727d;

    font-size: 11px;
}


@media (max-width: 960px) {

    .customer-nav-actions {
        display: none;
    }


    .account-stats {
        grid-template-columns:
            1fr 1fr;
    }


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

}


@media (max-width: 560px) {

    .account-stats {
        grid-template-columns:
            1fr 1fr;
    }


    .customer-order-card,
    .download-card,
    .cart-item {
        align-items: stretch;

        flex-direction: column;
    }


    .cart-item > img {
        width: 100%;
        height: auto;

        aspect-ratio: 16 / 9;
    }


    .customer-order-actions,
    .cart-actions {
        display: grid;

        grid-template-columns: 1fr;
    }

}


/* =========================================================
   ESTOQUE
   ========================================================= */

.product-stock-public {
    margin:
        -8px 0 18px;
}


.stock-available,
.stock-soldout {
    display: inline-flex;

    align-items: center;

    min-height: 27px;

    padding:
        0 9px;

    border-radius: 999px;

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;
}


.stock-available {
    background:
        rgba(47,205,126,.10);

    color:
        #68dda2;
}


.stock-soldout {
    background:
        rgba(255,75,100,.10);

    color:
        #ff8798;
}


.button-disabled {
    opacity: .45;

    cursor:
        not-allowed;

    pointer-events:
        none;
}


/* =========================================================
   DISPONIBILIDADE DO PRODUTO
   ========================================================= */

.product-meta-availability strong {
    color: #75dba6;
}


.product-meta-stock strong {
    color: #ad95f8;
}


.product-meta-stock,
.product-meta-availability {
    transition:
        background .18s ease;
}


.product-meta-stock:hover,
.product-meta-availability:hover {
    background:
        rgba(255,255,255,.015);
}


@media (max-width: 600px) {

    .product-meta {
        margin-top: 16px;
    }


    .product-meta span {
        min-height: 52px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 14px;
    }


    .product-meta strong {
        max-width: 55%;

        text-align: right;
    }

}


/* =========================================================
   PERFIL COMPLETO DO CLIENTE V2
   ========================================================= */

.header-logout-form,
.mobile-logout-form,
.logout-form {
    margin: 0;
}


.header-logout-form button,
.mobile-logout-form button {
    font: inherit;
}


.customer-logout-button {
    border: 0;
    background: transparent;
    cursor: pointer;
}


.mobile-logout-form {
    display: contents;
}


.mobile-logout-form button {
    width: 100%;

    border: 0;

    background: transparent;

    color: #d58591;

    text-align: left;

    cursor: pointer;
}


.customer-profile-card {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 22px;

    border:
        1px solid var(--border);

    border-radius: 15px;

    background:
        rgba(255,255,255,.025);
}


.customer-profile-main {
    display: flex;

    align-items: center;

    gap: 17px;

    min-width: 0;
}


.customer-profile-main h1 {
    margin: 5px 0 4px;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    font-size:
        clamp(24px, 4vw, 38px);
}


.customer-profile-main p {
    margin: 0;

    color: #807b86;

    font-size: 11px;
}


.customer-avatar {
    width: 76px;
    height: 76px;

    flex: 0 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border:
        1px solid rgba(143,91,255,.28);

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(126,76,226,.19),
            rgba(76,43,145,.08)
        );

    color: #bda9ff;

    font-size: 28px;

    font-weight: 800;
}


.customer-avatar.large {
    width: 94px;
    height: 94px;

    font-size: 34px;
}


.customer-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.customer-profile-actions {
    display: flex;

    align-items: center;

    gap: 8px;

    flex-wrap: wrap;
}


.account-stat small {
    display: block;

    margin-top: 4px;

    color: #625d68;

    font-size: 8px;
}


.profile-settings-container {
    max-width: 1100px;
}


.profile-settings-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;

    margin-top: 24px;
}


.profile-settings-header {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 20px;
}


.profile-settings-header h2 {
    margin: 0;

    font-size: 20px;
}


.profile-settings-header p {
    margin: 5px 0 0;

    color: #77727d;

    font-size: 10px;
}


.profile-settings-form {
    display: grid;

    gap: 14px;

    margin-top: 18px;
}


.profile-settings-form label {
    display: grid;

    gap: 7px;

    color: #99949f;

    font-size: 11px;
}


.profile-settings-form input {
    width: 100%;

    box-sizing: border-box;

    padding: 12px;

    border:
        1px solid rgba(255,255,255,.1);

    border-radius: 8px;

    outline: none;

    background: #100e16;

    color: white;
}


.profile-settings-form input:disabled {
    opacity: .55;

    cursor: not-allowed;
}


.profile-settings-form small {
    color: #66616c;

    font-size: 8px;

    line-height: 1.5;
}


.profile-remove-photo {
    display: flex !important;

    grid-template-columns: auto 1fr;

    align-items: center;

    gap: 8px !important;

    padding: 10px;

    border:
        1px solid rgba(255,255,255,.06);

    border-radius: 8px;
}


.profile-remove-photo input {
    width: auto;
}


.profile-panel-description {
    color: #77727d;

    font-size: 10px;

    line-height: 1.6;
}


.profile-success {
    margin: 14px 0;

    padding: 11px;

    border:
        1px solid rgba(57,205,130,.15);

    border-radius: 8px;

    background:
        rgba(57,205,130,.055);

    color: #68dda3;

    font-size: 10px;
}


.profile-security-info {
    margin-top: 20px;

    padding: 12px;

    border:
        1px solid rgba(255,255,255,.055);

    border-radius: 8px;

    background:
        rgba(0,0,0,.1);
}


.profile-security-info strong,
.profile-security-info span {
    display: block;
}


.profile-security-info strong {
    color: #77727d;

    font-size: 8px;

    text-transform: uppercase;
}


.profile-security-info span {
    margin-top: 5px;

    font-size: 10px;
}


@media (max-width: 850px) {

    .profile-settings-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

    .customer-profile-card {
        align-items: stretch;

        flex-direction: column;
    }


    .customer-profile-actions {
        display: grid;

        grid-template-columns:
            1fr 1fr;

        width: 100%;
    }


    .customer-profile-actions > *,
    .customer-profile-actions form,
    .customer-profile-actions button,
    .customer-profile-actions a {
        width: 100%;
    }


    .customer-profile-actions
    .button {
        justify-content: center;
    }


    .account-stats {
        grid-template-columns:
            1fr 1fr;
    }


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

}


@media (max-width: 480px) {

    .customer-profile-main {
        align-items: flex-start;
    }


    .customer-avatar {
        width: 62px;
        height: 62px;

        font-size: 23px;
    }


    .customer-profile-main h1 {
        font-size: 23px;
    }


    .customer-profile-main p {
        max-width: 190px;

        overflow: hidden;

        text-overflow: ellipsis;

        white-space: nowrap;
    }


    .customer-profile-actions {
        grid-template-columns: 1fr;
    }


    .account-stats {
        grid-template-columns:
            1fr 1fr;

        gap: 7px;
    }


    .account-stat {
        padding: 13px;
    }


    .profile-settings-header {
        align-items: flex-start;

        flex-direction: column;
    }

}


/* RECUPERAÇÃO DE SENHA */

.auth-password-tools {
    display: flex;
    justify-content: flex-end;
    margin-top: -5px;
}

.auth-password-tools a {
    color: #a789f6;
    font-size: 11px;
    font-weight: 700;
}

.password-reset-success {
    margin: 16px 0;
    padding: 14px;

    border:
        1px solid rgba(61,210,135,.18);

    border-radius: 9px;

    background:
        rgba(61,210,135,.055);
}

.password-reset-success strong {
    color: #67dda0;
}

.password-reset-success p {
    margin: 6px 0 0;
    color: #85808a;
    font-size: 11px;
}

@media (max-width: 520px) {

    .auth-password-tools {
        justify-content: flex-start;
        margin-top: 0;
    }
}


/* =========================================================
   CHECKOUT MULTIPRODUTO V1
   ========================================================= */

.cart-checkout-actions {
    display: flex;

    justify-content: flex-end;

    gap: 9px;

    margin-top: 12px;

    flex-wrap: wrap;
}


.cart-checkout-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(360px, .8fr);

    gap: 20px;

    align-items: start;
}


.cart-checkout-summary {
    padding: 22px;

    border:
        1px solid var(--border);

    border-radius: 15px;

    background:
        rgba(255,255,255,.022);
}


.cart-checkout-summary h1 {
    margin: 7px 0 20px;

    font-size:
        clamp(28px, 4vw, 40px);
}


.cart-checkout-items {
    display: grid;

    gap: 9px;
}


.cart-checkout-item {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 11px;

    border:
        1px solid rgba(255,255,255,.055);

    border-radius: 9px;

    background:
        rgba(0,0,0,.1);
}


.cart-checkout-item img {
    width: 68px;
    height: 52px;

    flex: 0 0 auto;

    object-fit: cover;

    border-radius: 7px;
}


.cart-checkout-item div {
    min-width: 0;

    flex: 1;
}


.cart-checkout-item strong {
    display: block;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    font-size: 12px;
}


.cart-checkout-item span {
    display: block;

    margin-top: 5px;

    color: #ad94f7;

    font-size: 11px;

    font-weight: 700;
}


.cart-checkout-total {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin: 16px 0;

    padding: 15px;

    border:
        1px solid rgba(130,83,233,.17);

    border-radius: 9px;

    background:
        rgba(123,74,222,.05);
}


.cart-checkout-total span {
    color: #817c87;

    font-size: 11px;
}


.cart-checkout-total strong {
    color: #b59fff;

    font-size: 20px;
}


@media (max-width: 850px) {

    .cart-checkout-layout {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .cart-checkout-actions {
        display: grid;

        grid-template-columns: 1fr;
    }


    .cart-checkout-actions a {
        width: 100%;

        justify-content: center;
    }


    .cart-checkout-summary {
        padding: 15px;
    }


    .cart-checkout-item img {
        width: 58px;
        height: 46px;
    }

}


/* =========================================================
   PEDIDO MULTIPRODUTO V2
   ========================================================= */

.order-items-list,
.order-download-items {
    display: grid;

    gap: 8px;

    margin-top: 14px;
}


.order-item-row,
.order-download-item {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    padding: 12px;

    border:
        1px solid rgba(255,255,255,.055);

    border-radius: 8px;

    background:
        rgba(0,0,0,.1);
}


.order-item-row > div,
.order-download-item > div {
    min-width: 0;
}


.order-item-row strong,
.order-download-item strong {
    display: block;

    font-size: 12px;
}


.order-item-row span,
.order-download-item span {
    display: block;

    margin-top: 4px;

    color: #77727d;

    font-size: 9px;
}


.order-download-item .button {
    flex: 0 0 auto;
}


@media (max-width: 600px) {

    .order-item-row,
    .order-download-item {
        align-items: stretch;

        flex-direction: column;
    }


    .order-download-item .button {
        width: 100%;

        justify-content: center;
    }

}
