/* 
================================================================
VITAL ELETRO v7.0 - TITAN MAX STYLE SHEET
Desenvolvido para Performance Visual Extrema
================================================================
*/

/* --- 1. VARIÁVEIS DE DESIGN --- */
:root {
    --bg-deep: #020202;
    --bg-main: #080808;
    --bg-card: #121212;
    --primary: #ff0000;
    --primary-glow: rgba(255, 0, 0, 0.6);
    --accent: #ff4d4d;
    --text-pure: #ffffff;
    --text-dim: #b0b0b0;
    --text-gray: #666666;
    --border-dim: #222222;
    --transition-fast: all 0.2s ease;
    --transition-mid: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    --led-red: 0 0 15px rgba(255, 0, 0, 0.4);
    --led-strong: 0 0 25px rgba(255, 0, 0, 0.8);
}

/* --- 2. RESET E BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg-deep);
    color: var(--text-pure);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, .logo {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* --- 3. INTRO ANIMATION SCREEN --- */
#intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s var(--transition-mid);
}

.intro-content {
    text-align: center;
}

.intro-logo {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 12px;
    color: #fff;
    text-shadow: var(--led-strong);
    margin-bottom: 10px;
}

.intro-logo span {
    color: var(--primary);
}

.intro-line {
    width: 0;
    height: 2px;
    background: var(--primary);
    margin: 0 auto;
    box-shadow: var(--led-red);
    animation: expandLine 1.5s 0.5s forwards;
}

.system-loader {
    width: 300px;
    height: 4px;
    background: #111;
    margin: 30px auto;
    border-radius: 10px;
    overflow: hidden;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: var(--primary);
    box-shadow: var(--led-red);
    animation: bootSequence 2.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.status-codes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    font-family: 'Rajdhani';
    font-size: 0.7rem;
    color: #333;
}

.intro-subtitle {
    font-family: 'Rajdhani';
    font-size: 0.8rem;
    color: #555;
    margin-top: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.intro-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.stop-scroll {
    overflow: hidden;
}

/* --- 4. TOP MARQUEE --- */
.top-marquee {
    background: #000;
    border-bottom: 1px solid #111;
    color: #fff;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 999;
}

.marquee-content {
    display: inline-block;
    animation: marqueeMove 30s linear infinite;
}

.marquee-content span {
    font-family: 'Rajdhani';
    font-weight: 700;
    font-size: 0.75rem;
    margin-right: 100px;
    letter-spacing: 2px;
}

.marquee-content span i {
    color: var(--primary);
    margin-right: 10px;
}

/* --- 5. NAVBAR PREMIUM --- */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: rgba(2, 2, 2, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid #1a1a1a;
    transition: var(--transition-mid);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
}

.logo span {
    color: var(--primary);
    text-shadow: var(--led-red);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-family: 'Rajdhani';
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-mid);
    box-shadow: var(--led-red);
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: var(--led-red);
}

.nav-links a:hover::after {
    width: 100%;
}

.vip-link a {
    color: var(--primary);
    animation: neonFlicker 3s infinite;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.search-bar {
    position: relative;
}

.search-bar input {
    background: #111;
    border: 1px solid #222;
    border-radius: 6px;
    padding: 10px 15px 10px 40px;
    color: #fff;
    width: 250px;
    font-family: 'Inter';
    font-size: 0.85rem;
    transition: var(--transition-mid);
}

.search-bar input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(255,0,0,0.2);
    width: 300px;
}

.search-bar i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 0.9rem;
}

.cart-icon {
    cursor: pointer;
    position: relative;
    font-size: 1.4rem;
    color: var(--text-pure);
    transition: var(--transition-fast);
}

.cart-icon:hover {
    color: var(--primary);
    transform: scale(1.1);
}

#cart-count {
    position: absolute;
    top: -10px;
    right: -12px;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-family: 'Orbitron';
    padding: 3px 7px;
    border-radius: 50%;
    box-shadow: var(--led-red);
}

/* --- 6. HERO SLIDER --- */
.hero-slider {
    height: 85vh;
    position: relative;
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.4) contrast(1.1);
    transform: scale(1.1);
    transition: transform 8s linear;
}

.slide.active img {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, transparent 60%);
    z-index: -1;
}

.slide-text {
    padding: 0 10%;
    max-width: 1000px;
    position: relative;
    z-index: 10;
}

.slide-text span {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 800;
    display: block;
    margin-bottom: 20px;
}

.slide-text h1 {
    font-size: 5.5rem;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.slide-text h1 span {
    color: var(--primary);
    text-shadow: var(--led-strong);
}

.slide-text p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-container {
    display: flex;
    gap: 20px;
}

.glow-btn {
    background: var(--primary);
    color: #fff;
    padding: 20px 50px;
    border-radius: 4px;
    font-weight: 900;
    font-family: 'Orbitron';
    font-size: 0.8rem;
    box-shadow: var(--led-red);
    transition: var(--transition-mid);
}

.glow-btn:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 30px #fff;
    transform: translateY(-5px);
}

.btn-outline {
    padding: 20px 50px;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 900;
    font-family: 'Orbitron';
    font-size: 0.8rem;
    border-radius: 4px;
    transition: var(--transition-mid);
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* --- 7. BRAND STRIP --- */
.brand-strip {
    background: var(--bg-main);
    padding: 50px 0;
    border-bottom: 1px solid #111;
}

.brand-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    opacity: 0.2;
    filter: grayscale(1);
    transition: var(--transition-mid);
}

.brand-wrapper:hover {
    opacity: 0.8;
    filter: grayscale(0);
}

.brand-item {
    font-family: 'Orbitron';
    font-size: 1.5rem;
    font-weight: 900;
    color: #888;
}

.brand-item i {
    font-size: 2rem;
    margin-right: 15px;
}

/* --- 8. SPOTLIGHT SECTION --- */
.spotlight-section {
    padding: 120px 0;
    background: #000;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.spotlight-img {
    position: relative;
}

.led-frame {
    padding: 10px;
    background: #111;
    border: 1px solid #222;
    position: relative;
}

.led-frame::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--primary);
    z-index: -1;
    filter: blur(10px);
    opacity: 0.3;
}

.spotlight-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.spotlight-text .pre-title {
    color: var(--primary);
    font-weight: 900;
    letter-spacing: 5px;
    font-size: 0.8rem;
}

.spotlight-text h2 {
    font-size: 3.5rem;
    margin: 20px 0;
}

.spotlight-text h2 span {
    color: var(--primary);
    text-shadow: var(--led-red);
}

.spotlight-text p {
    color: var(--text-dim);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.specs-list {
    margin-bottom: 40px;
}

.specs-list li {
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    color: #fff;
}

.specs-list li i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
}

