:root {
  --olive: #696d40;
  --off-white: #fffbf6;
  --black: #000;
  --green_1: #5f683b;
  --green_1: #6e8963;
  --green_3: #adba8f;
}

html, body {
  font-family: 'Anek Latin', sans-serif;
  color: #040707;
  background-color: var(--off-white);
  overflow-x: hidden;
}

ul { margin: 0;padding: 0; }

li { list-style: none; }

a { color: #040707;text-decoration: none; }

input:focus, textarea:focus {
  box-shadow: 0 0 0 .05rem var(--green_3)!important;
  background-color: var(--off-white)!important;
  border-color: var(--off-white)!important;
}

.title {
  height: 36px;
  font-weight:normal;
}

.title span {
  color: #6E8963;
}

#topbar .logo {
  width: 80px;
  height: 50px;
  transition: .8s;
}

#topbar .logo-primary {
  background: url('../../layout/assets/logo/NOMEPRETO.png') no-repeat center / contain;
}

#topbar .logo-scroll, #topbar .logo-mobile {
  background: url('../images/logo/MARCAPRETA.png') no-repeat center / contain;
}

#topbar .shadow-header {
  box-shadow: 0 4px 4px 0 rgba(95, 104, 59, 25%);
}

#topbar li {
  cursor: pointer;
}

#main {
  height: 100%;
  min-height: 100vh;
  box-shadow: inset 0 0 0 100vw rgba(0, 0, 0, 60%);
}

.about img {
  max-width: 300px;
  border: 8px solid #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 360px;
  float: right;
}

.about p {
  color: var(--olive);
}

.about .divisor .bar {
  background-color: #000;
  width: 1px;
  height: 90px;
}

.about .divisor .info {
  height: 80px;
  margin: 1rem;
}

.musics .box {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 4rem;
}

.musics .box img {
  position: absolute;
  width: 225px;
  height: 213px;
  right: 10%;
  bottom: 65%;
}

.musics .img {
  background: url('../../layout/assets/images/smile.jpg') center center no-repeat;
  background-size: contain;
  border-radius: 360px 360px 0 0;
  width: 335px;
  height: 500px;
  box-shadow: inset 0 0 0 100vw rgba(250, 242, 231, 15%);
  z-index: 2;
  opacity: 95%;
}

.musics li {
  display: flex;
  flex-direction: column;
  background: rgba(173, 186, 143, 50%);
  color: #4e4e4e;
  padding: 1rem 4rem;
  gap: .3rem;
  width: 100%;
  max-width: 430px;
  margin-bottom: .5rem;
}

audio::-webkit-media-controls-panel {
  background-color: rgba(173, 186, 143, 50%);
}

.schedule {
  background: url('../../layout/assets/images/flour.jpg') center center no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 100vw rgba(173, 186, 143, 70%);
}

