body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    overflow-x: hidden;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 5px 0;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

nav .nav-links {
    list-style: none;
    display: flex;
    gap: 80px;
    align-items: center;
}

nav .nav-links li {
    display: inline;
}

nav .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 5px;
}

nav .nav-links .logo img {
    height: 50px;
}

.join-button {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    position: absolute;
    right: 20px;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('https://lirp.cdn-website.com/9a69ca36/dms3rep/multi/opt/FPS_4574-1920w.jpg') no-repeat center center/cover;
    position: relative;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    z-index: 1;
    text-shadow: -1px -1px 0 #000;
}

.hero h1 {
    font-size: 3em;
    line-height: 1.2;
    margin: 0;
}

.hero h1 span {
    color: #ffffff;
    text-shadow: #333;
}

.video-container {
    margin-top: 90px;
    width: 80%;
    max-width: 850px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
}

video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    outline: none;
}

/* Efeito de fade e zoom suave */
.fade-zoom {
    opacity: 0;
    transform: scale(0.98);  /* Começa um pouco menor para um efeito suave */
    transform-origin: center center;  /* Centraliza o zoom */
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.fade-zoom.visible {
    opacity: 1;
    transform: scale(1);  /* Volta ao tamanho normal */
}

.explore-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #b39464;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

.nav-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 0;
}

.nav-arrows .arrow {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 2em;
    padding: 10px;
    cursor: pointer;
}

.nav-arrows .arrow.left {
    transform: translateY(-50%);
}

.nav-arrows .arrow.right {
    transform: translateY(-50%);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    padding:5px 0;
    top: 10px;
    right: 20px;
    border-radius: 20%;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: #ffffff;
    margin: -5px 0;
    transition: 0.4s;
}

@media (max-width: 768px) {
    nav .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    header {
        position: absolute;
        width: 100%;
        top: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        padding: 40px 0;
    }

    nav .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .join-button {
        display: none;
    }
    
    video {
    display: none;
    }

    .hero-content {
       margin: 100px;
    }
}