/* Creative Core — Tema da Loja (referência: referencia para layout da loja/layout) */

:root {
    --cc-navy: #031152;
    --cc-accent: #FF3D14;
    --cc-cyan: #19E0FF;
    --cc-purple: #8b5cf6;
    --cc-bg: #06090f;
    --cc-surface: #0a0f18;
    --cc-text: #f1f5f9;
    --cc-muted: rgba(226, 232, 240, 0.62);
    --cc-border: rgba(255, 255, 255, 0.1);
    --cc-max: 1280px;
    --cc-gut: clamp(18px, 2.4vw, 30px);
    --nb-bw: 3px;
    --nb-shadow: 6px 6px 0 0 rgba(255, 255, 255, 0.92);
    --nb-shadow-acc: 9px 9px 0 0 var(--cc-accent);
    --cc-glass: linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    --cc-glass-border: rgba(255, 255, 255, 0.12);
    --cc-glow-acc: rgba(255, 61, 20, 0.35);
    --cc-glow-cyan: rgba(25, 224, 255, 0.28);
}

html.cc-force-dark,
body.cc-store.dark-theme {
    background: var(--cc-bg);
    color: var(--cc-text);
    font-family: 'Plus Jakarta Sans', 'DM Mono', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.cc-store {
    margin: 0;
    background: var(--cc-bg);
    color: var(--cc-text);
}

body.cc-store .container {
    max-width: var(--cc-max);
    margin: 0 auto;
    padding: 0 var(--cc-gut);
}

/* Ambiente premium */
.cc-store #cc-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    z-index: 10001;
    background: linear-gradient(90deg, var(--cc-accent), var(--cc-cyan), var(--cc-purple));
    box-shadow: 0 0 12px var(--cc-glow-cyan);
    pointer-events: none;
}
.cc-store .glow-orb {
    position: fixed;
    width: min(600px, 70vw);
    height: min(600px, 70vw);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
    animation: ccOrbFloat 18s ease-in-out infinite alternate;
}
.cc-store .orb-orange { background: var(--cc-accent); top: 8%; left: 5%; }
.cc-store .orb-cyan   { background: #3b82f6; top: 38%; right: 2%; animation-delay: -6s; }
.cc-store .orb-purple { background: var(--cc-purple); bottom: 10%; left: 8%; animation-delay: -12s; }
@keyframes ccOrbFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(24px, -18px) scale(1.08); }
}
.cc-store .cc-vignette {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
}

.cc-store .cc-glass {
    background: var(--cc-glass);
    border: 1px solid var(--cc-glass-border);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.cc-store .cc-gradient-text {
    display: block;
    background: linear-gradient(135deg, #fff 0%, var(--cc-cyan) 45%, var(--cc-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cc-store .cc-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.03);
}
.cc-store .cc-section-tag__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cc-accent);
    box-shadow: 0 0 8px var(--cc-glow-acc);
    animation: ccPulse 2s ease-in-out infinite;
}
@keyframes ccPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.6; transform: scale(0.85); }
}
.cc-store .cc-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.cc-store .cc-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* HUD de fundo */
.cc-store .hud-canopy {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.cc-store .hud-canopy__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.35;
}
.cc-store .hud-canopy__nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.cc-store .hud-canopy__nebula--orange {
    width: 55vw;
    height: 55vw;
    top: -18%;
    right: -12%;
    background: radial-gradient(circle, rgba(255, 61, 20, 0.14) 0%, transparent 70%);
    animation: ccNebulaDrift 22s ease-in-out infinite alternate;
}
.cc-store .hud-canopy__nebula--cyan {
    width: 45vw;
    height: 45vw;
    bottom: -10%;
    left: -8%;
    background: radial-gradient(circle, rgba(25, 224, 255, 0.1) 0%, transparent 70%);
    animation: ccNebulaDrift 28s ease-in-out infinite alternate-reverse;
}
@keyframes ccNebulaDrift {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-30px, 20px); }
}
.cc-store .store-container,
.cc-store .nav-header,
.cc-store .store-footer {
    position: relative;
    z-index: 1;
}

