/* 
================================================================
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;
    }
}
@keyframes ledPulse {
    0% {
        box-shadow: 0 0 5px #ff0000;
        opacity: 0.8;
    }
    50% {
        box-shadow: 0 0 25px #ff0000, 0 0 50px #ff0000;
        opacity: 1;
    }
    100% {
        box-shadow: 0 0 5px #ff0000;
        opacity: 0.8;
    }
}
.glow-btn {
    background: var(--primary);
    color: #fff;
    padding: 20px 50px;
    border-radius: 4px;
    font-weight: 900;
    font-family: 'Orbitron';
    font-size: 0.8rem;
    animation: ledPulse 2s infinite;
    border: 1px solid #ff0000;
}
.led-text {
    color: #ff0000;
    text-shadow: var(--led-intense);
    animation: flickerText 2s infinite;
}

@keyframes flickerText {
    0%, 100% { opacity: 1; text-shadow: var(--led-intense); }
    50% { opacity: 0.6; text-shadow: var(--led-pulse); }
}
.product-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 
        0 0 10px #ff0000,
        0 0 25px #ff0000,
        0 0 50px rgba(255,0,0,0.5);
}
.scan-line {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, red, transparent);
    z-index: 9999;
    animation: scanMove 4s linear infinite;
}

@keyframes scanMove {
    0% { left: -100%; }
    100% { left: 100%; }
}
body {
    background: radial-gradient(circle at center, #0a0000 0%, #000000 80%);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #000;
    font-family: 'Orbitron', sans-serif;
    overflow-x: hidden;
}

/* HERO */
.hero-banner-clean {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
}

/* IMAGEM */
.hero-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.42) contrast(1.08);
    transform: scale(1.03);
    animation: bgZoom 8s ease-in-out infinite alternate;
}

/* OVERLAY */
.hero-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 45%, rgba(255,0,0,0.10) 75%, rgba(0,0,0,0.82) 100%),
        radial-gradient(circle at center, rgba(255,0,0,0.12) 0%, transparent 45%);
}

/* LEDS */
.hero-led {
    position: absolute;
    z-index: 1;
    background: radial-gradient(circle, rgba(255,0,0,0.45) 0%, rgba(255,0,0,0.18) 35%, transparent 70%);
    filter: blur(18px);
    animation: ledPulse 3.2s infinite ease-in-out;
}

.led-1 {
    width: 260px;
    height: 260px;
    top: 8%;
    left: -60px;
}

.led-2 {
    width: 320px;
    height: 320px;
    right: -80px;
    top: 20%;
    animation-delay: 1s;
}

.led-3 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: 30%;
    animation-delay: 2s;
}

/* ❌ REMOVIDO O RASTRO BUGADO */

/* CONTEÚDO */
.hero-banner-content {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.hero-box {
    text-align: center;
    padding: 35px 30px;
    border: 1px solid rgba(255,0,0,0.18);
    background: rgba(0,0,0,0.28);
    backdrop-filter: blur(6px);
    box-shadow:
        0 0 25px rgba(255,0,0,0.08),
        inset 0 0 20px rgba(255,255,255,0.02);
    animation: contentFadeUp 1.2s ease forwards;
}

.hero-banner-logo {
    font-size: 3.4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 12px;
    text-shadow: 0 0 18px rgba(0,0,0,0.35);
}

.hero-banner-logo span {
    color: #ff0000;
    text-shadow:
        0 0 8px rgba(255,0,0,0.8),
        0 0 18px rgba(255,0,0,0.55),
        0 0 35px rgba(255,0,0,0.25);
    animation: redFlicker 2.2s infinite;
}

.hero-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    letter-spacing: 2px;
    margin-bottom: 28px;
}

/* BOTÕES */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn {
    min-width: 180px;
    padding: 15px 28px;
    text-decoration: none;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn.primary {
    color: #fff;
    background: linear-gradient(90deg, #ff0000, #9f0000);
    border: 1px solid #ff0000;
    box-shadow: 0 0 15px rgba(255,0,0,0.35);
}

.hero-btn.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 25px rgba(255,0,0,0.55);
}

.hero-btn.secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.04);
}

.hero-btn.secondary:hover {
    transform: translateY(-4px);
    border-color: rgba(255,0,0,0.55);
    color: #ff4d4d;
    box-shadow: 0 0 20px rgba(255,0,0,0.2);
}

/* brilho do botão */
.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-25deg);
    transition: 0.7s;
}

.hero-btn:hover::before {
    left: 140%;
}

/* ANIMAÇÕES */
@keyframes bgZoom {
    0% { transform: scale(1.03); }
    100% { transform: scale(1.09); }
}

@keyframes ledPulse {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.15); }
}

