@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: #0f172a;
  color: #e2e8f0;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  min-height: 100vh;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit
}

ul,
ol {
  list-style: none
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px
}

::-webkit-scrollbar-track {
  background: #1e293b
}

::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 3px
}

::-webkit-scrollbar-thumb:hover {
  background: #475569
}

/* ===== DESIGN TOKENS ===== */
:root {
  --brand-400: #f87171;
  --brand-500: #ef4444;
  --brand-600: #dc2626;
  --brand-700: #b91c1c;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --surface-100: #f1f5f9;
  --surface-200: #e2e8f0;
  --surface-300: #cbd5e1;
  --surface-400: #94a3b8;
  --surface-500: #64748b;
  --surface-600: #475569;
  --surface-700: #334155;
  --surface-800: #1e293b;
  --surface-900: #0f172a;
  --surface-950: #020617;
}

/* ===== BACKGROUNDS ===== */
.bg-mesh {
  background-image: radial-gradient(ellipse at 20% 20%, rgba(239, 68, 68, .16) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(220, 38, 38, .11) 0%, transparent 50%), radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, .05) 0%, transparent 70%)
}

.bg-grid-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 40 0 L 0 0 0 40' fill='none' stroke='%23ffffff08' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E")
}

.portal-modern {
  background-image: linear-gradient(120deg, rgba(127, 29, 29, .16), transparent 35%), radial-gradient(circle at 10% 15%, rgba(239, 68, 68, .16), transparent 30%), radial-gradient(circle at 90% 10%, rgba(220, 38, 38, .14), transparent 30%), radial-gradient(circle at 50% 100%, rgba(153, 27, 27, .18), transparent 35%)
}

/* ===== GLASS CARD ===== */
.glass-card {
  border-radius: 1rem;
  border: 1px solid rgba(51, 65, 85, .5);
  background-color: rgba(30, 41, 59, .6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px)
}

/* ===== TEXT GRADIENT ===== */
.text-gradient {
  background-image: linear-gradient(to right, #f87171, #fca5a5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: .75rem;
  background-color: #dc2626;
  padding: .5rem 1rem;
  font-weight: 500;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(239, 68, 68, .25);
  transition: all .2s
}

.btn-primary:hover {
  background-color: #ef4444;
  box-shadow: 0 0 20px rgba(239, 68, 68, .35)
}

.btn-primary:active {
  transform: scale(.95)
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: .75rem;
  padding: .5rem 1rem;
  font-weight: 500;
  color: #cbd5e1;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all .2s
}

.btn-ghost:hover {
  background-color: rgba(51, 65, 85, .6);
  color: #fff
}

.btn-ghost:active {
  transform: scale(.95)
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: .75rem;
  border: 1px solid #475569;
  padding: .5rem 1rem;
  font-weight: 500;
  color: #cbd5e1;
  background: transparent;
  cursor: pointer;
  transition: all .2s
}

.btn-outline:hover {
  border-color: #64748b;
  background-color: rgba(51, 65, 85, .4);
  color: #fff
}

.btn-outline:active {
  transform: scale(.95)
}

.btn-sm {
  padding: .375rem .75rem;
  font-size: .8125rem;
  border-radius: .5rem
}

.btn-danger {
  border-color: rgba(239, 68, 68, .4);
  color: #fca5a5
}

.btn-danger:hover {
  background-color: rgba(239, 68, 68, .1);
  color: #fecaca
}

/* ===== INPUTS ===== */
.input-base {
  width: 100%;
  border-radius: .75rem;
  border: 1px solid #334155;
  background-color: rgba(30, 41, 59, .8);
  padding: .625rem 1rem;
  font-size: .875rem;
  color: #f1f5f9;
  transition: all .2s
}

.input-base::placeholder {
  color: #64748b
}

.input-base:focus {
  border-color: rgba(239, 68, 68, .6);
  outline: none;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, .3)
}

select.input-base {
  cursor: pointer;
  appearance: auto
}

textarea.input-base {
  resize: vertical
}

/* ===== STATUS BADGES ===== */
.status-novo {
  display: inline-block;
  border: 1px solid rgba(34, 211, 238, .3);
  background-color: rgba(34, 211, 238, .15);
  color: #67e8f9;
  padding: .125rem .625rem;
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: 600
}

.status-analisado,
.status-em_analise {
  display: inline-block;
  border: 1px solid rgba(251, 191, 36, .3);
  background-color: rgba(251, 191, 36, .15);
  color: #fcd34d;
  padding: .125rem .625rem;
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: 600
}

.status-aprovado {
  display: inline-block;
  border: 1px solid rgba(52, 211, 153, .3);
  background-color: rgba(52, 211, 153, .15);
  color: #6ee7b7;
  padding: .125rem .625rem;
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: 600
}

