body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #a7bfcc;
    color: #1b5078;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px; /* Ajuste o tamanho conforme necessário */
    margin-right: 10px;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: #1b5078;
    text-decoration: none;
}

.cta-button {
    background-color: #a7bfcc;
    color: #1b5078;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    width: 100%;
    max-width: 250px;
    text-align: center;
    display: block;
    margin: 10px auto;
}

.hero {
    background: url('/Images/hero.jpg') no-repeat center center;
    background-size: cover;
    height: 400px; /* Ajuste conforme necessário */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero {
        text-align: center;
        padding: 20px;
    }

    .cta-button {
        width: 100%;
        max-width: 250px;
        text-align: center;
        display: block;
        margin: 10px auto;
    }
}

.services {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background-color: #F7F7F7;
}

.service-card {
    background-color: #a7bfcc;
    color: #1B5078;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #a7bfcc;
    color: #1B5078;
    text-align: center;
    padding: 20px;
}

footer .social-icons a {
    color: #1B5078;
    margin: 0 10px;
    text-decoration: none;
}

/* Estilos para o conteúdo dinâmico */
.services-page {
    padding: 20px;
    text-align: center;
}

.service-item {
    margin-bottom: 20px;
}