@keyframes contentFadeUp {
    0% { opacity: 0; transform: translateY(35px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes redFlicker {
    0%, 100% { opacity: 1; }
    8% { opacity: 0.75; }
    14% { opacity: 1; }
    18% { opacity: 0.82; }
    22% { opacity: 1; }
}

/* RESPONSIVO */
@media (max-width: 980px) {
    .hero-banner-logo {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .hero-banner-clean {
        min-height: 72vh;
    }

    .hero-banner-content {
        min-height: 72vh;
        padding: 18px;
    }

    .hero-banner-logo {
        font-size: 1.9rem;
        letter-spacing: 2px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }
}
/* ÁREA DOS PRODUTOS */
.products,
.products-section,
.produtos,
#products {
    background-color: #000 !important;
}

/* GRID DOS PRODUTOS */
.products-grid,
.grid-produtos {
    background-color: #000 !important;
}

/* CARD DOS PRODUTOS */
.product-card {
    background-color: #000 !important;
    border: 1px solid #111;
}

/* ÁREA INTERNA DO CARD */
.product-card .card-content {
    background-color: #000 !important;
}

/* FUNDO DA IMAGEM (onde tá cinza) */
.product-card .image-container,
.product-card img {
    background-color: #000 !important;
}.unboxing-slider-section {
  width: 100%;
  padding: 40px 20px;
  background: linear-gradient(180deg, #000 0%, #080808 50%, #140000 100%);
  overflow: hidden;
  box-sizing: border-box;
}

.unboxing-slider-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.unboxing-slider-title {
  text-align: center;
  color: #ff1a1a;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 28px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.unboxing-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.unboxing-slider-viewport {
  width: 100%;
  overflow: hidden;
}

.unboxing-slider-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.unboxing-card {
  flex: 0 0 calc(100% / 3);
  max-width: calc(100% / 3);
  padding: 0 12px;
  box-sizing: border-box;
}

.unboxing-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.unboxing-card-image {
  background: #000;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  border: 1px solid #ff0000;
  border-bottom: none;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.25);
}

.unboxing-card-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.unboxing-card-content {
  background: linear-gradient(180deg, #0b0b0b 0%, #050505 100%);
  border: 1px solid #ff0000;
  border-top: none;
  border-radius: 0 0 14px 14px;
  padding: 18px;
  min-height: 180px;
  box-sizing: border-box;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.25);
}

.unboxing-card-content h3 {
  color: #fff;
  font-size: 15px;
  margin: 0 0 10px;
  font-weight: 800;
}

.unboxing-card-content p {
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 18px;
}

.btn-explorar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  text-decoration: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #1a0000 0%, #ff0000 50%, #1a0000 100%);
  background-size: 200% 100%;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 10px rgba(255, 0, 0, 0.35),
    inset 0 0 8px rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.5s ease;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.btn-explorar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}

.btn-explorar:hover {
  transform: translateY(-2px) scale(1.01);
  background-position: 100% 0;
  box-shadow:
    0 0 16px rgba(255, 0, 0, 0.6),
    0 0 28px rgba(255, 0, 0, 0.25);
}

.btn-explorar:hover::before {
  left: 140%;
}

.btn-explorar:active {
  transform: scale(0.98);
}

.unboxing-card:hover .unboxing-card-image img {
  transform: scale(1.05);
}

.unboxing-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 1px solid #ff0000;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.92);
  color: #ff0000;
  font-size: 26px;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.35);
}

.unboxing-nav:hover {
  background: #ff0000;
  color: #fff;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.65);
}

.unboxing-prev {
  left: -10px;
}

.unboxing-next {
  right: -10px;
}

.unboxing-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.unboxing-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000;
  border: 2px solid #ff0000;
  cursor: pointer;
  transition: 0.3s ease;
}

.unboxing-dot.active {
  background: #ff0000;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .unboxing-card {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .unboxing-card-image img {
    height: 210px;
  }

  .unboxing-prev {
    left: 0;
  }

  .unboxing-next {
    right: 0;
  }
}

@media (max-width: 640px) {
  .unboxing-slider-section {
    padding: 30px 12px;
  }

  .unboxing-slider-title {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .unboxing-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 6px;
  }

  .unboxing-card-image img {
    height: 220px;
  }

  .unboxing-card-content {
    min-height: auto;
    padding: 16px;
  }

  .unboxing-card-content h3 {
    font-size: 14px;
  }

  .unboxing-card-content p {
    font-size: 11px;
  }

  .btn-explorar {
    height: 44px;
    font-size: 13px;
  }

  .unboxing-nav {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
}.unboxing-card {
  flex: 0 0 calc(100% / 3);
  max-width: calc(100% / 3);
  padding: 0 12px;
  box-sizing: border-box;
  display: flex;
}

.unboxing-card-inner,
.unboxing-card-content {
  width: 100%;
}

.unboxing-card {
  display: flex;
  flex-direction: column;
}

.unboxing-card-image {
  width: 100%;
  height: 230px;
  background: #000;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  border: 1px solid #ff0000;
  border-bottom: none;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.25);
}

