
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden; /* Impede rolagem */
    color: white;
    display:flex;
    justify-content: center;
    align-items: center;
    }
a{
    text-decoration: none;
    color:white;
}
.main-image{
    height:100vh;
    width:100%;
    overflow: hidden;
    position:absolute;
    z-index:-2;
    }

#main-lp-container{
    display:flex;
    justify-content: space-between;
    align-items: start;
    width:80%;
    height:80vh;
    position:relative;
}
.left-div{
    display:flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom:200px;
    height:100%;

}

.alda{
    font-family: 'bristone', sans-serif;
    font-size: 13em;
}
.cotacao{
    font-family: 'Poppins', sans-serif;
    letter-spacing: 15px;
    line-height: 50px;
    font-size: 2em;
    
}
a{
    font-family: 'Poppins', sans-serif;
    letter-spacing: 3px;
}

.buttons{
    margin-top: 30px;
    width:100%;
    /* height:100px; */
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 50px;
}
.button{
    display: inline-block;
    border: 1px solid white;
    text-align:center;
    line-height: 50px;
    width:250px;
    height:50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.button:hover{
    background-color:white;
    color:black;
    transform:scale(1.05);
}


.alda-logo{
    width:400%;
    height:auto;
    opacity:0.2;
    
}
.image-div{
    position:absolute;
    width:100%;
    height:100vh;
    display:flex;
    justify-content: center;
    align-items: center;
    top: -10%;
    right:-20%;
    z-index:-1;
}
.social-menu{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items: center;
    height:100%;
    width:auto;
    position:absolute;
    right:-10%;
}
.social-menu a img{
    width:30px;
    height: auto;
}


@media (max-width: 768px) {
    .alda{
        font-size: 6rem;
    }
    .cotacao p{
        font-size:0.9rem;
        line-height:normal;
    }
    .buttons{
        flex-direction:column;
        align-items: start;
        gap:5px;
        /* justify-content: start; */
    }
}

/* Para celulares menores que 480px */
@media (max-width: 425px) {
    .alda{
        font-size: 4rem;
    }
    .cotacao p{
        font-size:0.9rem;
        line-height:normal;
    }
    .image-div{
        top: 30%;
        right:-50%;
    }
} 