@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,400;0,500;0,600;0,700;0,900;1,600;1,800&display=swap');

/* - - - - - - - - - - - - - - - - - - - - - - - - - - [ ESTRUTURA ] */
body, html{
    font-family: 'Montserrat', sans-serif;
    color: #ccc;
    background: #333;
}
.palco,
.areadocliente,
.rodape{
    z-index: 100;
}
.carousel-fundo{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
.carousel-fundo .carousel-item img{
    height: 100%;
}
.carousel-fundo .carousel-control-prev{
    z-index: 1000;
}
.carousel-item {
    opacity: 1;
    transition-duration: .5s;
    transition-property: opacity;
  }

  .carousel-item.active,
  .carousel-item-next.carousel-item-left,
  .carousel-item-prev.carousel-item-right {
    opacity: 1;
  }

  .active.carousel-item-left,
  .active.carousel-item-right {
    opacity: 0;
  }

  .carousel-item-next,
  .carousel-item-prev,
  .carousel-item.active,
  .active.carousel-item-left,
  .active.carousel-item-prev {
    transform: translateX(0);

    @supports (transform-style: preserve-3d) {
      transform: translate3d(0, 0, 0);
    }
  }

a{ color:#fff; }
a:hover{ color:yellow; }
.destaque{color:#fff;}
.corbase{color:#eee;}

.palco{
    /* From https://css.glass */
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0px 0px 10px #000000;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.33);
    border-bottom: 0;
}
.modal-content{
    background: #000;
}
@media (min-width: 768px)  {
    .palco {
      margin-left:20px;
    }
  }

/* - - - - - - - - - - - - - - - - - - - - - - - - - - [ ESTILOS ELEMENTOS ] */
.marca{
    text-align: center;
}
.marca img{
    margin:10px;
}
.nome{
    line-height: 80%;
    font-weight:100;
    font-size: 32px;
}
.intro{
    text-align: justify;
}
.descricao{
    font-weight:200;
    font-size:18px;
    text-align: justify;
}
.procedimento{
    font-size:13px;
    text-align: justify;
}
.contato{
    margin-top: 30px;
    background: #333;
    padding: 10px 15px;
    text-align: center;
}
.contato .telefone,
.contato .whats,
.contato .email{
    padding: 5px 0;
}
.contato .email{
    font-size: 13px;
    text-decoration: none;
}
.navegacao{
    margin-top: 30px;
    text-align: center;
}
.navegacao div{
    background: #eee;
    
}
.navegacao a{
    text-decoration: none;
    color: rgb(68, 77, 85);
    display: block;
    padding: 20px 0;
	transition: all 0.2s ease-in-out;
}
.navegacao a:hover{
    color:rgb(70, 167, 202);
    text-shadow:0 0 10px rgb(70, 167, 202, 0.5);
}

.rodape{
    margin-top: 90px;
    margin-bottom: 0;
    font-size:13px;
    font-weight:400;
    text-align: center;

}
.rodape .endereco{
    font-size:13px;
}

.modal-backdrop.show {
    background-color: rgb(0, 0, 0);
    opacity: 0.95;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}