@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');


@font-face {
  font-family: "makeaduo";
  font-style: bold;
  src: local('MakeaDuo-Bold'), local('MakeaDuo-Bold'),
    url("fontes/woff2/MakeaDuo-Bold.woff2") format("woff2"),
    url("fontes/OpenType-TT/MakeaDuo-Bold.ttf") format("truetype");
  font-display: swap;
}




*{
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
  text-decoration: none;
}

html, body {
  overflow-x: hidden !important;
 }


 body {
  background-color: #131313;
  color: #ecedf0;
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  font-weight: 400;
  justify-content: center;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  align-items: center;
  display: flex;
  border: #ecedf0;
  overflow-x: hidden !important;
  padding-top: 80px;

}


#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz o vídeo cobrir a área sem distorcer */
    z-index: -10; /* Coloca o vídeo atrás do conteúdo */
    opacity: 0.7; /* Ajuste da opacidade (70%) */
}




.video{
  width:700px;
  height:365px;
  border-radius: 20px;
}
          
section {
width: 100%;
height: 80px;
position: fixed;
top: 0;
left: 0;
z-index: 1;
background-color: #131313;
            
}

#button-menubar{
  z-index: 5;
  right: 25px;
  background-color:transparent;

}

.icon-footer{
  width: 15px;
  height: 15px;
}

          
        


a{
  text-decoration: none;
  color: #ecedf0;
}

a:hover{
  text-decoration: none;
}

h1 {
  font-size: 30px;
  margin: 10px;
  text-align: center;
  font-family: "makeaduo","Montserrat", sans-serif;
  padding: 10px;
  }
       
h2{
    text-align: center;
    align-items: left;
    font-size: 1.7em;
    font-family: "makeaduo","Montserrat", sans-serif;
    padding: 10px;
}

p{
    padding:10px;
    font-size: 16px;
    text-align: left;
    Line-height:1.7em;
    letter-spacing: 0.6px;

}

.p-black {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  filter: blur(8px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  color: #131313;
  margin: 50px;
  width: 60%;
  font-style: italic;
  text-align: center;

}

.p-shadow{
  text-shadow:2px 1px 3px rgba(0, 0, 0, 0.8);
}

.banner:hover .p-black {
  opacity: 1;
  transform: translateY(0%);
  filter: none;
}

@keyframes fade-in-out {
  0%, 100% {
      opacity: 0;
      transform: translateY(100%);
      filter: blur(8px);
  }
  20%, 80% {
      opacity: 1;
      transform: translateY(0%);
      filter: none;
  }
}

.p-black {
  text-align: center;
  animation: fade-in-out 6s infinite;
}


.p-left{
  text-align: left;
  Line-height:1.7em;
  align-items: left;
}


.explication{
   border: solid 2px #ecedf0;
   padding: 10px 20px;
  width: 90%;
}

.bold {
    font-weight: bold;
   }
        


/*menu*/


/* BOTÃO DO MENU */
.nav-button {
  margin: auto;
  cursor: pointer;
  position: fixed;
  padding: 5px;
  top: 10px;
  right: 25px;
  color: #ecedf0;
  z-index: 6;
  transition: transform 0.3s ease;
}

.nav-button:hover {
  transform: scale(1.1);
}

/* MENU OVERLAY COM TRANSIÇÃO SUAVE */
.overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease-in-out;
  background: rgba(19, 19, 19, 0.97);
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 5;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.overlay.open {
  transform: scaleX(1);
}

.overlay-content {
  text-align: center;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 0.6s ease;
}

/* LINKS DO MENU */
.overlay a {
  padding: 8px;
  text-decoration: none;
  color: #ecedf0;
  font-size: 1.3em;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.overlay a:hover {
  color: #8E5EBF;
}

/* EFEITO DE LINHA AO PASSAR O MOUSE */
.overlay a::before,
.overlay a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #8E5EBF;
  transition: width 0.4s ease-in-out;
}

.overlay a::before {
  transform-origin: left;
}

.overlay a::after {
  transform-origin: right;
}

.overlay a:hover::before,
.overlay a:hover::after {
  width: 100%;
}

/* BOTÃO DE FECHAR */
.overlay .closebtn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 40px;
  color: #ecedf0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.overlay .closebtn:hover {
  transform: rotate(90deg);
}

