 body {
      font-family: 'Segoe UI';
      background: #f4f4f9;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content:first baseline;
      height: 100vh;
        }
        h1 { color: #333; text-align: center;}
        .titulos{
          display: inline-block;
          height: fit-content;
          width: fit-content;
          border-radius: 10px;
          justify-content: space-evenly;
          background-color: rgba(128, 128, 128, 0.137);
          width:100%;
        }
        .logos {
      display: flex;
      margin-top: 10px;
      margin-bottom: 0px;
      align-items: center;
      margin-left: 50px;
      margin-right: 50px;
      gap: 50px;
      zoom: 1;
      justify-content: space-evenly;
      height: 200px;
        }
        .logo {
      max-width: 200px;
      height: auto;
      display: block;
      align-self: center;
        }
        .imgsfinal{
          display: inline-flex;
          margin-top: 0px;
          max-height: 600px;
          align-self: center;
          align-content: center;
          justify-content: center;
        }
        .menu {
      display: flex;
      gap: 20px;
      margin-top: 30px;
        }
        .botao{
      text-decoration: none;
      padding: 15px 30px;
      border-radius: 8px;
      background: #00bf00;
      color: white;
      font-weight: bold;
      transition: background 0.3s;
        }
        .botao:hover {
      background: #215b36;
        }