@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: #444d55;
}

.material-symbols-outlined{
    display: inline-flex;
    vertical-align: top;
    margin-top: 2px;
    font-variation-settings: 'wght' 100;
}
.text-blue{
    color: #46a7ca;
}
.bg-blue{
    background: #46a7ca;
}
.text-pink{
    color: #f4005f;
}
.bg-pink{
    background: #f4005f;
}

.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:#46a7ca; }
.destaque{color:#46a7ca;}
.corbase{color:#f4005f;}

.palco{
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.95);
    border-bottom-right-radius: 16px;
    box-shadow: 0px 0px 10px #b9628f;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.33);
}



/* - - - - - - - - - - - - - - - - - - - - - - - - - - [ 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: #fff;
    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);
}
.areadocliente{
    margin-top: 60px;
    border-radius: 10px;
    opacity: 0.9;
    box-shadow: 0px 0px 10px #b9628f;
    background: #fff;
    color: #000;
    padding: 20px;
    font-size: 12px;
    text-transform: uppercase;
}
.areadocliente a{
    font-size:12px;
    margin-top: 5px;
}
.areadocliente form{
    display:block;
    clear:both;
}
.areadocliente form label{
    margin: 10px 10px 5px 30px;
}
.areadocliente form input[type=text],
.areadocliente form input[type=password]{
    max-width: 68%;
}
.areadocliente form .btn {
    margin-top: 4px;
    font-size:12px;
}
.rodape{
    margin-top: 60px;
    margin-bottom: 60px;
    font-size:13px;
    font-weight:400;
    text-align: center;

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





header h1.text-blue{
    font-size:4rem;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - [ MOBILE ] */
@media (max-width: 768px) {

    header h1.text-blue{
        font-size: 2.5rem;

    }
    header .btn{
        margin-left: 0!important;
    }
    header .carousel-footer{
        display: none;
    }
    header .col-md-6{
        padding: 8%;
    }
}