body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #007BFF, #00c6ff);
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container central */
.container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

h1 {
    margin-bottom: 10px;
}

p {
    margin-bottom: 30px;
    color: #555;
}

/* Botões */
.botoes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    text-decoration: none;
    background-color: #007BFF;
    color: white;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

.btn-secundario {
    background-color: #28a745;
}

.btn-secundario:hover {
    background-color: #1e7e34;
}
.btn-danger {
    background-color: #dc3545;
}

.btn-danger:hover {
    background-color: #a71d2a;
}