
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    

    body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f8; /* Fundo em tom de azul claro */
    padding-bottom: 0px; /* Deixe espaço suficiente para o footer */
}

    

    /* Navbar unificada */
.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #0052A4;
    height: 56px; /* Mesma altura para todas as páginas */
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    margin: 0;
    position: relative;
    top: 0;
    border-radius: 0;
}



.navbar a[role="button"] {
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid #1976d2;
  border-radius: 25px;
  background-color: #ffffff;
  color: #1976d2;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.navbar a[role="button"]:hover {
  background-color: #e3f2fd;
  color: #0d47a1;
  transform: scale(1.05);
}






.logo {
    margin-right: auto;
    margin-left: 16px;
    padding: 16px;
}

.logo img {
    max-height: 40px;
    height: auto;
}

/* Estilos do menu hambúrguer */
#hamburger-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger-icon {
    width: 30px;
    height: 3px;
    background-color: rgb(255, 252, 252);
    margin: 5px 0;
}

/* Menu dropdown */
#menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    z-index: 999;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

#menu a {
    display: block;
    padding: 8px 12px;
    color: black;
    text-decoration: none;
    font-size: 16px;
}

#menu a:hover {
    background-color: #f0f0f0;
}








    .app {
      width: 100%;
      max-width: 980px;
      background: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }
    
    .header {
      background: #f0f4f8;
      color: #ffffff;
      padding: 24px 20px;
      text-align: center;
    }
    
    .header h2 {
      font-size: 32px;
      font-weight: 700;
      margin: 0 0 8px;
      color: #202124;
    }
    
    .header p {
      font-size: 16px;
      opacity: 0.9;
      margin: 0;
    }
    
    .content {
      padding: 24px;
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: #202124;
      font-size: 15px;
    }
    
    input {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #dadce0;
      border-radius: 8px;
      font-size: 16px;
      transition: all 0.3s ease;
      background-color: #ffffff;
    }
    
    input:focus {
      outline: none;
      border-color: #0052A4;
      box-shadow: 0 0 0 2px rgba(0, 82, 164, 0.2);
    }
    
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 20px;
      font-size: 15px;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;
    }
    
    .btn-primary {
      background: #0052A4;
      color: #ffffff;
    }
    
    .btn-primary:hover {
      background: #003d7a;
    }
    
    .btn-secondary {
      background: #f8f9fa;
      color: #202124;
      border: 1px solid #dadce0;
    }
    
    .btn-secondary:hover {
      background: #e8eaed;
    }
    
    .btn-success {
      background: #34a853;
      color: #ffffff;
    }
    
    .btn-success:hover {
      background: #2e8b47;
    }
    
    .btn-warning {
      background: #0052A4;
      color: #ffffff;
    }
    
    .btn-warning:hover {
      background: #e6ac00;
    }
    
    .controls {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }
    
    .controls .btn {
      flex: 1;
    }
    
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
      gap: 10px;
      margin-top: 24px;
    }
    
    .grid-btn {
      padding: 12px 8px;
      background: #f8f9fa;
      border: 1px solid #dadce0;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.3s ease;
      text-align: center;
    }
    
    .grid-btn:hover {
      background: #e8eaed;
    }
    
    .grid-btn.paid {
      background: #34a853;
      color: #ffffff;
      border-color: #34a853;
      cursor: default;
    }
    
    .grid-btn.pending {
      background: #fbbc04;
      color: #202124;
      border-color: #fbbc04;
    }
    
    .resumo {
      background: #f8f9fa;
      padding: 20px;
      border-radius: 8px;
      margin-top: 24px;
      border: 1px solid #dadce0;
    }
    
    .resumo h3 {
      font-size: 18px;
      margin-bottom: 16px;
      color: #202124;
    }
    
    .resumo-item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 12px;
      padding-bottom: 12px;
      border-bottom: 1px solid #dadce0;
    }
    
    .resumo-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    
    .pix-box {
      background: #ffffff;
      padding: 16px;
      border-radius: 8px;
      margin-top: 16px;
      border: 1px dashed #5f6368;
      font-family: monospace;
      font-size: 14px;
      word-break: break-all;
      white-space: pre-wrap;
    }
    
    .actions {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }
    
    .actions .btn {
      flex: 1;
    }
    
    .alert {
      padding: 12px 16px;
      border-radius: 8px;
      margin-bottom: 20px;
      font-size: 14px;
    }
    
    .alert-info {
      background: #e8f0fe;
      color: #0d47a1;
      border-left: 4px solid #0052A4;
    }


    /* Ajustar o padding para não cobrir o conteúdo */
footer {
    font-family: "Inter", sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0052A4;
    height: 56px;
    width: 100%;
    margin-top: 20px; /* Espaço entre o footer e o conteúdo acima */
    position: relative; /* Mantém o footer dentro do fluxo da página */
}

footer a { 
    color: #ffffff;
text-decoration: none;
}


    
    @media (max-width: 768px) {
      .controls, .actions {
        flex-direction: column;
      }
      
      .grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 8px;
      }
      
      .content {
        padding: 10px;
      }
      
      .header {
        padding: 20px 16px;
      }
    }
    
    @media (max-width: 480px) {
      body {
        padding: 0px;
      }
      
      .grid {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 6px;
      }
      
      .grid-btn {
        padding: 10px 6px;
        font-size: 12px;
      }
    }
  