.unboxing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.unboxing-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  background: linear-gradient(180deg, #0b0b0b 0%, #050505 100%);
  border: 1px solid #ff0000;
  border-top: none;
  border-radius: 0 0 14px 14px;
  padding: 18px;
  min-height: 180px;
  box-sizing: border-box;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.25);
}

.unboxing-card-content h3 {
  color: #fff;
  font-size: 15px;
  margin: 0 0 10px;
  font-weight: 800;
  min-height: 36px;
}

.unboxing-card-content p {
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 18px;
  min-height: 48px;
}

.btn-explorar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  margin-top: auto;
  text-decoration: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #1a0000 0%, #ff0000 50%, #1a0000 100%);
  background-size: 200% 100%;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 10px rgba(255, 0, 0, 0.35),
    inset 0 0 8px rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.5s ease;
  position: relative;
  overflow: hidden;
}
.btn-explorar {
  position: relative;
  overflow: hidden;
}

/* linha animada */
.btn-explorar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff0000, transparent);
  animation: linhaRun 2s linear infinite;
}

@keyframes linhaRun {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.unboxing-slider-section {
  width: 100%;
  padding: 30px 10px;
  background: linear-gradient(180deg, #000 0%, #080808 50%, #140000 100%);
  overflow: hidden;
  box-sizing: border-box;
}

.unboxing-slider-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.unboxing-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.unboxing-slider-viewport {
  width: 100%;
  overflow: hidden;
}

.unboxing-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.unboxing-card {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 0 10px;
  box-sizing: border-box;
}

.unboxing-card-image {
  width: 100%;
  height: 260px;
  background: #000;
  border: 1px solid #ff0000;
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(255, 0, 0, 0.25);
}

.unboxing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.unboxing-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  padding: 18px;
  background: linear-gradient(180deg, #090909 0%, #050505 100%);
  border: 1px solid #ff0000;
  border-top: none;
  border-radius: 0 0 16px 16px;
  box-sizing: border-box;
}

.unboxing-card-content h3 {
  color: #fff;
  font-size: 15px;
  line-height: 1.3;
  margin: 0 0 10px;
  font-weight: 900;
}

.unboxing-card-content p {
  color: rgba(255,255,255,0.70);
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 18px;
}

.btn-explorar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  text-decoration: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #2a0000 0%, #ff0000 50%, #2a0000 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  box-sizing: border-box;
}

.unboxing-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #ff0000;
  background: rgba(0,0,0,0.92);
  color: #ff0000;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.unboxing-prev {
  left: 4px;
}

.unboxing-next {
  right: 4px;
}

.unboxing-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.unboxing-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000;
  border: 2px solid #ff0000;
}

.unboxing-dot.active {
  background: #ff0000;
  box-shadow: 0 0 10px rgba(255,0,0,0.8);
}

/* TABLET */
@media (max-width: 991px) {
  .unboxing-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* CELULAR */
@media (max-width: 640px) {
  .unboxing-slider-section {
    padding: 22px 8px;
  }

  .unboxing-slider-title {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .unboxing-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 6px;
  }

  .unboxing-card-image {
    height: 220px;
  }

  .unboxing-card-content {
    min-height: auto;
    padding: 14px;
  }

  .unboxing-card-content h3 {
    font-size: 13px;
  }

  .unboxing-card-content p {
    font-size: 11px;
    margin-bottom: 14px;
  }

  .btn-explorar {
    min-height: 42px;
    font-size: 12px;
    border-radius: 10px;
  }

  .unboxing-nav {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .unboxing-prev {
    left: 2px;
  }

  .unboxing-next {
    right: 2px;
  }
}
.fps-showcase {
  width: 100%;
  background:
    radial-gradient(circle at top center, rgba(255, 0, 0, 0.12), transparent 35%),
    linear-gradient(180deg, #000000 0%, #050505 55%, #120000 100%);
  padding: 50px 20px 40px;
  overflow: hidden;
  box-sizing: border-box;
}

.fps-showcase-container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

.fps-slider {
  position: relative;
  width: 100%;
}

.fps-slide {
  display: none;
  align-items: stretch;
  gap: 28px;
  animation: fpsFade 0.7s ease;
}

.fps-slide.active {
  display: flex;
}

@keyframes fpsFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fps-main-card {
  flex: 1 1 72%;
  min-width: 0;
}

.fps-main-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.fps-main-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #080808;
  border: 1px solid rgba(255, 0, 0, 0.45);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 0, 0, 0.12),
    0 0 25px rgba(255, 0, 0, 0.10);
}

.fps-main-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.fps-main-link:hover .fps-main-image img {
  transform: scale(1.035);
}

.fps-main-content {
  padding-top: 26px;
}

.fps-main-content h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fps-main-content p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 21px;
  line-height: 1.5;
  font-weight: 400;
}

