/* ===== REVIVE KIDS - Gospel Lion Integrated Background ===== */
.revivekids-bg-advanced {
  position: relative;
  overflow: visible;
  padding: 3.2rem 0;
  min-height: 640px;
}

/* SVG fills */
.revivekids-bg-advanced .rk-sky {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* lion styling */
.revivekids-bg-advanced .lion-mane {
  fill: #ffd6a6;
  stroke: #f7b966;
  stroke-width: 2;
  opacity: 0.95;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.06));
}
.revivekids-bg-advanced .lion-face {
  fill: #fff2e6;
  stroke: #d99b5f;
  stroke-width: 2;
}
.revivekids-bg-advanced .lion-eye {
  fill: #6b3f1f;
}

/* rays minor animation */
.revivekids-bg-advanced .rays {
  transform-origin: 700px 140px;
  animation: slowSpin 40s linear infinite;
}
@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(6deg);
  }
}

/* balloons look soft and translucent */
.revivekids-bg-advanced .balloon ellipse {
  fill: rgba(255, 125, 170, 0.12);
  stroke: rgba(255, 125, 170, 0.32);
  stroke-width: 2;
}
.revivekids-bg-advanced .balloon line {
  stroke: rgba(120, 120, 120, 0.18);
  stroke-width: 1;
}

/* overlay for tiny spawn icons */
.revivekids-bg-advanced .rk-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* glass-card blends with background: mask + mix-blend-mode to 'mix' form with scene */
.blend-card {
  margin-top: 5rem;
  position: relative;
  z-index: 3;
  border-radius: 18px;
  padding: 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.55)
  );
  box-shadow: 0 16px 40px rgba(13, 32, 64, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px) saturate(120%);
  mix-blend-mode: normal;
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.3, 1);
  overflow: visible;
}

/* trick: let part of the svg appear to overlap the form using pseudo-element */
.blend-card::before {
  content: "";
  position: absolute;
  left: -10%;
  top: -22%;
  width: 120%;
  height: 42%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 240, 220, 0.32),
      transparent 28%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(210, 245, 255, 0.18),
      transparent 25%
    );
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  mix-blend-mode: screen;
}

/* form title */
.form-title {
  color: #242424;
  text-align: center;
  font-weight: 900;
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.form-sub {
  text-align: center;
  color: #444;
  margin-bottom: 10px;
}

/* card-row highlight on focus */
.card-row {
  padding: 0.45rem;
  border-radius: 10px;
  transition: background 0.18s;
}
.card-row:focus-within {
  background: linear-gradient(
    90deg,
    rgba(255, 245, 235, 0.55),
    rgba(255, 250, 255, 0.28)
  );
}

/* input and icon styles */
.input-with-icon {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.input-with-icon .form-control {
  flex: 1;
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(10, 10, 10, 0.06);
  transition: box-shadow 0.16s, transform 0.16s;
}
.input-with-icon .form-control:focus {
  outline: none;
  box-shadow: 0 8px 28px rgba(179, 59, 0, 0.08);
  transform: translateY(-3px);
  border-color: rgba(179, 59, 0, 0.28);
}

/* icon button (click spawns tiny symbols) */
.icon-btn {
  background: white;
  border: 0;
  padding: 0.35rem 0.5rem;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  font-size: 1.05rem;
}
.icon-btn:active {
  transform: translateY(2px);
}

/* submit button */
.btn-submit {
  background: linear-gradient(90deg, #f6b26b, #ff8aa8);
  color: #fff;
  border: none;
  padding: 0.9rem 1.4rem;
  border-radius: 14px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(255, 110, 150, 0.12);
}
.btn-submit:hover {
  transform: translateY(-4px) scale(1.02);
}

/* tiny spawn element style */
.rk-tiny {
  position: absolute;
  z-index: 5;
  font-size: 1.6rem;
  pointer-events: none;
  user-select: none;
}

/* confetti elements appended to body on submit */
.rk-confetti {
  position: absolute;
  z-index: 9999;
  pointer-events: none;
  font-size: 14px;
}

/* responsive tweaks */
@media (max-width: 780px) {
  .revivekids-bg-advanced {
    padding: 2.2rem 0;
    min-height: 520px;
  }
  .rk-sky {
    height: 420px;
  }
  .form-title {
    font-size: 1.3rem;
  }
}

.form-sub {
  text-align: center;
  font-weight: 500;
  color: #553300;
  background: linear-gradient(
    90deg,
    rgba(255, 241, 220, 0.75),
    rgba(255, 255, 255, 0.75)
  );
  padding: 0.75rem 1rem;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(255, 200, 100, 0.15);
  font-size: 0.95rem;
  line-height: 1.6;
  backdrop-filter: blur(4px);
}

.form-sub strong {
  color: #b33b00;
  font-weight: 800;
  text-shadow: 0 0 6px rgba(255, 180, 60, 0.3);
}

.ticket-section {
  background-image: url("../images/backfundo1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* cria efeito parallax leve e fixa o fundo */

  position: relative;
  width: 100%;
  min-height: 100vh; /* <-- força ocupar a altura inteira da tela */

  padding-top: 130px;
  padding-bottom: 130px; /* garante respiro visual embaixo também */
  display: flex;
  align-items: center; /* centraliza verticalmente o conteúdo */
  justify-content: center; /* centraliza horizontalmente */
}

.revive-dia-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-check-custom {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 0.75rem 1rem;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.form-check-custom:hover {
  border-color: #ffb703;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 183, 3, 0.25);
}

.form-check-input {
  margin-top: 0.3rem;
  accent-color: #ffb703;
}

.form-check-label {
  font-size: 1rem;
  color: #333;
  margin-left: 0.5rem;
}

.form-check-label .emoji {
  font-size: 1.2rem;
  margin-right: 0.25rem;
}

.form-label.text-primary {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: #141414 !important;
}

@media (max-width: 768px) {
  .form-sub {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px; /* espaçamento entre as linhas */
    text-align: left;
  }

  .form-sub strong {
    display: inline-block;
    width: 100%;
  }

  .form-sub strong::after {
    content: " ";
  }
}
