/* public/css/links/style.css */
body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.logo {
    width: 80%;
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
}

.link-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Espaçamento entre os botões */
}

.link-button {
    display: block;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-button:hover {
    background-color: #ffffff;
    color: #000000;
    transform: scale(1.03);
}

.link-button .title {
    font-size: 1.1rem;
    font-weight: 700;
}

.link-button .description {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}