  
 /* Personalize o botão de fechar */
 .close {
    color: #aaa;
    opacity: 1;
  }

  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    opacity: 0.7;
  }

  /* Estilos personalizados para o modal */
  .modal-header {
    color: white;
  }

  .modal-title {
    margin: auto;
  }

  .modal-body {
    padding: 2rem;
  }

  .modal-content {
    border-radius: 10px;
    overflow: hidden;
  }

  /* Animação de deslizamento */
  .modal.right .modal-dialog {
    position: fixed;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s ease-out;
  }

  .modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
  }

  .modal.right.show .modal-dialog {
    transform: translate3d(0, 0, 0);
  }

  /* Garantir que o modal esteja acima de tudo */
  .modal {
    z-index: 1050;
  }

  .modal-backdrop {
    z-index: 1040;
  }

  .navbar {
    z-index: 1030;
  }

  /* Estilos personalizados para o formulário dentro do modal */
  .form-container {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }

  .form-container h5 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: bold;
    color: #007bff;
  }

  .form-container .form-group {
    margin-bottom: 1.5rem;
  }

  .form-container label {
    font-weight: bold;
    color: #333;
  }

  .form-container .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
  }

  .form-container .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
  }

  /* Estilos para os botões na seção hero */
  .hero_btn-container {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 20px;
  }

  .hero_btn-container .btn {
    padding: 10px 20px;
    font-size: 12px;
    border-radius: 10px;
    border: 2px solid #FEC913;
    background: transparent;
    color: #FEFEFF;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .hero_btn-container .btn:hover {
    background: yellow;
    color: #333;
  }
  .msg {
    padding: 10px 20px;
    font-size: 12px;
    border-radius: 10px;
    border: 2px solid #FEC913;
    background: transparent;
    color: #082465;
    text-align:center;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
  }