@font-face {
	font-family: ItauText;	
  src: url("/documents/d/corporate/itautext_lt");
  font-style: "lighter";
  font-weight: 200;
}

@font-face {
	font-family: ItauText;
  font-style: "regular";
  src: url("/documents/d/corporate/itautext_rg");
  font-weight: 400;
}

@font-face {
	font-family: ItauText;
  font-style: "bold";
	src: url("/documents/d/corporate/itautext_bd");
  font-weight: 700;
}

@font-face {
	font-family: ItauText;
  font-style: "bolder";
	src: url("/documents/d/corporate/itautext_xbd");
  font-weight: 900;
}

* {
  font-family: ItauText !important;
}

body, p, select, input, form, section, ol {
  padding: 0;
  margin: 0;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  background: #06080f;
  padding: 1.5rem;
}

.header .title {
  color: #f6f6f6;
  font-weight: bold;
  font-size: 22px;
  text-align: center;
}

.header .logo {
  display: flex;
  align-items: end;
  gap: 1rem;
}

.header .logo img {
  width: 50px;
  height: 50px;
}

.header .logo .logo-title {
  color: #f6f6f6;
  font-size: 18px;
  padding-bottom: .25rem;
  font-weight: lighter;
  white-space: nowrap;
  overflow: hidden;
}

.header .logo .logo-title span {
  font-weight: 900;
}

.content {
  width: 90%;
  margin: 2.5rem auto;
  display: flex;
}

.content .form {
  width: 100%;
}

/* GRID FORM SIZING */

.content .form .div-1 {
  margin: 1rem 0 0;
}

