/* Landing */
main{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: background-image 0.2s ease, opacity 0.2s ease;
    color: rgb(255, 255, 255);
    height: 100vh;
    min-width: 100%;
    position: relative;
    z-index: 0;
}

.background {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 2;
}

.background-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    filter: brightness(0.8); 
    width: 101%;
    transition: opacity 1.0s ease-in-out;
}

#div-texto {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    padding-top: 200px;
    transition: opacity 0.8s ease-in-out;
}

.texto {
    padding-bottom: 300px;
    font-size: 2.5rem;
    text-transform: uppercase;
    transition: color 1s ease, opacity 1s ease;
    user-select: none;
}

.main{
    top: 73%;
    filter: brightness(0.8);
    width: 101%;
}

@media (max-width: 1479px) {
    .main{
        top: 50%;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 958px) {
    body, html{
        overflow-x: hidden;
    }
    .texto {
        font-size: 1.8rem; /* Reduz o tamanho da fonte em telas pequenas */
    }

    main {
        padding: 0px;
    }

    /* #waurlsite{
        display: none;
    } */
} 