/* ============================================
   MARCHA PARA JESUS 2026 — APP PAGES
   Design editorial (Fraunces + Instrument Serif
   + JetBrains Mono) consistente com a landing.
   Requer style.css carregado antes para herdar
   variáveis (--blue-deep, --gold, --cream, etc).
   ============================================ */

/* ---------- Mobile / iOS Safari ----------
   Fundo do <html> + overscroll evitam “bounce” branco
   e texto vazando na área do notch. viewport-fit=cover
   no header.php habilita env(safe-area-inset-*).
   ---------- */
html.app-html {
  background-color: var(--blue-deep);
}

html.app-html,
body.app-shell {
  overscroll-behavior-y: none;
}

/* Granulação global (body::after em style.css) é pensada para o fundo claro da landing; no tema escuro some blur estranho e faixas claras perto da UI do Safari. */
body.app-shell::after {
  display: none;
}

/* ---------- APP SHELL ---------- */
.app-shell {
  background-color: var(--blue-deep);
  background-image:
      radial-gradient(ellipse 80% 60% at 50% 0%, #1b3a5f 0%, transparent 70%),
      radial-gradient(ellipse 100% 80% at 15% 100%, #0d2640 0%, transparent 60%),
      linear-gradient(180deg, #07141f 0%, #0a1d30 45%, var(--blue-deep) 100%);
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--cream);
  font-family: var(--font-body);
}

.app-shell::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: var(--noise);
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/* ============================================
   HEADER
   ============================================ */
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: max(12px, env(safe-area-inset-top, 0px)) 0 12px;
  /* Fundo mais opaco: menos “degradê branco” quando o Safari amostra a UI por trás do backdrop-blur */
  background: rgba(5, 17, 30, 0.94);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  box-shadow:
    0 1px 0 rgba(232, 205, 161, 0.12),
    0 10px 30px rgba(0, 0, 0, 0.25);
}

.app-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.app-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  flex-shrink: 0;
}

.app-logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.app-logo-text small {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  opacity: 0.55;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 4px;
  color: var(--gold-glow);
}

.app-nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.app-nav__link {
  position: relative;
  padding: 8px 14px;
  color: rgba(251, 246, 238, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 100px;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}

.app-nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform 0.3s var(--ease-spring);
}

.app-nav__link:hover,
.app-nav__link.active {
  color: var(--cream);
}

.app-nav__link:hover::after,
.app-nav__link.active::after {
  transform: translateX(-50%) scale(1);
}

.app-nav__link--cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--brown) 100%);
  color: var(--blue-deep);
  font-weight: 600;
  padding: 8px 18px;
  box-shadow: 0 4px 14px rgba(203, 169, 126, 0.3);
}

.app-nav__link--cta:hover {
  transform: translateY(-2px);
  color: var(--blue-deep);
}

.app-nav__link--cta::after { display: none; }

.app-nav__link--muted {
  color: rgba(251, 246, 238, 0.45);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.app-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Até 1024px: só ícone ☰ aqui — Entrar/Painel/Sair vão para o drawer */
.app-header__actions-desktop {
  display: none;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

@media (max-width: 1024px) {
  .app-header__actions-desktop {
    display: none !important;
  }
}

.app-cart-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  background: rgba(232, 205, 161, 0.06);
  border: 1px solid rgba(232, 205, 161, 0.2);
  border-radius: 12px;
  transition: transform 0.3s var(--ease-spring), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.app-cart-btn:hover {
  background: var(--gold);
  color: var(--blue-deep);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.app-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--ember);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--blue-deep);
}

.app-cart-count[data-count="0"] { display: none; }

.app-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: rgba(232, 205, 161, 0.06);
  border: 1px solid rgba(232, 205, 161, 0.2);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.app-hamburger span {
  width: 18px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.3s ease;
}

