.gavs-header {
  height: 300px;
  overflow: hidden;
  position: relative;
}
  
.gavs-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

form input,
form textarea {
  border-radius: 8px;
  box-shadow: none;
}

form button {
  border-radius: 8px;
}

textarea {
  resize: vertical;
  overflow-y: auto;
  max-height: 150px;
}

.text-primary {
  color: #FF6A00 !important;
}

.btn-laranja {
  background-color: #FF6A00;
  color: white;
  border: none;
}

.btn-laranja:hover {
  background-color: #e55e00;
  color: white;
}

.btn-outline-laranja {
  color: #FF6A00;
  border: 2px solid #FF6A00;
  background-color: transparent;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(255, 106, 0, 0.3);
}

.btn-outline-laranja:hover {
  background-color: #FF6A00;
  color: #fff;
  box-shadow: 0 6px 12px rgba(255, 106, 0, 0.5);
  transform: translateY(-2px);
}

form input:focus,
form textarea:focus,
.form-range:focus {
  border-color: #FF6A00 !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 106, 0, 0.25) !important;
  outline: none !important;
}

/* Estilo base para checkbox */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid #FF6A00;
  border-radius: 6px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: relative;
  outline: none;
  transition: all 0.2s ease-in-out;
}

/* Quando está marcado */
input[type="checkbox"]:checked {
  background-color: #FF6A00;
  border-color: #FF6A00;
}

.text-laranja {
  color: #FF6A00 !important;
}

.text-laranja:hover {
  text-decoration: underline;
}

hr {
  border: none;
  height: 4px;                /* Espessura da linha */
  background:#ff6a00; /* Gradiente laranja */
  border-radius: 2px;
  margin: 2rem auto;
  width: 67%;                 /* Largura da linha */
}

.texto{
  font-size: 20px;
}

#mensagemEnviada {
  display: none;
}
