 :root { --radius: 16px; }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    
    .gradient-text {
      background: linear-gradient(135deg, #EAB308 0%, #B45309 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .luxury-card {
      background: linear-gradient(135deg, rgba(234, 179, 8, 0.05) 0%, rgba(180, 83, 9, 0.03) 100%);
      border: 1px solid rgba(234, 179, 8, 0.1);
      transition: all 0.3s ease;
    }
    
    .luxury-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      border-color: rgba(234, 179, 8, 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-elegant {
      box-shadow: 0 4px 14px 0 rgba(234, 179, 8, 0.2);
      transition: all 0.3s ease;
    }
    
    .btn-elegant:hover {
      box-shadow: 0 6px 20px rgba(234, 179, 8, 0.3);
      transform: translateY(-2px);
    }
    
    .focus-ring:focus-visible {
      outline: 2px solid #EAB308;
      outline-offset: 2px;
    }
    
    .btn-accessible {
      min-height: 44px;
      min-width: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    
    .shine-effect {
      position: relative;
      overflow: hidden;
    }
    
    .shine-effect::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
      );
      transform: rotate(30deg);
      transition: all 0.6s;
    }
    
    .shine-effect:hover::after {
      left: 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;
      }
    }


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