/********************************* CORES *********************************/
/********************************* FONTS *********************************/
@font-face {
  font-family: "Gotham Book";
  src: url("../fonts/GothamBook.ttf") format("truetype");
}
@font-face {
  font-family: "Gotham BlackItalic";
  src: url("../fonts/Gotham-BlackItalic.ttf") format("truetype");
}
/********************************* GERAL *********************************/
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
* {
  font-family: 'Gotham Book', Open Sans, Arial, Helvetica, sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #1E62F9;
}
.transition {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.no-transition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
.fast {
  -webkit-transition-duration: 100ms;
  -moz-transition-duration: 100ms;
  -o-transition-duration: 100ms;
  transition-duration: 100ms;
}
.slow {
  -webkit-transition-duration: 500ms;
  -moz-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
}
.fluid {
  max-width: 100%;
}
.clear {
  clear: both;
}
a,
button,
label {
  text-decoration: none;
  color: inherit;
  border: 0;
  outline: 0;
  background: none;
  cursor: pointer;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
}
a:hover,
button:hover,
label:hover {
  text-decoration: none;
}
ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.tabled {
  display: table;
}
.tabled > div {
  display: table-cell;
  vertical-align: middle;
}
.botao {
  background-color: #FA3A1D;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  display: inline-block;
  text-align: center;
  padding: 3px;
  transform: skewX(-10deg);
  background-clip: content-box;
  -webkit-backface-visibility: hidden;
  box-shadow: 3px 3px 0px 0px #000;
}
.botao span {
  font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFF;
  font-size: 16px;
  display: block;
  padding: 15px 35px;
  line-height: 120%;
  transform: skewX(10deg);
  -webkit-backface-visibility: hidden;
}
.botao:hover {
  background-color: #1E62F9;
}
.tooltip {
  display: none;
  position: absolute;
  top: -35px;
  padding: 5px 10px;
  font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: #FFF;
  background: #1E62F9;
  width: 130px;
  left: 50%;
  transform: translateX(-50%);
}
.tooltip::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #1E62F9;
}
/*********************************** FORMAS ***********************************/
.il {
  display: inline;
}
.bl {
  display: block;
}
.ib {
  display: inline-block;
}
.rd100 {
  border-radius: 100vh;
}
.m0 {
  margin: 0;
}
.p0 {
  padding: 0;
}
/*********************************** FONTES TEXTOS ***********************************/
.ultra {
  font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.uc {
  text-transform: uppercase;
}
.t9 {
  font-size: 9px;
}
.t11 {
  font-size: 11px;
}
.t12 {
  font-size: 12px;
}
.t13 {
  font-size: 13px;
}
.t14 {
  font-size: 14px;
}
.t15 {
  font-size: 15px;
}
.t16 {
  font-size: 16px;
}
.t18 {
  font-size: 18px;
}
.t20 {
  font-size: 20px;
}
.t22 {
  font-size: 22px;
}
.t24 {
  font-size: 24px;
}
.t26 {
  font-size: 26px;
}
.t28 {
  font-size: 28px;
}
.t32 {
  font-size: 32px;
}
.t36 {
  font-size: 36px;
}
.t37 {
  font-size: 37px;
}
.t42 {
  font-size: 42px;
}
.t48 {
  font-size: 48px;
}
.t56 {
  font-size: 56px;
}
.t72 {
  font-size: 72px;
}
.t84 {
  font-size: 84px;
}
.t96 {
  font-size: 96px;
}
.t108 {
  font-size: 108px;
}
.t114 {
  font-size: 114px;
}
.t126 {
  font-size: 126px;
}
.lh110 {
  line-height: 110%;
}
.lh120 {
  line-height: 120%;
}
.lh140 {
  line-height: 140%;
}
.lh160 {
  line-height: 160%;
}
.lh180 {
  line-height: 180%;
}
.tc {
  text-align: center;
}
/*********************************** CONTAINER ***********************************/
::-webkit-scrollbar {
  width: 8px;
  background: #FFF;
}
::-webkit-scrollbar-track {
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #1E62F9;
}
::-webkit-scrollbar-thumb:window-inactive {
  background: #1E62F9;
}
.container-fluid {
  margin: 0;
  padding: 0;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.container {
  margin: auto;
  padding: 0;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}
@media (min-width: 576px) {
  .container {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 1022px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}
/*********************************** ANIMAÇÕES ***********************************/
@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
.shake {
  animation: shake 0.3s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
/*********************************** SLICKER ***********************************/
.slick-track:after,
.slick-track:before {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-arrow {
  position: absolute;
  right: 50%;
  transform: translateX(-50px);
  z-index: 99;
  overflow: hidden;
  text-indent: -200px;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background-image: url("../img/chevron.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  outline: none !important;
  border: none !important;
  height: 100px;
  width: 35px;
}
.slick-arrow:hover {
  transform: translateX(-50px) scale(1.2);
}
.slick-arrow.slick-next {
  right: inherit;
  left: 50%;
  bottom: 0;
  transform: translateX(50px) rotate(180deg);
}
.slick-arrow.slick-next:hover {
  transform: translateX(50px) rotate(180deg) scale(1.2);
}
.slick-arrow.slick-disabled {
  opacity: 0;
}
#slicker {
  width: 100%;
  max-width: 360px;
  padding-bottom: 0;
  padding-top: 100px;
}
#slicker .item {
  float: left;
  padding: 0 1rem;
  min-height: 50px;
}
#slicker .item img,
#slicker .item iframe {
  display: block;
  width: 100%;
  min-width: 100% !important;
}
#slicker .item > * {
  min-height: 340px;
}
#slicker .slick-arrow {
  bottom: auto;
  top: 60px;
}
/*********************************** ELEMENTOS ***********************************/
@media all {
  body {
    padding-top: 50px;
  }
  #share-inp,
  #menu-inp {
    display: none !important;
  }
  #topo {
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 11px 0;
    z-index: 1000;
  }
  #topo > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1920px;
    margin: auto;
  }
  #topo > div #share-label svg {
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  #topo > div #share-label:hover svg {
    transform: rotate(45deg);
  }
  #topo > div #menu-label {
    display: inline-block;
    margin: 0;
    padding: 0;
  }
  #topo > div #menu-label .svg {
    width: 30px;
    height: 30px;
    position: relative;
  }
  #topo > div #menu-label .svg > div {
    position: absolute;
    left: 0;
    background-color: #FFF;
    width: 30px;
    height: 3px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  #topo > div #menu-label .svg #ret1 {
    top: 5px;
  }
  #topo > div #menu-label .svg #ret2 {
    bottom: 5px;
  }
  #topo > div #menu-label:hover .svg #ret1 {
    top: 8px;
  }
  #topo > div #menu-label:hover .svg #ret2 {
    bottom: 8px;
  }
  nav#menu {
    position: fixed;
    top: 54px;
    right: 0;
    margin: 0;
    padding: 20px 0 60px;
    width: 100%;
    max-width: 480px;
    background-color: #000;
    z-index: 999;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    transform: rotateY(-91deg) skewY(5deg);
    transform-origin: top right;
    transition-duration: 400ms;
    backface-visibility: hidden;
    height: 100%;
  }
  nav#menu ul {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  nav#menu ul li a {
    display: block;
    color: #FFF;
    font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;
    padding: 15px 60px;
    text-align: center;
    max-width: 360px;
    margin: auto;
    line-height: 140%;
  }
  nav#share {
    position: fixed;
    top: 54px;
    left: 0;
    margin: 0;
    padding: 20px 0 60px;
    width: 100%;
    max-width: 480px;
    background-color: #000;
    z-index: 999;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    transform: rotateY(91deg) skewY(-5deg);
    transform-origin: top left;
    transition-duration: 400ms;
    backface-visibility: hidden;
    height: 100%;
  }
  nav#share ul {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  nav#share ul li a {
    display: block;
    padding: 15px 60px;
    text-align: center;
    max-width: 360px;
    margin: auto;
    line-height: 140%;
  }
  nav#share ul li a .change {
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    transition-duration: .3s;
  }
  nav#share ul li a:hover .change {
    fill: #1E62F9;
  }
  /* MENU ABERTO */
  #menu-inp:checked ~ nav#menu {
    transform: rotate(0deg) skewY(0deg);
  }
  #menu-inp:checked ~ #topo #menu-label .svg #ret1 {
    transform: translateY(8px) rotate(45deg);
  }
  #menu-inp:checked ~ #topo #menu-label .svg #ret2 {
    transform: translateY(-9px) rotate(-45deg);
  }
  #menu-inp:checked ~ #topo #menu-label:hover .svg #ret1 {
    top: 5px;
  }
  #menu-inp:checked ~ #topo #menu-label:hover .svg #ret2 {
    bottom: 5px;
  }
  /* SHARE ABERTO */
  #share-inp:checked ~ nav#share {
    transform: rotate(0deg) skewY(0deg);
  }
  #share-inp:checked ~ #topo #share-label svg {
    transform: rotate(90deg);
  }
  #capa {
    background-color: #1E62F9;
    /*height: 50vw; max-height: 80vh; min-height: 700px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 100px;
    background-image: url("../img/back-novo.png");
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
  }
  #capa::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: 100% 100%;
    background-image: linear-gradient(to top, #1E62F9, transparent);
    width: 100%;
    height: 200px;
  }
  #capa h1 {
    margin: 0;
    padding: 0;
  }
  #capa h1 svg {
    width: 160px;
    height: auto;
  }
  #capa h2 {
    margin: 35px auto 0px;
    padding: 0;
    font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    line-height: 120%;
    font-size: 20px;
    max-width: 340px;
  }
  #capa p {
    margin: 40px auto;
    padding: 0;
    color: #FFF;
    line-height: 140%;
    font-size: 14px;
    max-width: 270px;
  }
  #capa a.botao {
    display: none;
  }
  #capa a.botao:hover {
    background-color: #000;
  }
  #capa a.botao.fixed {
    position: fixed;
    display: inherit;
    top: 6px;
    left: 50%;
    width: 230px;
    transform: translateX(-50%) skewX(-10deg);
    z-index: 1000;
    box-shadow: 3px 3px 0px 0px #FFF;
  }
  #capa a.botao.fixed span {
    font-size: 12px;
    padding: 9px 4px;
  }
  #capa a.botao.fixed:hover {
    background-color: #1E62F9;
  }
  #peticao {
    position: relative;
    padding-top: 0px;
    padding-bottom: 150px;
    overflow: hidden;
  }
  #peticao::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-size: 100% 100%;
    background-image: linear-gradient(to bottom left, #1E62F9 50%, #FFF calc(50.4%));
    width: 100%;
    height: 16vw;
  }
  #peticao::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: 100% 100%;
    background-image: linear-gradient(to bottom right, #FFF 50%, #1E62F9 calc(50.9%));
    width: 100%;
    height: 6vw;
  }
  #peticao .container {
    max-width: 560px;
    padding-left: 30px;
    padding-right: 30px;
  }
  #peticao h5 big {
    font-size: 56px;
    color: #1E62F9;
    font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  #peticao h5 small {
    font-size: 14px;
    color: #1E62F9;
    font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: -5px;
  }
  #peticao h5 small.alt {
    font-size: 18px;
    margin-top: -10px;
    color: #FA3A1D;
  }
  #peticao #seringa {
    position: relative;
    display: block;
    width: 100%;
    min-width: 310px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    transform: translateX(-160px);
  }
  #peticao #seringa #seringa-embulo {
    position: absolute;
    width: 71.8%;
    height: auto;
    top: 13.2%;
    right: 36.5%;
    /*até right:94.8%*/
  }
  #peticao #seringa #seringa-glass {
    position: absolute;
    top: 24%;
    right: 35%;
    height: 50%;
    width: 65%;
    background-color: rgba(255, 255, 255, 0.5);
  }
  #peticao #seringa #seringa-bar {
    position: absolute;
    top: 24%;
    right: 31%;
    height: 50%;
    width: 6%;
    /*até width:64%*/
    background-color: #1E62F9;
    border-top-right-radius: 100vh;
    border-bottom-right-radius: 100vh;
  }
  #peticao #seringa #seringa-frasco {
    position: relative;
    width: 100%;
  }
  #peticao ul#nomes {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-top: 20px;
    height: 177px;
    overflow: hidden;
    scroll-behavior: smooth;
  }
  #peticao ul#nomes li {
    font-size: 14px;
    color: #000;
    margin-bottom: 10px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    height: 20px;
    width: 600px;
  }
  #peticao ul#nomes li span {
    color: #1E62F9;
    font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-transform: none;
  }
  #peticao form {
    background-color: #1E62F9;
    margin: 0px -30px 50px;
    padding: 30px;
    padding-bottom: 90px;
    position: relative;
  }
  #peticao form .af-sent {
    display: none;
  }
  #peticao form::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: 100% 100%;
    background-image: linear-gradient(to bottom right, #1E62F9 50%, #FFF calc(51%));
    width: 100%;
    height: 60px;
  }
  #peticao form .bf-sent h3 {
    font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 22px;
    color: #FFF;
    text-align: center;
    line-height: 120%;
    margin-top: 0;
    margin-bottom: 10px;
  }
  #peticao form .bf-sent input.text {
    width: 100%;
    height: 45px;
    padding: 10px;
    color: #000;
    margin-top: 15px;
  }
  #peticao form .bf-sent p {
    color: #FFF;
    font-size: 16px;
    margin: 15px 0;
    padding: 0;
  }
  #peticao form .bf-sent p.small {
    font-size: 12px;
  }
  #peticao form .bf-sent p a {
    color: #000;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  #peticao form .bf-sent p a:hover {
    text-decoration: underline !important;
  }
  #peticao form .bf-sent .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
  }
  #peticao form .bf-sent .flex input {
    width: 25px;
    height: 25px;
    padding: 10px;
    float: left;
    margin-right: 10px;
  }
  #peticao form .bf-sent .flex label {
    color: #FFF;
    font-size: 16px;
  }
  #peticao form .bf-sent .form-group {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  #peticao form .bf-sent .form-group input {
    width: 25px;
    height: 25px;
    padding: 10px;
    margin-right: 10px;
  }
  #peticao form .bf-sent .form-group label {
    color: #FFF;
    font-size: 12px;
  }
  #peticao form .bf-sent .submit {
    display: flex;
    margin-top: 30px;
    margin-left: -30px;
  }
  #peticao form .bf-sent .submit .mao {
    background-image: url("../img/mao.svg");
    background-size: auto 100%;
    background-position: right center;
    background-repeat: no-repeat;
    width: 100%;
    height: 62px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  #peticao form .bf-sent .submit button {
    display: block;
    box-shadow: 3px 3px 0px 0px #FFF;
    flex: 0 0 56%;
    /*até 56%*/
    -webkit-transition: background-color 300ms ease-in-out;
    -moz-transition: background-color 300ms ease-in-out;
    -o-transition: background-color 300ms ease-in-out;
    transition: background-color 300ms ease-in-out;
  }
  #peticao form .bf-sent .submit button span {
    padding: 15px;
  }
  #peticao form .bf-sent .submit button:hover {
    background-color: #000;
  }
  #peticao form .af-sent {
    text-align: center;
  }
  #peticao form .af-sent p.alerta {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 140%;
    color: #FFF;
  }
  #peticao form .af-sent h4 {
    font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 24px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
  }
  #peticao form .af-sent .flex > div a svg {
    width: 60px;
    height: 60px;
  }
  #peticao form .af-sent .flex > div a svg .color {
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  #peticao form .af-sent .flex > div a:hover .color {
    fill: #1E62F9;
  }
  #peticao form .af-sent .flex > div > p {
    font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    color: #FFF;
    margin-bottom: 30px;
  }
  #peticao form .af-sent .flex a {
    display: inline-block;
    margin: 0 5px;
  }
  #peticao form .af-sent .flex.center {
    justify-content: center;
  }
  #peticao form .af-sent .flex.center p {
    margin-right: 10px;
    color: #FFF;
  }
  #peticao form .af-sent .flex.center a {
    display: inline-block;
    margin: 0 10px;
  }
  #peticao form .af-sent .flex.center a .color {
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  #peticao form .af-sent .flex.center a:hover .color {
    fill: #1E62F9;
  }
  #peticao #decoy img {
    max-width: 100px;
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
  }
  #peticao #decoy h5 {
    font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1E62F9;
    font-size: 16px;
    line-height: 120%;
    flex: 1 1 320px;
  }
  #peticao #decoy .ver-carta {
    clear: both;
    color: #FA3A1D;
    font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 700;
  }
  #peticao #decoy .ver-carta svg {
    float: left;
    margin-right: 5px;
    margin-bottom: 20px;
  }
  #peticao #decoy .ver-carta svg path {
    fill: #FA3A1D;
  }
  #peticao .col p {
    color: #000;
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 20px;
  }
  #peticao .col ul,
  #peticao .col ol {
    list-style-type: disc;
    padding-left: 40px;
  }
  #peticao .col ul li,
  #peticao .col ol li {
    color: #000;
  }
  #caixas {
    padding-top: 50px;
    padding-bottom: 20px;
    background-color: #1E62F9;
  }
  #caixas .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #caixas .explicacao {
    flex: 0 0 100%;
  }
  #caixas .explicacao p {
    color: #000;
    font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 600;
    max-width: 300px;
    text-align: center;
    line-height: 120%;
    position: relative;
    margin: 30px auto;
  }
  #caixas .caixa {
    display: block;
    text-align: center;
    padding: 0;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    -webkit-transition-duration: 500ms;
    -moz-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
    width: 320px;
    margin: 0 auto 50px;
    break-inside: avoid;
    cursor: pointer;
    position: relative;
  }
  #caixas .caixa * {
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  #caixas .caixa .imagem {
    position: relative;
  }
  #caixas .caixa .imagem svg {
    position: relative;
    width: 100%;
    height: 200px;
  }
  #caixas .caixa .imagem svg * {
    -webkit-transition-duration: 500ms;
    -moz-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
  }
  #caixas .caixa .imagem svg .hide {
    opacity: 0;
  }
  #caixas .caixa .imagem svg .color {
    fill: #D4E2FF;
  }
  #caixas .caixa .info {
    background-color: #000;
    max-height: 0px;
    overflow: hidden;
    position: relative;
    padding: 0px 25px;
    margin-top: -60px;
    -webkit-transition-duration: 500ms;
    -moz-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
  }
  #caixas .caixa .info::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: 100% 100%;
    background-image: linear-gradient(to bottom left, #000 50%, #1E62F9 calc(51%));
    width: 100%;
    height: 40px;
  }
  #caixas .caixa .info h3 {
    color: #FFF;
    font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 120%;
    font-size: 20px;
  }
  #caixas .caixa .info a.botao {
    box-shadow: 3px 3px 0px 0px #FFF;
    margin-bottom: 15px;
  }
  #caixas .caixa .info a.botao span {
    padding: 10px 15px;
    font-size: 12px;
  }
  #caixas .caixa .info p {
    color: #FFF;
    line-height: 140%;
    font-size: 14px;
  }
  #caixas .caixa .info p a {
    color: #FA3A1D;
  }
  #caixas .caixa .info p a:hover {
    color: #1E62F9;
  }
  #caixas .caixa .info p.alt a {
    color: #1E62F9;
  }
  #caixas .caixa .info p.alt a:hover {
    color: #FA3A1D;
  }
  #caixas .caixa .info p .share {
    margin: 5px 15px;
  }
  #caixas .caixa .info p .share:hover svg .change {
    fill: #FA3A1D;
  }
  #caixas .caixa > h3 {
    color: #D4E2FF;
    font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 140%;
    font-size: 20px;
    margin-top: 60px;
  }
  #caixas .caixa:hover .imagem svg .color {
    fill: #FFF;
  }
  #caixas .caixa:hover > h3 {
    color: #FFF;
  }
  #caixas .cx-inp {
    display: none !important;
  }
  #caixas .cx-inp:checked + .caixa {
    padding-bottom: 0px;
  }
  #caixas .cx-inp:checked + .caixa .imagem svg .hide {
    opacity: 1;
  }
  #caixas .cx-inp:checked + .caixa .imagem svg .color {
    fill: #FFF;
  }
  #caixas .cx-inp:checked + .caixa .info {
    max-height: 900px;
    padding: 70px 25px 55px;
  }
  #caixas .cx-inp:checked + .caixa > h3 {
    display: none;
  }
  #caixas .cx-mais {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    flex: 0 0 100%;
  }
  #caixas .cx-mais #cx-mais {
    display: inline-block;
  }
  #caixas .cx-mais #cx-mais span {
    display: block;
    font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFF;
    font-size: 16px;
    margin-bottom: 10px;
  }
  #caixas .cx-mais #cx-mais * {
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  #caixas .cx-mais #cx-mais:hover svg {
    transform: translateY(30px);
  }
  #caixas .cx-mais #cx-mais:hover * {
    color: #000;
    fill: #000;
  }
  #acompanhe {
    padding-top: 200px;
    padding-bottom: 200px;
    background-color: #000;
    position: relative;
    overflow: hidden;
  }
  #acompanhe::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-size: 100% 100%;
    background-image: linear-gradient(to bottom right, #1E62F9 50%, #000 calc(50.4%));
    width: 100%;
    height: 15vw;
  }
  #acompanhe::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: 100% 100%;
    background-image: linear-gradient(to bottom left, #000 50%, #1E62F9 calc(50.4%));
    width: 100%;
    height: 15vw;
  }
  #acompanhe h2 {
    font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 36px;
    color: #1E62F9;
    text-align: center;
  }
  #sobre {
    padding-top: 100px;
    padding-bottom: 200px;
    background-color: #1E62F9;
    position: relative;
    text-align: center;
  }
  #sobre::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: 100% 100%;
    background-image: linear-gradient(to bottom right, #1E62F9 50%, #FFF calc(50.9%));
    width: 100%;
    height: 5vw;
  }
  #sobre h2 {
    font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 36px;
    color: #FFF;
  }
  #sobre p {
    font-size: 16px;
    color: #FFF;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 140%;
  }
  #quem {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
  }
  #quem::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: 100% 100%;
    background-image: linear-gradient(to bottom right, #FFF 50%, #1E62F9 calc(50.9%));
    width: 100%;
    height: 6vw;
  }
  #quem h2 {
    font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1E62F9;
    font-size: 32px;
    margin-bottom: 50px;
  }
  #quem p {
    color: #000;
    font-size: 16px;
  }
  #quem .logos {
    padding-bottom: 50px;
  }
  #quem .logos img {
    display: inline-block;
    max-width: 100%;
    width: 120px;
    height: auto;
    margin: 20px;
  }
  #quem .logos.org img {
    width: 200px;
  }
  #aderir {
    padding-top: 50px;
    padding-bottom: 70px;
    position: relative;
    background-color: #1E62F9;
    border-bottom: solid 150px #000;
  }
  #aderir::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: 100% 100%;
    background-image: linear-gradient(to bottom left, #1E62F9 50%, #000 calc(50.9%));
    width: 100%;
    height: 8vw;
    z-index: 1;
  }
  #aderir * {
    position: relative;
    z-index: 5;
  }
  #aderir .container {
    max-width: 480px;
  }
  #aderir h2 {
    font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFF;
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 50px;
    text-align: center;
  }
  #aderir p.subtitulo {
    font-size: 16px;
    color: #FFF;
    text-align: center;
    line-height: 140%;
  }
  #aderir .flex > div:first-child {
    padding-bottom: 100px;
  }
  #aderir .flex h4 {
    color: #FFF;
    font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
  }
  #aderir .flex form {
    text-align: center;
    padding-bottom: 50px;
    max-width: 440px;
  }
  #aderir .flex form input {
    width: 100%;
    height: 45px;
    padding: 10px;
    color: #000;
    margin-bottom: 20px;
  }
  #aderir .flex form button {
    box-shadow: 3px 3px 0px 0px #FFF;
  }
  #aderir .flex form button:hover {
    background-color: #000;
  }
  #aderir .flex form .answer p {
    color: #FFF;
  }
  #aderir .flex a.big {
    color: #FFF;
    font-size: 12px;
    font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-transform: none;
    display: block;
    text-align: center;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    word-break: break-all;
  }
  #aderir .flex a.big:hover {
    color: #000;
  }
  #aderir #politica {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: block;
    text-align: center;
    color: #FA3A1D;
  }
  #aderir #politica a {
    font-family: 'Gotham BlackItalic', Open Sans, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    color: #FA3A1D;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  #aderir #politica a:hover {
    color: #FFF;
  }
  #aderir .credito {
    position: absolute;
    bottom: -120px;
    left: 0;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 9px;
    color: #1E62F9;
  }
  #aderir .credito a {
    color: #FFF;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  #aderir .credito a:hover {
    color: #FA3A1D;
  }
}
@media all and (min-width: 768px) {
  nav#share {
    max-width: 160px;
  }
}
@media all and (min-width: 768px) {
  #capa {
    padding-top: 50px;
  }
}
@media all and (min-width: 768px) {
  #capa h1 svg {
    width: 250px;
  }
}
@media all and (min-width: 768px) {
  #capa h2 {
    font-size: 42px;
    max-width: 730px;
    margin: 43px auto 0px;
  }
}
@media all and (min-width: 768px) {
  #capa p {
    font-size: 16px;
    max-width: 540px;
    margin-bottom: 63px;
  }
}
@media all and (min-width: 768px) {
  #capa a.botao span {
    font-size: 20px;
  }
}
@media all and (min-width: 768px) {
  #capa a.botao.fixed {
    width: 275px;
    top: 5px;
  }
}
@media all and (min-width: 768px) {
  #capa a.botao.fixed span {
    font-size: 14px;
    padding: 9px;
  }
}
@media all and (min-width: 768px) {
  #peticao {
    padding-top: 100px;
  }
}
@media all and (min-width: 1024px) {
  #peticao .container {
    max-width: 1024px;
  }
}
@media all and (min-width: 1200px) {
  #peticao .container {
    max-width: 1200px;
  }
}
@media all and (min-width: 1400px) {
  #peticao .container {
    max-width: 1400px;
  }
}
@media all and (min-width: 1024px) {
  #peticao .col {
    width: 50%;
    max-width: 670px;
    padding-right: 30px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media all and (min-width: 768px) {
  #peticao h5 big {
    font-size: 72px;
  }
}
@media all and (min-width: 768px) {
  #peticao h5 small {
    font-size: 20px;
  }
}
@media all and (min-width: 768px) {
  #peticao h5 small.alt {
    font-size: 32px;
  }
}
@media all and (min-width: 1024px) {
  #peticao #seringa {
    margin-left: 0;
    margin-right: 0;
  }
}
@media all and (min-width: 768px) {
  #peticao ul#nomes {
    height: 182px;
  }
}
@media all and (min-width: 1024px) {
  #peticao ul#nomes {
    margin-bottom: 50px;
  }
}
@media all and (min-width: 768px) {
  #peticao ul#nomes li {
    font-size: 16px;
  }
}
@media all and (min-width: 1024px) {
  #peticao form::before {
    background-image: linear-gradient(to bottom right, #000 50%, #FFF calc(51%));
  }
}
@media all and (min-width: 1024px) {
  #peticao form {
    position: absolute;
    right: 15px;
    top: 0;
    margin: 0;
    background-color: #000;
    width: 50%;
    max-width: 540px;
  }
}
@media all and (min-width: 768px) {
  #peticao form .bf-sent h3 {
    font-size: 32px;
  }
}
@media all and (min-width: 1024px) {
  #peticao form .bf-sent h3 {
    color: #1E62F9;
  }
}
@media all and (min-width: 1024px) {
  #peticao form .bf-sent p a {
    color: #FA3A1D;
  }
}
@media all and (min-width: 1024px) {
  #peticao form .bf-sent .flex label {
    display: inline-block;
    padding: 5px 0;
  }
}
@media all and (min-width: 1024px) {
  #peticao form .bf-sent .submit button {
    flex: 0 0 73%;
  }
}
@media all and (min-width: 1024px) {
  #peticao form .af-sent p.alerta {
    font-size: 16px;
  }
}
@media all and (min-width: 1024px) {
  #peticao form .af-sent h4 {
    font-size: 32px;
  }
}
@media all and (min-width: 1024px) {
  #peticao form .af-sent .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media all and (min-width: 1024px) {
  #peticao #decoy {
    display: flex;
    flex-wrap: wrap;
    max-width: 560px;
  }
}
@media all and (min-width: 1024px) {
  #peticao #decoy img {
    float: none;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 20px;
    flex: 0 0 90px;
  }
}
@media all and (min-width: 1024px) {
  #peticao #decoy .ver-carta {
    margin-left: 113px;
    /*flex: 0 0 100%;*/
  }
}
@media all and (min-width: 768px) {
  #peticao .col p {
    font-size: 16px;
  }
}
@media all and (min-width: 1024px) {
  #caixas .explicacao p {
    font-size: 32px;
    max-width: 630px;
    margin-bottom: 60px;
  }
}
@media all and (min-width: 768px) {
  #caixas .caixa {
    margin: 0 0 50px;
  }
}
@media all and (max-width: 991px) {
  #caixas .caixa:nth-of-type(8) ~ .caixa {
    display: none;
  }
}
@media all and (min-width: 992px) and (max-width: 1399px) {
  #caixas .caixa:nth-of-type(9) ~ .caixa {
    display: none;
  }
}
@media all and (min-width: 1400px) {
  #caixas .caixa:nth-of-type(12) ~ .caixa {
    display: none;
  }
}
@media all and (min-width: 768px) {
  #caixas .caixa .info {
    position: absolute;
    margin-top: 0;
    top: 132px;
    width: 100%;
  }
}
@media all and (min-width: 768px) {
  #caixas .caixa > h3 {
    margin-top: 0;
  }
}
@media all and (min-width: 768px) {
  #caixas .caixa:hover .imagem svg {
    animation: shake 0.3s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  }
}
@media all and (min-width: 768px) {
  #caixas .cx-inp:checked + .caixa .info {
    box-shadow: 5px 5px 15px 10px #1e62f9;
  }
}
@media all and (min-width: 768px) {
  #caixas .cx-inp:checked + .caixa > h3 {
    display: inherit;
  }
}
@media all and (min-width: 768px) {
  #caixas .cx-mais {
    padding-top: 50px;
    padding-bottom: 200px;
  }
}
@media all and (min-width: 1400px) {
  #quem .logos img {
    margin: 20px 30px;
  }
}
@media all and (min-width: 768px) {
  #aderir {
    padding-bottom: 120px;
  }
}
@media all and (min-width: 1024px) {
  #aderir .container {
    max-width: 992px;
  }
}
@media all and (min-width: 1024px) {
  #aderir .flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media all and (min-width: 1024px) {
  #aderir .flex a.big {
    margin-top: 104px;
    font-size: 20px;
    word-break: normal;
  }
}
