.animated {
  -webkit-animation-duration: 400ms;
          animation-duration: 400ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2%, 0);
            transform: translate3d(0, 2%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2%, 0);
            transform: translate3d(0, 2%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2%, 0);
            transform: translate3d(0, 2%, 0);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2%, 0);
            transform: translate3d(0, 2%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
          animation-name: fadeOutDown;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
html, body {
  height: 100%;
}

body {
  background: url("../img/background.jpg") no-repeat top center fixed #b7b1a2;
  background-size: cover;
}

.notext {
  display: inline-block;
  text-indent: 100%;
  overflow: hidden;
}

.conteudo {
  width: 100%;
  max-width: 960px;
  margin: auto;
}

button {
  background-color: #e33e41;
  border-radius: 4px;
  border: none;
  padding: 1.25em 4.375em;
  text-transform: uppercase;
  font-size: 0.90625em;
  font-weight: 400;
  color: white;
}
button:hover {
  background-color: #EE797B;
}

.caixa {
  position: absolute;
  top: 40px;
  left: 50px;
  right: 0;
  margin: auto;
  width: 90%;
  padding: 1.875em 2.5em;
  box-sizing: border-box;
  border-radius: 4px;
  border-top: 4px solid #E33E41;
  background: white;
  display: none;
}
@media only screen and (max-width: 960px) {
  .caixa {
    left: 0 !important;
  }
}
@media (min-width: 480px) {
  .caixa {
    width: 20em;
    left: 0 !important;
  }
}
.caixa .fechar {
  position: absolute;
  right: -35px;
  top: -10px;
  font-family: Roboto;
  font-weight: 100;
  font-size: 2.5em;
  color: white;
  text-decoration: none;
}
@media (max-width: 480px) {
  .caixa .fechar {
    right: 5px;
    top: -55px;
    color: white;
  }
}

.effect8 {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
  -webkit-transition: box-shadow 200ms ease;
          transition: box-shadow 200ms ease;
}
.effect8:before, .effect8:after {
  border-radius: 100px / 10px;
  bottom: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 10px;
  z-index: -1;
}
.effect8:after {
  left: auto;
  right: 10px;
  -webkit-transform: skew(8deg) rotate(3deg);
      -ms-transform: skew(8deg) rotate(3deg);
          transform: skew(8deg) rotate(3deg);
}

.carregando:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: url(../img/carregando.gif) no-repeat center center rgba(255, 255, 255, 0.8);
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.filtro {
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -999;
}

button.cadastrar {
  text-transform: uppercase;
  font-weight: bold;
  background: #ff6900;
}
@media only screen and (max-width: 960px) {
  button.cadastrar {
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
  }
}

.marca {
  min-height: 100%;
  margin-bottom: -60px;
  width: 960px;
  right: 0;
  left: 0;
  margin: auto;
}
@media (max-width: 960px) {
  .marca {
    width: 100%;
    margin-top: 30px;
  }
}
.marca:after {
  content: "";
  display: block;
  height: 90px;
}
.marca .bloco {
  width: 300px;
  float: left;
}
@media (max-width: 960px) {
  .marca .bloco {
    float: none;
    right: 0;
    left: 0;
    margin: auto;
  }
}

.cabecalho {
  text-align: center;
  margin-top: 20px;
}
.cabecalho img {
  /* margin-top: 40px; */
  margin-bottom: 20px;
  max-width: 190px;
  /* float: right; */
}
@media (max-width: 960px) {
  .cabecalho img {
    float: none;
    right: 0;
    left: 0;
    margin: auto;
  }
}

main {
  width: 100%;
}
main img.jd {
  width: 320px;
  margin: -30px 0 0 0;
  height: auto;
  float: left;
}
@media only screen and (max-width: 960px) {
  main img.jd {
    right: 0;
    left: 0;
    margin-top: 15px;
    margin: auto;
    position: absolute;
  }
}

.boasvindas {
  text-align: center;
  width: 480px;
}
@media only screen and (max-width: 960px) {
  .boasvindas {
    width: 100%;
    margin-top: 345px;
  }
}
.boasvindas h1 {
  text-transform: uppercase;
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
  font-weight: bold;
  font-size: 4.375em;
  text-align: center;
  color: white;
  margin-top: 0.3125em;
  margin-bottom: 0;
  line-height: 1;
  text-shadow: 0.391px 2.921px 1px rgba(0, 0, 0, 0.31);
  -moz-transform: matrix(1, 0, 0, 1, 1, 0);
  -webkit-transform: matrix(1, 0, 0, 1, 1, 0);
  -ms-transform: matrix(1, 0, 0, 1, 1, 0);
}
@media (max-width: 960px) {
  .boasvindas h1 {
    margin-top: 0.625em;
    font-size: 3.4375em;
    text-align: center !important;
  }
}
.boasvindas h1 strong {
  display: block;
  text-transform: uppercase;
  font-weight: bold;
}
.boasvindas hr {
  border: 1px solid white;
}
.boasvindas p {
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
  color: white;
  text-align: center;
  font-size: 1.40625em;
  margin: 2.8125em 0 0.625em;
  font-weight: bold;
}
@media (max-width: 480px) {
  .boasvindas p {
    margin-top: 0.625em;
  }
}
.boasvindas p.descricaop {
  margin: 10px 0 0 0;
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
  text-shadow: 0.391px 2.921px 1px rgba(0, 0, 0, 0.31);
  font-weight: 200;
}
.boasvindas p.palestrante {
  margin: 12px 0 13px !important;
  font-family: 'Aleo', serif;
  font-weight: 100;
  float: left;
  font-size: 18px;
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
  text-shadow: 0.391px 2.921px 1px rgba(0, 0, 0, 0.31);
  -moz-transform: matrix(1, 0, 0, 1, 1, 0);
  -webkit-transform: matrix(1, 0, 0, 1, 1, 0);
  -ms-transform: matrix(1, 0, 0, 1, 1, 0);
}
.boasvindas p.matricula {
  font-family: 'Aleo', serif;
  color: #fff;
  text-align: left;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 100;
  width: 100%;
  float: left;
  margin-top: 0;
}
.boasvindas p.descricao {
  font-family: Aleo,serif;
  color: #fff;
  text-align: center;
  font-size: 22px;
  /* margin: 2.8125em 0 .625em; */
  font-weight: 100;
  margin-top: 60px;
  line-height: 27px;
  /* line-height: 22px; */
}
.boasvindas div.data {
  width: 200px;
  float: right;
  margin: -17px 0 0 0;
  padding: 0;
  height: 100px;
}
.boasvindas div.data p {
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
  font-weight: 200;
  float: left;
  font-size: 27px;
  margin: 0;
  text-align: left;
  width: 100%;
  text-shadow: 0.391px 2.921px 1px rgba(0, 0, 0, 0.31);
  -moz-transform: matrix(1, 0, 0, 1, 1, 0);
  -webkit-transform: matrix(1, 0, 0, 1, 1, 0);
  -ms-transform: matrix(1, 0, 0, 1, 1, 0);
}
.boasvindas div.data p .local {
  font-size: 12px !important;
}
.boasvindas ul {
  width: 222px;
  margin: 25px auto 0;
}
@media (max-width: 960px) {
  .boasvindas ul {
    right: 0;
    left: 0;
    margin: auto;
    margin-top: 10px;
  }
}
.boasvindas ul .inline-block {
  float: right;
  list-style: none;
}
.boasvindas ul .inline-block:first-child {
  margin-right: 20px;
}
@media only screen and (max-width: 960px) {
  .boasvindas ul .inline-block:first-child {
    margin-right: 0;
  }
}

.cadastro input, .cadastro select {
  width: 100%;
  border-radius: 4px;
  border: none;
  font-family: 'Aleo', serif;
  font-weight: 100;
  background: #b2d4dc;
  margin-bottom: 0.9375em;
  padding: 0.9375em 0.8125em;
  height: auto;
  box-sizing: border-box;
}
.cadastro select {
  background: #3e6372;
  color: white;
  height: 36px;
}
.cadastro button {
  margin-top: 0.625em;
  width: 100%;
}
.cadastro button.enviar {
  background-color: #174893;
  margin-top: 30px;
}

.resultado {
  font-family: Aleo;
  font-weight: 100;
  text-align: center;
}
.resultado img {
  width: auto;
  height: auto;
  margin: auto;
}
.resultado svg {
  width: 60px;
  height: 60px;
  fill: #ff7400;
}
.resultado h2 {
  font-family: Aleo;
  font-weight: 100;
  font-size: 2em;
  margin: 0.625em 0 0.3125em 0;
}
.resultado p {
  font-size: 1.125em;
}

footer {
  height: 60px;
  margin-top: 30px;
}
footer .inline-block {
  float: right;
  list-style: none;
}
@media only screen and (max-width: 960px) {
  footer .inline-block {
    float: none;
  }
}
footer .inline-block:first-child {
  margin-right: 20px;
}
@media only screen and (max-width: 960px) {
  footer .inline-block:first-child {
    margin-right: 0;
  }
}

.icones-redes {
  margin-right: 15px;
}

.icones-redes, .icones-redes:before {
  width: 52px;
  height: 52px;
  background-image: url("../img/icones-redes.png");
}

.icones-redes:before {
  content: "";
  display: block;
  -webkit-transition: opacity 400ms cubic-bezier(0, 1, 0.5, 1);
          transition: opacity 400ms cubic-bezier(0, 1, 0.5, 1);
  opacity: 1;
}

.icones-redes:hover:before {
  opacity: 0;
}

.icones-redes.instagram {
  background-position: 0px 0;
}

.icones-redes.twitter {
  background-position: -52px 0;
}

.icones-redes.facebook {
  background-position: -104px 0;
}

.icones-redes.instagram:before {
  background-position: -156px 0;
}

.icones-redes.twitter:before {
  background-position: -208px 0;
}

.icones-redes.facebook:before {
  background-position: -260px 0;
}
