:root {
    --primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --neon-blue: #00ffff;
    --neon-pink: #ff00ff;
    --neon-green: #00ff00;
}

/* OCULTAR COMPLETAMENTE TODAS AS BARRAS DE ROLAGEM */
html, body {
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Webkit browsers (Chrome, Safari, Opera) */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
    display: none;
    width: 0px;
    height: 0px;
    background: transparent;
}

*::-webkit-scrollbar-track {
    display: none;
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    display: none;
    background: transparent;
}

*::-webkit-scrollbar-corner {
    display: none;
    background: transparent;
}

/* Para todos os elementos */
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    cursor: none;
    max-width: 100vw;
    width: 100%;
}

/* CURSOR CUSTOMIZADO FUTURÍSTICO */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--neon-blue), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.custom-cursor::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse-cursor 2s infinite;
}

@keyframes pulse-cursor {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.5; }
}

/* LOADING SCREEN ÉPICO - SÓ PRIMEIRA VEZ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #000, #1a1a1a, #000);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 1s ease;
}

.loading-animation {
    text-align: center;
}

.loading-text {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink), var(--neon-green));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 2s ease-in-out infinite, glow 1.5s ease-in-out infinite alternate;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 20px auto;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    width: 0%;
    animation: loading-fill 3s ease-in-out;
}

@keyframes loading-fill {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glow {
    from { text-shadow: 0 0 20px var(--neon-blue); }
    to { text-shadow: 0 0 30px var(--neon-pink), 0 0 40px var(--neon-pink); }
}

/* HEADER FUTURÍSTICO */
.futuristic-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px var(--neon-blue);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* BUSCA MELHORADA */
.search-container {
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
    position: relative;
}

.search-input {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border-radius: 25px;
    outline: none;
    transition: all 0.3s ease;
    width: 200px;
}

.search-input:focus {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    border-color: var(--neon-blue);
    width: 250px;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-button {
    position: absolute;
    right: 5px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

.search-button i {
    color: #000;
    font-size: 0.9rem;
}

.cart-button {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-button:hover {
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(45deg, var(--neon-pink), #ff0080);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* HERO SECTION ORIGINAL COM GIF MANTIDO */
.hero {
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, #000, #1a1a1a);
    overflow: hidden;
    margin-top: 80px;
}

.hero img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 10;
    text-align: center;
}

.hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease;
    margin-top: 1rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink), var(--neon-green));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SEÇÃO DE AÇÕES ORIGINAL MANTIDA E MELHORADA */
.action-buttons {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.action-buttons .flex {
    display: flex;
    gap: 2rem;
}

.action-buttons .flex-1 {
    flex: 1;
}

.whatsapp-btn {
    display: block;
    width: 100%;
    text-center;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.pix-btn {
    display: block;
    width: 100%;
    text-center;
    background: linear-gradient(135deg, #32d74b, #00c851);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pix-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(50, 215, 75, 0.4);
}

.pix-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.pix-btn:hover::before {
    left: 100%;
}

/* MODAL FLUTUANTE PIX COMPACTO */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 2px solid var(--neon-green);
    border-radius: 20px;
    padding: 1.5rem;
    max-width: 400px;
    width: 90%;
    max-height: 80vh;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 255, 0, 0.3);
    transform: scale(0.7);
    transition: all 0.3s ease;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-content::-webkit-scrollbar {
    display: none;
    width: 0px;
    background: transparent;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--neon-green);
    padding-bottom: 0.8rem;
}

.modal-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neon-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--neon-pink);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.3rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 0, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    color: #fff;
    line-height: 1.5;
    font-size: 0.9rem;
}

.modal-body p {
    margin-bottom: 0.8rem;
}

.pix-highlight {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 10px;
    padding: 0.8rem;
    margin: 0.8rem 0;
    text-align: center;
}

.pix-icon {
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 0.3rem;
}

.modal-body h4 {
    color: var(--neon-green);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.modal-body ul {
    list-style: none;
    padding: 0;
}

.modal-body li {
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-body li i {
    width: 16px;
    text-align: center;
}

/* FILTRO FUTURÍSTICO */
.quantum-filter {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.filter-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-select {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 1rem;
    border-radius: 15px;
    width: 100%;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.filter-select:focus {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    border-color: var(--neon-blue);
}

.filter-select option {
    background: #1a1a1a;
    color: #fff;
}

/* RESULTADOS DE BUSCA */
.search-results {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--neon-blue);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.search-results-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--neon-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.clear-search {
    background: linear-gradient(45deg, var(--neon-pink), #ff0080);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-left: auto;
}

.clear-search:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
}

/* GRID DE PRODUTOS COM IMAGENS OTIMIZADAS - ALTURA REDUZIDA NO PC */
.quantum-products {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
}

.category-section {
    margin-bottom: 3rem;
}

.category-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink), var(--neon-green));
    transition: left 0.5s ease;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-8px) rotateX(3deg);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.2);
}

