/* =========================================================
   Musik Fest 2026 — Workshop de Música Blumenau
   Mobile-first · Dark only · Design tokens em :root
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Cores */
  --bg-0: #0a0a0f;
  --bg-1: #14101a;
  --bg-2: #1a1418;
  --bg-card: #1c1620;
  --bg-card-hover: #221b27;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --primary: #E85D24;          /* Laranja queimado */
  --primary-hover: #FF6E32;
  --primary-soft: rgba(232, 93, 36, 0.14);
  --primary-glow: rgba(232, 93, 36, 0.45);

  --secondary: #F4B860;        /* Amarelo dourado */
  --secondary-soft: rgba(244, 184, 96, 0.14);

  --text-0: #FAF6F0;           /* Branco creme */
  --text-1: #E8E0D4;
  --text-2: #B8B0A8;           /* Cinza claro */
  --text-3: #7C7569;

  --danger: #FF6B6B;
  --success: #6BCB77;

  /* Tipografia */
  --ff-display: "Bebas Neue", "Impact", "Arial Narrow Bold", sans-serif;
  --ff-script: "Caveat Brush", "Brush Script MT", cursive;
  --ff-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Escala de espaçamento (8pt) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-full: 999px;

  /* Sombras */
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 0 1px var(--primary-soft), 0 12px 40px var(--primary-glow);

  /* Layout */
  --container: 1200px;
  --container-narrow: 720px;

  /* Motion */
  --t-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-mid: 250ms cubic-bezier(0.4, 0, 0.2, 1);

  /* z-index */
  --z-header: 100;
  --z-modal: 1000;
}

/* ---------- Reset minimalista ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-1);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--sp-4);
  background: var(--primary);
  color: white;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-sm);
  font-weight: 600;
  z-index: var(--z-modal);
  transition: top var(--t-fast);
}
.skip-link:focus { top: var(--sp-4); }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-4);
}
.container-narrow { max-width: var(--container-narrow); }
@media (min-width: 768px) {
  .container { padding-inline: var(--sp-6); }
}

/* ---------- Focus visível ---------- */
:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(10, 10, 15, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  height: 64px;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--text-0);
}
.logo-mark { color: var(--primary); }
.logo-year { color: var(--text-0); font-size: 14px; opacity: 0.85; }

.site-nav ul {
  display: none;
  gap: var(--sp-6);
}
.site-nav a {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-2);
  transition: color var(--t-fast);
}
.site-nav a:hover { color: var(--text-0); }
.header-cta { flex-shrink: 0; }

@media (min-width: 768px) {
  .site-nav ul { display: flex; }
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  border: 1px solid transparent;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 22px;
  min-height: 44px;
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  text-align: center;
}
.btn-sm { padding: 10px 16px; font-size: 13px; min-height: 38px; }
.btn-lg { padding: 18px 30px; font-size: 16px; min-height: 54px; letter-spacing: 0.02em; }
.btn-block { width: 100%; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 24px var(--primary-glow);
}
.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 10px 30px var(--primary-glow);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border-color: rgba(232, 93, 36, 0.35);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(232, 93, 36, 0.12);
  border-color: var(--primary);
  color: var(--text-0);
}

.btn[disabled], .btn[aria-busy="true"] {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: var(--sp-8) 0 var(--sp-9);
  overflow: hidden;
  background:
    /* gradient principal: muito escuro no topo, ainda mais no centro/base */
    linear-gradient(
      180deg,
      rgba(10, 10, 15, 0.78) 0%,
      rgba(10, 10, 15, 0.90) 35%,
      rgba(10, 10, 15, 0.97) 65%,
      var(--bg-0) 88%
    ),
    /* camada plana adicional pra escurecer a foto inteira (boost de contraste) */
    linear-gradient(rgba(10, 10, 15, 0.35), rgba(10, 10, 15, 0.35)),
    /* tint laranja ambiente, mais sutil agora que tá mais escuro */
    radial-gradient(circle at 50% 0%, rgba(232, 93, 36, 0.22), transparent 55%),
    /* foto da Vila Germânica de Blumenau */
    url('assets/hero-bg.jpg') center 25% / cover no-repeat,
    var(--bg-0);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--primary-glow), transparent 60%);
  filter: blur(80px);
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 880px;
}
.badge {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--primary);
  background: var(--primary-soft);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-5);
}

