 /* Configuração geral */
 body {
    font-family: 'Raleway', sans-serif;
    background-color: #f4f4f4;
    color: #333;
  }

  /* Estilização do Hero */
  #hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }

  #hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  #hero .container {
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
  }

  /* Botão personalizado */
  .btn-custom {
    background-color: #622599;
    color: #fff;
    border: none;
    width: 60vw;
    height: 60px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
  }

  .btn-custom:hover {
    background-color: #4e1d7a;
    color: #fff;
  }

  /* Formulário estilizado */
  .container form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
  }

  /* Estilização dos inputs */
  .form-control,
  .form-select {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 10px;
  }

  /* .form-select:disabled {
    color: black !important;
    background-color: #f0f0f0 !important; /* Opcional para melhorar a visibilidade 
    opacity: 1 !important; /* Evita que o texto fique acinzentado 
    -webkit-text-fill-color: black !important; /* Garante compatibilidade com WebKit (Chrome, Safari) */

  .form-label {
    font-weight: bold;
    color: #622599;
  }

        .btn-custom {
          background-color: #622599;
          color: #fff;
          border: none;
          width: 60vw;
          /* 60% da largura da tela */
          height: 60px;
          /* Altura maior */
          font-size: 1.2rem;
          /* Texto maior */
          display: flex;
          align-items: center;
          justify-content: center;
          text-decoration: none;
        }

        .btn-custom:hover {
          background-color: #4e1d7a;
          color: #fff;
        }
        .nav-tabs .nav-link {
          text-decoration: none;
          color: #4e1d7a;
          border: none;
          padding: 10px 15px;
      }
      
      .nav-tabs .nav-link:hover {
          background-color:rgb(129, 64, 185);
          color: #fff;
          border-radius: 5px;
      }
      
      .nav-tabs .nav-link.active {
          background-color: #4e1d7a;
          color: #fff;
          border-radius: 5px;
      }
      #scoutRama:disabled {
        color: #4e1d7a !important;
        font-color: #4e1d7a !important;
        background-color: #f0f0f0 !important; /* Opcional para melhorar a visibilidade */
        opacity: 1 !important; /* Evita que o texto fique acinzentado */
        -webkit-text-fill-color: black !important; /* Garante compatibilidade com WebKit (Chrome, Safari) */
    }
    