/*
 Theme Name:   Black Artes - Tema Customizado
 Template:     hello-elementor
*/
/* ==========================================================================
   1. VARIÁVEIS E RESET GLOBAL
   ========================================================================== */
:root {
    /* Cores Globais */
    --primary: #9d00ff;
    --primary-dark: #7000ff;
    --primary-glow: rgba(157, 0, 255, 0.6);
    --bg: #050505;
    --bg-darker: #020202;
    --glass: rgba(15, 15, 15, 0.8);
    --glass-header: rgba(10, 10, 10, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    --card-glass: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    --text: #ffffff;
    --text-muted: #b3b3b3;
    --transition: all 0.3s ease; /* Transição padrão suavizada */
    --ba-gradient: linear-gradient(135deg, #9d00ff 0%, #7000ff 100%);
    --danger: #444444; 
    --success: #9d00ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    padding-top: 70px;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: 'Inter', sans-serif; }

/* Scrollbar Personalizada */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.ba-container { max-width: 1200px; width: 100%; margin: 0 auto; }

/* ==========================================================================
   2. HEADER DESKTOP (PC)
   ========================================================================== */
#desktopHeader {
    position: fixed; top: 0; left: 0; width: 100%;
    background: var(--glass); 
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
    z-index: 1000;
    padding: 10px 0; 
    transition: var(--transition);
    display: block;
}

@media (min-width: 1025px) {
    body { padding-top: 135px; }
}

#desktopHeader.scrolled { 
    padding: 5px 0; 
    background: rgba(0, 0, 0, 0.95); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
}

.header-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 15px; gap: 20px; padding: 0 20px;}
.logo { cursor: pointer; }
.logo img { height: 75px; width: auto; display: block; transition: var(--transition); }
.logo:hover { transform: scale(1.05); filter: drop-shadow(0 0 12px var(--primary-glow)); }

.search-wrapper { flex: 1; max-width: 700px; position: relative; }
.search-wrapper input { 
    width: 100%; padding: 14px 25px; 
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 12px; color: white; outline: none; 
    transition: var(--transition); font-size: 15px; 
}
.search-wrapper input:focus { 
    background: rgba(157, 0, 255, 0.05); border-color: var(--primary); 
    box-shadow: 0 0 20px var(--primary-glow); 
}
.search-wrapper i { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--primary); cursor: pointer; font-size: 18px; }

.header-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255, 255, 255, 0.03); padding: 10px 20px 0 20px; }
.nav-list.desktop-nav { display: flex; gap: 22px; }
.nav-list li { position: relative; }
.nav-list a { 
    text-decoration: none; color: rgba(255, 255, 255, 0.7); 
    font-size: 11px; font-weight: 700; text-transform: uppercase; 
    letter-spacing: 1px; padding: 10px 0; display: block; 
    transition: var(--transition); cursor: pointer;
}
.nav-list li::after { 
    content: ''; position: absolute; bottom: 0; left: 50%; 
    width: 0; height: 2px; 
    background: linear-gradient(90deg, transparent, var(--primary), transparent); 
    transition: var(--transition); transform: translateX(-50%); 
    box-shadow: 0 0 10px var(--primary); 
}
.nav-list li:hover::after, .nav-list li.active::after { width: 100%; }
.nav-list li:hover a, .nav-list li.active a { color: var(--text); text-shadow: 0 0 10px rgba(255,255,255,0.3); }

.user-tools { display: flex; gap: 20px; align-items: center; }
.tool-item { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; cursor: pointer; transition: var(--transition); color: rgba(255, 255, 255, 0.8); }
.tool-item:hover { color: var(--text); transform: translateY(-2px); }
.tool-item i { font-size: 17px; color: var(--primary); }

.cart-pill { 
    background: rgba(255, 255, 255, 0.03); 
    padding: 8px 15px; border-radius: 50px; 
    border: 1px solid rgba(157, 0, 255, 0.3); 
    display: flex; align-items: center; gap: 10px; 
    transition: var(--transition); position: relative;
}
.cart-pill:hover { background: rgba(157, 0, 255, 0.1); border-color: var(--primary); transform: translateY(-2px); }
.cart-count-badge {
    position: absolute; top: -5px; right: -5px; 
    background: var(--primary); color: white; 
    font-size: 9px; width: 18px; height: 18px; 
    border-radius: 50%; display: flex; align-items: center; 
    justify-content: center; border: 1px solid #000;
}

/* ==========================================================================
   3. HEADER MOBILE
   ========================================================================== */
.mobile-header-bar {
    display: none;
    position: fixed; top: 0; left: 0; width: 100%; height: 70px;
    justify-content: space-between; align-items: center;
    padding: 0 20px;
    background: var(--glass-header);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1001;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}
.mobile-header-bar::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}
.mobile-header-bar .logo img { height: 42px; width: auto; filter: drop-shadow(0 0 5px rgba(157,0,255,0.3)); }
.header-actions { display: flex; align-items: center; gap: 18px; }

.action-btn {
    color: rgba(255,255,255,0.8); font-size: 19px; cursor: pointer; position: relative;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.action-btn:hover { color: var(--primary); text-shadow: 0 0 10px var(--primary); }
.cart-dot {
    position: absolute; top: -3px; right: -5px;
    width: 9px; height: 9px; background: var(--primary);
    border: 1px solid #000; border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
}

/* ==========================================================================
   4. COMPONENTE BANDEIRAS & RIPPLE
   ========================================================================== */
.flags-pill {
    display: flex; gap: 12px; padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px; 
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-right: 5px;
}
.desktop-flags { padding: 8px 15px; } 

.flag-img {
    width: 22px; height: 15px; 
    object-fit: cover; border-radius: 2px;
    cursor: pointer; transition: all 0.4s ease;
    filter: grayscale(100%); opacity: 0.4;
}
.flag-img.active { 
    filter: grayscale(0%); opacity: 1;
    transform: scale(1.15); box-shadow: 0 0 10px var(--primary-glow);
}
.flag-img:hover { opacity: 0.8; }

/* Microinteração: Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
    pointer-events: none;
}
@keyframes ripple-anim {
    to { transform: scale(4); opacity: 0; }
}

/* ==========================================================================
   5. MENU DRAWER MOBILE
   ========================================================================== */
.menu-drawer {
    position: fixed; top: 0; right: -100%;
    width: 100%; max-width: 360px; height: 100dvh;
    background: linear-gradient(160deg, #0f0f0f 0%, #050505 100%);
    display: flex; flex-direction: column;
    padding-top: 80px; 
    border-left: 1px solid var(--glass-border);
    transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: -20px 0 50px rgba(0,0,0,0.8);
    z-index: 1000;
}
.menu-drawer.active { right: 0; }
.mobile-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7); z-index: 999; display: none;
    backdrop-filter: blur(5px);
}
.mobile-overlay.active { display: block; animation: fadeIn 0.3s; }

.search-container { padding: 10px 25px 20px; }
.search-box { position: relative; width: 100%; }
.search-box input {
    width: 100%; padding: 15px 45px 15px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px; color: white; outline: none; font-size: 14px; transition: 0.3s;
}
.search-box input:focus {
    background: rgba(157, 0, 255, 0.05); border-color: var(--primary);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.15);
}
.search-box i { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--primary); pointer-events: none; }

