/* ==========================================================================
   Clapme — Landing Page (HTML/CSS/JS estático)
   ========================================================================== */

:root {
  --radius: 0.75rem;

  --background: oklch(0.16 0.03 260);
  --foreground: oklch(0.985 0 0);
  --surface: oklch(0.22 0.04 260);
  --surface-elevated: oklch(0.26 0.045 260);
  --card: oklch(0.22 0.04 260);

  --brand: oklch(0.92 0.18 175);
  --brand-foreground: oklch(0.16 0.03 260);
  --brand-glow: oklch(0.92 0.18 175 / 0.45);

  --primary: oklch(0.92 0.18 175);
  --primary-foreground: oklch(0.16 0.03 260);
  --secondary: oklch(0.28 0.05 260);
  --muted-foreground: oklch(0.72 0.02 260);
  --accent: oklch(0.65 0.2 255);
  --border: oklch(1 0 0 / 0.08);
  --input: oklch(1 0 0 / 0.06);

  --gradient-hero: radial-gradient(ellipse at top, oklch(0.92 0.18 175 / 0.18), transparent 60%),
                   radial-gradient(ellipse at bottom right, oklch(0.65 0.2 255 / 0.18), transparent 55%);
  --gradient-brand: linear-gradient(135deg, oklch(0.92 0.18 175), oklch(0.78 0.18 195));
  --shadow-glow: 0 0 60px -10px oklch(0.92 0.18 175 / 0.5);
  --shadow-card: 0 8px 32px -8px oklch(0 0 0 / 0.5);

  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Barlow Condensed", "Inter", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 20% 0%, oklch(0.92 0.18 175 / 0.08), transparent 40%),
    radial-gradient(circle at 80% 100%, oklch(0.65 0.2 255 / 0.08), transparent 40%);
  background-attachment: fixed;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container--narrow { max-width: 1152px; }
.container--tight { max-width: 960px; }
.container--form { max-width: 768px; }

.text-gradient-brand {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bg-gradient-hero { background-image: var(--gradient-hero); }
.bg-gradient-brand { background-image: var(--gradient-brand); }
.shadow-glow { box-shadow: var(--shadow-glow); }
.shadow-card { box-shadow: var(--shadow-card); }

.glass {
  background: oklch(0.22 0.04 260 / 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid oklch(1 0 0 / 0.1);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--primary);
}
.section-label--center { justify-content: center; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.btn-hero {
  background-image: var(--gradient-brand);
  color: var(--brand-foreground);
  font-weight: 600;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s;
}
.btn-hero:hover { transform: scale(1.02); box-shadow: 0 0 80px -10px var(--brand-glow); }
.btn-hero:disabled { opacity: 0.6; pointer-events: none; }
.btn-sm { height: 2.25rem; padding: 0 1rem; border-radius: 999px; }
.btn-xl { height: 3.5rem; padding: 0 2.5rem; border-radius: 0.75rem; font-size: 1rem; width: 100%; }

/* ---------------- Nav ---------------- */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  border-bottom: 1px solid oklch(1 0 0 / 0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}
.nav-logo img { height: 1.75rem; width: auto; }
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.nav-links a:hover { color: var(--foreground); }
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.hero-eq-bg {
  position: absolute;
  inset: 0 0 auto 0;
  height: 600px;
  pointer-events: none;
  opacity: 0.1;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) {
  .hero { padding: 10rem 0 7rem; }
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
}

.badge-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 500;
}
.badge svg { width: 0.875rem; height: 0.875rem; }
.badge-split {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--border);
}
.badge-split span:first-child {
  background-image: var(--gradient-brand);
  color: var(--brand-foreground);
  padding: 0.375rem 0.625rem;
}
.badge-split span:last-child {
  padding: 0.375rem 0.75rem;
  color: var(--muted-foreground);
}

.hero h1 {
  font-size: 3rem;
  margin: 1.5rem 0 1rem;
}
@media (min-width: 640px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }

.hero-sub {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 28rem;
  line-height: 1.6;
}
@media (min-width: 640px) { .hero-sub { font-size: 1.125rem; } }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 0.5rem;
  margin-top: 1.75rem;
}
.hero-stats .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.875rem;
}
.hero-stats .lbl {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------------- Lead Form ---------------- */
.lead-form {
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) { .lead-form { padding: 2rem; } }
.lead-form h3 {
  font-family: var(--font-sans);
  text-transform: none;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.3;
}
.lead-form .hint {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.lead-form .hint b { color: var(--primary); font-weight: 600; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.375rem; }
.field label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.field input,
.field select {
  height: 2.75rem;
  background: var(--input);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  padding: 0 0.875rem;
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  width: 100%;
}
.field select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2372798a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}
/* O menu nativo do <select> é renderizado pelo sistema operacional com fundo
   claro; forçamos texto escuro nas opções para não ficar "apagado". */
.field select option {
  color: #111827;
  background: #ffffff;
}
.field input:focus,
.field select:focus { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); }
.field input::placeholder { color: oklch(0.72 0.02 260 / 0.6); }

