
/* Estilos específicos para a página de pagamento */
    .payment-page main {
      max-width: 800px;
      margin: 0 auto;
      padding: 30px 20px;
    }

    .payment-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .payment-header h1 {
      color: var(--primary);
      font-family: var(--font-title);
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .payment-steps {
      display: flex;
      justify-content: space-between;
      margin-bottom: 30px;
      position: relative;
    }

    .payment-steps::before {
      content: '';
      position: absolute;
      top: 20px;
      left: 0;
      right: 0;
      height: 3px;
      background-color: #eee;
      z-index: 1;
    }

    .step {
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .step-number {
      width: 40px;
      height: 40px;
      background-color: #eee;
      color: #666;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 10px;
      font-weight: bold;
    }

    .step.active .step-number {
      background-color: var(--primary);
      color: white;
    }

    .step.completed .step-number {
      background-color: #2ecc71;
      color: white;
    }

    .step-text {
      font-size: 0.9rem;
      color: #666;
    }

    .step.active .step-text {
      color: var(--primary);
      font-weight: bold;
    }

    .payment-container {
      background-color: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .payment-methods {
      display: none;
    }

    .payment-methods.active {
      display: block;
    }

    .pix-payment {
      text-align: center;
    }

    .pix-logo {
      font-size: 2rem;
      color: #32BCAD;
      margin-bottom: 20px;
    }

    .pix-qrcode {
      width: 250px;
      height: 250px;
      margin: 0 auto 20px;
      background-color: #f5f5f5;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      position: relative;
    }

    .pix-qrcode img {
      max-width: 90%;
      max-height: 90%;
    }

    .pix-instructions {
      margin-bottom: 30px;
    }

    .pix-instructions ol {
      text-align: left;
      padding-left: 20px;
      margin: 20px 0;
    }

    .pix-instructions li {
      margin-bottom: 10px;
    }

    .pix-key {
      background-color: #f9f9f9;
      border-radius: 8px;
      padding: 15px;
      margin: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .pix-key-value {
      font-family: monospace;
      word-break: break-all;
    }

    .btn-copy-pix {
      background-color: var(--primary);
      color: white;
      border: none;
      padding: 8px 15px;
      border-radius: 5px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s;
    }

    .btn-copy-pix:hover {
      background-color: #1a5276;
    }

    .payment-info {
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid #eee;
    }

    .payment-details {
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
    }

    .payment-total {
      font-size: 1.2rem;
      font-weight: bold;
      color: var(--primary);
      margin-top: 10px;
    }

    .payment-note {
      font-size: 0.8rem;
      color: #666;
      margin-top: 30px;
      text-align: center;
    }

    .timer-container {
      text-align: center;
      margin: 20px 0;
    }

    .timer {
      font-size: 1.5rem;
      font-weight: bold;
      color: #e74c3c;
    }
