/* ---- HAMBURGER BUTTON ---- */
.menu-toggle {
    display: none;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    z-index: 9999;
}

/* desktop */
.primary-menu {
    display: flex;
    align-items: center;
}

.expand-blur {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* BACKGROUND VIDEO */
.expand-blur .hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: auto;
    transform: translate(-50%, -50%) scale(1.6);
    filter: blur(35px) brightness(0.6);
    opacity: 0.9;
    object-fit: cover;
    pointer-events: none;
}

/* VIDEO CENTRAL NORMAL */
.expand-blur .hero-video.main {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    z-index: 2;
}

/* Overlay e textos continuarão iguais */
.hero-overlay {
    position: relative;
    z-index: 3;
    color: white;
}


/* Fix para Safari iPhone */
@supports (-webkit-touch-callout: none) {
    .expand-blur,
    .hero-video-container {
        height: calc(100vh + 60px);
        margin-top: -60px;
    }
}