.fps-side-preview {
  flex: 0 0 31%;
  max-width: 31%;
  position: relative;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255, 0, 0, 0.25);
  box-shadow:
    inset 0 0 40px rgba(0, 0, 0, 0.65),
    0 0 20px rgba(255, 0, 0, 0.08);
}

.fps-side-image {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.fps-side-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.05) saturate(1);
}

.fps-side-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.26)),
    linear-gradient(90deg, rgba(255,0,0,0.14), rgba(0,0,0,0.08));
}

.fps-side-overlay span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: clamp(34px, 5vw, 82px);
  font-weight: 900;
  color: #ff1a1a;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 0, 0, 0.18);
}

.fps-controls {
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  pointer-events: none;
}

.fps-arrow {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255, 0, 0, 0.65);
  background: rgba(0, 0, 0, 0.88);
  color: #ff1a1a;
  font-size: 28px;
  cursor: pointer;
  pointer-events: auto;
  transition: 0.3s ease;
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.14);
}

.fps-arrow:hover {
  background: #ff0000;
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 0 24px rgba(255, 0, 0, 0.3);
}

.fps-prev {
  left: -16px;
}

.fps-next {
  right: -16px;
}

.fps-progress {
  display: flex;
  gap: 14px;
  margin-top: 38px;
}

.fps-progress-line {
  height: 3px;
  flex: 1;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
  position: relative;
}

.fps-progress-line.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #5a0000, #ff0000, #ff4d4d);
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.35);
}

/* Tablet */
@media (max-width: 1100px) {
  .fps-slide {
    gap: 18px;
  }

  .fps-main-content h2 {
    font-size: 24px;
  }

  .fps-main-content p {
    font-size: 17px;
  }

  .fps-side-preview {
    flex: 0 0 30%;
    max-width: 30%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .fps-showcase {
    padding: 24px 12px 28px;
  }

  .fps-slide.active {
    display: block;
  }

  .fps-main-card {
    width: 100%;
  }

  .fps-side-preview {
    display: none;
  }

  .fps-main-image {
    aspect-ratio: 4 / 4.3;
  }

  .fps-main-content {
    padding-top: 16px;
  }

  .fps-main-content h2 {
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 10px;
  }

  .fps-main-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .fps-controls {
    top: 36%;
  }

  .fps-arrow {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .fps-prev {
    left: 2px;
  }

  .fps-next {
    right: 2px;
  }

  .fps-progress {
    gap: 8px;
    margin-top: 22px;
  }

  .fps-progress-line {
    height: 2px;
  }
}
.fps-showcase {
  width: 100%;
  background: linear-gradient(180deg, #000000 0%, #050505 60%, #000000 100%);
  padding: 50px 20px 40px;
  overflow: hidden;
  box-sizing: border-box;
}
.gaming-categories {
  width: 100%;
  padding: 40px 16px;
  background: #f3f3f3;
  box-sizing: border-box;
}

.gaming-categories-container {
  max-width: 1180px;
  margin: 0 auto;
}

.gaming-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}

.gaming-category-card {
  position: relative;
  display: block;
  min-height: 270px;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  background: #111;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.gaming-category-image,
.gaming-banner-image {
  width: 100%;
  height: 100%;
}

.gaming-category-image img,
.gaming-banner-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gaming-category-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.68) 100%),
    linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 18%, transparent 35%);
}

.gaming-category-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 2;
  text-align: center;
  padding: 0 10px;
}

.gaming-category-content h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

.gaming-category-content span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 28px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.65);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(2px);
}

.gaming-section-title {
  text-align: center;
  margin-bottom: 24px;
}

.gaming-section-title h2 {
  margin: 0 0 6px;
  color: #111;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.gaming-section-title span {
  display: inline-block;
  width: 36px;
  height: 3px;
  background: #222;
  border-radius: 999px;
}

.gaming-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gaming-banner-card {
  position: relative;
  min-height: 180px;
  border-radius: 4px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: #111;
}

.gaming-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.40) 35%, rgba(0,0,0,0.58) 100%),
    linear-gradient(120deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.04) 18%, transparent 35%);
}

.gaming-banner-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 26px;
}

.gaming-banner-content h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.gaming-banner-content p {
  margin: 0;
  max-width: 360px;
  color: rgba(255,255,255,0.92);
  font-size: 16px;
  line-height: 1.4;
}

.gaming-banner-content.right {
  align-items: flex-end;
  text-align: right;
}

.gaming-banner-content.right h3 {
  max-width: 330px;
}

.gaming-banner-content.right ul {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}

.gaming-banner-content.right li {
  color: #fff;
  font-size: 20px;
  line-height: 1.35;
  text-transform: uppercase;
}

.gaming-category-card:hover img,
.gaming-banner-card:hover img {
  transform: scale(1.05);
}

