

:root {
  --colorPrimary: #0e1329;
  --fontPrimary: 'Roboto';
  --fontSecond: 'Bebas Neue';
  --primary-c: #2196F3;
  --secondary-c: #B2D7F5;
  --white: #FDFBFB;
  --text: #082943;  
  --bg: var(--primary-c);
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: var(--colorPrimary);
  color: #ffffff;
  font-family: var(--fontPrimary);
  border: none;
  outline: none;
}
a{
  text-decoration: none;
}

.title h1{
  text-align: center;
  background-color: var(--colorPrimary);
  margin-top: 20px;
  font-size: 5em;
  color: #fff;
  font-family: var(--fontSecond), sans-serif;
  text-align: center;
}
.font-1 {
  font-size: 2.8em !important;
  text-align: center;
}
.title h2{
  text-align: center;
  background-color: var(--colorPrimary);
  margin-top: 50px;
  font-size: 40px;
  color: #F29F05;
}

.title p{
  text-align: center;
  background-color: var(--colorPrimary);
  font-size: 20px;
}

.divButton{
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: var(--colorPrimary);
  margin-top: 0;
  padding: 15px;

}

.divButton h2{
  text-align: center;
  background-image: linear-gradient(to right bottom, #ff6200, #ff6f00, #ff7a00, #ff8500, #ff9000);
  height: auto;
  width: 100%;
  border-radius: 10px;
  padding: 15px;
  font-family: var(--fontPrimary), sans-serif;
  cursor: pointer;
  margin: 10px 0 10px 0;
  font-size: 2em;
  color: white;
}

.form h4{
  font-size: 28px;
  line-height: 45px;
  font-weight: lighter;
}

.form {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  height: auto;

}

.form input{
  background-color: #ffffff;
  color: black;
  padding: 10px;
  outline: none;
  border: none;
  margin: 0 0 20px 0;

}
label {
  margin-bottom: 5px;
  font-size: 1.3em;
}

.content {
  max-width: 980px;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .content {
    max-width: 100%;
    padding: 0 10px 0 10px;
  }
  .divButton h2 {
    font-size: 1.6em !important;
  }
}

.submit {
  text-align: center;
  background-image: linear-gradient(to right bottom, #ff6200, #ff6f00, #ff7a00, #ff8500, #ff9000);
  height: auto;
  width: 100%;
  border-radius: 10px;
  padding: 15px;
  font-family: var(--fontPrimary), sans-serif;
  cursor: pointer;
  margin: 10px 0 10px 0;
  font-size: 1em;
  color: #fff;
  font-weight: bold;
  font-size: 1.2em !important;
}

.form {
  margin-top: 20px;
}

#form {
  display: none;
}

.city-state {
  display: none;
}

.loading {
  text-align: center;
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 10px;
  display: none;
}

input[type="text"][disabled] {
  border:1px solid #bfc4c4;
  background-color: #d9dddd; background-image: linear-gradient(to bottom, #d9dddd, #c6c3c3);
}

.spanContact {
  color: #fff !important;
  font-size: 1.3em !important;
}


ul {
  list-style-type: none;
  padding-left: 50px;
  margin: 0;
}

li {
  display: block;
  position: relative;
  padding: 20px 0px;
}

h2 {
  margin: 10px 0;
  font-weight: 900;
}


/* Card
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.card {
  display: flex;
  flex-direction: column; 
  background: var(--white);
  width: 300px;
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.13);
}


/* Radio Button
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* section */
.atendente{
  margin: 0 auto;
  display: flex;
  max-width: 60%;
}

.light {
  --primary: hsl(250, 100%, 44%);
  --other: hsl(0, 0%, 14%);
}

/* label */
label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;

  margin: 12px 0;

  cursor: pointer;
  position: relative;
}


/* input */
#formContact input[type="radio"] {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
#formContact input[type="text"] {
  width: 100%;
  color: #fff;
  background: transparent;
  border-bottom: 1px solid #F29F05;
  font-size: 1.1em;
}
#formContact ::-webkit-input-placeholder {
  color: #F29F05;
}
#formContact :-moz-placeholder { /* Firefox 18- */
  color: #F29F05;  
}
#formContact ::-moz-placeholder {  /* Firefox 19+ */
  color: #F29F05;  
}
#formContact :-ms-input-placeholder {  
  color: #F29F05;  
}

/* .design */
.design {
  width: 16px;
  height: 16px;

  border: 1px solid #fff;
  border-radius: 100%;
  margin-right: 16px;

  position: relative;
}

