/*---------------------------------------------*/
input, textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder,
input:focus:-moz-placeholder,
input:focus::-moz-placeholder,
input:focus:-ms-input-placeholder,
textarea:focus::-webkit-input-placeholder,
textarea:focus:-moz-placeholder,
textarea:focus::-moz-placeholder,
textarea:focus:-ms-input-placeholder {
  color: transparent;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #888;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #888;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #888;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #888;
}

/*---------------------------------------------*/
.bg-contact100 {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* Fundo com leve sobreposição em azul royal translúcido */
.container-contact100 {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: rgba(13, 71, 161, 0.9); /* Azul Royal */
}

/* Caixa branca de conteúdo */
.wrap-contact100 {
  width: 1163px;
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 110px 130px 157px 148px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/*------------------------------------------------------------------*/
.contact100-pic {
  width: 310px;
  padding-top: 55px;
}
.contact100-pic img {
  max-width: 100%;
}

.bg-royal {
  background-color: #0D47A1;
}

/*------------------------------------------------------------------*/
.contact100-form {
  width: 390px;
}

.contact100-form-title {
  display: block;
  font-family: 'Work Sans', sans-serif;
  font-size: 24px;
  color: #0D47A1; /* Azul Royal */
  line-height: 1.2;
  text-align: left;
  padding-bottom: 36px;
  border-bottom: 2px solid #FFD700; /* Linha dourada */
}

/*---------------------------------------------*/
input.input100, textarea.input100, .selectao {
  border-radius: 25px;
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  color: #0D47A1;
  background: #e6f0ff; /* Azul claro bem suave */
  border: 1px solid #2196F3;
  padding: 14px 30px;
}

input.input100:focus, textarea.input100:focus {
  background: #ffffff;
  border: 1px solid #FFD700; /* Foco dourado */
}

/*---------------------------------------------*/
.radio {
  font-size: 14px;
  color: #0D47A1;
}

.custom-radio {
  position: absolute;
  opacity: 0;
}
.custom-radio + label {
  cursor: pointer;
  color: #0D47A1;
}
.custom-radio + label:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  margin-right: 0.3em;
  background: #fff;
  border: 1px solid #2196F3;
  border-radius: 50%;
}
.custom-radio:checked + label:before {
  background: #FFD700;
}

.focus-input100 {
  display: block;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

/*------------------------------------------------------------------*/
.symbol-input100 {
  display: flex;
  align-items: center;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  pointer-events: none;
  color: #2196F3; /* Azul claro */
  font-size: 15px;
  transition: all 0.4s;
}

.input100:focus + .focus-input100 + .symbol-input100 {
  color: #FFD700;
  padding-left: 22px;
}

/*------------------------------------------------------------------*/
.container-contact100-form-btn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
}

.contact100-form-btn {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background-color: #0D47A1; /* Azul Royal */
  border: 2px solid #FFD700; /* Borda dourada */
  color: #FFFFFF;
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  transition: all 0.4s;
}

.contact100-form-btn:hover {
  background-color: #2196F3; /* Azul claro */
  border-color: #FFD700;
  color: #FFFFFF;
}

/*------------------------------------------------------------------*/
.alert-validate::before {
  background-color: #FFFFFF;
  border: 1px solid #FFD700;
  color: #0D47A1;
}
.alert-validate::after {
  color: #FFD700;
}
