/* ================================
   WDB STARTER KIT - WIDGETS CSS
   50 Efeitos de Borda Animados
   ================================ */

/* ================================
   SERVICE CARD - BASE
   ================================ */
.wdb-service-card {
  --wdb-effect-primary: #f59e0b;
  --wdb-effect-secondary: #ea580c;
  --wdb-effect-speed: 3s;
  
  position: relative;
  display: block;
  background: #0a0a0a;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wdb-service-card.wdb-card-hover-animation:hover {
  transform: translateY(-4px);
}

/* ================================
   GLASSMORPHISM - Card
   ================================ */
.wdb-glass-card {
  --wdb-glass-glow: #f59e0b;
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wdb-glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.3) !important;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(245, 158, 11, 0.15);
}

/* Glass Glow pulsante */
.wdb-glass-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(var(--wdb-glass-glow-rgb, 245, 158, 11), 0.1) 0%,
    transparent 50%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  animation: wdb-glass-pulse 3s ease-in-out infinite;
}

.wdb-glass-card:hover .wdb-glass-glow {
  opacity: 1;
}

@keyframes wdb-glass-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

/* Glass Line animada inferior */
.wdb-glass-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--wdb-glass-glow, #f59e0b), transparent);
  transition: width 0.4s ease;
  z-index: 3;
  pointer-events: none;
}

.wdb-glass-card:hover .wdb-glass-line {
  width: 80%;
}

