  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
body {
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;

  /* Gradiente + imagem juntos */
  background: linear-gradient(135deg, rgba(26, 26, 64, 0.9), rgba(15, 15, 45, 0.9)),
              url('Imagem\ do\ WhatsApp\ de\ 2025-08-12\ à\(s\)\ 09.54.31_cd8deb13.jpg') no-repeat center center;

  background-size: cover;
  background-attachment: fixed;

  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px;
  overflow-x: hidden;
}


    .titulo {
      font-size: 3.5rem;
      font-weight: 600;
      background: linear-gradient(to right, #feb200, #ff6a00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 0.3rem;
    }

    #logo {
        width: 200px;
        margin: 0 1150px auto 0;
        height: auto;
        margin-bottom: 20px;
        transition: filter 0.3s ease;
        position: absolute;
    }

    #inscreva-seT {
      font-size: 2rem;
      margin-top: 1rem;
      margin-bottom: 0.5rem;
      letter-spacing: 1px;
      color: #fff;
    }

    #Laranja {
      width: 120px;
      height: 4px;
      background-color: #feb200;
      margin: 15px auto 30px;
      border-radius: 5px;
    }

    p {
      max-width: 700px;
      text-align: center;
      margin-bottom: 25px;
      font-size: 1.1rem;
      color: #ddd;
    }

    .glass-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      padding: 40px 30px;
      width: 100%;
      max-width: 500px;
      backdrop-filter: blur(15px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .glass-card input {
      width: 100%;
      padding: 12px 15px;
      background-color: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      color: white;
      font-size: 1rem;
      outline: none;
      transition: all 0.3s ease;
    }

    .glass-card input::placeholder {
      color: #bbb;
    }

    .glass-card input:focus {
      border-color: #feb200;
      box-shadow: 0 0 0 2px #feb20044;
      background-color: rgba(255, 255, 255, 0.15);
    }

    button#inscrever {
      background: linear-gradient(to right, #feb200, #ff6a00);
      color: black;
      border: none;
      border-radius: 10px;
      padding: 14px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    button#inscrever:hover {
      transform: scale(1.03);
      box-shadow: 0 0 15px #feb20066;
    }

    #contatos {
      margin-top: 50px;
      font-size: 1.2rem;
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    #contatos a {
      color: #feb200;
      font-size: 28px;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    #contatos a:hover {
      color: white;
      transform: scale(1.2);
    }

    #parceiros {
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      align-items: center;
    }

    #parceiros img {
      max-width: 100px;
      filter: brightness(0) invert(1);
      opacity: 1;
      transition: opacity 0.3s ease;
    }

    #parceiros img:hover {
      opacity: 1;
    }

    footer {
      margin-top: 60px;
      color: #bbb;
      font-size: 0.9rem;
    }

    @media (max-width: 600px) {
      .titulo {
        font-size: 2.3rem;
        text-align: center;
      }

      #inscreva-seT {
        font-size: 1.5rem;
      }

      .glass-card {
        padding: 30px 20px;
      }

      p {
        font-size: 1rem;
      }

      #logo {
        width: 150px;
        margin: 0 auto;
        position: absolute;
        margin: -60px 230px 0 0;
 }

 #pale {
        margin: 20px;
 }
    }
