.tk-marquee {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #1e40af 0%, #3b82f6 50%, #1e40af 100%);
  padding: 12px 0;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
}

.tk-marquee__msg {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 5s linear infinite alternate;
  color: #fff;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.8px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% + 100vw)); /* Move o texto apenas até o limite da largura da tela */
  }
}

@media (max-width: 768px) {
  .tk-marquee__msg {
    font-size: 1rem;
    animation-duration: 15s;
  }
}

.blink {
  animation: blink 1s steps(1, end) infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
  
.popup-overlay-rc {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.6), rgba(59, 130, 246, 0.7));
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .popup-overlay-rc.show {
    opacity: 1;
  }
  .popup-box-rc {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    color: #1e3a8a;
    border: 2px solid #3b82f6;
    border-radius: 20px;
    padding: 32px;
    max-width: 600px;
    width: 90%;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    position: absolute;
    box-shadow: 0 16px 32px rgba(30, 64, 175, 0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .popup-box-rc.show {
    opacity: 1;
    transform: translateY(0);
  }
  .popup-box-rc h2, .popup-box-rc h3 {
    margin-top: 0;
    color: #1e40af;
    text-shadow: 0 1px 2px rgba(30, 64, 175, 0.1);
    font-weight: 600;
  }
  .popup-box-rc h2 {
    font-size: 1.8rem;
  }
  .popup-box-rc p {
    line-height: 1.6;
    margin: 12px 0;
  }
  .popup-box-rc ul {
    margin: 12px 0;
    padding-left: 24px;
  }
  .popup-box-rc li {
    margin-bottom: 8px;
  }
  .popup-box-rc hr {
    border: none;
    border-top: 1px solid #bfdbfe;
    margin: 20px 0;
  }
  .close-popup-rc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 24px auto 0;
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    position: relative;
    overflow: hidden;
  }
  .close-popup-rc::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
  }
  .close-popup-rc:hover::before {
    left: 100%;
  }
  .close-popup-rc:hover {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.5);
  }
  .check-icon {
    stroke-dasharray: 30;
    stroke-dashoffset: 0;
  }
  .check-screen-rc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    padding: 20px;
  }
  .check-icon-large {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: drawCheck 0.5s ease-in-out forwards;
  }
  .confirmation-image {
    margin-top: 20px;
    width: 350px;
    height: auto;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInImage 0.5s ease-in-out 0.5s forwards;
  }
  @keyframes drawCheck {
    to {
      stroke-dashoffset: 0;
    }
  }
  @keyframes fadeInImage {
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  @media (max-width: 768px) {
    .popup-box-rc {
      padding: 24px;
      max-width: 95%;
    }
    .popup-box-rc h2 {
      font-size: 1.5rem;
    }
    .popup-box-rc h3 {
      font-size: 1.2rem;
    }
    .close-popup-rc {
      padding: 10px 24px;
      font-size: 0.9rem;
    }
    .check-screen-rc {
      min-height: 200px;
    }
    .check-icon-large {
      width: 80px;
      height: 80px;
    }
    .confirmation-image {
      width: 120px;
    }
  }