.nav-list.mobile-nav { display: block; list-style: none; padding: 10px 25px; overflow-y: auto; }
.mobile-nav li { 
    width: 100%; margin-bottom: 8px; opacity: 0; transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.menu-drawer.active .mobile-nav li { opacity: 1; transform: translateX(0); }
.menu-drawer.active .mobile-nav li:nth-child(1) { transition-delay: 0.1s; }
.menu-drawer.active .mobile-nav li:nth-child(2) { transition-delay: 0.15s; }
.menu-drawer.active .mobile-nav li:nth-child(3) { transition-delay: 0.2s; }
.menu-drawer.active .mobile-nav li:nth-child(4) { transition-delay: 0.25s; }
.menu-drawer.active .mobile-nav li:nth-child(5) { transition-delay: 0.3s; }
.menu-drawer.active .mobile-nav li:nth-child(6) { transition-delay: 0.35s; }
.menu-drawer.active .mobile-nav li:nth-child(7) { transition-delay: 0.4s; }
.menu-drawer.active .mobile-nav li:nth-child(8) { transition-delay: 0.45s; }

.mobile-nav a {
    position: relative; text-decoration: none; color: rgba(255, 255, 255, 0.5);
    font-size: 16px; font-weight: 600; text-transform: uppercase;
    padding: 18px 15px; display: block; border-radius: 10px; transition: all 0.3s;
}
.mobile-nav li.active a {
    color: white; padding-left: 20px;
    background: linear-gradient(90deg, rgba(157,0,255,0.1), transparent);
    text-shadow: 0 0 12px var(--primary-glow);
}
.mobile-nav li.active a::before {
    content: ''; position: absolute; left: 0; top: 15%; height: 70%; width: 3px;
    background: var(--primary); box-shadow: 0 0 10px var(--primary); border-radius: 4px;
}
.mobile-nav li::after { display: none; }

.drawer-footer {
    margin-top: auto; padding: 25px;
    border-top: 1px solid rgba(255,255,255,0.05); background: rgba(0,0,0,0.3);
}
.fav-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 15px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; color: white; font-weight: 700; font-size: 14px; text-transform: uppercase;
    cursor: pointer; transition: 0.3s; position: relative; overflow: hidden;
}
.fav-btn:hover {
    background: rgba(157, 0, 255, 0.15); border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(157, 0, 255, 0.2); transform: translateY(-2px);
}
.fav-btn i { color: var(--primary); font-size: 16px; }

/* ==========================================================================
   6. ESTILOS GERAIS
   ========================================================================== */
