/* ============================================
   MIDOJO NEON STUDIO - ESTILOS PROFESIONALES
   Tema oscuro premium con efectos neon reales
   Optimizado para conversiones y velocidad
   Responsive mobile-first
============================================ */

/* RESET Y VARIABLES GLOBALES */
:root {
    /* PALETA DE COLORES NEON */
    --neon-pink: #ff00ff;
    --neon-blue: #00ffff;
    --neon-yellow: #ffff00;
    --neon-green: #00ff00;
    --neon-red: #ff0000;
    --neon-purple: #9d00ff;
    
    /* COLORES DE FONDO */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: #111118;
    --bg-card-hover: #1a1a25;
    
    /* COLORES DE TEXTO */
    --text-light: #ffffff;
    --text-gray: #b0b0c0;
    --text-muted: #8888a0;
    
    /* COLORES DE BOTONES */
    --primary-color: var(--neon-pink);
    --secondary-color: var(--neon-blue);
    --whatsapp-color: #25d366;
    
    /* SOMBRAS NEON */
    --shadow-neon-pink: 0 0 10px var(--neon-pink), 
                       0 0 20px var(--neon-pink), 
                       0 0 30px var(--neon-pink);
    --shadow-neon-blue: 0 0 10px var(--neon-blue), 
                       0 0 20px var(--neon-blue), 
                       0 0 30px var(--neon-blue);
    --shadow-neon-yellow: 0 0 10px var(--neon-yellow), 
                         0 0 20px var(--neon-yellow), 
                         0 0 30px var(--neon-yellow);
    
    /* TRANSICIONES */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* BORDES */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    /* ESPACIADO */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
}

/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* FONDO CON LÍNEAS NEON ZIGZAG */
.neon-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.neon-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-color), transparent);
    filter: blur(1px);
    opacity: 0.3;
    animation: neonMove 8s linear infinite;
}

@keyframes neonMove {
    0% {
        transform: translateX(-100%) translateY(var(--start-y)) rotate(var(--angle));
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateX(100%) translateY(var(--end-y)) rotate(var(--angle));
        opacity: 0;
    }
}

/* CONTENEDOR PRINCIPAL */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* BOTONES FLOTANTES */
.floating-buttons {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-md);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.float-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.float-btn:hover::before {
    opacity: 1;
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.whatsapp-float {
    background: linear-gradient(135deg, var(--whatsapp-color), #128C7E);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.call-float {
    background: linear-gradient(135deg, var(--neon-blue), #0088cc);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.location-float {
    background: linear-gradient(135deg, var(--neon-pink), #cc00cc);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

/* HEADER Y NAVEGACIÓN */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 0, 255, 0.1);
    z-index: 100;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-neon {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-gray);
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-md);
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.1), transparent);
    transition: left var(--transition-medium);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light);
    background: rgba(255, 0, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* HERO SECTION */
.hero {
    padding-top: 140px;
    padding-bottom: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 0, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* TÍTULO NEON CON EFECTO DE PARPADEO - MODIFICADO */
.neon-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: var(--space-lg);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.2rem;
}

.neon-letter {
    display: inline-block;
    color: var(--color);
    text-shadow: 0 0 5px var(--color),
                 0 0 10px var(--color),
                 0 0 20px var(--color),
                 0 0 40px var(--color);
    animation: neonBlink 6s infinite;
    animation-delay: calc(var(--index) * 0.1s);
    position: relative;
    opacity: 1;
    filter: brightness(1);
}

.neon-letter::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color);
    filter: blur(3px);
    opacity: 0.7;
}

.neon-space {
    width: 1rem;
}

