/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fafbfc;
    min-height: 100vh;
    color: #1f2937;
    line-height: 1.6;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 24px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Logo */
.logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Container de Links */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

/* Botões de Link */
.link-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    position: relative;
}

.link-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: #2563eb;
}

.link-button i:first-child {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
    color: #2563eb;
}

.link-button span {
    flex: 1;
    text-align: center;
    margin: 0 16px;
    font-weight: 500;
}

.link-button i:last-child {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Estilo unificado para todos os botões */
.link-button:hover {
    background: #f8fafc;
    border-color: #2563eb;
}

.link-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}



/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    .link-button {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    
    .link-button span {
        margin: 0 12px;
    }
    
    .logo {
        margin-bottom: 40px;
    }
    

}

@media (max-width: 480px) {
    .container {
        padding: 16px;
    }
    
    .link-button {
        padding: 16px 18px;
        font-size: 0.9rem;
    }
    
    .link-button i:first-child {
        font-size: 1.125rem;
    }
    
    .logo {
        margin-bottom: 32px;
    }
    


}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    animation: fadeInUp 0.6s ease-out;
}

.link-button {
    animation: fadeInUp 0.6s ease-out;
}

.link-button:nth-child(1) { animation-delay: 0.1s; }
.link-button:nth-child(2) { animation-delay: 0.2s; }
.link-button:nth-child(3) { animation-delay: 0.3s; }
.link-button:nth-child(4) { animation-delay: 0.4s; }