input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

@keyframes fade-in {
  from {
      background-color: rgb(var(--overlay) / 0);
  }
  to {
      background-color: rgb(var(--overlay) / 0.8);
  }
}

@keyframes fade-out {
  from {
      background-color: rgb(var(--overlay) / 0.8);
  }
  to {
      background-color: rgb(var(--overlay) / 0);
  }
}

@keyframes slide-in {
  from {
      transform: translateX(500px);
  }
  to {
      transform: translateX(0px);
  }
}

@keyframes slide-out {
  from {
      transform: translateX(0px);
  }
  to {
      transform: translateX(500px);
  }
}

body.cart-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

#cart-drawer[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

#cart-drawer[data-state="open"] > div {
  animation: slide-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] > div {
  animation: slide-out 0.4s forwards;
}

.dialog[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

.dialog[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

.dialog[data-state="open"] > div {
  animation: dialog-in 0.2s forwards;
}

.dialog[data-state="closed"] > div {
  animation: dialog-out 0.2s forwards;
}

@keyframes dialog-in {
  from {
      opacity: 0;
      scale: 50%;
  }
  to {
      opacity: 1;
      scale: 100%;
  }
}

@keyframes dialog-out {
  from {
      opacity: 1;
      scale: 100%;
  }
  to {
      opacity: 0;
      scale: 50%;
  }
}

.reveal-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.centralcart-content iframe {
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
}

.grid-background {
  background-image: linear-gradient(to right,rgb(var(--foreground) / .03) 1px,transparent 1px),linear-gradient(to bottom,rgb(var(--foreground) / .03) 1px,transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 85% at 40% 30%, #000 0%, #fff0 110%)
}

.custom-bg-mask {
	mask-image: linear-gradient(rgb(var(--background)), rgb(var(--shadow-rgb) / 0.3), rgb(0, 0, 0, 0));
}

.glow-canto {
  position: absolute;
  top: -18vh;
  right: -12vw;
  width: min(46rem, 85vw);
  height: min(46rem, 85vw);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle at center,
    rgb(255 255 255 / 0.16) 0%,
    rgb(255 255 255 / 0.08) 32%,
    rgb(255 255 255 / 0.03) 55%,
    transparent 72%
  );
}

.glow-canto {
  background: radial-gradient(
    circle at center,
    rgb(var(--primary) / 0.10) 0%,
    rgb(var(--primary) / 0.05) 38%,
    transparent 70%
  );
}

@keyframes loading {
  0% {
      left: -50%;
  }

  to {
      left: 100%;
  }
}

.detail-dash {
  background-image: linear-gradient(to right, rgb(var(--foreground) / 0.1) 50%, rgb(var(--foreground) / 0) 0%);
  background-position: center bottom;
  background-size: 16px;
  background-repeat: repeat-x;
  width: 100%;
  height: 1px;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgb(var(--primary));
  border-radius: 0.25rem;
}

.cat-dropdown {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top;
}

.cat-dropdown:not(.hidden) {
  animation: slideDown 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

#mobile-categories-dropdown:not(.hidden) {
  animation: slideInMobile 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInMobile {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-subcategories:not(.hidden) {
  animation: slideInSub 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInSub {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#hero-section {
  background: transparent !important;
  position: relative;
  overflow: hidden;
}
#hero-section .hero-carousel-wrap {
  position: relative;
  z-index: 1;
}

@keyframes fadeInSmooth {
  from {
    opacity: 1;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInSmooth 1s ease-out forwards;
}

.hero-btn__discord {
  width: 1rem;
  height: 1rem;
}

#hero-section .hero-carousel-wrap {
  position: relative;
  z-index: 1;
}

#hero-section .hero-carousel-wrap {
  min-height: 180px;
}
@media (min-width: 1024px) {
  #hero-section > div.grid {
    grid-template-columns: minmax(0, 1fr) minmax(600px, 1fr);
    align-items: start !important;
    gap: 2rem;
    min-height: 280px !important;
  }
  #hero-section .hero-carousel-wrap {
    min-height: 280px;
    max-width: 100%;
  }
}

#hero-section .hero-carousel-wrap:empty {
  min-height: 0;
}

