    body {
      font-family: sans-serif;
      background-color: #f1f1f1;
      padding: 40px;
    }

    .form-container {
      max-width: 500px;
      margin: auto;
      background-color: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    h2 {
      text-align: center;
      color: #2b7c54;
    }

    label {
      display: block;
      margin-top: 15px;
    }

    input, select {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }

    button {
      margin-top: 20px;
      width: 100%;
      background-color: #2b7c54;
      color: white;
      padding: 12px;
      border: none;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
    }

    button:hover {
      background-color: #246645;
    }

    .hidden {
      display: none;
    }

    #valor_total {
      font-weight: bold;
      margin-top: 10px;
      font-size: 18px;
      color: #333;
      text-align: center;
    }
    
/* PROCESSAMENTO DOS PASSES */


:root {
  --primary-color: #2b7c54;
  --primary-dark: #1f5c3e;
  --primary-light: #e5f6ed;
  --secondary-color: #f8f9fa;
  --text-color: #333;
  --text-light: #6c757d;
}

.comprovante_compra {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e5f6ed 100%);
  font-family: 'Inter', 'Segoe UI', -apple-system, sans-serif;
}

.container {
  background-color: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 640px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--primary-color), #4caf50);
}

h2, h3, h4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
}

p {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.text-muted {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Elementos de formulário modernizados */
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  resize: vertical;
  box-sizing: border-box;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(43, 124, 84, 0.1);
}

/* Botões modernizados */
.button-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

button, .btn {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

button {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 6px rgba(43, 124, 84, 0.1);
}

button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(43, 124, 84, 0.15);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #1da851;
  transform: translateY(-2px);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Efeitos de card moderno */
.card-effect {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-effect:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Responsividade melhorada */
@media (max-width: 768px) {
  .container {
    padding: 1.5rem;
    border-radius: 12px;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .button-group {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  button, .btn {
    width: 100%;
  }
}

/* Animação suave para o container */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  animation: fadeInUp 0.5s ease-out;
}
/* Estilo para o botão WhatsApp */
.btn-whatsapp {
  display: inline-block;
    background-color: #2b7c54;

  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  cursor: pointer;
  text-align: center;
  margin-top: 15px;
  width: 100%;
  box-sizing: border-box;
}

.btn-whatsapp:hover {
  background-color: #256c48;
}

/* Classe hidden - importante para o funcionamento */
.hidden {
  display: none !important;
}

/* Garante que o botão Finalizar Compra sempre fique visível */
.finalizarCompra {
  display: block !important;
}

/* Garante que os botões não apareçam quando não devem */
.hidden {
  display: none !important;
}

.btn-cancelar {
  display: inline-block;
  background-color: #2b7c54;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  cursor: pointer;
  text-align: center;
  margin-top: 15px;
  width: 100%;
  box-sizing: border-box;
}

/* Estilos para o aviso de privacidade */
.privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.privacy-content {
    flex: 1;
}

.privacy-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 16px;
}

.privacy-text {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
    margin-bottom: 10px;
}

.privacy-link {
    color: #ffd700;
    text-decoration: underline;
    cursor: pointer;
}

.privacy-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.privacy-button {
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 6px;
    background: transparent;
    color: white;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.privacy-button:hover {
    background: white;
    color: #667eea;
}

.privacy-button.accept {
    background: rgba(255, 255, 255, 0.2);
}

.privacy-button.accept:hover {
    background: white;
    color: #2ed573;
}

/* Modal de política de privacidade */
.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.privacy-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.privacy-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.privacy-modal-title {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.privacy-modal-text {
    color: #666;
    line-height: 1.6;
}

.privacy-modal-section {
    margin-bottom: 20px;
}

.privacy-modal-section h4 {
    color: #667eea;
    margin-bottom: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsivo */
@media (max-width: 768px) {
    .privacy-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .privacy-modal-content {
        width: 95%;
        padding: 20px;
    }
}