.app-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.app-hamburger.active span:nth-child(2) { opacity: 0; }
.app-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.app-mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 24px 24px;
  margin-top: 12px;
  border-top: 1px solid rgba(232, 205, 161, 0.1);
  background: rgba(5, 17, 30, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.app-mobile-nav.active { display: flex; }

.app-mobile-nav a {
  padding: 16px 0;
  color: rgba(251, 246, 238, 0.7);
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-bottom: 1px dashed rgba(232, 205, 161, 0.12);
  transition: color 0.3s ease, padding 0.3s ease;
}

.app-mobile-nav a:last-child { border: none; }

.app-mobile-nav a:hover {
  color: var(--gold-glow);
  padding-left: 6px;
}

/* ============================================
   MAIN
   ============================================ */
.app-main {
  position: relative;
  z-index: 2;
  min-height: calc(100dvh - 200px);
  min-height: calc(100vh - 200px);
  padding: 130px 0 calc(80px + env(safe-area-inset-bottom, 0px));
  padding-top: calc(130px + max(0px, env(safe-area-inset-top, 0px) - 12px));
}

/* ============================================
   FOOTER
   ============================================ */
.app-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(232, 205, 161, 0.1);
  padding: 36px 0;
  background: rgba(5, 17, 30, 0.5);
}

.app-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.app-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

.app-footer__text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(251, 246, 238, 0.4);
  letter-spacing: 0.05em;
}

.app-footer__text strong {
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   PAGE TITLE — estilo section__header editorial
   ============================================ */
.page-title {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}

.page-title__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 22px;
}

.page-title__eyebrow::before,
.page-title__eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.page-title h1 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
  font-size: clamp(2rem, 5.5vw, 3.3rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.page-title h1 em {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-glow);
  letter-spacing: -0.03em;
}

.page-title p {
  color: rgba(251, 246, 238, 0.65);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(232, 205, 161, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 40px 32px 36px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.card::before,
.card::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--gold);
  opacity: 0.5;
  pointer-events: none;
}

.card::before {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}

.card::after {
  bottom: -1px;
  right: -1px;
  border-left: 0;
  border-top: 0;
}

.card:hover {
  border-color: rgba(232, 205, 161, 0.3);
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  counter-reset: app-card;
}

.card-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
  padding: 40px 32px 32px;
  color: var(--cream);
  counter-increment: app-card;
  transition: transform 0.5s var(--ease-out-expo);
}

.card-link:hover {
  transform: translateY(-6px);
}

.card-link::before {
  content: counter(app-card, decimal-leading-zero);
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold);
  opacity: 0.6;
  letter-spacing: 0.2em;
  border: none;
}

.card-link__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(232, 205, 161, 0.25), transparent 60%),
    rgba(232, 205, 161, 0.08);
  border: 1px solid rgba(232, 205, 161, 0.3);
  border-radius: 18px;
  color: var(--gold-glow);
  transition: transform 0.5s var(--ease-spring), background 0.5s ease;
}

.card-link:hover .card-link__icon {
  transform: translateY(-4px) rotate(-4deg);
  background: linear-gradient(135deg, var(--gold), var(--brown));
  color: var(--blue-deep);
}

.card-link h3 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.card-link p {
  color: rgba(251, 246, 238, 0.65);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   FORMS — estilo editorial com labels mono
   ============================================ */
.form-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 44px 36px 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  color: var(--gold-glow);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 10px;
}

.form-group label .req {
  color: var(--ember);
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 205, 161, 0.15);
  border-radius: 12px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(232, 205, 161, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(203, 169, 126, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(251, 246, 238, 0.3);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23CBA97E' d='M6 8.5L1.5 4h9z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--blue-deep);
  color: var(--cream);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-hint {
  color: rgba(251, 246, 238, 0.4);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* ---------- Senha: mostrar/ocultar + medidor (login / registro) ---------- */
.form-group--password .password-field {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(232, 205, 161, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group--password .password-field:hover {
  border-color: rgba(232, 205, 161, 0.3);
}

.form-group--password .password-field:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(203, 169, 126, 0.15);
}

.form-group--password .password-field input {
  flex: 1;
  min-width: 0;
  width: auto;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.form-group--password .password-field input:focus {
  box-shadow: none;
  background: transparent;
}

.password-toggle {
  flex-shrink: 0;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 205, 161, 0.06);
  border: none;
  border-left: 1px solid rgba(232, 205, 161, 0.12);
  color: var(--gold-glow);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.password-toggle:hover {
  background: rgba(232, 205, 161, 0.12);
  color: var(--cream);
}

.password-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.password-toggle__icon--hide[hidden] {
  display: none !important;
}

.auth-client-alert {
  margin-bottom: 20px;
}

.password-strength {
  margin-top: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 205, 161, 0.12);
  border-radius: 12px;
}

.password-strength__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.password-strength__title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 246, 238, 0.55);
}

.password-strength__badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(251, 246, 238, 0.08);
  color: rgba(251, 246, 238, 0.5);
}