.btn-buy-now {
    display: inline-block;
    padding: 22px 60px;
    background: var(--primary);
    color: #fff;
    font-family: 'Orbitron';
    font-weight: 900;
    border-radius: 4px;
    box-shadow: var(--led-red);
    transition: var(--transition-mid);
}

.btn-buy-now:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255,0,0,0.4);
}

/* --- 9. FOCUS CAROUSEL --- */
.focus-carousel-section {
    padding: 100px 0;
    background: var(--bg-deep);
    text-align: center;
}

.carousel-title {
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.carousel-title span {
    color: var(--primary);
}

.carousel-wrapper {
    overflow: hidden;
    padding: 50px 0;
}

.carousel-track {
    display: flex;
    justify-content: center;
    gap: 40px;
    transition: var(--transition-mid);
}

.focus-card {
    width: 350px;
    height: 450px;
    flex-shrink: 0;
    opacity: 0.3;
    transform: scale(0.85);
    transition: var(--transition-mid);
    cursor: pointer;
}

.card-inner {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.focus-card img {
    max-height: 250px;
    object-fit: contain;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.focus-card.active {
    opacity: 1;
    transform: scale(1.1);
    z-index: 10;
}

.focus-card.active .card-inner {
    border-color: var(--primary);
    box-shadow: 0 0 50px rgba(255,0,0,0.15);
}

.card-title {
    font-family: 'Orbitron';
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
}

/* --- 10. CATALOG SECTION --- */
.catalog-section {
    padding: 100px 5%;
    background: var(--bg-main);
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 70px;
    border-bottom: 1px solid #111;
    padding-bottom: 30px;
}

.header-info h2 {
    font-size: 3rem;
}

.header-info p {
    color: #555;
    margin-top: 10px;
}

.filter-pills {
    display: flex;
    gap: 15px;
}

.pill {
    background: transparent;
    border: 1px solid #222;
    padding: 12px 30px;
    border-radius: 50px;
    color: #888;
    font-family: 'Rajdhani';
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}

.pill.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--led-red);
}

.pill:hover:not(.active) {
    border-color: var(--primary);
    color: #fff;
}

/* --- 11. PRODUCT GRID --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--bg-card);
    padding: 30px;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    transition: var(--transition-mid);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.product-card img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    margin-bottom: 25px;
    transition: var(--transition-mid);
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
    height: 40px;
    overflow: hidden;
}

.product-card p {
    color: var(--primary);
    font-family: 'Rajdhani';
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.price-tag {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
    font-family: 'Rajdhani';
}

.btn-buy {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 2px solid var(--primary);
    color: #fff;
    font-family: 'Orbitron';
    font-weight: 900;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-mid);
    border-radius: 4px;
}

.btn-buy:hover {
    background: var(--primary);
    box-shadow: var(--led-red);
}

/* --- 12. NEWSLETTER --- */
.newsletter {
    background: #000;
    padding: 100px 0;
    border-top: 1px solid #111;
}

.news-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-text h3 {
    font-size: 2.5rem;
}

.news-text p {
    color: #666;
}

.news-form {
    display: flex;
    gap: 15px;
}

.news-form input {
    background: #111;
    border: 1px solid #222;
    padding: 18px 25px;
    width: 400px;
    color: #fff;
    border-radius: 4px;
}

.news-form button {
    background: var(--primary);
    border: none;
    padding: 0 40px;
    color: #fff;
    font-weight: 900;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: var(--led-red);
}

/* --- 13. CART SIDEBAR --- */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -500px;
    width: 450px;
    height: 100vh;
    background: #0a0a0a;
    z-index: 3000;
    box-shadow: -20px 0 50px rgba(0,0,0,0.8);
    transition: var(--transition-mid);
    display: flex;
    flex-direction: column;
    padding: 40px;
    border-left: 2px solid var(--primary);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
    padding-bottom: 25px;
}

.cart-header h3 {
    font-size: 1.5rem;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 30px 0;
}

