  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Roboto', sans-serif;
  }

  body {
      background-color: #f0f3f4;
      color: #2c3e50;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
  }

  header {
      background: linear-gradient(90deg, #2ecc71, #8e6e53, #95a5a6);
      color: white;
      text-align: center;
      padding: 20px 20px 40px;
      position: relative;
  }

  .logo-container img {
      width: 150px;
      height: auto;
  }

  header h1 {
      display: none;
  }

  header p {
      font-size: 1.2rem;
      font-style: italic;
      margin-top: 10px;
  }

  nav.navbar {
      margin-top: 20px;
  }

  nav.navbar ul {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
  }

  nav.navbar ul li a {
      text-decoration: none;
      color: white;
      font-weight: bold;
      font-size: 1rem;
      transition: color 0.3s;
  }

  nav.navbar ul li a:hover {
      color: #dfffe0;
      text-decoration: underline;
  }

  main {
      flex: 1;
      max-width: 1000px;
      margin: 40px auto;
      padding: 0 20px;
  }

  h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      text-align: center;
      color: #8e6e53;
  }

  .intro-text {
      text-align: center;
      margin-bottom: 40px;
      font-size: 1.1rem;
  }

  .modes {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
  }

  .mode {
      background: white;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      flex: 1 1 280px;
      max-width: 300px;
      text-align: center;
      transition: transform 0.3s ease;
  }

  .mode:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .mode h3 {
      color: #2c3e50;
      margin-bottom: 10px;
  }

  .mode p {
      color: #555;
  }

  .testimonials {
      background-color: #ecf0f1;
      padding: 40px 20px;
      border-radius: 12px;
      max-width: 700px;
      margin: 0 auto;
  }

  .testimonial {
      font-style: italic;
      color: #2c3e50;
      position: relative;
      padding-left: 30px;
  }

  .testimonial::before {
      content: "“";
      font-size: 3rem;
      color: #8e6e53;
      position: absolute;
      left: 0;
      top: -10px;
  }

  .testimonial-footer {
      font-weight: 700;
      margin-top: 10px;
      color: #8e6e53;
  }

  .video-container {
      margin: 40px auto;
      width: 350px;
      height: 500px;
      background: #000;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  }

  video {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .connect-button {
      display: inline-block;
      margin-top: 25px;
      padding: 15px 35px;
      background: linear-gradient(90deg, #2ecc71, #8e6e53);
      color: white;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.2rem;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
      transition: background 0.3s ease;
  }

  .connect-button:hover {
      background: linear-gradient(90deg, #27ae60, #7b5d46);
  }

  footer {
      background: linear-gradient(90deg, #2ecc71, #8e6e53);
      color: white;
      text-align: center;
      padding: 20px;
      font-size: 0.9rem;
      margin-top: auto;
  }

  .fixed-icon {
      position: fixed;
      right: 15px;
      z-index: 1000;
  }

  .discord {
      bottom: 90px;
  }

  .map {
      bottom: 90px;
  }

  .instagram {
      bottom: 20px;
  }

  .fixed-icon button {
      background: transparent;
      border: none;
      cursor: pointer;
  }

  .fixed-icon img {
      width: 60px;
      height: 60px;
      filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.3));
      transition: filter 0.3s ease;
  }

  .fixed-icon button:hover img {
      filter: drop-shadow(0 0 10px #27ae60);
  }

  .status-server {
      margin-top: 15px;
      display: inline-block;
      padding: 6px 12px;
      border-radius: 8px;
      font-weight: bold;
      font-size: 1rem;
      background-color: #aaa;
      color: #fff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }

  .status-online {
      background-color: #2ecc71;
  }

  .status-offline {
      background-color: #e74c3c;
  }

  .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 2rem;
      color: white;
      cursor: pointer;
      position: absolute;
      bottom: 10px;
      /* Agora está no final do header */
      right: 20px;
      z-index: 999;
  }

  .mode img {
      width: 120px;
      height: 120px;
  }

  .tabs {
      display: flex;
      background-color: #111;
      border-bottom: 2px solid #333;
  }

  .tab-button {
      flex: 1;
      background-color: #111;
      color: white;
      padding: 15px;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s;
      font-size: 16px;
  }


  .tab-button:hover {
      background-color: #333;
  }

  .tab-button.active {
      background-color: #555;
  }

  .tab-content {
      display: none;
      padding: 20px;
  }

  .tab-content.active {
      display: block;
  }

  h2 {
      margin-top: 0;
  }

  .hidden-info {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease;
  }

  .hidden-info.open {
      max-height: 1000px;
      /* ou um valor grande o suficiente */
  }

  .toggle-btn {
      background: none;
      border: none;
      color: #2ecc71;
      font-weight: bold;
      cursor: pointer;
      margin-top: 10px;
      display: inline-block;
      font-size: 1rem;
  }

  .toggle-btn:hover {
      text-decoration: underline;
  }

  @media (max-width: 768px) {
      .menu-toggle {
          display: block;
      }

      nav.navbar ul {
          display: none;
          flex-direction: column;
          background-color: #2ecc71;
          position: absolute;
          top: 100%;
          /* abaixo do header */
          left: 0;
          width: 100%;
          padding: 10px 0;
          z-index: 998;
      }

      nav.navbar ul.open {
          display: flex;
      }

      nav.navbar ul li {
          text-align: center;
          width: 100%;
          padding: 10px 0;
      }
  }

  .download-btn {
      display: inline-block;
      background-color: #c0392b;
      color: white;
      padding: 10px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
  }

  .download-btn:hover {
      background-color: #e74c3c;
  }





  @media (max-width: 768px) {
      nav.navbar ul {
          flex-direction: column;
          gap: 10px;
      }

      .mode {
          width: 100%;
          max-width: 320px;
      }

      .video-container {
          width: 100%;
          height: auto;
          max-width: 400px;
      }
  }