    @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

    body {
      font-family: "Roboto", sans-serif;
      background-color: #f5f5f5;
      color: #333;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      width: 100%;
      position: relative;
    }

    html {
      overflow-x: hidden;
      width: 100%;
    }

    .container {
      max-width: 800px;
      margin: 0 auto;
      background: white;
      min-height: 100vh;
    }

    .header {
      background: #f8f9fa;
      padding: 10px 20px;
      border-bottom: 1px solid #e9ecef;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .logo {
      color: #dc3545;
      font-weight: bold;
      font-size: 18px;
      max-width: 160px;
      height: auto;
    }

    .user-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #dc3545;
      box-shadow: 0 2px 8px rgba(220, 53, 69, 0.08);
      transition: background 0.2s;
    }

    .user-icon svg {
      display: block;
      color: #fff;
    }

    @media (max-width: 600px) {
      .header {
        align-items: flex-start;
        padding: 10px 8px;
      }

      .logo {
        max-width: 120px;
        font-size: 16px;
      }

      .user-icon {
        width: 38px;
        height: 38px;
        margin-top: 8px;
      }
    }

    .banner {
      width: 100%;
      height: 120px;
      background: linear-gradient(135deg, #8b4513, #d2691e);
      background-image: url("images/mbWojB3REAtt.jpg");
      display: flex;
      align-items: center;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .banner-content {
      position: relative;
      z-index: 1;
      padding: 20px;
    }

    .attention-section {
      text-align: center;
      padding: 20px;
    }

    .attention-title {
      color: #dc3545;
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .progress-bar {
      background: #dc3545;
      color: white;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: bold;
      margin-bottom: 20px;
      display: inline-block;
    }

    .warning-text {
      font-size: 18px;
      line-height: 1.6;
      color: #333;
      margin-bottom: 30px;
    }

    .highlight {
      font-weight: bold;
    }

    .warning-message {
      background: #fff3cd;
      border: 1px solid #ffeaa7;
      border-radius: 8px;
      padding: 20px;
      margin: 20px;
      text-align: center;
      font-size: 18px;
      font-weight: bold;
      color: #333;
    }

    .pay-button {
      background: #dc3545;
      color: white;
      border: none;
      border-radius: 8px;
      padding: 15px 30px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      margin: 20px auto;
      display: block;
      transition: all 0.3s ease;
    }

    .pay-button:hover {
      background: #c82333;
      transform: translateY(-2px);
    }

    .tax-note {
      text-align: center;
      color: #6c757d;
      font-style: italic;
      margin: 20px;
      font-size: 16px;
    }

    .pending-message {
      text-align: center;
      color: #6c757d;
      margin: 30px 20px;
      font-size: 14px;
      line-height: 1.5;
    }

    .faq-section {
      margin-top: 50px;
      padding: 20px;
    }

    .faq-title {
      color: #dc3545;
      font-size: 20px;
      font-weight: bold;
      text-align: center;
      margin-bottom: 30px;
    }

    .faq-item {
      margin-bottom: 20px;
    }

    .faq-question {
      color: #dc3545;
      font-weight: bold;
      margin-bottom: 10px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .faq-answer {
      color: #333;
      line-height: 1.5;
      padding-left: 20px;
    }

    .payment-interface {
      display: none;
      padding: 20px;
    }

    .price {
      font-size: 32px;
      font-weight: bold;
      color: #374151;
      text-align: center;
      margin: 20px 0;
    }

    .pix-code-container {
      background: #f9fafb;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      padding: 12px;
      margin: 20px 0;
      font-family: monospace;
      font-size: 14px;
      color: #6b7280;
      word-break: break-all;
    }

    .copy-button {
      background: #3b82f6;
      color: white;
      border: none;
      border-radius: 8px;
      padding: 12px 20px;
      margin: 10px 0;
      width: 100%;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.3s ease;
    }

    .copy-button:hover {
      background: #2563eb;
    }

    .timer-section {
      background: #f3f4f6;
      padding: 15px 20px;
      text-align: center;
      color: #6b7280;
      font-size: 14px;
      border-radius: 8px;
      margin: 20px 0;
    }

    .status-indicator {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 15px 20px;
      color: #6b7280;
      font-size: 14px;
    }

    .loading-dots {
      display: inline-flex;
      gap: 2px;
    }

    .loading-dots span {
      width: 4px;
      height: 4px;
      background: #6b7280;
      border-radius: 50%;
      animation: loading 1.4s infinite ease-in-out;
    }

    .loading-dots span:nth-child(1) {
      animation-delay: -0.32s;
    }

    .loading-dots span:nth-child(2) {
      animation-delay: -0.16s;
    }

    @keyframes loading {

      0%,
      80%,
      100% {
        transform: scale(0);
      }

      40% {
        transform: scale(1);
      }
    }

    .instructions {
      background: #f9fafb;
      padding: 20px;
      border-radius: 8px;
      margin: 20px 0;
    }

    .instruction-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 15px;
      font-size: 14px;
      color: #374151;
    }

    .instruction-number {
      background: #374151;
      color: white;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: bold;
      flex-shrink: 0;
    }

    .verify-button {
      background: #10b981;
      color: white;
      border: none;
      border-radius: 8px;
      padding: 15px 20px;
      margin: 20px 0;
      width: 100%;
      font-weight: 600;
      cursor: pointer;
      font-size: 16px;
      transition: all 0.3s ease;
    }

    .verify-button:hover {
      background: #059669;
    }

    .notification-popup {
      position: fixed;
      top: 20px;
      right: -300px;
      background-color: #168821;
      color: white;
      padding: 16px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      z-index: 1000;
      transition: right 0.3s ease-in-out;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .notification-popup.show {
      right: 20px;
    }

    .fade-in {
      animation: fadeIn 0.5s ease-in;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    .hidden {
      display: none !important;
    }

    .progress-bar-animated {
      margin-bottom: 20px;
    }

    .progress-bar-track {
      background: #f3f4f6;
      border-radius: 20px;
      width: 100%;
      height: 22px;
      position: relative;
      overflow: hidden;
    }

    .progress-bar-fill {
      background: #dc3545;
      height: 100%;
      width: 0;
      border-radius: 20px;
      transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .progress-bar-label {
      position: absolute;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      color: #333;
      font-weight: bold;
      font-size: 14px;
      line-height: 22px;
      z-index: 2;
      pointer-events: none;
    }

    #loadingPage {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.95);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .loading-card {
      background: white;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      text-align: center;
      max-width: 400px;
      width: 90%;
    }
    
    details summary {
      list-style: none;
    }
    
    details summary::-webkit-details-marker {
      display: none;
    }
    
    details summary::before {
      content: '+';
      display: inline-block;
      width: 20px;
      font-weight: 400;
      color: #9ca3af;
    }
    
    details[open] summary::before {
      content: '−';
    }

    .payment-interface {
      display: none;
      padding: 30px 20px;
    }

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

    .pix-code-container {
      background: #f9fafb;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      padding: 12px;
      margin-bottom: 15px;
    }

    .copy-button {
      width: 100%;
      background: #d81014;
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 15px;
      transition: background-color 0.2s ease;
    }

    .copy-button:hover {
      background: #c41010;
    }

    .verify-button {
      width: 100%;
      background: #10b981;
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }

    .verify-button:hover {
      background: #059669;
    }

    .timer-section {
      background: #fef3c7;
      border-left: 3px solid #f59e0b;
      padding: 12px 15px;
      margin-bottom: 15px;
      border-radius: 4px;
      color: #92400e;
      font-size: 14px;
    }

    .status-indicator {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: #6b7280;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .loading-dots {
      display: flex;
      gap: 4px;
    }

    .loading-dots span {
      width: 6px;
      height: 6px;
      background: #9ca3af;
      border-radius: 50%;
      animation: bounce 1.4s infinite;
    }

    .loading-dots span:nth-child(2) {
      animation-delay: 0.2s;
    }

    .loading-dots span:nth-child(3) {
      animation-delay: 0.4s;
    }

    @keyframes bounce {
      0%, 80%, 100% {
        opacity: 0.3;
      }
      40% {
        opacity: 1;
      }
    }

    .instruction-item {
      display: flex;
      gap: 12px;
      margin-bottom: 15px;
      align-items: flex-start;
    }

    .instruction-number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      background: #d81014;
      color: white;
      border-radius: 50%;
      font-weight: 700;
      flex-shrink: 0;
    }

    .instruction-item > div:last-child {
      color: #374151;
      font-size: 14px;
      line-height: 1.5;
      padding-top: 5px;
    }
  </style>
