/* Resetando margens e padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
}

header {
    text-align: center;
    background-color: #3a7ca5;
    color: white;
    padding: 20px;
    margin-bottom: 20px;
}

header .logo {
    margin-bottom: 15px;
}

header .logo-img {
    width: 150px; /* Defina o tamanho adequado para sua logo */
    height: auto;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}

.intro {
    margin-bottom: 40px;
    text-align: center;
}

.intro h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.intro p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto;
}

.projetos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.projetos h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 20px;
}

.botao-projeto {
    text-align: center;
}

.btn {
    display: inline-block;
    background-color: #3a7ca5;
    color: white;
    padding: 10px 20px;
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #2a5d78;
}

footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #666;
}
