/* Estilos para Vaesis Mobile Landing */

/* Sombra suave para los marcos de teléfono */
.mockup-shadow {
    box-shadow: 0 0 50px -10px rgba(255, 255, 255, 0.15);
}

/* Animaciones de entrada */
.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll suave para toda la página */
html {
    scroll-behavior: smooth;
}

/* Ocultar barra de scroll en móviles si es necesario */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #000; 
}
::-webkit-scrollbar-thumb {
    background: #333; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

/* Estilos para el menú móvil */
.mobile-menu-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.95);
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}
