.apps-header {
  margin-bottom: 2rem;
}

.apps-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
}

.apps-header p {
  color: var(--text-light);
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.9;
}

/* Grid */
.apps-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Card */
.app-card {
  background: var(--card-bg);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;

  font-family: 'Baloo 2', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.app-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}

/* Caso queira estilo diferente no futuro */
.app-card.disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* Header App */
.app-header {
  align-items: center;
  display: flex;
  gap: 0.8rem;
}

.app-icon {
  background: var(--bg-app);
  border-radius: 12px;
  height: 56px;
  width: 56px;
}

/* Texto */
.app-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

/* Botões */
.app-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;

  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.app-btn {
  background: var(--bg-app);
  border-radius: 10px;
  color: var(--text-dark);
  flex: 1;
  padding: 0.6rem;
  text-align: center;
  text-decoration: none;
}

/* Botão Início */
.back-home-button {
  align-items: center;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;

  margin: 3rem auto 0;
  padding: 0.6rem 0.9rem;
  text-decoration: none;
  width: fit-content;

  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.back-home-button:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.back-home-icon {
  display: block;
  height: 18px;
  width: 18px;
}