.gaming-category-card:hover .gaming-category-content span {
  background: rgba(255,255,255,0.16);
  border-color: #fff;
}

@media (max-width: 900px) {
  .gaming-top-grid {
    grid-template-columns: 1fr;
  }

  .gaming-bottom-grid {
    grid-template-columns: 1fr;
  }

  .gaming-category-card {
    min-height: 320px;
  }

  .gaming-banner-card {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .gaming-categories {
    padding: 26px 10px;
  }

  .gaming-top-grid {
    gap: 10px;
    margin-bottom: 18px;
  }

  .gaming-category-card {
    min-height: 240px;
  }

  .gaming-category-content h3 {
    font-size: 18px;
  }

  .gaming-category-content span {
    min-width: 84px;
    height: 26px;
    font-size: 12px;
  }

  .gaming-section-title h2 {
    font-size: 18px;
  }

  .gaming-bottom-grid {
    gap: 10px;
  }

  .gaming-banner-card {
    min-height: 180px;
  }

  .gaming-banner-content {
    padding: 16px 16px;
  }

  .gaming-banner-content h3 {
    font-size: 22px;
  }

  .gaming-banner-content p {
    font-size: 13px;
  }

  .gaming-banner-content.right li {
    font-size: 16px;
  }
}.gaming-categories {
  width: 100%;
  padding: 40px 16px;
  background: linear-gradient(180deg, #000 0%, #050505 60%, #0d0000 100%);
  box-sizing: border-box;
}

.gaming-categories-container {
  max-width: 1180px;
  margin: 0 auto;
}

/* GRID TOP */
.gaming-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}

/* CARD */
.gaming-category-card {
  position: relative;
  display: block;
  min-height: 270px;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  background: #000;
  border: 1px solid rgba(255,0,0,0.6);
  box-shadow:
    0 0 12px rgba(255,0,0,0.2),
    0 0 30px rgba(255,0,0,0.1);
  transition: 0.3s ease;
}

.gaming-category-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 0 20px rgba(255,0,0,0.5),
    0 0 40px rgba(255,0,0,0.2);
}

.gaming-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.gaming-category-card:hover img {
  transform: scale(1.05);
}

/* OVERLAY */
.gaming-category-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.7) 100%),
    linear-gradient(120deg, rgba(255,0,0,0.15), transparent);
}

/* TEXTO */
.gaming-category-content {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  text-align: center;
}

.gaming-category-content h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255,0,0,0.6);
}

.gaming-category-content span {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 16px;
  border-radius: 8px;
  background: rgba(255,0,0,0.1);
  border: 1px solid #ff0000;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: 0.3s;
}

.gaming-category-card:hover span {
  background: #ff0000;
  box-shadow: 0 0 10px red;
}

/* TITULO */
.gaming-section-title {
  text-align: center;
  margin-bottom: 25px;
}

.gaming-section-title h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.gaming-section-title span {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: #ff0000;
  border-radius: 999px;
  margin-top: 6px;
}

/* BOTTOM */
.gaming-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* BANNER */
.gaming-banner-card {
  position: relative;
  min-height: 200px;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,0,0,0.5);
  box-shadow: 0 0 15px rgba(255,0,0,0.2);
  transition: 0.3s;
}

.gaming-banner-card:hover {
  transform: scale(1.01);
  box-shadow: 0 0 25px rgba(255,0,0,0.4);
}

.gaming-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY BANNER */
.gaming-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)),
    linear-gradient(120deg, rgba(255,0,0,0.15), transparent);
}

/* TEXTO BANNER */
.gaming-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.gaming-banner-content h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(255,0,0,0.6);
}

.gaming-banner-content p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}

.gaming-banner-content.right {
  align-items: flex-end;
  text-align: right;
}

.gaming-banner-content.right li {
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .gaming-top-grid {
    grid-template-columns: 1fr;
  }

  .gaming-bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .gaming-category-card {
    min-height: 240px;
  }

  .gaming-banner-card {
    min-height: 180px;
  }

  .gaming-category-content h3 {
    font-size: 18px;
  }
}
.promo-hero-banner {
  width: 100%;
  background: linear-gradient(90deg, #112f88 0%, #142f8a 45%, #17348f 100%);
  overflow: hidden;
  box-sizing: border-box;
}

.promo-hero-container {
  width: 100%;
  min-height: 640px;
  max-width: 2000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  align-items: center;
  position: relative;
}

/* ESQUERDA */
.promo-hero-left {
  position: relative;
  padding: 70px 50px 70px 90px;
  z-index: 2;
}

.promo-hero-top-text {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 18px;
}

.promo-hero-big {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.9;
}

.promo-hero-number {
  color: #fff;
  font-size: 200px;
  font-weight: 900;
  letter-spacing: -8px;
  text-transform: uppercase;
}

.promo-hero-highlight {
  display: inline-block;
  margin-top: 12px;
  background: #01aaf3;
  color: #0b2b7f;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  padding: 6px 18px 10px;
  text-transform: lowercase;
}

.promo-hero-subtext {
  margin: 18px 0 34px;
  color: #fff;
  font-size: 36px;
  font-weight: 400;
}

.promo-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  height: 64px;
  padding: 0 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 27px;
  font-weight: 800;
  transition: 0.3s ease;
}