/* Header */
.cc-store .nav-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(6, 9, 15, 0.72);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
    overflow: hidden;
}
.cc-store .nav-bracket {
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: var(--cc-accent);
    border-style: solid;
    opacity: 0.55;
    pointer-events: none;
}
.cc-store .nav-bracket--tl { top: 6px; left: 10px; border-width: 1.5px 0 0 1.5px; }
.cc-store .nav-bracket--tr { top: 6px; right: 10px; border-width: 1.5px 1.5px 0 0; }
.cc-store .nav-bracket--bl { bottom: 6px; left: 10px; border-width: 0 0 1.5px 1.5px; }
.cc-store .nav-bracket--br { bottom: 6px; right: 10px; border-width: 0 1.5px 1.5px 0; }
.cc-store .nav-scanline {
    position: absolute;
    bottom: 0;
    left: -40%;
    width: 35%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cc-accent), transparent);
    animation: ccNavScan 3.5s linear infinite;
    pointer-events: none;
}
@keyframes ccNavScan {
    0% { left: -40%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 110%; opacity: 0; }
}
.cc-store .nav-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}
.cc-store .logo {
    font-family: 'Archivo', 'Tektur', sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.cc-store .logo-core { color: var(--cc-accent); }
.cc-store .logo-mark {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.cc-store .nav-center {
    display: flex;
    justify-content: center;
}
.cc-store .store-search {
    position: relative;
    width: min(420px, 100%);
}
.cc-store .store-search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}
.cc-store .store-search input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    padding: 12px 18px 12px 42px;
    font-family: 'Outfit', 'DM Mono', monospace;
    font-size: 0.88rem;
    border-radius: 999px;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.cc-store .store-search input:focus {
    border-color: rgba(25, 224, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(25, 224, 255, 0.12), 0 8px 32px rgba(0, 0, 0, 0.25);
}
.cc-store .store-search input::placeholder { color: rgba(255, 255, 255, 0.35); }
.cc-store .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cc-store .nav-pill {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: border-color 0.2s, color 0.2s;
}
.cc-store .nav-pill:hover {
    color: #fff;
    border-color: var(--cc-accent);
}
.cc-store .store-cart-icon {
    position: relative;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: border-color 0.2s, transform 0.15s, box-shadow 0.15s;
}
.cc-store .store-cart-icon:hover {
    border-color: var(--cc-accent);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 0 rgba(255, 61, 20, 0.4);
}
.cc-store .store-cart-icon i { color: #fff; font-size: 1rem; }
.cc-store .cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--cc-accent);
    color: #fff;
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border: 2px solid var(--cc-bg);
}

/* Hero */
.cc-store .store-banner {
    position: relative;
    padding: 72px 0 64px;
    margin-bottom: 0;
    text-align: left;
    background: var(--cc-surface);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}
.cc-store .store-banner--premium {
    padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 9vw, 104px);
    min-height: clamp(520px, 72vh, 680px);
    display: flex;
    align-items: center;
}
.cc-store .banner-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(255, 61, 20, 0.12), transparent 55%),
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(25, 224, 255, 0.1), transparent 50%),
        radial-gradient(ellipse 50% 40% at 60% 80%, rgba(139, 92, 246, 0.08), transparent 45%);
    animation: ccMeshShift 16s ease-in-out infinite alternate;
}
@keyframes ccMeshShift {
    0%   { opacity: 0.85; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.04); }
}
.cc-store .banner-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
    pointer-events: none;
}
.cc-store .banner-glow--left {
    top: 10%;
    left: -5%;
    background: rgba(255, 61, 20, 0.18);
}
.cc-store .banner-glow--right {
    bottom: 5%;
    right: 10%;
    background: rgba(25, 224, 255, 0.14);
}
.cc-store .store-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 17, 82, 0.88), rgba(6, 9, 15, 0.82));
    z-index: 1;
}
.cc-store .banner-content {
    position: relative;
    z-index: 2;
    max-width: var(--cc-max);
    margin: 0 auto;
    padding: 0 var(--cc-gut);
}
.cc-store .banner-content--split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}
.cc-store .hero-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(25, 224, 255, 0.25);
    background: rgba(25, 224, 255, 0.06);
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}
.cc-store .hero-status-pill__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
    animation: ccPulse 2s ease-in-out infinite;
}
.cc-store .banner-showcase {
    position: relative;
    min-height: 380px;
}
.cc-store .banner-showcase__chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    z-index: 3;
    animation: ccChipFloat 5s ease-in-out infinite alternate;
}
.cc-store .banner-showcase__chip i { color: var(--cc-cyan); }
.cc-store .banner-showcase__chip--tl { top: 0; left: -8px; animation-delay: 0s; }
.cc-store .banner-showcase__chip--br { bottom: 24px; right: -8px; animation-delay: -2.5s; }
@keyframes ccChipFloat {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}
.cc-store .banner-showcase__card {
    display: block;
    position: relative;
    padding: 20px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.cc-store .banner-showcase__card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 61, 20, 0.35);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45), 0 0 40px rgba(255, 61, 20, 0.12);
}
.cc-store .banner-showcase__card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.cc-store .banner-showcase__live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    color: #10b981;
}
.cc-store .banner-showcase__live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    animation: ccPulse 1.5s ease-in-out infinite;
}
.cc-store .banner-showcase__tag {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 61, 20, 0.15);
    border: 1px solid rgba(255, 61, 20, 0.35);
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cc-accent);
}
.cc-store .banner-showcase__thumb {
    aspect-ratio: 16/10;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.cc-store .banner-showcase__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cc-store .banner-showcase__card h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin: 0 0 8px;
    color: #fff;
}
.cc-store .banner-showcase__price {
    font-family: 'DM Mono', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cc-cyan);
    margin: 0 0 14px;
}
.cc-store .banner-showcase__terminal {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.45);
}
.cc-store .banner-showcase__terminal-ok { color: #10b981; }

.cc-store .home-marquee {
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(3, 17, 82, 0.45);
    padding: 12px 0;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.cc-store .home-marquee__track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: ccMarquee 28s linear infinite;
}
.cc-store .home-marquee__track span {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
}
.cc-store .home-marquee__track span:nth-child(odd) { color: rgba(25, 224, 255, 0.55); }
@keyframes ccMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.cc-store .store-banner .svp-crumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}
.cc-store .store-banner .svp-crumb__div { color: var(--cc-accent); }
.cc-store .store-banner h1 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1.02;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 14px;
    max-width: none;
}
.cc-store .store-banner--premium h1 .cc-gradient-text {
    display: block;
    margin-top: 4px;
}
.cc-store .store-banner .banner-subtitle {
    font-family: 'DM Mono', monospace;
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    color: var(--cc-accent);
    margin: 0 0 28px;
    max-width: 52ch;
    line-height: 1.6;
}
.cc-store .store-banner .banner-subtitle::before { content: '▸ '; }
.cc-store .btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cc-navy);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s, transform 0.15s, box-shadow 0.15s, border-color 0.2s;
}
.cc-store .btn-nav-cta:hover {
    background: var(--cc-accent);
    border-color: var(--cc-accent);
    color: #fff;
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 0 rgba(255, 61, 20, 0.45);
}
.cc-store .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}
.cc-store .btn-nav-cta--primary {
    background: var(--cc-accent);
    border-color: var(--cc-accent);
}
.cc-store .btn-nav-cta--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.25);
}
.cc-store .btn-nav-cta--glow {
    box-shadow: 0 0 24px rgba(255, 61, 20, 0.35);
}
.cc-store .btn-nav-cta--glow:hover {
    box-shadow: 0 0 36px rgba(255, 61, 20, 0.5), 6px 6px 0 0 rgba(255, 61, 20, 0.35);
}
.cc-store .btn-nav-cta--ghost:hover {
    background: var(--cc-navy);
    border-color: var(--cc-cyan);
    color: var(--cc-cyan);
    box-shadow: 0 0 24px rgba(25, 224, 255, 0.2);
}
.cc-store .hero-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.cc-store .hero-specs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.cc-store .hero-specs i { color: var(--cc-cyan); }

