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

nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between; 
    align-items: center; 
    padding: 10px;
    background-color: #f8f8f8;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo img {
    width: 50px; 
    height: auto;
}

.links ul {
    list-style-type: none;
    display: flex; 
    margin: 0;
    padding: 0;
}

.links li {
    margin: 0 10px; 
}

.links a {
    text-align: center;
    text-decoration: none;
    padding: 15px;
    color: #333;
    font-weight: 500;
}

.botao-agendar button {
    padding: 12px 24px;
    background: linear-gradient(to right, #007bff, #65affe);
    border: none;
    border-radius: 20px;
}

.botao-agendar a{
    font-weight: bold;
    font-size: 14px;
    color: white;
    text-decoration: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px 0 80px;
}

.header-content {
    width: 45%; 
}

.header-content p{
    font-size: 20px;
    text-align: justify;
}

.header-content h1{
    font-size: 48px;
}

.header-button button{
    padding: 24px 100px;
    background: linear-gradient(to right, #007bff, #65affe);
    border: none;
    border-radius: 10px;
}

.header-button a{
    font-weight: bold;
    font-size: 24px;
    color: white;
    text-decoration: none;
}

.header-img {
    width: 45%; 
}

.header-img img {
    width: 110%;
    height: auto;
    display: block;
}

.main{
    background-color: blue;
    margin-top: -20px;
}