.form-fineprint {
  font-size: 0.6875rem;
  color: var(--muted-foreground);
  text-align: center;
}

.lead-form-success {
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.lead-form-success .check { font-size: 2.5rem; color: var(--primary); }
.lead-form-success h3 { font-family: var(--font-sans); text-transform: none; font-weight: 600; font-size: 1.25rem; }
.lead-form-success p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

.spin { animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------------- Equalizer ---------------- */
.equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 100%;
}
.eq-bar {
  flex: 1;
  border-radius: 999px;
  background-image: var(--gradient-brand);
  animation: eq 1.2s ease-in-out infinite;
  transform-origin: bottom;
}
@keyframes eq {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.animate-float { animation: float-slow 6s ease-in-out infinite; }

/* ---------------- Showreel ---------------- */
.showreel { padding: 5rem 0; }
.showreel-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}
.showreel-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.7s;
}
@media (min-width: 640px) { .showreel-card img { height: 480px; } }
@media (min-width: 1024px) { .showreel-card img { height: 560px; } }
.showreel-card:hover img { transform: scale(1.05); }
.showreel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--background), oklch(0.16 0.03 260 / 0.3), transparent);
}
.showreel-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.showreel-play-inner { position: relative; }
.showreel-ping {
  position: absolute; inset: 0;
  border-radius: 999px;
  background: oklch(0.92 0.18 175 / 0.3);
  animation: ping 1.6s cubic-bezier(0,0,0.2,1) infinite;
}
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }
.showreel-play-btn {
  position: relative;
  width: 5rem; height: 5rem;
  border-radius: 999px;
  background-image: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow);
  transition: transform 0.3s;
}
@media (min-width: 640px) { .showreel-play-btn { width: 6rem; height: 6rem; } }
.showreel-card:hover .showreel-play-btn { transform: scale(1.1); }
.showreel-play-btn svg { width: 2rem; height: 2rem; color: var(--brand-foreground); margin-left: 4px; }
.showreel-caption {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
}
.showreel-caption .eyebrow { font-size: 0.75rem; color: var(--primary); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.showreel-caption .title { font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; text-transform: none; letter-spacing: normal; line-height: 1.2; }
@media (min-width: 640px) { .showreel-caption .title { font-size: 1.5rem; } }
.showreel-caption .eq-wrap { height: 2.5rem; width: 7rem; display: none; }
@media (min-width: 640px) { .showreel-caption .eq-wrap { display: block; height: 3.5rem; width: 10rem; } }

/* ---------------- Section basics ---------------- */
.section { padding: 5rem 0; }
.section-alt { background: oklch(0.22 0.04 260 / 0.4); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section h2 { font-size: 1.875rem; margin-bottom: 3rem; max-width: 42rem; }
@media (min-width: 640px) { .section h2 { font-size: 2.25rem; } }

/* ---------------- Included ---------------- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .included-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .included-grid { grid-template-columns: repeat(6, 1fr); } }
.included-item {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.25rem;
  text-align: center;
  transition: all 0.2s;
}
.included-item:hover { box-shadow: var(--shadow-glow); border-color: oklch(0.92 0.18 175 / 0.4); }
.included-icon {
  width: 3rem; height: 3rem;
  margin: 0 auto 0.75rem;
  border-radius: 0.75rem;
  background: oklch(0.92 0.18 175 / 0.1);
  border: 1px solid oklch(0.92 0.18 175 / 0.3);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.included-item:hover .included-icon { transform: scale(1.1); }
.included-icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.included-item h3 { font-family: var(--font-display); font-weight: 500; font-size: 0.875rem; text-transform: none; letter-spacing: normal; }

/* ---------------- Gallery ---------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(12, 1fr); gap: 1.25rem; } }
.gallery-figure {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
}
.gallery-figure img { width: 100%; height: 288px; object-fit: cover; transition: transform 0.7s; }
@media (min-width: 640px) { .gallery-figure img { height: 420px; } }
.gallery-figure:hover img { transform: scale(1.05); }
.gallery-figure .grad { position: absolute; inset: 0; background: linear-gradient(to top, oklch(0.16 0.03 260 / 0.8), transparent); }
.gallery-figure figcaption {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--primary); font-weight: 500;
}
.gallery-figure.g-hero { grid-column: span 12; }
.gallery-figure.g-mic { grid-column: span 12; }
.gallery-figure.g-audio { grid-column: span 12; }
.gallery-figure.g-edit { grid-column: span 12; }
.gallery-dist {
  grid-column: span 12;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid oklch(0.92 0.18 175 / 0.3);
  background: var(--surface);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 2rem;
}
@media (min-width: 640px) {
  .gallery-figure.g-hero { grid-column: span 7; }
  .gallery-figure.g-mic { grid-column: span 5; }
  .gallery-figure.g-audio { grid-column: span 5; }
  .gallery-figure.g-edit { grid-column: span 7; }
  .gallery-dist { grid-column: span 7; }
}
.gallery-dist .eq-bg { position: absolute; inset: 0; opacity: 0.3; }
.gallery-dist .content { position: relative; }
.gallery-dist p { font-size: 1.5rem; font-family: var(--font-display); font-weight: 600; line-height: 1.2; text-transform: none; }
.gallery-dist .foot { position: relative; font-size: 0.875rem; color: var(--muted-foreground); margin-top: 1rem; }

/* ---------------- Stats ---------------- */
.stats-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stat-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  text-align: center;
}
.stat-card .num {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) { .stat-card .num { font-size: 3.75rem; } }
.stat-card .lbl { font-size: 0.875rem; color: var(--muted-foreground); }

/* ---------------- Testimonials ---------------- */
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.testi-card blockquote { margin: 0; line-height: 1.6; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.testi-avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 999px;
  background-image: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--brand-foreground); font-size: 0.875rem;
}
.testi-author .name { font-weight: 600; font-size: 0.875rem; }
.testi-author .role { font-size: 0.75rem; color: var(--muted-foreground); }