/* Home — conversão */
.cc-store .home-trust-strip {
    background: rgba(3, 17, 82, 0.55);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 0;
}
.cc-store .home-trust-strip__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}
.cc-store .home-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}
.cc-store .home-trust-item i {
    color: var(--cc-cyan);
    font-size: 0.9rem;
}
.cc-store .home-trust-item strong { color: #fff; }

.cc-store .home-stats {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cc-store .home-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.cc-store .home-stat-card {
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.cc-store .home-stat-card:hover {
    border-color: rgba(25, 224, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 24px rgba(25, 224, 255, 0.08);
}
.cc-store .home-stat-card--accent:hover {
    border-color: rgba(255, 61, 20, 0.45);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 24px rgba(255, 61, 20, 0.1);
}
.cc-store .home-stat-card__value {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 0 24px rgba(25, 224, 255, 0.2);
}
.cc-store .home-stat-card--accent .home-stat-card__value {
    text-shadow: 0 0 24px rgba(255, 61, 20, 0.25);
}
.cc-store .home-stat-card__label {
    display: block;
    margin-top: 6px;
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc-store .home-type-nav {
    padding: 56px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cc-store .home-type-nav__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}
.cc-store .home-type-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px 24px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s, border-color 0.25s;
}
.cc-store .home-type-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(255, 61, 20, 0.1);
    border-color: rgba(255, 61, 20, 0.35);
}
.cc-store .home-type-card--alt:hover {
    border-color: rgba(25, 224, 255, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(25, 224, 255, 0.1);
}
.cc-store .home-type-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 61, 20, 0.12);
    border: 2px solid rgba(255, 61, 20, 0.35);
    font-size: 1.2rem;
    color: var(--cc-accent);
}
.cc-store .home-type-card--alt .home-type-card__icon {
    background: rgba(25, 224, 255, 0.1);
    border-color: rgba(25, 224, 255, 0.35);
    color: var(--cc-cyan);
}
.cc-store .home-type-card h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
}
.cc-store .home-type-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
    flex: 1;
}
.cc-store .home-type-card__cta {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cc-accent);
}
.cc-store .home-type-card--alt .home-type-card__cta { color: var(--cc-cyan); }
.cc-store .home-category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cc-store .home-category-pill {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
}
.cc-store .home-category-pill:hover {
    border-color: rgba(255, 61, 20, 0.4);
    color: #fff;
    background: rgba(255, 61, 20, 0.1);
    box-shadow: 0 0 20px rgba(255, 61, 20, 0.12);
}

