.banner1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    height: 100%;
    position: relative !important;
}

@media(min-width: 1025px) {
    .banner1 {
        aspect-ratio: 16/9;
        overflow: hidden;
    }
}

@media(max-width: 640px) {
    .banner1 {
        
    }
}

.banner1 .esquerda {
    gap: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 40%;
    position: relative;
    height: 100%;
}

@media (min-width:641px) and ( max-width: 1280px) {
    .banner1 .esquerda {
        max-width: 100%;
        aspect-ratio: 4/3;
    }
}

@media (max-width: 640px) {
    .banner1 .esquerda {
        max-width: 100%;
        aspect-ratio: 9/12;
    }
}

@media(min-width: 1280px) {
    .banner1 .esquerda {
        overflow: hidden;
    }
}

.banner1 .direita {
    display: flex;
    position: relative;
    height: 100%;
    aspect-ratio: 1/1;
}

@media(max-width: 1280px) {
    .banner1 .direita {
        display: none;
    }
}


.banner1 .direita .preview {
    display: block;
    width: 100%;
    height: 100%;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}