/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 14 2025 | 16:27:07 */
.site-header {
    background-color: rgba(51, 0, 118, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 100;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.mobile-site-header {
    background-color: rgba(51, 0, 118, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
/*     transition: transform 0.3s ease; */
/*     transform: translateY(0); /* visible por defecto */ */
}

.mobile-site-header.hide-on-scroll {
	background-color: rgba(51, 0, 118, 0.9) !important;
    transform: translateY(-100%); /* oculta hacia arriba */
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}

.site-header.scrolled {
    background-color: rgba(51, 0, 118, 0.9) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}