#hero-section form,
#hero-products-carousel-wrap form {
  display: none !important;
}
#hero-products-carousel-wrap > *:not(.faixa-produtos):not(.faixa-dupla) {
  display: none !important;
}

#hero-products-carousel-wrap {
  z-index: 5;
}

#hero-products-carousel-wrap a,
#hero-products-carousel-wrap img,
#hero-products-carousel-wrap a img {
  border-radius: 14px !important;
}
#hero-products-carousel-wrap [class*="rounded-none"],
#hero-products-carousel-wrap .rounded-none {
  border-radius: 14px !important;
}

.hero-carousel-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  position: relative;
  flex-shrink: 0;
  display: block !important;
}
#hero-products-carousel-wrap.hero-carousel-wrap {
  display: block !important;
}

#hero-products-carousel-wrap.hero-carousel-wrap,
.hero-carousel-wrap {
  overflow: hidden !important;
  position: relative !important;
  z-index: 1;
  isolation: isolate !important;
  display: block !important;
}

@media (max-width: 1023px) {
  #hero-products-carousel-wrap.hero-carousel-wrap {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }
  #hero-products-carousel-wrap {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
  }
#hero-products-carousel-wrap img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

@media (max-width: 768px) {
  #hero-section {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

.support-button {
  text-decoration: none;
  display: inline-flex;
}

.support-character-img {
  transition: transform 0.3s ease;
}

.support-character-img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .support-character-img {
    max-width: 300px;
  }
}

.how-it-works-card {
  backdrop-filter: blur(10px);
}

.how-it-works-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgb(var(--primary) / 0.2);
}

.home-faq {
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgb(var(--foreground) / 0.1);
  background: rgb(var(--card) / 0.85);
}

.home-faq__title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: rgb(var(--foreground));
}

.home-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.home-faq__item {
  border-radius: 0.75rem;
  border: 1px solid rgb(var(--foreground) / 0.08);
  background: rgb(var(--foreground) / 0.03);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.home-faq__item.is-open {
  border-color: rgb(var(--primary) / 0.35);
  background: rgb(var(--primary) / 0.06);
}

.home-faq__question {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0.9rem 1rem;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgb(var(--foreground));
  text-align: left;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
}

.home-faq__label,
.home-faq__question > span:first-child {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  line-height: 1.35;
}

.home-faq__chevron {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 1.25rem;
  margin-left: auto;
  font-style: normal;
  color: rgb(var(--foreground) / 0.55);
  transition: transform 0.25s ease, color 0.2s ease;
}

.home-faq__chevron svg {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
}

.home-faq__item.is-open .home-faq__chevron {
  transform: rotate(180deg);
  color: rgb(var(--primary-deep));
}

.home-faq__answer {
  padding: 0 1rem 1rem;
}

.home-faq__answer p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgb(var(--foreground) / 0.6);
}

@media (min-width: 768px) {
  .home-faq {
    padding: 1.5rem;
  }

  .home-faq__title {
    font-size: 1.375rem;
  }

  .home-faq__question {
    padding: 1rem 1.125rem;
    font-size: 1rem;
  }
}

.testimonials-section {
  overflow: hidden !important;
  background: transparent !important;
}

.testimonials-title {
  animation: fade-in-testimonials 0.8s ease-out !important;
}

@keyframes fade-in-testimonials {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonials-wrapper {
  overflow: hidden !important;
  position: relative !important;
  padding: 20px 0 !important;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%) !important;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%) !important;
}

.testimonials-carousel {
  display: flex !important;
  gap: 24px !important;
  animation: scroll-testimonials 40s linear infinite !important;
  width: fit-content !important;
}

.testimonials-carousel:hover {
  animation-play-state: paused !important;
}

@keyframes scroll-testimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  flex: 0 0 350px !important;
  border-radius: 16px !important;
  padding: 24px !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  text-decoration: none !important;
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgb(var(--primary) / 0.3) !important;
}

.testimonial-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgb(var(--primary)) !important;
  box-shadow: 0 10px 30px rgb(var(--primary) / 0.4) !important;
}