.cart-item {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #111;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #1a1a1a;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.cart-info h4 {
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.cart-info strong {
    color: var(--primary);
    font-family: 'Rajdhani';
    font-size: 1.1rem;
}

.cart-footer {
    border-top: 1px solid #222;
    padding-top: 30px;
}

.total-info {
    display: flex;
    justify-content: space-between;
    font-weight: 900;
    font-size: 1.5rem;
    font-family: 'Orbitron';
    margin-bottom: 15px;
}

.checkout-btn {
    width: 100%;
    padding: 25px;
    background: var(--primary);
    color: #fff;
    border: none;
    font-family: 'Orbitron';
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 6px;
    box-shadow: var(--led-red);
    transition: var(--transition-mid);
}

.checkout-btn:hover {
    background: #25D366;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

/* --- 14. FOOTER --- */
.main-footer {
    background: #000;
    padding: 100px 5% 40px;
    border-top: 3px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.footer-col a {
    display: block;
    color: #888;
    margin-bottom: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #fff;
    padding-left: 10px;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-icons a {
    font-size: 1.5rem;
    color: #333;
}

.social-icons a:hover {
    color: var(--primary);
}

.pay-icons {
    display: flex;
    gap: 20px;
    font-size: 2rem;
    color: #222;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #111;
    padding-top: 40px;
    color: #333;
    font-size: 0.8rem;
}

/* --- 15. ANIMAÇÕES --- */
@keyframes expandLine {
    to { width: 150px; }
}

@keyframes bootSequence {
    0% { width: 0%; }
    40% { width: 30%; }
    70% { width: 85%; }
    100% { width: 100%; }
}

@keyframes marqueeMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes neonFlicker {
    0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
        opacity: 1;
        text-shadow: var(--led-red);
    }
    20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
        opacity: 0.4;
        text-shadow: none;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- 16. RESPONSIVIDADE --- */
@media (max-width: 1200px) {
    .slide-text h1 { font-size: 4rem; }
    .news-content { flex-direction: column; text-align: center; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links, .search-bar { display: none; }
    .spotlight-grid { grid-template-columns: 1fr; }
    .slide-text h1 { font-size: 2.5rem; }
    .cart-sidebar { width: 100%; right: -100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* --- FIM DO CSS (720 LINHAS ESTIMADAS) --- */
/* Estilos Base da Propaganda */
.grid-propaganda-led {
    background-color: #000;
    padding: 60px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

.container-propaganda {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4px; /* Linha divisória fina */
    max-width: 100%;
}

.card-nexus {
    position: relative;
    height: 650px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #1a1a1a;
}

/* LED de borda no hover */
.card-nexus::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 2px solid transparent;
    z-index: 5;
    transition: 0.3s;
    pointer-events: none;
}

.card-nexus:hover::before {
    border-color: #ff0000;
    box-shadow: inset 0 0 20px rgba(255, 0, 0, 0.4), 0 0 20px rgba(255, 0, 0, 0.4);
}

/* Imagem com efeito Zoom */
.bg-image-wrapper {
    width: 100%;
    height: 100%;
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.bg-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: 0.5s;
}

.card-nexus:hover .bg-image-wrapper {
    transform: scale(1.1);
}

.card-nexus:hover img {
    filter: brightness(0.9);
}

/* Overlay igual da imagem */
.overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 40%, transparent 100%);
    z-index: 2;
}

/* Conteúdo */
.content-nexus {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 3;
    color: #fff;
}

.led-text-red {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.card-nexus:hover .led-text-red {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

.content-nexus p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 90%;
}

/* Botão Explorar com efeito LED */
.btn-explorar {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 8px;
}

.btn-explorar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: #ff0000;
    box-shadow: 0 0 10px #ff0000;
    transition: width 0.4s ease;
}

.card-nexus:hover .btn-explorar::after {
    width: 100%;
}

/* Animação de Revelação ao Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .card-nexus { height: 450px; }
    .led-text-red { font-size: 1.4rem; }
}
/* ================================================================
   SISTEMA DE RESPONSIVIDADE - AJUSTE CELULAR
   ================================================================ */

@media (max-width: 768px) {
    /* Ajuste de fontes globais */
    html { font-size: 14px; }

    /* Impedir scroll horizontal */
    body { overflow-x: hidden; width: 100%; }

    /* NAVBAR MOBILE */
    .menu-toggle {
        display: block !important;
        font-size: 1.5rem;
        color: var(--primary);
        cursor: pointer;
        order: -1; /* Fica à esquerda */
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%; /* Escondido fora da tela */
        width: 80%;
        height: 100vh;
        background: var(--bg-deep);
        flex-direction: column;
        padding: 80px 20px;
        transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1999;
        border-right: 2px solid var(--primary);
        display: flex !important; /* Força flex mesmo oculta */
    }

    .nav-links.active {
        left: 0; /* Desliza para dentro */
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #111;
        margin: 0;
    }

    .nav-links a {
        padding: 20px;
        display: block;
        font-size: 1.1rem;
    }

    .d-none-mobile { display: none !important; }

    /* HERO SLIDER (BANNER) */
    .hero-slider { height: 60vh; }
    .slide-text h1 {
        font-size: 2.2rem !important; /* Diminui título gigante */
        line-height: 1.1;
    }
    .slide-text p { font-size: 0.9rem; margin-bottom: 20px; }
    .btn-container { flex-direction: column; gap: 10px; }
    .glow-btn, .btn-outline { padding: 15px 25px; width: 100%; text-align: center; }

    /* GRID PROPAGANDA (OS 3 CARDS) */
    .container-propaganda {
        grid-template-columns: 1fr; /* Empilha no celular */
        gap: 10px;
    }
    .card-nexus {
        height: 350px !important; /* Diminui altura da imagem */
    }
    .led-text-red { font-size: 1.3rem; }

    /* SPOTLIGHT (DESTAQUE) */
    .spotlight-grid {
        grid-template-columns: 1fr; /* Imagem em cima, texto embaixo */
        gap: 30px;
        padding: 0 15px;
    }
    .spotlight-img img { height: 300px; }
    .spotlight-text h2 { font-size: 2.2rem; }

    /* CATALOGO DE PRODUTOS */
    .catalog-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .filter-pills {
        width: 100%;
        overflow-x: auto; /* Permite rolar os filtros pro lado */
        white-space: nowrap;
        padding-bottom: 10px;
        justify-content: flex-start;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 produtos por linha no celular */
        gap: 10px;
        padding: 0 10px;
    }
    .product-card { padding: 15px; }
    .product-card img { height: 160px; }
    .product-card h3 { font-size: 0.8rem; height: 35px; }
    .price-tag { font-size: 1.2rem; }
    .btn-buy { font-size: 0.6rem; padding: 10px 5px; }

    /* CARRINHO */
    .cart-sidebar {
        width: 100%; /* Ocupa a tela toda */
        right: -100%;
    }
    .cart-sidebar.active { right: 0; }
}

/* Ajustes gerais de angulação e bordas */
img {
    max-width: 100%;
    height: auto;
    border-radius: 0; /* Mantém tudo "angulado" como pedido */
}
/* --- CATALOG SECTION REFEITO --- */
.catalog-section {
    padding: 60px 0;
    background: var(--bg-main);
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Alinha o texto com os botões no PC */
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}

.header-text h2 {
    font-size: 2.5rem; /* Menor no PC */
    line-height: 1;
    margin: 0;
}

.header-text p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 10px;
}

/* --- FILTROS (PILLS) MENORES --- */
.filter-wrapper {
    overflow-x: auto; /* Scroll lateral se não couber */
    scrollbar-width: none; /* Esconde barra no Firefox */
}
.filter-wrapper::-webkit-scrollbar { display: none; } /* Esconde barra no Chrome */

.filter-pills {
    display: flex;
    gap: 10px;
}

.pill {
    background: transparent;
    border: 1px solid #222;
    padding: 8px 20px; /* Bem mais fino */
    border-radius: 4px; /* Mais angulado */
    color: var(--text-dim);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.75rem; /* Texto pequeno e elegante */
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pill.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

/* --- RESPONSIVIDADE CELULAR (O que você pediu) --- */
@media (max-width: 768px) {
    .catalog-header {
        flex-direction: column; /* Um em cima do outro */
        align-items: center; /* Centraliza tudo */
        text-align: center;
    }

    .header-text h2 {
        font-size: 1.8rem; /* Título menor para caber em uma linha */
        letter-spacing: 2px;
        margin-bottom: 5px;
    }

    .header-text p {
        font-size: 0.75rem;
        margin-bottom: 20px;
    }

    .filter-wrapper {
        width: 100vw; /* Ocupa a largura total para o scroll */
        padding: 0 20px;
        display: flex;
        justify-content: center;
    }

    .filter-pills {
        gap: 8px;
    }

    .pill {
        padding: 6px 15px; /* Botões menores ainda no celular */
        font-size: 0.65rem;
    }

    /* Produtos: 2 por linha para ficar organizado */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 15px;
    }

    .product-card {
        padding: 10px !important;
    }

    .product-card img {
        height: 140px !important;
    }

    .product-card h3 {
        font-size: 0.7rem !important;
    }

    .price-tag {
        font-size: 1rem !important;
    }
}
.py-header {
  background-color: #000000;
  padding: 25px 15px 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-area h1 {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 5px;
  color: #ffffff;
  margin: 0 0 22px 0;
  text-transform: uppercase;
}

.filter-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);   /* 4 botões por linha */
  gap: 10px;
  max-width: 100%;
  margin: 0 auto;
}

.pill {
  background-color: rgba(255, 255, 255, 0.08);
  color: white;
  border: none;
  padding: 14px 12px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
}

.pill:hover {
  background-color: rgba(255, 255, 255, 0.18);
}

.pill.active {
  background-color: #ff0000;
  color: white;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

/* Responsivo - No celular fica 2 colunas */
@media (max-width: 640px) {
  .filter-pills {
    grid-template-columns: repeat(2, 1fr);   /* 2 botões por linha no celular */
    gap: 9px;
  }
  
  .logo-area h1 {
    font-size: 2.4rem;
  }
  
  .pill {
    padding: 13px 10px;
    font-size: 0.85rem;
  }
}
@media (max-width: 768px) {
    .thumb-list {
        display: none !important;
    }
}
.fake-section {
    display: none !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
}

.showcase {
  min-height: 100vh;
  padding: 20px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 0, 0, 0.15), transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(255, 0, 0, 0.12), transparent 24%),
    linear-gradient(180deg, #090909 0%, #030303 100%);
}

.showcase-wrap {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 18px;
  min-height: calc(100vh - 40px);
}

.slider-box {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 0, 0, 0.16);
  background: #0b0b0b;
  box-shadow:
    0 0 30px rgba(255, 0, 0, 0.08),
    inset 0 0 30px rgba(255, 255, 255, 0.02);
}

.slider-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  box-shadow: inset 0 0 40px rgba(255, 0, 0, 0.05);
  z-index: 4;
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s ease, transform 1.1s ease;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) contrast(1.08);
  display: block;
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.28) 55%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(255, 0, 0, 0.05), rgba(0, 0, 0, 0.20));
  pointer-events: none;
}

