
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Questrial&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Monsieur+La+Doulaise&family=Questrial&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Monsieur+La+Doulaise&display=swap');




*{
    box-sizing: border-box;
}
body{
    margin: 0;
    font-family: "Questrial", sans-serif;
}

.navbar{ 
    /* border: 2px solid black; */
    /* Display do tipo flex, define a posição dos elementos na tela. */
    display: flex;
    /* Os menus irão ficar alinhados. */
    flex-flow: row wrap;
    height: 100px;
    background: white;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
}

.logo{
    flex: 20%;
    margin-left: 10%;
    /* border: 1px solid black; */
    text-align: left;
}

.logo h1{
    font-family:  "Monsieur La Doulaise", cursive;
    color: #000000;
    font-size: 40px;
}

.menu{
    /* border: 1px solid black; */
    flex: 70%;
    text-align: right;
    padding: 20px;
}

.menu a{
    color: #000000;
    text-decoration: none;
    font-size: 20px;
    padding: 20px 16px;
}

.menu a:hover{
    color: #850b0b;
    border-top: 4px solid #5f4036;   
}

#botao{
    background: #36211a;
    padding: 10px 25px;
    color: white;
    border-radius: 15px;
    margin-right: 10%;
    margin-left: 5%;
    
}

#botao:hover{
    border: none;
    background: #850b0b;
}

.header{
    /* border: 1px solid black; */
    display:flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    background: white;
    padding-top: 100px;
}

.headline{
    /* border: 1px solid black; */
    margin-left: 10%;
    flex: 40%;
}

.headline h2{

    font-weight: 900;
    font-size: 20px;
    color: #36211a;
    padding: 0;
    margin: 0;

}

.headline p{
    color: gray;
    text-align: left;
}

.contact-btn{
    display: inline-block;
    background: #850b0b;
    padding: 20px;
    color: white;
    text-transform: uppercase;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-btn:hover{
    background: gray;
}

.img-headline{
    margin-right: 10%;
    flex: 40%;
    text-align: center;
}

section{
    display: inline-block;
    margin-top: 80px;
    margin-left: 5%;
    margin-right: 5%;
    padding: 5%;
    text-align: center;
}

section h2{
    width: 100%;
    font-size: 65px;
    margin: 0;
    font-family: "Monsieur La Doulaise", cursive;
    font-weight: bold;
    color: #000000;
}

.servicos{
    display: inline-block;
    margin-top: 5%;
}
.card{
    background: #850b0b;
    color:white;
    display: inline-block;
    width: 30%;
    padding: 20px;
    margin: 1%;
    border: 1px solid #36211a;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
}

.texto-oculto{
    display: none;
}

.card:hover{
    background: rgb(223, 223, 223);
    color:black;
    padding: 40px;
}

.card:hover img{
    display: none;
}

.card:hover .card-text{
    display: none;
}

.card:hover .texto-oculto{
    display: block;
}

footer{
    margin-top: 100px;
    height: 400px;
    background-image: linear-gradient(180deg, #850b0b, #530707,black);
    text-align: center;
    border-top: 5px solid gray;
}

.logo-rodape{
    padding: 100px;
}

.agencia{
    font-family: "Questrial", sans-serif;
    color:white;
    font-size: 34px;
}

.whats{
    position: fixed;
    bottom: 5px;
    right: 5px;
}