/* ANIMACIÓN MODIFICADA: INICIA ENCENDIDO Y PARPADEA OCASIONALMENTE */
@keyframes neonBlink {
    0%, 85% {
        opacity: 1;
        filter: brightness(1);
    }
    86%, 89%, 92%, 95%, 98% {
        opacity: 0.3;
        filter: brightness(0.3);
    }
    87%, 90%, 93%, 96%, 99%, 100% {
        opacity: 1;
        filter: brightness(1);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.highlight {
    color: var(--neon-blue);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

/* BOTONES GENERALES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-medium);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.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.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: white;
    box-shadow: 0 4px 20px rgba(255, 0, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 255, 0.6);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp-color), #128C7E);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.btn-block {
    width: 100%;
}

/* INFORMACIÓN DE CONTACTO EN HERO */
.contact-info {
    background: rgba(17, 17, 24, 0.8);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
    border: 1px solid rgba(255, 0, 255, 0.2);
    backdrop-filter: blur(10px);
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--text-gray);
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: var(--neon-blue);
    font-size: 1.2rem;
    min-width: 24px;
}

/* SECCIONES DE PRODUCTOS */
.products-section {
    padding: var(--space-xl) 0;
    position: relative;
}

.products-section:nth-child(odd) {
    background: rgba(5, 5, 8, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title i {
    color: var(--neon-pink);
    font-size: 2rem;
}

.neon-text {
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* CONTENEDOR DE PRODUCTOS */
.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

/* TARJETAS DE PRODUCTO */
.product-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 0, 255, 0.1);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 0, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(255, 0, 255, 0.1);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #222233, #1a1a25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.upload-instruction {
    font-size: 0.9rem;
    text-align: center;
    padding: 0 var(--space-sm);
    opacity: 0.7;
}

.product-info {
    padding: var(--space-md);
}

.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-title i {
    color: var(--neon-blue);
}

.product-description {
    color: var(--text-gray);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-yellow);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
}

.product-actions {
    display: flex;
    gap: var(--space-sm);
}

.btn-whatsapp-small {
    flex: 1;
    background: linear-gradient(135deg, var(--whatsapp-color), #128C7E);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition-medium);
}

.btn-whatsapp-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-details {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition-medium);
}

.btn-details:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* SECCIÓN DE CONTACTO */
.contact-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, var(--bg-darker), var(--bg-dark));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

/* TARJETA DE INFORMACIÓN DE CONTACTO */
.contact-info-card,
.contact-form-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(255, 0, 255, 0.1);
}

.contact-info-card h3,
.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-card h3 i {
    color: var(--neon-pink);
}

.contact-form-card h3 i {
    color: var(--neon-blue);
}

.contact-details {
    margin-bottom: var(--space-xl);
}

.detail-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--neon-pink);
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.detail-content p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.detail-content a {
    color: var(--neon-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.detail-content a:hover {
    color: var(--neon-pink);
    text-decoration: underline;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.quick-contact {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn-whatsapp-large,
.btn-call-large {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition-medium);
}

.btn-whatsapp-large {
    background: linear-gradient(135deg, var(--whatsapp-color), #128C7E);
    color: white;
}

.btn-whatsapp-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-call-large {
    background: linear-gradient(135deg, var(--neon-blue), #0088cc);
    color: white;
}

.btn-call-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
}

/* FORMULARIO DE CONTACTO */
.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--neon-blue);
    width: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    background: rgba(255, 255, 0, 0.1);
    border-left: 3px solid var(--neon-yellow);
    padding: 1rem;
    margin-bottom: var(--space-lg);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.form-note p {
    color: var(--text-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-note i {
    color: var(--neon-yellow);
    margin-top: 0.2rem;
}

/* FOOTER */
.footer {
    background: var(--bg-darker);
    padding: var(--space-xl) 0 var(--space-md);
    border-top: 1px solid rgba(255, 0, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand {
    grid-column: span 2;
}

.footer .logo {
    margin-bottom: var(--space-md);
}

.footer-description {
    color: var(--text-gray);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: all var(--transition-medium);
}

.footer-social a:hover {
    background: var(--neon-pink);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-map h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '→';
    color: var(--neon-pink);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-light);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--neon-blue);
    width: 20px;
}

.mini-map {
    display: block;
    text-decoration: none;
}

.map-placeholder {
    background: rgba(255, 0, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 0, 255, 0.1);
}

.map-placeholder:hover {
    background: rgba(255, 0, 255, 0.1);
    border-color: var(--neon-pink);
    transform: translateY(-3px);
}

.map-placeholder i {
    font-size: 2rem;
    color: var(--neon-pink);
    margin-bottom: 0.5rem;
}

.map-placeholder span {
    color: var(--text-light);
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-legal {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .neon-title {
        font-size: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        padding: var(--space-md);
        border-top: 1px solid rgba(255, 0, 255, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-medium);
        z-index: 99;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .neon-title {
        font-size: 2.5rem;
        justify-content: center;
    }
    
    .neon-letter {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .products-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .quick-contact {
        flex-direction: column;
    }
    
    .btn-whatsapp-large,
    .btn-call-large {
        min-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-brand {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .neon-title {
        font-size: 2rem;
    }
    
    .neon-letter {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .products-container {
        grid-template-columns: 1fr;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .floating-buttons {
        bottom: var(--space-md);
        right: var(--space-sm);
    }
}

/* ANIMACIONES ADICIONALES */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ESTILOS PARA SCROLLBAR PERSONALIZADA */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-pink), var(--neon-blue));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-pink), var(--neon-purple));
}

/* UTILIDADES DE DISEÑO */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-2 {
    margin-top: 2rem;
}

/* EFECTO DE BRILLO PARA ELEMENTOS NEON */
.neon-glow {
    position: relative;
}

.neon-glow::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.7;
}