body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f2f2f2;
}

.logo-fam{
    display: flex;
    justify-content: center;
    margin: 20px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.header {
    margin-bottom: 20px;
}

.header h1 {
    font-size: 36px;
    color: #333;
}

.links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 20px;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adição de sombra */
    transition: background-color 0.3s;
}

.link i {
    margin-right: 10px;
}

.link:hover {
    background-color: #555;
    color: #fff;
}
