/* General page style */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f7f5;
  color: #072948;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative; /* Necessário para posicionar o botão admin */
}

/* Admin Link (Sutil no canto superior direito) */
.admin-link {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 0.85rem;
  color: #4b637a;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.admin-link:hover {
  color: #072948;
  background-color: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Header */
header {
  margin-top: 30px;
}

.logo {
  height: 160px;
  margin-bottom: 10px;
}

h1 {
  color: #072948;
  font-size: 2.2rem;
  margin: 10px 0;
}

.subtitle {
  font-size: 1rem;
  color: #4b637a;
}

/* Dashboard grid */
.dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-content: center;
  margin: 60px auto;
  max-width: 1100px;
  padding: 0 20px;
}

/* Cards */
.card {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(7, 41, 72, 0.1);
  padding: 40px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(7, 41, 72, 0.15);
}

.card h2 {
  color: #072948;
  font-size: 1.2rem;
  margin-top: 15px;
}

.card p {
  font-size: 0.9rem;
  color: #4b637a;
  margin-top: 8px;
}

/* Icons */
.icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

/* Icon colors */
.icon.purple { background-color: #6f42c1; }
.icon.orange { background-color: #e67e22; }
.icon.green { background-color: #28a745; }
.icon.blue { background-color: #3498db; }
.icon.pink { background-color: #FFC0CB; }

/* Footer */
footer {
  background-color: #072948;
  color: #f9f7f5;
  padding: 20px;
  font-size: 0.85rem;
  border-top: 5px solid #e92c28;
}