/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Fonte padrão */
  body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    background: url("background.jpg") no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
  }
  
  /* Camada escura sobre o fundo */
  .background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
  }
  
  /* Container principal */
  .container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    max-width: 420px;
    margin: 0 auto;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  /* Logo */
  .logo {
    width: 180px;
    margin-bottom: 24px;
  }
  
  /* Título */
  h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
  }
  
  /* Subtítulo */
  .subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 28px;
    color: #f0f0f0;
  }
  
  /* Caixa PIX */
  .pix-box {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    color: #222;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
  }
  
  /* Texto PIX */
  .pix-label {
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #555;
  }
  
  .pix-key {
    font-size: 0.95rem;
    word-break: break-all;
    margin-bottom: 16px;
    font-weight: 600;
  }
  
  /* Botão */
  button {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    background: #2e9acc;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  
  button:hover {
    background: #27ae60;
  }
  
  /* Instrução final */
  .instruction {
    font-size: 0.9rem;
    color: #dddddd;
    line-height: 1.4;
  }
  
  /* Responsivo */
  @media (max-width: 360px) {
    h1 {
      font-size: 1.7rem;
    }
  
    .logo {
      width: 150px;
    }
  }
  

  .whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #25D366;
    color: #ffffff;
    padding: 16px 22px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    max-width: 360px;
    margin: 20px auto;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  }
  
  .whatsapp-btn:hover {
    background-color: #1ebe5d;
  }
  
  .whatsapp-btn img {
    width: 28px;
    height: 28px;
    filter: invert(1);
  }

  .qr-container {
    margin-top: 15px auto;
    text-align: center;
  }
  
  .qr-image {
    width: 260px;
    max-width: 90%;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  }

  .pix-pay-btn {
  margin-top: 14px;
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  background: #00c853;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.pix-pay-btn:hover {
  background: #00b34a;
}

/* Header */
.site-header {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px 0;
    font-weight: 600;
    font-size: 1.3rem;
    color: #ffffff;
}

/* Footer */
.site-footer {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.9rem;
    color: #cccccc;
    background: rgba(0, 0, 0, 0.5);
    margin-top: 20px;
}
