 :root { --radius: 20px; }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    
    .gradient-text {
      background: linear-gradient(135deg, #A855F7 0%, #F97316 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .fashion-card {
      background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(168, 85, 247, 0.2);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .fashion-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
      border-color: rgba(168, 85, 247, 0.4);
    }
    
    .glass-effect {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .btn-glow {
      box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
      transition: all 0.3s ease;
    }
    
    .btn-glow:hover {
      box-shadow: 0 0 30px rgba(168, 85, 247, 0.6);
      transform: translateY(-2px);
    }
    
    .shimmer-effect {
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
      background-size: 1000px 100%;
      animation: shimmer 2s linear infinite;
    }
    
    .focus-ring:focus-visible {
      outline: 2px solid #A855F7;
      outline-offset: 2px;
    }
    
    .btn-accessible {
      min-height: 44px;
      min-width: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    
    /* 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;
      }
    }

    @media (max-width: 768px) {
  #coroa {
    display: none;
  }
}