.cc-store .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.cc-store .section-link {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cc-cyan);
    text-decoration: none;
}
.cc-store .section-link:hover { color: var(--cc-accent); }

.cc-store .home-bestseller {
    padding: 56px 0;
    background: linear-gradient(180deg, rgba(3, 17, 82, 0.35), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cc-store .home-bestseller__layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 32px;
    align-items: center;
}
.cc-store .home-bestseller__media {
    position: relative;
    border: var(--nb-bw) solid rgba(255, 255, 255, 0.12);
    background: var(--cc-surface);
    aspect-ratio: 4/3;
    overflow: hidden;
}
.cc-store .home-bestseller__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cc-store .home-bestseller__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--cc-accent);
    opacity: 0.5;
}
.cc-store .home-bestseller__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--cc-accent);
    color: #fff;
    padding: 6px 12px;
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.cc-store .home-bestseller__eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cc-accent);
    margin: 0 0 10px;
}
.cc-store .home-bestseller__content h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    text-transform: uppercase;
    margin: 0 0 12px;
    color: #fff;
}
.cc-store .home-bestseller__desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0 0 20px;
}
.cc-store .home-bestseller__price {
    margin-bottom: 20px;
}
.cc-store .home-bestseller__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cc-store .home-steps,
.cc-store .home-usps {
    padding: 56px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cc-store .home-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: none;
}
.cc-store .home-step-card {
    padding: 24px 20px;
    background: var(--cc-surface);
    border: 2px solid rgba(255, 255, 255, 0.08);
    position: relative;
}
.cc-store .home-step-card__num {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: rgba(255, 61, 20, 0.35);
    line-height: 1;
    margin-bottom: 12px;
}
.cc-store .home-step-card h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    margin: 0 0 8px;
    color: #fff;
}
.cc-store .home-step-card p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
}

.cc-store .home-usps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.cc-store .home-usp-card {
    padding: 22px 18px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 15, 24, 0.6);
}
.cc-store .home-usp-card i {
    font-size: 1.25rem;
    color: var(--cc-cyan);
    margin-bottom: 12px;
}
.cc-store .home-usp-card h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin: 0 0 8px;
    color: #fff;
}
.cc-store .home-usp-card p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
}

.cc-store .filters-clear {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cc-accent);
    text-decoration: none;
}
.cc-store .filters-clear:hover { color: var(--cc-cyan); }

.cc-store .home-faq {
    padding: 56px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cc-store .home-faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cc-store .home-faq__item {
    background: var(--cc-surface);
    border: 2px solid rgba(255, 255, 255, 0.08);
    padding: 0;
}
.cc-store .home-faq__item summary {
    padding: 16px 18px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
    color: #fff;
}
.cc-store .home-faq__item summary::-webkit-details-marker { display: none; }
.cc-store .home-faq__item summary::after {
    content: '+';
    float: right;
    color: var(--cc-accent);
    font-family: 'DM Mono', monospace;
}
.cc-store .home-faq__item[open] summary::after { content: '−'; }
.cc-store .home-faq__item p {
    margin: 0;
    padding: 0 18px 16px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}
.cc-store .home-faq__item a { color: var(--cc-cyan); }

.cc-store .home-cta-band {
    padding: 56px 0 72px;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(255, 61, 20, 0.15), transparent 55%),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(25, 224, 255, 0.1), transparent 50%),
        var(--cc-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}
.cc-store .home-cta-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cc-accent), var(--cc-cyan), transparent);
}
.cc-store .home-cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cc-store .home-cta-band__eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    color: var(--cc-cyan);
    margin: 0 0 8px;
}
.cc-store .home-cta-band h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    text-transform: uppercase;
    margin: 0 0 8px;
    color: #fff;
}
.cc-store .home-cta-band p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    max-width: 48ch;
}
.cc-store .home-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.cc-store .btn-lg {
    padding: 14px 24px !important;
    font-size: 0.78rem !important;
}

/* Seções */
.cc-store .store-featured,
.cc-store .store-all-products {
    padding: 56px 0;
    background: transparent;
}
.cc-store .store-featured {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cc-store .section-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-align: left;
    margin: 0 0 8px;
    color: #fff;
}
.cc-store .section-subtitle {
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 28px;
}
.cc-store .section-subtitle::before { content: '// '; color: var(--cc-accent); }