.status-reprovado {
  display: inline-block;
  border: 1px solid rgba(248, 113, 113, .3);
  background-color: rgba(248, 113, 113, .15);
  color: #fca5a5;
  padding: .125rem .625rem;
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: 600
}

/* ===== TABLE ===== */
.table-row-hover {
  cursor: pointer;
  transition: background-color .15s
}

.table-row-hover:hover {
  background-color: rgba(51, 65, 85, .4)
}

.data-table {
  width: 100%;
  font-size: .875rem;
  border-collapse: collapse
}

.data-table th {
  text-align: left;
  padding: .75rem;
  color: #94a3b8;
  font-size: .6875rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
  border-bottom: 1px solid rgba(51, 65, 85, .5)
}

.data-table td {
  padding: .75rem;
  border-bottom: 1px solid rgba(51, 65, 85, .3)
}

/* ===== STAT CARDS ===== */
.stat-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid;
  padding: 1rem;
  transition: all .3s;
  cursor: default
}

.stat-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, .4)
}

.stat-card .stat-glow {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  opacity: .1
}

.stat-card-brand {
  background: linear-gradient(to bottom right, rgba(220, 38, 38, .2), rgba(153, 27, 27, .1));
  border-color: rgba(220, 38, 38, .3)
}

.stat-card-cyan {
  background: linear-gradient(to bottom right, rgba(8, 145, 178, .2), rgba(22, 78, 99, .1));
  border-color: rgba(8, 145, 178, .3)
}

.stat-card-amber {
  background: linear-gradient(to bottom right, rgba(217, 119, 6, .2), rgba(120, 53, 15, .1));
  border-color: rgba(217, 119, 6, .3)
}

.stat-card-emerald {
  background: linear-gradient(to bottom right, rgba(5, 150, 105, .2), rgba(6, 78, 59, .1));
  border-color: rgba(5, 150, 105, .3)
}

.stat-card-red {
  background: linear-gradient(to bottom right, rgba(220, 38, 38, .2), rgba(127, 29, 29, .1));
  border-color: rgba(220, 38, 38, .3)
}

/* ===== AVATAR ===== */
.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0
}

.avatar-sm {
  width: 2.25rem;
  height: 2.25rem;
  font-size: .75rem
}

.avatar-md {
  width: 2.5rem;
  height: 2.5rem;
  font-size: .8125rem
}

.avatar-lg {
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.125rem
}

