  .content-form-contact .box-form {
    padding: 0;
  }

  input[type="date"] {
    filter: invert(1);
    color: #000 !important;
  }

  .upload-area:hover input[type="file"] {
    color: #fef5e8 !important;
  }

  .form-garantia {
    margin: 40px 50px;
  }

  .form-garantia h2 {
    color: #2c3e4e;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
  }

  .form-garantia h3 {
    color: #e67e22;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
  }

  .form-group {
    margin-bottom: 20px;
  }


  .form-group label {
    font-weight: 600;
    color: #FFF;
  }

  .form-group input,
  .form-group span,
   .form-control {
    color: #FFF;
    background: none !important;
  }

  .form-group select {
      color: #FFF;
  }

  .form-group textarea {
      height: 145px !important;
  }

  .form-control {
      height: 35px !important;
      border: 0px !important;
      border-bottom: 1px solid #ccc !important;
  }

  .form-control:focus {
    color: #ccc;
  }

  .required-field:after {
    content: " *";
    color: red;
  }

    .upload-area {
    cursor: pointer;
    user-select: none;
    transition: border-color 0.2s, background 0.2s;
    padding: 16px;
    text-align: center;
    border: 2px dashed #ccc;
    border-radius: 8px;
}

 .upload-area:hover {
    border-color: #e67e22;
    background: rgba(230, 126, 34, 0.05);
}

  .upload-area--done {
    border: 2px solid #e67e22;
    background: rgba(39, 174, 96, 0.06);
}

.upload-area--done i {
    color: #e67e22;
    font-size: 22px;
}

.upload-area--done p {
    color: #e67e22;
    font-size: 13px;
    margin: 6px 0 0;
    line-height: 1.6;
}

.upload-file-name {
    display: block;
    font-size: 12px;
    font-weight: normal;
    color: #2c3e50;
    background: rgba(0,0,0,0.05);
    border-radius: 4px;
    padding: 2px 6px;
    margin: 3px auto;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

  .upload-area i {
    font-size: 20px;
    color: #e67e22;
  }

  .upload-area p {
    color: #FFF !important;
  }

  .upload-area:hover p {
    color: #e67e22 !important;
  }

  .file-list {
    margin-top: 10px;
    font-size: 12px;
    color: #666;
  }

  .termos-area {
    margin: 20px 0;
  }

  .termos-area label {
    color: #FFF !important;
  }

  .field-error-msg {
    color: #fff;
  }

  .checkbox-itens {
    padding-left: 0px !important;
  }

  .btn-enviar {
    background: #e67e22;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    width: 100%;
    transition: all 0.3s;
    color: #FFF;
  }

  .btn-enviar:hover {
    background: #d35400;
    transform: scale(1.02);
      color: #FFF !important;
  }

  .protocolo-area {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
    display: none;
  }

  .checkbox-wrapper-42 input[type="checkbox"] {
    display: none;
    visibility: hidden;
  }

  .checkbox-wrapper-42 label {
    display: inline-block;
  }

  .checkbox-wrapper-42 .cbx {
    position: relative;
    top: 1px;
    width: 17px;
    height: 17px;
    border: 1px solid #c8ccd4;
    border-radius: 3px;
    vertical-align: middle;
    transition: background 0.1s ease;
    cursor: pointer;
  }

  .checkbox-wrapper-42 .cbx:after {
    content: '';
    position: absolute;
    top: 1px;
    left: 5px;
    width: 5px;
    height: 11px;
    opacity: 0;
    transform: rotate(45deg) scale(0);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transition: all 0.3s ease;
    transition-delay: 0.15s;
  }

  .checkbox-wrapper-42 .lbl {
    margin-left: 5px;
    vertical-align: middle;
    cursor: pointer;
    color: #FFF;
    font-weight: normal;
  }

  .checkbox-item {
    display: block;
    margin-bottom: 12px;
  }

  .checkbox-item .lbl a {
    color: #e67e22;
    text-decoration: underline;
  }

  .checkbox-wrapper-42 input[type="checkbox"]:checked~.cbx {
    border-color: transparent;
    background: #608f5a;
    animation: jelly-42 0.6s ease;
  }

  .checkbox-wrapper-42 input[type="checkbox"]:checked~.cbx:after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
  }

  .checkbox-wrapper-42 .cntr {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
  }

  @-moz-keyframes jelly-42 {
    from {
      transform: scale(1, 1);
    }

    30% {
      transform: scale(1.25, 0.75);
    }

    40% {
      transform: scale(0.75, 1.25);
    }

    50% {
      transform: scale(1.15, 0.85);
    }

    65% {
      transform: scale(0.95, 1.05);
    }

    75% {
      transform: scale(1.05, 0.95);
    }

    to {
      transform: scale(1, 1);
    }
  }

  @-webkit-keyframes jelly-42 {
    from {
      transform: scale(1, 1);
    }

    30% {
      transform: scale(1.25, 0.75);
    }

    40% {
      transform: scale(0.75, 1.25);
    }

    50% {
      transform: scale(1.15, 0.85);
    }

    65% {
      transform: scale(0.95, 1.05);
    }

    75% {
      transform: scale(1.05, 0.95);
    }

    to {
      transform: scale(1, 1);
    }
  }

  @-o-keyframes jelly-42 {
    from {
      transform: scale(1, 1);
    }

    30% {
      transform: scale(1.25, 0.75);
    }

    40% {
      transform: scale(0.75, 1.25);
    }

    50% {
      transform: scale(1.15, 0.85);
    }

    65% {
      transform: scale(0.95, 1.05);
    }

    75% {
      transform: scale(1.05, 0.95);
    }

    to {
      transform: scale(1, 1);
    }
  }

  @keyframes jelly-42 {
    from {
      transform: scale(1, 1);
    }

    30% {
      transform: scale(1.25, 0.75);
    }

    40% {
      transform: scale(0.75, 1.25);
    }

    50% {
      transform: scale(1.15, 0.85);
    }

    65% {
      transform: scale(0.95, 1.05);
    }

    75% {
      transform: scale(1.05, 0.95);
    }

    to {
      transform: scale(1, 1);
    }
  }

  .linha-duas-colunas {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .linha-duas-colunas .form-group {
    flex: 1;
    min-width: 200px;
  }

  @media (max-width: 768px) {
    .form-garantia {
      padding: 20px;
    }

    .linha-duas-colunas {
      flex-direction: column;
      gap: 0;
    }
  }
