.header-animate {
    height: 80px;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    /* 👈 siempre presente */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-animate.scrolled {
    background-color: rgba(7, 12, 20, 0.6);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    /* 👈 solo cambia color */
    box-shadow: 0px 1px 30px rgba(255, 255, 255, 0.1);
}

.show-chat {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.hide-chat {
    opacity: 0 !important;
    transform: scale(0.9) !important;
}

/* Clases personalizadas adicionales para asegurar compatibilidad */
.duration-350 {
    transition-duration: 350ms;
}

.h-screen-minus-header {
    height: calc(100vh - 5rem);
}

.min-h-screen-minus-header {
    min-height: calc(100vh - 5rem);
}

.h-screen-minus-header-svh {
    height: calc(100svh - 5rem);
}

.min-h-screen-minus-header-svh {
    min-height: calc(100svh - 5rem);
}

/* Animación fade-up personalizada */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 600ms cubic-bezier(.2, .9, .3, 1) both;
}

*::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}
*::-webkit-scrollbar-track {
  border-radius: 20px;
  background-color: #070C14;
}

*::-webkit-scrollbar-track:hover {
  background-color: #070C14;
}

*::-webkit-scrollbar-track:active {
  background-color: #070C14;
}

*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #FFFFFF;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #CF2A37;
}

*::-webkit-scrollbar-thumb:active {
  background-color: #CF2A37;
}