/* ANIMAÇÃO DE ENTRADA */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*começa menu*/
.menu-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center; /* Centraliza os itens horizontalmente */
}

.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centraliza os conteúdos internos */
  text-align: center;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  color: #ecedf0;
  cursor: pointer;
  text-align: center;
}

.arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #ecedf0 transparent transparent transparent;
  transition: transform 0.3s ease-in-out;
}

.arrow.rotate {
  transform: rotate(180deg);
}

.submenu {
  display: none;
  margin-top: 5px;
  text-align: center;
}

.submenu a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #ecedf0;
  font-size: 1em;
  transition: 0.2s;
}

.submenu a:hover {
  background-color: #2a2c30;
}



/*terminou menu*/


/*botão*/


button {
  background-color: #131313;
  color:#ecedf0;
  flex-direction: row;
  display: flex;
  font-weight: 400;
  align-items: center;
  }
        

/* botão colorido */

.glow-on-hover {
  min-width: 220px;
  height: 60px;
  border: none;
  outline: none;
  color: #131313;
  background: #131313;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  border: solid 1px #ecedf0;
  justify-content: center;
  font-weight: 600;
  margin: 10px auto;
}

.glow-on-hover:before {
  content: '';
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left:-2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(10px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
}

.glow-on-hover:active {
  color: #ecedf0;
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ecedf0;
  left: 0;
  top: 0;
  border-radius: 10px;
}

@keyframes glowing {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}

/* botão colorido */


/* botão serviços */

.glow-on-hover2 {
  min-width: 220px;
  height: 70px;
  color: #ecedf0;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  padding: 20px;
  justify-items: left;
  gap: 18px;
  cursor: pointer;
  margin: 10px auto;
}

.glow-on-hover2:before {
  content: '';
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left:-2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(10px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  border-radius: 20px;
}

.glow-on-hover2:hover:before {
  opacity: 1;
}

.glow-on-hover2:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #131313;
  left: 0;
  top: 0;
  border: solid 1px #ecedf0;
  border-radius: 10px;
}


/* botão serviços */

.glow-on-hover3 {
  min-width: 220px;
  height: 70px;
  color: #131313;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  padding: 20px;
  justify-items: left;
  gap: 18px;
  cursor: pointer;
  margin: 10px auto;
  font-weight: 600;
}

.glow-on-hover3:before {
  content: '';
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left:-2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(10px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  border-radius: 20px;
}

.glow-on-hover3:hover:before {
  opacity: 1;
}

.glow-on-hover3:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ecedf0;
  left: 0;
  top: 0;
  border: solid 1px #ecedf0;
  border-radius: 10px;
}

  footer{
    width: 100%;
    font-size: 0.7em;
    bottom:0; 
    padding: 20px 10px;
    background-color: #0f0f0f;
  
  }

.homerodape {
    position: absolute;
    bottom: 0;
}




  @media screen and ( max-width: 716px){

    .carousel-inner .item{
      width: 100%;
      height: 100%;
    }

    h1{
      min-width:80%;
    }

    h2{
      min-width:80%;
    }

    .glow-on-hover {
      min-width: 100%;
      justify-content: center;
    }

    .glow-on-hover2 {
      min-width: 100%;
      justify-content: center;
    }
    .button-voltar{
      min-width: 100%;
    }
 
    .video{
      width: 90%;
      height:176px;
    }
    .youtube{
      height:200px;
    }

    .logo{
      font-size: 20px;
    
    }

    p{
      min-width:90%;
      text-align: left;
    }

    .grid {
      position: relative;
      min-width: 90%;
     }


      .container{
        min-width:90%;
      }

      .p-black {
        min-width: 90%;
        text-align: left;
      
      }

      .container-home{
       min-width: 90%;
      
      }

      #video-background video {
        display: none;
      }

      #imagem video {
        display: none; /* Esconde a video em telas maiores que 716px */
      }

    .homerodape {
        position: relative;
        bottom: 0;
    }
    
  }

  @media (min-width: 717px) {
    .bannercapa {
      display: none; /* Esconde a imagem em telas maiores que 716px */
    }
  }
  

  p a {
    position: relative;
    text-decoration: underline;
  }
  

  
  p a:hover, p a:focus{
    color: #575757;
    text-decoration: underline;
  }




  i{
    cursor: pointer;
  }



  .logo{
    cursor: pointer;
    left: 20px;
    padding: 10px;
    width: 180px;
    text-align: left;
    font-size: 28px;
    font-family: "makeaduo","Montserrat", sans-serif;
    display: flex;
  
  }

  .banner{
    padding:20px 5px;
    background-color: #ecedf0;
    width: 100%;
    justify-content: center;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    align-items: center;
    display: flex;
  }




