 /* style.css */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

:root {
    --bg-dark: #0b0c10;
    --bg-card: #1f2833;
    --neon-blue: #66fcf1;
    --neon-green: #45a29e;
    --text-main: #c5c6c7;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, .menu-link { font-family: 'Orbitron', sans-serif; }

/* --- MENÚ INTERACTIVO --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; background: rgba(11, 12, 16, 0.95);
    border-bottom: 2px solid var(--neon-blue);
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 0 20px rgba(102, 252, 241, 0.2);
}

.logo { font-size: 1.8rem; color: var(--white); font-weight: bold; text-transform: uppercase; }
.logo span { color: var(--neon-blue); text-shadow: 0 0 10px var(--neon-blue); }

.nav-links { list-style: none; display: flex; gap: 30px; }

.menu-link {
    text-decoration: none; color: var(--white); font-size: 1rem;
    position: relative; transition: 0.3s;
}

.menu-link:hover { color: var(--neon-blue); text-shadow: 0 0 8px var(--neon-blue); }

/* Animación de subrayado */
.menu-link::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -5px; left: 0; background-color: var(--neon-blue);
    transition: width 0.3s ease-in-out;
}
.menu-link:hover::after { width: 100%; }

/* --- CARRETEL (MARQUEE) --- */
.hero-slider {
    margin: 50px 0; overflow: hidden; white-space: nowrap; position: relative;
}
.hero-slider::before, .hero-slider::after {
    content: ""; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2;
}
.hero-slider::before { left: 0; background: linear-gradient(to right, var(--bg-dark), transparent); }
.hero-slider::after { right: 0; background: linear-gradient(to left, var(--bg-dark), transparent); }

.slide-track {
    display: inline-block; animation: scroll 20s linear infinite;
}
.slide {
    display: inline-block; width: 300px; margin: 0 20px;
    border-radius: 10px; border: 1px solid var(--neon-green);
    overflow: hidden; box-shadow: 0 0 10px rgba(69, 162, 158, 0.3);
}
.slide img { width: 100%; height: 180px; object-fit: cover; display: block; }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Se mueve la mitad del track duplicado */
}

/* --- TIENDA GRID --- */
.container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 40px; color: var(--white); }

.grid-products {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px;
}

.card {
    background: var(--bg-card); padding: 20px; border-radius: 15px;
    border: 1px solid transparent; transition: 0.4s; position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: var(--neon-blue);
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(102, 252, 241, 0.2);
}

.card img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; margin-bottom: 15px; }

.card h3 { color: var(--white); margin-bottom: 10px; font-size: 1.2rem; }
.card p { font-size: 0.9rem; margin-bottom: 20px; color: #aaa; }
.card .price { font-size: 1.5rem; color: var(--neon-blue); font-weight: bold; display: block; margin-bottom: 15px; }

.btn {
    display: block; width: 100%; padding: 12px; text-align: center;
    background: transparent; border: 2px solid var(--neon-blue);
    color: var(--neon-blue); font-weight: bold; text-transform: uppercase;
    text-decoration: none; transition: 0.3s; border-radius: 5px; cursor: pointer;
}

.btn:hover { background: var(--neon-blue); color: #000; box-shadow: 0 0 15px var(--neon-blue); }

/* Footer simple */
footer { text-align: center; padding: 40px; margin-top: 50px; border-top: 1px solid #333; font-size: 0.8rem; }