.hero-video {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #000;
    overflow: hidden;
    box-shadow: 0 8px 6px -6px black;
    aspect-ratio: 1600 / 592;
}

.hero-video-media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #000;
}

.hero-video-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-video-fallback {
    display: block;
    width: 100%;
    height: auto;
}

.hero-video-sound {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.62);
    color: #fff;
    font-family: 'OpenSansSemiBold', Arial, sans-serif;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.hero-video-sound:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(-1px);
}

.hero-video-sound:focus-visible {
    outline: 2px solid #ffcc00;
    outline-offset: 2px;
}

.hero-video-sound i {
    font-size: 16px;
}

.hero-video-sound[aria-pressed="true"] {
    border-color: #ffcc00;
    color: #ffcc00;
}

.hero-video-scroll {
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.62);
    color: #fff;
    text-decoration: none;
    transform: translateX(-50%);
    animation: hero-scroll-bob 1.9s ease-in-out infinite;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.hero-video-scroll:hover,
.hero-video-scroll:focus-visible {
    border-color: #ffcc00;
    background: rgba(0, 0, 0, 0.85);
    color: #ffcc00;
    text-decoration: none;
}

.hero-video-scroll:focus-visible {
    outline: 2px solid #ffcc00;
    outline-offset: 3px;
}

.hero-video-scroll-arrow {
    width: 15px;
    height: 15px;
    margin-top: -5px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    border-radius: 2px;
    transform: rotate(45deg);
}

@keyframes hero-scroll-bob {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

#lista-ingressos {
    scroll-margin-top: 0;
}

@media (max-width: 767px) {
    .hero-video {
        aspect-ratio: 16 / 9;
        box-shadow: none;
    }

    .hero-video-media {
        object-fit: contain;
    }

    .hero-video-sound {
        top: 10px;
        right: 10px;
        bottom: auto;
        padding: 8px 12px;
        font-size: 12px;
    }

    .hero-video-scroll {
        bottom: 10px;
        width: 38px;
        height: 38px;
    }

    .hero-video-scroll-arrow {
        width: 12px;
        height: 12px;
        margin-top: -4px;
        border-width: 2px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-video-scroll {
        animation: none;
    }
}
