body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #0d6efd, #00c6ff);
    color: #333;
}

/* Cabeçalho */
header {
    background-color: rgba(13, 110, 253, 0.9);
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

header h1 {
    margin: 0;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffd700;
}

/* Seções */
section {
    padding: 40px 20px;
    margin: 40px auto;
    max-width: 900px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

h2 {
    color: #0d6efd;
    text-align: center;
}

/* Projetos */
.projeto {
    margin-bottom: 25px;
    text-align: center;
    transition: transform 0.3s;
}

.projeto img {
    display: block;
    margin: 10px auto;
    border-radius: 8px;
    max-width: 90%;
    max-height: 300px;
    object-fit: cover;
}

.projeto:hover {
    transform: scale(1.05);
}

/* Links */
a {
    color: #0d6efd;
}

a:hover {
    color: #0056b3;
}

/* Contato */
#contato p {
    text-align: center;
    font-size: 1.1em;
}
