    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f5f5f5;
      color: #333;
    }

    header {
      text-align: center;
      padding: 2rem 1rem;
      background: linear-gradient(45deg, #0534d7, #380188);
      color: #fff;
    }

    header h1 {
      margin: 0;
      font-size: 2rem;
    }

    header p {
      margin-top: 0.5rem;
      font-size: 1.1rem;
    }

    p {
        text-align: center;
        margin: 1rem 0;
        font-size: 1.25rem;
        font-style: italic;
    }

    .table-container {
      max-width: 900px;
      margin: 2rem auto;
      background: #fff;
      padding: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      overflow-x: auto;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      text-align: center;
      font-size: 1rem;
    }

    th, td {
      padding: 12px;
      border-bottom: 1px solid #ddd;
    }

    th {
      background: #0534d7;
      color: #fff;
    }

    th span.desconto {
      font-style: italic;
    }

    tr:nth-child(even) {
      background: #f9f9f9;
    }

    tr.highlight {
      background: #fff7cc;
      font-weight: bold;
      box-shadow: inset 0 0 5px rgba(255,215,0,0.5);
    }

    @media (max-width: 600px) {
      table, th, td {
        font-size: 0.9rem;
      }
    }