/* ---------------- Process ---------------- */
.process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  position: relative;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.5rem;
}
.process-step .n { font-family: var(--font-display); font-weight: 700; font-size: 0.75rem; color: var(--primary); margin-bottom: 0.75rem; }
.process-step h3 { font-family: var(--font-sans); text-transform: none; font-weight: 600; font-size: 1rem; letter-spacing: normal; }
.process-step .arrow {
  display: none;
  position: absolute; right: -0.75rem; top: 50%; transform: translateY(-50%);
  width: 1.25rem; height: 1.25rem; color: oklch(0.92 0.18 175 / 0.4);
}
@media (min-width: 1024px) { .process-step .arrow { display: block; } }

/* ---------------- FAQ ---------------- */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.faq-item {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0 1.25rem;
}
.faq-item.open { border-color: oklch(0.92 0.18 175 / 0.4); }
.faq-question {
  width: 100%;
  background: none; border: none; color: inherit;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  text-align: left; font-weight: 500; font-size: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
}
.faq-question .chev { width: 1rem; height: 1rem; flex-shrink: 0; transition: transform 0.2s; color: var(--muted-foreground); }
.faq-item.open .faq-question .chev { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p {
  color: var(--muted-foreground);
  line-height: 1.6;
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
}

/* ---------------- Final CTA ---------------- */
.final-cta { padding: 6rem 0; position: relative; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; pointer-events: none; }
.final-cta-card {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid oklch(0.92 0.18 175 / 0.3);
  background: oklch(0.22 0.04 260 / 0.6);
  backdrop-filter: blur(12px);
  padding: 2rem;
  box-shadow: var(--shadow-glow);
}
@media (min-width: 640px) { .final-cta-card { padding: 3rem; } }
.final-cta-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .final-cta-grid { grid-template-columns: 1fr 1.1fr; } }
.final-cta-copy { display: flex; flex-direction: column; gap: 1.25rem; }
.final-cta-copy h2 { font-size: 1.875rem; }
@media (min-width: 640px) { .final-cta-copy h2 { font-size: 2.25rem; } }
.final-cta-copy .eq-wrap { height: 4rem; width: 100%; opacity: 0.6; }
.final-cta-copy .check-row { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); }
.final-cta-copy .check-row svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }

/* ---------------- Footer ---------------- */
.footer { padding: 2.5rem 0; border-top: 1px solid var(--border); }
.footer-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 1rem; font-size: 0.875rem; color: var(--muted-foreground);
}
.footer-inner img { height: 1.5rem; width: auto; }
.footer-inner p { font-size: 0.75rem; }
@media (min-width: 640px) { .footer-inner { flex-direction: row; } }

/* ---------------- WhatsApp Float ---------------- */
.wa-float {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 50;
  display: flex; align-items: center; gap: 0.5rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-glow);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.05); }
.wa-float svg { width: 1.25rem; height: 1.25rem; }
.wa-float span { display: none; font-weight: 600; font-size: 0.875rem; }
@media (min-width: 640px) { .wa-float span { display: inline; } }

/* ---------------- Toast ---------------- */
.toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  color: var(--foreground);
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  box-shadow: var(--shadow-card);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  max-width: calc(100vw - 2rem);
  text-align: center;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