.backtotop {
  position: fixed;
  bottom: 5%; /* Ajuste conforme necessário para a posição vertical desejada */
  right: 0px; /* Ajuste conforme necessário para a posição horizontal desejada */
  color: #ecedf0; /* Cor do texto */
  padding: 10px; /* Espaçamento ao redor do texto */
  margin: 10px;
  z-index: 1;
  cursor: pointer;
}

.icon {
  height: 48px;
  width: 48px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5); /* Sombra com deslocamento horizontal de 2px, deslocamento vertical de 2px e desfoque de 4px */
  border-radius: 50%; /* Para criar um ícone redondo (caso deseje) */
  background-color: #131313;
}
  
  
  .icon:hover {
  background-color: #282829; /* color of text on hover over */
  
  }



.footertext{
  font-size: 1em;
  text-align: center;
  line-height: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.footertext a{
  height: 28px;
  align-items: center;
  display: flex;
}



.banner-titulo{
  margin:20px auto;

}


.container{
  width: 60%;
  margin:50px auto 100px auto;
  text-align: left;
  flex-direction: column;
  justify-content:center;
  align-items:center;
  display: flex;

}

.container2{
  width: 100%;
  text-align: left;
  flex-direction: column;
  display: flex;
  background-color: #ecedf0;
  color: #131313;
}

.container4{
  width: 100%;
  height: 100%;
  margin: 20px auto;
  flex-direction: row;
  align-items:center;
  justify-content:center;
  display: flex;
  gap:5px;
  flex-wrap: wrap;

}

li{
  text-align: left;
}



.container-home{
  width: 70%;
  height: 100%;
  padding: 100px;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  display: flex;
  gap: 20px;


}

.button-voltar{
  flex-direction:column;

}

.bannercapa,
.banner-entrada {
  object-fit: cover;
  width: 100%;
  height: 500px;

  /* Máscara de gradiente para esconder a parte de baixo */
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #ecedf0 100%);
  mask-image: linear-gradient(to top, transparent 0%, #ecedf0 100%);
  
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

  #imagem {
    position: relative;
    display: flex;
    width: 100%;
    height: 500px;
    text-align: center;
    align-items: center;
  }

  
  figcaption {
  position: absolute;
  font-size: 36px;
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 20px;
  text-align: center;
  font-family: "makeaduo","Montserrat", sans-serif;
}



/*.caixaImg em projetos */

.grid{
  display: flex;
  flex-direction: row;
  justify-content:center;
  flex-wrap: wrap;
  width: 100%;
  margin: 40px auto;

}

.grid2{
  display: flex;
  flex-direction: row;
  justify-content:center;
  flex-wrap: wrap;
  width: 70%;
  margin:auto;

}


   .imagem {
    display: block;
    width: 350px;
    height: 200px;
    overflow: hidden;
    border-radius: 20px;
    }



#scrollButton {
  bottom: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 1s infinite alternate;
}

#scrollButton img {
  width: 24px;
  height: 24px;
  animation: rotate 1s infinite linear;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

/*-- Política de privacidade --*/

#consent-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: lightgray;
  padding: 10px;
  display: flex;
  align-items: center;
  color: #131313;
  
}

#consent-banner a{
  color: #131313;
}

#consent-banner a :hover{
  color: #575757;
}

/* blog*/
header {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
}

main {
  max-width: 800px;
  margin: 20px auto;
  padding: 10px;
}

.main-article {
  margin-bottom: 20px;
}

.older-articles {
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

.article {
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination a {
  padding: 5px 10px;
  text-decoration: none;
  color: #333;
}

.pagination a.active {
  background-color: #333;
  color: #fff;
}

/* Estilos do "story" */
.story-container {
  width: 100%;
  max-width: 600px;
}

.slide {
  width: 100%;
  display: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  width: 50%;
  height: auto;
}

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #333;
  transform-origin: left;
  transform: scaleX(0); /* Inicialmente, a barra de progresso estará com 0% de preenchimento */
}


