@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lobster&family=Roboto:ital,wght@0,100..900;1,100..900&family=Smooch+Sans:wght@100..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: rgb(255, 255, 255);
    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: "Lobster", sans-serif;
    color: #180f4a;
    font-size: 40px;
}
.menu {
    flex: 70%;
    /* border: 1px solid rgb(7, 7, 7); */
    text-align: right;
    padding: 20px;
}
.menu a {
    color: #180f4a;
    text-decoration: none;
    font-size: 20px;
    padding: 20px 16px;
}
.menu a:hover {
    color: #ff2978;
    border-top: 4px solid #180f4a;
}
#botao {
    background: #180f4a;
    padding: 10px 25px;
    color: white;
    border-radius: 5px;
    margin-right: 10%;
    margin-left: 5%;
}
#botao:hover {
    border: none;
    background-color: #ff2978;
}
.header {
    display: flex;
    flex-flow: row wrap;
    background: white;
    justify-content: center;
    align-items: center;
    padding-top: 150px;
}
.headline {
    margin-left: 10%;
    flex: 40%;
    /* border: 1px solid black; */
}
.headline h2 {
    font-weight: 900;
    font-size: 20px;
    color:#180f4a;
    padding: 0;
    margin: 0;
}
.headline p {
    color: gray;
    text-align: left;

}
.img-headline {
    margin-right: 10%;
    flex: 40%;
    /* border: 1px solid deeppink; */
    text-align: center;
}
.contato-btn {
    display: inline-block;
    background: #ff2978;
    padding: 20px;
    color: white;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
}
.contato-btn:hover {
    background: #180f4a;
}
section {
    display: inline-block;
    margin-top: 80px;  
    /* border: 1px solid black; */
    margin-left: 5%;
    margin-right: 5%;
    /* height: 400px; */
    padding: 5%;
    text-align: center;
    
}
section h2 {
    width: 100%;
    font-size: 30px;
    margin: 0;
    font-family: "Lobster", sans-serif;
    font-weight: bold;
    color: #180f4a;
}
.serviços {
    display: inline-block;
    margin-top: 5%;
}
.card {
    display: inline-block;
    width: 30%;
    padding: 20px;
    margin: 1%;
    border: 1px solid #ff2978;
    border-radius: 10px;
    cursor: pointer;
}
.card:hover {
    background: #ff2978;
    color: white;
    padding: 40px;
}
.card:hover img{
   display: none;
}
footer {
    margin-top: 100px;
    height: 400px;
    background-image: linear-gradient(180deg, #180f4a, #090422, black);
    text-align: center;
    border-top: 5px solid #ff2978;
}
.logo-rodape {
    padding: 100px;
    
}
.agencia {
    font-family: "Lobster", sans-serif;
    color: #ffffff;
    font-size: 40px;
}
.whatts {
    position: fixed;
    bottom: 5px;
    right: 5px;


}