body {
    color: white;
    background-color: black;
    font-family: Arial, Helvetica, sans-serif;
}

ul {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    align-items: center;
    padding: 16px;
}

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

}

header img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #1e6da8;
}

.center {
    text-align: center;
}

h1 {
    color: #1e6da8;
}

footer {
    display: flex;
    justify-content: center;
}

footer img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

footer a {
    margin: 20px;
    text-align: center;
}

footer p {
    margin-top: 2px;
}

.container {
    padding: 0px 50px;
}

nav a:hover {
    color: #1e6da8;
}

section a:hover {
    color: #1e6da8;
}

.contato {
    padding: 50px 0px;
    text-align: center;
}

.container-projetos {
    padding: 40px 20px;
    text-align: center;
}

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

.card {
    background-color: #1a1a1a;
    border: 1px solid var(--cor-principal);
    border-radius: 10px;
    padding: 20px;
    width: 280px;
    transition: 0.3s;
}

.card a {
    margin-top: auto;
    padding: 10px 20px;
    background-color: var(--cor-principal);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}
.card p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 20px;
}

.card:hover {
    box-shadow: 0 10px 20px rgba(0, 129, 201, 0.3);
}

.tag {
    display: inline-block;
    background-color: var(--cor-principal);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    margin: 15px 0;
}