*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}
.container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}
.background{
    position: relative;
    width: 700px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.background img{
    width: 100%;
    height: 100%;
    object-fit: fill;
    animation: playerFloat 6s ease-in-out infinite;
    transform-origin: left center;
}
.main-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}
.logo{
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 300px;
}
.logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.text{
    position: absolute;
    top: 35%;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 350px;
}
.text img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.content-right{
    position: absolute;
    top: 65%;
    left: 75%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    z-index: 10;
    width: 100%;
    max-width: 300px;   
}
.content-right img{
    padding: 10px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.button-wrapper{
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.button-wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.795), transparent);
    animation: lightSweep 2s infinite;
    z-index: 1;
    pointer-events: none;
    border-radius: 10px;
}

#whatsapp,
#register{
    position: relative;
    cursor: pointer;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.411));
    transition: transform 0.1s ease, filter 0.1s ease;
    display: block;
}

@keyframes lightSweep {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes playerFloat {
    0% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.03) translateY(-6px);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}
@media (max-width: 768px) {
    .container{
        height: 100vh;
        align-items: flex-start;
    }
    .background{
        height: 100vh;
        max-width: 100%;
    }
    .logo{
        top: 10%;
    }
    .text{
        top: 35%;
    }
    .content-right{
        top: 65%;
    }
}
@media (max-width: 440px) {
    .background{
        height: 100vh;
        max-width: 100%;
    }
    .background img{
        height: 100%;
        object-fit: fill;
    }
    .container{
        height: 100vh;
        align-items: flex-start;
    }
    .background{
        height: 100vh;
        max-width: 100%;
    }
    .logo{
        top: 5%;
        max-width: 200px;
    }
    .text{
        top: 35%;
        max-width: 200px;
    }
    .content-right{
        top: 65%;
        left: 65%;
    }
    .content-right img{
        max-width: 250px;
    }
}