.slider-content {
  position: absolute;
  left: 55px;
  bottom: 55px;
  z-index: 5;
  max-width: 580px;
}

.badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff4b4b;
  border: 1px solid rgba(255, 0, 0, 0.25);
  background: rgba(255, 0, 0, 0.09);
  font-weight: 700;
}

.slider-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.slider-content p {
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
  max-width: 520px;
}

.buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  min-width: 160px;
  padding: 15px 24px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #ff0000, #a80000);
  box-shadow: 0 0 22px rgba(255, 0, 0, 0.22);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.35);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 0, 0, 0.45);
  color: #ff5555;
}

.progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  height: 5px;
  background: rgba(255, 255, 255, 0.07);
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ff0000, #ff5b5b);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.55);
}

.side-panel {
  min-height: 760px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 0, 0, 0.12);
  padding: 18px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.05);
}

.side-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff4141;
  margin-bottom: 14px;
}

.preview-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 0, 0, 0.14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.06);
}

.preview-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preview-loading {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  height: 6px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  overflow: hidden;
}

.preview-loading-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ff0000, #ff6868);
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.5);
}

.preview-text {
  padding: 16px;
}

.preview-label {
  display: block;
  font-size: 0.78rem;
  color: #ff5c5c;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.preview-text h3 {
  font-size: 1.15rem;
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
}

.thumb-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thumb-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
  transition: 0.2s ease;
}

.thumb-item:hover,
.thumb-item.active {
  border-color: rgba(255, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.08);
}

.thumb-item img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.thumb-item span {
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
}

.fake-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080808;
  border-top: 1px solid rgba(255, 0, 0, 0.08);
}

.fake-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
}

@media (max-width: 1200px) {
  .showcase-wrap {
    grid-template-columns: 1fr;
  }

  .side-panel {
    min-height: auto;
  }

  .thumb-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .showcase {
    padding: 14px;
  }

  .slider-box {
    min-height: 560px;
  }

  .slider-content {
    left: 20px;
    right: 20px;
    bottom: 24px;
    max-width: none;
  }

  .slider-content p {
    font-size: 0.96rem;
    margin-bottom: 20px;
  }

  .buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-width: 100%;
  }

  .preview-image {
    height: 180px;
  }

  .thumb-list {
    grid-template-columns: 1fr;
  }
}
.side-panel {
  background: #000; /* antes era cinza */
}

.preview-card {
  background: #000;
}

.thumb-item {
  background: #000;
}
.gamer-slider-section {
  width: 100%;
  padding: 20px 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

.gamer-slider-section * {
  box-sizing: border-box;
}

.gamer-slider-wrap {
  width: min(1400px, 95%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: stretch;
}

.gamer-slider-main {
  position: relative;
  min-height: 580px;
  height: 580px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 0, 0, 0.16);
  background: #000;
  box-shadow:
    0 0 30px rgba(255, 0, 0, 0.08),
    inset 0 0 30px rgba(255, 255, 255, 0.02);
}

.gamer-slider-main::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  box-shadow: inset 0 0 40px rgba(255, 0, 0, 0.05);
  z-index: 4;
}

.gamer-slider-slides {
  position: absolute;
  inset: 0;
}

.gamer-slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.7s ease, transform 1s ease;
  z-index: 1;
}

.gamer-slider-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.gamer-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.42) contrast(1.08);
}

.gamer-slider-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.28) 55%, rgba(0,0,0,0.72) 100%),
    linear-gradient(180deg, rgba(255,0,0,0.05), rgba(0,0,0,0.20));
}

.gamer-slider-content {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 5;
  max-width: 560px;
}

.gamer-slider-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff4b4b;
  border: 1px solid rgba(255, 0, 0, 0.25);
  background: rgba(255, 0, 0, 0.09);
  font-weight: 700;
}

.gamer-slider-title {
  margin: 0 0 16px;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}

.gamer-slider-desc {
  margin: 0 0 26px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.84);
}

.gamer-slider-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gamer-slider-btn {
  min-width: 160px;
  padding: 15px 24px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.gamer-slider-btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #ff0000, #a80000);
  box-shadow: 0 0 22px rgba(255, 0, 0, 0.22);
}

.gamer-slider-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.35);
}

.gamer-slider-btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.gamer-slider-btn-secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 0, 0, 0.45);
  color: #ff5555;
}

.gamer-slider-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  height: 5px;
  background: rgba(255,255,255,0.07);
}

.gamer-slider-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ff0000, #ff5b5b);
  box-shadow: 0 0 18px rgba(255,0,0,0.55);
}

.gamer-slider-side {
  min-height: 580px;
  border-radius: 22px;
  background: #000;
  border: 1px solid rgba(255, 0, 0, 0.12);
  padding: 18px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.05);
}

.gamer-slider-side-title {
  margin-bottom: 14px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff4141;
}

.gamer-slider-preview-card {
  background: #000;
  border: 1px solid rgba(255,0,0,0.14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255,0,0,0.06);
}

.gamer-slider-preview-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #000;
}

