:root {
  --ink: #17362c;
  --ink-deep: #10261f;
  --ink-soft: #51665c;
  --muted: #7b8c84;
  --bg: #fffdfb;
  --bg-soft: #f7f3ec;
  --bg-warm: #f4efe6;
  --bg-offer: #f3ece1;
  --peach: #f8ebe3;
  --peach-tag: #c45a3a;
  --mint: #e8f4ed;
  --mint-tag: #2d6b4f;
  --green: #1d4a38;
  --green-mid: #2c6b51;
  --green-soft: #3d8a68;
  --cta: #e85a30;
  --cta-hover: #cf4a23;
  --cta-shadow: 0 10px 24px rgba(232, 90, 48, 0.28);
  --white: #ffffff;
  --line: rgba(23, 54, 44, 0.08);
  --shadow: 0 20px 50px rgba(23, 54, 44, 0.07);
  --radius: 22px;
  --radius-sm: 16px;
  --max: 480px;
  --strip: 40px;
  --header: 58px;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap,
.narrow {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 50;
}

/* Offer bar */
.top-strip {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  padding: 8px 12px;
  height: auto;
  min-height: var(--strip);
  line-height: 1.3;
}

.top-strip strong {
  margin-left: 4px;
  font-weight: 800;
}

/* Header */
.site-header {
  height: var(--header);
  background: rgba(255, 253, 251, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.site-header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: -0.02em;
  min-width: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.badge-digital {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
  background: #f3f0ea;
  border: 1px solid #ece7de;
  padding: 5px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Hero */
.hero {
  padding: 28px 0 40px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
  line-height: 1.35;
  max-width: 22em;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 0 4px rgba(232, 90, 48, 0.14);
}

.hero h1 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--ink-deep);
  max-width: 100%;
  margin: 0 auto 14px;
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em {
  display: block;
  white-space: normal;
  font-style: normal;
  color: var(--green-mid);
}

.hero .lead {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 580px;
  margin: 0 auto 8px;
}

.lead-strong {
  font-weight: 800;
  color: var(--ink);
  margin: 0 auto 22px;
  font-size: 15.5px;
}

.video-card {
  position: relative;
  width: min(78%, 300px);
  aspect-ratio: 1080 / 2310;
  min-height: 0;
  margin: 6px auto 28px;
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 36px rgba(16, 38, 31, 0.14);
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  appearance: none;
  background: linear-gradient(180deg, rgba(16, 38, 31, 0.16) 0%, rgba(16, 38, 31, 0.38) 100%);
  color: #fff;
  cursor: pointer;
  font: inherit;
}

.video-card.is-playing .video-overlay {
  display: none;
}

.video-mid {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.video-label {
  position: absolute;
  top: 18px;
  left: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.play {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(16, 38, 31, 0.35);
  animation: playBeat 1.7s ease-in-out infinite;
}

.play::before,
.play::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  animation: playRing 1.7s ease-out infinite;
}

.play::after {
  animation-delay: 0.55s;
}

.play svg {
  margin-left: 3px;
}

.video-title {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-align: center;
  line-height: 1.35;
  max-width: 220px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.video-hint {
  position: absolute;
  top: 18px;
  right: 16px;
  font-size: 11px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  padding: 4px 8px;
  border-radius: 999px;
}

.video-card iframe,
.video-card video,
.video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 28px;
  object-fit: cover;
  background: #111;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  height: 54px;
  padding: 0 18px;
  background: var(--cta);
  color: #fff;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 0;
  border-radius: 12px;
  box-shadow: var(--cta-shadow);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.cta-stack {
  height: auto;
  flex-direction: column;
  padding: 14px 28px 13px;
  gap: 3px;
}

.cta-stack small {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.94;
}

.offer-cta {
  min-width: 0;
  padding: 16px 18px 14px;
  font-size: 15px;
  border-radius: 14px;
}

.cta-stage {
  position: relative;
}

.cta-glow {
  display: none;
}

.cta-3d {
  animation: ctaPulse 1.8s ease-in-out infinite;
}

.cta-3d:hover {
  animation: none;
}

.cta:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
}

@keyframes playBeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes playRing {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 90, 48, 0.45);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(232, 90, 48, 0);
  }
}

.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12.5px;
}

/* Sections */
.section {
  padding: 48px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-offer {
  background: linear-gradient(180deg, #f6f0e6 0%, #f3ece1 100%);
}

.kicker {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
}

.section h2 {
  text-align: center;
  font-size: 23px;
  line-height: 1.22;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 100%;
  margin: 0 auto 12px;
  overflow-wrap: anywhere;
}

.h2-sub {
  display: block;
  margin-top: 8px;
  font-size: 0.62em;
  font-weight: 700;
  color: var(--green-mid);
  letter-spacing: -0.02em;
}

.section .sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 24px;
  font-size: 15px;
}

/* Comparison */
.compare {
  display: grid;
  gap: 12px;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.box {
  border-radius: 16px;
  padding: 14px 16px 16px;
  min-height: 0;
}

.box.hoje {
  background: var(--peach);
}

.box.depois {
  background: var(--mint);
}

.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.box.hoje .tag {
  color: var(--peach-tag);
}

.box.depois .tag {
  color: var(--mint-tag);
}

.box p {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.box.depois p {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-soft);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  text-align: center;
  margin-top: 8px;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #dcefe4;
  color: var(--green-mid);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  font-weight: 800;
  font-size: 18px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.step p {
  color: var(--ink-soft);
  font-size: 14.5px;
  max-width: 230px;
  margin: 0 auto;
}

/* Product */
.product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  max-width: 860px;
  margin: 8px auto 0;
}

.pack {
  position: relative;
  width: min(280px, 82%);
  aspect-ratio: 1;
  height: auto;
  margin: 8px auto 12px;
}

.pack-back,
.pack-front,
.pack-mid {
  position: absolute;
  inset: 0;
  border-radius: 22px;
}

.pack-back {
  background: #d7e6d8;
  transform: rotate(7deg) translate(14px, 8px);
}

.pack-mid {
  background: #c5dcc8;
  transform: rotate(3.5deg) translate(7px, 4px);
}

.pack-front {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f6f1e8;
  box-shadow: 0 18px 40px rgba(23, 54, 44, 0.18);
  z-index: 2;
}

.pack-kicker {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  font-weight: 700;
}

.pack-num {
  font-size: 64px;
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 18px 0 6px;
}

.pack-name {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.pack-foot {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 700;
}

.product-copy .kicker {
  text-align: center;
  margin-bottom: 10px;
}

.product-copy h2 {
  text-align: center;
  margin: 0 0 12px;
  font-size: 26px;
}

.product-copy .desc {
  color: var(--ink-soft);
  margin: 0 auto 22px;
  max-width: 420px;
  text-align: center;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 11px;
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 500;
}

.checklist .check {
  background: var(--green-soft);
  width: 18px;
  height: 18px;
}

/* Bonuses */
.bonuses {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.bonus {
  background: var(--white);
  border-radius: 16px;
  padding: 12px;
  display: grid;
  grid-template-columns: 64px 1fr 20px;
  gap: 10px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(23, 54, 44, 0.04);
  border: 1px solid rgba(23, 54, 44, 0.04);
}

.bonus img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  background: #f3f0ea;
}

.bonus h3 {
  font-size: 16px;
  margin-bottom: 2px;
}

.bonus .meta {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c2a15a;
  margin-bottom: 2px;
}

.bonus p {
  font-size: 13.5px;
  color: var(--ink-soft);
}

.ok-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dff3e7;
  color: var(--green-mid);
  display: grid;
  place-items: center;
}

/* Offer */
.offer {
  text-align: center;
}

.price-card {
  width: min(460px, 100%);
  margin: 8px auto 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  padding: 28px 20px 24px;
}

.price-from {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-bottom: 4px;
}

.price-from s {
  color: #9aa59e;
}

.price {
  font-size: 64px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--ink-deep);
}

.price small {
  font-size: 28px;
  letter-spacing: -0.03em;
  margin-right: 2px;
}

.price-note {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 10px;
}

.access-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.access-row span {
  background: #fff;
  border: 1px solid #ece6db;
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 11px;
  border-radius: 999px;
}

.offer .cta {
  min-width: 0;
  width: 100%;
}

.age-note {
  margin-top: 18px;
  font-size: 14.5px;
  color: var(--ink);
  background: #eef6f1;
  border-radius: 12px;
  padding: 12px 14px;
}

.product-shots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}

.product-shots img {
  width: 100%;
  border-radius: 16px;
  background: #f3f0ea;
  object-fit: cover;
  aspect-ratio: 1;
}

#depoimentos {
  overflow: hidden;
}

