/*============================================================================*/
/*------------------------- site-cms-header-checkin-video --------------------*/
/* "Header Checkin Video" - usada por includes/headers/header_video.blade.php
   (Pagina/Categoria/Post/Menu, via $widget - igual video.blade.php). Modelada
   em cima de .site-cms-header-video (header.css), com prefixo próprio pra não
   colidir - essa aqui precisa de mais altura porque também mostra o
   formulário completo (forms/whatsapp_checkin.blade.php), não só uma busca. */
.site-cms-header-checkin-video {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
}

.site-cms-header-checkin-video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: blur(4px);
    transform: scale(1.03); /* esconde a borda que o blur revelaria */
    transition: opacity 0.6s ease;
}

.site-cms-header-checkin-video-poster-oculta {
    opacity: 0;
}

.site-cms-header-checkin-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: block;
}

.site-cms-header-checkin-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 3;
}

.site-cms-header-checkin-video-content {
    position: relative;
    z-index: 4;
    width: 80%;
    margin: 0 auto;
    padding: 0 0 0 0%;
    color: #fff;
}
.site-cms-header-checkin-video-content .site-form{
}

.site-cms-header-checkin-video-texto {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20%;
}

.site-cms-header-checkin-video-titulo {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.site-cms-header-checkin-video-meta-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    margin: 0 auto;
}

.site-cms-header-checkin-video-controles {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 12px;
}

.site-cms-header-checkin-video-btn-play, .site-cms-header-checkin-video-btn-mute {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: background-color 0.2s ease;
}

.site-cms-header-checkin-video-btn-play:hover, .site-cms-header-checkin-video-btn-mute:hover {
    background-color: #fff;
}

@media screen and (max-width: 1024px) {

    .site-cms-header-checkin-video-texto {
    text-align: center;
    margin-bottom: 15px;
    padding: 0 0 0 0;
}

    
    .site-cms-header-checkin-video {
        min-height: 620px;
    }

    .site-cms-header-checkin-video-titulo {
        font-size: 1.5rem;
    }

    .site-cms-header-checkin-video-meta-description {
        display: none;
    }

    .site-cms-header-checkin-video-content {
        padding: 0 0 115px 0;
        width: 90%;
    }
}

/*------------------------- site-cms-header-checkin-video --------------------*/
/*============================================================================*/