.gamer-slider-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gamer-slider-preview-loading {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  height: 6px;
  background: rgba(255,255,255,0.16);
  border-radius: 999px;
  overflow: hidden;
}

.gamer-slider-preview-loading-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ff0000, #ff6868);
  box-shadow: 0 0 12px rgba(255,0,0,0.5);
}

.gamer-slider-preview-text {
  padding: 16px;
  background: #000;
}

.gamer-slider-preview-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  color: #ff5c5c;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gamer-slider-preview-text h3 {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 700;
}

.gamer-slider-thumbs {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gamer-slider-thumb {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: #000;
  cursor: pointer;
  transition: 0.2s ease;
}

.gamer-slider-thumb:hover,
.gamer-slider-thumb.is-active {
  border-color: rgba(255,0,0,0.25);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 15px rgba(255,0,0,0.08);
}

.gamer-slider-thumb img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.gamer-slider-thumb span {
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
}

@media (max-width: 1200px) {
  .gamer-slider-wrap {
    grid-template-columns: 1fr;
  }

  .gamer-slider-side {
    min-height: auto;
  }

  .gamer-slider-thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gamer-slider-main {
    min-height: 480px;
    height: 480px;
  }

  .gamer-slider-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
  }

  .gamer-slider-desc {
    font-size: 0.96rem;
    margin-bottom: 20px;
  }

  .gamer-slider-actions {
    flex-direction: column;
  }

  .gamer-slider-btn {
    width: 100%;
    min-width: 100%;
  }

  .gamer-slider-preview-image {
    height: 180px;
  }

  .gamer-slider-thumbs {
    grid-template-columns: 1fr;
  }
}
.gamer-slider-wrap {
  width: min(1700px, 98%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 18px;
  align-items: stretch;
}
.gamer-slider-wrap {
  width: min(1700px, 98%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 18px;
  align-items: stretch;
}
.gamer-slider-main {
  position: relative;
  height: 100%;
  min-height: 700px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 0, 0, 0.16);
  background: #000;
  box-shadow:
    0 0 30px rgba(255, 0, 0, 0.08),
    inset 0 0 30px rgba(255, 255, 255, 0.02);
}
.gamer-slider-main,
.gamer-slider-side {
  min-height: 700px;
}
@media (max-width: 768px) {
  .gamer-slider-wrap {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .gamer-slider-main {
    order: 1;
    width: 100% !important;
    min-height: 420px !important;
    height: 420px !important;
  }

  .gamer-slider-side {
    display: none !important;
  }

  .gamer-slider-content {
    left: 18px !important;
    right: 18px !important;
    bottom: 18px !important;
    max-width: 100% !important;
  }

  .gamer-slider-title {
    font-size: 2.2rem !important;
    line-height: 0.95 !important;
  }

  .gamer-slider-desc {
    font-size: 0.95rem !important;
    line-height: 1.45 !important;
    margin-bottom: 16px !important;
  }

  .gamer-slider-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .gamer-slider-btn {
    width: 100% !important;
    min-width: 100% !important;
  }

  .gamer-slider-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
  }
}
@media (max-width: 768px) {

  .gamer-slider-wrap {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  /* TELA PRINCIPAL EM CIMA */
  .gamer-slider-main {
    order: 1;
    width: 100% !important;
    height: 420px !important;
    min-height: 420px !important;
  }

  /* PRÓXIMA IMAGEM EMBAIXO */
  .gamer-slider-side {
    order: 2;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* ESCONDE LISTA (opcional, deixa mais limpo) */
  .gamer-slider-thumbs {
    display: none !important;
  }

  /* AJUSTE DA IMAGEM PRINCIPAL */
  .gamer-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* AJUSTE DO CARD DE BAIXO */
  .gamer-slider-preview-image {
    height: 220px !important;
  }

  .gamer-slider-preview-text {
    text-align: center;
  }

}
/* ÁREA DA IMAGEM */
.product-image {
  background: #000 !important;
  padding: 20px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

/* CASO A IMAGEM ESTEJA DIRETO NO CARD */
.product-card img {
  background: #000 !important;
  display: block;
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}

/* LED VERMELHO NO FUNDO */
.product-image::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.28), transparent 25%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 0, 0.22), transparent 22%),
    radial-gradient(circle at 50% 80%, rgba(255, 0, 0, 0.18), transparent 28%);
  filter: blur(22px);
  z-index: 1;
  pointer-events: none;
}

/* SE NÃO TIVER .product-image, aplica no próprio card da imagem */
.product-card .image-wrap,
.product-card .product-img,
.product-card .img-box {
  background: #000000 !important;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* BORDA LED NO CARD */
.product-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 0, 0, 0.18);
  box-shadow:
    inset 0 0 12px rgba(255, 0, 0, 0.04),
    0 0 12px rgba(255, 0, 0, 0.06);
  transition: 0.3s ease;
}

/* HOVER MAIS FORTE */
.product-card:hover {
  border-color: rgba(255, 0, 0, 0.75);
  box-shadow:
    0 0 14px rgba(255, 0, 0, 0.25),
    0 0 30px rgba(255, 0, 0, 0.22),
    0 0 55px rgba(255, 0, 0, 0.16);
  transform: translateY(-4px);
}

/* BOTÃO COM LED */
.product-btn,
.product-card button {
  border: 1px solid #ff0000;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.12);
}

.product-btn:hover,
.product-card button:hover {
  background: #ff0000;
  box-shadow:
    0 0 12px rgba(255, 0, 0, 0.35),
    0 0 24px rgba(255, 0, 0, 0.25);
}
.product-card,
.product-card * {
  background-color: transparent;
}

.product-card {
  background: #000 !important;
}
#gsx-hub {
    background: #000000 !important;
    padding: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 12px;
    border: 1px solid #111;
}

/* Navegação */
.gsx-nav { display: flex; gap: 15px; margin-bottom: 25px; }
.gsx-tab {
    color: #888; text-decoration: none; font-weight: bold;
    font-size: 14px; padding: 8px 20px; border-radius: 25px;
    border: 1px solid #222; transition: 0.3s;
}
.gsx-tab.active, .gsx-tab:hover {
    color: #ff0032; border-color: #ff0032;
    box-shadow: 0 0 15px rgba(255, 0, 50, 0.3);
}

/* Grid Layout Profissional */
.gsx-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 20px;
}

