.formulario--banner__desktop {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.formulario--banner__mobile {
  display: none;
}

.section.section-formulario {
  min-height: calc(100vh - 200px);
  overflow: hidden;
  margin: 0;
  padding: 70px 0;
  box-sizing: border-box;
}

.section-formulario__content {
  position: relative;
  z-index: 2;
  max-width: 768px;
  margin: 0 auto;
}

.section__titles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-formulario__content .section-formulario__title {
  color: #217b17;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.section-formulario__content .section__lead {
  color: #48536c;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}

.section-lead__destaque {
  font-size: 24px;
  color: #217b17;
  display: flex;
  flex-direction: column;
}

.formulario__content {
  width: 100%;
  margin: 40px auto 0px auto;
  position: relative;
}

.form-inputs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 15px;
  margin-bottom: 30px;
}

.group-input {
  display: flex;
  flex-direction: column;
  width: calc(50% - 10px);
  position: relative;
}

.group-input label {
  display: block;
  color: #666666;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  margin-bottom: 5px;
}

.group-input label span {
  color: #ff2c35;
}

.group-input input,
.group-input select,
.group-input textarea {
  border-radius: 8px;
  border: 1px solid #ebecef;
  background-color: #fff;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 20px;
  padding: 15px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.group-input input::placeholder,
.group-input select,
.group-input textarea::placeholder {
  color: #9fa1a7;
}

.group-input input:focus,
.group-input select:focus,
.group-input textarea:focus {
  outline-color: #25cc9f;
}

.group-input input {
  width: 100%;
  height: 50px;
}

.group-input select {
  background-image: url("../img/ic-arrow-down.svg");
  background-position-y: center;
  background-repeat: no-repeat;
  background-position-x: 98%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 25px;
  width: 100%;
}

.group-input select::-ms-expand {
  display: none;
}



.checkLGPD {
  text-align: center;
  position: relative;
  width: 420px;
  margin: 0 auto 10px auto;
  display: flex;
  align-items: center;
  padding: 20px 10px 0;
  justify-content: center;
  overflow: hidden;
}

.checkLGPD .txt-termos {
  color: #000;
  font-size: 16px;
  margin: 0;
  padding-left: 5px;
  line-height: 13px;
  text-align: left;
}

.checkLGPD .txt-termos span.openTerm {
  display: inline-block;
  border-bottom: 2px solid #29c5a5;
}

.txt-termos span {
  cursor: pointer;
}

.textLGPD {
  position: absolute;
  top: 0px;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: all ease 0.4s;
  pointer-events: none;
}

.textLGPD > p {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  font-size: 15px;
  color: #fff;
  background: rgb(60 73 90 / 0.95);
  width: 100%;
  height: auto;
  padding: 50px 30px 30px;
  z-index: -1;
  transition: all ease 0.4s;
  box-sizing: border-box;
}

.textLGPD.termoAberto {
  pointer-events: auto !important;
  width: 100%;
}

.textLGPD.termoAberto p {
  opacity: 1;
  z-index: 2;
}

.textLGPD > p a {
  color: #fff;
}

.fechar-termo {
  display: block;
  position: absolute;
  color: #fff;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.button-submit-form {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25cc9f;
  border-radius: 5px;
  width: 210px;
  height: 40px;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  margin: 15px auto;
  border: 0;
}

.button-submit-form:hover {
  opacity: 0.8;
}

.inform-campos {
  margin: 0 auto;
  color: #000;
  text-align: center;
  line-height: 20px;
  font-style: italic;
  font-size: 14px;
}

#skeleton-form {
  display: none;
  width: 100%;
  margin: 40px auto 0px auto;
  position: relative;
}

#skeleton-form .form-inputs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 15px;
  margin-bottom: 30px;
}

#skeleton-form .group-input {
  display: flex;
  flex-direction: column;
  width: calc(50% - 10px);
  position: relative;
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 4px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-input,
.skeleton-select {
  height: 50px;
  width: 100%;
  margin-bottom: 15px;
  border-radius: 8px;
}

.skeleton-label {
  height: 16px;
  width: 120px;
  margin-bottom: 5px;
}

.skeleton-button {
  height: 40px;
  width: 210px;
  margin: 15px auto;
  border-radius: 5px;
}

.skeleton-checkbox {
  height: 20px;
  width: 20px;
  display: inline-block;
  margin-right: 8px;
}

.skeleton-text {
  height: 16px;
  width: 200px;
  display: inline-block;
}

.cpf-input-container {
  position: relative;
}

.cpf-loading {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 12px;
}

@media only screen and (max-width: 768px) {
  .formulario--banner__desktop {
    display: none;
  }

  .formulario--banner__mobile {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .section-formulario__content .section-formulario__title {
    font-size: 28px;
    line-height: 40px;
  }

  .group-input {
    width: 100%;
  }

  #skeleton-form .group-input {
    width: 100%;
  }

  .checkLGPD {
    padding: 0;
    width: 100%;
  }
}

/* Estilos para os Snackbars */
.snackbar-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.snackbar {
  min-width: 300px;
  max-width: 500px;
  padding: 24px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #5d677d;
  line-height: 1.4;
  pointer-events: auto;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.snackbar.show {
  transform: translateX(0);
  opacity: 1;
}

.snackbar.hide {
  transform: translateX(100%);
  opacity: 0;
}

.snackbar.success {
  border-left: 4px solid #00ab5f;
  background: #f3fcf8;
}

.snackbar.error {
  border-left: 4px solid #ff2c37;
  background: #fff0f3;
}

.snackbar.info {
  border-left: 4px solid #1670c0;
  background: #eef7fc;
}

.snackbar.warning {
  border-left: 4px solid #f5af00;
  background: #fff9cc;
}

.snackbar-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.snackbar-icon svg {
  width: 100%;
  height: 100%;
}

.snackbar-message {
  flex: 1;
  font-weight: 500;
}

.snackbar-close {
  background: none;
  border: none;
  color: currentColor;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.snackbar-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

.snackbar-close svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.snackbar-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0 0 8px 8px;
  transform-origin: left;
  animation: progress linear;
}

@keyframes progress {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

@media (max-width: 480px) {
  .snackbar-container {
    left: 20px;
    right: 20px;
    top: 20px;
  }

  .snackbar {
    min-width: auto;
    max-width: none;
    transform: translateY(-100%);
  }

  .snackbar.show {
    transform: translateY(0);
  }

  .snackbar.hide {
    transform: translateY(-100%);
  }
}


