  body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      padding-top: 80px;
      /* Altura do header */
      padding-bottom: 80px;
      /* Altura do footer */
      box-sizing: border-box;
  }

  /* Header fixo */
  header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: 80px;
  }

  /* Footer fixo */
  footer {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  /* Conteúdo principal com rolagem */
  #dv_ct {
      flex-grow: 1;
      overflow-y: auto;
      padding: 20px 0;
  }

  .custom-shadow-lg {
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .btn-custom {
      background-color: #6366f1;
      color: white;
       border-color: #6610f2;
      transition: all 0.3s;
  }

  .btn-custom:hover {
      background-color: #4f46e5;
      color: white;
      border-color: #520dc2;
  }

  .file-input-custom::-webkit-file-upload-button {
      padding: 0.5rem 1rem;
      border-radius: 50px;
      border: 0;
      background-color: #eef2ff;
      color: #6366f1;
      margin-right: 1rem;
      font-weight: 600;
      font-size: 0.875rem;
      transition: background-color 0.3s;
  }

  .file-input-custom::-webkit-file-upload-button:hover {
      background-color: #e0e7ff;
  }

  .ct_qrcode {
      display: none;
  }

  .cv {
      margin-top: 1rem;
  }

  .dv_copiacola {
      cursor: pointer;
  }

  .qrcode-image {
      width: 100%;
      aspect-ratio: 1;
      object-fit: contain;
      border-radius: 12px;
      border: 1px solid #eee;
      padding: 10px;
      background-color: #f8f9fa;
      display: none;
  }

  .loading {
      display: none;
      font-size: 18px;
      color: #6a11cb;
      margin: 20px 0;
  }

  .payment-info {
      background-color: #f8f9fa;
      border-radius: 12px;
      padding: 15px;
      margin-top: 20px;
      display: none;
  }

  .logo {
      color: #6a11cb;
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 10px;
  }

  .header-icon {
      width: 2rem;
      height: 2rem;
      color: #6366f1;
  }

  #pixCopyText {
      font-size: 0.8rem;
      background-color: #f8f9fa;
      padding: 10px;
      border-radius: 5px;
      cursor: pointer;
      position: relative;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-all;
      white-space: normal;
      display: block;
      width: 100%;
  }

  #pixCopyText:hover {
      background-color: #e9ecef;
  }

  .copy-tooltip {
      position: absolute;
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%);
      background-color: #333;
      color: white;
      padding: 5px 10px;
      border-radius: 4px;
      font-size: 12px;
      margin-bottom: 5px;
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
  }

  #pixCopyText:hover .copy-tooltip {
      opacity: 1;
  }

  .pix-text-container {
      width: 100%;
      max-width: 100%;
      margin-bottom: 1rem;
  }

  .pix-text {
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
      white-space: normal;
      font-family: monospace;
      font-size: 0.75rem;
      line-height: 1.4;
      padding: 10px;
      background-color: #f8f9fa;
      border-radius: 5px;
      border: 1px solid #dee2e6;
  }

  /* sessão da pagina index*/
  body {
      font-family: 'Inter', sans-serif;
      background-color: #f3f4f6;
  }

  .bg-custom-indigo {
      background-color: #4f46e5;
  }

  .text-custom-indigo {
      color: #4f46e5;
  }
  
    .btn-custom-indigo {
            background-color: #6610f2;
            border-color: #6610f2;
            color: white;
        }
        .btn-custom-indigo:hover {
            background-color: #520dc2;
            border-color: #520dc2;
        }

  .btn-custom-white {
      background-color: #fff;
      color: #4f46e5;
      font-weight: 700;
      transition: all 0.3s ease;
  }

  .btn-custom-white:hover {
      background-color: #e5e7eb;
      transform: scale(1.05);
  }

  .card-custom-shadow:hover {
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .form-control:focus {
      border-color: #4f46e5;
      box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.25);
  }

  /*css pagina produtos*/
  
  .product-card {
      display: flex;
      flex-direction: column;
      height: 100%;
  }

  .product-card .card-body {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
  }

  .product-card .mt-auto {
      margin-top: auto;
  }