/* DirectGuide Premium Styles */
:root {
    --primary: #10b981; /* Esmeralda */
    --dark-bg: #0f172a;
    --glass: rgba(255, 255, 255, 0.8);
}

.nav-glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hero-premium {
    background: radial-gradient(circle at top right, #064e3b, var(--dark-bg));
    clip-path: ellipse(150% 100% at 50% 0%);
}

.product-card-premium {
    background: white;
    padding: 15px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.12);
}

/* Efecto de Píxel/Notificación */
#pixel-notification {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsividad extra para móviles */
@media (max-width: 768px) {
    .hero-premium h1 { font-size: 2.5rem; }
    .product-card-premium { margin-bottom: 1rem; }
}

/* Footer Styles */
.main-footer a {
    text-decoration: none;
    display: inline-block;
}

.main-footer i {
    font-size: 1.1rem;
}

/* Efecto suave para los enlaces del mapa del sitio */
.main-footer ul li a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transition: all 0.3s;
    font-size: 0.8rem;
}

.main-footer ul li a:hover::before {
    opacity: 1;
    margin-right: 12px;
}

/* Ajuste específico para pantallas muy pequeñas */
@media (max-width: 480px) {
    .main-footer {
        text-align: center;
    }
    .footer-brand form, .footer-brand .flex {
        justify-content: center;
    }
    .main-footer .flex {
        justify-content: center;
    }
}

/* Efecto de Header al hacer Scroll */
.nav-glass {
    transition: all 0.3s ease;
}

.nav-glass.scrolled {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Animación suave para el cambio de estado */
.nav-glass {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estado cuando el usuario baja la página */
.nav-glass.scrolled {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #10b981; /* Una línea delgada esmeralda al bajar */
}