@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.navbar {
    display: flex;
    flex-flow: row wrap;
    height: 100px;
    background: white;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
}

.logo {
    flex: 10%;
    margin-left: 10%;
    /* border:1px solid red;  */
    text-align: left;
}

.logo h1 {
    font-family: 'Lobster', cursive;
    color: #eee9e6;
    font-size: 24px;
}

.menu {
    flex: 70%;
    /* border: 1px solid green;*/
    text-align: right;
    padding: 20px;

}

.menu a {
    color: #41b45d;
    text-decoration: none;
    font-size: 20px;
    padding: 20px 16px;
}

.menu a:hover {
    color: #d8c20f;
    border-top: 4px solid #d8c20f;
}

#botao {
    background: #d8c20f;
    padding: 10px 25px;
    color: white;
    border-radius: 5px;
    margin-right: 10%;
    margin-left: 5%;
}

#botao:hover {
    border: none;
    background: #41b45d;
}

.header {

    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    background: white;
    padding-top: 100px;
}

.headline {
    margin-top: 5%;
    margin-left: 10%;
    flex: 40%;
    /* border:1px solid black; */
}

.headline h1 {
    font-weight: 900;
    font-size: 28px;
    color: #d8c20f;
    padding: 0;
    margin: 0;
}

.headline h2 {
    font-weight: 900;
    font-size: 25px;
    color: #d8c20f;
    padding: 10;
    margin: 0;
}



.headline p {
    color: gray;
    text-align: justify;
}

.contact-btn {
    display: inline-block;
    background: #d8c20f;
    padding: 20px;
    color: white;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
}

.contact-btn:hover {
    background: #41b45d;
}

.img-headline {
    margin-right: 10%;
    flex: 40%;
    /* border: 1px solid deeppink;*/
    border-radius: 10%;
    text-align: center;

}

/* Coloca bordas arredondadas na imagen */
#mimg {
    border-radius: 20px;
}

section {
    display: inline-block;
    margin-top: 80px;
    /* border:1px solid black; */
    margin-left: 5%;
    margin-right: 5%;
    padding: 5%;
    text-align: center;

}

section h2 {
    width: 100%;
    font-size: 50px;
    margin: 0;
    font-family: 'Lobster', cursive;
    font-weight: bold;
    color: #d8c20f;
}

.servicos {
    display: inline-block;
    margin-top: 5%;
}

.card {
    display: inline-block;
    width: 30%;
    padding: 20px;
    margin: 1%;
    border: 1px solid #b1e4c1;
    border-radius: 10px;
    cursor: pointer;
}

.texto-oculto {
    display: none;
}

.card:hover {
    background: #b1e4c1;
    color: white;
    padding: 50px;
}

.card:hover img {
    display: none;
}

.card:hover .card-text {
    display: none;
}

.card:hover .texto-oculto {
    display: block;
}

footer {
    margin-top: 150px;
    height: 300px;
    background-image: linear-gradient(180deg, #41b45d, #b1e4c1, #41b45d);
    text-align: center;
    border-top: 5px solid #41b45d;
}

.logo-rodape {
    padding: 50px;
}

.agencia {
    font-family: 'Lobster', cursive;
    color: rgb(243, 240, 237);
    font-size: 34px;
}

.whats {
    position: fixed;
    bottom: 15px;
    right: 5px;

}

.instagram {
    position: fixed;
    bottom: 210px;
    right: 5px;

}