/* Estilos para o vídeo em background */
.hero, .page-banner {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    text-align: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 158, 128, 0.85) 0%, rgba(255, 112, 67, 0.85) 100%);
    z-index: 2;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.hero .container, .page-banner .container {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    padding: 40px;
}

.hero h1, .hero p, .hero .btn, .page-banner h1 {
    position: relative;
    z-index: 3;
}

/* Centralização do texto na hero */
.hero .text-center {
    text-align: center;
    margin: 0 auto;
}

/* Responsividade para o vídeo */
@media (max-width: 768px) {
    .video-background video {
        height: 100%;
        width: auto;
    }
}
