/* ==========================================
   1. RESET & BASE
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #030811;
  color: #fff;
}

/* ==========================================
   2. HERO SECTION
   ========================================== */
.hero {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
  background: #030811;
  padding: 60px 40px;
}

/* ==========================================
   3. LOCATION SECTION
   ========================================== */
.location {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
  background: #030811;
  padding: 60px 40px;
}

.location img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* ==========================================
   4. TICKET SECTION & QUANTITY SELECTOR
   ========================================== */
.ticket-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background-image: url("img_event/background-ticket.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ticket-image {
  width: 70%;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45), 0 0 40px rgba(201, 150, 43, 0.20);
}

/* Controles de Quantidade */
.qty-label {
  display: block;
  font-size: 25px;
  font-weight: 400;
  color: #f3f3f1;
  margin-top: 25px;
  margin-bottom: 10px;
}

.qty-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

#ticketQty {
  width: 80px;
  padding: 10px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  border: 2px solid #d4af37;
  border-radius: 8px;
  background: #030811;
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

.qty-btn {
  background: #d4af37;
  color: #030811;
  border: none;
  border-radius: 8px;
  font-size: 22px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.qty-btn:hover {
  background: #fff;
  color: #d4af37;
  border: 2px solid #d4af37;
}

/* Botões Zelle / Submit */
.btn-zelle {
  margin-top: 35px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 18px 55px;
  border: none;
  border-radius: 60px;
  background: linear-gradient(135deg, #2b7fff, #0057ff);
  box-shadow: 0 12px 25px rgba(0, 87, 255, 0.35);
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-zelle:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 18px 35px rgba(0, 87, 255, 0.45);
}

.btn-zelle:active {
  transform: scale(0.97);
}

.btn-zelle.sending {
  background: #ff9800;
}

.btn-zelle.sent {
  background: #4caf50;
}

/* Modal Popup */
.form-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #000;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  z-index: 999;
  width: 500px;
  max-width: 90%;
}

.form-popup input {
  display: block;
  margin: 15px auto;
  padding: 12px;
  width: 90%;
  font-size: 16px;
}

/* Botão de pagamento */

.form-actions {
  display: flex;
  justify-content: center; /* centraliza horizontalmente */
  margin-top: 20px;
}



#paymentBtn {
  display: none; /* inicialmente oculto */
  background: linear-gradient(135deg, #2835a7, #218838);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

/* Efeito hover */
#paymentBtn:hover {
  background: linear-gradient(135deg, #34d058, #28a745);
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.2);
}

/* Efeito de clique */
#paymentBtn:active {
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

/*  */

#paymentForm button {
  background: #007bff;
  color: #fff;
  padding: 14px 40px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin: 10px;
  font-weight: bold;
}

#paymentForm button:hover {
  background: #0056b3;
}

.close-btn {
  background: #d4af37;
  color: #000;
  padding: 14px 40px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin: 10px;
  font-weight: bold;
}

.close-btn:hover {
  background: #b48625;
}

/* ==========================================
   5. EVENT INFO SECTION
   ========================================== */
.event-info {
  background: #ffffff;
  padding: 55px 30px;
}

.info-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 45px;
}

.info-card {
  flex: 1;
  display: flex;
  gap: 22px;
  position: relative;
}

.info-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #d8b15a;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #07182d;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  flex-shrink: 0;
}

.small-title {
  color: #555;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
}

.info-card h2 {
  font-family: "Cinzel", serif;
  color: #c6962b;
  margin: 6px 0 10px;
  font-size: 34px;
}

.info-card p {
  color: #333;
  line-height: 1.7;
  font-size: 18px;
}

.text-box {
  align-items: center;
}

.keywords {
  margin-top: 45px;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 34px;
  color: #14233b;
  letter-spacing: 2px;
}

.keywords span {
  margin: 0 12px;
}

.keywords span:nth-child(even) {
  color: #c6962b;
}

/* ==========================================
   6. BANNER SECTION
   ========================================== */
.precious-banner {
  background: #fff;
  text-align: center;
  padding: 60px 20px;
  margin-top: 0;
  position: relative;
}

.precious-banner img {
  max-width: 1000px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}

/* ==========================================
   7. SUPPORT SECTION
   ========================================== */
.support {
  background: #081628;
  color: #ffffff;
  padding: 70px 30px;
}

.support-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.support-box {
  flex: 1;
  min-width: 280px;
}

.icon {
  font-size: 70px;
  color: #d8a646;
  margin-bottom: 25px;
}

.support h2 {
  color: #d8a646;
  margin-bottom: 25px;
  font-size: 28px;
  font-family: "Cinzel", serif;
}

.support ul {
  list-style: none;
}

.support li {
  margin: 12px 0;
  font-size: 18px;
}

.support li::before {
  content: "✓ ";
  color: #d8a646;
}

.contact {
  margin-bottom: 35px;
}

.contact h3 {
  color: #ffffff;
  margin-bottom: 10px;
}

.contact p {
  margin: 6px 0;
  color: #d7d7d7;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

.logo-link img {
  width: 42px;
  height: 42px;
}

.logo-link:hover {
  color: #fff;
}

.qr {
  text-align: center;
}

.qr-code {
  width: 180px;
  height: 180px;
  background: #ffffff;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  border-radius: 10px;
  font-weight: bold;
}

.qr p {
  font-size: 18px;
}

/* ==========================================
   8. FOOTER
   ========================================== */
footer {
  background: #ffffff;
  padding: 35px;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo h2 {
  color: #081628;
  font-family: "Cinzel", serif;
}

.footer-logo span {
  color: #b88a2b;
}

.footer-text {
  text-align: right;
}

.footer-text strong {
  color: #081628;
}

.footer-text p {
  color: #444444;
}

/* ==========================================
   9. MEDIA QUERIES / RESPONSIVO
   ========================================== */
@media (max-width: 900px) {
  .ticket-section {
    padding: 50px 20px;
  }

  .ticket-image {
    width: 100%;
  }

  .btn-zelle {
    width: 100%;
    text-align: center;
    font-size: 18px;
  }

  .info-container {
    flex-direction: column;
    gap: 30px;
  }

  .info-card:not(:last-child)::after {
    display: none;
  }

  .support-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-text {
    text-align: center;
  }
}

@media (max-width: 500px) {
  .ticket-section {
    padding: 30px 15px;
  }

  .btn-zelle {
    padding: 16px;
    font-size: 17px;
  }
}