/* Card Principal */
.gsx-featured { position: relative; border-radius: 10px; overflow: hidden; border: 1px solid #ff0032; }
.gsx-main-card { display: block; height: 450px; position: relative; }
.gsx-main-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gsx-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 40px; background: linear-gradient(transparent, #000 90%);
}
.gsx-overlay h2 { color: #fff; font-size: 32px; margin: 0; text-transform: uppercase; }
.gsx-overlay p { color: #ccc; margin: 10px 0 0 0; }

/* Sidebar (Cards pequenos) */
.gsx-sidebar { display: flex; flex-direction: column; gap: 12px; }
.gsx-item {
    display: flex; gap: 15px; background: #0a0a0a; padding: 10px;
    border-radius: 8px; cursor: pointer; border: 1px solid #222; transition: 0.3s;
}
.gsx-item img { width: 100px; height: 60px; object-fit: cover; border-radius: 4px; }
.gsx-item-info h4 { color: #fff; margin: 0; font-size: 15px; }
.gsx-tag { color: #ff0032; font-size: 11px; font-weight: bold; }
.gsx-item.active { border-color: #ff0032; background: #150004; }

/* Controles */
.gsx-controls { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; transform: translateY(-50%); pointer-events: none; }
.gsx-controls button {
    background: rgba(0,0,0,0.6); border: none; color: #fff; padding: 15px;
    cursor: pointer; pointer-events: all; transition: 0.3s;
}
.gsx-controls button:hover { background: #ff0032; }

.gsx-dots { text-align: center; margin-top: 20px; }
.gsx-dot { height: 8px; width: 8px; background: #333; display: inline-block; border-radius: 50%; margin: 0 5px; }
.gsx-dot.active { background: #ff0032; box-shadow: 0 0 8px #ff0032; }

/* Responsividade total */
@media (max-width: 900px) {
    .gsx-grid { grid-template-columns: 1fr; }
    .gsx-main-card { height: 300px; }
    .gsx-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
    .gsx-sidebar { grid-template-columns: 1fr; }
}
/* ==================== CSS BLACK & RED - CRIMSON DESERT ==================== */

.card {
  width: 920px;
  height: 520px;
  background: #0a0a0a;           /* Preto bem escuro */
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.95);
  border: 1px solid #1a1a1a;
}

/* Tabs superiores */
.tabs {
  display: flex;
  gap: 8px;
  padding: 20px 25px 0;
}

.tab {
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.tab.active {
  background: #ff1a1a;           /* Vermelho neon */
  color: #ffffff;
  box-shadow: 0 0 15px #ff1a1a;
}

.tab:not(.active) {
  background: #1a1a1a;           /* Preto */
  color: #aaaaaa;
  border: 1px solid #333;
}

/* Área principal de destaque */
.highlight-area {
  margin: 15px 25px;
  height: 280px;
  border: 2px solid #ff1a1a;
  border-radius: 12px;
  position: relative;
  background: #0f0f0f;           /* Preto mais escuro */
  overflow: hidden;
}

/* Texto principal */
.main-title {
  position: absolute;
  bottom: 35px;
  left: 35px;
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
}

.main-subtitle {
  position: absolute;
  bottom: 15px;
  left: 35px;
  font-size: 15px;
  color: #777777;                /* Cinza bem escuro */
}

/* Sidebar direita - cards de jogos */
.sidebar {
  position: absolute;
  top: 85px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.game-card {
  width: 260px;
  height: 68px;
  background: #141414;           /* Preto escuro */
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 12px;
  border: 1px solid #222222;
  transition: all 0.3s;
}

.game-card:hover {
  border-color: #ff1a1a;
  box-shadow: 0 0 12px rgba(255, 26, 26, 0.3);
}

.game-card.active {
  border-color: #ff1a1a;
  background: #1a0a0a;           /* Preto com leve tom vermelho escuro */
  box-shadow: 0 0 20px rgba(255, 26, 26, 0.4);
}

.game-card img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.game-info h3 {
  margin: 0;
  font-size: 15px;
  color: #ffffff;
}

.game-info p {
  margin: 2px 0 0 0;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Cores dos labels */
.promocao { color: #ff3333; }
.novidade  { color: #00cc88; }
.steam     { color: #ff1a1a; }

/* Setas de navegação */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: #444444;                /* Preto/cinza escuro */
  cursor: pointer;
  z-index: 10;
}

.arrow.left  { left: 35px; }
.arrow.right { right: 35px; }

/* Indicadores inferiores (dots) */
.dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #333333;           /* Preto escuro */
  border-radius: 50%;
}

.dot.active {
  background: #ff1a1a;
  box-shadow: 0 0 8px #ff1a1a;
}
/* Escopo isolado para não bugar o resto do site */
#section-carrossel-gamer {
    background-color: #0a0a0a; /* Fundo preto apenas para esta seção */
    padding: 60px 0;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
    width: 100%;
}

#section-carrossel-gamer .swiper {
    width: 100%;
    padding: 50px 0;
}

#section-carrossel-gamer .swiper-slide {
    display: flex;
    justify-content: center;
    transition: all 0.4s ease;
    opacity: 0.4;
    transform: scale(0.8);
}

/* Quando o slide está no centro */
#section-carrossel-gamer .swiper-slide-active {
    opacity: 1 !important;
    transform: scale(1.05) !important;
    z-index: 5;
}

#section-carrossel-gamer .pc-card {
    background: #151515;
    border: 1px solid #333;
    border-radius: 15px;
    width: 100%;
    max-width: 350px;
    overflow: hidden;
    transition: border-color 0.3s;
}

#section-carrossel-gamer .swiper-slide-active .pc-card {
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

#section-carrossel-gamer .pc-header {
    height: 220px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    position: relative;
}

#section-carrossel-gamer .pc-header::after {
    content: '';
    position: absolute;
    top:0; left:0; width: 100%; height: 100%;
    background: linear-gradient(to top, #151515, transparent);
}

#section-carrossel-gamer .pc-title {
    color: #fff;
    position: relative;
    z-index: 1;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin: 0;
}

#section-carrossel-gamer .pc-body {
    padding: 25px;
}

#section-carrossel-gamer .pc-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

#section-carrossel-gamer .pc-features li {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

#section-carrossel-gamer .pc-features li i {
    color: #ff0000;
    margin-right: 10px;
    width: 18px;
}

#section-carrossel-gamer .pc-btn {
    width: 100%;
    padding: 14px;
    background: #cc0000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

#section-carrossel-gamer .pc-btn:hover {
    background: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Cor das setas customizada */
#section-carrossel-gamer .pc-nav {
    color: #ff0000 !important;
}

@media (max-width: 768px) {
    #section-carrossel-gamer .swiper-slide-active {
        transform: scale(1) !important;
    }
}
/* ISOLADO - só afeta .pcpromo-slider */
.pcpromo-slider,
.pcpromo-slider * {
  box-sizing: border-box;
}

.pcpromo-slider {
  position: relative;
  width: 100%;
  padding: 40px 14px;
  background: #05070b;
  overflow: hidden;
}

.pcpromo-slider::before,
.pcpromo-slider::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.22;
  z-index: 0;
}

