* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    
}

.logo {
    animation: log 0.3s ease-out forwards;
}
body{
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 10px;
  background-color: #0d0d0e;
}
::-webkit-scrollbar-thumb {
  background-color: #DD6D06;
  border-radius: 10px;
}

@keyframes log {
    from {
        opacity: 0%;
        margin-top: -10px;
    }

    to {
        opacity: 100%;
        margin-top: 10px;
    }
}

.footer {
  background-color: #181818;
  color: #ffffff;
  padding: 40px ;
  font-family: ZAIN;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-section {
  flex: 1 1 200px;
  text-align: center;
}

.footer-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-links {
  list-style-type: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #e4e4e4;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
}

.social-links img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.social-links a:hover img {
  transform: scale(1.2);
}

.menu {
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100px;
    background: #000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    transition: opacity 0.2s ease-in-out;
   
}

.cat1{
    display: flex;
    flex-direction: row;
    color: white;
    gap: 39px;
}

.cat1 p:hover{
  color: #DD6D06;
}

.cat2{
    display: flex;
    flex-direction: row;
    color: white;
    gap: 39px;
   font-size: 12px;
   overflow: hidden;

}

.categorias-mobile {
    max-height: 0; /* Começa fechado */
    overflow: auto; /* Oculta o conteúdo extra quando fechado */
    transition: max-height 0.5s ease-in-out; /* Animação suave de abertura */
    width: 100%;
    position: absolute;
    background: white;
    top: 70px;
    padding-left: 10px;
 
   
  }
  
  .categoria{
    cursor: pointer;
    padding: 0px;
    padding-top: 10px;
    font-weight: bold;
  }
  .subcategorias1 p:hover {
    color: #DD6D06;
  }

  .subcategorias2 p:hover {
    color: #DD6D06;
  }
  .categoria-text:hover{
    color: #DD6D06;
  }
  .subcategorias1 {
    overflow: hidden;
   
    max-height: 0;
    padding-left: 20px;
    transition: max-height 0.4s ease-out;
   
    
  }
  
 .subcategorias1::-webkit-scrollbar{
    background: #ffffff;
  }

  .subcategorias1.mostrar {
    max-height: 400px; /* Ajuste conforme o conteúdo */
    overflow-y: scroll;
    margin-bottom: 10px;
   
  }

  .subcategorias2 {
    overflow: hidden;
    padding-left: 20px;
     max-height: 0;
    padding-left: 20px;
    transition: max-height 0.4s ease-out;
   
    
  }
  
  .subcategorias2.mostrar {
    max-height: 700px; /* Ajuste conforme o conteúdo */
    
  }
  
  .menu-mobile {
    font-family: Arial, sans-serif;
  }
  
  .menu-item {
    font-size: 15px;
   
    
  }
  
  .menu-item i {
    margin-left: 10px;

  }
  
  .subcategorias p {
    font-size: 16px;
    padding: 5px 0;
  }
  
 
  
  .menu-mobile {
    padding-top: 10px;
  }
  
  .categorias-mobile.abrir {
    max-height: 5000px;
    width: 100%;
    z-index: 900;
  }
  

/* From Uiverse.io by JulanDeAlb */ 
.hamburger {
    cursor: pointer;
    overflow: hidden;
  }
  
  .hamburger input {
    display: none;
    overflow: hidden;
  }
  
  .hamburger svg {
    /* The size of the SVG defines the overall size */
    height: 3em;
    /* Define the transition for transforming the SVG */
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
  }
  
  .line {
    fill: none;
    stroke: white;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    /* Define the transition for transforming the Stroke */
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .line-top-bottom {
    stroke-dasharray: 12 63;
  }
  
  .hamburger input:checked + svg {
    transform: rotate(-45deg);
    overflow: hidden;
  }
  
  .hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
  }
  

.inicio-text {
    color: #DD6D06;
    opacity: 0%;
    animation: log 0.3s ease-out forwards;
    animation-delay: 0.3s;
    cursor: pointer;
}

.projects-text {
    opacity: 0%;
    animation: log 0.3s ease-out forwards;
    animation-delay: 0.6s;
    cursor: pointer;
}

.aboutus-text {
    opacity: 0%;
    animation: log 0.3s ease-out forwards;
    animation-delay: 0.9s;
    cursor: pointer;
}

.speakus-text {
    opacity: 0%;
    animation: log 0.3s ease-out forwards;
    animation-delay: 1.2s;
    cursor: pointer;
}



  @keyframes typing {
    from { 
        visibility: hidden;
        
        height: -10%; } /* Começa com 0 largura (escondido) */
    to {
        visibility: visible; 
        
        height: 100%; } /* Vai até 100% da largura do texto */
  }

  /* Animação do cursor piscando */

  
  .t:hover .telefones {
    max-height: 200px; /* Defina o valor apropriado para a altura máxima necessária */
    padding: 10px; /* Adicione o padding ao abrir */
    border: 1px solid #ddd; /* Adicione a borda ao abrir */
}

.telefones {
    overflow: hidden; /* Oculta o conteúdo extra quando fechado */
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out, border 0.5s ease-in-out;
    max-height: 0;
    position: absolute;
    top: 60px; /* Ajuste conforme o layout */
    background-color: #fff;
    color: #333;
    padding: 0; /* Padding removido quando fechado */
    border: none; /* Remover a borda quando fechado */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    border-radius: 5px;
}

.projects{
    overflow: hidden; /* Oculta o conteúdo extra quando fechado */
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out, border 0.5s ease-in-out;
    max-height: 0;
    position: absolute;
    top: 60px; /* Ajuste conforme o layout */
    background-color: #fff;
    color: #333;
    padding: 0; /* Padding removido quando fechado */
    border: none; /* Remover a borda quando fechado */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    border-radius: 5px;
    text-decoration: none;
    
    
}

.p:hover .projects {
    max-height: 500px; /* Defina o valor apropriado para a altura máxima necessária */
    padding: 10px; /* Adicione o padding ao abrir */
    border: 1px solid #ddd; /* Adicione a borda ao abrir */
    
    
    
}

.p:hover .projects {
  overflow-y: scroll;
}

.p:hover .projects::-webkit-scrollbar {
  background-color: white; 
  width: 8px; 
}

.p:hover .projects::-webkit-scrollbar-thumb {
  background-color: #DD6D06; 
  border-radius: 4px; 
}



.projetos-lista {
    list-style-type: none; /* Remove as bolinhas */
    padding: 0px; /* Remove o padding padrão */

  }
  
  .projetos-lista li {
    margin: 10px 0; /* Espaçamento entre os itens */
  }
  
  .projetos-lista li a {
    text-decoration: none; /* Remove sublinhado dos links */
    color: #333; /* Define a cor do texto */
    font-weight: bold; /* Deixa o texto em negrito */
  }
  
  .projetos-lista li a:hover {
    color: #DD6D06; /* Muda a cor ao passar o mouse */
  }

  .contato-lista {
    list-style-type: none; /* Remove as bolinhas */
    padding: 0px; /* Remove o padding padrão */
  }
  
  .contato-lista li {
    margin: 10px 0; /* Espaçamento entre os itens */
  }
  
  .contato-lista li a {
    text-decoration: none; /* Remove sublinhado dos links */
    color: #333; /* Define a cor do texto */
    font-weight: bold; /* Deixa o texto em negrito */
  }
  
  .contato-lista li a:hover {
    color: #DD6D06; /* Muda a cor ao passar o mouse */
  }
 
   
  

  .conteiner-apresentacao-text{
    padding-left: 3%;
  }
  .conteiner-apresentacao-text p{
    font-size: 20px;
  }

  .conteiner-apresentacao{
   background: #f5f5f5;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 20px;
  }

  .fixed-icon {
    position: fixed;
    bottom: 25px; /* Ajuste a distância do fundo */
    right: 25px;  /* Ajuste a distância da direita */
    z-index: 1000; /* Para garantir que fique acima de outros elementos */
}

.fixed-icon img {
    width: 50px; /* Ajuste o tamanho conforme necessário */
    height: auto; /* Manter a proporção da imagem */
}

@media screen and (max-width: 1200px) {
    .cat1{
        display: none;
    }
    .cat2{
        display: flex;
        -webkit-overflow-scrolling: touch;
        overflow-y: hidden;
    }
    .menu{
        height: 70px;
    }
    
    .logo{
        width: 90px;
    }

    .conteiner-apresentacao{
      display: flex;
      flex-direction: column-reverse;
    }
    .conteiner-apresentacao-text{
      width: 95%;
    text-align: center;
    
    }

      #img-1{
        display: flex;
        justify-content: center;
        width: 100%;
        overflow: hidden;
      }
}

@media screen and (min-width: 1200px) {
    .cat1{
        display: flex;
    }
    .cat2{
        display: none;
    }
    .menu{
        height: 100px;
    }
    .logo{
        width: 90px;
    }
    .categorias-mobile{
        display: none;
        
    }
    .conteiner-apresentacao{
      display: flex;
      flex-direction: row;
    }
    .conteiner-apresentacao-text{
      width: 40%;
      display: flex;
      flex-direction: column;
      
    }

    #img-1{
      display: flex;
      justify-content: flex-start;
    }
}

#text-animation{
  
  overflow: hidden; white-space: nowrap; border-right: 2px solid #DD6D06; animation: typing 2s steps(44, end) forwards, blink 0.3s step-end infinite alternate;

  white-space: nowrap;

  overflow: hidden;
  
  
  }

  /* Animação do efeito de escrever */
  @keyframes typing {
    from { width: 0; 
      }
    to { width: 50%;
       }

  }

  /* Animação do cursor piscando */
  @keyframes blink {
    50% { border-color: transparent; }
  }
  