.hero-title {
  position: relative;
  margin: 0 0 var(--sp-5);
  font-weight: normal;
}
.hero-eyebrow {
  display: block;
  font-family: var(--ff-script);
  color: var(--secondary);
  font-size: clamp(36px, 7vw, 60px);
  line-height: 1;
  transform: rotate(-3deg);
  margin-bottom: var(--sp-2);
}
.hero-display {
  display: block;
  font-family: var(--ff-display);
  color: var(--text-0);
  font-size: clamp(56px, 12vw, 132px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.hero-script {
  display: inline-block;
  margin-top: var(--sp-2);
  font-family: var(--ff-script);
  color: var(--secondary);
  font-size: clamp(34px, 6.5vw, 56px);
  line-height: 1;
  font-style: italic;
  transform: rotate(-2deg);
}
.brush-stroke {
  display: block;
  width: clamp(160px, 35vw, 320px);
  height: 14px;
  margin: var(--sp-4) auto 0;
  background: linear-gradient(95deg, transparent, var(--primary) 20%, var(--primary) 80%, transparent);
  transform: skewX(-12deg);
  border-radius: var(--r-full);
  opacity: 0.9;
  filter: blur(0.5px);
}

.hero-sub {
  max-width: 640px;
  margin: var(--sp-6) auto var(--sp-7);
  font-size: clamp(16px, 2.1vw, 19px);
  line-height: 1.7;
  color: var(--text-2);
}
.hero-sub strong { color: var(--text-0); font-weight: 600; }

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-7);
}
.scarcity {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--secondary);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.proof-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  padding: var(--sp-5);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--r-lg);
}
.proof-strip li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  color: var(--text-2);
  font-size: 14px;
}
.proof-strip li svg { color: var(--primary); }
.proof-strip strong { color: var(--text-0); font-weight: 700; }

@media (min-width: 640px) {
  .proof-strip { grid-template-columns: repeat(3, 1fr); }
  .proof-strip li { font-size: 15px; }
}

/* ============================================================
   SECTION COMUNS
   ============================================================ */
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  color: var(--text-0);
  margin: 0 0 var(--sp-4);
  font-weight: normal;
  letter-spacing: 0.01em;
}
.section-title .accent {
  color: var(--primary);
}
.section-sub {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--text-2);
  max-width: 640px;
  margin: 0 0 var(--sp-6);
  line-height: 1.65;
}
.section-head { margin-bottom: var(--sp-7); }
.section-head.center {
  text-align: center;
}
.section-head.center .section-sub { margin-inline: auto; }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais {
  padding: var(--sp-9) 0;
  background: var(--bg-0);
}
.grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 640px) {
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-cards { grid-template-columns: repeat(4, 1fr); }
}
.card-dif {
  padding: var(--sp-5);
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--r-lg);
  transition: transform var(--t-mid), border-color var(--t-mid), box-shadow var(--t-mid);
}
.card-dif:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-card), 0 0 0 1px var(--primary-soft);
}
.card-num {
  font-family: var(--ff-display);
  color: var(--primary);
  font-size: 36px;
  line-height: 1;
  margin-bottom: var(--sp-3);
  opacity: 0.85;
}
.card-dif h3 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--text-0);
  margin: 0 0 var(--sp-3);
}
.card-dif p {
  color: var(--text-2);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================================
   WORKSHOPS (unificado: instrutor + workshop + CTA)
   ============================================================ */
.workshops {
  padding: var(--sp-9) 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(232, 93, 36, 0.08), transparent 40%),
    var(--bg-1);
}
.callout {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--secondary);
  background: var(--secondary-soft);
  color: var(--secondary);
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  margin-top: var(--sp-4);
  max-width: 720px;
  line-height: 1.4;
}
.callout svg { flex-shrink: 0; }

.grid-workshops {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
@media (min-width: 480px) {
  .grid-workshops { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
}
@media (min-width: 768px) {
  .grid-workshops { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
}
@media (min-width: 1024px) {
  .grid-workshops { grid-template-columns: repeat(4, 1fr); }
}

/* Card unificado */
.card-workshop {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-mid), border-color var(--t-mid), box-shadow var(--t-mid);
}
.card-workshop:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--primary-soft);
}

/* Foto */
.ws-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--bg-2);
  overflow: hidden;
}
.ws-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 10, 15, 0.85) 100%);
  pointer-events: none;
}
.ws-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 500ms ease;
}
/* Override por instrutor: fotos com enquadramento diferente da maioria */
.ws-photo img[src*="robinho"] { object-position: center center; }
.card-workshop:hover .ws-photo img { transform: scale(1.04); }

.ws-photo-badge {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}

/* Conteúdo */
.ws-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-4);
  flex: 1;
}
.ws-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ws-name {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: normal;
  color: var(--text-0);
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

/* Info rows: hora + local */
.ws-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
}
.ws-info-row {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 13px;
  color: var(--text-1);
  font-weight: 500;
  line-height: 1.3;
}
.info-ic {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--primary);
  opacity: 0.9;
}

