  .input-icon {
      position: relative;
  }

  .input-icon>i {
      position: absolute;
      right: 10px;
      top: 15px;
  }

  .input-icon>.form-control {
      padding-left: 30px;
      /* Ajuste esse valor conforme necessário */
  }

  /* Filter Card Styling */
  .search-filter {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.2);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .search-filter:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  }

  .card-header {
      background: linear-gradient(45deg, #00c4e0, #007a99);
      color: white;
      padding: 20px;
      border-bottom: none;
  }

  .card-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 0.05em;
  }

  /* Input Styling */
  .filter-widget {
      margin-bottom: 20px;
  }

  .input-icon {
      position: relative;
  }

  .input-icon i {
      position: absolute;
      top: 50%;
      left: 15px;
      transform: translateY(-50%);
      color: #007a99;
      font-size: 1.2rem;
  }

  .form-control {
      border-radius: 10px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      padding: 12px 20px 12px 45px;
      background: rgba(255, 255, 255, 0.9);
      transition: all 0.3s ease;
      font-size: 0.95rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .form-control:focus {
      border-color: #00c4e0;
      box-shadow: 0 0 10px rgba(0, 196, 224, 0.3);
      background: white;
  }

  /* Checkbox Styling */
  .custom_check {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
      cursor: pointer;
      font-size: 0.95rem;
      color: #003b4d;
      font-weight: 500;
      transition: all 0.3s ease;
  }

  .custom_check:hover {
      color: #00c4e0;
  }

  .custom_check input {
      display: none;
  }

  .checkmark {
      width: 20px;
      height: 20px;
      border: 2px solid #007a99;
      border-radius: 5px;
      margin-right: 10px;
      position: relative;
      transition: all 0.3s ease;
  }

  .custom_check input:checked+.checkmark {
      background: linear-gradient(45deg, #00c4e0, #007a99);
      border-color: #007a99;
  }

  .custom_check input:checked+.checkmark::after {
      content: '\f00c';
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      color: white;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 12px;
  }

  /* Button Styling */
  .btn-search .buscar_empresa {
      background: linear-gradient(45deg, #ff6f61, #ff3d00);
      color: white;
      border: none;
      border-radius: 25px;
      padding: 12px;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .btn-search .buscar_empresa:hover {
      background: linear-gradient(45deg, #ff3d00, #d32f2f);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255, 61, 0, 0.4);
  }

  .btn-search .buscar_empresa::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: all 0.5s ease;
  }

  .btn-search .buscar_empresa:hover::before {
      left: 100%;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .search-filter {
          margin-bottom: 30px;
      }

      .card-header {
          padding: 15px;
      }

      .card-title {
          font-size: 1.3rem;
      }

      .form-control {
          padding: 10px 15px 10px 40px;
          font-size: 0.9rem;
      }

      .input-icon i {
          font-size: 1.1rem;
          left: 12px;
      }

      .custom_check {
          font-size: 0.9rem;
      }

      .checkmark {
          width: 18px;
          height: 18px;
      }

      .btn-search .buscar_empresa {
          padding: 10px;
          font-size: 0.9rem;
      }
  }

  @media (max-width: 576px) {
      .card-header {
          padding: 12px;
      }

      .card-title {
          font-size: 1.2rem;
      }

      .form-control {
          padding: 8px 12px 8px 35px;
          font-size: 0.85rem;
      }

      .input-icon i {
          font-size: 1rem;
          left: 10px;
      }
  }

  /* Animations */
  @keyframes slideInLeft {
      from {
          opacity: 0;
          transform: translateX(-20px);
      }

      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  .search-filter {
      animation: slideInLeft 0.5s ease-out;
  }

  /* ===== CHAT ASSISTANT STYLES ===== */
  .chat-assistant {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 9999;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }

  /* Floating Button */
  .chat-toggle {
      width: 60px;
      height: 60px;
      background: linear-gradient(45deg, #00c4e0, #007a99);
      border-radius: 50%;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
  }

  .chat-toggle:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  }

  .chat-toggle::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: all 0.5s ease;
  }

  .chat-toggle:hover::before {
      left: 100%;
  }

  .chat-toggle i {
      color: white;
      font-size: 24px;
      transition: all 0.3s ease;
  }

  .chat-toggle.active i.fa-robot {
      transform: rotate(360deg) scale(0);
  }

  .chat-toggle.active i.fa-times {
      transform: rotate(0deg) scale(1);
  }

  .chat-toggle i.fa-times {
      position: absolute;
      transform: rotate(-360deg) scale(0);
  }

  /* Notification Badge */
  .notification-badge {
      position: absolute;
      top: -8px;
      right: -8px;
      background: #ff6f61;
      color: white;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: bold;
      animation: pulse 2s infinite;
  }

  @keyframes pulse {
      0% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.1);
      }

      100% {
          transform: scale(1);
      }
  }

  /* Chat Window */
  .chat-window {
      position: absolute;
      bottom: 80px;
      right: 0;
      width: 350px;
      height: 500px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transform: translateY(30px) scale(0.8);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      overflow: hidden;
  }

  .chat-window.active {
      transform: translateY(0) scale(1);
      opacity: 1;
      visibility: visible;
  }

  /* Chat Header */
  .chat-header {
      background: linear-gradient(45deg, #00c4e0, #007a99);
      color: white;
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 15px;
      border-bottom: none;
  }

  .chat-avatar {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
  }

  .chat-info h4 {
      margin: 0;
      font-size: 1.2rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
  }

  .chat-info p {
      margin: 5px 0 0;
      font-size: 12px;
      opacity: 0.9;
  }

  .status-dot {
      width: 8px;
      height: 8px;
      background: #2ed573;
      border-radius: 50%;
      display: inline-block;
      margin-right: 5px;
      animation: blink 2s infinite;
  }

  @keyframes blink {

      0%,
      50% {
          opacity: 1;
      }

      51%,
      100% {
          opacity: 0.3;
      }
  }

  /* Chat Body */
  .chat-body {
      height: 320px;
      padding: 20px;
      overflow-y: auto;
      background: rgba(255, 255, 255, 0.05);
  }

  .chat-body::-webkit-scrollbar {
      width: 4px;
  }

  .chat-body::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.1);
  }

  .chat-body::-webkit-scrollbar-thumb {
      background: #00c4e0;
      border-radius: 4px;
  }

  .welcome-message {
      background: rgba(255, 255, 255, 0.9);
      padding: 15px;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      position: relative;
  }

  .welcome-message::before {
      content: '';
      position: absolute;
      top: 10px;
      left: -8px;
      width: 0;
      height: 0;
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      border-right: 8px solid rgba(255, 255, 255, 0.9);
  }

  .welcome-message h5 {
      color: #007a99;
      margin: 0 0 8px;
      font-size: 14px;
      font-weight: 600;
  }

  .welcome-message p {
      margin: 0;
      color: #003b4d;
      font-size: 13px;
      line-height: 1.4;
  }

  .typing-indicator {
      display: none;
      padding: 10px 0;
      color: rgba(255, 255, 255, 0.7);
      font-style: italic;
      font-size: 12px;
  }

  .typing-dots {
      display: inline-flex;
      gap: 3px;
      margin-left: 5px;
  }

  .typing-dots span {
      width: 4px;
      height: 4px;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 50%;
      animation: typing 1.4s infinite;
  }

  .typing-dots span:nth-child(2) {
      animation-delay: 0.2s;
  }

  .typing-dots span:nth-child(3) {
      animation-delay: 0.4s;
  }

  @keyframes typing {

      0%,
      60%,
      100% {
          transform: translateY(0);
      }

      30% {
          transform: translateY(-10px);
      }
  }

  /* Chat Input */
  .chat-input {
      padding: 15px;
      background: rgba(255, 255, 255, 0.1);
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      gap: 10px;
      align-items: flex-end;
  }

  .message-input {
      flex: 1;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      padding: 12px 20px;
      font-size: 0.95rem;
      resize: none;
      max-height: 80px;
      min-height: 20px;
      outline: none;
      background: rgba(255, 255, 255, 0.9);
      transition: all 0.3s ease;
      font-family: inherit;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .message-input:focus {
      border-color: #00c4e0;
      box-shadow: 0 0 10px rgba(0, 196, 224, 0.3);
      background: white;
  }

  .send-button {
      background: linear-gradient(45deg, #ff6f61, #ff3d00);
      color: white;
      border: none;
      border-radius: 25px;
      padding: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .send-button:hover {
      background: linear-gradient(45deg, #ff3d00, #d32f2f);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255, 61, 0, 0.4);
  }

  .send-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: all 0.5s ease;
  }

  .send-button:hover::before {
      left: 100%;
  }

  .send-button:disabled {
      background: #ccc;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
  }

  .send-button:disabled::before {
      display: none;
  }

  /* Quick Actions */
  .quick-actions {
      padding: 10px 20px 0;
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
  }

  .quick-action {
      background: rgba(255, 255, 255, 0.2);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 15px;
      padding: 6px 12px;
      font-size: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      backdrop-filter: blur(5px);
  }

  .quick-action:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  /* Message Bubbles */
  .message-bubble {
      max-width: 80%;
      padding: 12px 15px;
      border-radius: 10px;
      font-size: 13px;
      line-height: 1.4;
      position: relative;
      margin-bottom: 15px;
  }

  .message-bubble.user {
      background: linear-gradient(45deg, #00c4e0, #007a99);
      color: white;
      margin-left: auto;
      border-bottom-right-radius: 5px;
  }

  .message-bubble.assistant {
      background: rgba(255, 255, 255, 0.9);
      color: #003b4d;
      border-bottom-left-radius: 5px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  /* Responsive Design for Chat */
  @media (max-width: 768px) {
      .chat-window {
          width: 320px;
          height: 450px;
      }
  }

  @media (max-width: 480px) {
      .chat-assistant {
          bottom: 15px;
          right: 15px;
      }

      .chat-window {
          width: calc(100vw - 30px);
          right: -15px;
          height: 400px;
      }

      .chat-toggle {
          width: 55px;
          height: 55px;
      }

      .chat-toggle i {
          font-size: 22px;
      }
  }

  /* Animations */
  .chat-assistant {
      animation: slideInLeft 0.5s ease-out;
  }