.content .form .div-2 {
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.content .form .div-2-type-two {
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.content .form .div-3 {
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.content .form .intern-obj {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content .form .with-add {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.content .form .hidden {
  display: none;
}

/* INPUTS */

.content .form label {
  width: 100%;
  display: block;
  color: #706a66;
  font-size: .875rem;
  font-weight: lighter;
}

.content .form label span {
  color: red;
  font-weight: normal;
}

.content .form .box-input {
  width: 100%;
  border-bottom: .0625rem solid #706a66;
  box-sizing: border-box;
}

.content .form .box-button {
  width: 100%;
  box-sizing: border-box;
}

/* SELECT */

.content .form .input-select .select-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.content .form .input-select .select-options select {
  border: none;
  width: 100%;
  padding: .25rem 0;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  outline: none;
  text-overflow: ellipsis;
  color: #06080f;
  font-size: 1.125rem;
  font-weight: normal;
  cursor: pointer;
  height: 40px;
  -webkit-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.content .form .input-select .select-options select option {
  color: #06080f;
}

.content .form .input-select .select-options select::-ms-expand {
  display: none;
}

.content .form .input-select .select-options select:required:invalid {
  color: #d6d0cc;
}

.content .form .input-select .select-options .select-icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* INPUT TEXT */

.content .form .input-text input {
  border: none;
  width: 100%;
  padding: .25rem 0;
  margin: 0;
  color: #06080f;
  line-height: 2rem;
  font-size: 1.125rem;
  font-weight: 400;
  resize: vertical;
}

.content .form .input-text input::placeholder {
  color: #d6d0cc;
}

/* RADIO BUTTON - CHECKBOX BUTTON */
.content .form .input-radio-button .options, .content .form .input-checkbox-button .options{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: .5rem;
}

.content .form .input-radio-button .options .option, .content .form .input-checkbox-button .options .option {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.content .form .input-radio-button .options .option label, .content .form .input-checkbox-button .options .option label{
  font-weight: normal;
  width: auto;
}


.content .form .input-radio-button .options .option input[type='radio'] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #005858;
  border-radius: 50px;
  outline: none;
}

.content .form .input-radio-button .options .option input[type='radio']:checked {
  background: #ec7000;
  border: 1px solid #ec7000;
}

.content .form .input-radio-button .options .option input[type='radio']:disabled {
  border: 1px solid #d6d0cc;
}

/* Segunda variacion */
.content .form .input-radio-button-type-two {
  display: flex;
  align-items: flex-end;
  flex-direction: row-reverse;
  gap: 1.5rem;
  margin: .5rem 0;
}

.content .form .input-radio-button-type-two .options {
  flex-wrap: nowrap;
}

/* CHECKBOX BUTTON */

.content .form .input-checkbox-button .options .option input[type='checkbox'] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #005858;
  border-radius: 5px;
  outline: none;
}

.content .form .input-checkbox-button .options .option input[type='checkbox']:checked {
  background: #ec7000;
  border: 1px solid #ec7000;
}

/* INPUT BUTTON SEND */

.content .form .send-button {
  width: auto;
  margin: 7.5rem auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content .form .button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .8rem 1rem;
  box-shadow: 0 0.0625rem 0.0625rem 0 rgba(121,109,95,.24);
  border-radius: .25rem;
  border: .0625rem solid #dd6100;
  background: #ec7000;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  white-space: nowrap;
}

.content .form .button.button-del {
  background: #d80909;
}

/* TEXTS FORM */

.content .form .title-section {
  margin: 3rem 0 2rem;
  padding: 0 0 .5rem;
  width: 100%;
  border-bottom: .0625rem solid #e6e6e6;
}

.content .form .title-section p {
  color: #06080f;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
}

.content .form .title-section span {
  color: #EC7000;
}

.content .form .title-section .add-note {
  font-size: 15px;
  font-weight: lighter;
  margin-top: .5rem;
}

.content .form .title-section .add-note span {
  font-weight: bold;
}

.content .form .subtitle {
  margin: 0 0 1rem;
  width: 100%;
}


.content .form .subtitle p {
  color: #06080f;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
}

.content .form .note-section {
  color: #06080f;
  font-size: 14px;
  line-height: 1.2;
  font-weight: lighter;
}

.content .form .note-section span {
  color: #EC7000;
  font-weight: bold;
  line-height: 2rem;
}

/* OBJECTS */

.content .form .signature {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content .form .signature .space-signature {
  width: 450px;
  height: 4rem;
  border-bottom: 1px solid #06080f;
}

.content .form .signature .text-signature {
  color: #06080f;
  font-size: 14px;
  font-weight: bold;
  margin-top: .5rem;
}

.content .form .signature .data-user {
  width: 450px;
  margin: 1.5rem auto;
  text-align: start;
}

.content .form .signature .data-user p {
  margin: 0 0 1rem;
  font-weight: bolder;
  font-size: 14px;
  color: #06080f;
}

.content .form .signature .data-user p span {
  font-weight: lighter;
}

.content .form #name-rep-legal {
  text-transform: capitalize;
}

.content .form .spacer {
  height: 3rem;
}

.content .form .divider {
  margin: 2rem 0;
  border-bottom: .0625rem solid #e6e6e6;
}

.content .form ol.list-number {
  counter-reset: item;
}

.content .form ol.list-number li {
  display: block;
  font-weight: lighter;
  color: #06080f;
  text-align: justify;
  font-size: 14px;
}

.content .form ol.list-number li:before {
  content: counter(item) ". ";
  counter-increment: item;
  color: #EC7000;
  font-weight: 900;
}

.content .form ol.list-number li:not(:last-child) {
  margin-bottom: 1rem;
}

@media print {
  @page :first {
    margin: 0;
  }

  @page {
    size:  auto; margin: 1rem .5rem;
  }

  body {
    background-color: #fff !important;
    -webkit-print-color-adjust: exact;
  }

  .header {
    background: #06080f !important;
    print-color-adjust: exact; 
    padding: 1.5rem;
  }
  
  .header .title {
    font-size: 18px;
  }

  .header .logo .logo-title {
    font-size: 16px;
  }

  .header .logo img {
    width: 30px;
    height: 30px;
  }

  .content .form .one-page-after {
    page-break-after: always; 
  }

  .content .form .one-page {
    page-break-before: always; 
  }

  .content .form label {
    font-size: 12px;
  }

  .content .form .input-select .select-options select {
    font-size: 12px;
    padding: 0;
  }

  .content .form .input-text input {
    font-size: 12px;
    padding: 0;
  }

  .content .form .button,
  .content .form .input-select .select-options .select-icon,
  .content .form .send-button {
    display: none;
  }

  .content .form .input-select .select-options {
    display: block;
  }

  .content .form .title-section {
    margin: 1.5rem 0;
    padding: 0 0 .1rem;
    width: 100%;
}

  .content .form .title-section p {
    font-size: 16px;
  }

  .content .form .title-section .add-note {
    font-size: 12px;
    margin-top: .1rem;
  }

  .content .form .subtitle p {
    font-size: 14px;
  }

  .content .form .note-section {
    font-size: 12px;
  }

  .content .form .signature .text-signature {
    font-size: 8px;
  }

  .content .form .signature .data-user p {
    font-size: 14px;
  }

  .content .form ol.list-number li {
    font-size: 12px;
  }

  .content .form .div-1 {
    margin: .5rem 0 0;
  }
  
  .content .form .div-2-type-two {
    margin: .5rem 0 0;
    gap: .5rem;
  }

  .content .form .div-2 {
    margin: .5rem 0 0;
    gap: .5rem;
  }
  
  .content .form .div-3 {
    margin: .5rem 0 0;
    gap: .5rem;
  }
  
  .content .form .intern-obj {
    gap: .5rem;
  }
  
  .content .form .with-add {
    gap: 1rem;
  }

  .content .form .divider {
    margin: 1.5rem 0;
    border: none;
  }

  .content .form .spacer {
    height: 2rem;
  }

  .content .form .box-input {
    border: none;
  }

  .content .form .input-checkbox-button .options .option input[type='checkbox'] {
    width: 10px;
    height: 10px;
    border: 1px solid #c4c4c4;
    border-radius: 2.5px;
  }

  .content .form .input-radio-button .options .option input[type='radio'] {
    width: 10px;
    height: 10px;
    border: 1px solid #c4c4c4;
  }
}