/**
 * OrionGSM Store - Design System Dark Cósmico Ultra Premium
 * Baseado nas diretrizes Vercel Web Interface Guidelines & OpenDesign
 */

:root {
    --bg-main: #06060f;
    --bg-surface: #0c0c1a;
    --bg-card: rgba(18, 18, 38, 0.7);
    --bg-card-hover: rgba(26, 26, 52, 0.85);
    --bg-elevated: #16162e;
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(121, 40, 202, 0.45);
    --border-glow: rgba(0, 223, 216, 0.4);
    
    --text-main: #f8f9fc;
    --text-muted: #9ba1b8;
    --text-dim: #60647c;
    
    --accent-purple: #7928ca;
    --accent-blue: #0070f3;
    --accent-cyan: #00dfd8;
    --accent-emerald: #10b981;
    --accent-amber: #f59e0b;
    --accent-rose: #ef4444;

    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-card-hover: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 28px rgba(121, 40, 202, 0.25);
}

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

html {
    color-scheme: dark;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.num-tabular, .price, .valor, code {
    font-variant-numeric: tabular-nums;
}

/* ─── Container ─── */
.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── Top Bar / Banner Internacional ─── */
.top-banner {
    background: linear-gradient(90deg, #130726 0%, #0a142e 50%, #061e24 100%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 9px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.top-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.top-banner-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.top-banner-item strong {
    color: #fff;
}

/* ─── Header Principal ─── */
.header-main {
    background: rgba(12, 12, 26, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 74px;
    gap: 24px;
}
.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
    box-shadow: 0 0 24px rgba(121, 40, 202, 0.45);
}
.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
}
.logo-tag {
    font-size: 0.72rem;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-left: 4px;
    text-transform: uppercase;
    background: rgba(0, 223, 216, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(0, 223, 216, 0.25);
}

/* ─── Search Bar ─── */
.header-search {
    flex: 1;
    max-width: 480px;
    position: relative;
}
.search-input {
    width: 100%;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    padding: 11px 18px 11px 42px;
    color: var(--text-main);
    font-size: 0.9rem;
    outline: none;
    transition: all var(--transition-fast);
}
.search-input:focus-visible {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(121, 40, 202, 0.25);
    background: #111124;
}
.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    pointer-events: none;
}

/* ─── Header Actions ─── */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    background: transparent;
    border: 1px solid transparent;
}
.btn-nav:hover {
    background: var(--bg-card);
    border-color: var(--border-subtle);
}
.btn-cart {
    background: linear-gradient(135deg, rgba(121, 40, 202, 0.2), rgba(0, 112, 243, 0.2));
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-full);
    padding: 9px 18px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    transition: all var(--transition-fast);
}
.btn-cart:hover {
    box-shadow: 0 0 20px rgba(121, 40, 202, 0.4);
    border-color: var(--accent-purple);
}
.cart-badge {
    background: var(--accent-purple);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 999px;
    box-shadow: 0 0 8px rgba(121, 40, 202, 0.6);
}

/* ─── Hero Section Renovada & Atraente ─── */
.hero-section {
    background: radial-gradient(circle at 50% -15%, rgba(121, 40, 202, 0.3) 0%, rgba(0, 112, 243, 0.14) 40%, transparent 75%),
                radial-gradient(circle at 85% 30%, rgba(0, 223, 216, 0.08) 0%, transparent 50%),
                linear-gradient(180deg, rgba(6, 6, 15, 0.85) 0%, var(--bg-main) 100%);
    background-color: var(--bg-main);
    padding: 68px 0 56px 0;
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 60%, transparent 100%);
}
.hero-grid-2col {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-text-col {
    text-align: left;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 18px;
    background: rgba(121, 40, 202, 0.15);
    border: 1px solid rgba(121, 40, 202, 0.45);
    border-radius: var(--radius-full);
    color: #d8b4fe;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(121, 40, 202, 0.2);
    backdrop-filter: blur(8px);
}
.live-pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: livePulseAnim 1.8s infinite;
}
@keyframes livePulseAnim {
    0% { transform: scale(0.9); opacity: 0.8; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.9); opacity: 0.8; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.hero-title {
    font-size: 3.1rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.12;
    margin-bottom: 20px;
    color: #fff;
}
.hero-title .gradient-text {
    background: linear-gradient(135deg, #ffffff 10%, var(--accent-cyan) 60%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 20px rgba(0, 223, 216, 0.25));
}
.hero-subtitle {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 620px;
}
.hero-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}
.hero-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: #e4e4e7;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    width: fit-content;
    max-width: 100%;
}
.hero-check-item i {
    color: var(--accent-emerald);
    font-size: 1rem;
    flex-shrink: 0;
}
.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

