/* ============================================
   RESENHA IMP — STYLES
============================================ */

:root {
  --pink: #ff3ea5;
  --yellow: #ffd93d;
  --cyan: #00e5ff;
  --purple: #8b5cf6;
  --orange: #ff7a00;
  --lime: #c5ff3d;
  --bg: #0d0820;
  --ink: #fff8f0;
  --ink-soft: rgba(255, 248, 240, 0.7);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesque', -apple-system, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  line-height: 1.5;
}

/* ===== BLOBS DE FUNDO ===== */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}
.blob-1 { width: 520px; height: 520px; background: var(--pink); top: -120px; left: -100px; animation: float 18s ease-in-out infinite; }
.blob-2 { width: 600px; height: 600px; background: var(--purple); top: 30%; right: -180px; animation: float 22s ease-in-out infinite reverse; }
.blob-3 { width: 480px; height: 480px; background: var(--cyan); bottom: 10%; left: -120px; animation: float 20s ease-in-out infinite; animation-delay: -5s; }
.blob-4 { width: 440px; height: 440px; background: var(--yellow); bottom: -120px; right: 15%; animation: float 24s ease-in-out infinite reverse; animation-delay: -8s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.08); }
  66% { transform: translate(-40px, 60px) scale(0.95); }
}

/* ===== GRÃO ===== */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== TICKER ===== */
.ticker {
  position: relative;
  z-index: 5;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--pink), var(--purple), var(--cyan), var(--yellow));
  background-size: 300% 100%;
  animation: hueShift 8s linear infinite;
  border-bottom: 2px solid #000;
  overflow: hidden;
  padding: 12px 0;
}

@keyframes hueShift {
  to { background-position: 300% 0; }
}

.ticker-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: tick 24s linear infinite;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: #0d0820;
  text-transform: uppercase;
}
.ticker-track .dot { font-size: 10px; opacity: 0.6; }

@keyframes tick {
  to { transform: translateX(-50%); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 2;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 24px 30px;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1.5px solid rgba(255, 248, 240, 0.3);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  background: rgba(255, 248, 240, 0.05);
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  text-transform: lowercase;
}
.pulse {
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--lime);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(197, 255, 61, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(197, 255, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(197, 255, 61, 0); }
}

.hero-title {
  position: relative;
  z-index: 2;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 13vw, 184px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  text-transform: uppercase;
  padding: 0.12em 0.04em;
}
.word {
  display: inline-block;
  color: var(--ink);
  padding: 0 0.01em;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  animation: letterIn 0.8s cubic-bezier(.34,1.56,.64,1) backwards;
}
.word:nth-of-type(1) { animation-delay: 0.05s; }
.word:nth-of-type(2) { animation-delay: 0.15s; }
.word:nth-of-type(3) { animation-delay: 0.25s; }
.word:hover { transform: translateY(-10px) rotate(-3deg); }

.hero-imp {
  display: block;
  margin-top: -0.05em;
  font-size: 1.15em;
  letter-spacing: 0;
  padding: 0 0.04em;
  animation: impWobble 8s ease-in-out infinite;
}
@keyframes impWobble {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-1deg); }
  75% { transform: rotate(1deg); }
}

.imp-letter {
  display: inline-block;
  font-style: italic;
  padding: 0.05em 0.18em 0.05em 0.05em;
  margin-right: -0.05em;
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 3s ease-in-out infinite, letterIn 0.8s cubic-bezier(.34,1.56,.64,1) backwards;
  transition: transform 0.3s;
}
.l1 { background-image: linear-gradient(135deg, var(--yellow), var(--orange), var(--pink)); animation-delay: 0s, 0.5s; }
.l2 { background-image: linear-gradient(135deg, var(--pink), var(--purple), var(--cyan));   animation-delay: 0.4s, 0.6s; }
.l3 { background-image: linear-gradient(135deg, var(--cyan), var(--lime), var(--yellow));   animation-delay: 0.8s, 0.7s; }

@keyframes shine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes letterIn {
  from { opacity: 0; transform: translateY(60px) scale(0.6) rotate(-12deg); }
  to   { opacity: 1; transform: translateY(0)    scale(1)   rotate(0); }
}