/* Filtros */
.cc-store .filters-section { margin-bottom: 28px; }
.cc-store .store-filters-form {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 10px;
    align-items: stretch;
}
.cc-store .filter-search { position: relative; }
.cc-store .filter-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
}
.cc-store .store-filters-form .form-control,
.cc-store .filter-search input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 12px 14px;
    font-family: 'DM Mono', monospace;
    font-size: 0.82rem;
    border-radius: 0;
    height: 100%;
}
.cc-store .filter-search input { padding-left: 36px; }
.cc-store .store-filters-form .form-control:focus,
.cc-store .filter-search input:focus {
    outline: none;
    border-color: var(--cc-accent);
}
.cc-store .filter-submit {
    border-radius: 0 !important;
    background: var(--cc-accent) !important;
    border: 2px solid var(--cc-accent) !important;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 12px 18px;
    white-space: nowrap;
}

/* Cards */
.cc-store .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}
.cc-store .products-grid--premium .product-card {
    background: var(--cc-glass);
    border: 1px solid var(--cc-glass-border);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s, border-color 0.28s;
}
.cc-store .products-grid--premium .product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 61, 20, 0.4);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.38), 0 0 32px rgba(255, 61, 20, 0.12);
}
.cc-store .products-grid--premium .product-image {
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cc-store .product-card {
    background: var(--cc-surface);
    border: var(--nb-bw) solid rgba(255, 255, 255, 0.92);
    border-radius: 0;
    box-shadow: var(--nb-shadow);
    overflow: hidden;
    transition: transform 0.13s cubic-bezier(0.2, 0.85, 0.25, 1), box-shadow 0.13s, border-color 0.13s;
}
.cc-store .product-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--nb-shadow-acc);
    border-color: var(--cc-accent);
}
.cc-store .product-image {
    aspect-ratio: 1;
    background: #0d121c;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}
.cc-store .product-overlay { background: rgba(3, 17, 82, 0.82); }
.cc-store .product-badge {
    background: var(--cc-accent);
    border-radius: 0;
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.cc-store .product-info { padding: 18px; }
.cc-store .product-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}
.cc-store .product-title a { color: #fff; }
.cc-store .product-title a:hover { color: var(--cc-accent); }
.cc-store .product-category {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
}
.cc-store .current-price {
    font-family: 'DM Mono', monospace;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--cc-cyan);
}
.cc-store .price-period {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}
.cc-store .installment-text {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
}
.cc-store .btn-buy,
.cc-store .btn-primary,
.cc-store .btn-success {
    border-radius: 0 !important;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    border: 2px solid transparent;
}
.cc-store .btn-buy,
.cc-store .btn-success {
    background: var(--cc-navy) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}
.cc-store .btn-buy:hover,
.cc-store .btn-success:hover {
    background: var(--cc-accent) !important;
    border-color: var(--cc-accent) !important;
}
.cc-store .placeholder-image {
    color: rgba(255, 255, 255, 0.35);
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Mini carrinho */
.cc-store .mini-cart {
    background: #0a0f18;
    border-left: 3px solid var(--cc-accent);
    color: #fff;
}
.cc-store .mini-cart-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
}
.cc-store .mini-cart-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cc-store .mini-cart-total {
    font-family: 'DM Mono', monospace;
}

/* Footer cockpit */
.cc-store .store-footer.footer--cockpit {
    background: #06090f;
    color: #fff;
    padding: 0 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}
.cc-store .footer-status {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 0;
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}
.cc-store .fst-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}
.cc-store .fst-dot {
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    display: inline-block;
    margin-right: 6px;
}
.cc-store .footer-hero {
    padding: 48px 0 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cc-store .footer-hero__brand {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin: 0;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.45) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cc-store .footer-hero__dot {
    color: var(--cc-accent);
    -webkit-text-fill-color: var(--cc-accent);
}
.cc-store .footer-hero__tagline {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 16px 0 0;
}
.cc-store .footer-grid--cockpit {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cc-store .footer-col__label {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cc-accent);
    margin-bottom: 16px;
}
.cc-store .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cc-store .footer-links a {
    font-family: 'DM Mono', monospace;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}
.cc-store .footer-links a:hover {
    color: #fff;
    padding-left: 10px;
}
.cc-store .footer-pay-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cc-store .footer-pay-badges span {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.7);
}
.cc-store .footer-tele {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 24px;
}
.cc-store .fte-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cc-accent);
    display: block;
    margin-bottom: 4px;
}
.cc-store .fte-val {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.55);
}
.cc-store .footer-bracket {
    position: absolute;
    width: 18px;
    height: 18px;
    pointer-events: none;
    border-color: var(--cc-accent);
    border-style: solid;
}
.cc-store .footer-bracket--tl { top: 10px; left: 10px; border-width: 1px 0 0 1px; }
.cc-store .footer-bracket--tr { top: 10px; right: 10px; border-width: 1px 1px 0 0; }
.cc-store .footer-bracket--bl { bottom: 10px; left: 10px; border-width: 0 0 1px 1px; }
.cc-store .footer-bracket--br { bottom: 10px; right: 10px; border-width: 0 1px 1px 0; }