.grad-0 {
  background: linear-gradient(to bottom right, #dc2626, #06b6d4)
}

.grad-1 {
  background: linear-gradient(to bottom right, #7c3aed, #ec4899)
}

.grad-2 {
  background: linear-gradient(to bottom right, #059669, #2dd4bf)
}

.grad-3 {
  background: linear-gradient(to bottom right, #f59e0b, #f97316)
}

.grad-4 {
  background: linear-gradient(to bottom right, #f43f5e, #db2777)
}

.grad-5 {
  background: linear-gradient(to bottom right, #6366f1, #f87171)
}

/* ===== SIDEBAR ===== */
.sidebar {
  position: sticky;
  top: 1rem;
  height: fit-content
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  border-radius: .75rem;
  font-size: .875rem;
  color: #cbd5e1;
  transition: all .15s
}

.sidebar-link:hover {
  background-color: #1e293b;
  color: #fff
}

.sidebar-link.active {
  background-color: #dc2626;
  color: #fff;
  box-shadow: 0 0 10px rgba(239, 68, 68, .25)
}

/* ===== HEADER ===== */
.top-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(51, 65, 85, .6);
  background-color: #020617;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px)
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

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

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%)
  }

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

@keyframes pulse {
  50% {
    opacity: .5
  }
}

.animate-fade-in {
  animation: fadeIn .3s ease-out
}

.animate-slide-up {
  animation: slideUp .4s ease-out
}

.animate-slide-in-right {
  animation: slideInRight .35s cubic-bezier(.16, 1, .3, 1)
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite
}

/* ===== FLASH MESSAGES ===== */
.flash {
  padding: .75rem 1rem;
  border-radius: .75rem;
  font-size: .875rem;
  margin-bottom: 1rem;
  border: 1px solid
}

.flash-success {
  background: rgba(52, 211, 153, .15);
  border-color: rgba(52, 211, 153, .3);
  color: #6ee7b7
}

.flash-error {
  background: rgba(248, 113, 113, .15);
  border-color: rgba(248, 113, 113, .3);
  color: #fca5a5
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 1.5rem
}

.text-xs {
  font-size: .75rem
}

.text-sm {
  font-size: .875rem
}

.text-base {
  font-size: 1rem
}

.text-lg {
  font-size: 1.125rem
}

.text-xl {
  font-size: 1.25rem
}

.text-2xl {
  font-size: 1.5rem
}

.text-3xl {
  font-size: 1.875rem
}

.font-medium {
  font-weight: 500
}

.font-semibold {
  font-weight: 600
}

.font-bold {
  font-weight: 700
}

.font-extrabold {
  font-weight: 800
}

.text-white {
  color: #fff
}

.text-surface-100 {
  color: #f1f5f9
}

.text-surface-200 {
  color: #e2e8f0
}

.text-surface-300 {
  color: #cbd5e1
}

.text-surface-400 {
  color: #94a3b8
}

.text-surface-500 {
  color: #64748b
}

.text-surface-600 {
  color: #475569
}

.text-surface-700 {
  color: #334155
}

.text-brand-300 {
  color: #fca5a5
}

.text-brand-400 {
  color: #f87171
}

.text-cyan-400 {
  color: #22d3ee
}

.text-emerald-400 {
  color: #34d399
}

.text-emerald-300 {
  color: #6ee7b7
}

.text-amber-400 {
  color: #fbbf24
}

.text-red-300 {
  color: #fca5a5
}

.text-red-400 {
  color: #f87171
}

.text-violet-400 {
  color: #a78bfa
}

.bg-surface-800 {
  background-color: #1e293b
}

.bg-surface-900 {
  background-color: #0f172a
}

.bg-surface-950 {
  background-color: #020617
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.uppercase {
  text-transform: uppercase
}

.tracking-wider {
  letter-spacing: .05em
}

.tracking-widest {
  letter-spacing: .1em
}

.leading-none {
  line-height: 1
}

.leading-tight {
  line-height: 1.25
}

.leading-relaxed {
  line-height: 1.625
}

.flex {
  display: flex
}

.inline-flex {
  display: inline-flex
}

.grid {
  display: grid
}

.hidden {
  display: none
}

.block {
  display: block
}

.flex-col {
  flex-direction: column
}

.flex-wrap {
  flex-wrap: wrap
}

.flex-1 {
  flex: 1 1 0%
}

.shrink-0 {
  flex-shrink: 0
}

.items-center {
  align-items: center
}

.items-start {
  align-items: flex-start
}

.items-stretch {
  align-items: stretch
}

.justify-center {
  justify-content: center
}

.justify-between {
  justify-content: space-between
}

.gap-1 {
  gap: .25rem
}

.gap-1-5 {
  gap: .375rem
}

.gap-2 {
  gap: .5rem
}

.gap-3 {
  gap: .75rem
}

.gap-4 {
  gap: 1rem
}

.gap-5 {
  gap: 1.25rem
}

.gap-6 {
  gap: 1.5rem
}

.w-full {
  width: 100%
}

.min-w-0 {
  min-width: 0
}

.max-w-md {
  max-width: 28rem
}

.max-w-lg {
  max-width: 32rem
}

.max-w-2xl {
  max-width: 42rem
}

.p-2 {
  padding: .5rem
}

.p-3 {
  padding: .75rem
}

.p-4 {
  padding: 1rem
}

.p-5 {
  padding: 1.25rem
}

.p-6 {
  padding: 1.5rem
}

.px-3 {
  padding-left: .75rem;
  padding-right: .75rem
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem
}

.py-2 {
  padding-top: .5rem;
  padding-bottom: .5rem
}

.py-3 {
  padding-top: .75rem;
  padding-bottom: .75rem
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem
}

.mb-1 {
  margin-bottom: .25rem
}

.mb-2 {
  margin-bottom: .5rem
}

.mb-3 {
  margin-bottom: .75rem
}

.mb-4 {
  margin-bottom: 1rem
}

.mb-6 {
  margin-bottom: 1.5rem
}

.mt-1 {
  margin-top: .25rem
}

.mt-2 {
  margin-top: .5rem
}

.mt-3 {
  margin-top: .75rem
}

.mt-4 {
  margin-top: 1rem
}

.mt-6 {
  margin-top: 1.5rem
}

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

.rounded-lg {
  border-radius: .5rem
}

.rounded-xl {
  border-radius: .75rem
}

.rounded-2xl {
  border-radius: 1rem
}

.rounded-full {
  border-radius: 9999px
}

.border {
  border-width: 1px
}

.border-b {
  border-bottom-width: 1px
}

.overflow-auto {
  overflow: auto
}

.overflow-hidden {
  overflow: hidden
}

.overflow-y-auto {
  overflow-y: auto
}

.relative {
  position: relative
}

.absolute {
  position: absolute
}

.fixed {
  position: fixed
}

.sticky {
  position: sticky
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.z-40 {
  z-index: 40
}

.z-50 {
  z-index: 50
}

.opacity-50 {
  opacity: .5
}

.opacity-70 {
  opacity: .7
}

.cursor-pointer {
  cursor: pointer
}

.cursor-default {
  cursor: default
}

.transition-all {
  transition: all .15s ease
}

.transition-colors {
  transition: color .15s, background-color .15s, border-color .15s
}

.shadow-card {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .3), 0 2px 4px -2px rgba(0, 0, 0, .2)
}

.shadow-glow-sm {
  box-shadow: 0 0 10px rgba(239, 68, 68, .25)
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px)
}

/* Utilitárias faltantes */
.min-h-screen {
  min-height: 100vh;
}

.text-center {
  text-align: center;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.p-8 {
  padding: 2rem;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.space-y-2>*+* {
  margin-top: .5rem
}

.space-y-3>*+* {
  margin-top: .75rem
}

.space-y-4>*+* {
  margin-top: 1rem
}

.space-y-6>*+* {
  margin-top: 1.5rem
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
  height: .25rem;
  border-radius: 9999px;
  background-color: rgba(51, 65, 85, .5);
  overflow: hidden
}

.progress-bar-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width .7s ease
}

/* ===== RESPONSIVE ===== */
@media(min-width:640px) {
  .sm-flex {
    display: flex
  }

  .sm-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr)
  }

  .sm-grid-cols-3 {
    grid-template-columns: repeat(3, 1fr)
  }

  .sm-flex-row {
    flex-direction: row
  }

  .sm-items-center {
    align-items: center
  }

  .sm-px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
  }

  .sm-text-3xl {
    font-size: 1.875rem
  }

  .sm-text-5xl {
    font-size: 3rem
  }

  .sm-inline {
    display: inline
  }

  .sm-hidden {
    display: none
  }
}

@media(min-width:768px) {
  .md-flex {
    display: flex
  }

  .md-grid {
    display: grid
  }

  .md-hidden {
    display: none
  }

  .md-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr)
  }

  .md-grid-cols-3 {
    grid-template-columns: repeat(3, 1fr)
  }

  .md-grid-cols-4 {
    grid-template-columns: repeat(4, 1fr)
  }

  .md-col-span-2 {
    grid-column: span 2
  }
}

