* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #333;
    height: 100vh;
    background: url(img/barra-perigo.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

.container {
    max-width: 1080px;
    width: 90%;
    margin: auto;
    height: 100%;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

a {
	-webkit-transition: all 300ms ease;-moz-transition: all 300ms ease;-ms-transition: all 300ms ease;-o-transition: all 300ms ease;transition: all 300ms ease;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

h1 {
    font-size: 2.5rem;
    margin: 30px 0;
    color: #000;
}

p {
    font-size: 1.2rem;
}

.width_49 {width: 49%;}

.logo {max-width: 200px;}

.btn {
    text-decoration: none;
    padding: 15px 30px;
    display: block;
    background: #113a57;
    width: fit-content;
    color: #fff;
    border-radius: 40px;
    margin-top: 30px;
}

.btn:hover {
    background: #00a2d8;
}

@media screen and (max-width: 980px) {
    .width_49 {width: 100%;}

    body {
        background: none;
        padding: 60px 0;
        height: unset;
        text-align: center;
    }

    h1 {font-size: 2rem;}

    img {margin: auto;}

    .btn {margin: 30px auto;}
}