.promo-hero-btn-left {
  background: linear-gradient(90deg, #00a4ec, #16c2ff);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 180, 255, 0.22);
}

.promo-hero-btn-left:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 180, 255, 0.35);
}

.promo-shape {
  position: absolute;
  border: 3px solid rgba(0, 180, 255, 0.38);
  transform: rotate(45deg);
  pointer-events: none;
}

.promo-shape-left-top {
  width: 70px;
  height: 70px;
  left: 45px;
  top: 220px;
  opacity: 0.2;
  filter: blur(1px);
}

.promo-shape-left-bottom {
  width: 140px;
  height: 140px;
  left: 40px;
  bottom: 0;
  opacity: 0.8;
}

/* CENTRO */
.promo-hero-center {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
}

.promo-hero-center-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f5c500 0%, #dcae00 100%);
}

.promo-hero-product {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 620px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.28));
}

/* DIREITA */
.promo-hero-right {
  position: relative;
  padding: 70px 80px 70px 40px;
  z-index: 2;
  text-align: right;
}

.promo-hero-right h2 {
  margin: 0 0 16px;
  color: #ffd200;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  font-style: italic;
}

.promo-hero-right p {
  margin: 0 0 36px;
  color: #ffd200;
  font-size: 23px;
  line-height: 1.4;
  font-style: italic;
  opacity: 0.95;
}

.promo-hero-btn-right {
  background: linear-gradient(90deg, #ffce00, #f5b800);
  color: #14348d;
  box-shadow: 0 10px 26px rgba(255, 206, 0, 0.2);
}

.promo-hero-btn-right:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255, 206, 0, 0.34);
}

.promo-right-lines {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 240px;
  height: 180px;
  opacity: 0.5;
  pointer-events: none;
}

.promo-right-lines::before,
.promo-right-lines::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 45% 55% 60% 40% / 45% 35% 65% 55%;
}

.promo-right-lines::after {
  inset: 28px;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
}

/* RESPONSIVO */
@media (max-width: 1200px) {
  .promo-hero-container {
    grid-template-columns: 1fr;
  }

  .promo-hero-left,
  .promo-hero-right {
    text-align: center;
    padding: 40px 20px;
  }

  .promo-hero-big {
    align-items: center;
  }

  .promo-hero-center {
    min-height: 420px;
  }

  .promo-hero-center-bg {
    width: 100%;
  }

  .promo-right-lines,
  .promo-shape {
    display: none;
  }
}

@media (max-width: 768px) {
  .promo-hero-banner {
    background: linear-gradient(180deg, #112f88 0%, #17348f 100%);
  }

  .promo-hero-left {
    padding: 30px 16px 20px;
  }

  .promo-hero-top-text {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .promo-hero-number {
    font-size: 110px;
    letter-spacing: -4px;
  }

  .promo-hero-highlight {
    font-size: 42px;
    margin-top: 10px;
    padding: 4px 12px 7px;
  }

  .promo-hero-subtext {
    font-size: 24px;
    margin: 14px 0 20px;
  }

  .promo-hero-btn {
    min-width: 180px;
    height: 50px;
    font-size: 18px;
    padding: 0 18px;
  }

  .promo-hero-center {
    min-height: 340px;
  }

  .promo-hero-product {
    max-height: 330px;
  }

  .promo-hero-right {
    padding: 26px 16px 34px;
  }

  .promo-hero-right h2 {
    font-size: 28px;
  }

  .promo-hero-right p {
    font-size: 17px;
    margin-bottom: 22px;
  }
}.emag-hero-red {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 0, 0, 0.16) 0%, rgba(120, 0, 0, 0.10) 22%, rgba(0, 0, 0, 0.96) 62%, #000 100%);
  isolation: isolate;
}

.emag-hero-red__container {
  position: relative;
  z-index: 4;
  max-width: 1400px;
  min-height: 520px;
  margin: 0 auto;
  padding: 40px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
}

.emag-hero-red__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, transparent 0 22%, rgba(255, 0, 0, 0.28) 22.5%, rgba(255,255,255,0.85) 23%, transparent 23.5%) left 8% top 18% / 520px 220px no-repeat,
    linear-gradient(315deg, transparent 0 22%, rgba(255, 0, 0, 0.28) 22.5%, rgba(255,255,255,0.85) 23%, transparent 23.5%) right 10% center / 520px 220px no-repeat,
    linear-gradient(135deg, transparent 0 46%, rgba(255,0,0,0.18) 46.5%, transparent 47%) left center / 100% 100% no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

