  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            padding: 60px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow-x: hidden;
        }

        /* Efeito de partículas de fundo */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .main-container {
            max-width: 1200px;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .container {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 
                0 8px 32px 0 rgba(31, 38, 135, 0.37),
                inset 0 1px 1px 0 rgba(255, 255, 255, 0.2),
                0 0 60px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            width: 100%;
            border: 1px solid rgba(255, 255, 255, 0.18);
            margin-bottom: 30px;
        }

        .header {
            background: linear-gradient(135deg, #800000 0%, #6e0303 50%, #000000 100%);
            padding: 50px 40px;
            text-align: center;
            color: white;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: float 20s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, -30px); }
        }

        .header-content {
            position: relative;
            z-index: 2;
        }

        .header h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .header p {
            font-size: 1.1rem;
            font-weight: 300;
            opacity: 0.95;
            letter-spacing: 0.5px;
        }

        .content {
            padding: 50px 40px;
        }

        .section-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(255, 107, 107, 0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .table-wrapper {
            overflow-x: auto;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.05);
            padding: 2px;
            backdrop-filter: blur(5px);
            margin-bottom: 40px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        thead {
            background: linear-gradient(135deg, #800000 0%, #6e0303 50%, #000000 100%);
            color: white;
        }

        th {
            padding: 20px 15px;
            text-align: center;
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        td {
            padding: 18px 15px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.95rem;
            color: #f0f0f0;
            background: rgba(255, 255, 255, 0.02);
        }

        tbody tr {
            transition: all 0.3s ease;
        }

        tbody tr:nth-child(odd) {
            background: rgba(255, 255, 255, 0.03);
        }

        tbody tr:nth-child(even) {
            background: rgba(255, 255, 255, 0.05);
        }

        tbody tr:hover {
            background: rgba(200, 30, 30, 0.15);
            box-shadow: inset 0 0 20px rgba(200, 30, 30, 0.1);
            transform: scale(1.01);
        }

        td:first-child {
            font-weight: 700;
            color: #ff6b6b;
            background: rgba(255, 107, 107, 0.1);
        }

        tbody tr:hover td:first-child {
            background: rgba(255, 107, 107, 0.2);
        }

        .competencia {
            font-weight: 700;
            color: #ff6b6b;
        }

        .data-pagamento {
            color: #ffa500;
            font-weight: 600;
        }

        .data-salario {
            color: #52d273;
            font-weight: 600;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-5px);
        }

        .stat-label {
            font-size: 0.85rem;
            color: #b0b0b0;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .stat-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: #ff6b6b;
        }

        .legend {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            color: #e0e0e0;
        }

        .legend-color {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        }

        .legend-adiantamento {
            background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
        }

        .legend-salario {
            background: linear-gradient(135deg, #52d273 0%, #3da85f 100%);
        }

        .legend-competencia {
            background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
        }

        .footer {
            background: rgba(0, 0, 0, 0.3);
            padding: 30px 40px;
            text-align: center;
            font-size: 0.85rem;
            color: #b0b0b0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer p {
            margin: 8px 0;
            line-height: 1.6;
            color: #fff;
        }

        .footer strong {
            color: #ff6b6b;
        }

        /* Tabela de Malotes */
        .malotes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .malote-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 12px;
            padding: 20px;
            transition: all 0.3s ease;
        }

        .malote-card:hover {
            background: rgba(255, 255, 255, 0.09);
            border-color: rgba(255, 107, 107, 0.4);
            transform: translateY(-3px);
        }

        .malote-loja {
            font-weight: 700;
            color: #ff6b6b;
            font-size: 0.95rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .malote-dias {
            color: #52d273;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .malote-dias strong {
            color: #ffa500;
        }

        @media (max-width: 768px) {
            body {
                padding: 30px 15px;
            }

            .container {
                border-radius: 15px;
            }

            .header {
                padding: 35px 25px;
            }

            .header h1 {
                font-size: 2rem;
            }

            .header p {
                font-size: 0.95rem;
            }

            .content {
                padding: 30px 20px;
            }

            th, td {
                padding: 14px 10px;
                font-size: 0.85rem;
            }

            th {
                font-size: 0.9rem;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }

            .malotes-grid {
                grid-template-columns: 1fr;
            }

            .footer {
                padding: 20px 25px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 20px 10px;
            }

            .header {
                padding: 25px 15px;
            }

            .header h1 {
                font-size: 1.5rem;
                letter-spacing: 1px;
            }

            .header p {
                font-size: 0.85rem;
            }

            .content {
                padding: 20px 15px;
            }

            th, td {
                padding: 10px 6px;
                font-size: 0.7rem;
            }

            th {
                font-size: 0.75rem;
            }

            .stat-card {
                padding: 15px;
            }

            .stat-value {
                font-size: 1.4rem;
            }

            .malote-card {
                padding: 15px;
            }

            .section-title {
                font-size: 1.2rem;
            }

            .footer {
                padding: 15px;
                font-size: 0.75rem;
            }
        }

        /* Animação de entrada */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .container {
            animation: slideIn 0.6s ease-out;
        }