.testimonial-bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(135deg, rgb(var(--primary) / 0.15) 0%, rgb(var(--primary-deep) / 0.08) 100%) !important;
  z-index: 0 !important;
}

.testimonial-card::before {
  content: '' !important;
  position: absolute !important;
  top: -50% !important;
  left: -50% !important;
  width: 200% !important;
  height: 200% !important;
  background: linear-gradient(45deg, transparent 30%, rgb(var(--foreground) / 0.05) 50%, transparent 70%) !important;
  transform: rotate(45deg) !important;
  transition: all 0.5s ease !important;
  opacity: 0 !important;
  z-index: 1 !important;
}

.testimonial-card:hover::before {
  opacity: 1 !important;
  left: 100% !important;
}

.testimonial-content {
  position: relative !important;
  z-index: 2 !important;
}

.testimonial-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 16px !important;
}

.testimonial-avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid rgb(var(--primary)) !important;
  transition: all 0.3s ease !important;
}

.testimonial-card:hover .testimonial-avatar {
  border-color: rgb(var(--primary-deep)) !important;
  transform: scale(1.05) !important;
}

.testimonial-info {
  flex: 1 !important;
}

.testimonial-name {
  color: rgb(var(--foreground)) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.2 !important;
}

.testimonial-stars {
  display: flex !important;
  gap: 2px !important;
}

.star-icon {
  width: 16px !important;
  height: 16px !important;
  color: rgb(var(--primary)) !important;
  transition: all 0.3s ease !important;
}

.testimonial-card:hover .star-icon {
  color: rgb(var(--primary-deep)) !important;
  transform: scale(1.1) !important;
}

.testimonial-text {
  color: rgb(var(--foreground) / 0.8) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 4 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.testimonials-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  background: rgb(var(--primary)) !important;
  color: rgb(var(--primary-fg)) !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  padding: 16px 32px !important;
  border-radius: 9999px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  border: none !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
}

.testimonials-button:hover {
  background: rgb(var(--primary-deep)) !important;
  transform: scale(1.05) !important;
  box-shadow: 0 20px 40px rgb(var(--primary) / 0.5) !important;
}

.testimonials-button svg {
  transition: transform 0.3s ease !important;
}

.testimonials-button:hover svg {
  transform: translateX(5px) !important;
}

.testimonials-button::before {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 0 !important;
  height: 0 !important;
  border-radius: 50% !important;
  background: rgb(var(--foreground) / 0.1) !important;
  transform: translate(-50%, -50%) !important;
  transition: width 0.6s ease, height 0.6s ease !important;
}

.testimonials-button:hover::before {
  width: 300px !important;
  height: 300px !important;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 300px !important;
    padding: 20px !important;
  }

  .testimonial-name {
    font-size: 14px !important;
  }

  .testimonial-text {
    font-size: 13px !important;
    -webkit-line-clamp: 3 !important;
  }

  .testimonial-avatar {
    width: 40px !important;
    height: 40px !important;
  }

  .star-icon {
    width: 14px !important;
    height: 14px !important;
  }

  .testimonials-button {
    padding: 14px 28px !important;
    font-size: 14px !important;
  }

  .testimonials-carousel {
    animation: scroll-testimonials 30s linear infinite !important;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    flex: 0 0 280px !important;
    padding: 16px !important;
  }

  .testimonials-wrapper {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%) !important;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%) !important;
  }

  .testimonials-title {
    font-size: 2rem !important;
  }
}

.nav-item-profile {
  max-width: 200px;
  min-width: 0;
}
.nav-item-profile button,
.nav-item-profile [data-profile-trigger] {
  max-width: 100%;
  overflow: hidden;
}
.nav-item-profile button > span:not(:first-child):not(:last-child),
.nav-item-profile [data-profile-trigger] > span:not(:first-child):not(:last-child) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  min-width: 0;
}
@media (max-width: 1024px) {
  .nav-item-profile {
    max-width: 160px;
  }
}
@media (max-width: 768px) {
  .nav-item-profile {
    max-width: 140px;
  }
}