/* ===== FLOATERS (decorações flutuantes) ===== */
.floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.floater {
  position: absolute;
  top: var(--top);
  left: var(--left);
  font-size: clamp(22px, 3.2vw, 42px);
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.35));
  animation: floatBob 6s ease-in-out infinite;
  animation-delay: var(--d);
  will-change: transform;
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0) rotate(-10deg) scale(1); }
  50%      { transform: translateY(-32px) rotate(14deg) scale(1.1); }
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  max-width: 520px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.hero-sub strong {
  color: var(--ink);
  font-weight: 700;
  background: linear-gradient(180deg, transparent 60%, rgba(255, 217, 61, 0.4) 60%);
  padding: 0 4px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s;
  letter-spacing: 0.01em;
}
.btn-primary {
  position: relative;
  background: linear-gradient(135deg, var(--pink), var(--orange) 60%, var(--yellow));
  background-size: 200% 200%;
  color: #0d0820;
  box-shadow: 0 8px 24px rgba(255, 62, 165, 0.35), 0 2px 0 rgba(0,0,0,0.15) inset;
  animation: btnShine 4s ease-in-out infinite;
}
@keyframes btnShine {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(255, 62, 165, 0.5);
}
.btn-primary:not(.big) svg { animation: arrowBob 1.6s ease-in-out infinite; }
@keyframes arrowBob {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}

.btn.big {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 16px;
}
.btn-primary.big {
  animation: btnGlow 3s ease-in-out infinite, btnShine 4s ease-in-out infinite;
}
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 8px 24px rgba(255, 62, 165, 0.35), 0 2px 0 rgba(0,0,0,0.15) inset; }
  50%      { box-shadow: 0 14px 44px rgba(255, 62, 165, 0.65), 0 0 60px rgba(255, 217, 61, 0.35), 0 2px 0 rgba(0,0,0,0.15) inset; }
}

/* ===== CAMPO DE EMAIL ===== */
.email-block {
  margin-bottom: 16px;
  padding: 16px 16px 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 217, 61, 0.08), rgba(0, 229, 255, 0.06));
  border: 1.5px solid rgba(255, 217, 61, 0.3);
}
.email-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  cursor: pointer;
}
.email-icon { font-size: 20px; }
.email-text { display: flex; flex-direction: column; line-height: 1.2; }
.email-text strong { font-size: 14px; color: var(--ink); font-weight: 700; }
.email-text small { font-size: 11px; color: var(--ink-soft); letter-spacing: 0.02em; margin-top: 2px; }
.email-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 248, 240, 0.15);
  background: rgba(13, 8, 32, 0.4);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.email-input:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(13, 8, 32, 0.6);
}
.email-input.invalid {
  border-color: var(--pink);
  background: rgba(255, 62, 165, 0.06);
}
.email-error {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--pink);
  font-weight: 600;
}

/* ===== STACK DE PAGAMENTO + WHATSAPP ===== */
.pay-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.btn-primary.big strong {
  font-weight: 800;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: 0.01em;
}
#mpAmount.bump {
  display: inline-block;
  animation: popTotal 0.4s cubic-bezier(.34,1.56,.64,1);
}

.btn-wa {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  border: 1.5px solid rgba(37, 211, 102, 0.45);
  backdrop-filter: blur(10px);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-wa:hover {
  background: rgba(37, 211, 102, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.25);
}
.btn-wa svg {
  filter: drop-shadow(0 0 6px rgba(37, 211, 102, 0.4));
}

.pay-tip {
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

/* ===== BLOCO DE NOMES + IA (INLINE) ===== */
.names-block {
  border-top: 1px dashed rgba(255, 248, 240, 0.2);
  padding-top: 20px;
  margin-top: 6px;
  margin-bottom: 18px;
  text-align: left;
}
.names-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.names-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.names-hint {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.ai-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  background-size: 200% 200%;
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: shine 3s ease-in-out infinite;
}

.names-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255, 248, 240, 0.04);
  border: 1.5px solid rgba(255, 248, 240, 0.08);
  transition: border-color 0.25s, background 0.25s;
  flex-wrap: wrap;
  animation: rowIn 0.45s cubic-bezier(.34,1.56,.64,1);
}
@keyframes rowIn {
  from { opacity: 0; transform: translateY(-12px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)     scale(1); }
}
.name-row:focus-within {
  border-color: rgba(255, 62, 165, 0.45);
  background: rgba(255, 62, 165, 0.05);
}

.name-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 248, 240, 0.1);
  color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.name-input {
  flex: 1;
  min-width: 100px;
  padding: 8px 4px;
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
}
.name-input:focus { outline: none; }
.name-input::placeholder { color: rgba(255, 248, 240, 0.35); }

.ai-mark {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  color: var(--cyan);
  opacity: 0;
  transition: opacity 0.3s;
  flex-shrink: 0;
}
.name-row.predicted .ai-mark { opacity: 0.85; }
.name-row.manual   .ai-mark { opacity: 0; }