/* Chips */
.chip {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-full);
  white-space: nowrap;
  line-height: 1;
}
.chip-instrument {
  background: var(--secondary-soft);
  color: var(--secondary);
  border: 1px solid rgba(244, 184, 96, 0.4);
}
.chip-sex {
  background: var(--primary-soft);
  color: var(--primary);
  border: 1px solid rgba(232, 93, 36, 0.45);
}
.chip-sab {
  background: rgba(244, 184, 96, 0.10);
  color: var(--secondary);
  border: 1px solid rgba(244, 184, 96, 0.45);
}
.chip-soon {
  background: rgba(184, 176, 168, 0.08);
  color: var(--text-2);
  border: 1px solid var(--border-strong);
}

/* "Em breve" mais sutil */
.card-workshop.is-soon .ws-photo img { filter: grayscale(0.25); }
.card-workshop.is-soon:hover .ws-photo img { filter: none; }
.card-workshop.is-soon .info-ic { color: var(--text-2); opacity: 0.6; }

/* Botão com seta */
.card-workshop .btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
}
.btn-ic {
  width: 14px;
  height: 14px;
  transition: transform var(--t-fast);
}
.card-workshop .btn:hover .btn-ic { transform: translateX(3px); }

/* ============================================================
   FORMULÁRIO
   ============================================================ */
.inscricao {
  padding: var(--sp-9) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 93, 36, 0.10), transparent 50%),
    var(--bg-1);
}
.form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-card);
}
@media (min-width: 768px) {
  .form-wrap { padding: var(--sp-7); }
}

.form-inscricao {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-0);
}
.req { color: var(--primary); margin-left: 2px; }

.field input,
.field select {
  width: 100%;
  padding: 14px 16px;
  min-height: 50px;
  font-family: inherit;
  font-size: 16px; /* >=16px evita zoom iOS */
  color: var(--text-0);
  background: var(--bg-2);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.field input::placeholder { color: var(--text-3); }
.field input:hover,
.field select:hover {
  border-color: rgba(232, 93, 36, 0.4);
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-2);
  box-shadow: 0 0 0 4px var(--primary-soft);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23E85D24' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.18);
}

.helper {
  font-size: 12px;
  color: var(--text-2);
}
.err-msg {
  font-size: 13px;
  color: var(--danger);
  font-weight: 500;
  min-height: 1px;
}
.err-msg:empty { display: none; }

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.microcopy {
  margin: var(--sp-3) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-2);
  text-align: center;
}

/* Sucesso */
.success-screen {
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
}
.success-check {
  width: 96px;
  height: 96px;
  margin: 0 auto var(--sp-5);
  border-radius: var(--r-full);
  background: var(--primary-soft);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  animation: pop 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success-screen h3 {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: normal;
  color: var(--text-0);
  margin: 0 0 var(--sp-3);
}
.success-screen p {
  color: var(--text-2);
  margin: 0 0 var(--sp-3);
  font-size: 15px;
  line-height: 1.6;
}
.success-screen p strong { color: var(--text-0); }

/* Bloco check-in (QR + código + info) — destacado pra screenshot */
.success-checkin {
  margin: var(--sp-5) auto;
  max-width: 420px;
  padding: var(--sp-5);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  text-align: center;
}
.success-qr-box {
  display: inline-block;
  padding: 10px;
  background: #fff;
  border-radius: var(--r-md);
  margin-bottom: var(--sp-3);
  line-height: 0;
}
.success-qr-box img {
  display: block;
  width: 200px;
  height: 200px;
}
.success-code-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--sp-4);
}
.success-code-label {
  font-size: 11px;
  color: var(--secondary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.success-code-value {
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 32px;
  font-weight: 800;
  color: var(--text-0);
  letter-spacing: 0.25em;
}
.success-workshop-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-3) 0;
  margin: var(--sp-3) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.success-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 13px;
}
.success-info-label {
  color: var(--text-2);
  font-weight: 500;
  flex-shrink: 0;
}
.success-info-value {
  color: var(--text-0);
  font-weight: 600;
  text-align: right;
}
.success-checkin-hint {
  font-size: 13px;
  color: var(--text-2);
  margin: var(--sp-3) 0 0;
  line-height: 1.55;
}
.success-checkin-hint strong { color: var(--text-0); font-weight: 600; }

.success-screen .success-spam {
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  background: var(--secondary-soft);
  border: 1px solid rgba(244, 184, 96, 0.3);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--secondary);
}
.success-screen .success-spam strong { color: var(--secondary); }
.success-screen .btn { margin-top: var(--sp-5); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: var(--sp-9) 0;
  background: var(--bg-0);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.faq-item {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq-item[open] { border-color: var(--primary); }
.faq-item summary {
  cursor: pointer;
  padding: var(--sp-4) var(--sp-5);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-0);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--ff-display);
  color: var(--primary);
  font-size: 24px;
  line-height: 1;
  transition: transform var(--t-fast);
}
.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}
.faq-item p {
  margin: 0;
  padding: 0 var(--sp-5) var(--sp-5);
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 93, 36, 0.18), transparent 50%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  padding: var(--sp-9) 0 var(--sp-5);
}
.footer-cta {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-8);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid var(--border);
}
.footer-cta h3 {
  font-family: var(--ff-display);
  font-weight: normal;
  font-size: clamp(22px, 3.5vw, 32px);
  line-height: 1.25;
  color: var(--text-0);
  margin: 0 0 var(--sp-5);
}
.footer-cta .accent { color: var(--primary); }

