.content { float:left; width:92%; margin:0 4%; padding: 20px 0; }

/*BTN*/
.btn-download       { background-color:#ee2727; color:#fff; border-radius: 50px; font-family: 'open_sansregular'; padding: 0.5em 0.8em; display:block; float: none; text-decoration: none; margin: auto; width:100%; font-size: 1.5em; text-align: center; line-height: 40px; }
.btn-download:hover { background-color:#d00f0f; color:#fff; }

/*HEADER*/
.main_header          { background:#ffffff; border-bottom:1px #f4f4f4 solid; z-index:1; padding: 0.5em 0em; }
.main_header .content { float:left; padding:0px 0; }

.fixed            { display:block; position:fixed; z-index:9;  }
.main_header_logo { text-align:center; margin:auto; float:none; width:138px; }
.main_header_logo img { height:69px; }

/*PUBLICIDADE*/
.boxBannerTopo   { padding:0em 0; background-color:transparent; }
.bannerTopo      { width:100%; float:left; background-color:#fff; border:1px solid #e9ebee; }
.bannerTopo .imagemBan   { margin:auto; max-width:900px; overflow:hidden; }
.bannerTopo .imagemBan a { width:100%; height:100%; float:left; display:block; }

/*Seu Código*/
.section-seu-codigo          { padding:10px 0px; background-color:#f4f4f4; }
.section-seu-codigo .content { float:left; padding:1em 0; }
.section_title               { width: 100%; float:left; margin-bottom:1em; font-size:1.3em; font-weight: 300; text-align: center; border-bottom: 1px #eceaea solid; padding-bottom: 1em; }

.box-artigo   { width:100%; float:left; background:#fff; box-shadow: 1px 0px 1.2px 0px #e3e3e3; border-radius:3px; padding:1em; }

/*Formulário*/

.thirteen h1 {

  position: relative;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  width: 215px;
  text-align: center;
  margin: auto;
  white-space: nowrap;
  border: 2px solid #dbdbdb;
  color: #dbdbdb;
  padding: 5px 11px 3px 11px;
  border-radius: 3px;

}

.thirteen h1:before, .thirteen h1:after {

    background-color:transparent;
    color: #dbdbdb;
    position: absolute;
    font-family: "untitled-font-1";
    content: '\e42c';
    height: 20px;
    width: 20px;
    bottom: 8px;
    line-height: 20px;
    font-size: 15px;

}

.thirteen h1:before {
   left:-30px;
}

.thirteen h1:after {
   right:-30px;
}

.box-formulario {

    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #575f60;
    padding:60px 0;

}

.formulario {

    width: 700px;
    background: #575f60;
    padding: 60px 5%;
    text-align: center;

}


.formulario span {
  position: relative;
  display: flex;
  margin: 45px 10px;

}

/*input Animado*/

.input-swing-down {

  display: inline-block;
  width: 100%;
  height: 41px;
  padding: 10px 0 10px 70px;
  font-family: "Open Sans", sans;
  font-weight: 400;
  font-size: 1em;
  color: #575F60;
  background: #dbdbdb;
  border: 0;
  border-radius: 3px;
  outline: 0;
  transition: all .3s ease-in-out;

}

.input-swing-down::-webkit-input-placeholder {

  color: #575f60;
  font-weight: 300;

}

.input-swing-down + label {

  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 22px;
  text-shadow: 0 1px 0 rgba(19, 74, 70, 0.4);
  background: #8f9b9c;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  transform-origin: 2px 2px;
  transform: rotate(0);
  animation: swing-back .4s 1 ease-in-out;

}

@keyframes swing {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(116deg);
  }
  40% {
    transform: rotate(60deg);
  }
  60% {
    transform: rotate(98deg);
  }
  80% {
    transform: rotate(76deg);
  }
  100% {
    transform: rotate(80deg);
  }
}
@keyframes swing-back {
  0% {
    transform: rotate(82deg);
  }
  100% {
    transform: rotate(0);
  }
}

.input-swing-down:focus,
.input-swing-down:active {

  color: #000000;
  padding: 10px 0 10px 30px;  
  background: #fff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;

}

.input-swing-down:focus::-webkit-input-placeholder,
.input-swing-down:active::-webkit-input-placeholder {

  color: #aaa;

}

.input-swing-down:focus + label,
.input-swing-down:active + label {

  animation: swing 1.4s 1 ease-in-out;
  transform: rotate(80deg);
  color: #fff;

}


/*TextArea*/

.textarea-swing-down {

  display: inline-block;
  width: 100%;
  height: 78px;
  padding: 10px 0 10px 70px;
  font-family: "Open Sans", sans;
  font-weight: 400;
  font-size: 1em;
  resize: none;
  color: #575F60;
  background: #dbdbdb;
  border: 0;
  border-radius: 3px;
  outline: 0;
  transition: all .3s ease-in-out;

}

.textarea-swing-down::-webkit-input-placeholder {

  color: #575f60;
  font-weight: 300;

}

.textarea-swing-down + label {

  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 22px;
  height: 78px;
  line-height: 60px;
  text-shadow: 0 1px 0 rgba(19, 74, 70, 0.4);
  background: #8f9b9c;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  transform-origin: 2px 2px;
  transform: rotate(0);
  animation: swing-back .4s 1 ease-in-out;

}

@keyframes swing {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(116deg);
  }
  40% {
    transform: rotate(60deg);
  }
  60% {
    transform: rotate(98deg);
  }
  80% {
    transform: rotate(76deg);
  }
  100% {
    transform: rotate(80deg);
  }
}
@keyframes swing-back {
  0% {
    transform: rotate(82deg);
  }
  100% {
    transform: rotate(0);
  }
}

.textarea-swing-down:focus,
.textarea-swing-down:active {

  color: #000000;
  padding: 10px 0 10px 30px;  
  background: #fff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;

}

.textarea-swing-down:focus::-webkit-input-placeholder,
.textarea-swing-down:active::-webkit-input-placeholder {

  color: #aaa;

}

.textarea-swing-down:focus + label,
.textarea-swing-down:active + label {

  animation: swing 1.4s 1 ease-in-out;
  transform: rotate(80deg);
  color: #fff;

}

/*Botão*/
.box-btn { 

 width: 100%;
 padding: 0 10px;
 float: left;

}


.btn-3d {

  top: 0;
  left: 0;
  transition: all 0.15s linear 0s;
  display: block;
  margin: auto;
  width: 200px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  background-color: #8F9B9C;
  color: #090B0B;
  letter-spacing: 2px;
  box-shadow: -6px 6px 0 #393939;
  text-decoration: none;

}

.btn-3d:hover {
  top: 3px;
  left: -3px;
  box-shadow: -3px 3px 0 #393939;
}
.btn-3d:hover::after {
  top: 1px;
  left: -2px;
  width: 4px;
  height: 4px;
}
.btn-3d:hover::before {
  bottom: -2px;
  right: 1px;
  width: 4px;
  height: 4px;
}
.btn-3d::after {
  transition: all 0.15s linear 0s;
  content: "";
  position: absolute;
  top: 2px;
  left: -4px;
  width: 8px;
  height: 8px;
  background-color: #404040;
  transform: rotate(45deg);
  z-index: 1;
}
.btn-3d::before {
  transition: all 0.15s linear 0s;
  content: "";
  position: absolute;
  bottom: -4px;
  right: 2px;
  width: 8px;
  height: 8px;
  background-color: #404040;
  transform: rotate(45deg);
  z-index: 1;
}

.btn-3d {
  position: relative;
}

button:active.btn-3d {

  top: 6px;
  left: -6px;
  box-shadow: none;

}

button:active.btn-3d:before {
  bottom: 1px;
  right: 1px;
}
button:active.btn-3d:after {
  top: 1px;
  left: 1px;
}
button.btn-3d i { 

  display: block;
  background:#8F9B9C;
  font-family: 'open_sansregular';
  padding: 15px;
  z-index: 2;
  position: inherit;
  font-style: normal; 
  
}

/*Formulário*/

/*Seu Download*/
.section-seu-download          { padding:10px 0px; background-color:#f4f4f4; }
.section-seu-download .content { float:left; padding:1em 0; }
.box-download                  { width:100%; float:left; background:transparent; padding:1em; }

/*FOOTER*/
.main_footer          { background-color:#353535; color:#fff; font-size:0.875em; }
.main_footer .content { padding:3em 0em; }

.main_footer_copy       { background-color:#262626; width:100%; float:left; text-align:center; padding:1.5em 0em; }
.main_footer_copy p     { font-family:'open_sanslight'; font-size:1em; color:#e1e0e0; height:20px; }
.main_footer_copy .m-b-footer   { margin-bottom:0.5em; }
.main_footer_copy .by   { font-size:0.96em; }
.main_footer_copy .by i { font-size:0.96em; margin-right:3px; color:#e82626; }
.main_footer_copy .by a { text-decoration:underline; color:#ffffff; }
.main_footer_copy .by a:hover { color:#007cff;}


/*Começa o Responsivo*/

/*480PX BREAKPOINT*/
/*480 dividido por 16 = 30em*/
@media (min-width:30em){

.boxBannerTopo { padding:1em 0; }

}

/*600PX BREAKPOINT*/
/*600 dividido por 16 = 37,5em*/
@media (min-width:37em){


} 

/*768PX BREAKPOINT*/
/*768 dividido por 16 = 48em*/
@media (min-width:48em){


} 

/*960PX BREAKPOINT*/
/*960 dividido por 16 = 60em*/
@media (min-width:60em){

 .section-seu-codigo          { padding:20px 0px; }
 .section-seu-codigo .content { width:80%; padding:1em 0; margin:0 10%; }

.btn-download { width:35%; }

}

/*1280PX BREAKPOINT*/
/*1280 dividido por 16 = 80em*/
@media (min-width:80em){

 
}

/*1366PX BREAKPOINT*/
/*1366 dividido por 16 = 85,375em*/
@media (min-width:85em){

 .content  { width:80%; margin:0 10%; }

}

/*1600PX BREAKPOINT*/
/*1600 dividido por 16 = 100em*/
@media (min-width:100em){


}
/*Fecha o Responsivo*/
