/*
.e-form__step:not(.elementor-hidden) {
    align-items: flex-start;
}

button.e-form__buttons__wrapper__button-next.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.mascara-personalizada {
    display: none;
}
input[aria-invalid="true"] + .mascara-personalizada {
    display: block;
}

.elementor-field-type-textarea-contador > label.elementor-field-label:first-of-type {
    display: none;
}

.elementor-field-group.sem-padding label {
    display: block !important;
}

.elementor-field-subgroup.elementor-subgroup-inline span.elementor-field-option label {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px 10px 5px 30px;
    margin-left: -15px;
    cursor: pointer;
    margin-top: 5px;
}

.elementor-field-subgroup.elementor-subgroup-inline span.elementor-field-option input {
    position: relative;
    left: 15px;

}

.elementor-field-subgroup:not(.elementor-subgroup-inline) span.elementor-field-option {
    position: relative; 
}

.elementor-field-subgroup:not(.elementor-subgroup-inline) span.elementor-field-option input {
    position: absolute;
    top: 50%; 
    transform: translateY(-50%); 
    left: 10px; 
}

.elementor-field-subgroup.elementor-subgroup-inline {
    margin-top: 5px;
}

.elementor-field-subgroup:not(.elementor-subgroup-inline) .elementor-field-option label {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px 10px 5px 30px;
    cursor: pointer;
    display: inline-block !important;
    width: 100%;
}

.elementor-field-subgroup:not(.elementor-subgroup-inline) .elementor-field-option {
 margin-bottom: 10px;
}
 */

/* ================================
   INDICADORES DE PASSO DO FORM
================================= */
.e-form__indicators__indicator__number {
  border: 0 !important;
}

.e-form__indicators__indicator__separator {
  height: var(--e-form-steps-divider-width);
  width: 100%;
}


/* ================================
   GRUPO INLINE (FLEX HORIZONTAL COM WRAP)
================================= */
.elementor-field-subgroup.elementor-subgroup-inline {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Caixas dentro do grupo flexível */
.elementor-field-subgroup.elementor-subgroup-inline span.elementor-field-option {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 240px;
  box-sizing: border-box;
  position: relative;
}

.elementor-field-option {
  padding-inline-end: 0;
}

.elementor-field-subgroup.elementor-subgroup-inline {
    width: 100%;
}


/* ================================
   ESTILO DAS LABELS
================================= */
.elementor-field-option label {
  border: 2px solid rgb(255 255 255 / 25%);
  border-radius: 10px;
  cursor: pointer;
  display: inline-block !important;
  position: relative;
  transition: all 0.3s ease;
  width: 100%;
  padding: 16px 15px 16px 40px;
}

.elementor-field-subgroup:not(.elementor-subgroup-inline) .elementor-field-option label {
  padding: 20px 10px 20px 40px;
  line-height: 1;
}

/* Hover nas labels */
.elementor-field-option label:hover {
  opacity: 1;
}


/* ================================
   INPUTS VISUALMENTE ESCONDIDOS
================================= */
.elementor-field-option input[type="checkbox"],
.elementor-field-option input[type="radio"] {
  position: absolute;
  opacity: 0.01;
  width: 20px;
  height: 20px;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}


/* ================================
   ::BEFORE PADRÃO (CAIXA DE CHECKBOX / RADIO)
================================= */
.elementor-field-option input[type="checkbox"] + label::before,
.elementor-field-option input[type="radio"] + label::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgb(255 255 255 / 25%);
  border-radius: 4px;
  background: transparent;
  transition: all 0.3s ease;
}

/* Radio arredondado */
.elementor-field-option input[type="radio"] + label::before {
  border-radius: 50%;
}


/* ================================
   ::AFTER PARA RADIO CHECKED
================================= */
.elementor-field-option input[type="radio"]:checked + label::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--e-global-color-primary);
}


/* ================================
   CHECKED: CHECKBOX
================================= */
.elementor-field-option input[type="checkbox"]:checked + label::before {
  background: var(--e-global-color-primary);
  border-color: var(--e-global-color-primary);
  content: '\2713';
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ================================
   CHECKED: RADIO (somente borda colorida)
================================= */
.elementor-field-option input[type="radio"]:checked + label::before {
  background: transparent;
  border-color: var(--e-global-color-primary);
}


/* ================================
   CHECKED: LABEL DESTACADA
================================= */
.elementor-field-option input:checked + label {
  background-color: rgba(255, 255, 255, 0.1);
}


/* ================================
   PLACEHOLDER (inputs comuns)
================================= */
input::placeholder,
textarea::placeholder,
input:focus::placeholder,
textarea:focus::placeholder {
  color: inherit;
  transition: 350ms;
  opacity: 1;
}

/* ================================
   COLUNAS DO FORMULÁRIO
================================= */
.elementor-column {
  align-content: flex-start;
}


/* ================================
   RESPONSIVO - TABLET
================================= */
@media (max-width: 1024px) {
  .elementor-field-option label {
  }
}

/* ================================
   RESPONSIVO - MOBILE
================================= */
@media (max-width: 767px) {
  .elementor-field-option label {
  }

  .e-form__buttons,
  .e-form__buttons__wrapper {
    flex-direction: column-reverse;
  }

  .elementor-button {
    width: 100%;
  }

  .elementor-field-subgroup.elementor-subgroup-inline span.elementor-field-option {
    flex: 1 1 100%;
  }
}
