/* === Geral da página === */
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #a1c4fd, #d39fff);
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 50px 20px 20px 20px;
}

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

header p {
    font-size: 1.2rem;
    font-weight: 500;
}

main {
    text-align: center;
    margin-top: 50px;
}

.project-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* === Botões de projeto === */
.project-btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 10px 0;
    background: linear-gradient(90deg, #8A2BE2, #4B6CB7); /* roxo e azul */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: transform 0.2s;
}

.project-btn:hover {
    transform: scale(1.05);
}


.project-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.4);
    background: linear-gradient(45deg, #a1c4fd, #d39fff);
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

footer {
    margin-top: auto;
    padding: 20px;
    font-size: 0.9rem;
}
