/*
Theme Name: NucleoDeNegociosWEB
Text Domain: NucleoDeNegociosWEB
Version: 1.0
Tested up to: 5.9
Requires at least: 4.7
Requires PHP: 5.2.4
Description: talk to us
Author: the NucleoDeNegociosWEB team
Author URI: https://NucleoDeNegociosWEB.com.br/
Theme URI: https://NucleoDeNegociosWEB.com.br
*/

@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: rgb(0, 0, 0);
    background: #fff;
}
.carousel-fundo{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
.carousel-fundo .carousel-item{
    text-align: center;
}
.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:#33cb98; }
a:hover{ color:#33cb98; }
.destaque{color:rgb(0, 0, 0);}
.corbase{color:rgb(0, 0, 0);}

.palco{
    z-index: 100;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.60);
    box-shadow: 0px 0px 10px #333333;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgb(255, 255, 255);
    border-top:0 ;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}
.modal-content{
    background: rgb(255, 255, 255);
}
@media (min-width: 768px)  {
    .palco {
      margin-left:20px;
    }
  }
.modal-backdrop.show {
    background-color: rgb(238, 238, 238);
    opacity: 0.95;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - [ 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: rgb(255, 255, 255);
    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:#33cb98;
    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;
}






/* CARREGANDO INFORMAÇÕES DAS PÁGINAS INTERNAS*/
.loader {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(#f07e6e, #84cdfa, #5ad1cd);
    animation: animate 1.2s linear infinite;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(#f07e6e, #84cdfa, #5ad1cd);
}

.loader span:nth-child(1) {
    filter: blur(5px);
}

.loader span:nth-child(2) {
    filter: blur(10px);
}

.loader span:nth-child(3) {
    filter: blur(25px);
}

.loader span:nth-child(4) {
    filter: blur(50px);
}

.loader:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #f1f1f1;
    border: solid white 5px;
    border-radius: 50%;
}

/* FIX GALLERY MODAL BUG */
.wp-block-gallery {
    display: flex!important;
    gap: 0.5em;
    flex-wrap: wrap;
    align-items: center;
}