* {
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

:root {
    --blue: #0060A7;
    --blue-black: #052C4C;
    --blue-hover: #007DD9;
    --white: #fff;
    --orange: #FE6A01;
    --orange-hover: #ff8228;
    --shadow: #333333;
    --grey-black: #7c7c7c;
    --grey-back: #f5f5f57e;
    --grey: #7e7e7e;
    --grey-letter: #686565;
    --test-color: #d1d1d1;
    --grey-place: #b3b3b3;
    --grey-card: #F6F5F5;
    --org: #ff7600;
    --green: rgb(0, 174, 255);
    --red: #ff7f2a;
}


/*Formulário de Vendas em 3 Etapas*/

.logo img,
.logo_footer img {
    width: 12rem;
}

.header_form {
    background-color: var(--blue);
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 10rem;
}

.progress-bar {
    display: flex;
}

.container_geral {
    display: flex;
    align-items: inherit;
}

main {
    padding: 2rem 10rem 5rem 10rem;
    background-color: var(--grey-back);
}

/*Card Principal*/

.card_compreAgora {
    width: 15rem;
    padding: 1rem;
}

.card_compreAgora h1 {
    color: var(--blue);
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.card_compreAgora a {
  text-decoration: none;
  color: var(--orange);
}

.card_compreAgora a:hover {
  text-decoration: underline;
}

.bi-cart3 {
    font-size: 5rem;
    color: var(--blue);
}

.card_compreAgora p {
    font-size: 1rem;
    color: var(--grey);
    font-weight: 500;
}

.divisor_form {
    border-top: 1px solid var(--grey-place);
    width: 14.5rem;
    margin: 2rem 0 2rem 0;
}

.card_compreAgora h4 {
    color: var(--grey-letter);
    font-weight: bold;
    margin-bottom: .5rem;
}

.card_compreAgora h2 {
    color: var(--orange);
    font-size: 1.5rem;
    font-weight: 800;
}

.title h2 {
    margin-bottom: 2rem;
}

.field {
    display: flex;
    flex-direction: column;
    align-items: inherit;
    justify-content: center;
}

.field label {
    margin-top: 1rem;
}

.button_form {
    margin-top: 2rem;
}

.footer_form {
    background-color: var(--blue-black);
    width: 100%;
}

.footer_itens {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 10rem;
}



/*Estilo do Formulário para alterar*/

.container {
    width: 100%;
    padding: 2rem;
    /*background: #fff;*/
    margin: 0 2rem 0 5rem;
  }
  
  /*
  .container .title {
    font-weight: 500;
    text-align: center;
    margin-bottom: 35px;
  }*/

  .title_page {
      display: flex;
      flex-direction: column;
      align-items: inherit;
      justify-content: center;
  }

  .title_page h2 {
      color: var(--orange);
      font-weight: 600;
      font-size: 1.7rem;
  }

  .title_page span {
      width: 100%;
      border-bottom: 2px solid var(--grey-place);
      opacity: .2;
      margin-bottom: 2rem;
  }

  .indicador {
    margin-left: 10rem;
  }

.item_dados {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
}

.item_dados h3 {
    font-size: .8rem;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
    color: #fff;
    font-weight: 500;
}

  .indicador {
    width: 65%;
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 24px;
  }
  
  .indicador .line {
    position: absolute;
    top: 75%;
    transform: translateY(-50%);
    height: 4px;
    background: #ddd;
    width: 87%;
    max-width: 100%;
    left: 0;
    z-index: 10;
    margin-left: 1.5rem;
  }
  
  .indicador .line span {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--orange);
  }
  
  .indicador p {
    position: relative;
    z-index: 20;
    width: 40px;
    height: 40px;
    border: 5px solid var(--blue);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 50%;
    transition: 0.3s;
    font-weight: bold;
    font-size: 1rem;
    color: var(--blue);
  }
  
  .indicador p.active {
    border-color: var(--orange);
    color: #fff;
    background: var(--orange);
  }
  
  .tab {
    display: none;
  }
  
  .tab.show {
    display: block;
  }
  
  .tab p {
    margin-bottom: 18px;
  }
  
  form .tab .form {
    margin-bottom: 18px;
    width: 100%;
  }
  
  .tab .form input {
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    height: 2.5rem;
    width: 40%;
    padding-left: 1rem;
    margin-top: .3rem;
  }

  .form label {
      color: var(--grey-letter);
  }

  .form input::placeholder {
      color: rgb(197, 197, 197);
  }

  .form {
      padding: .5rem 0 .5rem 0;
      display: flex;
      flex-direction: column;
  }

  
  form .btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  
  form .btn button.prev {
    color: #fff;
    background: var(--grey-place);
    opacity: .7;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
  }

  form .btn button.prev:hover {
    background: var(--grey-place);
    opacity: .5;
  }
  
  form .btn button.next {
    background: var(--orange);
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
  }

  form .btn button.next:hover {
      background-color: var(--orange-hover);
      opacity: .9;
      
  }

  /*Conf. button */
  form .btn button {
    padding: 0;
    margin-left: 5px;
    border: none;
    outline: none;
    cursor: pointer;
  }

  .next,
  .prev {
    width: 12rem;
  }

  form .btn button.next,
  form .btn button.prev {
    padding: 1rem 1rem;
  }

  /*Conf. button */

  .form #nome,
  .form #email,
  .form #mae {
      width: 97%;
  }

  .divisor_footer {
      width: 50%;
      height: .1rem;
      background-color: #fff;
  }
  
  .info_importante {
      display: flex;
      align-items: initial;
      margin-top: .5rem;
      margin-bottom: -1rem;
  }

  .info_importante p,
  .bi-question-circle {
    font-size: .7rem;
    color: var(--grey-letter);
    opacity: .7;
    margin-top: .1rem;
  }

  .bi-question-circle {
      margin: 0 .5rem 0 .2rem;
      color: var(--orange);
      font-size: .8rem;
  }
  .info_compre {
      text-align: center;
  }

  .info_compre h3 {
      color: #fff;
      font-size: 1.2rem;
  }

  .info_compre a {
      text-decoration: none;
      color: #fff;
      font-size: 1.5rem;
      font-weight: 700;
      cursor: pointer;
  }

  .info_compre a:hover {
    text-decoration: underline;
  }

  @media (min-width: 1150px) and (max-width: 1300px) {
    .indicador .line {
      width: 80%;
    }
  }

  @media (min-width: 1450px) and (max-width: 1600px) {
    .container {
      margin: 0 5rem 0 10rem;
    }
  }

  @media (min-width: 1600px) and (max-width: 1700px) {
    .container {
      margin: 0 10rem 0 15rem;
    }

  }

  @media (min-width: 1700px) and (max-width: 1900px) {
    .container {
      margin: 0 10rem 0 20rem;
    }

  }

  .form_localizar {
    display: flex;
    align-items: center;
    justify-content: left;
  }

  #cep {
    width: 130%;
  }

  .localizar button {
    padding: .65rem 1.5rem;
    color: var(--white);
    background-color: var(--grey-place);
    border: 1px solid var(--grey-place);
    border-radius: 3px;
    margin: .3rem 0 0 5rem;
  }

  .localizar button:hover {
    cursor: pointer;
    background-color: var(--orange-hover);
    border: 1px solid var(--orange-hover);
  }

