/* ============================================================
   tokens.css — Design tokens, variáveis globais, keyframes
   ============================================================ */

:root {
  /* Cores */
  --primary: #FF4500;
  --primary-dark: #E03D00;
  --black: #121214;
  --gray-text: #6B7280;
  --gray-light: #F3F4F6;
  --gray-border: #E5E5E5;
  --white: #FFFFFF;
  --green: #22C55E;
  --red: #EF4444;
  --amber: #F59E0B;
  --price-green: #16A34A;
  --gray-disabled: #9CA3AF;

  /* Raios */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;

  /* Sombras */
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.12);
  --shadow-nav: 0 -4px 16px rgba(0, 0, 0, 0.1);
  --shadow-drawer: 0 -8px 32px rgba(0, 0, 0, 0.2);
  --shadow-popup: 0 8px 32px rgba(0, 0, 0, 0.25);

  /* Layout */
  --header-height: 80px;
  --nav-height: 64px;
  --banner-ratio: 16 / 6;

  /* Cores de Status */
  --success: #10b981;
  --danger: #ef4444;
}

@keyframes pulse-continuous {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

/* ===== KEYFRAMES ===== */

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(16px);
  }
}

@keyframes badgeBounce {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.35);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-6px);
  }

  40% {
    transform: translateX(6px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }
}

@keyframes tapScale {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.97);
  }
}