*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100vh;
    background-color: #000;
    overflow: hidden;
}
.container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.background{
    position: relative;
    width: 700px;
    height: 100%;
}
.background img{
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.main-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}
.logo{
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 300px;
}
.logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-right{
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    z-index: 10;
}

.content-right img{
    width: 100%;
    max-width: 260px;
    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.5), transparent);
    animation: lightSweep 3s infinite;
    z-index: 1;
    pointer-events: none;
}
#whatsapp{
    position: relative;
    max-width: 200px;
    cursor: pointer;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
}
/* #whatsapp:hover{
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
} */
#register{
    position: relative;
    max-width: 200px;
    cursor: pointer;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
}
/* #register:hover{
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
} */
@keyframes lightSweep {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}
.buttons{
    position: absolute;
    top: 95%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 300px;
}
.buttons img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: smoothZoom 1.5s ease-in-out infinite;
    cursor: pointer;
}
@keyframes smoothZoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .container{
        height: 100vh;
        align-items: flex-start;
    }
    .background{
        height: 100vh;
        max-width: 100%;
    }
}
@media (max-width: 440px) {
    .container{
        height: 100vh;
        align-items: flex-start;
    }
    .background{
        height: 100vh;
        max-width: 100%;
    }
    .model{
        top: 80%;
    }
    .text{
        top: 40%;
    }
    .buttons{
        top: 55%;
        left: 50%;
    }
    .content-right{
        right: 2%;
        gap: 10px;
    }
    .content-right img{
        max-width: 200px;
    }
    #whatsapp{
        max-width: 150px;
        cursor: pointer;
    }
    #register{
        max-width: 150px;
        cursor: pointer;
    }
}