* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none; /* Remove o sublinhado */
  color: initial; /* Ou uma cor específica, como color: blue; */
}
   @font-face {
       font-family: 'FontAwesomeBrands';
       src: url("../webfonts/MontereyFLF.ttf"); /* Ajuste o caminho conforme necessário */
   }

   body {
  background-color: #ececec;
}

   .topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #ececec;
      color: rgb(0, 0, 0);
      padding: 10px 10px;
      width: 100%;
     box-sizing: border-box;

    }

    .logo {
      font-size: 1.5em;
      font-weight: bold;
    }

    .user-icon {
      cursor: pointer;
      font-size: 1.2em;
    }

    .menu-bar {
      background-color: #555;
      font-family: FontAwesomeBrands;
      padding: 10px 0;
      display: flex;
      justify-content: center;
      border-radius: 10x; /* Arredonda todos os cantos com 10 pixels de raio */
      width: 100%;
        box-sizing: border-box;

    }

    .menu-bar a {
      color: white;
      margin: 0 15px;
      text-decoration:none;
      font-weight: 100;
    }

    .menu-bar a:hover {
      text-decoration: underline;
    }

    .container {
      display: flex;
      gap: 55px;
      justify-content: center;
      flex-wrap: wrap;  
      margin-top: 20px;
        background-color: #ececec;
    }
.containerJanelaIframe{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ececec;
  /*  width: 100vw; /* Largura total da tela */
    height: 100vh; /* Altura total da tela */

    /*  justify-content: center;  
      gap: 20px;
      flex-direction: column; /* Organiza os itens em coluna 
      align-items: center;  /* Centraliza horizontalmente 
      flex-wrap: wrap;  
      margin-top: 10px;
      height: 700px; 
      width: 600px;  */

}

     .item {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .icon {
      font-size: 50px;
      align-items: center;
      transition: transform 0.3s ease, filter 0.3s ease;
      margin-bottom: 10px;
    }

    .icon:hover {
      transform: scale(1.3);
      filter: drop-shadow(0 0 10px currentColor);
    }

    .camera { color: #ff4d4d; }
    .lcd { color: #00f6ff; }
    .speaker { color: #7fff00; }
    .mic { color: #ff00ff; }
    .keyboard { color: #ffa500; }

    h3 {
      margin: 0;
      font-size: 1rem;
    }


.search-icon {
  position: absolute; /* Position the icon absolutely within the container */
  right: 5px; /* Adjust horizontal position */
  top: 50%; /* Vertically center the icon */
  transform: translateY(-50%); /* Fine-tune vertical centering */
  width: 30px; /* Or your desired size */
  height: 30px; /* Or your desired size */
 /* background-image: url('assets/magnifying-glass.png');  /*Replace with your icon path */
  background-size: cover; /* Adjust the icon size to fit */
  background-repeat: no-repeat; /* Prevents repeating */
}

    .search-container {
      position: relative;
      width: 300px;
      margin: 1px;
    }

    .search-input {
      width: 100%;
      padding: 10px 40px 10px 15px; 
      border-radius: 25px;
      border: 1px solid #ccc;
      font-size: 16px;
      outline: none;
    }

    .search-button {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      border: none;
      background: none;
      cursor: pointer;
    }

    .search-button img {
      width: 20px;
      height: 20px;
    }
