:root {
  --radius: 16px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

.gradient-text {
  background: linear-gradient(135deg, #db2777 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.beauty-card {
  background: linear-gradient(
    135deg,
    rgba(219, 39, 119, 0.05) 0%,
    rgba(245, 158, 11, 0.03) 100%
  );
  border: 1px solid rgba(219, 39, 119, 0.1);
  transition: all 0.3s ease;
}

.beauty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(219, 39, 119, 0.1);
  border-color: rgba(219, 39, 119, 0.3);
}

.elegant-effect {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-beauty {
  box-shadow: 0 4px 14px 0 rgba(219, 39, 119, 0.2);
  transition: all 0.3s ease;
}

.btn-beauty:hover {
  box-shadow: 0 6px 20px rgba(219, 39, 119, 0.3);
  transform: translateY(-2px);
}

.focus-ring:focus-visible {
  outline: 2px solid #db2777;
  outline-offset: 2px;
}

.btn-accessible {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sparkle-effect {
  position: relative;
  overflow: hidden;
}

.sparkle-effect::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(219, 39, 119, 0.05),
    transparent
  );
  transform: translateX(-100%);
}

.sparkle-effect:hover::after {
  animation: sparkle-shine 1.5s;
}

@keyframes sparkle-shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Toast inicialmente escondido */
#toast {
  display: none;
}

#toast.show {
  display: flex;
  animation: toastIn 0.3s ease-out forwards;
}

#toast.hide {
  animation: toastOut 0.3s ease-in forwards;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