/* ─── Hero Stats Bar (Métricas Operacionais) ─── */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 16px 20px;
    background: rgba(18, 18, 40, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 26px;
    backdrop-filter: blur(12px);
}
.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding-right: 10px;
}
.hero-stat-item:last-child {
    border-right: none;
    padding-right: 0;
}
.hero-stat-number {
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-stat-number i {
    font-size: 0.95rem;
}
.hero-stat-label {
    font-size: 0.74rem;
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.trending-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: var(--text-dim);
}
.trending-bar span {
    font-weight: 700;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.trending-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    color: #d4d4d8;
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: 0.8rem;
    font-weight: 500;
}
.trending-tag:hover {
    background: rgba(121, 40, 202, 0.25);
    border-color: var(--accent-purple);
    color: #fff;
    box-shadow: 0 0 14px rgba(121, 40, 202, 0.35);
    transform: translateY(-1px);
}

/* ─── Hero Spotlight Flagship Card ─── */
.hero-spotlight-card {
    background: radial-gradient(circle at 50% 15%, rgba(121, 40, 202, 0.28) 0%, rgba(15, 15, 34, 0.96) 65%);
    border: 1px solid rgba(121, 40, 202, 0.45);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(121, 40, 202, 0.25);
    position: relative;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    backdrop-filter: blur(16px);
}
.hero-spotlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-purple), transparent);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.hero-spotlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 55px rgba(121, 40, 202, 0.35);
    border-color: rgba(0, 223, 216, 0.45);
}
.spotlight-top-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.spotlight-pill {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 2px 12px rgba(121, 40, 202, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.spotlight-img-box {
    width: 100%;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: radial-gradient(circle at 50% 50%, rgba(26, 26, 60, 0.6) 0%, rgba(8, 8, 20, 0.8) 100%);
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}
.spotlight-img-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 20px;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 223, 216, 0.3) 0%, transparent 80%);
    filter: blur(6px);
    pointer-events: none;
}
.spotlight-img-box img {
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 26px rgba(0,0,0,0.85));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-spotlight-card:hover .spotlight-img-box img {
    transform: scale(1.08);
}
.spotlight-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
}
.spotlight-specs-mini {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.spotlight-spec-pill {
    font-size: 0.74rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    padding: 4px 10px;
    border-radius: 6px;
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}
.spotlight-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    margin-bottom: 20px;
}
.spotlight-price {
    font-size: 1.85rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
}
.spotlight-pix-split {
    font-size: 0.82rem;
    color: var(--accent-emerald);
    font-weight: 700;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ─── Barra de Vantagens e Confiança (Trust Bar) ─── */
.trust-bar {
    padding: 32px 0;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(10, 10, 22, 0.7);
    backdrop-filter: blur(12px);
    position: relative;
    z-index: 2;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.trust-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(18, 18, 38, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    backdrop-filter: blur(8px);
}
.trust-card:hover {
    border-color: rgba(121, 40, 202, 0.45);
    transform: translateY(-3px);
    background: rgba(26, 26, 52, 0.85);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5), 0 0 22px rgba(121, 40, 202, 0.2);
}
.trust-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.04);
}
.trust-card h4 {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 3px;
    letter-spacing: -0.01em;
}
.trust-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ─── Toolbar do Catálogo (Título + Ordenação) ─── */
.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.catalog-sort-select {
    background: rgba(18, 18, 38, 0.8);
    border: 1px solid var(--border-subtle);
    color: #fff;
    padding: 9px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.86rem;
    outline: none;
    cursor: pointer;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    font-weight: 600;
    backdrop-filter: blur(8px);
}
.catalog-sort-select:hover, .catalog-sort-select:focus {
    border-color: var(--accent-purple);
    box-shadow: 0 0 14px rgba(121, 40, 202, 0.35);
}

