@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow: hidden;
}

body { 
  margin:0;
  padding:0;
	perspective: 1px;
	transform-style: preserve-3d;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
}



p {
  font-size: 140%;
  line-height: 150%;
  color: #909090;
}

h1 {
  font-weight: 100;
}

.slide {
  position: relative;
  padding: 20% 10%;
  min-height: 100vh;
  width: 100vw;
  box-sizing: border-box;
  box-shadow: 0 -1px 10px rgba(0, 0, 0, .2);
	transform-style: inherit;
}

.slide:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, .2);
}


.slide:nth-child(2n) .title {
  margin-left: 0;
  margin-right: auto;
}

.slide:nth-child(2n+1) .title {
  margin-left: auto;
  margin-right: 0;
}

.slide, .slide:before {
  background: 50% 50% / cover;  
}

.header {
  text-align: center;
  color: #fff;
}

#title {
  background-image: url(images/bcg.jpg);
  z-index:2;
}

#slide1{
  color: #fff;
}

#slide1:before {
  background-image: url(images/padrao.png);
  background-size: 250px;
  background-repeat: repeat;
  transform: translateZ(-1px) scale(2);
}

#slide2 {
  background: #222;
}

@media only screen and (min-width: 600px) {
  .header {
  font-size: 175%;
  }
  .slide {
  padding: 15vh 20%;
  }
  #slide1{
    font-size: 2em;
  }
}

.col-8 {
  place-self: center stretch;
}

.col-4 {
  place-self: center stretch;
}

.preco {
  color: #dd991a;
  font-weight: 300;
  font-size: 1.5em;
}
.detalhe {
  display: block;
    font-size: 0.8em;
    font-weight: 100;
    color: #bbb;
}
.borda{
  border-bottom: dotted outset;
      display: flex;
    width: 100%;
}
.lista-servico{
    display: flex;
    grid-template-columns: 60% 40%;
    justify-content: space-between;
    align-items: center
    position: relative;
    box-sizing: border-box;
    border-bottom: rgba(255, 255, 255, 0.3) dashed 1px;
    padding: 20px 0;
}