body{
    font-family: 'Rubik', sans-serif;

    outline: 0;
}

.logo-header {
  width: 140px;
  height: auto;
}

/* Seção 1 */
.introInvestimento{
    background-color: #002645;
    padding: 40px 0px 100px 0px;
    text-align: center;
    color: #fff;
}
.introInvestimento h1{
    font-style: normal;
    font-weight: normal;
    font-size: 56px;
    line-height: 110%;
    text-align: center;
    color: #FFFFFF;
    margin-top: 75px;
    margin-bottom: 16px;
}
.introInvestimento p{
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: #FFFFFF;
    max-width: 592px;
    margin: auto;
}

@media(max-width: 981px) {
  .introInvestimento h1 {
    font-size: 48px;
  }
}

@media(max-width: 768px) {
  .introInvestimento h1 {
    font-size: 30px;
  }

  .introInvestimento p {
    font-size: 14px;
  }
}

/* Fim - Seção 1 */

/* Secão 2 */
.inputInformacoesInvestimentos{
    padding-top: 63px;
    padding-bottom: 96px;
}
.mlauto{
    margin-left: auto;
}
.mrauto{
    margin-right: auto;
}
.inputInformacoesInvestimentos .rangeInputsInvestimento{
    max-width: 360px;
}
.inputInformacoesInvestimentos .rangeInputsInvestimento label{
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 110%;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 16px;
    color: #292A36;
    opacity: 0.5;
}
.resultadoTotalValorRange{
    text-align: left;
    font-style: normal;
    font-weight: 300;
    font-size: 40px;
    line-height: 110%;
    color: #292A36;
}

.slider {
  background: linear-gradient(to right, #D7C27E 0%, #D7C27E 50%,#E6E6E6 50%, #E6E6E6 100%);
  border-radius: 8px;
  height: 3px;
  width: 100%;
  outline: none;
  transition: background 450ms ease-in;
  -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #D7C27E;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: grab;
}

@media(max-width: 981px) {
  .resultadoTotalValorRange {
    font-size: 36px;
  }
  
  .inputInformacoesInvestimentos {
    padding: 35px 0 30px 0;
  }
}

@media(max-width: 768px) {
  .slidecontainer {
    margin: 10px 0;
  }

  .inputInformacoesInvestimentos .rangeInputsInvestimento {
    max-width: 100%;
  }

  .resultadoTotalValorRange {
    font-size: 28px;
  }
}

/* Fim - Secão 2 */

/* Seção 3 */

.formsInformacoesInvestimentos {
  padding-bottom: 96px;
}

.boxCamposFormularioInvestimentos h4 {
  font-weight: 500;
  font-size: 14px;
  color: #292A36;
  margin-bottom: 27px;
}

.form-group {
  display: flex;
  flex-direction: column-reverse;
}

.form-group label {
  font-weight: 500;
  font-size: 14px;
  color: rgba(41, 42, 54, .5);

  transition: .2s;
}

.form-group input, .form-group select {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #E6E6E6;
  padding: 16px 0;
  font-weight: 300;
  font-size: 24px;
  transition: .2s;

  outline: 0;
}

.form-group input:focus, .form-group select:focus {

  border-bottom: 2px solid #D7C27E;

}

.form-group input:focus + div + label, .form-group select:focus + label {
  
  color: #D7C27E;
  opacity: 1;

}

.form-group input:focus + div {
  opacity: 1;
}

.form-group select {
  cursor: pointer;
}

.form-group input {
  width: 100%;
}

.form-group + .form-group {
  margin-top: 24px;
}

.inputTexto {
  position: relative;
}

.inputTexto div {
  position: absolute;
  right: 0;
  bottom: 16px;
  font-weight: 300;
  font-size: 24px;
  color: #292A36;
}

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.popUpTaxa {
  border: none;
  background: none;
  position: absolute;
  top: 0;
  right: 0;
}

.tooltipTax {
  visibility: hidden;
  width: 240px;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  font-size: 0.9em;
  text-align: left;
  border-radius: 5px;
  padding: 25px;
  position: absolute;
  z-index: 1;
  top: -172px;
  right: -38px;
  box-shadow: 0px 4px 12px 0px rgba(97, 82, 244, 0.1);
}

.tooltipTax::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px;
  border-color: rgba(0, 0, 0, 0.9) transparent transparent rgba(0, 0, 0, 0.9);
  transform: rotate(225deg);
  bottom: -12px;
  right: 40px;
  border-radius: 6px 0px 0px 0px;
}

.popUpCustomInput {
  border: none;
  background: none;
  position: relative;
  margin-left: 8px;
}

.popUpCustomInput .tooltipTax {
  right: -68px;
  top: -100px;
  width: 160px;

}

.popUpCustomInput .tooltipTax::after {
  right: 68px;
}

@media(max-width: 768px) {
  .formsInformacoesInvestimentos {
    padding-bottom: 60px;
  }

  .boxCamposFormularioInvestimentos {
    margin: 24px 0;
  }
  
  .tooltipTax {
    right: -8px;
  }

  .tooltipTax::after {
    right: 10px;
    border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
  }

  .form-group input, .form-group select {
    font-size: 18px;
  }

  .inputTexto div {
    font-size: 18px;
  }
}

/* Fim - Seção 3 */

/* Secao 4 */

.resultadosInformacoesInvestimentos {
  background: linear-gradient(180deg, #F5F5F5 0%, rgba(255, 255, 255, 0) 24.18%);
  padding-top: 60px;
}

.resultadosInformacoesInvestimentos .container {
  position: relative;
}

.graphInfos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 360px;
}