.emag-hero-red__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 0, 0, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 0, 0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,1) 35%, rgba(0,0,0,1));
  pointer-events: none;
}

.emag-hero-red__hex {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,0,0,0.14) 0 2px, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(255,0,0,0.12) 0 2px, transparent 2px),
    repeating-linear-gradient(
      30deg,
      transparent 0 42px,
      rgba(255, 0, 0, 0.035) 42px 43px
    ),
    repeating-linear-gradient(
      -30deg,
      transparent 0 42px,
      rgba(255, 0, 0, 0.035) 42px 43px
    );
  opacity: 0.6;
  pointer-events: none;
}

.emag-hero-red__content {
  position: relative;
  z-index: 5;
  max-width: 560px;
}

.emag-hero-red__title {
  margin: 0 0 12px;
  color: #fff;
  font-size: 64px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow:
    0 0 10px rgba(255, 0, 0, 0.22),
    0 0 22px rgba(255, 0, 0, 0.12);
}

.emag-hero-red__title span {
  color: #ff1a1a;
  text-shadow:
    0 0 14px rgba(255, 0, 0, 0.45),
    0 0 28px rgba(255, 0, 0, 0.18);
}

.emag-hero-red__desc {
  margin: 0 0 26px;
  color: rgba(255,255,255,0.9);
  font-size: 22px;
  line-height: 1.45;
  max-width: 760px;
}

.emag-hero-red__btn.btn-explorar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(255, 0, 0, 0.6);
  background: linear-gradient(90deg, #130000 0%, #ff0000 50%, #130000 100%);
  background-size: 200% 100%;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  border-radius: 6px;
  box-shadow:
    0 0 14px rgba(255,0,0,0.25),
    inset 0 0 12px rgba(255,255,255,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.45s ease;
  position: relative;
  overflow: hidden;
}

.emag-hero-red__btn.btn-explorar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff2a2a, transparent);
}

.emag-hero-red__btn.btn-explorar:hover {
  transform: translateY(-2px);
  background-position: 100% 0;
  box-shadow:
    0 0 18px rgba(255,0,0,0.45),
    0 0 36px rgba(255,0,0,0.14);
}

.emag-hero-red__product-wrap {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.emag-hero-red__glow {
  position: absolute;
  bottom: 10px;
  width: 320px;
  height: 60px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.6) 0%, rgba(255, 0, 0, 0.12) 40%, transparent 75%);
  filter: blur(18px);
  opacity: 0.9;
}

.emag-hero-red__product {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  display: block;
  filter:
    drop-shadow(0 12px 18px rgba(0,0,0,0.65))
    drop-shadow(0 0 18px rgba(255,0,0,0.18));
  animation: emagFloat 3.4s ease-in-out infinite;
}

.emag-hero-red__dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 8px;
}

.emag-hero-red__dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
}

.emag-hero-red__dots span.active {
  background: #ff0000;
  box-shadow: 0 0 10px rgba(255,0,0,0.8);
}

@keyframes emagFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1100px) {
  .emag-hero-red__container {
    grid-template-columns: 1fr;
    padding: 32px 22px 54px;
    text-align: center;
  }

  .emag-hero-red__content {
    margin: 0 auto;
    max-width: 760px;
  }

  .emag-hero-red__product-wrap {
    min-height: 320px;
  }

  .emag-hero-red__product {
    max-height: 320px;
  }
}

@media (max-width: 640px) {
  .emag-hero-red {
    min-height: auto;
  }

  .emag-hero-red__container {
    min-height: auto;
    padding: 24px 14px 44px;
    gap: 12px;
  }

  .emag-hero-red__title {
    font-size: 34px;
    line-height: 1;
  }

  .emag-hero-red__desc {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .emag-hero-red__btn.btn-explorar {
    min-width: 180px;
    height: 44px;
    font-size: 11px;
    letter-spacing: 2px;
  }

  .emag-hero-red__product-wrap {
    min-height: 230px;
  }

  .emag-hero-red__product {
    max-height: 220px;
  }

  .emag-hero-red__bg {
    background:
      linear-gradient(135deg, transparent 0 28%, rgba(255, 0, 0, 0.24) 28.5%, rgba(255,255,255,0.85) 29%, transparent 29.5%) left 0 top 12% / 220px 120px no-repeat,
      linear-gradient(315deg, transparent 0 28%, rgba(255, 0, 0, 0.24) 28.5%, rgba(255,255,255,0.85) 29%, transparent 29.5%) right 0 center / 220px 120px no-repeat;
  }

  .emag-hero-red__grid,
  .emag-hero-red__hex {
    opacity: 0.4;
  }

  .emag-hero-red__dots {
    bottom: 10px;
  }
}
.emag-hero-red__dots {
  display: none !important;
}
.fps-showcase-red {
  width: 100%;
  background: #000;
  padding: 40px 20px;
  overflow: hidden;
  box-sizing: border-box;
}

.fps-showcase-red__container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.fps-showcase-red__slider {
  position: relative;
  width: 100%;
}

.fps-showcase-red__slide {
  display: none;
  align-items: stretch;
  gap: 26px;
  animation: fpsShowcaseFade 0.5s ease;
}

.fps-showcase-red__slide.active {
  display: flex;
}

@keyframes fpsShowcaseFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fps-showcase-red__main {
  flex: 1 1 72%;
  min-width: 0;
}

.fps-showcase-red__main-image {
  width: 100%;
  height: 450px;
  background: #050505;
  border: 1px solid rgba(255, 0, 0, 0.75);
  overflow: hidden;
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.08);
}

