@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;1,100;1,300&display=swap');

:root{
  --blue:#0188DF;
  --black:#354046;
  --white: #ffffff;
  --orange: #f47b20;
  --cyan: #00d2c4;
  --wine: #c41526;
}

.orange {
  color: var(--orange);
}

.cyan {
  color: var(--cyan);
}

.wine {
  color: var(--wine);
}

.white {
  color: var(--white);
}

.bg-orange {
  background-color: var(--orange);
}

.bg-cyan {
  background-color: var(--cyan);
}

.bg-wine {
  background-color: var(--wine);
}

.bg-white {
  background-color: var(--white);
}

*{
  font-family: 'Roboto', sans-serif;
  margin:0; padding:0;
  box-sizing: border-box;
  border:none !important;
  outline: none !important;
  text-decoration: none !important;
  font-weight: 400;
  transition: all .2s linear;
}

*::selection{
  background:var(--black);
  color:var(--white);
}

html{
  font-size: 62.5%;
  overflow-x: hidden;
}

body{
  overflow-x: hidden;
  background-color: var(--orange);

}

section{
  overflow: hidden;
}

.button{
  height:3.5rem;
  width: 15rem;
  background:var(--blue);
  color:var(--white);
  font-size: 1.7rem;
  text-transform: capitalize;
  border-radius: .5rem;
  cursor: pointer;
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin:1rem 0;
}

.button::before{
  content: '';
  position: absolute;
  top: -100%; left: 0;
  height:100%;
  width: 100%;
  background-color: var(--black);
  z-index: -1;
  transition: .2s linear;
}

.button:hover:before{
  top: 0%;
}

.button:hover{
  box-shadow: .1rem .5rem var(--blue),
              0 .3rem .5rem rgba(0,0,0,.3);
}

.heading{
  text-align: center;
  font-size: 4rem;
  padding:1rem;
  padding-top: 8rem;
  color:var(--black);
}

.heading span{
  color:var(--blue);
}

header{
  width:100%;
  /* position: fixed; */
  margin-top: 60px; 
  left: 0;
  /* padding:2rem 1rem; */
  z-index: 1000;
  background-color: var(--wine);
  height: 50px;
}

.header-active{
  background-color: var(--wine);
  box-shadow: 0 .1rem .3rem rgba(0,0,0,.3);
  padding: .5rem 1rem;
}