.design::before,
.design::after {
  content: "";
  display: block;

  width: inherit;
  height: inherit;

  border-radius: inherit;

  position: absolute;
  transform: scale(0);
  transform-origin: center center;
}

.design:before {
  background: var(--other);
  opacity: 0;
  transition: .3s;
}

.design::after {
  background: var(--primary);
  opacity: .4;
  transition: .6s;
}


/* .text */
.text {
  color: #fff;
  font-weight: bold;
}


/* checked state */
#formContact input:checked+.design::before {
  opacity: 1;
  transform: scale(1.3);
  background-color: #F29F05;
}


/* other states */
#formContact input[type="radio"]:hover+.design,
#formContact input[type="radio"]:focus+.design {
  border: 1px solid #fff;
}

#formContact input[type="radio"]:hover+.design:before,
#formContact input[type="radio"]:focus+.design:before {
  background: #F29F05;
}

#formContact input[type="radio"]:hover~.text {
  color: #F29F05;
}

#formContact input[type="radio"]:focus+.design::after,
#formContact input[type="radio"]:active+.design::after {
  opacity: .1;
  transform: scale(2.6);
}

.email {
  display: none;
}

#solicitacao {
  width: 100%;
  display: none;
}
/* CONTATO */
#contact {
  width: 100%;
  display: none;
}

.responsive-img {
  width: 20%;
}

.centered {
  margin: 0 auto;
  display: table;
}
.mg10 {
  padding: 10px 0 10px 0;
}

/* ATENDIMENTO */
#atendimento {
  width: 100%;
  padding: 5px 20px 5px 20px;
  display: none;
}
.aviso {
  color: #ffc801;
}

#atendimento h2 {
  text-align: center;
  background-color: var(--colorPrimary);
  margin-top: 20px;
  font-size: 2em;
  color: #fff;
}

#atendimento h3 {
  line-height: 30px;
}

#concluir {
  text-align: center;
  background-color: #F29F05;
  height: auto;
  width: 100%;
  border-radius: 10px;
  padding: 15px;
  font-family: var(--fontPrimary), sans-serif;
  cursor: pointer;
  margin: 10px 0 10px 0;
  font-size: 2em;
  color: var(--colorPrimary);
  display: none;
}

@media screen and (max-width: 500px) {
  .responsive-img {
    width: 60%;
  }
}

/* Problemas e Interesse */
#problems, #interesse { 
  display: none; 
}

.btn-back {
	text-align: center;
  background-color: #F29F05;
  height: auto;
  width: 100%;
  border-radius: 10px;
  padding: 15px;
  font-family: var(--fontPrimary), sans-serif;
  cursor: pointer;
  margin: 10px 0 10px 0;
  font-size: 2em;
  color: var(--colorPrimary);
}
.btn-back i {
	background-color: #F29F05;
	color: var(--colorPrimary);
}

/* RASTRER PEDIDO */
#rastreio {
	display: none;
}

#rastrear {
	text-align: center;
  background-color: #F29F05;
  height: auto;
  width: 100%;
  border-radius: 10px;
  padding: 15px;
  font-family: var(--fontPrimary), sans-serif;
  cursor: pointer;
  margin: 10px 0 10px 0;
  font-size: 2em;
  color: white;
}

#rastreio-exibicao, .exibe, .naoencontrado {
	display: none;
}

#rastreio-exibicao h5 {
  text-align: center; margin: 0 auto; display: table;font-size: 1.5em;
}

.img-correios {
	width: 20%;
  margin: 0 auto;
  display: table;
}

@media screen and (max-width: 500px) {
  .img-correios {
    width: 50%;
  }
}

.address_correios {
	font-size: 1.5em;
  text-align: center;
  margin: 0 auto;
  display: table;
  color: yellow;
}

hr {
	border: 1px solid #fff;
}

.txt-align {
	text-align: center;
	font-size: 18px;
	margin: 0 auto;
  display: table;
}

.btn-rastreio {
  text-align: center;
  background-color: #F29F05;
  height: auto;
  width: 100%;
  border-radius: 10px;
  padding: 15px;
  font-family: var(--fontPrimary), sans-serif;
  cursor: pointer;
  margin: 10px 0 10px 0;
  font-size: 1.2em;
  color: var(--colorPrimary);
}
.btn-rastreio i {
  background-color: #F29F05;
  color: var(--colorPrimary);
}

.error-border {
  border: 1px solid red !important;
}