.banner {
    width: 100%;
    height: 35vh;


    position: relative;
}

.banner .filter{
    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.6);

    position: absolute;
}

.banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner ion-icon{
    font-size: 40px;
    color: var(--white);

    position: absolute;
    left: 50%;
    bottom: 0;

    transform: translate(-50%, -50%);
    animation: bounce 4s infinite;
}


main {
    display: flex;
    flex-direction: column;
    gap: 64px;

    padding: 40px 0;
}

main .row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
}

main .row .left, main .row .right{
    width: 100%;
}

main .row .left img, main .row .right img{
    width: 100%;
}

main .row .right button{
    width: 100%;
    justify-content: center;
    font-size: 20px;

    padding: 16px 88px;
    font-weight: 500;
}

section.nossos-produtos{
    background: none;
    flex-direction: row;

    padding: 0 15%;

}

section.nossos-produtos p{
    max-width: fit-content;
}

section.nossos-produtos *{
    color: var(--black);
}

section.nossos-produtos .right button{
    color: var(--white);
}


@keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }