/* Custom Styles - Unimed Macei¨® Landing Page */

html {
  scroll-behavior: smooth;
  overflow-anchor: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f3f4f6;
}

::-webkit-scrollbar-thumb {
  background: #00995D;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #003822;
}

/* FAQ Accordion Smooth Animation */
.accordion-content {
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

/* Modal Float Up Animation */
@keyframes float-up {
  0% { 
    transform: translateY(20px) scale(0.95); 
    opacity: 0; 
  }
  100% { 
    transform: translateY(0) scale(1); 
    opacity: 1; 
  }
}

.animate-float-up {
  animation: float-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Hide Scrollbar for Horizontal Tab Navigation */
.scrollbar-none::-webkit-scrollbar {
  display: none;
}
.scrollbar-none {
  -ms-overflow-style: none;
  scrollbar-width: none;
}