.schedule .date {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule .date .date-number {
  position: absolute;
  font-size: 5rem;
  font-weight: 800;
  line-height: 0;
  opacity: .1;
}

.schedule .date .date-text {
  white-space: nowrap;
  line-height: 0;
}

.schedule .list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule .list li {
  width: 33%;
}

.schedule .list li:first-child {
  display: flex;
  justify-content: flex-end;
}

.schedule .list li:last-child {
  display: flex;
}

.videos iframe {
  width: 90%;
  height: 315px;
  border-radius: 1rem;
}

.gallery .template-row {
  display: grid;
}

.gallery .first-row {
  grid-template-columns: 30% 30% 30% 10%;
}

.gallery .last-row {
  grid-template-columns: auto auto auto;
}

.gallery .img {
  box-shadow: inset 0 0 0 100vw rgba(70, 72, 44, 50%);
  transition: transform 0.5s linear;
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.gallery .carousel-item .img {
  box-shadow: none;
  height: 80vh;
}

.gallery .img:hover {
  transform: scale(1.05);
}

.faq h5 {
  font-weight: bold;
}

.faq-cards .faq-card:nth-child(even) {
  margin-top: 7rem;
}

.faq-card {
  width: 300px;
  height: 350px;
}


.flip-card-inner {
  position: relative;
  
  transition: transform 0.6s;
  transform-style: preserve-3d;

  color: white;
  border-radius: 1.5rem 0;
  
  width: 100%;
  height: 100%;

  background-image: url('../images/piano.jpg');
  background-size: 300%;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 100vw rgba(106, 110, 65, 50%);
}

.faq-cards .faq-card:nth-child(1) .flip-card-inner {
  background-position: 10% 10%;
}

.faq-cards .faq-card:nth-child(2) .flip-card-inner {
  background-position: 30% 30%;
}

.faq-cards .faq-card:nth-child(3) .flip-card-inner {
  background-position: 50% 50%;
}

.faq-cards .faq-card:nth-child(4) .flip-card-inner {
  background-position: 80% 80%;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;  backface-visibility: hidden;
  
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-card-back {
  transform: rotateY(180deg);
}

.accordion { --bs-accordion-active-color: #040707!important; --bs-accordion-active-bg: rgb(173 186 143 / 30%)!important; --bs-accordion-bg: transparent!important; }
.accordion-collapse { background-image: url(../images/piano.jpg); background-size: 100%; background-repeat: no-repeat; box-shadow: inset 0 0 0 100vw rgba(106, 110, 65, 80%); background-position: center center; color: var(--off-white); }
.accordion-button:focus { box-shadow: none!important; }
.accordion-button:not(.collapsed)::after, .accordion-button::after { background-image: url(../images/arrow.svg)!important; }

  /* background: rgba(106, 110, 65, 90%) url( '../../layout/assets/logo/NOMEOFF.png' ) no-repeat center center / 60%; */
  /* box-shadow: inset 0 0 0 100vw rgba(106, 110, 65, 90%); */

.contact {
  position: relative;
  background-color: rgba(106, 110, 65, 0.9);
  /* background-color: var(--green_3); */
  width: 100%;

}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../../layout/assets/logo/NOMEOFF.png') no-repeat center center / 80%;
  opacity: 5%;
  z-index: 1;
}

.contact .container {
  position: relative;
  z-index: 2;
}
  
.contact .title span { color: white; }

.contact .form {
  width: 80%;
  margin: 0 auto;
}

.contact .form .form-box {
  background-color: rgba(250, 242, 231, 85%);
  position: relative;
  border-radius: 2rem;
}

.contact .form .form-box .form-box--border {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid #040707;
  border-radius: 2rem;
  position: absolute;
  left: -1rem;
  bottom: 1rem;
}

.contact .form .form-box form {
  padding: 6rem 3rem;
  position: relative;
  z-index: 3;
}

.contact .image {
  width: 100%;
  height: calc(100% - 1rem);
  background: url('../../layout/assets/images/flour_looking.jpg') no-repeat center / cover;
  border-radius: 2rem 0 0 2rem;
}

.contact input,
.contact textarea {
  background: transparent;
  color: #040707;
  border-bottom: 1px solid #040707;
  border-radius: 0px;
}

.btn {
  border: 1px solid #040707;
  border-radius: 30px;
  padding-left: 3rem;
  padding-right: 3rem;
}

footer {
  background: url('../../layout/assets/images/tattoo.jpg') no-repeat center center / cover;
  box-shadow: inset 0 0 0 100vw rgba(242, 220, 185, 45%);

  color: var(--black);
  
}

footer p {
  margin: 0;
}

@keyframes fade-to-right {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}  

@media only screen and (max-width: 992px) {
  .fixed-icon {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: #25d366;
    border-radius: .5rem;
    padding: 1rem;
  }

  .fixed-icon i {
    font-size: 2rem;
    color: var(--off-white);
    line-height: 0;
  }

  .menu-box {
    position: fixed;
    background-color: var(--off-white);
    inset: 0;
    animation: fade-to-right .5s linear;
  }

  .menu-box ul {
    flex-direction: column;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--olive);
  }

  .menu-box .position-relative {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .menu-box .social {
    width: 90%;
    margin: 0 auto;
  }

  .menu-box .social, 
  .menu-box .social a { color: var(--off-white); }

  .menu-box .social i { line-height: 0; color: var(--olive) }

  .menu-box .social .media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    border-radius: 3rem;
    padding: .5rem;
    margin-top: 1rem;
	  border: 1px solid var(--olive);
    color: var(--olive);
  }

  #topbar .logo { width: 35px; height: 40px;}

  #main { background-position: center center; }
  #main img { width: 90%; }

  #about .content { text-align: center; }
  #about .content .w-75 { width: 100%!important;}
  #about .image { display: flex; justify-content: center; }
	#about .image img { margin-bottom: 1rem; margin-right: 0 !important; }

  #musics .col-sm-12:last-child .w-75 { width: 100%!important; }
  .musics ul { margin-top: 2rem; }
  .musics li { width: 80%; padding: 1rem; margin: 0 auto .5rem; }
  .musics .box img { width: 40vw; height: inherit; }
  .musics .img { width: 66vw; height: 59vh; }

  .schedule { box-shadow: inset 0 0 0 100vw rgba(173, 186, 143, 85%); }
  .schedule .list { flex-direction: column; }
  .schedule .list li { width: 100%; }
  .schedule .list li:first-child { justify-content: center; }
  .schedule .list li:last-child { display: block; }
  .schedule .shadows { box-shadow: 0px 3px 6px 0px rgba(105, 109, 64, 20%); padding: 1rem 0!important; }
  .schedule .row div:last-child { box-shadow: none!important; }

  .gallery .carousel-item .img { height: 70vh; }
  
  .contact .form { width: 90%; }
  .contact::before { background-position: center 100%; }

  footer img { width: 100%; }
  footer .col-md-3 { padding-left: 2rem; }

}