/* Flash */
.cc-store .store-flash-success,
.cc-store .store-flash-error {
    font-family: 'DM Mono', monospace;
    font-size: 0.82rem;
    padding: 12px 20px;
    text-align: center;
    border-bottom: 2px solid;
}
.cc-store .store-flash-success {
    background: rgba(16, 185, 129, 0.12);
    color: #6ee7b7;
    border-color: #10b981;
}
.cc-store .store-flash-error {
    background: rgba(255, 61, 20, 0.12);
    color: #fca5a5;
    border-color: var(--cc-accent);
}

@media (max-width: 991px) {
    .cc-store .nav-grid { grid-template-columns: 1fr auto; }
    .cc-store .nav-center { grid-column: 1 / -1; order: 3; }
    .cc-store .store-filters-form { grid-template-columns: 1fr 1fr; }
    .cc-store .footer-grid--cockpit { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .cc-store .store-filters-form { grid-template-columns: 1fr; }
    .cc-store .footer-grid--cockpit,
    .cc-store .footer-tele { grid-template-columns: 1fr; }
    .cc-store .nav-pill { display: none; }
}

/* ═══ Página interna (produto / checkout / obrigado) ═══ */
.cc-store .cc-page {
    max-width: var(--cc-max);
    margin: 0 auto;
    padding: 32px var(--cc-gut) 56px;
}
.cc-store .cc-page-hero {
    margin-bottom: 28px;
}
.cc-store .cc-page-hero h1 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    color: #fff;
}
.cc-store .cc-page-hero p {
    font-family: 'DM Mono', monospace;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    letter-spacing: 0.06em;
}
.cc-store .cc-page-hero p::before { content: '▸ '; color: var(--cc-accent); }
.cc-store .svp-crumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
}
.cc-store .svp-crumb a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}
.cc-store .svp-crumb a:hover { color: var(--cc-accent); }
.cc-store .svp-crumb__sep { color: rgba(255, 61, 20, 0.6); }
.cc-store .svp-crumb__current { color: #fff; }

/* Painéis neobrutalistas */
.cc-store .cc-panel {
    background: var(--cc-surface);
    border: var(--nb-bw) solid rgba(255, 255, 255, 0.92);
    box-shadow: var(--nb-shadow);
    padding: 22px;
}
.cc-store .cc-panel--sticky {
    position: sticky;
    top: 88px;
}
.cc-store .cc-badge {
    display: inline-block;
    background: var(--cc-accent);
    color: #fff;
    padding: 5px 12px;
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

/* Produto */
.cc-store .product-detail {
    max-width: var(--cc-max);
    margin: 0 auto;
    padding: 32px var(--cc-gut) 56px;
}
.cc-store .product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
    gap: 28px;
    align-items: start;
}
.cc-store .product-gallery {
    border: var(--nb-bw) solid rgba(255, 255, 255, 0.92);
    box-shadow: var(--nb-shadow);
    background: #0d121c;
}
.cc-store .product-gallery-main img {
    border-radius: 0;
    border: none;
}
.cc-store .product-gallery-thumbs img {
    border-radius: 0;
    border: 2px solid rgba(255, 255, 255, 0.15);
}
.cc-store .product-gallery-thumbs img.active,
.cc-store .product-gallery-thumbs img:hover {
    border-color: var(--cc-accent);
}
.cc-store .product-gallery-placeholder {
    background: #0d121c;
    border: none;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.35);
    min-height: 360px;
}
.cc-store .product-detail-sidebar h1 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.15;
}
.cc-store .product-short-desc {
    font-size: 0.95rem;
    color: var(--cc-muted);
    line-height: 1.65;
    margin-bottom: 18px;
}
.cc-store .product-rating span { color: rgba(255, 255, 255, 0.45); font-size: 0.85rem; }
.cc-store .stars { color: #f59e0b; }
.cc-store .period-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.cc-store .period-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: 'DM Mono', monospace;
    font-size: 0.85rem;
    color: #fff;
}
.cc-store .period-option.selected {
    border-color: var(--cc-accent);
    box-shadow: 4px 4px 0 0 rgba(255, 61, 20, 0.35);
}
.cc-store .period-option input { accent-color: var(--cc-accent); }
.cc-store .product-detail-price {
    margin: 18px 0;
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
}
.cc-store .product-detail-price .main-price {
    font-family: 'DM Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--cc-cyan);
}
.cc-store .product-detail-price .original-price {
    color: rgba(255, 255, 255, 0.4);
    font-family: 'DM Mono', monospace;
    font-size: 0.9rem;
}
.cc-store .product-detail-price .installment {
    color: rgba(255, 255, 255, 0.45);
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
}
.cc-store .buy-box .btn {
    width: 100%;
    margin-bottom: 10px;
    padding: 14px;
    font-size: 0.78rem;
    border-radius: 0 !important;
}
.cc-store .cc-trust-box {
    margin-top: 18px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.cc-store .cc-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
}
.cc-store .cc-trust-item:last-child { margin-bottom: 0; }
.cc-store .cc-trust-item i { color: var(--cc-cyan); width: 18px; text-align: center; }
.cc-store .product-tabs {
    margin-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cc-store .tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}