/* Glass icon hover */
.wdb-glass-card:hover .wdb-card-icon {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.4);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.wdb-glass-card:hover .wdb-card-title {
  color: var(--wdb-glass-glow, #f59e0b);
}

.wdb-glass-card:hover .wdb-card-description {
  color: rgba(255, 255, 255, 0.8);
}

.wdb-card-content {
  position: relative;
  z-index: 2;
}

.wdb-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.wdb-card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.wdb-card-description {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.wdb-effect-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

/* Hover only mode */
.wdb-effect-hover-only .wdb-effect-border {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wdb-effect-hover-only:hover .wdb-effect-border {
  opacity: 1;
}

/* ================================
   @PROPERTY PARA ANIMAÇÕES
   ================================ */
@property --wdb-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ================================
   GRADIENTES (01-10)
   ================================ */

/* 01. Gradient Spin */
.wdb-effect-gradient-spin {
  background: linear-gradient(#0a0a0a, #0a0a0a) padding-box,
              linear-gradient(var(--wdb-angle), var(--wdb-effect-primary), var(--wdb-effect-secondary), var(--wdb-effect-primary)) border-box;
  border: 2px solid transparent;
  animation: wdb-rotate-gradient var(--wdb-effect-speed) linear infinite;
}

@keyframes wdb-rotate-gradient {
  to { --wdb-angle: 360deg; }
}

/* 02. Gradient Shift */
.wdb-effect-gradient-shift {
  background: linear-gradient(#0a0a0a, #0a0a0a) padding-box,
              linear-gradient(90deg, var(--wdb-effect-primary), var(--wdb-effect-secondary), var(--wdb-effect-primary)) border-box;
  border: 2px solid transparent;
  background-size: 100% 100%, 200% 100%;
  animation: wdb-shift-gradient var(--wdb-effect-speed) linear infinite;
}

@keyframes wdb-shift-gradient {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 0 0, -200% 0; }
}

/* 03. Gradient Wave */
.wdb-effect-gradient-wave {
  background: linear-gradient(#0a0a0a, #0a0a0a) padding-box,
              linear-gradient(var(--wdb-angle), var(--wdb-effect-primary) 0%, transparent 40%, transparent 60%, var(--wdb-effect-secondary) 100%) border-box;
  border: 2px solid transparent;
  animation: wdb-rotate-gradient var(--wdb-effect-speed) linear infinite;
}

/* 04. Conic Gradient */
.wdb-effect-gradient-conic {
  background: linear-gradient(#0a0a0a, #0a0a0a) padding-box,
              conic-gradient(from var(--wdb-angle), var(--wdb-effect-primary), var(--wdb-effect-secondary), var(--wdb-effect-primary)) border-box;
  border: 2px solid transparent;
  animation: wdb-rotate-gradient var(--wdb-effect-speed) linear infinite;
}

/* 05. Dual Gradient */
.wdb-effect-gradient-dual {
  border: 1px solid rgba(245,158,11,0.2);
}

.wdb-effect-gradient-dual .wdb-effect-border {
  background: linear-gradient(45deg, var(--wdb-effect-primary), transparent 50%),
              linear-gradient(225deg, var(--wdb-effect-secondary), transparent 50%);
  opacity: 0.5;
  animation: wdb-dual-pulse var(--wdb-effect-speed) ease-in-out infinite;
}

@keyframes wdb-dual-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* 06. Rainbow */
.wdb-effect-gradient-rainbow {
  background: linear-gradient(#0a0a0a, #0a0a0a) padding-box,
              linear-gradient(var(--wdb-angle), #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #8b00ff, #ff0000) border-box;
  border: 2px solid transparent;
  animation: wdb-rotate-gradient var(--wdb-effect-speed) linear infinite;
}

/* 07. Aurora */
.wdb-effect-gradient-aurora {
  background: linear-gradient(#0a0a0a, #0a0a0a) padding-box,
              linear-gradient(var(--wdb-angle), #00ff87, #60efff, #00ff87, #ff00ff, #00ff87) border-box;
  border: 2px solid transparent;
  animation: wdb-rotate-gradient calc(var(--wdb-effect-speed) * 2) linear infinite;
}

/* 08. Holographic */
.wdb-effect-gradient-holographic {
  background: linear-gradient(#0a0a0a, #0a0a0a) padding-box,
              linear-gradient(135deg, #ff00ff, #00ffff, #ff00ff, #ffff00, #ff00ff) border-box;
  border: 2px solid transparent;
  background-size: 100% 100%, 400% 400%;
  animation: wdb-holographic var(--wdb-effect-speed) ease infinite;
}

@keyframes wdb-holographic {
  0%, 100% { background-position: 0 0, 0% 0%; }
  50% { background-position: 0 0, 100% 100%; }
}

/* 09. Gold Shimmer */
.wdb-effect-gradient-gold {
  background: linear-gradient(#0a0a0a, #0a0a0a) padding-box,
              linear-gradient(135deg, #d4af37, #f4e4ba, #d4af37, #b8962e, #d4af37) border-box;
  border: 2px solid transparent;
  background-size: 100% 100%, 200% 200%;
  animation: wdb-gold-shimmer var(--wdb-effect-speed) ease infinite;
}

@keyframes wdb-gold-shimmer {
  0%, 100% { background-position: 0 0, 0% 0%; }
  50% { background-position: 0 0, 100% 100%; }
}

/* 10. Silver Shine */
.wdb-effect-gradient-silver {
  background: linear-gradient(#0a0a0a, #0a0a0a) padding-box,
              linear-gradient(135deg, #c0c0c0, #ffffff, #c0c0c0, #808080, #c0c0c0) border-box;
  border: 2px solid transparent;
  background-size: 100% 100%, 200% 200%;
  animation: wdb-gold-shimmer var(--wdb-effect-speed) ease infinite;
}

/* ================================
   GLOW (11-20)
   ================================ */

/* 11. Pulse Glow */
.wdb-effect-glow-pulse {
  border: 1px solid var(--wdb-effect-primary);
  animation: wdb-pulse-glow var(--wdb-effect-speed) ease-in-out infinite;
}

@keyframes wdb-pulse-glow {
  0%, 100% { 
    box-shadow: 0 0 5px var(--wdb-effect-primary), 0 0 20px rgba(245,158,11,0.1);
    border-color: var(--wdb-effect-primary);
  }
  50% { 
    box-shadow: 0 0 20px var(--wdb-effect-primary), 0 0 40px rgba(245,158,11,0.3);
    border-color: var(--wdb-effect-secondary);
  }
}

/* 12. Neon Flicker */
.wdb-effect-glow-neon {
  border: 1px solid var(--wdb-effect-primary);
  animation: wdb-neon-flicker var(--wdb-effect-speed) ease-in-out infinite;
}

@keyframes wdb-neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    box-shadow: 0 0 10px var(--wdb-effect-primary), 0 0 20px var(--wdb-effect-primary), 0 0 30px var(--wdb-effect-primary);
    border-color: var(--wdb-effect-primary);
  }
  20%, 24%, 55% {
    box-shadow: none;
    border-color: rgba(245,158,11,0.3);
  }
}

/* 13. Fire Glow */
.wdb-effect-glow-fire {
  border: 1px solid #f97316;
  animation: wdb-fire-glow var(--wdb-effect-speed) ease-in-out infinite;
}

@keyframes wdb-fire-glow {
  0%, 100% { box-shadow: 0 0 10px #f97316, 0 0 20px #ea580c, 0 0 30px #dc2626; }
  33% { box-shadow: 0 0 15px #ea580c, 0 0 30px #dc2626, 0 0 45px #f97316; }
  66% { box-shadow: 0 0 20px #dc2626, 0 0 40px #f97316, 0 0 60px #ea580c; }
}

/* 14. Ice Frost */
.wdb-effect-glow-ice {
  border: 1px solid rgba(147,197,253,0.5);
  animation: wdb-ice-shimmer var(--wdb-effect-speed) ease-in-out infinite;
}

@keyframes wdb-ice-shimmer {
  0%, 100% { border-color: rgba(147,197,253,0.5); box-shadow: 0 0 20px rgba(147,197,253,0.2); }
  50% { border-color: rgba(219,234,254,0.8); box-shadow: 0 0 30px rgba(147,197,253,0.4); }
}

/* 15. Electric */
.wdb-effect-glow-electric {
  border: 1px solid #3b82f6;
  animation: wdb-electric-pulse calc(var(--wdb-effect-speed) / 6) ease-in-out infinite;
}

@keyframes wdb-electric-pulse {
  0%, 100% { box-shadow: 0 0 5px #3b82f6, 0 0 10px #3b82f6; }
  50% { box-shadow: 0 0 15px #3b82f6, 0 0 30px #3b82f6, 0 0 45px #3b82f6; }
}

/* 16. Sunset */
.wdb-effect-glow-sunset {
  border: 1px solid #f472b6;
  animation: wdb-sunset-glow var(--wdb-effect-speed) ease-in-out infinite;
}

@keyframes wdb-sunset-glow {
  0%, 100% { box-shadow: 0 0 15px #f472b6, 0 0 30px #fb923c; border-color: #f472b6; }
  50% { box-shadow: 0 0 20px #fb923c, 0 0 40px #f472b6; border-color: #fb923c; }
}

/* 17. Ocean Deep */
.wdb-effect-glow-ocean {
  border: 1px solid #06b6d4;
  animation: wdb-ocean-glow var(--wdb-effect-speed) ease-in-out infinite;
}

@keyframes wdb-ocean-glow {
  0%, 100% { box-shadow: 0 0 15px #06b6d4, 0 0 30px #0284c7; border-color: #06b6d4; }
  50% { box-shadow: 0 0 25px #0284c7, 0 0 50px #06b6d4; border-color: #0284c7; }
}

/* 18. Forest */
.wdb-effect-glow-forest {
  border: 1px solid #22c55e;
  animation: wdb-forest-glow var(--wdb-effect-speed) ease-in-out infinite;
}

@keyframes wdb-forest-glow {
  0%, 100% { box-shadow: 0 0 15px #22c55e, 0 0 30px #16a34a; border-color: #22c55e; }
  50% { box-shadow: 0 0 25px #16a34a, 0 0 50px #22c55e; border-color: #16a34a; }
}

/* 19. Purple Haze */
.wdb-effect-glow-purple {
  border: 1px solid #a855f7;
  animation: wdb-purple-glow var(--wdb-effect-speed) ease-in-out infinite;
}

@keyframes wdb-purple-glow {
  0%, 100% { box-shadow: 0 0 15px #a855f7, 0 0 30px #7c3aed; border-color: #a855f7; }
  50% { box-shadow: 0 0 25px #7c3aed, 0 0 50px #a855f7; border-color: #7c3aed; }
}

/* 20. Heartbeat */
.wdb-effect-glow-heartbeat {
  border: 2px solid #ef4444;
  animation: wdb-heartbeat calc(var(--wdb-effect-speed) / 2) ease-in-out infinite;
}

@keyframes wdb-heartbeat {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
  15% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(239,68,68,0); }
  30% { transform: scale(1); }
  45% { transform: scale(1.01); box-shadow: 0 0 0 10px rgba(239,68,68,0); }
}

/* ================================
   DESENHO (21-30)
   ================================ */

/* 21. Draw Border */
.wdb-effect-draw-border { border: 2px solid transparent; }
.wdb-effect-draw-border .wdb-effect-border {
  border: 2px solid var(--wdb-effect-primary);
  animation: wdb-draw-border var(--wdb-effect-speed) linear infinite;
}

@keyframes wdb-draw-border {
  0% { clip-path: inset(0 100% 100% 0); }
  25% { clip-path: inset(0 0 100% 0); }
  50% { clip-path: inset(0 0 0 0); }
  75% { clip-path: inset(0 0 0 100%); }
  100% { clip-path: inset(0 100% 0 100%); }
}

/* 22. Reveal Expand */
.wdb-effect-draw-reveal .wdb-effect-border {
  border: 2px solid var(--wdb-effect-primary);
  clip-path: inset(50% 50% 50% 50%);
  transition: clip-path 0.5s ease;
}
.wdb-effect-draw-reveal:hover .wdb-effect-border { clip-path: inset(0 0 0 0); }

/* 23. Trace Line */
.wdb-effect-draw-trace { border: 1px solid rgba(245,158,11,0.2); }
.wdb-effect-draw-trace .wdb-effect-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--wdb-effect-primary), transparent);
  animation: wdb-trace-line var(--wdb-effect-speed) linear infinite;
}

@keyframes wdb-trace-line {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* 24. Corner Brackets */
.wdb-effect-draw-corners::before,
.wdb-effect-draw-corners::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid var(--wdb-effect-primary);
  transition: all 0.3s ease;
  z-index: 5;
}
.wdb-effect-draw-corners::before { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.wdb-effect-draw-corners::after { bottom: 10px; right: 10px; border-left: none; border-top: none; }
.wdb-effect-draw-corners:hover::before,
.wdb-effect-draw-corners:hover::after { width: 50px; height: 50px; }

/* 25. Double Layer */
.wdb-effect-draw-double { border: 1px solid rgba(245,158,11,0.3); }
.wdb-effect-draw-double .wdb-effect-border {
  inset: 6px;
  border: 1px solid rgba(245,158,11,0.2);
  animation: wdb-double-pulse var(--wdb-effect-speed) ease-in-out infinite;
}

@keyframes wdb-double-pulse {
  0%, 100% { inset: 6px; opacity: 1; }
  50% { inset: 10px; opacity: 0.5; }
}

/* 26. Inset Frame */
.wdb-effect-draw-inset { border: 1px solid rgba(245,158,11,0.2); }
.wdb-effect-draw-inset .wdb-effect-border {
  inset: 8px;
  border: 1px solid var(--wdb-effect-primary);
  opacity: 0;
  transition: all 0.3s ease;
}
.wdb-effect-draw-inset:hover .wdb-effect-border { inset: 4px; opacity: 1; }

/* 27. Clip Reveal */
.wdb-effect-draw-clip .wdb-effect-border {
  border: 2px solid var(--wdb-effect-primary);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 0.5s ease;
}
.wdb-effect-draw-clip:hover .wdb-effect-border { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }

/* 28. Typewriter */
.wdb-effect-draw-typewriter .wdb-effect-border {
  border: 2px solid var(--wdb-effect-primary);
  clip-path: inset(0 100% 0 0);
  animation: wdb-typewriter var(--wdb-effect-speed) steps(20) infinite;
}

@keyframes wdb-typewriter {
  0%, 100% { clip-path: inset(0 100% 0 0); }
  50% { clip-path: inset(0 0 0 0); }
}

/* 29. Snake */
.wdb-effect-draw-snake { border: 1px solid rgba(245,158,11,0.2); }
.wdb-effect-draw-snake .wdb-effect-border::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--wdb-effect-primary);
  box-shadow: 0 0 10px var(--wdb-effect-primary);
  animation: wdb-snake var(--wdb-effect-speed) linear infinite;
}

@keyframes wdb-snake {
  0% { top: 0; left: 0; width: 30px; height: 2px; }
  25% { top: 0; left: calc(100% - 30px); width: 30px; height: 2px; }
  25.1% { top: 0; left: calc(100% - 2px); width: 2px; height: 30px; }
  50% { top: calc(100% - 30px); left: calc(100% - 2px); width: 2px; height: 30px; }
  50.1% { top: calc(100% - 2px); left: calc(100% - 30px); width: 30px; height: 2px; }
  75% { top: calc(100% - 2px); left: 0; width: 30px; height: 2px; }
  75.1% { top: calc(100% - 30px); left: 0; width: 2px; height: 30px; }
  100% { top: 0; left: 0; width: 2px; height: 30px; }
}

/* 30. Expand Out */
.wdb-effect-draw-expand .wdb-effect-border {
  border: 2px solid var(--wdb-effect-primary);
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s ease;
}
.wdb-effect-draw-expand:hover .wdb-effect-border { transform: scale(1); opacity: 1; }

/* ================================
   MOVIMENTO (31-40)
   ================================ */

/* 31. Scan Line */
.wdb-effect-move-scan { border: 1px solid rgba(245,158,11,0.2); overflow: hidden; }
.wdb-effect-move-scan .wdb-effect-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.3), transparent);
  animation: wdb-scan var(--wdb-effect-speed) linear infinite;
}

@keyframes wdb-scan {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* 32. Spotlight */
.wdb-effect-move-spotlight { border: 1px solid rgba(245,158,11,0.2); overflow: hidden; }
.wdb-effect-move-spotlight .wdb-effect-border::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, var(--wdb-effect-primary) 0%, transparent 70%);
  filter: blur(10px);
  animation: wdb-spotlight var(--wdb-effect-speed) linear infinite;
}

@keyframes wdb-spotlight {
  0% { top: -30px; left: -30px; }
  25% { top: -30px; left: calc(100% - 30px); }
  50% { top: calc(100% - 30px); left: calc(100% - 30px); }
  75% { top: calc(100% - 30px); left: -30px; }
  100% { top: -30px; left: -30px; }
}

/* 33. Dash Flow */
.wdb-effect-move-dash {
  border: 2px dashed var(--wdb-effect-primary);
  animation: wdb-dash-flow var(--wdb-effect-speed) linear infinite;
}

@keyframes wdb-dash-flow {
  0% { border-color: var(--wdb-effect-primary); }
  50% { border-color: var(--wdb-effect-secondary); }
  100% { border-color: var(--wdb-effect-primary); }
}

/* 34. Orbit */
.wdb-effect-move-orbit { border: 1px solid rgba(245,158,11,0.2); overflow: hidden; }
.wdb-effect-move-orbit .wdb-effect-border::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--wdb-effect-primary);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--wdb-effect-primary);
  animation: wdb-orbit var(--wdb-effect-speed) linear infinite;
}

@keyframes wdb-orbit {
  0% { transform: translate(-50%, -50%) rotate(0deg) translateX(80px) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg) translateX(80px) rotate(-360deg); }
}

/* 35. Liquid Wave */
.wdb-effect-move-liquid { border: 2px solid rgba(245,158,11,0.3); overflow: hidden; }
.wdb-effect-move-liquid .wdb-effect-border::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  animation: wdb-liquid var(--wdb-effect-speed) ease-in-out infinite;
}

@keyframes wdb-liquid {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(10%, 10%) rotate(5deg); }
  66% { transform: translate(-10%, 5%) rotate(-5deg); }
}

/* 36. Bounce */
.wdb-effect-move-bounce {
  border: 2px solid var(--wdb-effect-primary);
  animation: wdb-bounce var(--wdb-effect-speed) ease-in-out infinite;
}

@keyframes wdb-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* 37. Shake */
.wdb-effect-move-shake { border: 2px solid var(--wdb-effect-primary); }
.wdb-effect-move-shake:hover { animation: wdb-shake 0.5s ease-in-out; }

@keyframes wdb-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* 38. Rotate Border */
.wdb-effect-move-rotate .wdb-effect-border {
  border: 2px solid var(--wdb-effect-primary);
  animation: wdb-rotate-border var(--wdb-effect-speed) ease-in-out infinite;
}

@keyframes wdb-rotate-border {
  0%, 100% { border-radius: 16px; }
  25% { border-radius: 16px 24px 16px 24px; }
  50% { border-radius: 24px 16px 24px 16px; }
  75% { border-radius: 16px 24px 16px 24px; }
}

/* 39. Swing */
.wdb-effect-move-swing {
  border: 2px solid var(--wdb-effect-primary);
  transform-origin: top center;
  animation: wdb-swing var(--wdb-effect-speed) ease-in-out infinite;
}

@keyframes wdb-swing {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  75% { transform: rotate(-2deg); }
}

/* 40. Float */
.wdb-effect-move-float {
  border: 2px solid var(--wdb-effect-primary);
  animation: wdb-float var(--wdb-effect-speed) ease-in-out infinite;
}

@keyframes wdb-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-5px) rotate(0.5deg); }
  75% { transform: translateY(5px) rotate(-0.5deg); }
}

/* ================================
   ESPECIAIS (41-50)
   ================================ */

/* 41. Cyber Glitch */
.wdb-effect-special-glitch {
  border: 1px solid #00ff00;
  animation: wdb-cyber-glitch var(--wdb-effect-speed) steps(1) infinite;
}

@keyframes wdb-cyber-glitch {
  0%, 90%, 100% { border-color: #00ff00; box-shadow: 0 0 10px #00ff00; transform: translate(0); }
  91% { border-color: #ff0000; box-shadow: -2px 0 10px #ff0000, 2px 0 10px #00ffff; transform: translate(-2px, 1px); }
  93% { border-color: #00ffff; box-shadow: 2px 0 10px #00ffff, -2px 0 10px #ff0000; transform: translate(2px, -1px); }
  95% { transform: translate(0); }
}

/* 42. Matrix */
.wdb-effect-special-matrix {
  border: 1px solid #00ff00;
  box-shadow: 0 0 10px rgba(0,255,0,0.3), inset 0 0 20px rgba(0,255,0,0.05);
}

/* 43. VHS */
.wdb-effect-special-vhs {
  border: 2px solid #fff;
  animation: wdb-vhs var(--wdb-effect-speed) linear infinite;
}

@keyframes wdb-vhs {
  0%, 100% { border-color: #fff; box-shadow: -2px 0 #ff0000, 2px 0 #00ffff; }
  50% { border-color: #fff; box-shadow: 2px 0 #ff0000, -2px 0 #00ffff; }
}

/* 44. Retro */
.wdb-effect-special-retro {
  border: 3px solid;
  border-color: #ff6b6b #4ecdc4 #ffe66d #95e1d3;
  box-shadow: 4px 4px 0 #000;
  transition: all 0.2s ease;
}
.wdb-effect-special-retro:hover { box-shadow: 2px 2px 0 #000; transform: translate(2px, 2px); }

/* 45. Minimal */
.wdb-effect-special-minimal {
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s ease;
}
.wdb-effect-special-minimal:hover { border-color: var(--wdb-effect-primary); }

/* 46. Elegant */
.wdb-effect-special-elegant {
  border: 1px solid rgba(212,175,55,0.3);
  box-shadow: inset 0 0 30px rgba(212,175,55,0.03);
}
.wdb-effect-special-elegant::before,
.wdb-effect-special-elegant::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  z-index: 5;
}
.wdb-effect-special-elegant::before { top: -1px; left: 50%; transform: translateX(-50%); }
.wdb-effect-special-elegant::after { bottom: -1px; left: 50%; transform: translateX(-50%); }

/* 47. Brutal */
.wdb-effect-special-brutal {
  border: 3px solid #fff;
  box-shadow: 6px 6px 0 var(--wdb-effect-primary);
  transition: all 0.2s ease;
}
.wdb-effect-special-brutal:hover { box-shadow: 3px 3px 0 var(--wdb-effect-primary); transform: translate(3px, 3px); }

/* 48. Soft Glow */
.wdb-effect-special-soft {
  border: 1px solid rgba(245,158,11,0.2);
  box-shadow: 0 0 40px rgba(245,158,11,0.08), inset 0 0 40px rgba(245,158,11,0.03);
  transition: all 0.4s ease;
}
.wdb-effect-special-soft:hover {
  box-shadow: 0 0 60px rgba(245,158,11,0.15), inset 0 0 60px rgba(245,158,11,0.05);
}

/* 49. Sharp Edge */
.wdb-effect-special-sharp {
  border: 2px solid var(--wdb-effect-primary);
  clip-path: polygon(0 10px, 10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px));
}

/* 50. Premium */
.wdb-effect-special-premium {
  background: linear-gradient(#0a0a0a, #0a0a0a) padding-box,
              linear-gradient(135deg, #d4af37, #f4e4ba, #d4af37) border-box;
  border: 1px solid transparent;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3), inset 0 0 30px rgba(212,175,55,0.03);
}
.wdb-effect-special-premium::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f4e4ba, transparent);
  z-index: 5;
}
.wdb-effect-special-premium::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  z-index: 5;
}

/* ================================
   GLASS / LINE (51-52)
   ================================ */

/* 51. Gradient Line - linha animada inferior */
.wdb-effect-glass-gradient-line {
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}
.wdb-effect-glass-gradient-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--wdb-effect-primary), transparent);
  transition: width 0.4s ease;
  z-index: 5;
}
.wdb-effect-glass-gradient-line:hover::after {
  width: 80%;
}
.wdb-effect-glass-gradient-line:hover {
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* 52. Side Bar Reveal - barra lateral que aparece */
.wdb-effect-glass-side-bar {
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}
.wdb-effect-glass-side-bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--wdb-effect-primary), var(--wdb-effect-secondary));
  transform: scaleY(0);
  transition: transform 0.3s ease;
  z-index: 5;
  border-radius: 0 2px 2px 0;
}
.wdb-effect-glass-side-bar:hover::before {
  transform: scaleY(1);
}
.wdb-effect-glass-side-bar:hover {
  border-color: rgba(245, 158, 11, 0.15);
  background: rgba(255, 255, 255, 0.02);
}
