#display {
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;

    .img-banner {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }
    
    .text-content {
        position: absolute;
        z-index: 1;
        padding: 20px;
        border-radius: 10px;
        top: 60px;
        width: 100%;
    }

    h1{
        color: #312B80;
        font-family: "GOSHA Alternates";
        font-size: 46px;
        font-weight: 600;
        line-height: 145%;
        text-transform: uppercase;

        span{
            font-weight: 500;
            font-family: "GOSHA Alternates";
        }
    }

    h2{
        color: #312B80;
        font-family: "GOSHA Alternates";
        font-size: 18px;
        font-weight: 600;
        border-radius: 80px;
        background: #F4D110;
        display: inline-block;
        padding: 17px 46px;
        margin-bottom: 10px;
    }

    h3{
        color: #312B80;
        font-family: "GOSHA Alternates";
        font-size: 24px;
    }
}

#informacoes{
    padding: 100px 0 70px;

    h2{
        color: #312B80;
        font-family: "GOSHA Alternates";
        font-size: 40px;
        font-weight: 600;
        line-height: 190%;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 0;
    }
    p{
        color: #212D38;
        font-size: 16px;
        font-weight: 400;
        line-height: 160%;
        text-align: center;
    }
    .btn-acontece{
        color: #312B80;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.96px;
        padding: 20px 40px;
        border-radius: 5px;
        background: #F4D110;
        transition: 300ms all ease-in-out;

            &:hover{
                background-color: #312B80;
                color: #fff;
            }
    }
}

#formulario{
    background-color: #FBFAF4;
    padding: 60px 0;

    h2{
        color: #312B80;
        font-family: "GOSHA Alternates";
        font-size: 40px;
        font-weight: 600;
        line-height: 190%;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 0;
    }

    h3{
        font-weight: 500;
        font-size: 24px;
        line-height: 190%;
        color: #312B80;
        text-align: center;

        span{
            font-weight: 600;
            color: #5BA344;

        }
    }
    .text-form{
        font-weight: 400;
        font-size: 18px;
        color: #535353;
        text-align: center;

    }

    .form-check {
        padding-left: 0px;
    }

    .form-control {
        border: solid 1px #312B80;
        padding: 14px 16px;
        border: 1px solid #E6E2D1;
        background-color: #FAF7EB;
    }

    .alinhar-final{
        display: flex;
        justify-content: flex-end;
        
        p{
            position: relative; 
        }
        .img-enviar{
            position: absolute;
            right: 40px;
            top: 20px;
        }

        .btn-enviar-form{
            color: #FFF;
            text-align: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 190%;
            letter-spacing: 0.96px;
            border-radius: 5px;
            background: #312B80;
            display: block;
            padding: 1rem 4rem;
            text-transform: uppercase;
        }
    }

    .nome-label{
        font-weight: 600;
        font-size: 16px;
        color: #212D38;
        margin-bottom: 8px;
        
        span{
            color: #EF4349;
        }
    }
    .form-check-label{
        font-weight: 400;
        font-size: 15px;
        color: #757575;
        
        a{
            color: #5BA344;
            font-weight: 600;
        }
    }
    /* Para o select dentro do seu formulário */
    .col-lg-4 .wpcf7-select,
    .col-lg-4 select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 16px;
        padding-right: 35px; 
    }
}

.page-container{
    padding: 0;
}



/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {

}

/* MOBILE */
@media all and (max-width: 767px) { 
    #display {
        min-height: 60vh;
        background-color: #fdfae5;

        h1 {
            font-size: 36px;

        }

        .text-content {
            top: 20px;
        }

        .img-banner {
            height: 40%;
            z-index: 0;
            margin-top: 260px;
        }
    }
}