  .panel {
      display: none;
      padding: 2rem;
      background: #3a3a3a; /* Roxo profundo */
      color: white;
      //min-height: 100vh;
      position: relative;
    }

    .panel.active {
      display: block;
    }

    .btn-custom {
      background-color: #f07e3d; /* Verde claro */
      border: none;
      color: #1f2937;
      font-weight: bold;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      transition: all 0.3s ease;
    }

    .btn-custom:hover {
      background-color: #3dc7be;
      transform: translateY(-2px);
    }

    .btn-outline-custom {
      border: 2px solid #f07e3d;
      color: #f07e3d;
      font-weight: bold;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      background: transparent;
      transition: all 0.3s ease;
    }

    .btn-outline-custom:hover {
      background: #f07e3d;
      color: #1f2937;
    }

    .progress-bar-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 2rem 0;
      position: relative;
    }

    .step-circle {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      font-weight: bold;
      z-index: 2;
      position: relative;
	  margin:0 auto;
      color: #1f2937;
      transition: background 0.3s ease;
    }

    .step-circle.future {
      background: #3dc7be; /* Futuro: verde claro */
      color: white;
    }

    .step-circle.completed,
    .step-circle.active {
      background: #ffffff; /* Passado/ativo: branco */
      color: #1f2937;
    }

    .step-line {
      flex-grow: 1;
      height: 4px;
      background: #ffffff;
      margin: 0 10px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1;
    }

    .step-label {
      position: absolute;
      top: -40px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.85rem;
      white-space: nowrap;
    }

    .form-control {
      background: rgba(255, 255, 255, 0.1);
      border: none;
      color: white;
      border-radius: 0.5rem;
      padding: 0.75rem 1rem;
    }

    .form-control::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    .form-label {
      font-weight: bold;
      margin-bottom: 0.5rem;
    }

    .radio-option {
      display: flex;
      align-items: center;
      margin: 1rem 0;
      cursor: pointer;
    }

    .radio-option input[type="radio"] {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      width: 20px;
      height: 20px;
      border: 2px solid #ffffff;
      border-radius: 50%;
      margin-right: 10px;
      position: relative;
      outline: none;
    }

    .radio-option input[type="radio"]:checked {
      background: #f07e3d;
      border-color: #f07e3d;
    }

    .radio-option input[type="radio"]:checked::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 8px;
      height: 8px;
      background: #1f2937;
      border-radius: 50%;
    }

    .loading-spinner {
      width: 80px;
      height: 80px;
      border: 8px solid rgba(255, 255, 255, 0.3);
      border-top: 8px solid #f07e3d;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin: 2rem auto;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .text-green {
      color: #f07e3d;
    }

    h1, h2, h3 {
      font-weight: bold;
    }

    .btn-group {
      display: flex;
      justify-content: space-between;
      margin-top: 2rem;
    }

    .phone-input-group {
      display: flex;
      gap: 0.5rem;
    }

    .phone-input-group select, .phone-input-group input {
      flex: 1;
    }

    /* Login container */
    #loginForm {
      display: none;
      margin-top: 1.5rem;
      background: rgba(0,0,0,0.1);
      padding: 1.5rem;
      border-radius: 0.75rem;
    }

    /* Password validation */
    .password-group {
      position: relative;
    }

    .password-eye {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(255,255,255,0.6);
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .panel { padding: 1rem; }
      .step-label { font-size: 0.7rem; top: -30px; }
    }

	.innercontent ul li {
	  list-style-type: none;
	  padding-bottom: 0;
	  padding-top: 0;
	  margin-top: 0;
	  margin-bottom: 0;
	  background: none;
	  background-size: none;
	  padding-left: 0;
	  font-size: 1em;
	  line-height: 0;
	  color: #FFF;
	}