/* Geral */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.header {
    background: #001f3f;
    color: white;
    padding: 15px 0;
}

.header .logo img {
    height: 100px;
}

.header nav ul {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    margin: 0;
}

.header nav ul li {
    margin-left: 20px;
}

.header nav ul li a {
    color: white;
    text-decoration: none;
}

/* Hero Section */
#hero {
    background: brown;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-button {
    background: #001f3f;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Portfolio */
.portfolio-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.portfolio-item img {
    max-width: 100%;
    border-radius: 5px;
}

/* Contato */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form input, form textarea, form button {
    padding: 10px;
    border-radius: 5px;
}

/* Rodapé */
footer {
    background: #001f3f; /* Azul escuro */
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer .footer-info {
    margin-bottom: 15px;
}

footer a {
    color: #007bff; /* Azul principal */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}