@charset "utf-8";


 section{
    position: relative;
    top: 150px;
    height: 1000px;
    background: url(../imagens/capa.png) no-repeat;
    background-size: cover;
    background-position-x: 15%;
}

body{
    transition: 0.5s;
}



/*formatação do formulário de contato*/

.formulario{
    position: relative;
    display: flex;
    justify-content: center;
    top: 0px;
    height: 800px;
    width: 1000px;
    margin: auto;
}

.form{
    position: relative;
    width: 900px;
    height: 600px;
    padding: 0;
}

.form form{
    text-align: center;
    width: 100%;
}

.form form select{
    display: flex;
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    border: 1px solid #262626;
    border-radius: 2px;
}

.form form .endereco {
    width: 100%;
    display: flex;
}


.form form .endereco input {
    width: 100%;
    display: block;
}

.form form input#others-subject{
    display: none;
}

form input{
    position: relative;
    display: flex;
    width: 95.9%;
    padding: 10px;
    margin-top: 20px;
    outline: none;
    border-radius: 2px;
    border: 1px solid #262626;
}

form textarea{
    display: flex;
    width: 95.9%;
    padding: 10px;
    margin-top: 20px;
    outline: none;
    border-radius: 2px;
    border: 1px solid #262626;
}


.form form button{
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    cursor: pointer;
    color: #fff;
    border: 0;
    background-color: #262626;
    color: #ABD83A;
    transition: 0.5s;
}

.form form button:hover{
    background-color: #ABD83A;
    color: #262626;
}

.title{
    position: relative;
    width: 1000px;
    height: auto;
    margin: auto;
    font-size: 50pt;
    text-transform: uppercase;
}

.title h1{
    font-family: 'Poppins-Black';    
}

/* formatação da div "local-top */

.contato-top{
    position: relative;
    align-items: center;
    width: 100%;
    height: 500px;
    left: 5%;
}

.contato-top p{
    position: relative;
    font-size: 15pt;
    top: 100px;
    margin-top: 20px;
}


.local{
    position: relative;
    height: 500px;
    top: 120px;
    background-color: #ABD83A;
}

.local iframe{
    height: 100%;
    width: 100%;
}

/* formatação do sweet alert good - mensagem de envio de mensagem do formulário */

.sweet-alert-send{
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    top: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: #2626268c;
    z-index: 10000;
}


.sweet-alert-send .message{
    position: fixed;
    width: 350px;
    height: 200px;
    background-color: #262626;
    border-radius: 20px;
    filter: drop-shadow(02px 02px 05px #abd83a7d);
    color: #fff;
    text-align: center;
    animation: showDown 0.5s forwards;
}

@keyframes showDown{
    from{
        transform: translate(0%, -50%);
        opacity: 0;
    }

    to{
        transform: translate(0, 0);
        opacity: 1;
    }
}



.sweet-alert-send .message a{
    padding: 2px;
    color: #fff;
}

#close-message{
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: right;
    border-radius: 2px;
    margin-top: 5px;
}


#close-message i{
    padding: 5px;
    cursor: pointer;
}

#close-message i:hover{
    color: red;
}

/*responsividade para dispositivos com largura "ULTRA-WIDE"*/
    @media(min-width: 1707px){
        div.formulario{
            width: 1500px;
        }

        div.title{
            height: auto;
        }
    }
/*responsividade para dispositivos com largura "ULTRA-WIDE"*/


/* responsividade para dispositivos móveis */

@media(max-width: 988px){
    div.title{
        top: 0px;
        width: 100%;
        height: auto;
        margin-left: 0;
        padding: 0;
        z-index: 1;
    }
    div.title h1{
        width: 100%;
        margin: 0;
        text-align: center;
    }
    section{
        width: 100%;
        height: auto;
    }
    div.formulario{
        top: 50px;
        width: 100%;
        height: 800px;
        margin: 0;
        display: block;
        padding: 0;
    }

     div.form{
        width: 50%;
        text-align: center;
        margin: auto;
    }

    div.form form{
        width: 100%;
    }

    div.contato-top{
        margin: 0;
        left: 0;
        top: 200px;
        height: auto;
        width: 100%;
        text-align: center;
        z-index: 1;
    }

    div.contato-top p{
        top: 0;
        margin: 0;
    }

    div.local{
        top: 200px;
    }
    
}

/* FORMATAÇÃO DO FORMULÁRIO */
@media(max-width: 650px){
div.form{
    width: 80%;
}

}

@media(max-width: 610px){
    div.title{
        top: 50px;
    }
}