:root {
    --bg-dark: #020202; /* Un negro más profundo */
    --neon-green: #22c55e;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: #e5e7eb;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.nav-glass {
    background: rgba(2, 2, 2, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

/* Efectos Cinematográficos */
.hero-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 120vw;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.05) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* Botones con brillo neón */
.btn-primary {
    background: var(--neon-green);
    color: #000;
    padding: 0.75rem 1.75rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.4);
    background: #4ade80;
}

.btn-secondary {
    background: #fff;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #f3f4f6;
    transform: scale(1.02);
}

/* Inputs Modernos */
.search-input {
    background: transparent;
    flex: 1;
    padding: 1rem 1.5rem;
    outline: none;
    color: #fff;
    font-size: 0.9rem;
}

/* Animación Reveal */
.reveal {
    animation: reveal 1s cubic-bezier(0.2, 1, 0.3, 1);
}

@keyframes reveal {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Estilo de enlaces */
.nav-link {
    color: #9ca3af;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--neon-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--neon-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Utilidades adicionales para el Marketplace */
.glass-inner {
    background: rgba(255, 255, 255, 0.02);
}

.active-link {
    color: var(--neon-green) !important;
}

.active-link::after {
    width: 100% !important;
}

select option {
    background-color: var(--bg-dark);
    color: white;
}

/* Scrollbar estilizado para el sidebar */
aside::-webkit-scrollbar {
    width: 4px;
}
aside::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

/* Botón primario pequeño para tarjetas */
.btn-primary-sm {
    background: var(--neon-green);
    color: #000;
    padding: 0.5rem 1.25rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
}

.btn-primary-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.4);
}

/* Efectos de la tarjeta destacada */
.featured-card {
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.featured-card:hover {
    transform: translateY(-10px);
}

/* Animación de pulso para el badge de verificado */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Botón de WhatsApp con su color oficial */
.btn-whatsapp {
    background: #25D366;
    color: black;
    padding: 0.75rem 1.75rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.3);
}

/* Glass light para los items del catálogo */
.glass-light {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-light:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Efecto para imágenes de galería */
.aspect-square img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.aspect-square:hover img {
    opacity: 1;
}

/* Wizard Steps */
.step-content {
    display: none;
}
.step-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.step-dot {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: #4b5563;
    transition: all 0.4s ease;
    z-index: 10;
}

.step-dot.active {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
}

/* Inputs */
.input-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    outline: none;
    color: white;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}

.input-field:focus {
    border-color: var(--neon-green);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sidebar Links */
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.03);
}

.sidebar-link.active {
    color: var(--neon-green);
    background: rgba(34, 197, 94, 0.05);
}

/* Efectos de Glassmorphism específicos para el Dashboard */
.glass {
    transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1), border-color 0.3s ease;
}

.glass:hover {
    border-color: rgba(34, 197, 94, 0.2);
}

/* Oculta la barra de desplazamiento pero permite scrollear */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* style.css */

/* Mantenemos el pulso */
@keyframes bot-pulse {
    0% { box-shadow: 0 0 10px rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 25px rgba(34, 197, 94, 0.7); }
    100% { box-shadow: 0 0 10px rgba(34, 197, 94, 0.4); }
}

.bot-pulsing {
    animation: bot-pulse 2.5s infinite;
}

/* Ajustamos el contenedor del logo */
.vrn-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000; /* Fondo negro para que resalte el logo si es transparente */
    border-radius: 50%; /* Cambiamos a circular para que combine con el botón */
    overflow: hidden;   /* Para que la imagen no se salga de los bordes */
    border: 2px solid #22c55e; /* Un borde neón fino */
}

.vrn-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Esto asegura que el logo llene el círculo sin deformarse */
}