:root {
  --primary: #37003c;
  --secondary: #00ff85;
  --blue: #007bff;
  --green: #28a745;
  --bg: #f5f7fb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #37003c, #24002a);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-wrapper {
  width: 100%;
  padding: 20px;
}

.home-card {
  max-width: 480px;
  margin: auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.8s ease;
}

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

h1 {
  margin: 0;
  font-size: 2rem;
  color: var(--primary);
}

.subtitle {
  margin: 10px 0 30px;
  color: #666;
}

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

.home-buttons a {
  text-decoration: none;
}

.button {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  color: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.edit-button {
  background: linear-gradient(135deg, var(--green), #1e7e34);
}

.view-button {
  background: linear-gradient(135deg, var(--blue), #0056b3);
}

/* Animação */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
