* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f4f7fb;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      margin: 0;
    }

    .comprovante-container {
      background-color: white;
      padding: 40px;
      width: 450px;
      border-radius: 12px;
      box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
      text-align: center;
      font-size: 14px;
      color: #333;
    }

    h1 {
      color: #3498db;
      font-size: 28px;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .informacoes {
      text-align: left;
      margin-bottom: 30px;
      font-size: 16px;
    }

    .informacoes p {
      margin: 8px 0;
      color: #7f8c8d;
    }

    .informacoes p span {
      font-weight: bold;
      color: #2c3e50;
    }

    .botao {
      background-color: #3498db;
      color: white;
      padding: 12px 24px;
      font-size: 16px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s, transform 0.2s;
      margin-top: 20px;
    }

    .botao:hover {
      background-color: #2980b9;
      transform: scale(1.05);
    }

    .comprovante-footer {
      margin-top: 30px;
      font-size: 12px;
      color: #bdc3c7;
      line-height: 1.6;
    }

    .comprovante-footer a {
      color: #3498db;
      text-decoration: none;
    }

    .comprovante-footer a:hover {
      text-decoration: underline;
    }

    .map-link {
      color: #3498db;
      text-decoration: none;
      display: block;
      margin-top: 15px;
    }

    .map-link:hover {
      text-decoration: underline;
    }

    .location-info {
      display: flex;
      justify-content: center;
      gap: 10px;
      font-size: 12px;
      margin-top: 20px;
      color: #7f8c8d;
    }

    .location-info span {
      font-weight: bold;
    }
