body {
  font-family: 'Montserrat', sans-serif;
}

.interiores {
  background: url(../img/fondo_azul_header.jpg) center bottom;
}

.interiores .logo {
  float: left;
  width: 120px;
  margin-right: 20px;
  padding: 20px 0;
  transition: 0.5s ease;
}

#header_interiores {
  height: 40vh;
  margin-bottom: 60px;
  background-position: top center;
  background-attachment: fixed;
  background-size: 100% auto;
  position: relative;
}
.separador-curva {
  width: 100%;
  height: 80px;
  background:url(../img/separador_curva.png) no-repeat center bottom;
  position: absolute;
  bottom: -1px;
  background-size: 100% auto;
  z-index: 2;
}

.titulo_header_interiores {
  font-family: 'Montserrat', sans-serif;
  font-size: 45px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  font-weight: 100;
  text-transform: uppercase;
  color:white;
  transform: translate(-50%, -50%);
}

.subtitulo {
  margin: 50px 0 0px;
  border-bottom:1px dotted #d8d8d8;
  width: 100%;
  padding-bottom: 5px;
}

.subtitulo span {
  font-weight: 400;
  font-size: 25px;
  color: #FF9A16;
  text-transform: uppercase;
  line-height: 45px;
  display:block;
  float: left;
  margin-left: 10px;
}

.icono_subtitulo {
  width: 45px;
  height: 45px;
  display: block;
  float: left;
}

.icono_subtitulo svg {
  width: 100%;
}

/* faq */
main {
  display: block;
  position: relative;
  box-sizing: border-box;
  padding: 30px;
  width: 100%;
  background-color: #fff;
  margin: 0 auto;
  margin-top: 50px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.live-search-box {
  width: 100%;
  display: block;
  padding: 1em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #3498db;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

h1 {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 22px;
  font-weight: 300;
}

.topic {
  padding: 20px;
  padding-top: 0px;
  padding-bottom: 0px;
  border-bottom: solid 1px #ebebeb;
}

.open {
  cursor: pointer;
  display: block;
  padding: 0px;
}

.open:hover {
  opacity: 0.7;
}

.expanded {
  background-color: #f2f2f2;
  transition: all .3s ease-in-out;
}

.ptag {
  display: none;
}

.question {
  padding-top: 30px;
  padding-right: 40px;
  padding-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
  color: #526ee4;
}

.answer {
  font-size: 16px;
  line-height: 26px;
  display: none;
  margin-bottom: 30px;
  text-align: justify;
  padding-left: 20px;
  padding-right: 20px;
}

.faq-t {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  display: inline-block;
  float: right;
  position: relative;
  top: -55px;
  right: 10px;
  width: 10px;
  height: 10px;
  background: transparent;
  border-left: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  transition: all .3s ease-in-out;
}

.faq-o {
  top: -50px;
  -moz-transform: rotate(-224deg);
  -ms-transform: rotate(-224deg);
  -webkit-transform: rotate(-224deg);
  transform: rotate(-224deg);
}

@media only screen and (max-width: 480px) {
  .faq-t {
    display: none;
  }
  .question {
    padding-right: 0px;
  }
  main {
    padding: 10px;
  }
  .answer {
    margin-bottom: 30px;
    padding-left: 0px;
    padding-right: 0px;
  }
}