.pcpromo-slider::before {
  width: 280px;
  height: 280px;
  background: #ff1f1f;
  top: -60px;
  left: -60px;
}

.pcpromo-slider::after {
  width: 280px;
  height: 280px;
  background: #7a0000;
  right: -70px;
  bottom: -60px;
}

.pcpromo-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.pcpromo-track-wrap {
  width: 100%;
  overflow: hidden;
}

.pcpromo-track {
  display: flex;
  gap: 28px;
  align-items: stretch;
  justify-content: center;
  transition: transform 0.5s ease;
}

.pcpromo-card {
  position: relative;
  flex: 0 0 320px;
  width: 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #0a0d12;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  transform: scale(0.9);
  opacity: 0.55;
  transition: transform 0.45s ease, opacity 0.45s ease, box-shadow 0.45s ease;
}

.pcpromo-card.pcpromo-active {
  transform: scale(1.03) translateY(-8px);
  opacity: 1;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(255, 40, 40, 0.18);
}

.pcpromo-card-top {
  position: relative;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
}

.pcpromo-card-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.28)),
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent 30%);
  pointer-events: none;
}

.pcpromo-card-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.09), transparent);
  transform: translateX(-130%);
  animation: pcpromoShine 4.2s linear infinite;
  pointer-events: none;
}

@keyframes pcpromoShine {
  100% {
    transform: translateX(130%);
  }
}

.pcpromo-red {
  background:
    radial-gradient(circle at top center, rgba(255, 45, 45, 0.25), transparent 45%),
    linear-gradient(180deg, #890016 0%, #43000b 100%);
}

.pcpromo-orange {
  background:
    radial-gradient(circle at top center, rgba(255, 180, 0, 0.28), transparent 45%),
    linear-gradient(180deg, #ff8a00 0%, #a64c00 100%);
}

.pcpromo-purple {
  background:
    radial-gradient(circle at top center, rgba(214, 81, 255, 0.26), transparent 45%),
    linear-gradient(180deg, #b02fc7 0%, #5d115f 100%);
}

.pcpromo-dark {
  background:
    radial-gradient(circle at top center, rgba(255, 40, 40, 0.22), transparent 45%),
    linear-gradient(180deg, #141414 0%, #000000 100%);
}

.pcpromo-title-bg {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 3rem;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  z-index: 1;
  pointer-events: none;
  text-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.pcpromo-image {
  position: relative;
  z-index: 2;
  width: 88%;
  max-height: 290px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.45));
  transition: transform 0.45s ease;
}

.pcpromo-card.pcpromo-active .pcpromo-image {
  transform: translateY(-6px) scale(1.04);
}

.pcpromo-card-bottom {
  background:
    linear-gradient(180deg, rgba(255, 40, 40, 0.08), transparent 28%),
    #0a0c10;
  padding: 18px 18px 16px;
}

.pcpromo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.pcpromo-list li {
  position: relative;
  color: #ececec;
  font-size: 0.98rem;
  font-weight: 600;
  padding-left: 20px;
  margin-bottom: 11px;
  line-height: 1.35;
}

.pcpromo-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff2b2b;
  font-size: 0.82rem;
}

.pcpromo-btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 16px 14px;
  background: linear-gradient(180deg, #f03b26 0%, #c82414 100%);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 1px;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 24px rgba(255, 43, 43, 0.22);
}

.pcpromo-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 28px rgba(255, 43, 43, 0.32);
}

.pcpromo-nav {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(16, 20, 28, 0.88);
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,0.32);
}

.pcpromo-nav:hover {
  transform: scale(1.08);
  background: rgba(190, 20, 20, 0.95);
}

@media (max-width: 1100px) {
  .pcpromo-card {
    flex-basis: 290px;
    width: 290px;
  }

  .pcpromo-card-top {
    height: 350px;
  }

  .pcpromo-title-bg {
    font-size: 2.5rem;
  }
}

@media (max-width: 860px) {
  .pcpromo-shell {
    gap: 0;
  }

  .pcpromo-track {
    justify-content: flex-start;
    gap: 0;
  }

  .pcpromo-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    transform: none;
    opacity: 1;
    padding-left: 0;
    padding-right: 0;
  }

  .pcpromo-card.pcpromo-active {
    transform: none;
  }

  .pcpromo-track-wrap {
    overflow: hidden;
    border-radius: 20px;
  }

  .pcpromo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
  }

  .pcpromo-prev {
    left: 2px;
  }

  .pcpromo-next {
    right: 2px;
  }
}

@media (max-width: 480px) {
  .pcpromo-slider {
    padding: 22px 8px;
  }

  .pcpromo-card-top {
    height: 310px;
  }

  .pcpromo-title-bg {
    font-size: 2.15rem;
    top: 16px;
    left: 16px;
    right: 16px;
  }

  .pcpromo-image {
    width: 84%;
    max-height: 235px;
  }

  .pcpromo-card-bottom {
    padding: 16px 15px 15px;
  }

  .pcpromo-list li {
    font-size: 0.92rem;
  }

  .pcpromo-btn {
    font-size: 0.92rem;
    padding: 15px 12px;
  }
}
.mini-prod-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
  width: 100%;
}

.mini-prod-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.mini-prod-card {
  background: #f3f3f3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #dddddd;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.mini-prod-thumb {
  position: relative;
  overflow: hidden;
  background: #ececec;
  aspect-ratio: 16 / 8;
}

.mini-prod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.mini-prod-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.22);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.mini-prod-hover span {
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 9px 14px;
  border-radius: 999px;
  transform: translateY(8px);
  transition: transform 0.28s ease;
}

.mini-prod-info {
  padding: 12px 12px 13px;
  background: #f7f7f7;
}

.mini-prod-info h3 {
  margin: 0 0 4px;
  font-size: 0.96rem;
  color: #202020;
  font-weight: 900;
}

.mini-prod-info p {
  margin: 0;
  font-size: 0.82rem;
  color: #666;
}

.mini-prod-link:hover .mini-prod-card {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.mini-prod-link:hover .mini-prod-thumb img {
  transform: scale(1.05);
  filter: brightness(1.03);
}

.mini-prod-link:hover .mini-prod-hover {
  opacity: 1;
}

.mini-prod-link:hover .mini-prod-hover span {
  transform: translateY(0);
}

.mini-prod-link:active .mini-prod-card {
  transform: scale(0.985);
}

@media (max-width: 768px) {
  .mini-prod-grid {
    grid-template-columns: 1fr;
  }
}
/* GRID */
.mini-prod-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
  width: 100%;
}

/* LINK */
.mini-prod-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* CARD */
.mini-prod-card {
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,0,0,0.2);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.9),
    0 0 15px rgba(255,0,0,0.15);
  transition: 0.3s;
  position: relative;
}