.hero { 
    height: 100vh; display: flex; flex-direction: column; 
    justify-content: center; align-items: center; 
    background: radial-gradient(circle at center, #1a002b 0%, #050505 100%); 
    text-align: center; padding: 0 20px; 
}
.hero h2 { 
    font-size: 70px; font-weight: 900; margin-bottom: 20px; 
    letter-spacing: -1px; line-height: 1.1; 
    text-shadow: 0 0 20px rgba(157, 0, 255, 0.2); 
}
.hero-cta-group { margin-top: 40px; display: flex; gap: 20px; justify-content: center; }
.hero-btn {
    padding: 15px 40px; border-radius: 50px; font-weight: 800; text-transform: uppercase;
    font-size: 0.9rem; letter-spacing: 1px; cursor: pointer; transition: var(--transition);
    position: relative; overflow: hidden;
}
.hero-btn.primary {
    background: var(--ba-gradient); color: white; border: none;
    box-shadow: 0 10px 30px rgba(157, 0, 255, 0.3);
}
.hero-btn.primary:hover { box-shadow: 0 0 50px rgba(157, 0, 255, 0.6); transform: translateY(-3px); }
.hero-btn.outline {
    background: transparent; border: 1px solid rgba(255,255,255,0.3); color: white;
}
.hero-btn.outline:hover { border-color: white; background: rgba(255,255,255,0.1); }

.ba-section-wrapper { width: 100%; background-color: var(--bg); padding: 80px 20px; display: flex; justify-content: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ba-section-title { font-size: 2.2rem; text-align: center; margin-bottom: 50px; color: #ffffff; text-transform: uppercase; font-weight: 900; letter-spacing: -1px; }
.ba-section-title span { color: var(--primary); text-shadow: 0 0 30px var(--primary-glow); }
.ba-section-subtitle-small { text-align: center; font-size: 1rem; color: var(--text-muted); margin-bottom: 50px; font-weight: 400; }

.ba-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.ba-feature-box { 
    background: var(--card-glass); padding: 40px 25px; 
    border-radius: 16px; text-align: center; 
    border: 1px solid rgba(255, 255, 255, 0.05); 
    transition: var(--transition); position: relative; overflow: hidden; 
}
.ba-feature-box::before { 
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; 
    background: linear-gradient(90deg, transparent, var(--primary), transparent); 
    opacity: 0.5; transition: var(--transition); box-shadow: 0 0 10px var(--primary); 
}
.ba-feature-box:hover { transform: translateY(-10px); border-color: rgba(157, 0, 255, 0.3); box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.ba-feature-box:hover::before { opacity: 1; height: 4px; box-shadow: 0 0 20px var(--primary); }
.ba-feature-box i { font-size: 2.2rem; color: var(--primary); margin-bottom: 25px; transition: var(--transition); }
.ba-feature-box h4 { margin-bottom: 15px; color: #fff; font-size: 1.1rem; font-weight: 800; text-transform: uppercase; }
.ba-feature-box p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* Packs System */
.sys-wrapper {
    background: linear-gradient(180deg, #050505 0%, #0d0014 100%);
    padding: 80px 20px; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sys-packs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1100px; margin: 0 auto; }
.sys-pack-card {
    background: var(--card-glass); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; padding: 40px 30px; text-align: center; transition: var(--transition);
    position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.sys-pack-card.featured {
    border-color: var(--primary); box-shadow: 0 0 30px rgba(157, 0, 255, 0.15);
    transform: scale(1.05); z-index: 2;
}
.sys-badge {
    position: absolute; top: 20px; right: 20px; background: var(--primary); color: white;
    font-size: 0.7rem; font-weight: 800; padding: 5px 10px; border-radius: 4px; text-transform: uppercase;
}
.sys-pack-title { font-size: 1.8rem; font-weight: 900; margin-bottom: 10px; color: #fff; }
.sys-pack-arts { font-size: 1.1rem; color: var(--primary); font-weight: 700; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
.sys-benefits-list { list-style: none; margin-bottom: 30px; text-align: left; padding: 0 10px; flex-grow: 1; }
.sys-benefits-list li { margin-bottom: 12px; font-size: 0.9rem; color: #ccc; display: flex; gap: 10px; align-items: center; }
.sys-benefits-list li i { color: var(--success); }
.sys-btn {
    background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #fff;
    padding: 15px; width: 100%; border-radius: 10px; font-weight: 800; cursor: pointer;
    transition: var(--transition); text-transform: uppercase; font-size: 0.9rem; position: relative; overflow: hidden;
}
.sys-btn:hover, .sys-pack-card.featured .sys-btn {
    background: var(--primary); border-color: var(--primary); box-shadow: 0 0 20px var(--primary-glow);
}

.sys-catalog-wrapper {
    display: none; margin-top: 50px; background: #080808; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; overflow: hidden; animation: fadeIn 0.5s ease;
}
.sys-catalog-header {
    background: rgba(255,255,255,0.03); padding: 20px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between;
    align-items: center; position: sticky; top: 0; z-index: 50; backdrop-filter: blur(10px);
}
.sys-filters { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 5px; }
.sys-filter-btn {
    background: rgba(255,255,255,0.05); border: none; color: #ccc; padding: 8px 16px;
    border-radius: 50px; font-size: 0.85rem; cursor: pointer; transition: 0.3s; white-space: nowrap; position: relative; overflow: hidden;
}
.sys-filter-btn.active, .sys-filter-btn:hover { background: var(--primary); color: white; }
.sys-counter-box {
    background: rgba(0,0,0,0.4); padding: 10px 20px; border-radius: 8px;
    border: 1px solid var(--primary); color: #fff; font-weight: 700;
    font-size: 0.9rem; display: flex; align-items: center; gap: 10px;
}
.sys-art-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px;
    padding: 30px; max-height: 600px; overflow-y: auto;
}
.sys-art-item {
    position: relative; border-radius: 12px; overflow: hidden; cursor: pointer;
    border: 2px solid transparent; transition: 0.2s;
}
.sys-art-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; transition: 0.3s; }
.sys-art-item:hover img { transform: scale(1.05); filter: brightness(0.7); }
.sys-art-item.selected { border-color: var(--primary); }
.sys-art-item.selected img { filter: brightness(0.4); }
.sys-check-overlay {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0);
    font-size: 2rem; color: var(--primary); z-index: 5; transition: 0.3s;
}
.sys-art-item.selected .sys-check-overlay { transform: translate(-50%, -50%) scale(1); }

.sys-bottom-bar {
    padding: 20px; border-top: 1px solid rgba(255,255,255,0.05);
    display: flex; justify-content: space-between; align-items: center; background: #0a0a0a;
}
.sys-back-btn { background: transparent; color: #777; border: none; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 5px; }
.sys-back-btn:hover { color: #fff; }
.sys-next-btn {
    background: var(--ba-gradient); color: white; padding: 12px 30px; border-radius: 8px;
    border: none; font-weight: 800; cursor: pointer; opacity: 0.5; pointer-events: none; transition: 0.3s; position: relative; overflow: hidden;
}
.sys-next-btn.ready { opacity: 1; pointer-events: all; box-shadow: 0 0 20px var(--primary-glow); }

.sys-review-wrapper, .sys-checkout-wrapper {
    display: none; margin-top: 40px; background: var(--card-glass);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
    padding: 40px; animation: fadeIn 0.5s ease; text-align: left;
}
.sys-review-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; margin: 30px 0; }
.sys-review-item { position: relative; border-radius: 8px; overflow: hidden; }
.sys-review-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.sys-remove-btn {
    position: absolute; top: 5px; right: 5px; background: rgba(0,0,0,0.7);
    color: var(--danger); width: 25px; height: 25px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.8rem;
}
.sys-price-total { font-size: 2rem; font-weight: 900; color: #fff; }

.ba-slider-wrapper {
    max-width: 1300px; margin: 0 auto; position: relative;
    padding: 60px 50px 80px 50px; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.swiper-container-ba { width: 100%; padding: 20px 0 50px 0 !important; overflow: hidden; }
.swiper-slide { height: auto !important; display: flex; justify-content: center; }

/* === PRODUCT CARD PREMIUM (CORRIGIDO: SEM ZOOM, SEM OVERLAY ESCURO) === */
.env-cat-card { 
    background: var(--card-glass); border: 1px solid var(--border-color); 
    border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; width: 100%; 
    transition: all 0.4s ease; position: relative; height: 100%;
}
.env-cat-card:hover { 
    transform: translateY(-5px); /* Movimento mais sutil */
    border-color: rgba(157, 0, 255, 0.4); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Sombra mais suave */
}

.env-cat-img-wrap { 
    position: relative; width: 100%; padding-bottom: 100%; overflow: hidden; 
    background: #000; display: block; 
}

/* Dupla Imagem (Hover) */
.env-cat-img, .env-cat-img-hover { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    object-fit: cover; 
    transition: opacity 0.4s ease; /* Apenas fade, sem transform */
}
.env-cat-img { z-index: 1; opacity: 1; }
.env-cat-img-hover { z-index: 2; opacity: 0; }

/* Troca de imagem suave no hover */
.env-cat-card:hover .env-cat-img-hover { opacity: 1; }
.env-cat-card:hover .env-cat-img { opacity: 0; }

/* Lazy Loading Blur Effect */
.lazy-placeholder { filter: blur(10px); opacity: 0.5; transition: filter 0.5s, opacity 0.5s; }
.lazy-placeholder.loaded { filter: blur(0); opacity: 1; }

.env-cat-badge { 
    position: absolute; top: 15px; right: 15px; background: var(--primary); color: #fff;
    font-size: 0.75rem; font-weight: 800; padding: 5px 12px; border-radius: 6px; z-index: 5; 
}
.env-cat-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; position: relative; z-index: 4; background: var(--bg); } 
.env-marketing-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.env-cat-cats { font-size: 0.7rem; color: #777; text-transform: uppercase; font-weight: 700; }
.env-rating-stars { color: var(--primary); font-size: 0.7rem; letter-spacing: 2px; }
.env-cat-title { 
    font-size: 1.1rem; color: #fff; margin: 0 0 10px 0; font-weight: 800; line-height: 1.3; 
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; 
}
.env-delivery-tag { 
    display: inline-flex; align-items: center; gap: 5px; font-size: 0.75rem; color: #d870ff; 
    font-weight: 600; margin-bottom: 20px; background: rgba(157, 0, 255, 0.15); 
    padding: 4px 8px; border-radius: 4px; width: fit-content; 
}
.env-cat-price { margin-top: auto; margin-bottom: 20px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.env-cat-price del { color: #777 !important; text-decoration: line-through; font-size: 0.9rem; }
.env-cat-price span { color: #fff !important; font-size: 1.4rem; font-weight: 800; }

/* Botões de Ação (Slide Up no Hover) */
.env-actions-row { 
    display: flex; gap: 10px; 
    transform: translateY(10px); opacity: 0.8; transition: all 0.3s ease; 
}
.env-cat-card:hover .env-actions-row { transform: translateY(0); opacity: 1; }

.env-cat-btn { 
    flex-grow: 1; text-align: center; background: var(--ba-gradient); color: #fff !important; 
    padding: 12px; border-radius: 10px; font-weight: 700; text-transform: uppercase; 
    font-size: 0.85rem; transition: 0.3s; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.env-cat-btn:hover { filter: brightness(1.2); box-shadow: 0 0 15px var(--primary); }
.env-cart-icon-btn { 
    width: 44px; display: flex; align-items: center; justify-content: center; background: transparent; 
    border: 1px solid #333; border-radius: 10px; color: #fff; font-size: 1rem; transition: 0.3s; cursor: pointer; position: relative; overflow: hidden;
}
.env-cart-icon-btn:hover { border-color: var(--primary); background: var(--primary); color: white; }

.ba-like-btn {
    position: absolute; top: 15px; left: 15px; width: 38px; height: 38px; 
    background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center;
    justify-content: center; z-index: 20; color: rgba(255,255,255,0.8); transition: 0.3s; cursor: pointer; font-size: 16px;
}
.ba-like-btn:hover { background: white; color: var(--primary); border-color: white; transform: scale(1.1); }
.ba-like-btn.liked { background: white; color: var(--primary); border-color: white; box-shadow: 0 0 15px var(--primary); }
.ba-like-btn.liked i { font-weight: 900; animation: popHeart 0.3s forwards; }

.ba-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); width: 45px; height: 45px; 
    background: #0a0a0a; border: 1px solid #333; border-radius: 50%; color: #fff; 
    display: flex; align-items: center; justify-content: center; cursor: pointer; 
    z-index: 10; transition: 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.ba-arrow:hover { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 15px rgba(170,0,255,0.6); }
.ba-arrow-prev { left: 0; }
.ba-arrow-next { right: 0; }
.swiper-pagination-bullet { background: #444; width: 10px; height: 10px; opacity: 1; margin: 0 6px !important; }
.swiper-pagination-bullet-active { background: var(--primary); width: 30px; border-radius: 5px; }

.ba-btn-view-all {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px; 
    padding: 16px 50px; background: var(--ba-gradient); color: #ffffff !important; 
    font-weight: 800; text-transform: uppercase; font-size: 1rem; border: none; 
    border-radius: 12px; transition: all 0.3s ease; box-shadow: 0 5px 20px rgba(0,0,0,0.4); position: relative; overflow: hidden;
}
.ba-btn-view-all:hover { filter: brightness(1.2); box-shadow: 0 0 30px rgba(157, 0, 255, 0.6); transform: translateY(-3px); }
.ba-view-all-wrapper { text-align: center; margin-top: 30px; }

.ba-countdown-section { 
    background-color: var(--bg); padding: 80px 20px; text-align: center; 
    display: flex; flex-direction: column; align-items: center; justify-content: center; 
    position: relative; border-bottom: 1px solid rgba(255,255,255,0.05); 
}
.ba-countdown-section::before { 
    content: ''; position: absolute; width: 100%; height: 100%; 
    background: radial-gradient(circle at center, rgba(157, 0, 255, 0.05) 0%, transparent 70%); 
    z-index: 0; pointer-events: none; 
}
.ba-offer-wrapper { position: relative; z-index: 1; }
.ba-offer-subtitle { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 40px; font-weight: 500; }
.ba-timer-container { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.ba-timer-box { 
    background-color: var(--card-glass); border: 1px solid var(--border-color); 
    border-radius: 12px; width: 150px; padding: 30px 10px; display: flex; 
    flex-direction: column; align-items: center; justify-content: center; 
    transition: var(--transition); backdrop-filter: blur(10px); 
}
.ba-timer-box:hover { border-color: var(--primary); box-shadow: 0 0 30px rgba(157, 0, 255, 0.2); transform: translateY(-5px); }
.ba-time-number { font-size: 3.5rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 5px; font-variant-numeric: tabular-nums; }
.ba-time-label { color: var(--primary); text-transform: uppercase; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; }
.ba-separator { font-size: 3rem; font-weight: 800; color: rgba(255,255,255,0.1); display: flex; align-items: center; margin-top: -20px; }

.ba-testimonials-section {
    padding: 100px 20px; background: linear-gradient(to bottom, var(--bg), #0f001a);
    border-top: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; align-items: center; 
}
.ba-reputation-dashboard {
    display: flex; justify-content: center; align-items: center; gap: 60px;
    background: var(--card-glass); border: 1px solid var(--border-color);
    border-radius: 20px; padding: 40px; margin: 0 auto 60px auto; max-width: 900px; flex-wrap: wrap;
}
.ba-big-score { font-size: 5rem; font-weight: 900; line-height: 1; color: #fff; text-shadow: 0 0 30px var(--primary-glow); }
.ba-big-score span { font-size: 1.5rem; color: var(--text-muted); font-weight: 600; }
.ba-total-stars { font-size: 1.5rem; color: var(--primary); margin: 10px 0; letter-spacing: 5px; }
.ba-rep-bars { flex: 1; min-width: 300px; max-width: 500px; }
.ba-bar-row { display: flex; align-items: center; gap: 15px; margin-bottom: 8px; font-size: 0.9rem; color: #ccc; }
.ba-bar-bg { flex: 1; height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.ba-bar-fill { height: 100%; background: var(--primary); border-radius: 4px; box-shadow: 0 0 10px rgba(157, 0, 255, 0.5); }
.ba-write-review-section {
    width: 100%; max-width: 700px; margin: 0 auto 80px auto;
    background: rgba(157, 0, 255, 0.04); border: 1px solid rgba(157, 0, 255, 0.3);
    border-radius: 20px; padding: 40px; text-align: center; position: relative;
    backdrop-filter: blur(10px); box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.ba-review-restriction {
    margin-bottom: 25px; font-size: 0.9rem; color: #fff; background: rgba(0,0,0,0.4);
    display: inline-flex; align-items: center; justify-content: center; padding: 10px 25px;
    border-radius: 50px; border: 1px solid rgba(255,255,255,0.1);
}
.ba-review-restriction i { color: var(--primary); margin-right: 10px; }
.ba-input-stars { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-direction: row-reverse; }
.ba-input-stars input { display: none; }
.ba-input-stars label { font-size: 2.2rem; color: #444; cursor: pointer; transition: 0.2s; }
.ba-input-stars label:hover, .ba-input-stars label:hover ~ label, .ba-input-stars input:checked ~ label {
    color: var(--primary); text-shadow: 0 0 20px var(--primary-glow); transform: scale(1.1);
}
.ba-review-inputs { display: flex; flex-direction: column; gap: 15px; width: 100%; }
.ba-input-field {
    width: 100%; background: #050505; border: 1px solid rgba(255,255,255,0.15);
    color: #fff; padding: 18px; border-radius: 10px; outline: none; transition: var(--transition); font-size: 1rem;
}
.ba-input-field:focus { border-color: var(--primary); box-shadow: 0 0 15px rgba(157, 0, 255, 0.3); background: #0a0a0a; }
.ba-textarea { height: 140px; resize: vertical; }
.ba-file-upload {
    border: 2px dashed rgba(255,255,255,0.2); padding: 25px; border-radius: 10px;
    cursor: pointer; color: var(--text-muted); font-size: 0.95rem; transition: var(--transition);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.ba-file-upload:hover { border-color: var(--primary); color: #fff; background: rgba(157, 0, 255, 0.05); }
.ba-submit-review-btn {
    background: var(--ba-gradient); color: #fff; border: none; padding: 18px;
    font-weight: 800; text-transform: uppercase; border-radius: 10px; cursor: pointer;
    margin-top: 10px; transition: var(--transition); letter-spacing: 1px; width: 100%; font-size: 1rem; position: relative; overflow: hidden;
}
.ba-submit-review-btn:hover { filter: brightness(1.2); box-shadow: 0 0 30px var(--primary-glow); transform: translateY(-2px); }

.ba-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; width: 100%; }
.ba-review-card {
    background: var(--card-glass); border: 1px solid var(--border-color); border-radius: 16px;
    padding: 30px; position: relative; transition: var(--transition); display: flex;
    flex-direction: column; text-align: left; animation: fadeIn 0.5s ease;
}
.ba-review-card:hover { transform: translateY(-5px); border-color: rgba(157, 0, 255, 0.4); box-shadow: 0 10px 40px rgba(0,0,0,0.6); }
.ba-review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.ba-reviewer-img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.ba-reviewer-info h5 { font-size: 0.95rem; color: #fff; font-weight: 700; margin-bottom: 2px; }
.ba-verified-badge { color: #d870ff; font-size: 0.7rem; display: flex; align-items: center; gap: 4px; font-weight: 600; }
.ba-review-stars { color: var(--primary); font-size: 0.8rem; margin-bottom: 15px; }
.ba-review-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.ba-review-attachment { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; opacity: 0.8; transition: var(--transition); border: 1px solid rgba(255,255,255,0.1); }
.ba-review-attachment:hover { opacity: 1; }
.ba-delete-review-btn {
    position: absolute; top: 15px; right: 15px; background: rgba(68, 68, 68, 0.2);
    color: var(--danger); border: 1px solid var(--danger); width: 30px; height: 30px;
    border-radius: 50%; display: none; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10; transition: 0.3s;
}
.ba-delete-review-btn:hover { background: var(--danger); color: white; }

.main-footer {
    background: #000; border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 0 20px 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-col h4 { color: #fff; margin-bottom: 20px; font-size: 1.1rem; }
.footer-col p { color: #888; font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #888; font-size: 0.9rem; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--primary); padding-left: 5px; }
.footer-logo { height: 60px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 15px; }
.footer-socials a {
    width: 40px; height: 40px; background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: #fff; font-size: 1.1rem;
}
.footer-socials a:hover { background: var(--primary); transform: translateY(-3px); }
.payment-icons { display: flex; gap: 15px; font-size: 2rem; color: #888; margin-top: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; text-align: center; color: #555; font-size: 0.8rem; }

/* Styles para Overlay e Drawers (Cart e Favorites) */
.cart-drawer-overlay, .favorites-drawer-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7); z-index: 2000; opacity: 0; visibility: hidden;
    transition: var(--transition); backdrop-filter: blur(5px);
}
.cart-drawer, .favorites-drawer {
    position: fixed; top: 0; right: -100%; width: 400px; height: 100%;
    background: #0a0a0a; border-left: 1px solid rgba(255,255,255,0.1);
    z-index: 2001; transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex; flex-direction: column;
}
.cart-drawer-overlay.active, .favorites-drawer-overlay.active { opacity: 1; visibility: visible; }
.cart-drawer.active, .favorites-drawer.active { right: 0; box-shadow: -20px 0 50px rgba(0,0,0,0.8); }

.cart-header {
    padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex; justify-content: space-between; align-items: center;
}
.close-cart-btn { background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
.cart-items-container { flex-grow: 1; overflow-y: auto; padding: 20px; }
.cart-footer { padding: 20px; border-top: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.02); }
.cart-total-row { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; }

/* ALTERADO: Botão de Checkout com cor do tema */
.ba-btn-checkout {
    width: 100%; padding: 15px; background: var(--primary); color: #fff;
    border: none; border-radius: 8px; font-weight: 800; text-transform: uppercase;
    cursor: pointer; transition: 0.3s; position: relative; overflow: hidden;
}
.ba-btn-checkout:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 5px 20px rgba(157,0,255,0.3); }

.cart-item { display: flex; gap: 15px; margin-bottom: 15px; background: rgba(255,255,255,0.03); padding: 10px; border-radius: 8px; }
.cart-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 5px; }
.cart-item-info { flex: 1; }
.cart-item-title { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.cart-item-price { color: var(--primary); font-weight: 600; font-size: 0.9rem; }
.cart-remove-btn { color: var(--danger); background: none; border: none; cursor: pointer; font-size: 0.8rem; margin-top: 5px; opacity: 0.7; }
.cart-remove-btn:hover { opacity: 1; text-decoration: underline; }
.empty-cart-msg { text-align: center; color: #555; margin-top: 50px; }
.empty-cart-msg i { font-size: 3rem; margin-bottom: 10px; }

.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); z-index: 3000; display: none;
    align-items: center; justify-content: center; backdrop-filter: blur(8px);
}
.modal-overlay.active { display: flex; animation: fadeIn 0.3s; }
.auth-box {
    background: #0f0f0f; width: 400px; padding: 40px;
    border-radius: 20px; border: 1px solid rgba(255,255,255,0.1);
    position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
.close-modal-btn { position: absolute; top: 15px; right: 20px; background: none; border: none; color: #777; font-size: 1.2rem; cursor: pointer; }
.close-modal-btn:hover { color: #fff; }

.auth-tabs { display: flex; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.auth-tab {
    flex: 1; background: none; border: none; padding: 15px;
    color: #777; font-weight: 700; cursor: pointer; border-bottom: 2px solid transparent;
}
.auth-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.auth-content { display: none; }
.auth-content.active { display: block; animation: fadeIn 0.3s; }
.input-group { position: relative; margin-bottom: 15px; }
.input-group i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #777; }
.input-group input {
    width: 100%; padding: 12px 12px 12px 45px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; outline: none;
}
.input-group input:focus { border-color: var(--primary); }
.auth-submit-btn {
    width: 100%; padding: 12px; background: var(--primary); color: #fff;
    border: none; border-radius: 8px; font-weight: 700; cursor: pointer; margin-top: 10px; position: relative; overflow: hidden;
}
.forgot-pass { display: block; text-align: right; font-size: 0.8rem; color: #777; margin-bottom: 20px; }

.ba-toast-container {
    position: fixed; top: 120px; right: 20px; z-index: 9999;
    display: flex; flex-direction: column; gap: 10px;
}
.ba-toast {
    background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px);
    border: 1px solid var(--border-color); border-left: 4px solid var(--primary);
    padding: 15px 20px; border-radius: 8px; min-width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); display: flex; flex-direction: column;
    animation: slideIn 0.3s ease forwards; position: relative; overflow: hidden;
}
.ba-toast-content { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; font-weight: 600; }
.ba-toast-content i { color: var(--primary); font-size: 1.2rem; }
.ba-toast-progress {
    height: 3px; background: var(--primary); margin-top: 10px; width: 100%;
    transform-origin: left; animation: timer 3s linear forwards;
}

@keyframes popHeart { 0% { transform: scale(1); } 50% { transform: scale(1.3); } 100% { transform: scale(1); } }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes timer { from { transform: scaleX(1); } to { transform: scaleX(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.admin-toggle {
    position: fixed; bottom: 10px; left: 10px;
    background: #222; color: #555; padding: 5px 10px;
    border-radius: 5px; font-size: 10px; cursor: pointer; z-index: 9999;
}
.admin-toggle.active { color: var(--primary); border: 1px solid var(--primary); }

/* ==========================================================================
   7. LOJA COMPLETA (E SEÇÕES INTERCLASSE/FORMANDOS)
   ========================================================================== */
.shop-page-header {
    text-align: center; margin-bottom: 40px;
}

/* Layout Principal */
.shop-container {
    max-width: 1400px; margin: 0 auto; padding: 0 20px;
    position: relative;
}

/* Toolbar (Busca, Filtro Trigger, Ordenação) */
.shop-toolbar-wrapper {
    background: var(--card-glass);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between; 
    min-height: 70px;
}

.shop-search-box {
    flex: 1; min-width: 250px; position: relative; display: none; 
}

.shop-actions { 
    display: flex; 
    gap: 15px; 
    align-items: center;
    flex-grow: 1;
    justify-content: space-between; 
}

.filter-trigger-btn {
    background: rgba(255,255,255,0.05); color: #fff; border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 20px; border-radius: 8px; cursor: pointer; transition: 0.3s;
    display: flex; align-items: center; gap: 8px; font-weight: 600;
}
.filter-trigger-btn:hover { background: var(--primary); border-color: var(--primary); }

.shop-sort-select {
    background: rgba(0,0,0,0.3); color: #fff; border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 15px; border-radius: 8px; outline: none; cursor: pointer;
}
.shop-sort-select option { background: #111; color: #fff; }

/* Active Filters & Results Count */
.shop-active-filters-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; align-items: center; }
.shop-results-text { color: #888; font-size: 0.9rem; margin-right: auto; transition: opacity 0.3s; }
.active-filter-tag {
    background: rgba(157, 0, 255, 0.15); border: 1px solid var(--primary);
    color: #fff; padding: 5px 12px; border-radius: 50px; font-size: 0.85rem;
    display: flex; align-items: center; gap: 8px; cursor: pointer; transition: 0.3s;
}
.active-filter-tag:hover { background: var(--primary); }
.active-filter-tag i { font-size: 0.75rem; opacity: 0.7; }
.clear-all-filters {
    color: var(--text-muted); text-decoration: underline; font-size: 0.85rem;
    cursor: pointer; margin-left: 10px; display: inline-flex; align-items: center; gap: 5px;
}
.clear-all-filters:hover { color: var(--primary); }

/* Sidebar Off-Canvas (Filtros) */
.shop-sidebar-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); z-index: 1040;
    opacity: 0; visibility: hidden; transition: 0.3s;
    backdrop-filter: blur(5px);
}
.shop-sidebar-overlay.active { opacity: 1; visibility: visible; }

.shop-sidebar-panel {
    position: fixed; top: 0; left: -320px; width: 300px; height: 100%;
    background: #0f0f0f; border-right: 1px solid var(--border-color);
    z-index: 1050; transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex; flex-direction: column;
    box-shadow: 10px 0 30px rgba(0,0,0,0.5);
}
.shop-sidebar-panel.active { left: 0; }

.shop-sidebar-header {
    padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex; justify-content: space-between; align-items: center;
}
.shop-sidebar-header h3 { margin: 0; color: #fff; font-size: 1.1rem; text-transform: uppercase; }
.close-filter-btn { background: none; border: none; color: #fff; font-size: 1.2rem; cursor: pointer; }

.shop-sidebar-content { flex: 1; overflow-y: auto; padding: 20px; }

/* Accordion Styles */
.filter-section { margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 20px; }
.filter-section:last-child { border: none; }
.filter-title {
    display: flex; justify-content: space-between; align-items: center;
    color: #fff; font-weight: 700; cursor: pointer; margin-bottom: 15px;
}
.filter-title i { transition: 0.3s; font-size: 0.8rem; }
.filter-section.closed .filter-options { display: none; }
.filter-section.closed .filter-title i { transform: rotate(-90deg); }

.filter-checkbox-item {
    display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
    color: #ccc; cursor: pointer; font-size: 0.9rem; transition: 0.2s;
}
.filter-checkbox-item:hover { color: #fff; }
.filter-checkbox-item input { accent-color: var(--primary); width: 16px; height: 16px; }
.filter-count { margin-left: auto; color: #666; font-size: 0.8rem; }

/* Slider de Preço */
.price-range-inputs { display: flex; gap: 10px; margin-bottom: 15px; }
.price-input-group {
    display: flex; align-items: center; background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 5px 10px;
}
.price-input-group span { color: #777; font-size: 0.8rem; margin-right: 5px; }
.price-input-group input {
    width: 100%; background: none; border: none; color: #fff; outline: none; font-size: 0.9rem;
}

.dual-slider-container { position: relative; height: 5px; margin-top: 10px; margin-bottom: 10px; }
.slider-track-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 5px;
    background: rgba(255,255,255,0.1); border-radius: 5px;
}
.slider-progress {
    position: absolute; top: 0; height: 5px; background: var(--primary); border-radius: 5px;
}
.range-input {
    position: absolute; top: -6px; left: 0; width: 100%; height: 5px;
    appearance: none; background: none; pointer-events: none;
}
.range-input::-webkit-slider-thumb {
    appearance: none; width: 16px; height: 16px; border-radius: 50%;
    background: var(--primary); border: 2px solid #fff; cursor: pointer;
    pointer-events: auto; box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

/* Grid de Produtos */
.shop-products-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px;
    margin-bottom: 50px;
}
/* Animação de entrada dos produtos */
.product-fade-in { animation: slideFadeIn 0.4s ease forwards; }

/* Empty State (Loja e Filtros) */
.shop-empty-state {
    grid-column: 1 / -1; text-align: center; padding: 80px 20px;
    background: rgba(255,255,255,0.02); border-radius: 16px;
    border: 1px dashed rgba(255,255,255,0.1); display: flex;
    flex-direction: column; align-items: center; gap: 20px;
    color: #777;
    animation: fadeIn 0.5s ease;
}

/* Empty State (Geral - Premium) */
.ba-empty-state {
    text-align: center; padding: 60px 20px;
    background: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    display: flex; flex-direction: column; align-items: center; gap: 15px;
    max-width: 600px; margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.ba-empty-state i {
    font-size: 3rem; color: var(--primary); 
    background: rgba(157, 0, 255, 0.1); 
    width: 80px; height: 80px; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 50%; margin-bottom: 10px;
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.2);
}
.ba-empty-state h3 {
    font-size: 1.5rem; color: #fff; font-weight: 700;
}
.ba-empty-state p {
    color: #888; font-size: 1rem; max-width: 400px; line-height: 1.5;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #111 25%, #1a1a1a 50%, #111 75%);
    background-size: 200% 100%; animation: shimmer 1.5s infinite;
    border-radius: 12px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Responsive Grid Logic */
@media (max-width: 1200px) { .shop-products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .shop-products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .shop-products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; } }

/* Paginação */
.shop-pagination {
    display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 40px;
}
.page-btn {
    width: 40px; height: 40px; border-radius: 8px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; font-weight: 700; cursor: pointer; transition: 0.3s;
    display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.page-btn:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.page-btn.active { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 15px var(--primary-glow); }
.page-btn.dots { border: none; background: none; cursor: default; }
.page-btn-text { width: auto; padding: 0 15px; }

/* Ajuste para card de produto na grade */
.env-cat-card { height: 100%; }

/* ==========================================================================
   9. PÁGINA DE PRODUTO ÚNICO
   ========================================================================== */
.prod-layout-grid {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px;
    align-items: flex-start;
}

.prod-gallery-wrapper { position: relative; }
.prod-main-img-container {
    width: 100%; border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1); position: relative;
    background: #000; aspect-ratio: 1/1;
}
.prod-main-img-container img { width: 100%; height: 100%; object-fit: contain; }

.prod-thumbnails { display: flex; gap: 15px; margin-top: 20px; overflow-x: auto; padding-bottom: 5px; }
.prod-thumb {
    width: 80px; height: 80px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden; cursor: pointer; transition: 0.3s; flex-shrink: 0;
}
.prod-thumb:hover, .prod-thumb.active { border-color: var(--primary); box-shadow: 0 0 15px rgba(157, 0, 255, 0.3); }
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; }

.prod-info-wrapper { color: #fff; }
.prod-price-box { display: flex; align-items: center; }

/* Novo Estilo de Arquivos (Boxes) */
.prod-files-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px;
}
.prod-file-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 15px;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    transition: 0.3s;
    cursor: default;
}
.prod-file-box:hover, .prod-file-box.active {
    border-color: var(--primary);
    background: rgba(157, 0, 255, 0.05);
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.15);
}
.prod-file-box i {
    font-size: 1.4rem; color: var(--primary); margin-bottom: 8px;
}
.prod-file-text span {
    display: block; font-weight: 700; color: #fff; font-size: 0.85rem; margin-bottom: 2px;
}
.prod-file-text small {
    color: #888; font-size: 0.7rem; display: block;
}

/* Tabs */
.prod-tabs-nav {
    display: flex; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 30px;
}
.prod-tab-btn {
    background: none; border: none; padding: 15px 30px; color: #777;
    font-size: 1rem; font-weight: 700; cursor: pointer; border-bottom: 2px solid transparent;
    transition: 0.3s;
}
.prod-tab-btn:hover { color: #fff; }
.prod-tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }

.prod-tab-content { display: none; color: #ccc; line-height: 1.6; animation: fadeIn 0.5s; }
.prod-tab-content.active { display: block; }

/* ==========================================================================
   11. CARRINHO E CHECKOUT
   ========================================================================== */
.cart-page-layout {
    display: grid; grid-template-columns: 2fr 1fr; gap: 40px;
}
.cart-table-container {
    overflow-x: auto;
}
.ba-cart-table {
    width: 100%; border-collapse: collapse; min-width: 600px;
}
.ba-cart-table th {
    text-align: left; padding: 15px; border-bottom: 1px solid var(--border-color);
    color: #888; font-weight: 600; text-transform: uppercase; font-size: 0.8rem;
}
.ba-cart-table td {
    padding: 20px 15px; border-bottom: 1px solid rgba(255,255,255,0.03); vertical-align: middle;
}
.ba-cart-table img {
    width: 70px; height: 70px; object-fit: cover; border-radius: 8px;
    border: 1px solid var(--border-color);
}
.cart-prod-name { font-weight: 700; color: #fff; display: block; margin-bottom: 5px; }
.cart-prod-cat { color: #777; font-size: 0.8rem; }
.qty-control {
    display: inline-flex; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px; align-items: center;
}
.qty-btn {
    background: none; border: none; color: #fff; padding: 5px 10px; cursor: pointer;
}
.qty-input {
    width: 30px; background: none; border: none; color: #fff; text-align: center; font-size: 0.9rem;
}

.cart-summary-box {
    background: var(--card-glass); border: 1px solid var(--border-color);
    border-radius: 16px; padding: 30px; position: sticky; top: 150px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.cart-summary-box h3 { color: #fff; margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 15px; color: #ccc; font-size: 0.95rem; }
.cart-summary-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 20px 0; }
.cart-summary-total { display: flex; justify-content: space-between; font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 25px; }
.cart-coupon-area { display: flex; gap: 10px; margin-bottom: 20px; }
.cart-coupon-area input {
    flex: 1; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1);
    padding: 10px; border-radius: 6px; color: #fff; outline: none;
}
.cart-coupon-area button {
    background: rgba(255,255,255,0.1); color: #fff; border: none; padding: 0 15px;
    border-radius: 6px; cursor: pointer; transition: 0.3s; position: relative; overflow: hidden;
}
.cart-coupon-area button:hover { background: var(--primary); }
.secure-checkout-badge {
    margin-top: 20px; text-align: center; color: #888; font-size: 0.8rem;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* ==========================================================================
   12. MINHA CONTA (DASHBOARD)
   ========================================================================== */
.dash-layout {
    display: grid; grid-template-columns: 280px 1fr; gap: 40px;
}
.dash-sidebar {
    background: var(--card-glass); border: 1px solid var(--border-color);
    border-radius: 16px; padding: 25px; height: fit-content;
}
.dash-user-profile {
    display: flex; align-items: center; gap: 15px; margin-bottom: 30px;
    padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.dash-avatar {
    width: 50px; height: 50px; background: rgba(157, 0, 255, 0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.2rem; border: 1px solid var(--primary);
}
.dash-user-info h4 { color: #fff; font-size: 1rem; margin-bottom: 3px; }
.dash-user-info span { color: #888; font-size: 0.8rem; }

.dash-nav { display: flex; flex-direction: column; gap: 5px; }
.dash-nav-btn {
    background: transparent; border: none; color: #ccc; padding: 12px 15px;
    text-align: left; border-radius: 8px; cursor: pointer; transition: 0.3s;
    display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 0.95rem;
}
.dash-nav-btn i { width: 20px; text-align: center; }
.dash-nav-btn:hover, .dash-nav-btn.active { background: rgba(157, 0, 255, 0.1); color: #fff; }
.dash-nav-btn.active { border-left: 3px solid var(--primary); border-radius: 4px 8px 8px 4px; }
.dash-nav-btn.logout { color: var(--danger); margin-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }
.dash-nav-btn.logout:hover { background: rgba(68, 68, 68, 0.5); }

.dash-tab-content { display: none; animation: fadeIn 0.4s; }
.dash-tab-content.active { display: block; }
.dash-tab-title { font-size: 1.5rem; color: #fff; margin-bottom: 25px; font-weight: 700; }

.dash-orders-list { display: flex; flex-direction: column; gap: 15px; }
.dash-order-card {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 20px; display: flex; align-items: center; justify-content: space-between;
    transition: 0.3s;
}
.dash-order-card:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.dash-order-header div { display: flex; flex-direction: column; gap: 5px; }
.order-id { color: #fff; font-weight: 700; }
.order-date { color: #777; font-size: 0.8rem; }
/* ALTERADO: Status do pedido com cores do tema */
.order-status {
    padding: 5px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
}
.order-status.completed { background: rgba(157, 0, 255, 0.15); color: #fff; border: 1px solid var(--primary); }
.dash-order-body { flex: 1; margin: 0 40px; }
.order-items-text { color: #ccc; font-size: 0.9rem; margin-bottom: 5px; }
.order-total { color: #fff; font-weight: 700; }
.dash-action-btn {
    background: rgba(255,255,255,0.05); color: #fff; border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 16px; border-radius: 6px; cursor: pointer; transition: 0.3s; font-size: 0.85rem; position: relative; overflow: hidden;
}
.dash-action-btn:hover { background: var(--primary); border-color: var(--primary); }

.dash-downloads-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.dash-download-item {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 15px; display: flex; gap: 15px; align-items: center;
}
.dash-download-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }
.dash-dl-info h4 { color: #fff; font-size: 1rem; margin-bottom: 5px; }
.dash-dl-meta { color: #777; font-size: 0.8rem; margin-bottom: 10px; }

.dash-form { max-width: 600px; }
.dash-form .input-group label { display: block; color: #ccc; font-size: 0.9rem; margin-bottom: 8px; }
.dash-input {
    width: 100%; padding: 12px; background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; outline: none;
    transition: 0.3s;
}
.dash-input:focus { border-color: var(--primary); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ==========================================================================
   13. RESPONSIVO / MEDIA QUERIES GERAIS
   ========================================================================== */
.mobile-only { display: none; }

@media (max-width: 1024px) {
    /* Esconde Header PC */
    #desktopHeader { display: none !important; }
    
    /* Mostra Header Mobile */
    .mobile-header-bar { display: flex; }
    
    /* Ajustes Gerais */
    .hero h2 { font-size: 40px; }
    .ba-features-grid { grid-template-columns: repeat(2, 1fr); }
    .ba-reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .ba-reputation-dashboard { flex-direction: column; gap: 30px; text-align: center; }
    .sys-marketing-grid, .sys-packs-grid { grid-template-columns: 1fr; }
    .sys-art-grid { grid-template-columns: repeat(3, 1fr); }
    .sys-review-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    /* Shop Responsivo (Atualizado com o novo design) */
    .shop-products-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .shop-toolbar-wrapper { flex-direction: column; align-items: stretch; gap: 15px; }
    .shop-actions { justify-content: space-between; }
    .shop-search-box { width: 100%; display: none !important; } /* Garantindo que suma */

    /* Produto Único Responsivo */
    .prod-layout-grid { grid-template-columns: 1fr; gap: 30px; }

    /* Cart Responsivo */
    .cart-page-layout { grid-template-columns: 1fr; }
    .cart-summary-box { position: static; margin-top: 30px; }
    
    /* Dashboard Responsivo */
    .dash-layout { grid-template-columns: 1fr; }
    .dash-sidebar { margin-bottom: 30px; }
}

@media (max-width: 600px) {
    .ba-timer-container { gap: 10px; }
    .ba-timer-box { width: 90px; padding: 15px 5px; }
    .ba-time-number { font-size: 2rem; }
    .ba-separator { display: none; }
    .ba-features-grid { grid-template-columns: 1fr; }
    .ba-slider-wrapper { padding: 40px 15px; }
    .ba-arrow { display: none; }
    .ba-btn-view-all { width: 100%; }
    .sys-art-grid { grid-template-columns: repeat(2, 1fr); padding: 15px; }
    .sys-catalog-header { flex-direction: column; gap: 15px; align-items: flex-start; }
    .sys-checkout-details { flex-direction: column; align-items: flex-start; gap: 20px; }
    
    .footer-grid { grid-template-columns: 1fr; }
    .cart-drawer, .favorites-drawer { width: 100%; }
    
    .shop-products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; } /* Mobile com 2 colunas */

    /* Produto Único Mobile */
    .prod-tabs-nav { overflow-x: auto; padding-bottom: 5px; }
    .prod-tab-btn { padding: 15px 20px; white-space: nowrap; }
    .prod-files-grid { grid-template-columns: 1fr; } /* Caixas de arquivo em 1 coluna no mobile */

    /* Dashboard Mobile */
    .dash-order-card { flex-direction: column; align-items: flex-start; gap: 15px; }
    .dash-order-body { margin: 0; width: 100%; }
    .dash-downloads-grid { grid-template-columns: 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   14. PÁGINA: PERSONALIZADO (NOVA SEÇÃO)
   ========================================================================== */

/* Wrapper Principal da Página */
#customPageContent {
    display: none; /* Controlado via JS */
    width: 100%;
    background-color: var(--bg);
    animation: fadeIn 0.5s ease;
}

/* --- 1. Hero Section Personalizado --- */
.cust-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a002b 0%, #050505 80%);
    overflow: hidden;
    padding: 0 20px;
}

.cust-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://blackartes.com/wp-content/uploads/2023/10/mockup-camisa-interclasse-lobo-2-300x300.jpg'); /* Imagem de fundo ilustrativa */
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: blur(3px);
    z-index: 0;
}

.cust-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.cust-hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(157, 0, 255, 0.4);
}

.cust-hero-title span {
    color: var(--primary);
    display: block;
}

.cust-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* --- Seções Gerais --- */
.cust-section {
    padding: 100px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cust-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.cust-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #fff;
}

.cust-section-title span {
    color: var(--primary);
}

.cust-section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- 2. Galeria de Trabalhos (Grid Masonry) --- */
.cust-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cust-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
}

.cust-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cust-gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: 0.3s ease;
}

.cust-gallery-item:hover img {
    transform: scale(1.1);
}

.cust-gallery-item:hover .cust-gallery-overlay {
    opacity: 1;
}

.cust-gallery-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    transform: translateY(10px);
    transition: 0.3s;
}

.cust-gallery-tag {
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    transform: translateY(10px);
    transition: 0.3s delay 0.1s;
}

.cust-gallery-item:hover .cust-gallery-title,
.cust-gallery-item:hover .cust-gallery-tag {
    transform: translateY(0);
}

/* Modal da Galeria */
.cust-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 5000;
    display: none; /* JS Toggle */
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.cust-modal.active {
    display: flex;
    animation: fadeIn 0.3s;
}

.cust-modal-content {
    max-width: 900px;
    max-height: 90vh;
    position: relative;
}

.cust-modal-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}

.cust-close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.cust-close-modal:hover { color: var(--primary); }

/* --- 3. Depoimentos (Testimonials) --- */
.cust-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cust-test-card {
    background: var(--card-glass);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    transition: 0.3s;
}

.cust-test-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cust-test-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cust-test-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.cust-test-info h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 3px;
}

.cust-test-stars {
    color: #ffd700;
    font-size: 0.8rem;
}

.cust-test-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

/* --- 4. Formulário de Solicitação --- */
.cust-form-wrapper {
    background: var(--card-glass);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.cust-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.cust-input-group label {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.cust-input, .cust-textarea, .cust-select {
    width: 100%;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.cust-input:focus, .cust-textarea:focus, .cust-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.2);
    background: rgba(0,0,0,0.6);
}

.cust-textarea {
    resize: vertical;
    min-height: 120px;
}

.cust-file-upload {
    border: 2px dashed rgba(255,255,255,0.2);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    color: #888;
    transition: 0.3s;
    margin-bottom: 20px;
}

.cust-file-upload:hover {
    border-color: var(--primary);
    color: #fff;
    background: rgba(157, 0, 255, 0.05);
}

/* --- 5. Como Funciona (Processo) --- */
.cust-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cust-step-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: 0.3s;
}

.cust-step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(157, 0, 255, 0.3);
}

.cust-step-number {
    position: absolute;
    top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--bg);
    border: 1px solid var(--primary);
    color: var(--primary);
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
}

.cust-step-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--primary-glow);
}

.cust-step-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cust-step-desc {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- 6. Exemplos / Inspiração --- */
.cust-inspo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cust-inspo-card {
    position: relative;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
}

.cust-inspo-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: 0.5s;
}

.cust-inspo-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.5);
}

.cust-inspo-content {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 20px;
    background: linear-gradient(to top, #000, transparent);
}

.cust-inspo-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

.cust-inspo-count {
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- 7. Call to Action Final --- */
.cust-cta-section {
    padding: 120px 20px;
    text-align: center;
    background: linear-gradient(135deg, #0f001a 0%, #290042 100%);
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.cust-cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(50px);
}

.cust-cta-content {
    position: relative; z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cust-cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
}

.cust-cta-desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.cust-btn-large {
    padding: 20px 60px;
    font-size: 1.2rem;
    background: #fff;
    color: var(--primary);
    border: none;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cust-btn-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: #f0f0f0;
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
    .cust-hero { height: auto; padding: 120px 20px 80px 20px; }
    .cust-hero-title { font-size: 3rem; }
    
    .cust-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .cust-process-grid { grid-template-columns: repeat(2, 1fr); }
    .cust-inspo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .cust-hero-title { font-size: 2.5rem; }
    .cust-section-title { font-size: 2rem; }
    
    .cust-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .cust-testimonials-grid { grid-template-columns: 1fr; }
    .cust-process-grid { grid-template-columns: 1fr; }
    .cust-inspo-grid { grid-template-columns: 1fr; }
    
    .cust-form-wrapper { padding: 30px 20px; }
    .cust-form-row { grid-template-columns: 1fr; }
    
    .cust-cta-title { font-size: 2rem; }
    .cust-btn-large { width: 100%; justify-content: center; }
}