.form select {
  width: 43%;
  height: 2.5rem;
  border: 1px solid #ccc;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='grey' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 5px;
  border-radius: 2px;
  margin-right: 2rem;
  padding-left: 1rem;
  padding-right: 2rem;
}

.form #logradouro,
.form #complemento,
.form #bairro,
.form #referencia {
  width: 97%;
}

#referencia, #cpf {
  margin-bottom: 2rem;
}

.form input[type="radio"] {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  cursor: pointer;
  padding-top: 1rem ;
  margin: .3rem .5rem .3rem 0;
}

.form label {
  display: flex;
  align-items: center;
}

.form .info_plano {
  font-weight: 700;
  margin-right: .3rem;
}

.form .extra_info {
  font-size: .8rem;
  margin-left: .3rem;
}

.form .btn_planos,
.form .btn_pagamento,
.form .btn_vencimento {
  margin-left: 1rem;
}

.form .title_planos p {
  background-color: rgb(245, 245, 245);
  padding: .5rem 0 .5rem 1rem;
  color: grey;
  font-size: 1.1rem;
}

.form .adesao_planos {
  margin: 1rem 0 2rem 1rem;
}

.form .adesao_planos_pagamento {
  margin: 1rem 0 -1rem 1rem;
}

.form .adesao_planos h4 {
  margin-bottom: .5rem;
  font-weight: normal;
  color: grey;
}

.form .adesao_planos p,
.form .adesao_planos_pagamento p {
  font-size: .9rem;
  color: grey;
}