.fps-showcase-red__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.fps-showcase-red__main:hover .fps-showcase-red__main-image img {
  transform: scale(1.03);
}

.fps-showcase-red__main-content {
  padding-top: 22px;
}

.fps-showcase-red__main-content h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.fps-showcase-red__main-content p {
  margin: 0 0 22px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.5;
}

.fps-showcase-red__btn.btn-explorar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(90deg, #180000 0%, #ff0000 50%, #180000 100%);
  background-size: 200% 100%;
  border: 1px solid rgba(255, 0, 0, 0.65);
  box-shadow: 0 0 14px rgba(255, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.45s ease;
  position: relative;
  overflow: hidden;
}

.fps-showcase-red__btn.btn-explorar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff1a1a, transparent);
}

.fps-showcase-red__btn.btn-explorar:hover {
  transform: translateY(-2px);
  background-position: 100% 0;
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.45);
}

.fps-showcase-red__side {
  flex: 0 0 31%;
  max-width: 31%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #120000 0%, #050505 100%);
  border: 1px solid rgba(255, 0, 0, 0.35);
}

.fps-showcase-red__side-image {
  width: 100%;
  height: 100%;
  min-height: 595px;
  background: #0a0000;
}

.fps-showcase-red__side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.28) saturate(0.9);
}

.fps-showcase-red__side-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.28));
}

.fps-showcase-red__side-overlay span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: clamp(34px, 5vw, 78px);
  font-weight: 900;
  color: #ff1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 16px rgba(255, 0, 0, 0.2);
}

.fps-showcase-red__arrow {
  position: absolute;
  top: 245px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid #ff0000;
  background: rgba(0, 0, 0, 0.92);
  color: #ff0000;
  font-size: 28px;
  cursor: pointer;
  z-index: 8;
  transition: 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fps-showcase-red__arrow:hover {
  background: #ff0000;
  color: #fff;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.35);
}

.fps-showcase-red__prev {
  left: -14px;
}

.fps-showcase-red__next {
  right: -14px;
}

/* Tablet */
@media (max-width: 1100px) {
  .fps-showcase-red__slide.active {
    gap: 18px;
  }

  .fps-showcase-red__main-image {
    height: 380px;
  }

  .fps-showcase-red__side {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .fps-showcase-red__side-image {
    min-height: 520px;
  }

  .fps-showcase-red__main-content h2 {
    font-size: 24px;
  }

  .fps-showcase-red__main-content p {
    font-size: 16px;
  }

  .fps-showcase-red__arrow {
    top: 205px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .fps-showcase-red {
    padding: 24px 12px;
  }

  .fps-showcase-red__slide.active {
    display: block;
  }

  .fps-showcase-red__main {
    width: 100%;
  }

  .fps-showcase-red__main-image {
    height: 260px;
  }

  .fps-showcase-red__main-content {
    padding-top: 16px;
  }

  .fps-showcase-red__main-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .fps-showcase-red__main-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .fps-showcase-red__btn.btn-explorar {
    min-width: 180px;
    height: 44px;
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .fps-showcase-red__side {
    display: none;
  }

  .fps-showcase-red__arrow {
    top: 130px;
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .fps-showcase-red__prev {
    left: 2px;
  }

  .fps-showcase-red__next {
    right: 2px;
  }
}
.fps-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.fps-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #222;
  border: 2px solid #ff0000;
  cursor: pointer;
  transition: 0.3s;
}

.fps-dot.active {
  background: #ff0000;
  box-shadow: 0 0 10px red;
  transform: scale(1.2);
}
.checkout-register {
    margin-bottom: 12px;
    max-height: 190px;
    overflow-y: auto;
    padding-right: 4px;
}

.checkout-register input {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 6px;
    padding: 7px 9px;
    border-radius: 7px;
    border: 1px solid rgba(255, 0, 0, 0.55);
    background: #0a0a0a;
    color: #fff;
    outline: none;
    font-size: 0.8rem;
}