@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo da página */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #76debc4f;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 360px;
}

header {
    margin-bottom: 20px;
}

.logo {
    width: 160px;
    margin-bottom: 15px;
}

header h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.description {
    font-size: 13px;
    color: #666;
    margin-bottom: 30px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link {
    display: block;
    background-color: #00C08B;
    color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.link:hover {
    background-color: #008660;
    transform: translateY(-3px);
}

footer {
    margin-top: 20px;
}

footer p {
    font-size: 14px;
    color: #999;
}
