body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
}

.header {
    background-color: #061a40;
    padding: 15px 50px;
    overflow: hidden; 
}

.logo {
    height: 55px;
    float: left; 
}

.navegacao {
    float: right; 
}

.menu {
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
}

.menu li {
    display: inline;
    margin-left: 25px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.menu a:hover {
    text-decoration: underline;
}


.banner {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}


.blog {
    background-color: #B9D6F2;
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 50px 0;
}

.blog h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.cards {
    text-align: center;
}

.card {
    display: inline-block;
    background: white;
    width: 300px;
    padding: 15px;
    margin: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    vertical-align: top;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

.card h3 {
    font-size: 16px;
    margin: 10px 0;
}

.card p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}


.contato {
    background-color: white;
    padding: 50px;
    text-align: center;
}

.contato h2 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: bold;
}


form {
    width: 400px;
    margin: 0 auto;
    background: white;
    padding: 25px 30px;
    border: 1px solid #b0c4de;
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(26, 54, 93, 0.1);
    text-align: left;
}

fieldset {
    border: none;
    padding: 0;
    margin: 0;
}


label {
    display: inline-block;
    width: 80px; 
    font-weight: bold;
    margin-bottom: 10px;
    vertical-align: middle;
}

input, textarea {
    width: 300px;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
    box-sizing: border-box;
    margin-bottom: 10px;
    vertical-align: middle;
}


textarea {
    height: 70px;
    resize: vertical;
}


button {
    background-color: #061a40;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    display: block;
    margin-left: auto;
    margin-top: 10px;
}

button:hover {
    background-color: #061a40;
}


footer {
    background-color: #061a40;
    color: white;
    text-align: center;
    padding: 60px;
    margin-top: 20px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}