/* Archivo: assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Poppins:wght@300;400;600&display=swap');

:root {
    --bg-dark: #050505; /* A迆n m芍s oscuro para que resalte el ne車n */
    --bg-card: rgba(20, 20, 20, 0.7);
    --neon-green: #00ff9f;
    --dark-green: #003d2b;
    --text-white: #ffffff;
    --text-muted: #a0a0a0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, .font-orbitron {
    font-family: 'Orbitron', sans-serif;
}

/* Efectos Ne車n Ultra-Profesionales */
.text-neon {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 159, 0.5), 0 0 20px rgba(0, 255, 159, 0.3);
}

.btn-neon {
    background-color: transparent;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    padding: 10px 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.4s ease;
    box-shadow: inset 0 0 5px rgba(0,255,159,0.2), 0 0 10px rgba(0,255,159,0.2);
}

.btn-neon:hover {
    background-color: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--neon-green), 0 0 40px var(--neon-green);
    transform: translateY(-2px);
}

/* Hero Section Impactante */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(to right, rgba(5, 5, 5, 0.95) 20%, rgba(5, 5, 5, 0.6) 100%), url('https://images.unsplash.com/photo-1616469829581-73993eb86b02?w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(0, 255, 159, 0.2);
}

/* Cards de Productos (Efecto Cristal) */
.product-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--neon-green);
    box-shadow: 0 15px 40px rgba(0, 255, 159, 0.15);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 2px solid rgba(0, 255, 159, 0.3);
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--neon-green);
    font-family: 'Orbitron', sans-serif;
}

/* Navbar Glassmorphism */
.navbar-glass {
    background: rgba(5, 5, 5, 0.7) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 255, 159, 0.15);
    padding: 15px 0;
    transition: all 0.3s ease;
}

/* Bot車n WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    color: white;
    transform: scale(1.1) rotate(10deg);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 25px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Animaciones de scroll */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Estilizaci車n de Scrollbar para que se vea tecnol車gica */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--dark-green);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green);
}