.password-strength[data-level="low"] .password-strength__badge {
  background: rgba(201, 88, 88, 0.2);
  color: #ecb5b5;
}

.password-strength[data-level="medium"] .password-strength__badge {
  background: rgba(215, 122, 58, 0.2);
  color: #f5b77a;
}

.password-strength[data-level="high"] .password-strength__badge {
  background: rgba(47, 163, 110, 0.2);
  color: #a8e3c4;
}

.password-strength__track {
  height: 6px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 12px;
}

.password-strength__bar {
  height: 100%;
  width: 0%;
  border-radius: 100px;
  transition: width 0.35s var(--ease-out-expo), background 0.35s ease;
  background: rgba(251, 246, 238, 0.25);
}

.password-strength[data-level="low"] .password-strength__bar {
  background: linear-gradient(90deg, #c95858, #a84848);
}

.password-strength[data-level="medium"] .password-strength__bar {
  background: linear-gradient(90deg, #d77a3a, #c9a227);
}

.password-strength[data-level="high"] .password-strength__bar {
  background: linear-gradient(90deg, #2fa36e, #3cbd82);
}

.password-strength__hints {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.password-strength__hints li {
  font-size: 0.78rem;
  color: rgba(251, 246, 238, 0.45);
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}

.password-strength__hints li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 205, 161, 0.35);
  background: transparent;
}

.password-strength__hints li.is-met {
  color: rgba(251, 246, 238, 0.78);
}

.password-strength__hints li.is-met::before {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 0 2px rgba(203, 169, 126, 0.25);
}

.form-error {
  color: var(--ember);
  font-size: 0.82rem;
  margin-top: 6px;
}

/* Checkbox grid (bebidas/alimentos) */
.check-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 205, 161, 0.12);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.check-item:hover {
  background: rgba(232, 205, 161, 0.06);
  border-color: rgba(232, 205, 161, 0.3);
}

/* Item "reservado" por outra barraca — visual travado */
.check-item--taken {
  cursor: not-allowed;
  opacity: 0.45;
  background: rgba(255, 255, 255, 0.015);
  border-style: dashed;
  position: relative;
}

.check-item--taken:hover {
  background: rgba(255, 255, 255, 0.015);
  border-color: rgba(232, 205, 161, 0.12);
}

.check-item--taken .checkmark {
  border-color: rgba(232, 205, 161, 0.25);
  background: transparent !important;
}

.check-item--taken .check-item__label {
  text-decoration: line-through;
  text-decoration-color: rgba(232, 205, 161, 0.4);
  text-decoration-thickness: 1px;
}

.check-item__taken-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 9px;
  background: rgba(215, 122, 58, 0.18);
  border: 1px solid rgba(215, 122, 58, 0.35);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 600;
  color: #f5b77a;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* Item bloqueado temporariamente porque o usuário já atingiu o limite (2) */
.check-item--blocked {
  opacity: 0.4;
  cursor: not-allowed;
}

.check-item input { display: none; }

.check-item .checkmark {
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(232, 205, 161, 0.4);
  border-radius: 5px;
  flex-shrink: 0;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.check-item input:checked ~ .checkmark {
  background: var(--gold);
  border-color: var(--gold);
}

.check-item input:checked ~ .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--blue-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.check-item span:last-child {
  color: rgba(251, 246, 238, 0.75);
  font-size: 0.92rem;
  transition: color 0.3s ease;
}

.check-item input:checked ~ span:last-child {
  color: var(--cream);
}

/* Termo check */
.termo-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(232, 205, 161, 0.05);
  border: 1px solid rgba(232, 205, 161, 0.2);
  border-radius: 14px;
  cursor: pointer;
  margin-bottom: 12px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.termo-check:hover {
  background: rgba(232, 205, 161, 0.08);
  border-color: rgba(232, 205, 161, 0.35);
}

/* Termo em destaque — usado para termos críticos (ex.: exclusividade) */
.termo-check--highlight {
  background: rgba(215, 122, 58, 0.06);
  border-color: rgba(215, 122, 58, 0.3);
  border-left-width: 3px;
  border-left-color: #D77A3A;
}

.termo-check--highlight:hover {
  background: rgba(215, 122, 58, 0.1);
  border-color: rgba(215, 122, 58, 0.45);
  border-left-color: #D77A3A;
}

.termo-check--highlight span strong {
  color: var(--cream);
  font-weight: 600;
}

.termo-check input { display: none; }

.termo-check .checkmark {
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(232, 205, 161, 0.45);
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.termo-check input:checked ~ .checkmark {
  background: var(--gold);
  border-color: var(--gold);
}

.termo-check input:checked ~ .checkmark::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid var(--blue-deep);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.termo-check span:last-child {
  color: rgba(251, 246, 238, 0.75);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Info box — faixa lateral dourada */
.info-box {
  position: relative;
  padding: 18px 22px 18px 26px;
  background: rgba(232, 205, 161, 0.06);
  border: 1px solid rgba(232, 205, 161, 0.18);
  border-left: 3px solid var(--gold);
  border-radius: 0 14px 14px 0;
  color: rgba(251, 246, 238, 0.8);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.info-box strong {
  color: var(--gold-glow);
  font-weight: 600;
}

/* Section title within form */
.form-section {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin: 32px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(232, 205, 161, 0.2);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1.5px solid transparent;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out-expo),
              box-shadow 0.4s ease,
              background 0.4s ease,
              color 0.4s ease,
              border-color 0.4s ease;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.25) 50%, transparent 80%);
  transition: left 0.8s var(--ease-out-expo);
  z-index: 1;
  pointer-events: none;
}

.btn:hover::before {
  left: 120%;
}

.btn > * { position: relative; z-index: 2; }

.btn-orange {
  background: linear-gradient(135deg, #9c6a44 0%, var(--brown) 50%, #7a5030 100%);
  color: var(--cream);
  border-color: rgba(232, 205, 161, 0.3);
  box-shadow:
    0 4px 20px rgba(139, 94, 60, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-orange:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--brown) 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow:
    0 10px 30px rgba(203, 169, 126, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  border-color: var(--gold-glow);
}

.btn-orange:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-glow);
  border-color: rgba(232, 205, 161, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(232, 205, 161, 0.1);
  border-color: var(--gold);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-full { width: 100%; margin-top: 8px; }

.btn-green {
  background: linear-gradient(135deg, #2fa36e 0%, #1d7a4d 100%);
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-green:hover {
  background: linear-gradient(135deg, #3cbd82 0%, #2fa36e 100%);
  transform: translateY(-2px);
}

.btn-red {
  background: linear-gradient(135deg, #b54848 0%, #8a3535 100%);
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-red:hover {
  background: linear-gradient(135deg, #c95858 0%, #b54848 100%);
  transform: translateY(-2px);
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
  position: relative;
  padding: 16px 22px 16px 26px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 24px;
  border: 1px solid;
  border-left-width: 3px;
}

.alert-success {
  background: rgba(47, 163, 110, 0.1);
  border-color: rgba(47, 163, 110, 0.3);
  border-left-color: #3cbd82;
  color: #a8e3c4;
}

.alert-error {
  background: rgba(181, 72, 72, 0.1);
  border-color: rgba(181, 72, 72, 0.35);
  border-left-color: #c95858;
  color: #ecb5b5;
}

.auth-seguranca-aviso .auth-comunidade-link {
  display: block;
  margin-top: 12px;
  color: #7dd3a8;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-seguranca-aviso .auth-comunidade-link:hover {
  color: #a8e3c4;
}

.alert-info {
  background: rgba(232, 205, 161, 0.08);
  border-color: rgba(232, 205, 161, 0.25);
  border-left-color: var(--gold);
  color: var(--gold-glow);
}

.alert > div { margin: 4px 0; }

/* ============================================
   PRODUCT CARDS (loja)
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.p-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(15, 42, 68, 0.08);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo),
              box-shadow 0.5s ease,
              border-color 0.5s ease;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.4);
  color: var(--ink);
}

.p-card:hover {
  transform: translateY(-6px);
  border-color: rgba(203, 169, 126, 0.4);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.p-card__img {
  aspect-ratio: 4/3;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 60%),
    linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.p-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease-out-expo);
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.12));
}

.p-card:hover .p-card__img img {
  transform: scale(1.08) rotate(-2deg);
}

.p-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 12px;
  background: var(--brown);
  color: var(--cream);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  z-index: 2;
}

.p-card__body {
  padding: 24px 24px 26px;
  text-align: left;
}

.p-card__body h3 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

.p-card__price {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

/* ============================================
   CART
   ============================================ */
.cart-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(232, 205, 161, 0.15);
  border-radius: 16px;
  margin-bottom: 14px;
  align-items: center;
  transition: border-color 0.3s ease;
}

.cart-item:hover {
  border-color: rgba(232, 205, 161, 0.3);
}

.cart-item__img {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
}

.cart-item__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.cart-item__info { flex: 1; }

.cart-item__info h4 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.cart-item__info .price {
  font-family: var(--font-mono);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty button {
  width: 32px;
  height: 32px;
  background: rgba(232, 205, 161, 0.06);
  border: 1px solid rgba(232, 205, 161, 0.2);
  border-radius: 8px;
  color: var(--cream);
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.cart-qty button:hover {
  background: var(--gold);
  color: var(--blue-deep);
  border-color: var(--gold);
}

.cart-qty span {
  font-family: var(--font-mono);
  font-weight: 600;
  min-width: 24px;
  text-align: center;
  color: var(--cream);
}

.cart-remove {
  background: none;
  border: none;
  color: rgba(251, 246, 238, 0.4);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 8px;
  transition: color 0.3s ease;
}

.cart-remove:hover { color: #c95858; }

.cart-total {
  text-align: right;
  padding: 22px 24px;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: rgba(251, 246, 238, 0.7);
  border-top: 1px dashed rgba(232, 205, 161, 0.2);
  margin-top: 12px;
}

.cart-total strong {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-left: 10px;
}

/* ============================================
   ADMIN TABLE
   ============================================ */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.admin-table th {
  padding: 14px 18px;
  text-align: left;
  background: rgba(232, 205, 161, 0.06);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-bottom: 1px solid rgba(232, 205, 161, 0.2);
}

.admin-table td {
  padding: 16px 18px;
  border-bottom: 1px dashed rgba(232, 205, 161, 0.12);
  font-size: 0.92rem;
  color: rgba(251, 246, 238, 0.8);
}

.admin-table tr:hover td {
  background: rgba(232, 205, 161, 0.04);
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid transparent;
}

.badge-pending {
  background: rgba(215, 122, 58, 0.12);
  color: #f5b77a;
  border-color: rgba(215, 122, 58, 0.3);
}

.badge-approved {
  background: rgba(47, 163, 110, 0.12);
  color: #3cbd82;
  border-color: rgba(47, 163, 110, 0.3);
}

.badge-rejected {
  background: rgba(181, 72, 72, 0.12);
  color: #c95858;
  border-color: rgba(181, 72, 72, 0.3);
}

.table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(232, 205, 161, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

/* Admin toolbar (filtros, stats, busca, export) */
.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.admin-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.admin-stat {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 205, 161, 0.15);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(251, 246, 238, 0.65);
  letter-spacing: 0.02em;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.admin-stat em {
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-right: 6px;
}

.admin-stat:hover,
.admin-stat.is-active {
  color: var(--cream);
  background: rgba(232, 205, 161, 0.08);
  border-color: var(--gold);
}

.admin-search {
  flex: 1;
  min-width: 220px;
}

.admin-search input {
  width: 100%;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 205, 161, 0.15);
  border-radius: 100px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
}

.admin-search input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(203, 169, 126, 0.15);
}

.admin-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.admin-actions form.inline {
  display: inline-block;
  margin: 0;
}

.admin-actions .btn { padding: 7px 14px; font-size: 0.78rem; border-radius: 8px; }

/* Admin stats */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.stat-card {
  padding: 26px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(232, 205, 161, 0.15);
  border-radius: 16px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--brown));
}

.stat-card__num {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(251, 246, 238, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ============================================
   AUTH
   ============================================ */
.auth-card {
  max-width: 460px;
  margin: 40px auto 0;
}

/* ============================================
   INSCRIÇÃO — success state (pós-envio)
   ============================================ */
.inscricao-success {
  text-align: center;
  padding: 20px 12px;
  position: relative;
}

.inscricao-success__icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3cbd82, #1d7a4d);
  color: var(--cream);
  border-radius: 50%;
  margin-bottom: 22px;
  box-shadow: 0 12px 28px -8px rgba(47, 163, 110, 0.5);
}

.inscricao-success__title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.inscricao-success__title em {
  font-family: var(--font-serif-italic);
  font-style: italic;
  color: var(--gold-glow);
  font-weight: 400;
}

.inscricao-success__desc {
  color: rgba(251, 246, 238, 0.75);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 24px;
}

.inscricao-success__protocolo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 32px;
  background: rgba(232, 205, 161, 0.08);
  border: 1px solid rgba(232, 205, 161, 0.3);
  border-radius: 14px;
  margin-bottom: 28px;
}

.inscricao-success__protocolo span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.inscricao-success__protocolo strong {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.inscricao-success__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Lembrete após o sucesso (exclusividade dos itens) */
.inscricao-success__reminder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  text-align: left;
  padding: 20px 22px;
  margin: 28px 0 4px;
  background: rgba(215, 122, 58, 0.08);
  border: 1px solid rgba(215, 122, 58, 0.3);
  border-left: 3px solid #D77A3A;
  border-radius: 0 14px 14px 0;
}

.inscricao-success__reminder-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(215, 122, 58, 0.2);
  color: #f5b77a;
  flex-shrink: 0;
}

.inscricao-success__reminder strong {
  display: block;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.inscricao-success__reminder p {
  color: rgba(251, 246, 238, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 14px;
}

.inscricao-success__reminder p strong {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0;
  letter-spacing: normal;
}

.inscricao-success__channels {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.inscricao-success__channels li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(232, 205, 161, 0.08);
  border: 1px solid rgba(232, 205, 161, 0.25);
  border-radius: 100px;
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.inscricao-success__channels li a:hover {
  background: rgba(232, 205, 161, 0.15);
  border-color: var(--gold);
  transform: translateX(2px);
}

.inscricao-success__channels li a svg {
  color: var(--gold-glow);
  flex-shrink: 0;
}

@media (max-width: 540px) {
  .inscricao-success__reminder {
    grid-template-columns: 1fr;
  }
  .inscricao-success__reminder-icon {
    margin: 0 auto;
  }
}

/* ============================================
   INSCRIÇÃO STATUS (página de acompanhamento)
   ============================================ */
.inscricao-status__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin-bottom: 22px;
  border-bottom: 1px dashed rgba(232, 205, 161, 0.2);
}

.inscricao-status__tipo {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid;
}

.status-pill--pendente {
  color: #f5b77a;
  background: rgba(215, 122, 58, 0.12);
  border-color: rgba(215, 122, 58, 0.35);
}

.status-pill--aprovada {
  color: #6ed997;
  background: rgba(47, 163, 110, 0.12);
  border-color: rgba(47, 163, 110, 0.35);
}

.status-pill--recusada {
  color: #ecb5b5;
  background: rgba(181, 72, 72, 0.12);
  border-color: rgba(181, 72, 72, 0.35);
}

.inscricao-status__title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 28px;
}

.inscricao-status__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.inscricao-status__meta > div {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 205, 161, 0.12);
  border-radius: 12px;
}

.inscricao-status__meta dt {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 4px;
}

.inscricao-status__meta dd {
  font-size: 1rem;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.inscricao-status__meta dd.font-mono {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
}

.inscricao-status__message {
  padding: 18px 22px 18px 26px;
  border-radius: 14px;
  border-left: 3px solid;
  font-size: 0.95rem;
  line-height: 1.65;
}

.inscricao-status__message strong { display: block; margin-bottom: 4px; }

.inscricao-status__message--pending {
  background: rgba(215, 122, 58, 0.08);
  border-color: #f5b77a;
  color: #f5b77a;
}

.inscricao-status__message--approved {
  background: rgba(47, 163, 110, 0.08);
  border-color: #3cbd82;
  color: #a8e3c4;
}

.inscricao-status__message--rejected {
  background: rgba(181, 72, 72, 0.08);
  border-color: #c95858;
  color: #ecb5b5;
}

@media (min-width: 600px) {
  .inscricao-status__meta { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   DOC CARD (Política de Privacidade)
   ============================================ */
.doc-card {
  max-width: 780px;
  margin: 0 auto;
  padding: 44px 36px;
}

.doc-card__lead {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(232, 205, 161, 0.18);
  letter-spacing: -0.01em;
}

.doc-card h2 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold-glow);
  margin: 32px 0 12px;
  letter-spacing: -0.015em;
}

.doc-card p {
  color: rgba(251, 246, 238, 0.75);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.doc-card ul {
  padding-left: 0;
  margin-bottom: 16px;
  list-style: none;
}

.doc-card li {
  position: relative;
  padding: 6px 0 6px 22px;
  color: rgba(251, 246, 238, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
}

.doc-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.doc-card strong { color: var(--cream); font-weight: 600; }

.doc-card__updated {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px dashed rgba(232, 205, 161, 0.18);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(251, 246, 238, 0.4);
  letter-spacing: 0.1em;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 600px) {
  .form-row { grid-template-columns: repeat(2, 1fr); }
  .form-row--full { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
  .app-footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 900px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }

  .card-grid--inscricoes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .card-grid--inscricoes {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1025px) {
  .app-nav { display: flex; }
  .app-hamburger { display: none; }
  .app-header__actions-desktop {
    display: flex !important;
  }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .admin-table { font-size: 0.82rem; }
  .admin-table th, .admin-table td { padding: 12px 14px; }
  .form-card { padding: 32px 22px; }
}

/* Inscrição dança + pastor (todos os formulários) */
.card-link--soon {
  opacity: 0.88;
  pointer-events: none;
  position: relative;
}

.card-link__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-glow);
  border: 1px solid rgba(232, 205, 161, 0.35);
  padding: 5px 10px;
  border-radius: 999px;
}

.inscricao-bloqueada {
  text-align: center;
  padding: 48px 28px 52px;
  max-width: 520px;
  margin: 0 auto;
}

.inscricao-bloqueada__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(215, 122, 58, 0.12);
  color: var(--orange);
}

.inscricao-bloqueada h2 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.inscricao-bloqueada p {
 color: rgba(251, 246, 238, 0.7);
 line-height: 1.65;
 font-size: 0.96rem;
 margin-bottom: 28px;
}

.form-card--danca {
 overflow: hidden;
}

.inscricao-danca-top {
 display: grid;
 gap: 20px;
 margin: -8px -8px 28px;
 padding: 28px 26px;
 border-radius: 18px;
 background:
 radial-gradient(ellipse 80% 120% at 100% 0%, rgba(215, 122, 58, 0.18) 0%, transparent 55%),
 radial-gradient(ellipse 60% 80% at 0% 100%, rgba(203, 169, 126, 0.12) 0%, transparent 50%),
 linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(5, 17, 30, 0.5) 100%);
 border: 1px solid rgba(232, 205, 161, 0.15);
}

@media (min-width: 720px) {
 .inscricao-danca-top {
 grid-template-columns: 1fr 1fr;
 align-items: center;
 gap: 32px;
 padding: 32px 34px;
 }
}

.inscricao-danca-top__visual {
 display: flex;
 align-items: center;
 justify-content: center;
 min-height: 120px;
}

.inscricao-danca-top__ring {
 width: 108px;
 height: 108px;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 background: conic-gradient(from 200deg, rgba(215, 122, 58, 0.35), rgba(203, 169, 126, 0.15), rgba(215, 122, 58, 0.35));
 box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.45);
}

.inscricao-danca-top__ring-inner {
 width: 86px;
 height: 86px;
 border-radius: 50%;
 background: rgba(5, 17, 30, 0.92);
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--gold-glow);
}

.inscricao-danca-top__intro h2 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  font-size: 1.35rem;
 font-weight: 500;
 color: var(--cream);
 margin: 0 0 10px;
 letter-spacing: -0.02em;
 line-height: 1.2;
}

.inscricao-danca-top__intro p {
 margin: 0;
 color: rgba(251, 246, 238, 0.68);
 font-size: 0.92rem;
 line-height: 1.6;
}

.inscricao-danca-panels {
 display: grid;
 gap: 22px;
 margin-bottom: 8px;
}

@media (min-width: 800px) {
 .inscricao-danca-panels {
 grid-template-columns: 1fr 1fr;
 }
}

.inscricao-danca-panel {
 padding: 22px 22px 20px;
 border-radius: 16px;
 background: rgba(255, 255, 255, 0.03);
 border: 1px solid rgba(232, 205, 161, 0.1);
}

.inscricao-danca-panel__label {
 font-family: var(--font-mono);
 font-size: 0.65rem;
 letter-spacing: 0.16em;
 text-transform: uppercase;
 color: var(--gold-glow);
 opacity: 0.85;
 margin-bottom: 16px;
 display: block;
}

.pastor-affirm-box {
 margin: 8px 0 20px;
 padding: 20px 22px;
 border-radius: 16px;
 background: rgba(215, 122, 58, 0.07);
 border: 1px solid rgba(215, 122, 58, 0.22);
}

.pastor-affirm-box .termo-check {
 margin-top: 0;
 align-items: flex-start;
}

.pastor-affirm-box .termo-check span:last-child {
 font-size: 0.95rem;
 line-height: 1.55;
}
