/* Breadcrumbs */
#breadcrumbs {
  padding: 100px 0 0 0;
  background-color: #eeedf9;
}
#breadcrumbs .page-title {
  color: #1B3A69;  
  font-family: var(--font-BaksoSapi);
  font-size: 50px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}
#breadcrumbs .page-desc {
  max-width: 810px;
  color: #00376A;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin: 0 auto;
}
#breadcrumbs .page-desc a {
  color: #00376A;
}




#content {
  padding: 50px 0 100px 0;
  background-color: #eeedf9;
}

.form-control-custom {
  background-color: #ffffff;
  border: none;
  border-radius: 50px;
  height: 55px;
  padding: 10px 30px;
  color: #00376A;
  font-size: 18px;
  font-weight: 400;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.03) 0 4px 10px;
  transition: all 0.2s ease-in-out;
}

.form-control-custom.--textarea {
  border-radius: 20px;
  height: 180px;
  padding: 20px 30px;
  resize: none;
}

.form-control-custom::placeholder {
  color: #B2B2CC;
  opacity: 1;
}

.form-control-custom:focus {
  outline: none;
  box-shadow: rgba(148, 75, 150, 0.2) 0 4px 15px;
}

.select-container {
  position: relative;
  width: 100%;
}

.form-select-custom {
  background-color: #ffffff;
  border: none;
  border-radius: 50px;
  height: 55px;
  padding: 10px 30px;
  color: #00376A;
  font-size: 18px;
  font-weight: 400;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.03) 0 4px 10px;
  transition: all 0.2s ease-in-out;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.form-select-custom:focus {
  outline: none;
  box-shadow: rgba(148, 75, 150, 0.2) 0 4px 15px;
}

.form-select-custom:invalid,
.form-select-custom option[value=""] {
  color: #B2B2CC;
}

.select-arrow {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.select-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #B2B2CC;
}

.checkbox-container-custom {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 18px;
  user-select: none;
  padding-left: 35px;
}

.checkbox-container-custom input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 22px;
  width: 22px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.03) 0 4px 10px;
  transition: all 0.2s ease-in-out;
}

.checkbox-container-custom:hover input ~ .checkmark {
  background-color: #f5f5f5;
}

.checkbox-container-custom input:checked ~ .checkmark {
  background-color: #E63331;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container-custom input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container-custom .checkmark:after {
  left: 8px;
  top: 4px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container-custom .label-text {
  color: #00376A;
  font-weight: 500;
  line-height: normal;
}

.botao-enviar {
  display: block;
  width: fit-content;
  padding: 12px 60px;
  background-color: #E63331;
  border-radius: 50px;
  border: none;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.2) 0 5px 10px;
  line-height: normal;
  margin: 20px auto 0 auto;
  transition: all 0.15s ease-in-out;
}

.botao-enviar:hover {
  background-color: #E63331;
  transform: scale(1.05);
}

.horario-atendimento {
  margin: 80px 0 50px 0;
}

.horario-atendimento h3 {
  color: #00376A;
  font-family: var(--font-Gibson);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}

.horario-atendimento p {
  color: #00376A;
  font-size: 20px;
  font-weight: 600;
  margin: 4px 0;
  line-height: normal;
}

.mapa-container {
  max-width: 850px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.08) 0 10px 30px;
  display: block;
}

.mapa-container iframe {
  display: block;
}

@media (max-width: 768px) {
  .checkbox-container-custom {
    font-size: 16px;
  }
  .botao-enviar {
    font-size: 20px;
    padding: 10px 40px;
  }
  .horario-atendimento h3 {
    font-size: 22px;
  }
  .horario-atendimento p {
    font-size: 18px;
  }
  .mapa-container {
    border-radius: 20px;
  }
}

.was-validated .form-control-custom:invalid,
.was-validated .form-select-custom:invalid {
  border: 1.5px solid #E63331;
  box-shadow: rgba(230, 51, 49, 0.05) 0 4px 15px;
}

.was-validated .checkbox-container-custom input:invalid ~ .checkmark {
  border: 1.5px solid #E63331;
}



@media (max-width: 992px) {
  #breadcrumbs {
    padding: 50px 0 25px 0;
  }
  #breadcrumbs .page-title {
    font-size: 32px;
    margin: 0 0 10px 0;
  }
  #breadcrumbs .page-desc {
    font-size: 16px;
  }



  #content {
    padding: 25px 0 50px 0;
  }
}