:root {
  --bg: #000000;
  --neon: #00ff88;
  --neon-soft: #00c86a;
  --text-muted: #cfcfcf;
  --btn-border: #00ffcc;
  --btn-bg: #050608;
  --btn-hover-bg: #050608;
  --btn-radius: 10px;
  --transition-fast: 0.2s ease-out;
}

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

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #020916 0, var(--bg) 40%);
  color: #ffffff;
  font-family: "Space Mono", monospace;
}

.app {
  width: 100%;
  max-width: 420px; /* mobile-first: layout mais estreito e confortável */
  margin: 0 auto;
  padding: 24px 16px 40px;
  text-align: center;
}

/* HOME (INDEX) */
.home-page {
  padding-top: 32px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-page .title-wrapper {
  margin-bottom: 28px;
}

.home-page .title {
  font-size: 1.8rem;
  letter-spacing: 0.18em;
  white-space: normal; /* permite quebra de linha em telas pequenas */
}

/* PÁGINA DE FORMULÁRIO (PASSO 1) */
.form-page {
  padding-top: 18px;
}

.form-page .title-wrapper {
  margin-bottom: 22px;
}

/* Título do passo 1 mais legível no mobile */
.form-page .title {
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  white-space: normal; /* permite quebrar INICIAR / PROCESSO em duas linhas */
}

.back-link {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--neon);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.back-link:hover,
.back-link:focus-visible {
  text-decoration: underline;
}

.form-card {
  margin: 0 auto;
  margin-top: 4px;
  padding: 26px 18px 26px;
  border-radius: 14px;
  border: 1px solid rgba(0, 255, 136, 0.5);
  background: radial-gradient(circle at top, #071315, #050608);
  box-shadow:
    0 0 18px rgba(0, 255, 136, 0.3),
    0 0 52px rgba(0, 255, 136, 0.18);
  text-align: left;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0.08em;
  color: var(--neon);
}

.form-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(0, 255, 136, 0.4);
  background: rgba(0, 0, 0, 0.5);
  color: #e9fef5;
  font-family: "Space Mono", monospace;
  font-size: 0.85rem;
}

.form-input::placeholder {
  color: rgba(207, 207, 207, 0.6);
}

.form-input:focus-visible {
  outline: none;
  border-color: var(--neon);
  box-shadow:
    0 0 8px rgba(0, 255, 136, 0.5),
    0 0 20px rgba(0, 255, 136, 0.3);
}

.form-submit {
  margin-top: 10px;
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  border: none;
  background: var(--neon);
  color: #000;
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow:
    0 0 16px rgba(0, 255, 136, 0.6),
    0 0 48px rgba(0, 255, 136, 0.35);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    filter var(--transition-fast),
    background-color var(--transition-fast);
}

.form-submit .icon {
  font-size: 1rem;
}

.form-submit:hover,
.form-submit:focus-visible {
  outline: none;
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow:
    0 0 22px rgba(0, 255, 136, 0.8),
    0 0 64px rgba(0, 255, 136, 0.5);
}

.form-submit:active {
  transform: translateY(0);
  box-shadow:
    0 0 14px rgba(0, 255, 136, 0.7),
    0 0 40px rgba(0, 255, 136, 0.4);
}

.form-status {
  margin-top: 10px;
  font-size: 0.75rem;
  min-height: 1.2em;
}

.form-status--success {
  color: #7bffb7;
}

.form-status--error {
  color: #ff7b7b;
}

/* PÁGINA RECURSOS EXTRAS (OFERTAS) */
.extras-page {
  padding-top: 20px;
}

.extras-header {
  text-align: center;
  margin-bottom: 22px;
}

/* Ajuste fino do "placar" do título apenas nesta página.
   Objetivo: evitar overflow/desenquadramento em telas 320px e manter visual premium. */
.extras-header .title-wrapper {
  /* Faz o card do título respeitar a largura do container mobile */
  display: block;
  width: 100%;
  max-width: 420px; /* acompanha o max-width do .app */
  margin: 0 auto 14px;

  /* Reduz padding lateral para títulos longos */
  padding: 14px 14px;
}

.extras-header .title {
  /* Permite quebra elegante em 2 linhas no mobile */
  white-space: normal;
  text-align: center;
  line-height: 1.15;

  /* Título longo: leve redução no tracking e tamanho fluido */
  letter-spacing: 0.14em;
  font-size: clamp(1.05rem, 4.2vw, 1.7rem);
}

.extras-subtitle {
  margin-top: 10px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.extras-subtitle-underline {
  width: 120px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: radial-gradient(circle at center, var(--neon), transparent 70%);
  box-shadow:
    0 0 14px rgba(0, 255, 136, 0.7),
    0 0 26px rgba(0, 255, 136, 0.5);
}

.extras-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.extras-card {
  position: relative;
}

.extras-card-inner {
  border-radius: 16px;
  padding: 18px 18px 16px;
  background: radial-gradient(circle at top, #050614, #050608);
  border: 1px solid rgba(0, 255, 200, 0.45);
  box-shadow:
    0 0 18px rgba(0, 255, 200, 0.25),
    0 0 40px rgba(0, 255, 200, 0.15);
}

.extras-card--instagram .extras-card-inner {
  border-color: #ffb74d;
}

.extras-card--recover .extras-card-inner {
  border-color: #26c6da;
}

.extras-card--combo .extras-card-inner {
  border-color: #ab47bc;
}

.extras-card-badge {
  position: absolute;
  top: 10px;
  right: 18px;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffca28, #ffb300);
  color: #000;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.extras-card-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.extras-card-title {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.extras-card-description {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.extras-card-price {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.extras-card-price-label {
  margin-right: 4px;
}

.extras-card-price-main {
  font-size: 1.1rem;
}

.extras-card-price-old {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.extras-card-price-highlight {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.extras-card-price-highlight-prefix {
  margin-right: 4px;
}

.extras-card-price-highlight-main {
  font-size: 1.15rem;
}

.extras-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 14px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow:
    0 0 14px rgba(0, 0, 0, 0.6),
    0 0 26px rgba(0, 0, 0, 0.4);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    filter var(--transition-fast);
}

.extras-card-button--instagram {
  background: linear-gradient(90deg, #ff9800, #ffb74d);
}

.extras-card-button--recover {
  background: linear-gradient(90deg, #2196f3, #26c6da);
}

.extras-card-button--combo {
  background: linear-gradient(90deg, #ab47bc, #ff4081);
}

.extras-card-button:hover,
.extras-card-button:focus-visible {
  outline: none;
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow:
    0 0 18px rgba(0, 255, 200, 0.5),
    0 0 36px rgba(0, 255, 200, 0.3);
}

.extras-card-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .extras-cards {
    flex-direction: row;
    gap: 18px;
  }

  .extras-card {
    flex: 1;
  }
}

/* PÁGINA VERIFICAR */
.verificar-page .title-wrapper {
  margin-bottom: 22px;
}

.verificar-page .title {
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  white-space: normal;
}

.form-submit--progress {
  margin-top: 14px;
}

.progress-card {
  margin: 18px auto 0;
  padding: 18px 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(0, 255, 200, 0.45);
  background: radial-gradient(circle at top, #03191f, #050608);
  box-shadow:
    0 0 18px rgba(0, 255, 200, 0.25),
    0 0 52px rgba(0, 255, 200, 0.15);
  text-align: left;
}

.progress-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.progress-start span {
  color: #f4fff9;
}

.progress-percent-text {
  font-size: 0.82rem;
}

.progress-bar-outer {
  position: relative;
  width: 100%;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 136, 0.7);
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.progress-bar-inner {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00ff88, #00ffc3, #0084ff);
  box-shadow:
    0 0 12px rgba(0, 255, 136, 0.8),
    0 0 26px rgba(0, 255, 136, 0.5);
  transition: width 0.4s ease-out;
}

.vip-offer-card {
  margin: 18px auto 0;
  padding: 18px 16px 20px;
  border-radius: 14px;
  border: 1px dashed rgba(255, 215, 0, 0.6);
  background: radial-gradient(circle at top, rgba(255, 215, 0, 0.12), #050608);
  box-shadow:
    0 0 22px rgba(255, 215, 0, 0.28),
    0 0 60px rgba(255, 215, 0, 0.16);
  text-align: center;
}

.vip-offer-title {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.vip-offer-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.vip-offer-button {
  position: relative;
  justify-content: center;
  border-radius: 999px;
  padding-block: 14px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.35), transparent 55%),
    linear-gradient(120deg, #ffe082, #ffca28, #ffb300);
  color: #14110b;
  box-shadow:
    0 0 20px rgba(255, 215, 0, 0.8),
    0 0 60px rgba(255, 215, 0, 0.5);
  overflow: hidden;
}

.vip-offer-button::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.22), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
}

.vip-offer-button .label {
  position: relative;
  text-decoration: none;
  font-weight: 700;
}

.vip-offer-button .icon {
  position: relative;
  font-size: 1.1rem;
}

.vip-offer-button:hover,
.vip-offer-button:focus-visible {
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.4), transparent 55%),
    linear-gradient(120deg, #ffecb3, #ffd54f, #ffb300);
  box-shadow:
    0 0 26px rgba(255, 215, 0, 0.95),
    0 0 80px rgba(255, 215, 0, 0.65);
  transform: translateY(-1px);
}

.vip-offer-button:active {
  transform: translateY(0);
  box-shadow:
    0 0 18px rgba(255, 215, 0, 0.8),
    0 0 50px rgba(255, 215, 0, 0.55);
}

.vip-offer-button .icon {
  color: #000;
}

/* PÁGINA VELOCIDADE VIP */
.velocidade-page {
  padding-top: 20px;
}

.velocidade-page .back-link {
  margin-bottom: 12px;
}

.vip-header {
  text-align: left;
  margin-bottom: 22px;
}

.vip-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.vip-title {
  font-size: 1.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.vip-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.vip-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.vip-card {
  position: relative;
}

.vip-card-glow {
  position: absolute;
  inset: -8px;
  border-radius: 18px;
  background: radial-gradient(circle at top, rgba(255, 215, 0, 0.4), transparent 60%);
  opacity: 0.9;
  z-index: -1;
}

.vip-card-inner {
  position: relative;
  border-radius: 14px;
  padding: 20px 18px 18px;
  background: radial-gradient(circle at top, #050614, #050608);
  border: 1px solid rgba(0, 255, 136, 0.35);
  box-shadow:
    0 0 20px rgba(0, 255, 136, 0.35),
    0 0 40px rgba(0, 255, 136, 0.25);
}

.vip-card--gold .vip-card-inner,
.vip-card--silver .vip-card-inner {
  box-shadow:
    0 0 14px rgba(0, 255, 136, 0.25),
    0 0 30px rgba(0, 255, 136, 0.15);
}

.vip-card-badge {
  position: absolute;
  top: 10px;
  right: 18px;
  padding: 3px 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd54f, #ffb300);
  color: #000;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.vip-card-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.vip-card-title {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.vip-card-description {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.vip-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  font-size: 0.8rem;
}

.vip-card-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.vip-card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00ff88;
}

.vip-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 10px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #4c6fff, #9b51ff);
  color: #ffffff;
  font-size: 0.82rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  box-shadow:
    0 0 16px rgba(76, 111, 255, 0.7),
    0 0 36px rgba(155, 81, 255, 0.5);
}

.vip-card-button--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.vip-card-price {
  font-size: 0.9rem;
}

.vip-card-price-main {
  font-size: 1.2rem;
}

.vip-card-price-note {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .vip-cards {
    flex-direction: row;
    gap: 18px;
  }

  .vip-card {
    flex: 1;
  }
}

/* TÍTULO COM EFEITO NEON E ANIMAÇÃO FUTURISTA */
.title-wrapper {
  display: inline-block;
  position: relative;
  padding: 18px 34px;
  margin-bottom: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 6px;
  box-shadow:
    0 0 14px rgba(0, 255, 136, 0.65),
    0 0 40px rgba(0, 255, 136, 0.4);
  overflow: hidden;
}

.title-wrapper::before,
.title-wrapper::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background:
    conic-gradient(
      from 0deg,
      transparent 0deg,
      rgba(0, 255, 136, 0.5) 90deg,
      transparent 180deg,
      rgba(0, 255, 136, 0.7) 270deg,
      transparent 360deg
    );
  opacity: 0.65;
  filter: blur(6px);
  z-index: -2;
  animation: spin-glow 9s linear infinite;
}

.title-wrapper::after {
  inset: 2px;
  background: radial-gradient(circle at top, rgba(0, 255, 136, 0.28), #020509);
  filter: none;
  opacity: 1;
  z-index: -1;
  animation: none;
}

.title {
  letter-spacing: 0.22em;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--neon);
  text-shadow:
    0 0 6px rgba(0, 255, 136, 0.9),
    0 0 26px rgba(0, 255, 136, 0.7),
    0 0 52px rgba(0, 255, 136, 0.5);
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.title-scan {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 4px;
  background: radial-gradient(circle at center, rgba(0, 255, 136, 0.9), transparent 70%);
  opacity: 0;
  transform: scaleX(0.2);
  animation: scan-line 3.8s ease-in-out infinite;
}

@keyframes spin-glow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scan-line {
  0% {
    opacity: 0;
    transform: translateX(-120%) scaleX(0.5);
  }
  20% {
    opacity: 1;
  }
  50% {
    transform: translateX(0) scaleX(1);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(120%) scaleX(0.5);
  }
}

/* CONTAINER DOS BOTÕES */
.actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin: 0 auto;
  max-width: 100%; /* mobile-first: botões ocupam toda a largura útil */
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--btn-border);
  background: var(--btn-bg);
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
  box-shadow:
    0 0 0 rgba(0, 0, 0, 0),
    0 0 0 rgba(0, 0, 0, 0);
}

/* Tap target confortável no mobile */
.btn:where(a, button) {
  min-height: 48px;
}

.btn span.icon {
  font-size: 1rem;
  color: var(--neon);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn span.label {
  white-space: nowrap;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 255, 136, 0.25), transparent, rgba(0, 255, 200, 0.18));
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity 0.28s ease-out, transform 0.28s ease-out;
  pointer-events: none;
}

.btn:hover,
.btn:focus-visible {
  outline: none;
  color: #ffffff;
  border-color: var(--neon);
  background: var(--btn-hover-bg);
  box-shadow:
    0 0 14px rgba(0, 255, 136, 0.55),
    0 0 36px rgba(0, 255, 136, 0.3);
  transform: translateY(-1px);
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.btn:active {
  transform: translateY(0);
  box-shadow:
    0 0 10px rgba(0, 255, 136, 0.4),
    0 0 26px rgba(0, 255, 136, 0.2);
}

/* BOTÕES ESPECÍFICOS */
.btn-start {
  border-color: #00ff88;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.2);
}

.btn-progress {
  border-color: #00e5ff;
}

.btn-extra {
  border-color: #ffffff;
  color: #ffffff;
}

.btn-extra span.icon {
  color: #ffb347;
}

/* RESPONSIVIDADE PARA TELAS MAIORES */
@media (min-width: 640px) {
  .app {
    max-width: 640px;
    padding: 40px 24px 60px;
  }

  .title {
    font-size: 2rem;
  }

  .actions {
    gap: 18px;
    max-width: 520px;
  }

  .btn {
    font-size: 0.85rem;
    padding: 18px 22px;
  }

  .form-card {
    padding: 32px 42px 30px;
  }
}

/* ============================================
   TOAST NOTIFICATIONS - PROVA SOCIAL
   ============================================
   Sistema de notificações no canto inferior direito
   que exibe ações de outros usuários para criar
   senso de urgência e confiança.
   
   Usado em: recursoextra, velocidade, verificar
   ============================================ */

/* Container principal do toast - posicionamento fixo no canto inferior direito */
.toast-social-proof {
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 10000; /* Garante que fique acima de outros elementos */
  
  /* Mobile-first: garante que não cubra botões importantes */
  /* Posicionado acima da área de ação principal (botões ficam mais acima) */
  
  /* Glassmorphism: fundo escuro com transparência e blur */
  background: rgba(5, 6, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  
  /* Bordas arredondadas e borda sutil neon */
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  
  /* Sombra neon verde para destacar */
  box-shadow:
    0 0 16px rgba(0, 255, 136, 0.4),
    0 0 32px rgba(0, 255, 136, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.5);
  
  /* Layout flex para organizar ícone e conteúdo */
  display: flex;
  align-items: flex-start;
  gap: 12px;
  
  /* Padding interno e largura máxima para mobile-first.
     Importante: NÃO usar width: 100% aqui, pois somado ao right: 16px
     pode fazer o card \"vazar\" da tela em dispositivos 320px. */
  padding: 14px 16px;
  max-width: calc(100vw - 32px); /* Respeita margens laterais no mobile */
  /* Largura máxima confortável em telas maiores */
  width: auto;
  
  /* Estado inicial: invisível e posicionado abaixo da tela */
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  
  /* Transição suave para animações */
  transition:
    opacity 0.3s ease-out,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Garante que não interfira com botões importantes no mobile */
  pointer-events: auto;
}

/* Estado visível: toast aparece subindo do fundo */
.toast-social-proof.toast-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Estado de saída: fade-out suave */
.toast-social-proof.toast-hiding {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition:
    opacity 0.3s ease-in,
    transform 0.3s ease-in;
}

/* Ícone de check verde neon */
.toast-icon {
  flex-shrink: 0; /* Não encolhe */
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.15);
  border: 1.5px solid var(--neon);
  color: var(--neon);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 8px rgba(0, 255, 136, 0.6),
    0 0 16px rgba(0, 255, 136, 0.3);
}

/* Container do conteúdo textual */
.toast-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0; /* Permite quebra de texto se necessário */
}

/* Título destacado (primeira linha) */
.toast-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

/* Mensagem secundária (segunda linha) */
.toast-message {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}

/* Responsividade: ajustes para telas maiores */
@media (min-width: 640px) {
  .toast-social-proof {
    right: 24px;
    bottom: 24px;
    max-width: 360px;
    padding: 16px 18px;
  }

  .toast-icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .toast-title {
    font-size: 0.9rem;
  }

  .toast-message {
    font-size: 0.82rem;
  }
}

/* Garantia de que múltiplos toasts não se sobreponham */
/* (caso futuro: fila de toasts) */
.toast-social-proof + .toast-social-proof {
  bottom: 90px; /* Espaçamento vertical entre toasts */
}

