* {
    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;
  }
  #mensagem::-webkit-scrollbar {
    width: 10px;
    background-color: #ffffff;
  }
  ::-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;
    }
  }
  

  
  .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;
  }
  
  .categorias-mobile {
    max-height: 0; /* Começa fechado */
    overflow: hidden; /* 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;
    padding-left: 20px;
    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;
  }
  
  .hamburger input {
    display: none;
  }
  
  .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);
  }
  
  .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);
  }
  
  .hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
  }
  
  
  .inicio-text {
    color: #ffffff;
    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 {
    color: #DD6D06;
    opacity: 0%;
    animation: log 0.3s ease-out forwards;
    animation-delay: 0.9s;
    cursor: pointer;
  }
  
  .speakus-text {
    color: #ffffff;
    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;
    display: flex;
    flex-direction: column;
  }
  
  .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;
    }
    .menu{
        height: 70px;
    }
    
    .logo{
        width: 90px;
    }
  
    .conteiner-apresentacao{
      display: flex;
      flex-direction: column;
    }
    .conteiner-apresentacao-sub{
      width: 150px;
    }
    .conteiner-apresentacao-text{
      width: 95%;
    text-align: center;
    
    }
  
      #img-1{
        display: flex;
        justify-content: center;
      
      }
  }
  .footer {
    background-color: #181818;
    color: #ffffff;
    padding: 40px 0;
    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);
}

  @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: column;
    }

    .conteiner-apresentacao-sub{
      width: 300px;
      
    }
    .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; }
  }
  
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }
  
  
  .contact-container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  input[type="text"], input[type="email"], input[type="tel"], textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  button {
    width: 100%;
    padding: 10px;
    background-color: #DD6D06;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #45a049;
  }
  
  .form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 120px; /* Ajuste a altura conforme necessário */
    background-color: #f0f0f0; /* Cor de fundo opcional */
    padding-bottom: 20px;
  }
  
  .contact-container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  