.form-proposta .linha {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
}

.form-proposta .labelprop {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
}

.form-proposta .legendform {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
}

.form-proposta .campoprop {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;

    border: 1px solid #ccc;
    border-radius: 6px;

    box-sizing: border-box;
}

.form-proposta .campo-linha {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.form-proposta .campo-linha label {
    min-width: 150px;
}

.form-proposta .campo-linha input {
    width: 80px;
    text-align: center;
}

.form-proposta .radio-groupprop {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.form-proposta .radio-groupprop label {
    flex: 1;
    text-align: center;
    cursor: pointer;
    padding: 10px;
}

.form-proposta .radio-custom input {
    display: none;
}

.form-proposta .radio-custom span {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ED3237;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
}

.form-proposta .radio-custom input:checked + span {
    border-color: #ED3237;
}

.form-proposta .radio-custom input:checked + span::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #ED3237;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-proposta .check-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-proposta .check-custom {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative; 
}

.form-proposta .check-custom input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.form-proposta .check-custom span {
    width: 18px;
    height: 18px;
    border: 2px solid #ED3237;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    pointer-events: none;
}

.form-proposta .check-custom input:checked + span {
    background-color: #ED3237;
    border-color: #ED3237;
}

.form-proposta .check-custom input:checked + span::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-proposta .col-prop {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Responsivo */
@media (max-width: 768px) {
    .form-proposta .radio-groupprop {
        flex-direction: column;
    }

    .form-proposta .campo-linha {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-proposta .campo-linha input {
        width: 100%;
    }
}

/* Remove spinner input number */
.form-proposta input[type="number"]::-webkit-inner-spin-button,
.form-proposta input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-proposta input[type="number"] {
    -moz-appearance: textfield;
}


/* BLOCO DO CAPTCHA */
.form-proposta .linha-captcha {
    padding-bottom: 2%;
}

/* DESKTOP */
.form-proposta .captcha-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0; /* sem espaço entre eles */
}

/* Ajustes finos opcionais */
.form-proposta .captcha-container label {
    margin-right: 10px;
}

.form-proposta .captcha-container img {
    margin: 0 10px;
}

.form-proposta .captcha-container input {
    width: 120px;
    text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
    .form-proposta .captcha-container {
        flex-direction: column;
        align-items: center;
        gap: 10px; /* aqui pode ter espaço */
        text-align: center;
    }

    .form-proposta .captcha-container label {
        margin-right: 0;
    }

    .form-proposta .captcha-container img {
        margin: 0;
    }
}


.form-proposta .btncaptcha {
  background-color: white;
  border: none;
  color: black;
  padding: 10px 10px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition: 0.4s;
  cursor: pointer;
}

.form-proposta .btnform {  
  color: black;
  padding: 10px 70px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition: 0.4s;
  cursor: pointer;
}

/* CAPTCHA */
.form-proposta .btncaptcha.refresh {
  border: 2px solid #e7e7e7;
}

.form-proposta .btncaptcha.refresh:hover {
  background-color: #e7e7e7;
}

/* LIMPAR */
.form-proposta .btnform.limpar {
  background-color: lightgray;
  border-radius: 6px;
}

.form-proposta .btnform.limpar:hover {
  background-color: #e7e7e7;
}

/* ENVIAR */
.form-proposta .btnform.enviar {
  color: white;
  background-color: #28a745;
  border-radius: 6px;
}

.form-proposta .btnform.enviar:hover {
  background-color: darkgreen;
}

.form-proposta .btnform:hover {
  transform: scale(1.05);
}