header .container{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

header a {
  color: var(--white);
}

header a:hover{
  color: var(--white);
}

header .container .logo{
  font-size: 3rem;
  margin-top: -50px;
  width: 130px;
}

header .container .logo span{
  color:var(--blue);
}

header .nav {
  padding-bottom: 25px;
}

header .nav ul{
  margin:0; padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

header .nav ul li{
  margin: 0 1rem;
}

header .nav ul li a{
  font-size: 1.6rem;
  text-transform: uppercase;
  font-family: inherit;
  font-weight: 300;
}

header .fa-bars{
  font-size: 3.5rem;
  color: var(--blue);
  cursor: pointer;
  display: none;
}

header .socialbar {
  font-size: 2rem;
  padding-bottom: 30px;
}

header .socialbar a{
  font-size: 2rem;
  margin-left: 2rem;
}

.home {
  background-image: url('../images/orange-image-bg.png');
  background-position: center center;
  background-size: cover;
  background-color: var(--orange);
  /* margin-top: 80px; */
  /* height: 500px; */
}

.home .content h1{
  font-size: 5rem;
  color: var(--white);
  font-weight: bolder;
  margin-top: 80px !important;
}

.home .content h1 span{
  color:var(--blue);
}

.home .content h3{
  font-size: 4rem;
  color: var(--white);
}

.home .content p{
  color: var(--white);
  font-size: 1.4rem;
}

.img-guitar {
  z-index: 10000; 
  float: left; 
  opacity: 0.5; 
  position: absolute; 
  left:0; 
  top:0; 
  margin-top: 50px;
}



/*********************/




.about {
  background-image: url('../images/orange-image-bg.png');
  background-position: center center;
  background-size: cover;
  background-color: var(--cyan);
}

.about .content {
  width: 70%;
}

.about .content h1 {
  font-size: 4.5rem;
  color: var(--white);
  text-align: center !important;
  margin-bottom: 20px;
  margin-top: 40px;
}

.about .content h1 span{
  color:var(--black);
}

.about .content h3{
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 20px;
}

.about .content p{
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.about button {
  background-color: var(--wine) !important;
}



/*********************/


.faqsection {
  background-image: url('../images/orange-image-bg.png');
  background-position: center center;
  background-size: cover;
  background-color: var(--wine);
}

.faqsection .content {
  width: 70%;
}

.faqsection .content h1 {
  font-size: 4.5rem;
  color: var(--white);
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.faqsection .content h1 span{
  color:var(--white);
}

.faqsection .content h3{
  font-size: 2rem;
  color: var(--white);
  font-weight: bolder;
  text-transform: uppercase;
}

.faqsection .content p{
  color: var(--white);
  font-size: 1.4rem;
}

.faqsection button {
  background-color: var(--cyan) !important;
}

/*********************/

.temp{
  background:#eee;
}

.temp .content .box{
  margin:3rem 0;
}

.temp .content .box h3{
  font-size: 2.5rem;
  color:var(--black);
}

.temp .content .box h3 i{
  padding: 0 1rem;
  color:var(--blue);
}

.temp .content .box p{
  font-size: 1.7rem;
  padding-left: 6rem;
  color:#666;
}

.facility{
  min-height: 100vh;
}

.facility .box-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 3rem;
}

.facility .box-container .box{
  height:20rem;
  width:30rem;
  margin:.3rem;
  overflow: hidden;
}

.facility .box-container .box img{
  height:100%;
  width:100%;
  object-fit: cover;
}

.facility .box-container .box:hover img{
  transform: scale(1.3);
}

.review{
  background:url(../images/review-bg.jpg), linear-gradient(var(--black),var(--black)) no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}

.review .heading{
  color:#fff;
}

.review .box-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 5rem;
}

.review .box-container .box{
  background:#fff;
  width:30rem;
  margin:5rem 1rem;
  padding:1.5rem;
  position: relative;
}

.review .box-container .box img{
  position: absolute;
  bottom: -7.5rem; left: -1rem;
  height:5rem;
  width:5rem;
  border-radius: 50%;
  object-fit: cover;
}

.review .box-container .box p{
  font-size: 1.4rem;
  color:var(--black);
}

.review .box-container .box h3{
  text-align: end;
  color:var(--blue);
}

.review .box-container .box span{
  text-align: end;
  color:var(--black);
  display: block;
  font-size: 1.5rem;
}

.review .box-container .box::before{
  content: '';
  position: absolute;
  bottom: -1rem; left:.4rem;
  height:2rem;
  width:2rem;
  background:#fff;
  transform: rotate(45deg);
}

.counter .box-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding:2rem 0;
}

.counter .box-container .box{
  margin:2rem 5rem;
  text-align: center;
}

.counter .box-container .box i{
  color:var(--blue);
  font-size: 5rem;
}

.counter .box-container .box span{
  color:var(--black);
  font-size: 3rem;
  display: block;
  padding:1rem 0;
}

.counter .box-container .box h3{
  color:#666;
}

.contact{
  background:var(--black);
}

.contact .heading{
  color:#fff;
}

.contact form{
  text-align: center;
}

.contact form .inputBox{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact form .inputBox input, select{
  height: 4rem;
  width:49%;
  padding:0 1rem;
  margin:1rem 0;
  font-size: 1.7rem;
  color:var(--black);
}

.contact form textarea{
  height:20rem;
  resize: none;
  padding:1rem;
  font-size: 1.5rem;
  width: 100%;
}

.contact form input[type="submit"]{
  width:20rem;
}

.contact form input[type="submit"]:hover{
  background:var(--black);
}

.post .box-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.post .box-container .box{
  width:30rem;
  margin:2rem 1rem;
  overflow: hidden;
  border-radius: .5rem;
  box-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
}

.post .box-container .box img{
  height:20rem;
  width: 100%;
  object-fit: cover;
}

.post .box-container .box .content{
  padding:0 1.5rem;
}

.post .box-container .box .content span{
  color:#666;
  font-size: 1.5rem;
  display: block;
  padding:1rem 0;
}

.post .box-container .box .content h3{
  font-size: 2rem;
  color:var(--black);
}

.post .box-container .box .content:hover h3{
  color:var(--blue);
}

.post .box-container .box .content p{
  font-size: 1.3rem;
  color:var(--black);
}

.footer{
  background-image: url('../images/fundo-rodape.jpg') !important;
  background-position: center center;
  background-size: cover !important;
  background:var(--white);
}

.footer .container {
  width: 70%;
}

.footer .container img {
  width: 100px;
  height: auto;
}

.footer p{
  font-size: 1.5rem;
  color: var(--black);;
  padding:1rem 0;
}

ul.menurodape {
  margin: 2rem 0rem;
  list-style-type: none;
  border-left: 2px solid var(--wine) !important;
  padding-left: 5px;
}

ul.menurodape li a{
  font-size: 1.6rem;
  color: var(--wine);
  font-weight: bold;
}

.footer .col-md-4{
  padding: 1.3rem
}

.footer h3{
  color:#fff;
  font-size: 3rem;
}

.footer a:hover{
  color:var(--orange);
}

.footer .credit{
  color:#fff;
  width:80%;
  margin:0;
  padding:2rem 0;
  padding-bottom: 4rem;
  border-top: .1rem solid #ccc !important;
}

.footer .credit span{
  color:var(--blue);
}


/* barras após cada seção */
.ghostsection1 {height: 15px; background-color: var(--wine);margin:0;}

.ghostsection2 {height: 25px; background-color: var(--white);margin:0;}

.ghostsection3 {height: 25px; background-color: var(--cyan);margin:0;}
















header .fa-times{
  /* transform: rotate(180deg);
  margin-bottom: -25px; */
}

/* media queries  */

@media (max-width:768px){

  html{
    font-size: 55%;
  }

  header .fa-bars{
    display: block;
  }

  header .nav{
    position: fixed;
    top:-100rem; left:50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 100vh rgba(0,0,0,.3);
    border-radius: .5rem;
    border:.3rem solid var(--blue) !important;
    background:#fff;
    width: 95%;
    opacity: 0;
  }

  header .nav ul{
    width: 100%;
    flex-flow: column;
    padding:2rem 0;
  }

  header .nav ul li{
    width: 100%;
    text-align: center;
    margin:1rem 0;
  }

  header .nav ul li a{
    font-size: 3rem;
    display: block;
    color: #444444;
  }

  header .nav-toggle{
    top:50%;
    opacity: 1;
    z-index: 1000;
  }

  header .fa-bars {
    color: #ffffff;
    padding-bottom: 25px;
  }

  .contact form .inputBox input, select{
    width: 100%;
  }

  .contact form input[type="submit"]{
    width:100%;
  }

  .img-guitar {
    display: none;
  }

  .footer {
    background-color: var(--white);
    background-image: none !important;
  }

  .footer ul li a {
    font-size: 2rem !important;
  }

  .footer ul {
    background: #ffffff;
    margin-top 3rem;
  }

  .footer img {
    width: 200px !important;
    height: auto !important;
  }

}