/* Navegación sticky - AGREGAR */
.header-main {
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-main.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Si ya tienes .header-inner, agregar solo la transición */
.header-inner {
    transition: all 0.3s ease;
}

/* AGREGAR esta nueva regla */
.header-main.sticky .header-inner {
    min-height: 60px; /* Ajusta según tu altura actual */
}

/* Si ya tienes .logo img, agregar solo la transición */
.logo img {
    transition: all 0.3s ease;
}

/* AGREGAR esta nueva regla */
.header-main.sticky .logo img {
    width: 180px !important; /* Ajusta según tu tamaño deseado */
}