  @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Poppins:wght@300;400;500;600&display=swap');

  :root {
      --bs-dark: #0a0a0a;
      --bs-dark-light: #1a1a1a;
      --bs-secondary: #45be6c;
      --bs-secondary-light: #57f287;
      --bs-info: #b5b5b5;
      --bs-gold: #dfc947;
      --bs-gold-light: #fee75c;
      --bs-secondary-light: #57f287;
  }

  .grain {
      z-index: 99;
      opacity: 0.04;
      pointer-events: none;
      mix-blend-mode: normal;
      background-image: url("images/grain-slow.gif");
      background-position:
          0 0;
      background-repeat: repeat;
      background-size: auto;
      background-attachment: fixed;
      display: block;
      position: fixed;
      top: 0%;
      bottom: 0%;
      left: 0%;
      right: 0%;
  }

  @keyframes pulse-glow {

      0%,
      100% {
          box-shadow: 0 0 8px #4ec77366, 0 0 16px #4ec77333, 0 0 24px #4ec77322;
      }

      50% {
          box-shadow: 0 0 12px #4ec773cc, 0 0 24px #4ec77399, 0 0 36px #4ec77366;
      }
  }
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
            margin: 60px 0;
        }

  .animate-pulse-glow {
      animation: pulse-glow 2.5s infinite ease-in-out;
  }

  .hover\\:shadow-glow:hover {
      box-shadow: 0 0 16px #4ec773cc, 0 0 32px #4ec77399, 0 0 48px #4ec77366;
  }

  #contactText,
  .contact-method-content {
      word-break: normal;
      overflow-wrap: anywhere;
      hyphens: none;
  }

  .contact-method-content a,
  .contact-method-content span {
      display: inline-block;
      vertical-align: middle;
      max-width: 100%;
      word-break: break-word;
      overflow-wrap: anywhere;
      hyphens: none;
  }

  .faq-question i.fas.fa-chevron-down {
      transition: transform 0.3s ease;
  }

  .faq-item.active .faq-question i.fas.fa-chevron-down {
      transform: rotate(180deg);
  }


  select option {
   
     color: white
  }

  .font-orbitron {
      font-family: 'Orbitron', sans-serif;
  }

  body {
      font-family: 'Exo 2', sans-serif;
      background: #080808;
      background: radial-gradient(circle at 10% 20%, #0f1a0f, #080808 60%);
      min-height: 100vh;
      color: #e0e0e0;
      overflow-x: hidden;
      background-attachment: fixed;
      background-color: var(--bs-dark);
  }

  @supports not (background: radial-gradient(circle, #0f1a0f, #080808)) {
      body {
          background: linear-gradient(to bottom, #0f1a0f, #080808);
      }
  }

  .glass-effect {
      background: rgba(30, 30, 30, 0.5);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }

  @supports not (backdrop-filter: blur(12px)) {
      .glass-effect {
          background: rgba(30, 30, 30, 0.8);
      }
  }

  .glass-light {
      background: rgba(40, 40, 40, 0.6);
  }

  .text-gradient {
      background: linear-gradient(90deg, #4ec773, #6cd98f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .btn-primary {
      background: linear-gradient(135deg, #4ec7737a, #3a9d5cbd);
      transition: all 0.3s ease;
  }

  .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(78, 199, 115, 0.4);
  }

  .grid-pattern {
      background-image:
          linear-gradient(rgba(78, 199, 115, 0.05) 1px, transparent 1px),
          linear-gradient(90deg, rgba(78, 199, 115, 0.05) 1px, transparent 1px);
      background-size: 40px 40px;
  }

  .pulse {
      animation: pulse 2s infinite;
  }

  @keyframes pulse {
      0% {
          box-shadow: 0 0 0 0 rgba(78, 199, 115, 0.7);
      }

      70% {
          box-shadow: 0 0 0 10px rgba(78, 199, 115, 0);
      }

      100% {
          box-shadow: 0 0 0 0 rgba(78, 199, 115, 0);
      }
  }

  /* .fade-in {
      animation: fadeIn 0.8s ease-in;
  } */

  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

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

  textarea {
      resize: none;
  }

  .link-highlight {
      position: relative;
      display: inline-block;
  }

.status-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #555, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .status-item:hover::after {
    opacity: 1;
  }
  .link-highlight::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: #4ec773;
      transition: width 0.3s ease;
  }

  .link-highlight:hover::after {
      width: 100%;
  }

  input,
  textarea,
  select {
      transition: all 0.3s ease;
      background: rgba(40, 40, 40, 0.7);
  }

  .neon-button:hover {
      color: #4ec773;
      border-color: #4ec773;
      box-shadow:
          0 0 5px #4ec77388,
          0 0 10px #4ec773aa,
          0 0 20px #4ec773cc;
      transform: scale(1.03);
  }

  input:focus,
  textarea:focus,
  select:focus {
      border-color: #4ec773 !important;
      box-shadow: 0 0 0 3px rgba(78, 199, 115, 0.2);
  }

  .tab-btn {
      background: rgba(40, 40, 40, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 8px 16px;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .tab-btn.active {
      background: linear-gradient(135deg, #4ec773, #3a9d5c);
      border-color: #3a9d5c;
  }

  /* Animações */
  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(-5px);
      }

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

  .animate-fadeIn {
      animation: fadeIn 0.3s ease-out;
  }

  /* Efeito de skeleton loading */
  .skeleton {
      animation: skeleton-loading 1s linear infinite alternate;
  }

  @keyframes skeleton-loading {
      0% {
          background-color: hsl(200, 20%, 20%);
      }

      100% {
          background-color: hsl(200, 20%, 30%);
      }
  }

  /* Transições suaves */
  .transition-all {
      transition-property: all;
  }

  .duration-200 {
      transition-duration: 200ms;
  }

  .duration-300 {
      transition-duration: 300ms;
  }

  /* Espaçamento para os métodos de contato */
  .space-y-2>*+* {
      margin-top: 0.5rem;
  }

  .space-y-3>*+* {
      margin-top: 0.75rem;
  }

  /* Estilo do glass morphism */
  .bg-glass {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
  }

  .border-glass-border {
      border-color: rgba(255, 255, 255, 0.1);
  }

  .md-c {
      padding: 0.5rem 1rem;
      border-radius: 10px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--bs-info);
      transition: all 0.3s ease;
      cursor: pointer;
  }

  .language-toggle {
      position: relative;
      display: inline-block;
      width: 80px;
      height: 40px;
  }

  .language-toggle input {
      opacity: 0;
      width: 0;
      height: 0;
  }


  .language-slider {
      padding: 0.5rem 1rem;
      border-radius: 20px;
      background: rgba(26, 26, 26, 0.49);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--bs-info);
      transition: all 0.3s ease;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      position: absolute;
      transition: .4s;
  }

  .language-slider:before {
      position: absolute;
      content: "";
      height: 30px;
      width: 28px;
      left: 5px;
      bottom: 4px;
      background-color: rgba(255, 255, 255, 0.1);
      transition: .4s;
      border-radius: 10px 5px 5px 10px;
  }


  input:checked+.language-slider:before {
      transform: translateX(40px);
      border-radius: 5px 10px 10px 5px;
  }

  .language-labels {
      position: absolute;
      top: 10px;
      font-size: 14px;
      font-weight: bold;
      pointer-events: none;
  }


  .language-label-pt {
      left: 10px;
      color: #4ec773;
  }

  .language-label-en {
      right: 10px;
      color: #a0aec0;
  }


  input:checked~.language-label-pt {
      color: #a0aec0;
  }

  input:checked~.language-label-en {
      color: #4ec773;
  }

  .faq-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .faq-question {
      cursor: pointer;
      padding: 20px 0;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      color: #b0b0b0;
  }

  .tab i {
      margin: 0 5px 0 0;
  }

  .faq-answer-content {
      padding: 0 0 20px 0;
  }

  .faq-item.active .faq-answer {
      max-height: 3000px;
  }

  .feature-card {
      transition: all 0.3s ease;
  }

  .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .faq-icon {
      width: 24px;
      height: 24px;
      background: rgba(78, 199, 115, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 12px;
      flex-shrink: 0;
  }

  .faq-question-content {
      display: flex;
      align-items: center;
  }

  .input-highlight {
      transition: all 0.3s ease;
  }

  .input-highlight:focus-within {
      transform: translateY(-2px);
  }

  .copy-success {
      animation: copyPulse 1s ease;
  }

  html {
      scroll-behavior: smooth;
  }

  @keyframes copyPulse {
      0% {
          background: linear-gradient(135deg, #3a9d5c, #4ec773);
      }

      50% {
          background: linear-gradient(135deg, #2e8b57, #3a9d5c);
      }

      100% {
          background: linear-gradient(135deg, #4ec773, #3a9d5c);
      }
  }

  .warn {
      color: #f8e789
  }

  .phishing {
      color: #f88989;
  }

  .card-glow {
      box-shadow: 0 0 20px rgba(78, 199, 115, 0.2);
  }

  .contact-info {
      background: rgba(30, 30, 30, 0.7);
      border-radius: 12px;
      padding: 15px;
      margin-top: 10px;
      border-left: 4px solid #4ec773;
  }

  .contact-info a {
      color: #8ad4ff;
      text-decoration: none;
      transition: all 0.3s ease;


  }

  .contact-info a:hover {
      text-decoration: underline;
  }

  .detected {
      animation: highlight 0.5s ease;
  }

  .contact-info {
      background: rgba(30, 30, 30, 0.7);
      border-radius: 12px;
      padding: 15px;
      margin-top: 10px;
      border-left: 4px solid #4ec773;
      overflow-wrap: break-word;
      word-wrap: break-word;
      word-break: break-all;
  }

  .contact-info a {
      color: #8ad4ff;
      text-decoration: none;
      transition: all 0.3s ease;

      max-width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
  }

  .contact-methods {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 8px;
  }

  .contact-method {
      display: flex;
      align-items: flex-start;
  }

  .contact-method i {
      margin-right: 8px;
      margin-top: 2px;
      flex-shrink: 0;
  }



  .contact-method-content {
      flex: 1;
      min-width: 0;
  }

  @keyframes highlight {
      0% {
          background: rgba(78, 199, 115, 0.2);
      }

      100% {
          background: rgba(40, 40, 40, 0.7);
      }
  }

  /* Novo estilo para as abas */
  .tab-container {
      position: relative;
      display: flex;
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      overflow: hidden;
      /* Importante para conter o glider */
  }

  .tab {
      border-radius: 10px 10px 0 0;
      padding: 10px 20px;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .tab:hover {
      background: rgba(78, 199, 115, 0.1);
  }

  .tab.active {
      color: var(--bs-secondary-light);
      border-radius: 10px 10px 0 0;
      background: rgb(78 199 115 / 11%);

  }

  .tab-content {
      display: none;
  }

  .tab-content.active {
      display: block;
      animation: fadeIn 0.3s ease-out;
  }

  .glider {
      position: absolute;
      bottom: -1px;
      height: 3px;
      background: linear-gradient(to right,
              transparent,
              var(--bs-secondary-light),
              transparent);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1;
      width: 0;
      left: 0;
      opacity: 0;
      transform-origin: left center;
      border-radius: 3px;
  }

  /* Estilos para o menu de sugestão */
  .suggestion-menu {
      width: 100%;
      max-height: 300px;
      /* Aumentei a altura máxima */
      overflow-y: auto;
      background: rgba(50, 50, 50, 0.13);
      /* Fundo mais opaco */
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 0 0 8px 8px;
      z-index: 100;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
      display: none;
      backdrop-filter: blur(10px);
      /* Efeito de blur */
      transition: all 0.3s ease;
      border-radius: 5px 5px;
      margin-top: 10px;
  }

  .suggestion-item {
      padding: 10px 15px;
      /* Mais espaçamento */
      cursor: pointer;
      transition: all 0.2s;
      font-size: 14px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
  }
  .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-in.appear {
      opacity: 1;
      transform: translateY(0);
  }

  .suggestion-item:last-child {
      border-bottom: none;
  }

  .suggestion-item:hover {
      background-color: rgba(78, 199, 115, 0.25);
  }

  .suggestion-item.highlighted {
      background-color: rgba(78, 199, 115, 0.35);
  }

  /* Scrollbar personalizada */
  .suggestion-menu::-webkit-scrollbar {
      width: 8px;
  }

  .suggestion-menu::-webkit-scrollbar-track {
      background: rgba(30, 30, 30, 0.5);
  }

  .suggestion-menu::-webkit-scrollbar-thumb {
      background-color: rgba(78, 199, 115, 0.5);
      border-radius: 4px;
  }

  .input-with-suggestions {
      position: relative;
  }

  /* Scrollbar personalizada */
  ::-webkit-scrollbar {
      width: 4px;
      height: 4px;
  }

  ::-webkit-scrollbar-track {
      border-radius: 2em;
  }

  ::-webkit-scrollbar-thumb {
      background-color: #2a6e3f9e;
      border-radius: 2em;
  }

  ::-webkit-scrollbar-thumb:hover {
      background: #57f287;
  }

  @media (max-width: 767px) {
      .faq-item.active .faq-answer {
          max-height: 5000px;
      }
  }