.cc-store .tabs-nav button {
    padding: 12px 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}
.cc-store .tabs-nav button.active {
    color: var(--cc-accent);
    border-bottom-color: var(--cc-accent);
    font-weight: 700;
}
.cc-store .tab-panel {
    padding: 22px 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}
.cc-store .tab-panel .text-muted { color: rgba(255, 255, 255, 0.4) !important; }
.cc-store .review-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.cc-store .review-summary-score {
    font-family: 'DM Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f59e0b;
}
.cc-store .review-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
}
.cc-store .review-author {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    color: #fff;
}
.cc-store .review-date {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}
.cc-store .review-text { color: rgba(255, 255, 255, 0.7); }
.cc-store .review-empty {
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    padding: 30px 0;
    font-family: 'DM Mono', monospace;
    font-size: 0.85rem;
}

/* Checkout */
.cc-store .checkout-container {
    max-width: var(--cc-max);
    margin: 0 auto;
    padding: 32px var(--cc-gut) 56px;
}
.cc-store .checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 24px;
    align-items: start;
}
.cc-store .checkout-section {
    background: var(--cc-surface);
    border: var(--nb-bw) solid rgba(255, 255, 255, 0.92);
    box-shadow: var(--nb-shadow);
    border-radius: 0;
    padding: 22px;
    margin-bottom: 18px;
}
.cc-store .checkout-section h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.cc-store .checkout-section h3 i { color: var(--cc-accent); margin-right: 8px; }
.cc-store .form-group label {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 6px;
}
.cc-store .form-group label .req { color: var(--cc-accent); }
.cc-store .form-control {
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 0;
    font-family: 'DM Mono', monospace;
    font-size: 0.88rem;
}
.cc-store .form-control:focus {
    border-color: var(--cc-accent);
    box-shadow: 4px 4px 0 0 rgba(255, 61, 20, 0.25);
    outline: none;
}
.cc-store .form-control::placeholder { color: rgba(255, 255, 255, 0.3); }
.cc-store .form-hint {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}
.cc-store .payment-method-item {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    color: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.cc-store .payment-method-item.selected,
.cc-store .payment-method-item:hover {
    border-color: var(--cc-accent);
    box-shadow: 4px 4px 0 0 rgba(255, 61, 20, 0.3);
}
.cc-store .payment-method-label {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
}
.cc-store .payment-method-desc {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
}
.cc-store .checkout-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-family: 'DM Mono', monospace;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}
.cc-store .checkout-terms a { color: var(--cc-cyan); }
.cc-store .checkout-terms input { accent-color: var(--cc-accent); margin-top: 3px; }
.cc-store .checkout-submit {
    width: 100%;
    padding: 16px;
    font-size: 0.8rem !important;
    border-radius: 0 !important;
}
.cc-store .checkout-note {
    margin-top: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}
.cc-store .order-summary {
    background: var(--cc-surface);
    border: var(--nb-bw) solid rgba(255, 255, 255, 0.92);
    box-shadow: var(--nb-shadow);
    border-radius: 0;
    padding: 22px;
    position: sticky;
    top: 88px;
}
.cc-store .order-summary h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: #fff;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.cc-store .summary-product {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cc-store .summary-product img {
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.cc-store .summary-product-info h5 {
    font-family: 'Archivo', sans-serif;
    font-size: 0.85rem;
    color: #fff;
    text-transform: uppercase;
}
.cc-store .summary-product-info .price {
    font-family: 'DM Mono', monospace;
    color: var(--cc-cyan) !important;
}
.cc-store .summary-total {
    font-family: 'DM Mono', monospace;
    color: #fff;
    border-top: 2px solid rgba(255, 255, 255, 0.12);
}
.cc-store .summary-trust {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
}
.cc-store .summary-trust i { margin-right: 6px; }
.cc-store .alert-danger,
.cc-store #checkout-errors {
    background: rgba(255, 61, 20, 0.12);
    border: 2px solid var(--cc-accent);
    color: #fca5a5;
    padding: 12px 16px;
    font-family: 'DM Mono', monospace;
    font-size: 0.82rem;
    border-radius: 0;
}

