/* Desktop */

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: white;
    width: 100%;
    height: 100%;
}

.menu {
    list-style: none;
}

.menu li {
    margin-left: 10px;
    display: inline-block;
}

.menu li a {
    color: #333;
    
    text-decoration: none;
    
    transition: 0.5s ease;
}



@media screen and (max-width: 800px) {
    header {
        width: 100%;
        padding: 10px 20px;
        position: fixed;
        top: 0;
        z-index: 999;
    }
    .navbar {
        max-width: 1200px;
        height: 50px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .menu {
        width: 50%;
        height: 100vh;

        max-width: 350px;
        position: fixed;
        top: 0;
        transform: translateX(92%); 

        background-image: linear-gradient(300deg, #e93200, #eb5800, #ed7500, #ed8e00);
        
        padding-top: 6rem;
        
        transition: 0.4s;     
        
        display: none;
    }
    .menu li {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        font-size: 18px;
        margin-top: 0.9rem;
    }
    .menu li a {
        color: #f9f9f9;
        transition: 0.3s ease;
    }
    .menu li a:hover {
        color: #666;
    }
    .logo a img {
        width: 52px;
        height: 40px;
        text-decoration: none;
        display: inline-block;
        color: #333 !important;
    }
    .hamburguer {
        display: block;
        z-index: 999;
    }
    #home {
        background-color: #f9f9f9;
        width: 100%;
        height: 100vh;
    }
    .apresentacao {
        margin: 130px 40px 0 40px;
        display: inline-block;
    }
    #visitante {
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 1.2px;
    }
    #visit {
        color: #ed7500;
        font-weight: 600;
    }
    #mainTitle {
        color: #444;
        font-size: 45px;
        font-weight: 700;
        margin-top: 40px;
        line-height: 60px;
    }
    #info {
        color: #444;
        font-size: 15.5px;
        letter-spacing: 0px;
        line-height: 30px;
        text-align: justify;
        margin-top: 30px;
        font-weight: 500;
    }
    #sobre {
        background-color: #f6f6f6;
        padding: 0 40px 0 40px;
        width: 100%;
        height: 100%;
    }
    #title-sobre {
        letter-spacing: 1px;
        color: #444;
        text-align: center;
        padding-top: 50px;
        font-size: 35px;
        font-weight: 700;
        line-height: 60px;
    }
    #info-sobre {
        font-size: 15.5px;
        letter-spacing: 1px;
        color: #333;
        line-height: 36px;
        text-align: justify;
        padding: 0;
        font-weight: 500;
    }

    #contato{
        width: 100%;
        height: 100vh;
        padding-top: 0px
    }

    #contato-in{
        padding: 0px 40px 0 40px;
    }

    #contact-title{
        letter-spacing: 1px;
        color: #444;
        text-align: center;
        font-size: 35px;
        font-weight: 700;
        line-height: 60px; 
        padding: 30px 40px 30px 40px;
    }

    .contact-form {
        width: 100%;
        height: 350px;
        background-image: linear-gradient(300deg, #e93200, #eb5800, #ed7500, #ed8e00);
        border-radius: 10px;
        display: flex;
        justify-content: center;
        text-align: center;
        
    }

    #title-contato{
        font-size: 25px;
        font-weight: 600;
        letter-spacing: 2px;
        color: #f9f9f9;
        text-align: center;
        padding: 25px 0;
    }

    ::placeholder{
        color: #444;
        font-size: 15px;
        
    }
    input{
        padding: 5px 10px;
    }
    #name {
        width: 235px;
        height: 32px;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    #email {
        width: 235px;
        height: 32px;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    #text {
        border-radius: 8px;
    }

    textarea {
        padding: 5px 10px;
        max-width: 235px; 
        max-height: 100px;
    }
    textarea:focus, input:focus, button:focus, select:focus {
        box-shadow: 0 0 0 0;
        border: 0 none;
        outline: 0;
    } 
    #btn-register{
        width: 235px;
        height: 32px;
        margin-top: 15px;
        border-radius: 8px;
        background-color: #f9f9f9;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        color: #ed7500;
    }
    
    .contact-text{
        display: none;
    }
    #footer{
        width: 100%;
        height: 80px;
        background-color: #f6f6f6;
        padding: 10px 40px;
        line-height: 25px;
        font-size: 14.5px;
    }
    #authors{
        color: #ed7500;
        font-weight: 600;
    }
}