.graphInfos span {
  font-weight: normal;
  font-size: 12px;
  color: #292A36;
  opacity: 0.4;
}

.graphInfos p{
  font-weight: 300;
  font-size: 32px;
  color: #292A36;
}

.graph {
  max-width: 166px;
  width: 100%;
  height: 75px;
  background: #002645;
  border-radius: 4px 4px 0px 0px;

  transition: .2s;
}

.investimentoInicial {
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 75px;
  left: 0;
  background: #D7C27E;
  transition: .2s;
}

@media(max-width: 981px) {
  .graphInfos p {
    font-size: 24px;
  }
}

@media(max-width: 768px) {
  .resultadosInformacoesInvestimentos {
    padding-top: 30px;
  }

  .graphInfos {
    height: 250px;
  }

  .graphInfos span {
    font-size: 10px;
  }

  .graphInfos p {
    font-size: 14px;
  }
}

/* Fim - Seção 4 */

/* Seção 5 */

.resultadoInformacoesInvestimentos {
  padding-bottom: 64px;
  box-shadow: 0px -4px 24px -8px rgba(0, 0, 0, 0.25);
}

.graphIndex {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
  padding-bottom: 61px;
}

.indexItem + .indexItem {
  margin-left: 16px;
}

.indexItem {
  display: flex;
  align-items: center;
}

.indexItem p {
  font-weight: normal;
  font-size: 13px;
  color: #292A36;
  margin: 0;
}

.indexItem span {
  width: 24px;
  margin-right: 12px;
  display: block;
  height: 2px;
  background: #D7C27E;
}

.indexItem .blueItem {
  background: #002645;
}

.boxResultadoTiposDeInvestimentos h5 {
  font-weight: normal;
  font-size: 14px;
  text-align: center;
  color: #292A36;
  margin-bottom: 24px;
}

.boxResultadoTiposDeInvestimentos ul {
  list-style: none;
  padding: 0;
}

.boxResultadoTiposDeInvestimentos ul li {
  display: flex;
  justify-content: space-between;
}

.boxResultadoTiposDeInvestimentos ul li + li {
  margin-top: 20px;
}

.labelInvestimentos {
  font-weight: 500;
  font-size: 14px;
  color: #292A36;
}

.valorResultadoInvestimentos {
  font-size: 14px;
  text-align: right;
  color: #292A36;
}

.boxResultadoFinalInvestimentos {
  background: #D7C27E;
  border-radius: 8px;
  text-align: center;
  margin-top: 64px;
  display: none;
}

.boxResultadoFinalInvestimentos p {
  padding: 35px 20px;
  font-weight: 500;
  font-size: 16px;
  color: #002645;
  margin: 0;
}


@media(max-width: 768px) {
  .boxResultadoFinalInvestimentos {
    margin-top: 30px;
  }

  .boxResultadoFinalInvestimentos p {
    font-size: 14px;
  }

  .boxResultadoTiposDeInvestimentos {
    margin: 24px 0;
  }
}
/* Fim - Secao 5 */

@media (max-width: 768px) {
  .resultadosInformacoesInvestimentos .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
}

/*  FOOOTER  */

.footer {
    background: #16161D;
    padding: 70px 0;  
}

.footer p {
    font-family: Roboto;
    font-weight: 400;
    font-size: 12px;
    line-height: 160%;
    text-align: center;
    color: #737485;
}

#sobreRendaFixa {
  padding-top: 80px;
  background-color: #142740;
}

#sobreRendaFixa .post-content h2, #sobreRendaFixa .post-content h3, #sobreRendaFixa .post-content p, #sobreRendaFixa .post-content a {
  color: #fff !important;
  opacity: 1 !important;
}

.post-content-thumb {
  width: 100%;
  max-width: 1190px;
  margin: 0px auto;
  display: block;
  height: 500px;
  object-position: top;
  object-fit: cover;
  margin-bottom: 32px;
  border-radius: 6px;
}

.post-content {
  font-size: 17px;
  line-height: 150%;
  color: #142740;
  padding-bottom: 64px;
}

.post-content strong {
  font-weight: 600;
}

.post-content p {
  margin-bottom: 16px;
}
.post-content a {
  color: #142740;
}
.post-content h2 {
  font-size: 28px;
  font-weight: bold;
  padding-top: 16px;
  margin-top: 8px;
  margin-bottom: 16px;
  line-height: 100%;
}
.post-content h3 {
  font-size: 24px;
  opacity: 0.7;
}

.post-content ol, .post-content ul {
  list-style: initial;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
  margin-block-start: 1em;
}
.post-content ol {
  list-style: decimal;
}
.post-content blockquote{
  background-color: #efefef;
  padding: 15px 20px 2px 30px;
  margin: 10px 0;
}
.post-content tr td{
  padding: 15px;
  line-height: 1.5;
  vertical-align: top;
  border: 1px solid hsla(0,0%,50.2%,.5019607843137255);
  font-size: 15px;
}
.post-content tr:nth-child(odd) .boxResultadoTiposDeInvestimentos{
  background-color: hsla(0,0%,50.2%,.07058823529411765);
}

@media(max-width: 768px) {
  .post-content-thumb {
    height: 320px;
    margin-bottom: 24px;
  }
  .post-content p {
    font-size: 16px;
  }
  .post-content h2 {
    font-size: 24px;
  }
  .post-content h3 {
    font-size: 20px;
  }
}