/* Estilos exclusivos para index.html */
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;500;700;800&display=swap');

:root {
  --neutral-0: hsl(0, 0%, 100%);
  --neutral-300: hsl(252, 6%, 83%);
  --neutral-500: hsl(245, 15%, 58%);
  --neutral-700: hsl(245, 19%, 35%);
  --neutral-900: hsl(248, 70%, 10%);
  --orange-500: hsl(7, 88%, 67%);
  --orange-700: hsl(7, 71%, 60%);
  --gradient-text: linear-gradient(90deg, hsl(7, 86%, 67%), hsl(0, 0%, 100%));
}

body {
  min-height: 100vh;
  background: #18102a;
  color: var(--neutral-0);
  font-family: 'Inconsolata', monospace;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}

.bg-circle {
  position: fixed;
  left: 0;
  bottom: -120px;
  width: 420px;
  max-width: 50vw;
  z-index: 1;
  pointer-events: none;
}

.bg-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  pointer-events: none;
}

.bg-squiggly-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 3;
  pointer-events: none;
}

.bg-squiggly-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 3;
  pointer-events: none;
}

.bg-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 900px) {
  .bg-circle {
    width: 260px;
    bottom: -60px;
  }
}

@media (max-width: 600px) {
  .bg-circle {
    width: 160px;
    bottom: -30px;
  }
  .bg-main, .bg-lines, .bg-squiggly-top, .bg-squiggly-bottom {
    width: 100vw;
    height: 100vh;
  }
}

/* ------------------------------
   Formulário, inputs e avatar
-------------------------------*/

.ticket-app {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ticket-form-card {
  background: rgba(24, 16, 42, 0.9);
  padding: 2rem;
  border-radius: 1rem;
  z-index: 10;
  position: relative;
}

.ticket-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ticket-logo {
  height: 32px;
}

.ticket-brand {
  font-weight: bold;
}

.ticket-title {
  margin: 1rem 0;
  font-size: 1.8rem;
}

.ticket-title-year {
  color: var(--orange-500);
}

.ticket-subtitle {
  color: var(--neutral-300);
  margin-bottom: 1.5rem;
}

.ticket-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-label {
  font-size: 0.9rem;
}

.avatar-upload {
  border: 2px dashed var(--neutral-500);
  padding: 1rem;
  text-align: center;
  border-radius: 0.8rem;
  cursor: pointer;
}

.avatar-upload-icon {
  width: 40px;
  margin-bottom: 0.5rem;
}

.avatar-upload-info {
  font-size: 0.8rem;
  color: var(--neutral-500);
}

.avatar-action-btn {
  background: var(--orange-500);
  color: white;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

.form-input {
  width: 100%;
  padding: 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid var(--neutral-500);
  background: var(--neutral-900);
  color: var(--neutral-0);
}

.form-input-desc {
  font-size: 0.85rem;
  color: var(--neutral-500);
}

.form-submit-btn {
  background: var(--orange-700);
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 0.6rem;
  font-weight: bold;
  cursor: pointer;
}