/* ─── Seção Como Funciona a Importação ─── */
.how-it-works-section {
    padding: 70px 0;
    border-top: 1px solid var(--border-subtle);
    background: radial-gradient(circle at 50% 100%, rgba(0, 112, 243, 0.09) 0%, rgba(121, 40, 202, 0.05) 50%, transparent 70%);
}
.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    margin-top: 40px;
    position: relative;
}
.step-card {
    background: rgba(18, 18, 38, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 32px 26px;
    position: relative;
    transition: all var(--transition-normal);
    backdrop-filter: blur(12px);
}
.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 16px 36px rgba(0,0,0,0.6), 0 0 25px rgba(121, 40, 202, 0.2);
}
.step-number {
    font-size: 2.6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: monospace;
    line-height: 1;
}
.step-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 22px;
    box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.05);
}
.step-card h3 {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.step-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ─── Seção Mural de Avaliações / Prova Social ─── */
.social-proof-section {
    padding: 70px 0;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-surface);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 40px;
}
.testimonial-card {
    background: rgba(18, 18, 38, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-normal);
    backdrop-filter: blur(12px);
}
.testimonial-card:hover {
    border-color: rgba(245, 158, 11, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 25px rgba(245, 158, 11, 0.15);
}
.testimonial-stars {
    color: var(--accent-amber);
    font-size: 0.95rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.testimonial-text {
    font-size: 0.92rem;
    color: #e4e4e7;
    line-height: 1.65;
    margin-bottom: 20px;
    font-style: normal;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 14px rgba(121, 40, 202, 0.4);
}
.author-info strong {
    font-size: 0.9rem;
    color: #fff;
    display: block;
    font-weight: 700;
}
.author-info small {
    font-size: 0.76rem;
    color: var(--text-dim);
}

/* ─── Seção FAQ / Dúvidas Frequentes ─── */
.faq-section {
    padding: 70px 0;
    border-top: 1px solid var(--border-subtle);
}
.faq-list {
    max-width: 860px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: rgba(18, 18, 38, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}
.faq-item:hover {
    border-color: rgba(121, 40, 202, 0.35);
}
.faq-item[open] {
    border-color: var(--accent-purple);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(121, 40, 202, 0.2);
    background: rgba(22, 22, 46, 0.85);
}
.faq-summary {
    padding: 20px 24px;
    color: #fff;
    font-weight: 700;
    font-size: 1.02rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.faq-summary::-webkit-details-marker {
    display: none;
}
.faq-summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-cyan);
    transition: transform var(--transition-fast);
    line-height: 1;
}
.faq-item[open] .faq-summary::after {
    content: '−';
    color: var(--accent-purple);
}
.faq-content {
    padding: 0 24px 22px 24px;
    font-size: 0.94rem;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 16px;
}

/* ─── Seção CTA Final de Alta Conversão ─── */
.final-cta-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-subtle);
    background: radial-gradient(circle at 50% 50%, rgba(121, 40, 202, 0.22) 0%, rgba(0, 112, 243, 0.12) 50%, transparent 80%);
}
.final-cta-box {
    background: linear-gradient(135deg, rgba(24, 24, 52, 0.92) 0%, rgba(12, 12, 26, 0.96) 100%);
    border: 1px solid rgba(121, 40, 202, 0.45);
    border-radius: var(--radius-lg);
    padding: 54px 40px;
    text-align: center;
    max-width: 940px;
    margin: 0 auto;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7), 0 0 45px rgba(121, 40, 202, 0.25);
    position: relative;
    overflow: hidden;
}
.final-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-purple), transparent);
}
.final-cta-box h2 {
    font-size: 2.25rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}
.final-cta-box p {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 680px;
    margin: 0 auto 30px auto;
}