.form .adesao_planos p span {
  color: var(--grey-letter);
  font-weight: 700;
}

.form .adesao_planos h6 {
  font-size: .7rem;
  color: grey;
  font-weight: normal;
}

.box_item_campos {
  margin: 1.5rem 0 3rem 1rem;
}

.form .btn_vencimento {
  display: flex;
  margin-bottom: 2rem;
}

.form .cinco {
  margin-left: 2.5rem;
}

.form #nome_no_cartao {
  width: 97%;
}

/*Tablet*/
@media (min-width: 601px) and (max-width:1023px) {

  .card_compreAgora {
    display: none;
  }

  .header_form {
    width: 100%;
    display: block;
    padding: 0;
  }

  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo img,
    .logo_footer img {
      margin-top: 1rem;
      width: 10rem;
    }

    main {
      padding: 1.5rem;
    }

    .container {
      margin-top: 7rem;
    }

    .indicador {
      margin-top: 1rem;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: 8rem;
    }

    .item_dados {
      margin: 0 1rem 0 1rem;
    }

    .item_dados h3 {
      color: var(--blue);
      font-size: .7rem;
      width: 11rem;
    }

    .footer_itens {
      padding: 1.5rem 2rem;
    }

}

@media (min-width: 1023px) and (max-width: 1150px) {

  .header_form {
    padding: 1rem 5rem;
  }

  .indicador .line {
    width: 78%;
  }

  main {
    padding: 2rem 5rem 5rem 5rem;
  }

  .footer_itens {
    padding: 1.5rem 5rem;
  }

}

/*Mobile*/
@media (max-width:600px) {
  .container {
    margin: 8rem 0 0 0;
    padding: 0;
  }

    .card_compreAgora {
      display: none;
    }

    .header_form {
      width: 100%;
      display: block;
      padding: 0;
    }

    .logo {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo img,
    .logo_footer img {
      margin-top: 1rem;
      width: 10rem;
    }

    main {
      padding: 1.5rem;
    }

    .indicador {
      margin-top: 1rem;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: 4rem;
    }

    .item_dados {
      margin: 0 1rem 0 1rem;
    }

    .item_dados h3 {
      color: var(--blue);
      font-size: .7rem;
      width: 5rem;
    }
    
    .title_page {
      margin-top: 1rem;
    }

    .title_page h2 {
      text-align: center;
    }

    .tab .form input {
     width: 95%;
      padding-left: .8rem;
      height: 3rem;
    }

    .form #nome,
    .form #email,
    .form #mae {
        width: 95%;
    }

    .form #logradouro,
    .form #complemento,
    .form #bairro,
    .form #referencia {
      width: 95%;
    }

    .form select {
      width: 100%;
      height: 2.8rem;
    }

    .form .btn_planos,
    .form .btn_pagamento,
    .form .btn_vencimento {
      margin-left: .2rem;
    }

    .form .title_planos p {
      padding: .2rem;
      font-size: 1rem;
    }

    .box_item_campos {
      margin: 1.5rem 0 2rem 0;
    }

    .form .adesao_planos_pagamento {
      margin-left: 0;
    }

    .form .adesao_planos_pagamento p {
      font-size: .7rem;
    }

    .form input[type="radio"]{
      width: 15px!important;
      height: 15px!important;
      margin-right: 5px!important;
    }

    .form .btn_planos label {
      font-size: .64rem;
    }

    .form .info_plano {
      margin-right: 2px;
    }

    .form .extra_info {
      margin-left: 2px;
      font-size: .6rem;
    }

    .form .adesao_planos {
      margin: 1rem 0;
    }

    .form .adesao_planos p {
      font-size: .65rem;
    }

    .form .adesao_planos h4 {
      font-size: .8rem;
    }

    .form .adesao_planos h6 {
      font-size: .56rem;
    }

    form .btn {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    form .btn button {
      padding: 0;
      margin-left: 2px;
    }

    .next {
      width: 18rem;
    }

    .prev {
      width: 13rem;
    }

    form .btn button.next,
    form .btn button.prev {
      padding: 1rem 1rem;
    }

    .info_importante p {
      margin-top: .1rem;
    }

    .info_compre {
      margin-top: 1rem;
    }

    .info_mobile {
      display: none;
    }

    .footer_itens {
      flex-direction: column;
      justify-content: center;
      padding: 1rem 0 2rem 0;
    }
}