/* Aplica sobreposição escura e desfoque no fundo */
.popup-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .popup {
    background-color: #2b120c;
    color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    width: 400px;
    max-width: 90%;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  /* Botão de fechar */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 14px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
  }
  
  /* Inputs e botão de envio */
  .popup input,
  .popup button[type="submit"] {
    display: block;
    width: 100%;
    margin: 12px 0;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
  }
  
  .popup input {
    background-color: #4a2a1a;
    color: #fff;
  }
  
  .popup input::placeholder {
    color: #ccc;
  }
  
  .popup button[type="submit"] {
    background-color: #a32020;
    color: white;
    font-weight: bold;
    cursor: pointer;
  }
  
  .popup h2 {
    margin-bottom: 1rem;
    color: #f5f5f5;
  }
  
  /* Animação de entrada */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .popup-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .popup-title h2 {
    font-size: 1.4rem;
    margin: 0;
  }
  
  .popup-logo {
    width: 44px;
    height: 44px;
  }
  
