@import url('https://fonts.googleapis.com/css?family=Barlow+Condensed:300,300i,400,400i,600,600i');

:root {
  --mainColor: #00c172;
  --secundaryColor: #FF004B;
  --btnsColor: #FF004B;
  --space: 0 auto 30px;
}

* {
  box-sizing: border-box;
}


/*-------------------------------CLASSES PONTUAIS-------------------------------*/
.noWrap{
  white-space: nowrap;
}

.highlight{
  color: var(--mainColor);
}

.bolder{
  font-weight: 600;
}

.center{
  text-align: center;
}

.hidden{
  display: none !important;
}

.lineBreak{
  display: block;
}

.link{
  color: #0091ff;
  text-decoration: none;
  position: relative;
  display: block;
  padding-bottom: 5px;
  box-sizing: border-box;
}

.link::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 65px;
  width: 100%;
  height: 2px;
  background: #0091ff;
  transform: scale(0,0);
  transition: .2s all linear;
}

.link:hover::after{
  transform: scale(1,1);
}
/*-------------------------------/CLASSES PONTUAIS-------------------------------*/


/*-------------------------------CÓDIGO PARA MOBILE-------------------------------*/
/*-----------------------------BLOCO 1--------------------------*/
/*------------------INFOS------------------*/
body{
  font-family: 'Barlow Condensed', sans-serif;
  margin: 0;
  background: #000;
}

.container{
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 1000;
}

.blocks{
  width: 100%;
  margin: 0;
  padding: 5%;
  display: block;
  overflow: hidden;
}

.block-1{
  /*background: #f8fbff;*/
  /* background-image: url(../img/bg.jpg); */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.block-1::after{
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, 0);
}

h1, h2, h3, p, ul{
  margin: var(--space);
}

h1{
  font-size: 1.6em;
  line-height: 1em;
  font-weight: 600;
  letter-spacing: 1px;
}

h2{
  font-size: 1.4em;
  line-height: 1.2em;
  font-weight: 300;
  letter-spacing: 1px;
}

a{
  text-decoration: none;
}

.mainTitle, .subtitle, p{
  width: 100%;
  color: #fff;
  text-align: center;
}

.boxInfos p{
  font-size: 1.4em;
}

/*------------------BOX VIDEO------------------*/
.boxVideo{
  width: 100%;
  height: auto;
  margin: 25px auto;
  text-align: center;
}

.boxVideo iframe{
  width: 100%;
  height: 200px;
}
/*------------------/BOX VIDEO------------------*/

.block-2{
  background-color: #fff;
}

.block-2 .subtitle{
  color: #000;
}

.boxNotifications{
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}

.boxNotifications a{
  width: 100%;
  margin: var(--space);
  position: relative;
  cursor: pointer;
}

.boxNotifications a img{
  width: 80px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 20px;
}

.boxNotifications p{
  font-size: 1.4em;
  text-align: center;
  color: #000;
}

.boxNotifications a span{
  width: 100%;
  height: auto;
  padding: 18px 12px;
  background: var(--mainColor);
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.4em;
  display: block;
}

.boxNotifications a span:hover{
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(255, 255, 255, 0.4));
  background-color: var(--mainColor);
}

.iconStep{
  width: 100%;
  max-width: 100px;
  margin: 30px auto 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
/*------------------/INFOS------------------*/

/*-----------------------------/BLOCO 1--------------------------*/



/*------------------FOOTER------------------*/
footer {
  background-color: #000;
  padding: 20px;
  color: #fff;
  font-size: 0.8em;
  font-weight: 400;
  line-height: 1.3em;
  margin: 0;
  vertical-align: baseline;
  text-align: center;
  display: block;
}

footer p {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

footer p a {
  color: #fff;
  text-decoration: underline;
}
/*------------------/FOOTER------------------*/

/*-------------------------------/CÓDIGO PARA MOBILE-------------------------------*/





/*-------------------------------BREAKPOINTS-------------------------------*/

@media only screen and (min-width: 411px){
  h1{
    font-size: 2.2em;
  }
}

@media only screen and (min-width: 470px){
  .boxVideo iframe {
    height: 240px;
  }
}

@media only screen and (min-width: 768px){
  .boxVideo iframe {
    height: 410px;
  }

  .boxNotifications a{
    width: calc(50% - 20px);
    min-height: 300px;
  }

  .boxNotifications a span{
    position: absolute;
    bottom: 0px;
  }
}

@media only screen and (min-width: 1000px){
  .logo{
    max-height: 90px;
    margin: 0 auto 50px;
  }

  .blocks{
    padding: 2%;
  }

  /* .block-1{
    background-image: url(../img/bg-desktop.jpg);
  } */

  .block-1::after{
    background: rgba(0, 0, 0, 0.6);
  }

  h1{
    font-size: 3.2em;
    font-weight: 600;
  }

  h2{
    font-size: 2em;
  }

  .boxVideo iframe {
    height: 550px;
  }
}

@media only screen and (min-width: 1440px){
  .block-2 .subtitle{
    font-size: 2.4em;
  }
}
/*-------------------------------/BREAKPOINTS-------------------------------*/
