@import url('https://fonts.googleapis.com/css2?family=Philosopher&display=swap');

* {
    margin: 0;  
    padding: 0;
    box-sizing: border-box;
}

.home-fix {
    width: 300px;
    margin-bottom: 35px;
    padding-right: 50px;
}

button {
    color: white;
    background-color: #C51111;
    border-radius: 3px;
    border: none;
    width: 200px;
    height: 50px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 40px;
}

button:hover {
    background-color: gold;
    color: black;
    transition: 0.6s ease-in;
}

.boneco {
    height: 550px;
    margin-left: 78%;
}

body {
    height: 100vh;
    
}

.caixa-mae {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 100px;
    height: 100vh;
}

.caixa-principal {
    width: 50%;
}

.caixa-imagem {
    position: fixed;
    top: 0;
    z-index: -1;
}

.fundo{
    min-height: 100%;
    min-width: 100%;
    position: fixed;
    top: 0;
}

.mascara {
    height: 100%;
    width: 100%;
    background: linear-gradient(109deg, rgba(10, 12, 16, 0.99) 15%, rgba(10, 12, 16, 0.7) 50%, rgba(10, 12, 16, 0.99) 85%);
    position: fixed;
    top: 0;
}

h1 {
    color: white;
    font-size: 25px;
    font-family: 'Philosopher', sans-serif;
}


p {
    color: white;
    font-size: 20px;
    font-family: 'Philosopher', sans-serif;
}

.link-whatsapp img {
    height: 60px;
    position: fixed;
    right: 20px;
    bottom: 20px;
}

.header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px;
}

.header img {
    height: 60px;
}

.header a {
    color: white;
    font-size: 22px;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Philosopher', sans-serif;
}

.menu {
    color: white;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    font-size: 22px;
    
}

.menu:hover{
    color: #C51111;
    font-size: 23px;
    transition: 0.7s ease-in-out;

}

.services {
    display: none;
    position: absolute;
    background-color: #333;
    color: white;
    padding: 10px;
    
}

.services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.services li {
    padding: 5px 0;
    border-bottom: 1px solid #666;
}

.menu-item:hover .services {
    display: block;
}

.header a:hover {
    color: #C51111;
    font-size: 23px;
    transition: 0.7s ease-in-out;
}

.formulario-fale-conosco {
    background-color: white;
    display: flex;
    gap: 20px;
    flex-direction: column;
    position: fixed;
    left: -300px;
    top: 30%;
    padding: 20px;
    border-radius: 5px;
    transition: left 1s ease-in-out;
}

input {
    height: 40px;
    border-radius: 5px;
    border: 1px solid rgb(99, 98, 98);
    padding-left: 5px;
    outline-color: #18D80F;
}

textarea {
    width: 270px;
    height: 100px;
    border-radius: 5px;
    border: 1px solid rgb(99, 98, 98);
    outline-color: #18D80F;
}

.mascara-formulario {
    visibility: hidden;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(109deg, rgba(10, 12, 16, 0.99) 15%, rgba(10, 12, 16, 0.7) 50%, rgba(10, 12, 16, 0.99) 85%);
    transition: visibility 1s ease-in-out;

}

.texto1{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 15px;
    font-family: 'Philosopher', sans-serif;
    
}

.texto2{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-family: 'Philosopher', sans-serif;
    
    
}


@media(max-width: 1100px) {
    
    .caixa-mae {
        flex-direction: column;
        justify-content: flex-start;
        padding: 10px;
    
    }

    .home-fix {
        width: 280px;
        margin-left: 75px;  
    }

    .caixa-principal {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .boneco {
        width: 55vw;
        height: auto;
        margin-left: 0%;
    }


    .header {
        margin: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }    
     
    .header img {
       display: none;
    }

    .header a {
        font-size: 20px;
    }

    p {
        font-size: 15px;
    }

    .texto1 {
       display: none;
    }
    

    .texto2 {
       display: none;
      
    }

    .menu {
        font-size: 20px;
    }

    .services {
        font-size: 17px;
        

    }
}