/* LED FUNDO */
.mini-prod-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255,0,0,0.2), transparent 40%),
    radial-gradient(circle at bottom, rgba(120,0,0,0.3), transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* IMAGEM */
.mini-prod-thumb {
  position: relative;
  overflow: hidden;
  background: #000;
}

.mini-prod-thumb img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: 0.4s;
  z-index: 2;
  position: relative;
}

/* OVERLAY LED */
.mini-prod-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(120,0,0,0.4));
  opacity: 0;
  transition: 0.3s;
  z-index: 3;
}

/* TEXTO LED */
.mini-prod-hover span {
  color: #ff2b2b;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,0,0,0.4);
  background: rgba(0,0,0,0.7);
  box-shadow: 0 0 15px rgba(255,0,0,0.5);
  transform: translateY(10px);
  transition: 0.3s;
}

/* INFO */
.mini-prod-info {
  padding: 14px;
  background: #000;
  position: relative;
  z-index: 2;
}

.mini-prod-info h3 {
  margin: 0 0 5px;
  font-size: 1rem;
  color: #fff;
  font-weight: 900;
}

.mini-prod-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #999;
}

/* HOVER */
.mini-prod-link:hover .mini-prod-card {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(0,0,0,1),
    0 0 30px rgba(255,0,0,0.5);
  border: 1px solid rgba(255,0,0,0.5);
}

.mini-prod-link:hover img {
  transform: scale(1.08);
}

.mini-prod-link:hover .mini-prod-hover {
  opacity: 1;
}

.mini-prod-link:hover .mini-prod-hover span {
  transform: translateY(0);
}

/* CLIQUE */
.mini-prod-link:active .mini-prod-card {
  transform: scale(0.97);
}

/* LED ANIMADO */
.mini-prod-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,0,0,0.2), transparent);
  transform: translateX(-100%);
  animation: ledMove 3s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes ledMove {
  100% {
    transform: translateX(100%);
  }
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .mini-prod-grid {
    grid-template-columns: 1fr;
  }
}
.pcpromo-slider,
.pcpromo-slider * {
  box-sizing: border-box;
}

.pcpromo-slider {
  position: relative;
  width: 100%;
  padding: 40px 14px;
  background: #000;
  overflow: hidden;
}

.pcpromo-slider::before,
.pcpromo-slider::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.25;
  z-index: 0;
}

.pcpromo-slider::before {
  width: 300px;
  height: 300px;
  background: #ff0000;
  top: -60px;
  left: -60px;
}

.pcpromo-slider::after {
  width: 300px;
  height: 300px;
  background: #8b0000;
  right: -70px;
  bottom: -60px;
}

.pcpromo-card {
  background: #000;
  border: 1px solid rgba(255, 0, 0, 0.2);
}

/* TODOS OS TOPOS IGUAIS (PRETO + VERMELHO) */
.pcpromo-card-top,
.pcpromo-red,
.pcpromo-orange,
.pcpromo-purple,
.pcpromo-dark {
  background:
    radial-gradient(circle at top center, rgba(255, 0, 0, 0.25), transparent 45%),
    linear-gradient(180deg, #1a0000 0%, #000000 100%);
}

/* PARTE DE BAIXO */
.pcpromo-card-bottom {
  background: #000;
}

/* TEXTO */
.pcpromo-list li {
  color: #fff;
}

/* BOTÃO */
.pcpromo-btn {
  background: linear-gradient(180deg, #ff0000 0%, #990000 100%);
  box-shadow: 0 0 20px rgba(255,0,0,0.4);
}

/* SETAS */
.pcpromo-nav {
  background: rgba(0,0,0,0.9);
  border: 1px solid rgba(255,0,0,0.3);
}

.pcpromo-nav:hover {
  background: red;
}
/* PROPAGANDA ISOLADA */
#banner-black-red {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
}

#banner-black-red .slider-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

#banner-black-red .item-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease, transform .6s ease, visibility .6s ease;
  transform: scale(1.02);
}

#banner-black-red .item-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transform: scale(1);
}

#banner-black-red .item-slide picture,
#banner-black-red .item-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

#banner-black-red .item-slide img {
  object-fit: cover;
  object-position: center;
}

#banner-black-red .item-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.38) 45%, rgba(0,0,0,0.12) 70%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
  pointer-events: none;
}

#banner-black-red .info-box {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: #fff;
  max-width: 480px;
}

#banner-black-red .info-box h2 {
  font-size: 42px;
  line-height: 1.05;
  font-weight: 900;
  margin: 0 0 14px;
  text-shadow: 0 0 18px rgba(255, 0, 0, 0.22);
}

#banner-black-red .info-box .destaque {
  color: #ff1a1a;
}

#banner-black-red .info-box p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 18px;
  color: rgba(255,255,255,.9);
}

#banner-black-red .mini-prod-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .4px;
  background: linear-gradient(135deg, #ff0000, #8b0000);
  box-shadow: 0 0 16px rgba(255,0,0,.35);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

#banner-black-red .mini-prod-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(255,0,0,.5);
  filter: brightness(1.05);
}

#banner-black-red .dots-nav {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

#banner-black-red .p-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: all .25s ease;
}

#banner-black-red .p-dot.active {
  background: #ff0000;
  box-shadow: 0 0 12px rgba(255,0,0,.8);
  transform: scale(1.12);
}

/* TABLET */
@media (max-width: 991px) {
  #banner-black-red .slider-wrapper {
    height: 430px;
  }

  #banner-black-red .info-box {
    left: 35px;
    max-width: 380px;
  }

  #banner-black-red .info-box h2 {
    font-size: 32px;
  }

  #banner-black-red .info-box p {
    font-size: 14px;
  }
}

/* CELULAR */
@media (max-width: 768px) {
  #banner-black-red .slider-wrapper {
    height: 340px;
  }

  #banner-black-red .item-slide::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.82) 100%);
  }

  #banner-black-red .info-box {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 46px;
    transform: none;
    max-width: none;
  }

  #banner-black-red .info-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  #banner-black-red .info-box p {
    font-size: 13px;
    margin-bottom: 14px;
  }

  #banner-black-red .mini-prod-link {
    min-width: 160px;
    min-height: 42px;
    padding: 10px 18px;
    font-size: 13px;
  }

  #banner-black-red .dots-nav {
    bottom: 12px;
  }

  #banner-black-red .p-dot {
    width: 9px;
    height: 9px;
  }
}

/* CELULAR PEQUENO */
@media (max-width: 480px) {
  #banner-black-red .slider-wrapper {
    height: 300px;
  }

  #banner-black-red .info-box h2 {
    font-size: 20px;
  }

  #banner-black-red .info-box p {
    font-size: 12px;
  }
}