@media(min-width:1024px) {
  .lg-grid-cols-4 {
    grid-template-columns: repeat(4, 1fr)
  }

  .lg-grid-cols-5 {
    grid-template-columns: repeat(5, 1fr)
  }

  .lg-grid-cols-sidebar {
    grid-template-columns: 260px 1fr
  }

  .lg-flex-row {
    flex-direction: row
  }

  .lg-sticky {
    position: sticky
  }

  .lg-top-4 {
    top: 1rem
  }

  .lg-p-10 {
    padding: 2.5rem
  }
}

/* ===== FILE INPUT ===== */
input[type="file"] {
  font-size: .875rem;
  color: #94a3b8
}

input[type="file"]::file-selector-button {
  margin-right: .75rem;
  border-radius: .5rem;
  border: 0;
  background-color: #dc2626;
  padding: .25rem .75rem;
  color: #fff;
  cursor: pointer;
  font-weight: 500
}

input[type="file"]::file-selector-button:hover {
  background-color: #ef4444
}

/* ===== LANDING PAGE SPECIFICS ===== */
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem;
  border-radius: .75rem;
  border: 1px solid rgba(51, 65, 85, .4);
  background: rgba(30, 41, 59, .4);
  transition: all .2s
}

.benefit-item:hover {
  background: rgba(51, 65, 85, .3);
  border-color: rgba(51, 65, 85, .6)
}

.benefit-check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: rgba(220, 38, 38, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .125rem;
  color: #f87171;
  font-size: .75rem
}

.gallery-img {
  width: 100%;
  height: 13rem;
  object-fit: cover;
  border-radius: .75rem;
  border: 1px solid rgba(51, 65, 85, .5);
  transition: transform .5s
}

.gallery-img:hover {
  transform: scale(1.05)
}

/* ===== DETAIL PANEL (replaces drawer/modal) ===== */
.detail-section {
  border-radius: 1rem;
  border: 1px solid rgba(51, 65, 85, .5);
  background-color: rgba(30, 41, 59, .6);
  padding: 1rem
}

.detail-section h3 {
  font-size: .6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #64748b;
  margin-bottom: .75rem
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .5rem
}

.info-icon {
  padding: .375rem;
  border-radius: .5rem;
  background: rgba(51, 65, 85, .5);
  flex-shrink: 0
}

.info-icon svg {
  width: .75rem;
  height: .75rem;
  color: #94a3b8
}

.info-label {
  font-size: .625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #475569;
  line-height: 1;
  margin-bottom: .125rem
}

.info-value {
  font-size: .875rem;
  color: #cbd5e1
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  animation: fadeIn .2s ease;
}

.modal-box {
  width: 100%;
  max-width: 420px;
  padding: 1.5rem;
  animation: slideUp .25s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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