/* CONTAINER DA IMAGEM OTIMIZADO - ALTURA MENOR NO PC */
.product-image-container {
    width: 100%;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin: 0 auto 1rem auto;
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 12px;
}

/* IMAGEM RESPONSIVA OTIMIZADA */
.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.product-card:hover .product-image-container {
    border-color: var(--neon-blue);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.product-card:hover .product-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--neon-blue);
    line-height: 1.3;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--neon-green);
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px var(--neon-green);
}

/* SEÇÃO DISPONÍVEL ORIGINAL SIMPLES */
.product-stock {
    opacity: 0.8;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
}

.product-buy {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    color: #000;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.product-buy:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 0, 255, 0.5);
}

.promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ff0080, #ff8000);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    animation: pulse-badge 2s infinite;
    text-transform: uppercase;
    z-index: 10;
}

@keyframes pulse-badge {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* FOOTER CIBERNÉTICO SIMPLES */
.cyber-footer {
    background: linear-gradient(135deg, #000, #1a1a1a);
    padding: 3rem 2rem 1rem;
    border-top: 1px solid var(--glass-border);
    position: relative;
    margin-bottom: 100px;
}

.cyber-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-pink), var(--neon-green), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.social-link {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
}

.social-link:hover {
    color: var(--neon-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

.footer-text {
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--neon-pink);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

/* BOTÃO FLUTUANTE QUÂNTICO */
.quantum-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    color: #000;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
}

.quantum-float:hover {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
}

/* PLAYER DE RÁDIO MODERNO NO RODAPÉ */
.radio-footer-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(25px);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--neon-blue), var(--neon-pink), var(--neon-green)) 1;
    z-index: 1001;
    padding: 20px;
    box-shadow: 0 -15px 40px rgba(0, 255, 255, 0.4);
    transition: all 0.4s ease;
    animation: radioGlow 3s ease-in-out infinite alternate;
}

@keyframes radioGlow {
    0% { box-shadow: 0 -15px 40px rgba(0, 255, 255, 0.4); }
    100% { box-shadow: 0 -20px 50px rgba(255, 0, 255, 0.5); }
}

.radio-footer-player:hover {
    transform: translateY(-3px);
    box-shadow: 0 -25px 60px rgba(0, 255, 255, 0.6);
}

.radio-player-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.radio-controls-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.radio-play-button {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.radio-play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.radio-play-button:hover::before {
    left: 100%;
}

.radio-play-button:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 255, 255, 0.7);
}

.radio-play-button i {
    color: #000;
    font-size: 1.4rem;
    font-weight: bold;
}

.radio-info-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.radio-station-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink), var(--neon-green));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease-in-out infinite;
    text-shadow: 0 0 15px var(--neon-blue);
}

.radio-status-text {
    font-size: 1rem;
    color: #fff;
    opacity: 0.9;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.radio-visualizer-container {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 8px 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.radio-wave-bar {
    width: 5px;
    background: linear-gradient(to top, var(--neon-green), var(--neon-blue), var(--neon-pink));
    border-radius: 3px;
    animation: radio-wave-animation 1.2s ease-in-out infinite;
    animation-play-state: paused;
    box-shadow: 0 0 10px currentColor;
}

.radio-wave-bar:nth-child(1) { animation-delay: 0s; }
.radio-wave-bar:nth-child(2) { animation-delay: 0.15s; }
.radio-wave-bar:nth-child(3) { animation-delay: 0.3s; }
.radio-wave-bar:nth-child(4) { animation-delay: 0.45s; }
.radio-wave-bar:nth-child(5) { animation-delay: 0.6s; }
.radio-wave-bar:nth-child(6) { animation-delay: 0.75s; }
.radio-wave-bar:nth-child(7) { animation-delay: 0.9s; }

@keyframes radio-wave-animation {
    0%, 100% { height: 10px; opacity: 0.6; }
    50% { height: 35px; opacity: 1; }
}

.radio-controls-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.radio-volume-control {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 8px 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.radio-volume-button {
    background: none;
    border: none;
    color: var(--neon-green);
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 50%;
}

.radio-volume-button:hover {
    color: var(--neon-pink);
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.1);
}

.radio-volume-range {
    width: 100px;
    height: 6px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2), rgba(0, 255, 255, 0.3));
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    transition: all 0.3s ease;
}

.radio-volume-range:hover {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(0, 255, 255, 0.5));
}

.radio-volume-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.radio-volume-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.radio-volume-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.radio-minimize-button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 255, 0.3);
    color: var(--neon-pink);
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.radio-minimize-button:hover {
    color: var(--neon-blue);
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
}

