/* guest_etapa.css — Selector de etapa para modo invitado */

:root{
  --ink:  var(--text, #0f172a);
  --muted: var(--muted, #64748b);
  --line: rgba(15,23,42,.10);
  --card: rgba(255,255,255,.92);
  --pill: rgba(248,250,252,.92);
}

body{
  margin:0;
  min-height:100svh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  color:var(--ink);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.card{
  width:min(900px, 100%);
  border:1px solid rgba(255,255,255,.55);
  background:var(--card);
  backdrop-filter: blur(10px);
  border-radius:28px;
  box-shadow:0 30px 90px rgba(2,6,23,.16);
  overflow:hidden;
}

.head{
  padding:18px 22px 14px;
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.55);
}

h1{
  margin:0;
  font-size:20px;
  letter-spacing:.2px;
  font-weight:800;
}

.choices{
  display:flex;
  gap:14px;
  padding:16px 18px 18px;
  flex-wrap:wrap;
}

.pill-form{
  flex:1 1 220px;
  display:flex;
}

.pill{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 18px;
  border-radius:18px;
  text-decoration:none;
  color:inherit;
  border:1px solid rgba(15,23,42,.10);
  background:var(--pill);
  box-shadow:0 14px 40px rgba(2,6,23,.08);
  transition:transform .10s ease, box-shadow .10s ease, border-color .10s ease;
  cursor:pointer;
  font:inherit;
  text-align:left;
  width:100%;
}

.pill:hover{
  transform:translateY(-1px);
  box-shadow:0 20px 60px rgba(2,6,23,.12);
  border-color:rgba(59,130,246,.30);
}

.label{
  font-weight:750;
  font-size:16px;
  letter-spacing:.1px;
}

.icon{
  width:38px;
  height:38px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(2,6,23,.03);
  font-size:18px;
  flex:0 0 auto;
}

@media (max-width: 520px){
  .card{ border-radius:24px; }
  .pill-form{ flex:1 1 100%; }
}
