/* Reset básico */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #0f0f0f;
      color: #e0e0e0;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* Navbar */
    .navbar {
      background: #1a1a1a;
      padding: 1rem 0;
      border-bottom: 1px solid #333;
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: #00cc6a;
      font-weight: 600;
      font-size: 1.1rem;
    }

    .nav-logo img {
      width: 35px;
      height: 35px;
    }

    .nav-link {
      color: #e0e0e0;
      text-decoration: none;
      padding: 8px 16px;
      border-radius: 5px;
      background: rgba(0, 204, 106, 0.1);
      transition: all 0.3s;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-link:hover {
      background: rgba(0, 204, 106, 0.2);
      color: #00cc6a;
    }

    /* Container Principal */
    .cadastro-container {
      padding: 2rem 1rem;
      min-height: calc(100vh - 70px);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cadastro-wrapper {
      max-width: 1100px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 350px;
      gap: 2rem;
    }

    /* Card de Cadastro */
    .cadastro-card {
      background: #242424;
      border-radius: 15px;
      padding: 2.5rem;
      border: 1px solid #333;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .cadastro-header {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .logo-circle {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      background: linear-gradient(135deg, #00cc6a, #00a857);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .header-logo {
      width: 50px;
      height: 50px;
      filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    }

    .cadastro-header h1 {
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
      color: #fff;
    }

    .cadastro-header p {
      color: #a0a0a0;
      font-size: 1rem;
    }

    /* Formulário */
    .cadastro-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-group label {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #e0e0e0;
      font-weight: 500;
      font-size: 0.95rem;
    }

    .form-group label i {
      color: #00cc6a;
    }

    .form-group input {
      padding: 14px 16px;
      background: #1a1a1a;
      border: 1px solid #333;
      border-radius: 8px;
      color: #e0e0e0;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      transition: all 0.3s;
    }

    .form-group input:focus {
      outline: none;
      border-color: #00cc6a;
      box-shadow: 0 0 0 3px rgba(0, 204, 106, 0.1);
    }

    .form-group input::placeholder {
      color: #707070;
    }

    .form-help {
      color: #707070;
      font-size: 0.85rem;
    }

    /* Password Wrapper */
    .password-wrapper {
      position: relative;
    }

    .password-wrapper input {
      width: 100%;
      padding-right: 50px;
    }

    .toggle-password {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: #707070;
      cursor: pointer;
      font-size: 1.1rem;
      padding: 5px;
      transition: color 0.3s;
    }

    .toggle-password:hover {
      color: #00cc6a;
    }

    /* Checkbox */
    .checkbox-group {
      margin-top: 1rem;
    }

    .checkbox-label {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      cursor: pointer;
    }

    .checkbox-label input[type="checkbox"] {
      display: none;
    }

    .checkmark {
      min-width: 20px;
      height: 20px;
      border: 2px solid #333;
      border-radius: 4px;
      position: relative;
      margin-top: 2px;
      transition: all 0.3s;
    }

    .checkbox-label:hover .checkmark {
      border-color: #00cc6a;
    }

    .checkbox-label input:checked + .checkmark {
      background: #00cc6a;
      border-color: #00cc6a;
    }

    .checkbox-label input:checked + .checkmark::after {
      content: '';
      position: absolute;
      left: 6px;
      top: 2px;
      width: 5px;
      height: 10px;
      border: solid #1a1a1a;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
    }

    .checkbox-text {
      color: #a0a0a0;
      font-size: 0.95rem;
      line-height: 1.4;
    }

    /* Link */
    .link {
      color: #00cc6a;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }

    .link:hover {
      color: #00e676;
      text-decoration: underline;
    }

    /* Mensagem */
    .mensagem {
      padding: 12px 16px;
      border-radius: 8px;
      font-size: 0.95rem;
      margin: 1rem 0;
    }

    .mensagem.success {
      background: rgba(46, 213, 115, 0.1);
      border: 1px solid #2ed573;
      color: #2ed573;
    }

    .mensagem.error {
      background: rgba(255, 71, 87, 0.1);
      border: 1px solid #ff4757;
      color: #ff4757;
    }

    /* Botão */
    .submit-btn {
      background: linear-gradient(135deg, #00cc6a, #00a857);
      color: #0f0f0f;
      border: none;
      padding: 16px;
      border-radius: 8px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 1rem;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(0, 204, 106, 0.3);
    }

    .submit-btn:active {
      transform: translateY(0);
    }

    /* Login Link */
    .login-link {
      text-align: center;
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid #333;
    }

    .login-link p {
      color: #a0a0a0;
    }

    /* Sidebar */
    .info-sidebar {
      background: #242424;
      border-radius: 15px;
      padding: 2rem;
      border: 1px solid #333;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      align-self: flex-start;
    }

    .sidebar-content h3 {
      color: #00cc6a;
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .benefits {
      list-style: none;
      margin-bottom: 2rem;
    }

    .benefits li {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
      color: #a0a0a0;
    }

    .benefits li i {
      color: #00cc6a;
      font-size: 0.9rem;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      background: #1a1a1a;
      padding: 1.5rem;
      border-radius: 10px;
      border: 1px solid #333;
    }

    .stat {
      text-align: center;
    }

    .stat-number {
      font-size: 1.8rem;
      font-weight: 700;
      color: #00cc6a;
      margin-bottom: 4px;
    }

    .stat-label {
      font-size: 0.8rem;
      color: #707070;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Responsividade */
    @media (max-width: 768px) {
      .cadastro-wrapper {
        grid-template-columns: 1fr;
        max-width: 500px;
      }

      .cadastro-card,
      .info-sidebar {
        padding: 1.5rem;
      }

      .cadastro-header h1 {
        font-size: 1.5rem;
      }

      .stats {
        grid-template-columns: 1fr;
      }

      .nav-container {
        flex-direction: column;
        gap: 1rem;
      }

      .nav-logo span {
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .cadastro-card {
        padding: 1.5rem 1rem;
      }

      .logo-circle {
        width: 70px;
        height: 70px;
      }

      .header-logo {
        width: 40px;
        height: 40px;
      }
    }