.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.scenographer-line-v {
    width: 0.5px;
    background-color: currentColor;
    opacity: 0.3;
}

.scenographer-line-h {
    height: 0.5px;
    background-color: currentColor;
    opacity: 0.3;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(12px);
    transition: opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.6s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
}
.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }

/* Parallax background utility */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Hide scrollbar */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Services: garante reset no mobile */
@media (max-width: 767px) {
    #services-sticky {
        position: static !important;
        height: auto !important;
        overflow: visible !important;
    }
    #services-scroll-container {
        transform: none !important;
        width: 100% !important;
    }
}

/* ── Service galleries ────────────────────────────────────────────────────── */

/* Mobile: imagens empilhadas */
.svc-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}
.svc-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
}
.svc-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Desktop: galeria com posicionamento absoluto */
@media (min-width: 768px) {
    .svc-gallery {
        display: block;
        position: relative;
        flex-shrink: 0;
        width: 50vw;
        max-width: 900px;
        height: 100%;
        /* overflow removed so images don't get clipped during parallax shift */
    }
    .svc-img {
        position: absolute;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        transform-origin: center center;
        backface-visibility: hidden;
    }
    .svc-img img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform-origin: center center;
        backface-visibility: hidden;
    }

    /* ── Layout Unificado para Todas as Sessões ── */
    .svc-img-a1, .svc-img-b1, .svc-img-c5 { left:  5%; top: 10vh; width: 55%; z-index: 3; }
    .svc-img-a3, .svc-img-b2, .svc-img-c1 { left: 45%; top: 35vh; width: 50%; z-index: 4; }
    .svc-img-a4, .svc-img-b4, .svc-img-c6 { left: 50%; top:  5vh; width: 42%; z-index: 2; }
}

/* Header slide-up/down */
#main-header {
    transform: translateY(0);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
#main-header.header-hidden {
    transform: translateY(-110%);
}

/* Esconde a logo flutuante junto com o header */
.logo-hidden {
    transform: translateY(-150px) !important;
}

/* Mobile menu slide-in from right */
#mobile-menu {
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
#mobile-menu.is-open {
    transform: translateX(0);
}