.proof-deck {
  position: relative;
  width: min(78%, 300px);
  aspect-ratio: 9 / 16;
  margin: 18px auto 8px;
  touch-action: pan-y;
}

.proof-back,
.proof-mid,
.proof-stage,
.proof-card {
  position: absolute;
  inset: 0;
  border-radius: 22px;
}

.proof-back {
  background: #d7e6d8;
  transform: rotate(7deg) translate(12px, 8px);
}

.proof-mid {
  background: #c5dcc8;
  transform: rotate(3.5deg) translate(6px, 4px);
}

.proof-stage {
  overflow: visible;
}

.proof-card {
  margin: 0;
  overflow: hidden;
  background: #1d4a38;
  box-shadow: 0 18px 40px rgba(23, 54, 44, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96) translate(10px, 14px);
  z-index: 1;
}

.proof-card.is-front {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  z-index: 4;
}

.proof-card.is-enter {
  animation: proofIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.proof-card.is-exit {
  animation: proofOut 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  z-index: 5;
  pointer-events: none;
}

.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
  background: #efe8dc;
}

@keyframes proofOut {
  to {
    transform: translate(42%, -22%) rotate(14deg) scale(0.92);
    opacity: 0;
  }
}

@keyframes proofIn {
  from {
    transform: translate(-16%, 18%) rotate(-8deg) scale(0.94);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: #d5d0c6;
}

.carousel-dots button.active {
  width: 18px;
  background: var(--green);
}

.for-whom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.for-whom article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
}

