/* ================================
   LISTA DE ESPERA — ROOMMATE FINDER
   ================================ */

.waitlist {
  background: #f8fbfc;
  color: #0f172a;
}

.waitlist-hero {
  padding: 4rem 0 3rem;
}

.waitlist-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .waitlist-hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ---------- TEXT ---------- */

.waitlist-hero__title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.waitlist-hero__title .rf {
  color: var(--primary, #00c4cc);
}

.waitlist-hero__subtitle {
  font-size: 1.05rem;
  max-width: 520px;
  opacity: 0.85;
  margin-bottom: 1.2rem;
}

.waitlist-hero__micro {
  font-size: 0.92rem;
  opacity: 0.7;
  margin-top: 0.9rem;
  max-width: 560px;
}

/* ---------- BULLETS ---------- */

.waitlist-hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.6rem 0 0.4rem;
}

.wl-pill {
  position: static;
  display: inline-flex;
  align-items: center;
  background: rgba(0, 196, 204, 0.10);
  color: #027b80;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

/* ---------- CARD ---------- */

.waitlist-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem 1.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.waitlist-card__title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.waitlist-card__desc {
  font-size: 0.92rem;
  opacity: 0.7;
  margin-bottom: 1.3rem;
}

/* ---------- FORM ---------- */

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form__row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
}

.input {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}

.input:focus {
  outline: none;
  border-color: #00c4cc;
  box-shadow: 0 0 0 2px rgba(0, 196, 204, 0.15);
}

.input::placeholder {
  opacity: 0.6;
}

/* ---------- CHECKBOX ---------- */

.form__check {
  margin-top: 0.25rem;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.78rem;
  line-height: 1.3;
  opacity: 0.9;
}

.check input {
  margin-top: 0.18rem;
}

.check a {
  color: #00c4cc;
  font-weight: 800;
  text-decoration: none;
}

.check a:hover {
  text-decoration: underline;
}

/* ---------- BUTTON ---------- */

.btn--full {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 10px;
}

/* ---------- FINE PRINT ---------- */

.form__fine {
  font-size: 0.72rem;
  text-align: center;
  opacity: 0.6;
  margin-top: 0.25rem;
}

/* ---------- STEPS ---------- */

.wl-steps {
  max-width: 820px;
  margin: 1.5rem auto 0;
  display: grid;
  gap: 0.9rem;
}

.wl-step {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.9rem;
  align-items: start;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.wl-step__num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  background: rgba(0,196,204,0.12);
  color:#027b80;
}

.wl-step h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
}

.wl-step p {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.35;
}

/* ---------- FAQ ---------- */

.waitlist-faq {
  padding: 3rem 0 4rem;
}

.faq {
  max-width: 760px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq__item {
  background: #ffffff;
  border-radius: 12px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition: background 0.15s ease;
}

.faq__item:hover {
  background: #f9fcfd;
}

.faq__item summary {
  font-weight: 800;
  font-size: 0.9rem;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item p {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0.8;
}