/* ─── Categorias Navigation Bar ─── */
.category-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 32px 0 24px 0;
    border-bottom: 1px solid var(--border-subtle);
    scrollbar-width: none;
}
.category-nav::-webkit-scrollbar {
    display: none;
}
.cat-pill {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    background: rgba(18, 18, 38, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    transition: all var(--transition-fast);
    backdrop-filter: blur(8px);
}
.cat-pill:hover {
    background: rgba(28, 28, 58, 0.85);
    color: #fff;
    border-color: var(--border-highlight);
    transform: translateY(-1px);
}
.cat-pill.active {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    color: #fff;
    border-color: rgba(0, 223, 216, 0.35);
    box-shadow: 0 0 22px rgba(121, 40, 202, 0.5);
    font-weight: 700;
}
.cat-pill-count {
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 0.72rem;
}

/* ─── Grid de Produtos ─── */
.products-section {
    padding: 44px 0 60px 0;
    flex: 1;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}
.section-title {
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #fff;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
    gap: 24px;
}

/* ─── Card de Produto Ultra Polido ─── */
.product-card {
    background: rgba(16, 16, 36, 0.75);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    box-shadow: var(--shadow-card);
}
.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(121, 40, 202, 0.5);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(121, 40, 202, 0.25);
}
.product-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle at 50% 50%, rgba(26, 26, 62, 0.6) 0%, rgba(8, 8, 20, 0.95) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.75));
}
.product-card:hover .product-media img {
    transform: scale(1.08);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
    z-index: 2;
}
.product-badge-destaque {
    background: linear-gradient(135deg, rgba(121, 40, 202, 0.95), rgba(0, 112, 243, 0.95));
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 14px rgba(121, 40, 202, 0.45);
}
.product-badge-pix-split {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(0, 112, 243, 0.95));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(52, 211, 153, 0.45);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    margin-left: auto;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.03em;
}

.product-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.product-category {
    font-size: 0.74rem;
    color: var(--accent-cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.product-rating {
    font-size: 0.76rem;
    color: var(--accent-amber);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-weight: 700;
}
.product-title {
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.45;
    color: #fff;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.9em;
}
.product-title a:hover {
    color: var(--accent-cyan);
}

.product-price-box {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.product-price {
    font-size: 1.55rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.2;
}
.product-pix-hint {
    font-size: 0.78rem;
    color: var(--accent-emerald);
    font-weight: 600;
    display: block;
    margin-top: 5px;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1.3fr auto;
    gap: 6px;
    margin-top: 16px;
}

/* ─── Botões Universais ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    text-align: center;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    color: #fff;
    box-shadow: 0 4px 16px rgba(121, 40, 202, 0.35);
}
.btn-primary:hover {
    opacity: 0.94;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(121, 40, 202, 0.55);
}
.btn-primary:active {
    transform: translateY(0);
}
.btn-secondary {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
}
.btn-secondary:hover {
    background: #1e1e3e;
    border-color: var(--border-highlight);
    color: #fff;
}
.btn-whatsapp {
    background: #25d366;
    color: #03200c;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background: #1eb956;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}
.btn-block {
    width: 100%;
}
.btn-sm {
    padding: 7px 14px;
    font-size: 0.82rem;
}

/* ─── Detalhes do Produto ─── */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    padding: 36px 0;
    align-items: start;
}
.detail-gallery {
    background: radial-gradient(circle at 50% 50%, #15152e 0%, #090916 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
    position: sticky;
    top: 96px;
}
.detail-gallery img {
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.7));
}
.detail-info h1 {
    font-size: 2.1rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}
.detail-tag-envio {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(0, 112, 243, 0.12);
    border: 1px solid rgba(0, 112, 243, 0.35);
    border-radius: var(--radius-full);
    color: var(--accent-cyan);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}
.detail-price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 22px;
    margin: 22px 0;
    box-shadow: var(--shadow-card);
}
.detail-main-price {
    font-size: 2.3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.025em;
}
.detail-shipping-notice {
    background: rgba(245, 158, 11, 0.08);
    border-left: 4px solid var(--accent-amber);
    padding: 14px 18px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 18px 0;
    font-size: 0.88rem;
    color: #fde68a;
    line-height: 1.5;
}
.detail-shipping-notice strong {
    color: #fff;
}

