/* Comportamiento general */
html { 
    scroll-behavior: smooth; 
}

/* Accesibilidad */
a:focus, button:focus, input:focus {
    outline: 3px solid #01a89e;
    outline-offset: 2px;
}

/* Sombra elegante (Neuromarketing) */
.neuromarketing-shadow { 
    box-shadow: 0 10px 40px -10px rgba(1, 168, 158, 0.2); 
}

/* Animaciones del Menú Móvil */
.mobile-menu-enter { 
    transform: translateX(100%); 
    transition: transform 0.3s ease-in-out; 
}
.mobile-menu-active { 
    transform: translateX(0); 
}

/* Animación de urgencia */
@keyframes pulse-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}
.animate-urgency { 
    animation: pulse-soft 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; 
}

/* Pestañas (Tabs) para Publicaciones */
.tab-content { 
    display: none; 
}
.tab-content.active { 
    display: block; 
    animation: fadeIn 0.5s ease-in-out; 
}
.tab-btn.active { 
    border-bottom: 4px solid #01a89e; 
    color: #01a89e; 
    font-weight: 700; 
}
@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(10px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* Ocultar barra de scroll en móviles para las pestañas */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }