@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 {
    height: 100px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    background: white;
}

.logo {
    flex: 20%;
    text-align: left;
    margin-left: 10%;
}

.logo h1{
    font-family: "Lobster", cursive;
    color: #180f4a;
    font-size: 34px;
}

.menu {
    flex: 70%;
    text-align: right;
    padding: 20px;
}

.menu a{
    color: #180f4a;
    font-size: 20px;
    text-decoration: none;
    padding: 20px 16px;
}

.menu a:hover{
    color: #ff2978;
    border-top: 4px solid #180f4a;
}

#fale{
    background: #180f4a;
    padding: 10px 25px;
    color: white;
    border-radius: 8px;
    margin-right: 10%;
    margin-left: 5%;
}

#fale:hover{
    border: none;
    background: #ff2978;

}

.header {
    height: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.headline {
    margin-left: 10%;
    flex: 40%;
}

.headline h2{
    font-weight: 900;
    font-size: 20px;
    color: #180f4a;
    padding: 0;
    margin: 0;
}

.headline p{
    color: gray;
    text-align: justify;
}

.img-headline{
    margin-right: 10%;
    flex: 40%;
    text-align: center;
}

.contract{
    background:  #ff2978;
    padding: 10px 25px;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 10px;
    text-transform: uppercase;

}

.contract:hover{
    background: #180f4a;
}

section{
    display: inline-block;
    margin-top: 80px;
    margin-left: 5%;
    margin-right: 5%;
    text-align: center;
    width: 90%;
}

section h2{
    font-family: "Lobster", cursive;
    color: #180f4a;
    font-size: 50px;
    font-weight: bold;
    width: 100%;
    margin: 0;
}

.servicos{
    display: inline-block;
    margin-top: 2%
}

.card {
    display: inline-block;
    width: 30%;
    padding: 20px;
    margin: 1%;
    border: 1px solid #ff2978;
    border-radius: 10px;
}

.card p{
    text-align: justify;
}

.card-hdn{
    display: none;
}

.card:hover {
    background: #ff2978;
    color: white;
    padding: 40px;
}

.card:hover img{
    display: none;
}

.card:hover .card-text{
    display: none;
}

.card:hover .card-hdn{
    display: inline-block;
}

footer {
    height: 200px;
    background-image: linear-gradient(180deg, #180f4a, #090422, black);
    text-align: center;
    border-top: 5px solid #ff2978;
}

rodape{
    padding: 100px;
}

.agencia{
    font-family: "Lobster", cursive;
    color: white;
    font-size: 34px;
}

.whats {
    position: fixed;
    bottom: 5px;
    right: 15px;
}