* {
  user-select: none;
}


.secaoDestaque {
  background-image: url(../img/bg-intro.jpeg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding: 10em 2em 3em 2em;
  color: #fff;
  animation: saturation 10s ease infinite alternate;

  box-shadow: 5px 0px 10px hsla(0, 0%, 0%, .5);

  & h1, & p {
    text-shadow: 2px 2px 0px black, -2px -2px 10px black;
  }

  & button {
    background-color: hsla(0, 0%, 0%, 0.5);
    &:hover {
      background-color: hsla(0, 77%, 44%, 0.427);
    }
  }
}

@keyframes saturation {
  from {
    background-size: 110%;
    filter: saturate(0%);
  }
  to {
    background-size: 120%;
    filter: saturate(150%);
  }
}


.secaoDestaque-titulo {
  font-weight: bold;
  margin-bottom: 1em;
  font-family: 'Montserrat', serif;
  font-size: 2em;
  line-height: 1;
}

.secaoDestaque-texto {
  max-width: 600px;
  margin: 0 auto 2em auto;
  font-size: 1.25em;
  font-weight: normal;

}

.secaoDestaque-cta {
  background-color: transparent;
  border: 1px solid #fff;
  font-size: 1em;
  width: 100%;
  max-width: 300px;
  line-height: 2.5;
  cursor: pointer;
  display: block;
  text-decoration: none;
  margin: 0 auto;
  transition: .2s ease-in;
}

.secaoDestaque-cta:hover,
.secaoDestaque-cta:focus {
  background: #fff;
  color: #333;
}

@media (min-width: 830px) {

  .secaoDestaque-titulo {
    font-size: 5vw
  }

}