.for-whom span {
  display: block;
  font-size: 28px;
  margin-bottom: 10px;
}

.for-whom p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.for-whom strong {
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 18px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  padding: 16px 0;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  color: var(--ink-soft);
  padding: 0 0 16px;
  font-size: 14.5px;
}

.sticky-buy {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  transform: translateY(20px);
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--ink-deep);
  color: #fff;
  padding: 10px 10px 10px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(16, 38, 31, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: 0.22s ease;
}

.sticky-buy.visible {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-buy span {
  font-size: 13.5px;
}

.sticky-buy em {
  font-style: normal;
  background: var(--cta);
  color: #fff;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
}

.cta-under {
  color: var(--muted);
  font-size: 13px;
  margin: 10px 0 28px;
}

.guarantee {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: flex-start;
  max-width: 460px;
  margin: 0 auto;
  text-align: left;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.5;
}

.guarantee strong {
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}

.shield {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fde8e2;
  color: var(--cta);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  padding: 28px 0 96px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  display: block;
  color: var(--ink-soft);
  font-weight: 700;
  margin-bottom: 4px;
}

/* Modal video */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(16, 38, 31, 0.72);
  display: none;
  place-items: center;
  z-index: 80;
  padding: 24px;
}

.modal.open {
  display: grid;
}

.modal-inner {
  width: min(860px, 100%);
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.modal-inner iframe,
.modal-inner video {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-close {
  position: absolute;
  top: -42px;
  right: 0;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

/* Checkout overlay */
.checkout {
  position: fixed;
  inset: 0;
  background: rgba(16, 38, 31, 0.55);
  display: none;
  place-items: center;
  z-index: 90;
  padding: 20px;
}

.checkout.open {
  display: grid;
}

.checkout-card {
  width: min(440px, 100%);
  background: #fff;
  border-radius: 22px;
  padding: 28px 26px 24px;
  box-shadow: var(--shadow);
}

.checkout-card h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.checkout-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-bottom: 18px;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  text-align: left;
}

.field label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-soft);
}

.field input {
  height: 46px;
  border-radius: 12px;
  border: 1px solid #e5e0d8;
  padding: 0 14px;
  font: inherit;
  outline: none;
}

.field input:focus {
  border-color: var(--green-soft);
  box-shadow: 0 0 0 3px rgba(61, 138, 104, 0.15);
}

.checkout .cta {
  width: 100%;
  min-width: 0;
  margin-top: 8px;
}

.checkout-close {
  display: block;
  width: 100%;
  margin-top: 10px;
  background: none;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13.5px;
}

.toast {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--green);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 100;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast {
  bottom: 88px;
}
