#top-palestrante{
  background-image: url("../images/bg_palestrante.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 470px;
}

/* ORÇAMENTOS */

#orcamento{
  background-color: var(--color-black);
  color: var(--color-primary);
  padding-top: 100px;
  padding-bottom: 100px;
  font-size: 1.5rem;
  max-width: 800px;
  margin: auto;
}
#orcamento .orcamento-titulo{
  font-size: 2.3rem;
  margin-left: 20px;
  line-height: 45px;
  font-weight: 450;
}
#orcamento form{
  margin-top: 30px
}
#orcamento .form-control {
    font-size: 1.3rem;
    font-weight: 400;
    padding: .7rem 1.9rem;
    border: 1px solid #242424;
    border-radius: 12px;
}

#orcamento .form-control:focus,
#orcamento .form-check-input:focus{
  border-color: rgb(110, 110, 110) ;
  box-shadow: 0 0 0 .25rem rgba(110, 110, 110, 0.25);
}
#orcamento .form-check-input {
  width: 1em;
  height: 1em;
  border: 1px solid #242424;
}
#orcamento .form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
#orcamento .btn {
    background-color: var(--color-primary);
    color: var(--color-black);
    border: 1px solid var(--color-primary);
    padding: 10px 30px;
    font-size: 1.7rem;
    font-weight: 450;
}

@media (max-width: 768px){
  #orcamento{
    max-width: 700px;
  }
  #orcamento .orcamento-titulo {
    font-size: 1.9rem;
    line-height: 35px;
  }
  #orcamento .form-control {
    font-size: 1.5rem;
    padding: .6rem 1.2rem;
  }
  #orcamento .form-options,
  #orcamento .btn{
    font-size: 1.5rem;
  } 
}
@media (max-width: 425px){
  #orcamento{
    max-width: 320px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  #orcamento .orcamento-titulo {
    font-size: 1.6rem;
    line-height: 30px;
  }
  #orcamento .form-control {
    font-size: 1rem;
    padding: .3rem 1rem;
  }
  #orcamento .form-options,
  #orcamento .btn{
    font-size: 1.3rem;
    width: 100%;
  } 
}
/* FIM ORÇAMENTOS */