 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
 }

    body {
      background: #f5f5f5;
      min-height: 100vh;
    }

    /* Navbar */
    header {
      background: rgba(39, 14, 131, 0.9);
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      transition: 0.3s;
    }

    header img {
      height: 60px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    nav ul li {
      position: relative;
    }

    nav a {
      color: white;
      text-decoration: none;
      padding: 8px;
      transition: 0.3s;
    }

    nav a:hover {
      background: #ff9800;
      border-radius: 5px;
    }

    /* Dropdown */
    nav ul li ul {
      display: none;
      position: absolute;
      top: 35px;
      left: 0;
      background: rgba(45, 14, 131, 0.95);
      border-radius: 5px;
      padding: 10px 0;
      min-width: 180px;
    }

    nav ul li:hover ul {
      display: block;
      animation: fadeIn 0.3s ease-in-out;
    }
    /* Footer */
    footer {
      background: #091180;
      color: white;
      padding: 40px 20px;
      text-align: center;
    }

    footer iframe {
      width: 100%;
      max-width: 500px;
      height: 250px;
      border: none;
      margin: 20px auto;
      display: block;
      border-radius: 10px;
    }

    .social {
      margin-top: 15px;
    }

    .social a {
      color: white;
      margin: 0 10px;
      font-size: 1.5rem;
      text-decoration: none;
      transition: color 0.3s;
    }

    .social a:hover {
      color: #ff9800;
    }

    /* Responsivo */
    .menu-toggle {
      display: none;
      cursor: pointer;
      font-size: 1.8rem;
    }

    .faq-card {
      margin-bottom: 30px; /* Espaço entre os cards */
    }

    footer {
      margin-top: 80px; /* Espaço entre o último card e o footer */
    }
      nav ul {
        flex-direction: column;
        display: none;
        background: rgba(39, 14, 131, 0.95);
        position: absolute;
        top: 70px;
        right: 0;
        width: 220px;
        padding: 20px;
      z-index: 1000; /* Ensure it appears above other elements */
      }

      nav ul.show {
        display: flex;
        flex-direction: column; /* Ensure proper stacking of items */
      }

      .faq-card {
        margin-bottom: 60px; /* Adiciona espaço entre os cards */
      }

        .menu-toggle {
          display: block;
        }
    /* Close @media (max-width: 768px) */
    .hero {
  padding-top: 100px; /* Ajuste conforme a altura da sua navbar */
}


  .faq-card {
    width: 300px;
    width: 90%;
    padding: 15px;
    border: 2px solid #4a90e2;
    border-radius: 10px;
    background-color: #ffffff;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .faq-card:hover {
    background-color: #e6f0ff;
    width: 90%;
  }

  .faq-question {
    font-weight: bold;
    color: #2c3e50;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #34495e;
    padding: 0 0;
  }

  .faq-card.active .faq-answer {
    max-height: 200px;
    padding: 10px 0;
  }
.hero h1 i {
  font-size: 32px;
  color: #4a90e2;
  margin-right: 10px;
  vertical-align: middle;
}
