.popup-container {
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.popup-box {
  background: #111827;
  padding: 2rem;
  max-width: 400px;
  border: 1px solid #1f2937;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  animation: popupZoom 0.3s ease;
}

@keyframes popupZoom {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.popup-close {
  top: 1rem;
  right: 1rem;
  background: transparent;
  color: #ccc;
  font-size: 1.2rem;
}

.popup-header {

}
.popup-title {

}
.popup-subtitle {
  color: #9ca3af;
}

.popup-body {
 
}

.popup-warning {
  background-color: rgba(202, 138, 4, 0.1);
  color: #fbbf24;
}

.popup-label {

}
.popup-input {
  border: 1px solid #4b5563;
  background: #1f2937;
}

.popup-button {
  transition: background 0.2s ease;
}
.popup-button.primary {
  background-color: #059669;
}
.popup-button.primary:hover {
  background-color: #047857;
}
.popup-button.secondary {
  background-color: #111827;
  color: #9ca3af;
  border: 1px solid #4b5563;
}
.popup-button.secondary:hover {
  background-color: #1f2937;
}

.popup-divider {
  color: #6b7280;
  margin: 1rem 0;
}
.popup-divider::before,
.popup-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #374151;
}
.popup-divider::before {
  left: 0;
}
.popup-divider::after {
  right: 0;
}

.popup-steps {
}
.popup-step {
  color: #d1d5db;
}
.step-circle {
  background-color: rgba(5, 150, 105, 0.2);
  color: #10b981;
  width: 32px;
  height: 32px;
}
.progress-line {
  height: 6px;
  margin-top: 4px;
}
.max-w-md {
    max-width: 28rem;
}

.icon-purple{
  width: 2rem;
  height: 2rem;
}
.bar-results {
  height: 8px;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
  border-radius: 9999px;
  overflow: hidden;
}

.bar-results-fill {
  width: 100%;
  height: 100%;
  transition: width 1s linear; /* ⬅ isso que garante movimento suave */
  border-radius: 9999px;
}
.fill-green{
  background-color: #22c55e;
}
.fill-yellow{
  --tw-text-opacity: 1;
  background-color: rgb(250 204 21/var(--tw-text-opacity,1));
}
.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
}
.svg-btn-neutro{
  width: 1rem;
}
.svg-btn-neutro svg{
  width: 100%;
  height: 100%;
}
.btn-netro-content{
  background-image: linear-gradient(to bottom right, var(--color-connect), var(--color-upload-icon));
}
.btn-analyze-detail{
  width: 5rem;
  height: 3rem;
  border: 1px solid var(--color-connect);
  background: #0a87c72e;
}
.btn-analyze-detail svg{
  width: 1rem;
}
.btn-new-analyze{
  background: var(--color-connect);
}
.btn-back-home{
  border: 1px solid var(--color-upload-border);
  background: transparent;
}
.jsx-e205223f4372e673{
  color: var(--color-stat-label);
}
.svg-hour{
  color: var(--alert-warning);
}
.text-green-400{
  color: #22c55e;
}

@keyframes bubble-up {
  0% {
    transform: translateY(100%) scale(0.6);
    opacity: 0;
  }
  20% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-120%) scale(0.9);
    opacity: 0;
  }
}

.bubble-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bubble {
  position: absolute;
  bottom: 20px;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background-color: #93c5fd; /* azul-claro */
  opacity: 0;
  animation: bubble-up linear infinite;
}

@keyframes float-icon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px); /* ajuste aqui para subir mais ou menos */
  }
}

.float-icon {
  animation: float-icon 2.5s ease-in-out infinite;
}

