
    @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=WDXL+Lubrifont+SC&display=swap');
    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-size: 62.5%; /* 1rem = 10px */
        list-style: none;
        text-decoration: none;                  /* Evita seleção de texto */
    }

        .container {
            
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            padding: 20px;
               font-family: 'Inter', sans-serif;
            font-size: 2rem;
        }
        nav{
            display: flex !important;
            
        }

        .header {
            background: white;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            text-align: center;
            border-left: 4px solid #28a745;
            
        }


        .ecosystem-pillars {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .pillar {
            background: #28a745;
            color: white;
            padding: 15px 25px;
            border-radius: 8px;
            font-weight: 600;
             font-family: 'Inter', sans-serif;
            font-size: 1.4rem;
        }

        .tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
            width: 100%;
            justify-content: center;
            align-items: center;
            
        }

        .tab-btn {
            background: white;
            border: 1px solid #ddd;
            padding: 12px 16px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            color: #666;
            transition: all 0.2s ease;
            font-family: "Bebas Neue", sans-serif;
            font-size: 1.5rem;
        }

        .tab-btn:hover {
            background: #f8f9fa;
            border-color: #28a745;
        }

        .tab-btn.active {
            background: #28a745;
            color: white;
            border-color: #28a745;
        }

        .tab-content {
            display: none;
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .tab-content.active {
            display: block;
        }

        .tab-content h2 {
            color: #28a745;
            margin-bottom: 20px;
            font-family: 'Inter', sans-serif;
            font-size: 2rem;
    font-style: normal;
            font-weight: 900;
            border-bottom: 2px solid #28a745;
            padding-bottom: 8px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }

        .form-group {
            display: flex;
              
            flex-direction: column;
        }

        .form-group label {
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
               font-family: 'Inter', sans-serif;
            font-size: 1.4rem;
            
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
               font-family: 'Inter', sans-serif;
            font-size: 1.4rem;
            
            transition: border-color 0.2s ease;
        }
        option{
             font-family: 'Inter', sans-serif;
            font-size: 1.4rem;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #28a745;
        }

        .btn {
            background: #28a745;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            transition: background-color 0.2s ease;
              font-family: 'Inter', sans-serif;
            font-size: 1.4rem;
        }
      

        .btn:hover {
            background: #218838;
        }

        .btn-secondary {
            background: #6c757d;
        }

        .btn-secondary:hover {
            background: #5a6268;
        }

        .btn-danger {
            background: #dc3545;
        }

        .btn-danger:hover {
            background: #c82333;
        }

        .btn-warning {
            background: #ffc107;
            color: #212529;
        }

        .btn-warning:hover {
            background: #e0a800;
        }

        .btn-info {
            background: #17a2b8;
        }

        .btn-info:hover {
            background: #138496;
        }

        .btn-small {
            padding: 6px 12px;
             font-family: 'Inter', sans-serif;
            font-size: 1.4rem;
            margin: 2px;
        }

        .table-container {
            overflow-x: auto;
            margin-top: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        th, td {
            padding: 6px;
            text-align: center;
            border-bottom: 1px solid #eee;
             font-family: 'Inter', sans-serif;
            font-size: 1.4rem;
        }

        th {
            background: #28a745;
            font-weight: 600;
            color: white;
        }

        tr:hover {
            background: #f8f9fa;
        }

        .status-ativo { background: #d4edda; color: #155724; padding: 4px 8px; border-radius: 4px; font-weight: 500; font-size: 0.8rem; }
        .status-inativo { background: #f8d7da; color: #721c24; padding: 4px 8px; border-radius: 4px; font-weight: 500; font-size: 0.8rem; }
        .status-pendente { background: #fff3cd; color: #856404; padding: 4px 8px; border-radius: 4px; font-weight: 500; font-size: 0.8rem; }
        .status-concluido { background: #d4edda; color: #155724; padding: 4px 8px; border-radius: 4px; font-weight: 500; font-size: 0.8rem; }
        .status-entregue { background: #cce5ff; color: #004085; padding: 4px 8px; border-radius: 4px; font-weight: 500; font-size: 0.8rem; }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }

        .stat-card {
            background: #28a745;
            color: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
        }

        .stat-card h3 {
            margin: 0 0 10px 0;
            font-size: 2rem;
            font-weight: 700;
        }

        .stat-card p {
            margin: 0;
            font-family: 'Inter', sans-serif;
            font-size: 1.4rem;
            font-weight: 500;
        }

        .impact-indicators {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        .impact-card {
            background: #17a2b8;
            color: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
        }

        .controls-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
            border: 1px solid #ddd;
        }

        .search-input {
            flex: 1;
            min-width: 200px;
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
              font-family: 'Inter', sans-serif;
            font-size: 1.4rem;
        }

        .search-input:focus {
            outline: none;
            border-color: #28a745;
        }

        .filter-select {
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
           font-family: 'Inter', sans-serif;
            font-size: 1.4rem;
            min-width: 120px;
        }
.receipt {
  position: relative;
  max-width: 400px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border: 2px solid #28a745;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  z-index: 1;
}

.marca-dagua-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 0;
}

.marca-dagua {
  width: 70%;
  opacity: 0.08;
}

.receipt > *:not(.marca-dagua-wrapper) {
  position: relative;
  z-index: 1;
}

        .receipt-header {
            text-align: justify;
            border-bottom: 1px solid #28a745;
            padding-bottom: 15px;
            margin-bottom: 15px;
 font-family: 'Inter', sans-serif;
            font-size: 2.3rem;

        }

        .receipt-header h3 {
            color: #28a745;
            font-size: 2rem;
            margin: 0;
        }

        .receipt-item {
            display: flex;
            justify-content: space-between;
            margin: 8px 0;
             font-family: 'Inter', sans-serif;
            font-size: 2rem;
        }

        .receipt-total {
            border-top: 2px solid #28a745;
            padding-top: 10px;
            margin-top: 15px;
            font-weight: bold;
            font-size: 2rem;
        }
 strong{
    font-size: 1.4rem;
 }
 p{
    font-size: 1.4rem;
 }
        .alert {
            padding: 12px 15px;
            border-radius: 6px;
            margin: 15px 0;
            font-weight: 500;
             font-family: 'Inter', sans-serif;
            font-size: 1.4rem;
        }

        .alert-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .alert-warning {
            background: #fff3cd;
            color: #856404;
            border: 1px solid #ffeaa7;
        }

        .alert-danger {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }

        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 25px;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            max-height: 80vh;
            overflow-y: auto;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #28a745;
        }

        .modal-header h2 {
            color: #28a745;
            margin: 0;
            font-size: 1.4rem;
            font-weight: 600;
        }

        .close {
            color: #aaa;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            border: none;
            background: none;
            padding: 5px;
        }

        .close:hover {
            color: #dc3545;
        }

        .modal-body {
            margin-bottom: 20px;
        }

        .modal-footer {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .category-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            margin: 5px 0;
            background: #f8f9fa;
            border-radius: 6px;
            border: 1px solid #ddd;
        }

        .category-item:hover {
            border-color: #28a745;
            background: #f0fff0;
        }

        .category-info {
            flex: 1;
        }

        .category-code {
            font-weight: 600;
            color: #28a745;
            font-size: 1rem;
        }

        .category-name {
            color: #666;
            font-size: 0.8rem;
            margin-top: 2px;
        }

        .category-actions {
            display: flex;
            gap: 5px;
        }

        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 12px 20px;
            border-radius: 6px;
            z-index: 1100;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            max-width: 300px;
            animation: slideIn 0.3s ease;
        }

        .notification.success {
            background: #28a745;
            color: white;
        }

        .notification.error {
            background: #dc3545;
            color: white;
        }

        .notification.warning {
            background: #ffc107;
            color: #212529;
        }

        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .floating-add {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #28a745;
            color: white;
            border: none;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
            transition: all 0.2s ease;
            z-index: 999;
        }

        .floating-add:hover {
            transform: scale(1.1);
            background: #218838;
        }

        .empty-state {
            text-align: center;
            padding: 40px 20px;
            color: #666;
        }

        .empty-state-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            opacity: 0.5;
        }

        .empty-state-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: #28a745;
        }

        .empty-state-text {
              font-family: 'Inter', sans-serif;
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

        @media (max-width: 768px) {
            .tabs {
                grid-template-columns: 1fr;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .container {
                padding: 15px;
            }

            .header h1 {
                font-size: 2rem;
            }

            .controls-bar {
                flex-direction: column;
                align-items: stretch;
            }

            .search-input {
                min-width: auto;
            }

            .modal-content {
                width: 95%;
                margin: 10% auto;
                padding: 20px;
            }

            .floating-add {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }
    .status-cancelada {
  background: #f8d7da;
  color: #721c24;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
    font-family: 'Inter', sans-serif;
            font-size: 2rem;
}
.receipt-signatures {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  font-family: 'Inter', sans-serif;
  gap: 10px;
}

.signature {
  text-align: center;
    font-family: 'Inter', sans-serif;
            font-size: 14px;
            
  
}