/* =============================================
   Apa! Barna — Pàgina d'inici (servidor institut)
   ============================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0D0D0D;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

/* ---- Capçalera ---- */

.cap {
  text-align: center;
  margin-bottom: 56px;
}

.logo {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}

.logo span {
  background: linear-gradient(to right, #FF6600 4%, #FF0000 24%, #0D00FF 60%, #00EAFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitol {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #888;
}

/* ---- Graella de targetes ---- */

.targetes {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
  width: 100%;
}

/* ---- Targeta ---- */

.targeta {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 24px;
  padding: 36px 32px;
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.targeta:hover {
  transform: translateY(-4px);
  border-color: #444;
}

/* Targeta principal (app) */
.targeta.principal {
  background: #fff;
  border-color: #fff;
  width: 280px;
}

.targeta.principal .etiqueta,
.targeta.principal .titol-targeta,
.targeta.principal .descripcio {
  color: #000;
}

.targeta.principal .icona-targeta {
  background: #0D0D0D;
}

/* ---- Elements de la targeta ---- */

.icona-targeta {
  width: 52px;
  height: 52px;
  background: #2A2A2A;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icona-targeta svg {
  width: 26px;
  height: 26px;
}

.etiqueta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555;
}

.titol-targeta {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.descripcio {
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
}

.fletxa {
  margin-top: auto;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.targeta.principal .fletxa {
  background: #0D0D0D;
}

.fletxa svg {
  width: 16px;
  height: 16px;
}

/* ---- Peu ---- */

.peu {
  margin-top: 56px;
  font-size: 13px;
  color: #444;
  text-align: center;
}
