.info-box-content-box{
  width:100%;
  /*max-width:100%;*/
  /*z-index:1;*/
  position:relative;
  color:#fff;
  box-sizing:border-box;
}

.info-box-content-box h1, .info-box-content-box h2 {
    font-size: 38px;
    color: #fff;
    margin-top:0;
    line-height:1.2em;
    margin-bottom:10px;
}

.info-box-content-box p {
    font-size: 18px;
    line-height: 1.4em;
    margin: 0;
}

a.info-box-btn {
    color: #fff;
    background: #2e3c4f;
    border-radius: 50px;
    padding: 12px 25px;
    display: flex;
    width: fit-content;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.2s linear all;
    margin-top: 30px;
    cursor:pointer;
    align-items:center;
}

a.info-box-btn:hover {
}

a.info-box-btn svg{
  transition:0.2s linear all;
  height: 16px;
  margin-right: 10px;
}

span.btn-legend {
    font-size: 14px;
}


/* MODAL */
/* Estilo para esconder o modal inicialmente */
.modal {
  display: none; /* Oculta por padrão */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Conteúdo do modal */
.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Botão de fechar */
{#.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}#}



/* FORM */
.modal-form-box {
    width: 350px;
    max-width: 100%;
}

form, .form-title {
    background: transparent;
}

.modal-form-box span, .modal-form-box p, .modal-form-box label {
    font-size: 14px;
    color: #34445a !important;
}

.modal-form-box form input, .modal-form-box form select {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin: 10px 0;
    color: #34445a;
}

input.hs-button.primary.large {
    background: #34445a;
    color: #fff;
    font-size: 16px;
    padding: 15px;
    transition: 0.2s linear all;
    cursor: pointer;
}


input.hs-button.primary.large:hover {
    background: #000;
}

ul.no-list.hs-error-msgs.inputs-list {
    padding: 0;
    list-style: none;
    margin: 0 0 16px;
}

label.hs-error-msg.hs-main-font-element {
    color: #d00 !important;
    font-size: 10px;
}
/* FORM */



@media (max-width: 768px) {
  .info-box-content-box h1, .info-box-content-box h2 {
    font-size: 36px;
  }
}