/* --- CONFIGURACIÓN GENERAL --- */
:root {
    --bg-color: #050505;
    --card-bg: #121212;
    --text-main: #ffffff;
    --text-sec: #cccccc;
    --neon-accent: #d900ff; /* Morado Puff Zone */
    --neon-glow: 0 0 15px rgba(217, 0, 255, 0.5);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- NAVEGACIÓN (PC) --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(5, 5, 5, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.navbar .logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1001;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
    text-transform: uppercase;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--neon-accent);
    text-shadow: var(--neon-glow);
}

.mobile-only { display: none; }

/* Redes Sociales (PC) */
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icon {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s;
    filter: grayscale(100%); /* Efecto elegante */
}
.social-icon:hover {
    transform: scale(1.2);
    filter: grayscale(0%);
    text-shadow: var(--neon-glow);
}

/* Menú Hamburguesa */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 2000;
}
.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

/* --- HERO SECTION (FONDO QUE FUNCIONA - NO TOCAR) --- */
.hero {
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(5,5,5,0.3), rgba(5,5,5,1)), url('Gemini_Generated_Image_utxh7eutxh7eutxh.jfif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid #333;
    position: relative;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* --- UTILIDADES --- */
.neon-text { color: var(--neon-accent); text-shadow: var(--neon-glow); }
.text-center { text-align: center; }
.container-text { max-width: 1000px; margin: 0 auto; padding: 60px 20px; }

/* --- TARJETAS DE INFORMACIÓN (FAQ / MAYORISTAS) --- */
/* Eliminamos el texto plano y usamos cajas estilo Cyberpunk */

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid #333;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.info-card:hover {
    border-color: var(--neon-accent);
    background: rgba(20, 20, 20, 0.9);
    box-shadow: 0 0 15px rgba(217, 0, 255, 0.15);
    transform: translateY(-5px);
}

.info-card h3 {
    color: var(--neon-accent); /* Antes era blanco/times new roman */
    font-family: var(--font-heading);
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card p {
    color: #ccc;
    font-size: 0.95rem;
}

/* --- SECCIÓN DE PASOS (HOME) --- */
.steps-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.step-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid #333;
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    text-align: left;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    border-color: var(--neon-accent);
    box-shadow: 0 0 20px rgba(217, 0, 255, 0.2);
    transform: translateY(-5px);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -10px;
    right: 10px;
    font-weight: bold;
}

.step-title {
    color: var(--neon-accent);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- LISTAS ESTILIZADAS (MAYORISTAS) --- */
.neon-list {
    list-style: none;
    margin-top: 20px;
    padding: 20px;
    background: #111;
    border-radius: 10px;
    border-left: 3px solid var(--neon-accent);
}
.neon-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #ddd;
}

/* --- PRODUCTOS --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 5%;
}

.product-card {
    background-color: var(--card-bg);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    transition: 0.3s;
    position: relative;
}

.product-card:hover { border-color: var(--neon-accent); transform: translateY(-5px); }

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
    background-color: #000;
}

.product-info h3 { font-family: var(--font-heading); margin-bottom: 5px; font-size: 1.1rem; }
.price-tag { font-size: 1.4rem; color: var(--neon-accent); font-weight: bold; }
.badge-oferta { position: absolute; top: 10px; right: 10px; background: #ff0055; color: white; padding: 4px 8px; font-size: 0.8rem; border-radius: 4px; font-weight: bold; z-index: 10; }

.btn-buy {
    background: #333; color: white; border: none; padding: 8px 15px;
    cursor: pointer; border-radius: 4px; font-weight: bold; text-decoration: none; font-size: 0.9rem;
}
.btn-buy:hover { background: var(--neon-accent); color: black; }
.btn-neon {
    display: inline-block; padding: 12px 30px; background: transparent;
    color: var(--neon-accent); border: 2px solid var(--neon-accent);
    font-family: var(--font-heading); text-decoration: none;
    text-transform: uppercase; font-weight: bold; transition: 0.3s;
    box-shadow: var(--neon-glow); cursor: pointer; margin-top: 20px;
}
.btn-neon:hover { background: var(--neon-accent); color: #000; box-shadow: 0 0 25px var(--neon-accent); }

/* --- FOOTER --- */
footer {
    text-align: center; padding: 40px; border-top: 1px solid #333;
    background: #080808; color: #888;
}

/* --- MEDIA QUERIES (MÓVIL) --- */
@media (max-width: 768px) {
    .hamburger { display: block; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-links {
        position: fixed; left: -100%; top: 70px; gap: 0;
        flex-direction: column; background-color: rgba(0, 0, 0, 0.98);
        width: 100%; height: 100vh; text-align: center;
        transition: 0.3s; padding-top: 40px;
    }
    .nav-links.active { left: 0; }
    .nav-links li { margin: 25px 0; }
    .nav-links a { font-size: 1.5rem; }

    .mobile-only { display: block; }
    .social-icons { display: none; } /* Ocultar iconos de header en movil */
    
    .hero h1 { font-size: 2.5rem; }
    .step-card { width: 100%; }
}