/* ─── Auth pages ─────────────────────────────────────────────────── */
.sa-auth-wrap {
  min-height: calc(60vh);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}
.sa-auth-box {
  width: 100%;
  max-width: 380px;
}
.sa-auth-box h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.sa-auth-box .sa-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 2rem;
}
.sa-field + .sa-field { margin-top: 0.9rem; }
.sa-auth-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}
.sa-auth-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sa-auth-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}
.sa-auth-links a:hover { color: var(--fg); }

/* ─── Home page ──────────────────────────────────────────────────── */
.sa-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 480px;
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .sa-hero { grid-template-columns: 1fr; gap: 2rem; }
}
.sa-hero-carousel { border-radius: var(--radius); overflow: hidden; }
.sa-hero-carousel .carousel-item img { height: 400px; object-fit: cover; width: 100%; }
@media (max-width: 640px) {
  .sa-hero { padding: 1.5rem 0; }
  .sa-hero-carousel .carousel-item img { height: 240px; }
}
.sa-hero-text h2 {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.sa-hero-text .sa-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sa-hero-text .sa-feature-list li {
  font-size: 15px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.sa-feature-list li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fg);
  flex-shrink: 0;
}

/* ─── Salas page ─────────────────────────────────────────────────── */
.sa-salas-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.sa-salas-header h1 { margin: 0; }
.sa-salas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.sa-sala-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s;
}
.sa-sala-card:hover { border-color: #bbb; }
.sa-sala-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.sa-sala-card-body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sa-sala-card-body h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.sa-sala-card-body p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
  flex: 1;
}
.sa-sala-card-footer {
  padding: 0.9rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
}
.sa-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 0;
  color: var(--muted);
  font-size: 14px;
}

/* ─── Conta page ─────────────────────────────────────────────────── */
.sa-conta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (max-width: 640px) { .sa-conta-grid { grid-template-columns: 1fr; } }
.sa-stat-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.sa-stat-card .sa-stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.sa-stat-card .sa-stat-value {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.sa-stat-card .sa-stat-unit {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.sa-stat-card .sa-stat-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ─── Créditos page ─────────────────────────────────────────────── */
.sa-creditos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.sa-plano-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.sa-plano-card:hover { border-color: #bbb; }
.sa-plano-name {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.sa-plano-credits {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.sa-plano-credits span {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}
.sa-plano-price {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.sa-plano-desc {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  margin-bottom: 1.25rem;
}
.sa-divider-or {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 2rem;
  color: var(--muted);
  font-size: 13px;
}
.sa-divider-or::before,
.sa-divider-or::after {
  content: '';
  flex: 1;
  border-top: 1px solid var(--border);
}
.sa-avulso-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  max-width: 480px;
}
.sa-avulso-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.sa-avulso-card .sa-avulso-price {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.sa-avulso-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.sa-avulso-row .form-control { flex: 1; }

/* ─── Reserva / Remarcar pages ───────────────────────────────────── */
.sa-reserva-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) { .sa-reserva-grid { grid-template-columns: 1fr; } }
.sa-reserva-img {
  border-radius: var(--radius);
  overflow: hidden;
}
.sa-reserva-img img { width: 100%; height: 220px; object-fit: cover; display: block; }
.sa-reserva-info h3 { margin-bottom: 0.25rem; }
.sa-reserva-info .sa-addr {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.sa-reserva-info .sa-horarios {
  font-size: 14px;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.sa-reserva-info .sa-horarios span { margin-right: 0.4rem; }
.sa-valor-block {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 1.5rem;
}
.sa-valor-block .sa-val-num {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.sa-valor-block .sa-val-unit { font-size: 13px; color: var(--muted); }
.sa-contrato-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.sa-contrato-wrap iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: none;
}
.sa-reserva-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.sa-check-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
}
.sa-check-label input { width: 16px; height: 16px; accent-color: var(--fg); cursor: pointer; }

/* ─── Remarcar page ──────────────────────────────────────────────── */
.sa-remarcar-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) { .sa-remarcar-grid { grid-template-columns: 1fr; } }
.sa-remarcar-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* ─── Anuncio page ───────────────────────────────────────────────── */
.sa-anuncio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) { .sa-anuncio-grid { grid-template-columns: 1fr; } }
.sa-anuncio-img { border-radius: var(--radius); overflow: hidden; }
.sa-anuncio-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.sa-map {
  width: 100%;
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
}

/* ─── Cadastro page ──────────────────────────────────────────────── */
.sa-cadastro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) { .sa-cadastro-grid { grid-template-columns: 1fr; } }
