.tickets {
  padding: 80px 20px;
  text-align: center;
}

.tickets form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tickets input,
.tickets select {
  padding: 18px;
  border: none;
  border-radius: 15px;
  background: #1d1d1d;
  color: white;
  font-size: 1rem;
}

.tickets button {
  padding: 18px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(45deg, #ff7b00, #ffcc00);
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.tickets button:hover {
  transform: scale(1.03);
}

.tickets {
  padding: 100px 20px;
  text-align: center;
}

.tickets h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ffcc00;
}

#ticketForm {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#ticketForm input,
#ticketForm select {
  padding: 18px;
  border: none;
  border-radius: 15px;
  background: #1d1d1d;
  color: white;
  font-size: 1rem;
}

#ticketForm button {
  padding: 18px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(45deg,
      #ff7b00,
      #ffcc00);
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;

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

  body {
    font-family: 'Poppins', sans-serif;
    background: #0f0f0f;
    color: white;
    overflow-x: hidden;
  }

  body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background:
      linear-gradient(rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.85)),
      url('https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?q=80&w=1974&auto=format&fit=crop');

    background-size: cover;
    background-position: center;
    z-index: -2;
  }

  .hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
  }

  .container {
    width: 100%;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(255, 170, 0, 0.2);
  }

  h1 {
    font-size: 3.2rem;
    color: #ffcc00;
    margin-bottom: 20px;
  }

  .subtitle {
    margin-bottom: 40px;
    font-size: 1.1rem;
  }

  .cards {
    display: grid;
    grid-template-columns:
      repeat(auto-fit, minmax(220px, 1fr));

    gap: 20px;
    margin-bottom: 50px;
  }

  .card {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 20px;
  }

  .card h3 {
    color: #ffcc00;
    margin-bottom: 10px;
  }

  .tickets h2 {
    margin-bottom: 30px;
    color: #ffcc00;
  }

  form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  input,
  select {
    padding: 18px;
    border: none;
    border-radius: 15px;
    background: #1c1c1c;
    color: white;
    font-size: 1rem;
  }

  button {
    padding: 18px;
    border: none;
    border-radius: 50px;
    background:
      linear-gradient(45deg,
        #ff7b00,
        #ffcc00);

    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
  }

  button:hover {
    transform: scale(1.03);
  }

  .warning {
    background: rgba(255, 0, 0, 0.15);
    border: 1px solid rgba(255, 0, 0, 0.4);
    color: #ff5e5e;
    padding: 15px;
    border-radius: 15px;
    font-size: 0.92rem;
    text-align: left;
  }

  .whatsapp-box {
    margin-top: 40px;
  }

  .whatsapp-box p {
    margin-bottom: 10px;
  }

  .whatsapp-box a {
    color: #25D366;
    text-decoration: none;
    font-weight: bold;
  }

  @media(max-width:768px) {

    h1 {
      font-size: 2.2rem;
    }

    .container {
      padding: 30px;
    }

  }
}

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

body {
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  color: white;
  position: relative;
  background: #0a0a0a;
}

/* FUNDO CINEMATOGRÁFICO */

body::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  background:
    linear-gradient(rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.9)),

    url('/img/516a8916382425f233935d00e6bd4bd1.jpg');

  background-size: cover;
  background-position: center;
  z-index: -3;

  animation: bgZoom 20s ease-in-out infinite alternate;
}

@keyframes bgZoom {

  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }

}

/* PARTÍCULAS */

body::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  background-image:
    radial-gradient(#ffcc00 1px, transparent 1px);

  background-size: 40px 40px;

  opacity: 0.15;

  z-index: -2;
}

/* CONTAINER */

.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.container {
  width: 100%;
  max-width: 950px;

  background:
    rgba(15, 15, 15, 0.65);

  backdrop-filter: blur(15px);

  border-radius: 35px;

  padding: 60px;

  border:
    1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    0 0 40px rgba(255, 140, 0, 0.2),
    0 0 80px rgba(255, 100, 0, 0.08);

  animation: fadeUp 1.5s ease;
}

@keyframes fadeUp {

  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

/* TÍTULO */

h1 {
  font-size: 4rem;
  text-align: center;

  background:
    linear-gradient(45deg,
      #ffcc00,
      #ff7b00,
      #ff3c00);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-bottom: 20px;

  text-shadow:
    0 0 20px rgba(255, 180, 0, 0.4);
}

.subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #f1f1f1;
  margin-bottom: 50px;
}

/* CARDS */

.cards {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(230px, 1fr));

  gap: 25px;

  margin-bottom: 60px;
}

.card {

  background:
    linear-gradient(145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03));

  border-radius: 25px;

  padding: 30px;

  transition: 0.4s;

  border:
    1px solid rgba(255, 255, 255, 0.08);

  position: relative;

  overflow: hidden;
}

.card::before {

  content: "";

  position: absolute;

  width: 120px;
  height: 120px;

  background:
    rgba(255, 180, 0, 0.15);

  border-radius: 50%;

  top: -40px;
  right: -40px;
}

.card:hover {

  transform:
    translateY(-10px) scale(1.03);

  box-shadow:
    0 0 30px rgba(255, 170, 0, 0.25);
}

.card h3 {
  color: #ffcc00;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.card p {
  color: #f3f3f3;
  line-height: 1.6;
}

/* FORMULÁRIO */

.tickets h2 {

  text-align: center;

  font-size: 2.3rem;

  margin-bottom: 35px;

  color: #ffcc00;
}

form {

  max-width: 550px;

  margin: auto;

  display: flex;

  flex-direction: column;

  gap: 22px;
}

/* INPUTS */

input,
select {

  padding: 20px;

  border: none;

  border-radius: 18px;

  background:
    rgba(255, 255, 255, 0.08);

  color: white;

  font-size: 1rem;

  outline: none;

  border:
    1px solid rgba(255, 255, 255, 0.08);

  transition: 0.3s;
}

input:focus,
select:focus {

  border:
    1px solid #ffcc00;

  box-shadow:
    0 0 20px rgba(255, 200, 0, 0.2);
}

/* AVISO */

.warning {

  background:
    rgba(255, 0, 0, 0.12);

  border:
    1px solid rgba(255, 0, 0, 0.35);

  color: #ff6b6b;

  padding: 18px;

  border-radius: 18px;

  font-size: 0.95rem;

  line-height: 1.7;

  text-align: left;
}

/* BOTÃO */

button {

  padding: 20px;

  border: none;

  border-radius: 60px;

  background:
    linear-gradient(45deg,
      #ff7b00,
      #ffcc00);

  color: black;

  font-size: 1.1rem;

  font-weight: 700;

  cursor: pointer;

  transition: 0.4s;

  box-shadow:
    0 0 25px rgba(255, 180, 0, 0.35);
}

button:hover {

  transform:
    scale(1.04);

  box-shadow:
    0 0 35px rgba(255, 180, 0, 0.55);
}

/* WHATSAPP */

.whatsapp-box {

  margin-top: 45px;

  text-align: center;
}

.whatsapp-box p {

  margin-bottom: 12px;

  color: #ddd;
}

.whatsapp-box a {

  display: inline-block;

  padding: 14px 28px;

  background:
    rgba(37, 211, 102, 0.12);

  border:
    1px solid rgba(37, 211, 102, 0.35);

  border-radius: 50px;

  color: #25D366;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.whatsapp-box a:hover {

  transform: scale(1.05);

  background:
    rgba(37, 211, 102, 0.2);
}

/* RESPONSIVO */

@media(max-width:768px) {

  .container {
    padding: 35px 25px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .tickets h2 {
    font-size: 1.8rem;
  }

}