.banner-section {
    width: 100%;
    height: 800px;
    /* background: url(../imagens/contato/bg.png); */
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    margin-top: -120px;
    overflow: hidden;
    background-attachment: fixed;
    background-size: cover;
}
.banner-section .img-container {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-60%);
    width: 800px;
}
.banner-section .img-container img{
    transition: all 1s ease;
    pointer-events: none;
}

.info-section {
    width: 100%;
    /* background: url(../imagens/home/bg.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    position: relative;
    margin-top: -50px;
    padding: 150px 0;
    z-index: 5;
}

.info-section::before{
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../imagens/peixes-final.png);
    background-size: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.info-section .top {
    width: 100%;
    height: 180px;
    background-color: #fff;
    mask-image: url(../imagens/top.png);
    mask-size: 100% 100%;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(../imagens/top.png);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-position: center;
    overflow: visible;
    -webkit-mask-repeat: no-repeat;
    position: absolute;
    top: 0;
    background-image: url(../imagens/peixes-final.png);
    background-size: auto;
    z-index: -1;
}
.info-section .bottom {
    width: 100%;
    height: 180px;
    background-color: #fff;
    mask-image: url(../imagens/bottom.png);
    mask-size: 100% 100%;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(../imagens/bottom.png);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-position: center;
    overflow: visible;
    -webkit-mask-repeat: no-repeat;
    position: absolute;
    bottom: -10%;
    background-image: url(../imagens/peixes-final.png);
    background-size: auto;
    z-index: -1;
}


.info-section .container{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.info-section .container .text-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}
.info-section .container .text-container h2{
    font-size: clamp(38px, 3.5vw, 55px);
    width: fit-content;
    color: var(--color-primary);
}

.info-section .container .text-container p{
    font-size: clamp(22px, 1.8vw, 34px);
}

.info-section form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* width: 100%; */
    max-width: 100%;
    width: 870px;
    margin: 0 auto;
    gap: 30px;
}

.info-section form input,
.info-section form textarea{
    width: 100%;
    outline: 4px solid var(--color-secondary);
    border: none;
    border-radius: 10px;
    padding: 15px 25px;
    color: var(--color-secondary);
    font-size: 32px;
}
.info-section form input:focus-within,
.info-section form textarea:focus-within,
.info-section form input:hover,
.info-section form textarea:hover{
    outline: 4px solid var(--color-primary);
}


.info-section form .button{
    font-size: 32px;
    border-radius: 10px;
    padding: 15px 100px;
    align-self: flex-end;
    color: var(--text-color-secondary);
    background-color: var(--color-primary);
    border: none;
    transition: background .3s ease-in-out;
    text-transform: uppercase;
}

.info-section form .button:hover{
    background-color: var(--color-primary-light);
}

.img-section {
    width: 100%;
    min-height: 1000px;
    background: url(../imagens/contato/bg-bottom.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 4;
    position: relative;
    margin-top: -50px;
    background-attachment: fixed;
}

@media screen and (min-width: 5000px){
    .info-section .bottom {
        bottom: 0%;
    }
}


@media screen and (min-width: 2880px){
    .info-section .bottom {
        bottom: -7%;
    }
}

/* MEDIA DESKTOP */
@media screen and (min-width: 1921px){
    .info-section .bottom {
        bottom: -9%;
    }
}

@media screen and (max-width: 1440px){
    .info-section {
        padding-bottom: 160px;
    }
}

@media screen and (max-width: 1366px){
    .info-section {
        padding-bottom: 170px;
    }
}

@media screen and (max-width: 1280px){

}

@media screen and (max-width: 1100px){

}

/* MOBILE */
@media screen and (max-width: 1000px){
    .banner-section{
        height: 700px;
    }
    .banner-section .img-container {
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-60%);
        width: 690px;
    }
    .info-section .container .text-container p{
        text-align: center;
    }
    .info-section {
        background-size: 100%;
        background-position: center;
        background-repeat: space;
        padding-bottom: 180px;
    }
}

@media screen and (max-width: 600px){
    .banner-section .img-container {
        width: 600px;
    }
}

@media screen and (max-width: 500px){
    .banner-section .img-container {
        transform: translateX(-55%);
        width: 500px;
    }

}

@media screen and (max-width: 375px){
    .banner-section .img-container {
        transform: translateX(-60%);
        width: 450px;
    }
}