.gender-pills {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.gp {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 248, 240, 0.16);
  background: rgba(255, 248, 240, 0.04);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(.34,1.56,.64,1);
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.gp:hover { transform: scale(1.1); border-color: rgba(255, 248, 240, 0.4); }

.gp[data-g="F"].active { background: var(--pink);   color: white;   border-color: var(--pink);   box-shadow: 0 0 0 3px rgba(255, 62, 165, 0.25); }
.gp[data-g="M"].active { background: var(--cyan);   color: #0d0820; border-color: var(--cyan);   box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.25); }
.gp[data-g="?"].active { background: var(--yellow); color: #0d0820; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255, 217, 61, 0.25); }
.gp.active { animation: gpPop 0.4s cubic-bezier(.34,1.56,.64,1); }
@keyframes gpPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.names-summary {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 248, 240, 0.04);
  border: 1px dashed rgba(255, 248, 240, 0.18);
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.names-summary strong { color: var(--ink); font-weight: 700; }

@media (max-width: 480px) {
  .name-row { padding: 8px; }
  .gp { width: 28px; height: 28px; font-size: 13px; }
}

/* ===== BOTÃO LOADING ===== */
.btn.loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn.loading svg { opacity: 0; }
.btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 2.5px solid rgba(13, 8, 32, 0.25);
  border-top-color: #0d0820;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== BANNER DE SUCESSO (após pagamento) ===== */
.success-banner {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(13, 8, 32, 0.85);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.4s ease-out;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.sb-card {
  position: relative;
  width: min(540px, 100%);
  padding: 40px 28px 28px;
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(255, 62, 165, 0.2), rgba(13, 8, 32, 0.95) 40%, rgba(0, 229, 255, 0.18));
  border: 2px solid rgba(255, 217, 61, 0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 80px rgba(255, 62, 165, 0.25);
  text-align: center;
  animation: sbIn 0.5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes sbIn {
  from { opacity: 0; transform: translateY(40px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.sb-emoji { font-size: 56px; margin-bottom: 10px; animation: bounce 1.6s ease-in-out infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.sb-card h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(26px, 4.5vw, 38px);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--yellow), var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sb-card > p {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 18px;
}
.sb-card strong { color: var(--yellow); }
.sb-url {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(13, 8, 32, 0.6);
  border: 1px dashed rgba(255, 217, 61, 0.45);
  font-family: monospace;
  font-size: 13px;
  word-break: break-all;
  margin-bottom: 18px;
  color: var(--yellow);
}
.sb-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sb-actions .btn { width: 100%; justify-content: center; padding: 14px; font-size: 14px; }
.sb-close {
  position: absolute;
  top: 12px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 248, 240, 0.08);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}
.sb-close:hover { background: var(--pink); color: white; transform: rotate(90deg); }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 110%);
  padding: 12px 22px;
  background: var(--lime);
  color: #0d0820;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 100px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 12px 30px rgba(197, 255, 61, 0.4);
  transition: transform 0.5s cubic-bezier(.34,1.56,.64,1), opacity 0.3s;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ===== HIGHLIGHTS ===== */
.highlights {
  position: relative;
  z-index: 2;
  padding: 20px 24px 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.hl-card {
  padding: 24px 22px;
  border-radius: 22px;
  border: 2px solid rgba(255, 248, 240, 0.1);
  backdrop-filter: blur(14px);
  text-align: center;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.hl-card { animation: cardFloat 5s ease-in-out infinite; }
.hl-card:nth-child(1) { animation-delay: 0s; }
.hl-card:nth-child(2) { animation-delay: 0.6s; }
.hl-card:nth-child(3) { animation-delay: 1.2s; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.hl-card:hover {
  transform: translateY(-10px) rotate(-1deg) scale(1.03);
  animation-play-state: paused;
}
.hl-bar { background: linear-gradient(135deg, rgba(0, 229, 255, 0.18), rgba(139, 92, 246, 0.12)); }
.hl-dj { background: linear-gradient(135deg, rgba(255, 62, 165, 0.18), rgba(255, 122, 0, 0.12)); }
.hl-place { background: linear-gradient(135deg, rgba(255, 217, 61, 0.18), rgba(197, 255, 61, 0.12)); }

.hl-emoji {
  font-size: 38px;
  margin-bottom: 8px;
  display: inline-block;
  transition: transform 0.4s;
}
.hl-card:hover .hl-emoji { transform: rotate(-12deg) scale(1.1); }
.hl-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}
.hl-card p { color: var(--ink-soft); font-size: 14px; }
.hl-card a { color: var(--cyan); text-decoration: none; font-weight: 600; }
.hl-card a:hover { text-decoration: underline; }

/* ===== INGRESSOS ===== */
.tix {
  position: relative;
  z-index: 2;
  padding: 20px 24px 80px;
  max-width: 640px;
  margin: 0 auto;
}
.tix-card {
  padding: 40px 32px;
  border-radius: 32px;
  border: 2px solid rgba(255, 248, 240, 0.12);
  background: rgba(13, 8, 32, 0.55);
  backdrop-filter: blur(20px);
  text-align: center;
}

.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 248, 240, 0.08);
  border: 1px solid rgba(255, 248, 240, 0.18);
  margin-bottom: 14px;
  color: var(--ink-soft);
}

.tix h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.tix h2 em {
  display: inline-block;
  font-style: italic;
  padding: 0 0.18em 0 0.04em;
  margin-right: -0.1em;
  background: linear-gradient(135deg, var(--yellow), var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tix-sub {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 12px 0 24px;
}

/* faixas de preço */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 28px;
}
.tier {
  padding: 12px 4px 10px;
  border-radius: 14px;
  background: rgba(255, 248, 240, 0.04);
  border: 1.5px solid rgba(255, 248, 240, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: all 0.3s;
}
.tier-n {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.tier-pp {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.1;
}
.tier-each {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tier-best {
  background: linear-gradient(135deg, rgba(255, 217, 61, 0.16), rgba(255, 62, 165, 0.12));
  border-color: rgba(255, 217, 61, 0.5);
}
.tier-best .tier-pp { color: var(--yellow); }
.tier.active {
  background: linear-gradient(135deg, rgba(255, 62, 165, 0.22), rgba(255, 122, 0, 0.16));
  border-color: var(--pink);
  animation: tierWiggle 0.7s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 0 0 0 rgba(255, 62, 165, 0.4);
}
.tier.active .tier-pp {
  color: var(--ink);
  animation: bumpPrice 0.5s ease-out;
}
@keyframes tierWiggle {
  0%   { transform: scale(1) rotate(0); }
  30%  { transform: scale(1.12) rotate(-3deg); }
  60%  { transform: scale(1.08) rotate(3deg); }
  100% { transform: scale(1.05) rotate(0); }
}
@keyframes bumpPrice {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}

/* calculadora */
.calc {
  text-align: left;
  border-top: 1px dashed rgba(255, 248, 240, 0.2);
  padding-top: 24px;
}
.calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.calc-label {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--ink-soft);
}

.counter {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 248, 240, 0.05);
  border: 1.5px solid rgba(255, 248, 240, 0.18);
  border-radius: 100px;
  padding: 4px;
}
.cbtn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 248, 240, 0.08);
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}
.cbtn:hover { background: var(--pink); color: #0d0820; transform: scale(1.05); }
.cbtn:disabled { opacity: 0.3; cursor: not-allowed; transform: none; background: rgba(255, 248, 240, 0.05); color: var(--ink); }
.count {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  min-width: 36px;
  text-align: center;
  color: var(--ink);
}

.calc-break {
  background: rgba(255, 248, 240, 0.04);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.brk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--ink-soft);
}
.brk-disc span:last-child { color: var(--lime); font-weight: 700; }
.brk-total {
  border-top: 1px dashed rgba(255, 248, 240, 0.18);
  padding-top: 10px;
  margin-top: 4px;
  font-size: 16px;
  color: var(--ink);
}
.brk-total span:last-child {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 26px;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  animation: shine 3s ease-in-out infinite;
}
.brk-total span:last-child.pop {
  animation: shine 3s ease-in-out infinite, popTotal 0.5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popTotal {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.brk-pp { font-size: 12px; opacity: 0.7; }

/* ===== CONFETE / PARTÍCULAS ===== */
.particle {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--c);
  border-radius: 2px;
  pointer-events: none;
  z-index: 999;
  animation: burst 0.9s ease-out forwards;
  will-change: transform, opacity;
}
@keyframes burst {
  0%   { transform: translate(0, 0) rotate(0); opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) rotate(var(--r)); opacity: 0; }
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid rgba(255, 248, 240, 0.1);
}
.footer-mark {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.4em;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 4px;
}
.footer-mark span:nth-child(1) { color: var(--yellow); }
.footer-mark span:nth-child(3) { color: var(--cyan); }
.footer-mark span:nth-child(5) { color: var(--pink); }
.footer-mark span:nth-child(7) { color: var(--lime); }
.footer p {
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 600px) {
  .hero { padding: 40px 20px 24px; min-height: 70vh; }
  .highlights { padding: 20px 16px 40px; }
  .tix { padding: 20px 16px 60px; }
  .tix-card { padding: 28px 18px; }
  .tier-grid { gap: 4px; }
  .tier { padding: 10px 2px 8px; }
  .tier-n { font-size: 12px; }
  .tier-pp { font-size: 15px; }
  .tier-each { font-size: 8px; letter-spacing: 0.1em; }
}