@media (min-width: 769px) {

    header {
        width: 100%;
        background-color: #fff;
        padding: 10px 20px;
        position: fixed;
        top: 0;
        z-index: 999;
        box-shadow: 0px 0px 5px #999;
    }
    
    .navbar {
        max-width: 1200px;
        height: 50px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo a img {
        width: 52px;
        height: 40px;
        text-decoration: none;
        display: inline-block;
        color: #333 !important;
    }
    .hamburguer {
        display: none;
    }
    .menu li a:hover {
        color: rgb(255, 148, 60);
        transition: 0.5s ease;
    }
    
    #home{
        width: 100%;
        height: 100vh;
        background-color: #f9f9f9;
    }
    
    .apresentacao {
        margin: 150px 140px 0 140px;
        display: inline-block;
    }
    #visitante {
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 1.2px;
        color: #444;
    }
    #visit {
        color: #ed7500;
        font-weight: 600;
    }
    #mainTitle {
        color: #444;
        font-size: 50px;
        font-weight: 700;
        margin-top: 40px;
        line-height: 60px;
    }

    #info {
        
        font-size: 15px;
        letter-spacing: 1px;
        line-height: 28px;
        text-align: justify;
        margin-top: 40px;
    }    

    #sobre {
        width: 100%;
        height: 100vh;
        background: #f6f6f6;
        height: 656px;
    }
    #title-sobre {
        font-size: 45px;
        text-align: center;
        padding: 90px 0 0 0;
        color: #444;
        font-weight: 500;
        line-height: 60px;
    }
    #info-sobre {
        padding: 65px 170px 0px 170px;
        text-align: justify;
        letter-spacing: 1px;
        line-height: 35px;
    }

    #contato{
        width: 100%;
        height: 100vh;
        padding-top: 90px
    }

    #contact-title{
        letter-spacing: 1px;
        color: #444;
        text-align: center;
        font-size: 45px;
        font-weight: 500;
        line-height: 60px;
        
    }

    #contato-in{
        padding: 50px 170px 0 0;

        display: grid;
        grid-template-columns: repeat(2, 1fr);
                   
    }

    .contact-form {
        width: 350px;
        height: 400px;
        border-radius: 2%;
        background-image: linear-gradient(300deg, #e93200, #eb5800, #ed7500, #ed8e00);
        margin: 0px 0px 0px 170px;
        
    }
    .fields {
        padding: 10px 57.5px;
        font-size: 14px;
    }
    #title-contato {
        text-align: center;
        font-size: 22px;
        color: #f9f9f9;
        margin-top: 20px;
        margin-bottom: 20px;
        letter-spacing: 4px;
    }
    ::placeholder {
        color: rgb(117, 117, 117);
        font-size: 15px;
    }
    input{
        padding: 5px 10px;
    }
    #name {
        width: 235px;
        height: 32px;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    #email {
        width: 235px;
        height: 32px;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    #text {
        border-radius: 8px;
       
    }
    textarea {
        padding: 5px 10px;
        max-width: 235px; 
        max-height: 100px;
    }

    textarea:focus, input:focus, button:focus, select:focus {
        box-shadow: 0 0 0 0;
        border: 0 none;
        outline: 0;
    } 
    #btn-register{
        width: 235px;
        height: 32px;
        padding: 0px 57.5px;
        margin-top: 15px;
        border-radius: 8px;
        background-color: #fff;
    }
    #btn-register:hover{
        background-color: #eee;
        cursor: pointer;
    }
    
    .contact-text {
        width: 100%;
        height: 100%;
        font-size: 15px;
        line-height: 35px;
        color: #444;
        text-align: justify;
        margin-left: 2.5rem;
    }
        

    #footer{
        width: 100%;
        height: 80px;
        display: flex;
        align-items: center;
        background-color: #f6f6f6;
        padding-left: 170px;
        line-height: 25px;
        font-size: 14.5px;
    }
    #authors{
        color: #ed7500;
        font-weight: 600;
    }

}