.aluno-shell {
  background: #f1f5f9;
  padding-bottom: 56px;
}

.aluno-auth-wrap {
  display: flex;
  justify-content: center;
}

.aluno-auth-card {
  width: 100%;
  max-width: 560px;
  background: #fff;
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.aluno-auth-brand {
  margin-bottom: 8px;
  text-align: center;
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.aluno-auth-title {
  margin: 0 0 10px;
  text-align: center;
  color: #05285b;
  font-size: 2.2rem;
  font-weight: 700;
}

.aluno-auth-subtitle {
  margin: 0 0 28px;
  text-align: center;
  color: #64748b;
  font-size: 1.05rem;
}

.aluno-auth-btn {
  width: 100%;
  min-height: 48px;
}

.aluno-auth-footer {
  margin: 22px 0 0;
  text-align: center;
  color: #475569;
}

.aluno-dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.aluno-kicker {
  margin: 0 0 8px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.aluno-dashboard-title {
  margin: 0 0 8px;
  color: #05285b;
  font-size: 2.2rem;
  font-weight: 700;
}

.aluno-dashboard-subtitle {
  margin: 0;
  color: #64748b;
  font-size: 1.05rem;
}

.aluno-dashboard-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.aluno-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 24px;
}

.aluno-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.aluno-card-badge {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: #e9f7ef;
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
}

.aluno-card-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: #eef4ff;
  color: #0d6efd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

.aluno-card h3 {
  margin: 0 0 10px;
  color: #05285b;
  font-size: 1.25rem;
}

.aluno-card p {
  min-height: 48px;
  margin: 0 0 16px;
  color: #64748b;
  line-height: 1.6;
}

.aluno-card a {
  font-weight: 700;
  text-decoration: none;
}

.aluno-info-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.aluno-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #94a3b8;
  border-radius: 12px;
  background: #fff;
  color: #334155;
  text-decoration: none;
}

.aluno-btn-outline:hover {
  background: #f8fafc;
  color: #0f172a;
  text-decoration: none;
}

.aluno-panel-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 18px 0 28px;
}

.aluno-panel-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(11, 36, 65, 0.10);
  border-radius: 16px;
  background: #fff;
  color: #0b2441;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(11, 36, 65, 0.05);
  transition: 0.18s ease;
}

.aluno-panel-nav__link:hover {
  transform: translateY(-1px);
  border-color: rgba(13, 110, 253, 0.25);
  color: #0d6efd;
  box-shadow: 0 12px 28px rgba(11, 36, 65, 0.08);
}

.aluno-panel-nav__link.is-active {
  background: #eef4ff;
  border-color: rgba(13, 110, 253, 0.25);
  color: #0d6efd;
}

.aluno-panel-nav__link i {
  font-size: 1.15rem;
}

.aluno-page-card {
  background: #fff;
  border: 1px solid rgba(11, 36, 65, 0.08);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(11, 36, 65, 0.06);
}

.aluno-page-card h3 {
  margin-bottom: 10px;
}

.aluno-page-card p:last-child {
  margin-bottom: 0;
}

.aluno-empty-state {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px dashed rgba(13, 110, 253, 0.25);
  border-radius: 16px;
  background: #f8fbff;
}

.aluno-empty-state i {
  margin-top: 2px;
  color: #0d6efd;
  font-size: 1.5rem;
}

.aluno-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.aluno-form-grid .full {
  grid-column: 1 / -1;
}

@media (max-width: 1100px) {
  .aluno-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aluno-info-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .aluno-dashboard-head {
    flex-direction: column;
  }

  .aluno-cards-grid {
    grid-template-columns: 1fr;
  }

  .aluno-auth-card {
    padding: 22px;
  }

  .aluno-dashboard-title,
  .aluno-auth-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 767.98px) {
  .aluno-form-grid {
    grid-template-columns: 1fr;
  }
}