.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-7);
}
@media (min-width: 768px) {
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}
.footer-col h4 {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: normal;
  color: var(--primary);
  margin: 0 0 var(--sp-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col ul li {
  color: var(--text-2);
  font-size: 14px;
  padding: 4px 0;
}
.footer-col .small {
  color: var(--text-3);
  font-size: 12px;
  margin: var(--sp-2) 0 0;
}
.versiculo {
  color: var(--text-1);
  font-size: 14px;
  line-height: 1.55;
  font-style: italic;
  margin: 0;
}
.versiculo .ref {
  display: block;
  margin-top: var(--sp-2);
  font-style: normal;
  color: var(--secondary);
  font-weight: 600;
  font-size: 13px;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
  color: var(--text-3);
  font-size: 13px;
}

/* ============================================================
   Utilitários
   ============================================================ */
[hidden] { display: none !important; }

/* ============================================================
   MOBILE — Ajustes específicos para telas pequenas
   ============================================================ */

/* < 768px: reduz padding vertical das seções (96px → 64px) */
@media (max-width: 767px) {
  .hero { padding: var(--sp-7) 0 var(--sp-8); }
  .diferenciais,
  .workshops,
  .inscricao,
  .faq,
  .site-footer { padding-top: var(--sp-8); padding-bottom: var(--sp-8); }

  .section-head { margin-bottom: var(--sp-6); }

  /* Hero glow menor pra não estourar viewport */
  .hero-glow { width: 420px; height: 420px; top: -100px; }

  /* Hero CTA: scarcity text quebra em mobile */
  .hero-cta .btn { width: 100%; max-width: 320px; }

  /* Form mais compacto */
  .form-wrap { padding: var(--sp-5) var(--sp-4); }
  .inscricao { padding-top: var(--sp-7); padding-bottom: var(--sp-7); }

  /* Header CTA: garante touch target 44px */
  .header-cta.btn-sm { min-height: 40px; padding: 10px 14px; }

  /* Footer CTA tipografia + button width */
  .footer-cta .btn { width: 100%; max-width: 320px; }
  .site-footer { padding-bottom: var(--sp-5); }
}

/* < 480px: cards de workshop ficam HORIZONTAIS pra otimizar scroll */
@media (max-width: 479px) {
  .card-workshop {
    display: grid;
    grid-template-columns: 112px 1fr;
    align-items: stretch;
  }
  .ws-photo {
    aspect-ratio: auto;
    height: 100%;
    min-height: 100%;
  }
  .ws-photo::after {
    background: linear-gradient(90deg, transparent 50%, rgba(10, 10, 15, 0.4) 100%);
  }
  .ws-photo img {
    object-position: center 20%;
  }
  .ws-photo-badge {
    top: 6px;
    right: 6px;
    font-size: 9px;
    padding: 3px 7px;
    letter-spacing: 0.04em;
  }
  .ws-content {
    padding: var(--sp-3);
    gap: var(--sp-2);
  }
  .ws-name {
    font-size: 19px;
    letter-spacing: 0;
  }
  .ws-info { padding-top: var(--sp-2); gap: 4px; }
  .ws-info-row { font-size: 12px; }
  .info-ic { width: 13px; height: 13px; }
  .chip { font-size: 9px; padding: 4px 8px; letter-spacing: 0.06em; }
  .card-workshop .btn {
    font-size: 13px;
    padding: 10px 14px;
    min-height: 40px;
  }
}

/* < 360px: micro-fixes para iPhone SE 1st gen e similares */
@media (max-width: 359px) {
  .container { padding-inline: var(--sp-3); }
  .card-workshop { grid-template-columns: 96px 1fr; }
  .hero-display { font-size: 48px !important; }
  .section-title { font-size: 32px !important; }
}

/* ============================================================
   TOAST (notificação flutuante)
   ============================================================ */
.toast {
  position: fixed;
  bottom: 24px;
  right: 16px;
  left: 16px;
  max-width: 380px;
  margin-left: auto;
  padding: 14px 18px 14px 20px;
  border-radius: var(--r-md);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-left: 4px solid var(--success);
  color: var(--text-0);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  transform: translateY(40px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--t-mid), opacity var(--t-mid);
  z-index: 9999;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.toast.err { border-left-color: var(--danger); }
.toast.ok  { border-left-color: var(--success); }
@media (min-width: 480px) {
  .toast { left: auto; min-width: 280px; }
}