/* Obrigado */
.cc-store .thanks-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px var(--cc-gut) 64px;
    text-align: center;
}
.cc-store .thanks-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.35));
}
.cc-store .thanks-container h1 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}
.cc-store .thanks-lead {
    font-family: 'DM Mono', monospace;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 24px;
    line-height: 1.6;
}
.cc-store .cc-status-box {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.12);
    padding: 16px 20px;
    margin-bottom: 24px;
    font-family: 'DM Mono', monospace;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: left;
}
.cc-store .cc-status-box strong { color: #fff; }
.cc-store .cc-status-box.is-paid {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}
.cc-store .cc-status-box.is-pending {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.08);
}
.cc-store .order-info-box {
    background: var(--cc-surface);
    border: var(--nb-bw) solid rgba(255, 255, 255, 0.92);
    box-shadow: var(--nb-shadow);
    border-radius: 0;
    padding: 22px;
    margin: 24px 0;
    text-align: left;
}
.cc-store .order-info-box h4 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 14px;
}
.cc-store .order-info-box h4 i { color: var(--cc-accent); margin-right: 8px; }
.cc-store .order-info-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'DM Mono', monospace;
    font-size: 0.82rem;
}
.cc-store .order-info-row span { color: rgba(255, 255, 255, 0.45); }
.cc-store .order-info-row strong { color: #fff; }
.cc-store .order-info-row a { color: var(--cc-cyan); }
.cc-store .cc-callout {
    padding: 20px;
    margin: 20px 0;
    border: 2px solid;
    text-align: center;
}
.cc-store .cc-callout h4 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.cc-store .cc-callout p {
    font-family: 'DM Mono', monospace;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 12px;
    line-height: 1.55;
}
.cc-store .cc-callout--info {
    border-color: var(--cc-cyan);
    background: rgba(25, 224, 255, 0.06);
}
.cc-store .cc-callout--info h4 { color: var(--cc-cyan); }
.cc-store .cc-callout--pix {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.08);
    text-align: left;
}
.cc-store .cc-callout--pix h4 { color: #6ee7b7; }
.cc-store .cc-callout--boleto {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.08);
    text-align: left;
}
.cc-store .cc-callout--boleto h4 { color: #fbbf24; }
.cc-store .cc-callout--download {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.08);
}
.cc-store .cc-callout--download h4 { color: #6ee7b7; }
.cc-store .pix-code {
    background: rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.12);
    padding: 14px;
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    word-break: break-all;
    color: #fff;
    margin: 12px 0;
}
.cc-store .pix-box img {
    border-radius: 0 !important;
    border: 2px solid rgba(255, 255, 255, 0.12) !important;
}
.cc-store .thanks-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}
.cc-store .thanks-actions .btn {
    border-radius: 0 !important;
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.cc-store .btn-ghost {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}
.cc-store .btn-ghost:hover {
    border-color: var(--cc-accent) !important;
    color: var(--cc-accent) !important;
}
.cc-store .thanks-footnote {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 28px;
}

@media (max-width: 991px) {
    .cc-store .product-detail-layout,
    .cc-store .checkout-grid { grid-template-columns: 1fr; }
    .cc-store .cc-panel--sticky,
    .cc-store .order-summary,
    .cc-store .product-detail-sidebar { position: static; }
    .cc-store .home-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .cc-store .home-type-nav__grid,
    .cc-store .home-bestseller__layout,
    .cc-store .banner-content--split { grid-template-columns: 1fr; }
    .cc-store .banner-showcase { min-height: 320px; margin-top: 24px; }
    .cc-store .home-steps__grid { grid-template-columns: 1fr; }
    .cc-store .home-usps__grid { grid-template-columns: repeat(2, 1fr); }
    .cc-store .store-banner--premium { min-height: auto; }
}
@media (max-width: 575px) {
    .cc-store .home-stats__grid,
    .cc-store .home-usps__grid { grid-template-columns: 1fr; }
    .cc-store .home-trust-strip__inner { flex-direction: column; align-items: flex-start; }
    .cc-store .hero-actions { flex-direction: column; }
    .cc-store .hero-actions .btn-nav-cta { width: 100%; justify-content: center; }
    .cc-store .banner-showcase__chip--tl { left: 0; }
    .cc-store .banner-showcase__chip--br { right: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .cc-store .glow-orb,
    .cc-store .home-marquee__track,
    .cc-store .banner-mesh,
    .cc-store .banner-showcase__chip { animation: none !important; }
    .cc-store .cc-reveal { opacity: 1; transform: none; transition: none; }
}