/* PLAYER MINIMIZADO */
.radio-footer-player.minimized {
    padding: 12px 20px;
    animation: none;
}

.radio-footer-player.minimized .radio-info-section,
.radio-footer-player.minimized .radio-visualizer-container,
.radio-footer-player.minimized .radio-volume-control {
    display: none;
}

.radio-footer-player.minimized .radio-player-container {
    justify-content: center;
    gap: 15px;
}

.radio-footer-player.minimized .radio-play-button {
    width: 45px;
    height: 45px;
}

.radio-footer-player.minimized .radio-minimize-button {
    transform: rotate(180deg);
}

/* EFEITO DE PULSAÇÃO QUANDO TOCANDO */
.radio-footer-player.playing {
    animation: radioPlaying 2s ease-in-out infinite alternate;
}

@keyframes radioPlaying {
    0% { 
        border-image: linear-gradient(90deg, var(--neon-blue), var(--neon-pink)) 1;
        box-shadow: 0 -15px 40px rgba(0, 255, 255, 0.4);
    }
    100% { 
        border-image: linear-gradient(90deg, var(--neon-pink), var(--neon-green)) 1;
        box-shadow: 0 -20px 50px rgba(255, 0, 255, 0.6);
    }
}

/* EFEITO ESPECIAL QUANDO CARREGANDO */
.radio-footer-player.loading {
    animation: radioLoading 1.5s ease-in-out infinite;
}

@keyframes radioLoading {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* RESPONSIVIDADE OTIMIZADA - CELULAR MANTÉM TAMANHO BOM */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .product-image-container {
        height: 240px;
        padding: 10px;
    }
    
    .product-card {
        min-height: 500px;
    }

    .radio-player-container {
        gap: 20px;
    }
    
    .radio-controls-left {
        gap: 15px;
    }
    
    .radio-volume-range {
        width: 80px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .header-content {
        padding: 1rem;
    }
    
    .search-input {
        width: 150px;
    }

    .search-input:focus {
        width: 180px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
    }
    
    /* CELULAR MANTÉM TAMANHO ORIGINAL QUE ESTAVA BOM */
    .product-image-container {
        height: 240px;
        padding: 10px;
    }
    
    .product-card {
        padding: 1rem;
        min-height: 460px;
    }
    
    .action-buttons .flex {
        flex-direction: column;
        gap: 1rem;
    }

    .modal-content {
        width: 95%;
        padding: 1.2rem;
        max-width: 350px;
    }

    .modal-title {
        font-size: 1rem;
    }

    .modal-body {
        font-size: 0.85rem;
    }

    .cyber-footer {
        margin-bottom: 120px;
    }

    .radio-footer-player {
        padding: 15px;
    }
    
    .radio-player-container {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .radio-controls-left {
        gap: 12px;
    }

    .radio-play-button {
        width: 50px;
        height: 50px;
    }

    .radio-station-name {
        font-size: 1.1rem;
    }

    .radio-status-text {
        font-size: 0.9rem;
    }

    .radio-volume-range {
        width: 70px;
    }

    .radio-visualizer-container {
        height: 35px;
        padding: 6px 12px;
    }

    .radio-wave-bar {
        width: 4px;
    }

    @keyframes radio-wave-animation {
        0%, 100% { height: 8px; opacity: 0.6; }
        50% { height: 30px; opacity: 1; }
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    /* CELULAR MANTÉM TAMANHO ORIGINAL QUE ESTAVA BOM */
    .product-image-container {
        height: 220px;
        padding: 8px;
    }
    
    .product-card {
        min-height: 440px;
    }
    
    .quantum-products {
        padding: 1rem;
    }

    .modal-content {
        max-width: 320px;
        padding: 1rem;
    }

    .cyber-footer {
        margin-bottom: 140px;
    }

    .radio-footer-player {
        padding: 12px;
    }

    .radio-player-container {
        flex-direction: column;
        gap: 12px;
    }

    .radio-controls-left {
        gap: 10px;
    }

    .radio-play-button {
        width: 45px;
        height: 45px;
    }

    .radio-play-button i {
        font-size: 1.2rem;
    }

    .radio-station-name {
        font-size: 1rem;
    }

    .radio-status-text {
        font-size: 0.8rem;
    }

    .radio-volume-range {
        width: 60px;
    }

    .radio-controls-right {
        gap: 15px;
    }

    .radio-visualizer-container {
        height: 30px;
        padding: 5px 10px;
        gap: 3px;
    }

    .radio-wave-bar {
        width: 3px;
    }

    @keyframes radio-wave-animation {
        0%, 100% { height: 6px; opacity: 0.6; }
        50% { height: 25px; opacity: 1; }
    }
}

/* ANIMAÇÕES ESPECIAIS */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* EFEITO MATRIX ORIGINAL */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.1;
}
