    
    body {
      font-family: 'Orbitron', sans-serif;
      background: linear-gradient(to bottom right, #ecfdf5, #d1fae5, #bbf7d0);
      color: #0f172a;
      
    }
     body {
        padding: 10px 0px !important;
    }

    header.topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 30px;
      background-color: rgba(16, 185, 129, 0.1);
      border-bottom: 2px solid #10b981;
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }

    .logo {
      font-size: 2em;
      font-weight: bold;
      color: #10b981;
      text-shadow: 0 0 8px #10b981, 0 0 15px #10b98190;
    }

    .btn-painel {
      background: linear-gradient(135deg, #10b981, #065f46);
      color: #fff;
      padding: 10px 22px;
      font-size: 1em;
      font-weight: bold;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      box-shadow: 0 0 12px #10b98180;
      transition: all 0.3s ease;
    }

    .btn-painel:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px #10b981;
    }

    .container {
      max-width: 1100px;
      margin: auto;
      padding: 40px 20px;
    }

    h1 {
      text-align: center;
      font-size: 3em;
      color: #065f46;
      margin-bottom: 20px;
      text-shadow: 0 0 12px #10b98190;
    }

    .subtitle {
      text-align: center;
      font-size: 1.3em;
      color: #064e3b;
      margin-bottom: 30px;
    }

    .section {
      margin-top: 30px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(6px);
      border-left: 5px solid #10b981;
      border-radius: 10px;
      box-shadow: 0 0 10px #10b98160;
      transition: transform 0.3s ease;
    }

    .section:hover {
      transform: scale(1.01);
    }

    h2 {
      color: #047857;
      margin-bottom: 12px;
      font-size: 1.5em;
    }

    p, li {
      font-size: 1.1em;
      line-height: 1.7em;
      color: #0f172a;
    }

    ul {
      list-style-type: '🟢 ';
      padding-left: 20px;
    }

    .btn-cadastro {
      display: block;
      width: 100%;
      max-width: 500px;
      margin: 50px auto 20px;
      padding: 18px;
      background: linear-gradient(to right, #10b981, #047857);
      color: #ffffff;
      font-size: 1.3em;
      font-weight: bold;
      border-radius: 12px;
      text-align: center;
      text-decoration: none;
      box-shadow: 0 0 10px #10b981aa;
      animation: pulse-glow 1.8s infinite;
    }

    @keyframes pulse-glow {
      0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
      70% { box-shadow: 0 0 20px 10px rgba(16, 185, 129, 0); }
      100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
    }

    .motivacional {
      text-align: center;
      font-size: 1.2em;
      color: #047857;
      text-shadow: 0 0 8px #10b98180;
      margin-top: 30px;
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 2em;
      }

      .subtitle, .motivacional {
        font-size: 1em;
      }

      .btn-cadastro {
        font-size: 1.1em;
        padding: 14px;
        width: 90%;
      }

      .topbar {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
      }
    }


    .container2 {
      max-width: 500px;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    h1 {
      text-align: center;
      font-size: 2.5em;
      color: #065f46;
      margin-bottom: 20px;
      text-shadow: 0 0 12px #10b98190;
    }

    a {
  text-decoration: none;
}

    .container2 {
        margin: auto;
      padding: 40px 20px;
      margin-top: 30px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(6px);
      border-left: 5px solid #10b981;
      border-radius: 10px;
      box-shadow: 0 0 10px #10b98160;
      transition: transform 0.3s ease;
    }

    .container2:hover {
      transform: scale(1.01);
    }

    .subtitle {
      text-align: center;
      font-size: 1.3em;
      color: #064e3b;
      margin-bottom: 30px;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    label {
      font-size: 1.1em;
      color: #065f46;
    }

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"] {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
  background: #fff;        /* fundo branco */
  color: #000;             /* texto preto */
  outline: none;
}
   input::placeholder {
  color: #666;
}


    .btn-submit {
      padding: 15px;
      background: linear-gradient(135deg, #00ffc3, #00bfa6);
      color: #000;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 12px;
      cursor: pointer;
      border: none;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(0, 255, 200, 0.6); }
      70% { box-shadow: 0 0 0 15px rgba(0, 255, 200, 0); }
      100% { box-shadow: 0 0 0 0 rgba(0, 255, 200, 0); }
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 2em;
      }

      .btn-submit {
        font-size: 1em;
        padding: 12px;
      }

      .flags img {
        width: 26px;
        height: 18px;
      }
    }