/* ─── Multi-PIX Split Box ─── */
.pix-split-preview {
    background: linear-gradient(135deg, rgba(121, 40, 202, 0.12), rgba(0, 112, 243, 0.12));
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-md);
    padding: 18px;
    margin: 18px 0;
}
.pix-split-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 8px;
}
.pix-split-header h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
}
.pix-split-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}
.pix-split-step-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
}
.pix-split-step-item span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
}
.pix-split-step-item strong {
    font-size: 1.05rem;
    color: #fff;
    font-weight: 800;
}

/* ─── Checkout & Carrinho ─── */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    padding: 32px 0;
    align-items: start;
}
.checkout-box {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-card);
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 7px;
}
.form-control {
    width: 100%;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 11px 16px;
    color: #fff;
    font-size: 0.92rem;
    outline: none;
    transition: all var(--transition-fast);
}
.form-control:focus-visible {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(121, 40, 202, 0.25);
    background: #111124;
}
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-row-3 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
}

/* ─── Tela de Pedido & Múltiplos QR Codes PIX ─── */
.order-confirmation-box {
    max-width: 820px;
    margin: 40px auto;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-card);
}
.order-header-status {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 24px;
}
.order-number {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--accent-cyan);
    margin-bottom: 4px;
    letter-spacing: 0.03em;
}
.multi-pix-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 22px;
    margin-bottom: 20px;
    transition: all var(--transition-fast);
}
.multi-pix-card.pago {
    border-color: var(--accent-emerald);
    background: rgba(16, 185, 129, 0.06);
}
.multi-pix-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.pix-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
}
.pix-qr-img {
    width: 230px;
    height: 230px;
    background: #fff;
    padding: 12px;
    border-radius: var(--radius-md);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
}
.pix-code-field {
    width: 100%;
    background: var(--bg-main);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 11px 16px;
    font-family: monospace;
    font-size: 0.82rem;
    color: var(--text-muted);
    word-break: break-all;
    user-select: all;
}

/* ─── Badges de Status ─── */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.badge-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.35);
}
.badge-info {
    background: rgba(0, 112, 243, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(0, 112, 243, 0.35);
}
.badge-success {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.35);
}
.badge-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.35);
}

/* ─── Footer ─── */
.footer-main {
    background: #04040a;
    border-top: 1px solid var(--border-subtle);
    padding: 56px 0 28px 0;
    margin-top: auto;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 36px;
}
.footer-col h5 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.82rem;
    color: var(--text-dim);
}

/* ─── Responsividade ─── */
/* ─── Botão Flutuante de Atendimento WhatsApp VIP ─── */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: #03200c;
    border-radius: 999px;
    padding: 10px 18px 10px 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
    z-index: 997;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.floating-whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6);
    color: #000;
}
.floating-whatsapp-btn i {
    font-size: 1.8rem;
    color: #03200c;
}
.whatsapp-label {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.whatsapp-label strong {
    font-size: 0.88rem;
    font-weight: 800;
    color: #03200c;
}
.whatsapp-label small {
    font-size: 0.72rem;
    font-weight: 600;
    color: #064018;
}
.whatsapp-pulse {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: whatsappPulse 2s infinite;
}
@keyframes whatsappPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@media (max-width: 960px) {
    .hero-grid-2col {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-spotlight-card {
        max-width: 480px;
        margin: 0 auto;
    }
    .catalog-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 860px) {
    .checkout-grid, .product-detail-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .detail-gallery {
        position: static;
        padding: 20px;
    }
    .detail-info h1 {
        font-size: 1.5rem;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .header-search {
        display: none;
    }
    .product-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .floating-whatsapp-btn {
        bottom: 16px;
        right: 16px;
        padding: 12px;
        border-radius: 50%;
    }
    .whatsapp-label {
        display: none;
    }
}
