@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@600;700&display=swap');

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

:root {
  --bg-1: #060606;
  --bg-2: #0d0d0f;
  --bg-3: #151518;
  --line: rgba(255, 255, 255, 0.09);
  --gold: #c8a86b;
  --gold-soft: #e2c48d;
  --text-light: #f7f3ee;
  --muted-light: #b8b1a7;
  --card: #f7f4ef;
  --card-2: #efebe4;
  --text-dark: #171717;
  --text-muted: #6d675f;
  --input-border: #ddd6cb;
  --shadow-xl: 0 35px 80px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 22px 50px rgba(0, 0, 0, 0.22);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: var(--text-light);
  background:
    radial-gradient(circle at top left, rgba(200,168,107,0.08), transparent 18%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.03), transparent 20%),
    linear-gradient(135deg, #030303 0%, #0a0a0b 35%, #121214 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: stretch;
  padding: 30px;
}

.hero-panel {
  min-height: auto;
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
}

.hero-main-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: center;
}

.hero-top {
  width: 100%;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(200,168,107,0.22);
  background: rgba(200,168,107,0.08);
  color: var(--gold-soft);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 24px;
}

#title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 6vw, 5.1rem);
  line-height: 0.95;
  color: #ffffff;
  max-width: 560px;
  margin-bottom: 18px;
}

#subtitle {
  max-width: 560px;
  color: var(--muted-light);
  font-size: 1.02rem;
  line-height: 1.8;
}

.poster-showcase {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  align-items: center;
  justify-self: center;
}

.poster-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 360px;
}

.poster-tag {
  display: inline-block;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(200,168,107,0.08);
  border: 1px solid rgba(200,168,107,0.18);
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

#pag {
  font-size: 1.08rem;
  color: #ffffff;
  font-weight: 700;
}

.poster-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 14px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.poster-glow {
  position: absolute;
  inset: auto 12% -20px 12%;
  height: 40px;
  background: radial-gradient(circle, rgba(200,168,107,0.24), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.imgInfo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow-lg);
}

#imgPagamentos {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
  border-radius: 20px;
}

.hero-inline-infos {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.inline-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
}

.inline-info i {
  width: 18px;
  text-align: center;
  color: var(--gold-soft);
  flex-shrink: 0;
}

.inline-info span {
  color: var(--muted-light);
  font-size: 0.93rem;
  line-height: 1.6;
}

.form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-card {
  width: 100%;
  max-width: 760px;
  background: var(--card);
  color: var(--text-dark);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: linear-gradient(90deg, #8f7346, #c8a86b, #ead7ae);
}

.form-top {
  margin-bottom: 28px;
}

.mini-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #ece6dc;
  color: #6d5633;
  font-size: 0.8rem;
  font-weight: 700;
}

.form-title {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.1;
  color: #141414;
  margin-bottom: 10px;
}

.form-description {
  color: var(--text-muted);
  line-height: 1.7;
}

form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.full {
  grid-column: 1 / -1;
}

.txt_field {
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--input-border);
  background: #fcfaf7;
  padding: 18px 16px 10px;
  transition: 0.25s ease;
}

.txt_field:hover,
.txt_field:focus-within {
  background: #ffffff;
  border-color: #c8a86b;
  box-shadow: 0 10px 24px rgba(135, 111, 72, 0.10);
}

.txt_field input {
  width: 100%;
  height: 34px;
  border: none;
  outline: none;
  background: transparent;
  color: #171717;
  font-size: 15px;
  font-family: inherit;
}

.txt_field label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #7d756c;
  font-size: 14px;
  pointer-events: none;
  transition: 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.txt_field span::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -1px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #9b7b4b, #d7bb85);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.25s ease;
}

.txt_field input:focus ~ label,
.txt_field input:valid ~ label {
  top: 12px;
  transform: none;
  font-size: 11px;
  font-weight: 700;
  color: #7d5d2d;
}

.txt_field input:focus ~ span::before,
.txt_field input:valid ~ span::before {
  transform: scaleX(1);
}

.section-block {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: var(--card-2);
  border: 1px solid #e2dbd0;
}

.section-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.section-head i {
  color: #8b6a3a;
  font-size: 1rem;
  margin-top: 2px;
  width: 18px;
  text-align: center;
}

.txt_field label i {
  width: 18px;
  text-align: center;
  color: #8a7961;
}

#imgTitle,
#kind,
#observation {
  color: #1b1b1b;
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.5;
}

#select,
#obs,
input[type=file] {
  width: 100%;
  border: 1px solid #d4ccbf;
  border-radius: 14px;
  background: #ffffff;
  color: #171717;
  font-family: inherit;
  font-size: 15px;
  transition: 0.2s ease;
}

#select {
  padding: 14px;
  outline: none;
}

#obs {
  min-height: 130px;
  padding: 14px;
  resize: vertical;
  outline: none;
}

input[type=file] {
  padding: 12px;
  outline: none;
}

#select:focus,
#obs:focus,
input[type=file]:focus {
  border-color: #c8a86b;
  box-shadow: 0 0 0 4px rgba(200,168,107,0.14);
}

#submitDiv {
  margin-top: 24px;
}

input[type="submit"] {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #0b0b0c 0%, #171718 45%, #242426 100%);
  color: #f8f3ec;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.4px;
  cursor: pointer;
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.18);
  transition: 0.25s ease;
}

input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 38px rgba(0, 0, 0, 0.24);
  filter: brightness(1.05);
}

input[type="submit"]:active {
  transform: translateY(0);
}

.organizers-footer {
  margin-top: 28px;
  padding-top: 8px;
}

.organizers-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 106, 58, 0.45), transparent);
  margin-bottom: 18px;
}

.organizers-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ece6dc;
  color: #6d5633;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.organizers-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.organizer-item {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f3eee7, #ebe4d9);
  border: 1px solid #ddd3c5;
}

.organizer-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.organizer-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #d8c29a;
  background: #ddd6cb;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
}

.organizer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.organizer-info strong {
  display: block;
  color: #191919;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.organizer-info p {
  color: #72695f;
  font-size: 0.9rem;
  line-height: 1.5;
}

.organizers-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #111;
  color: #f7f3ee;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: 0.25s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-btn i {
  color: #c8a86b;
}

.contact-btn:hover {
  transform: translateY(-2px);
  background: #1b1b1b;
}

.loader-wrapper {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #151515 0%, #050505 100%);
}

.loader {
  box-sizing: border-box;
  width: 120px;
  height: 120px;
  border: 8px solid transparent;
  border-top-color: #c8a86b;
  border-bottom-color: rgba(255,255,255,0.75);
  border-radius: 50%;
  animation: rotate 4s linear infinite;
}

.loader-inner {
  border-top-color: #ffffff;
  border-bottom-color: #7d6338;
  animation-duration: 2.1s;
}

@keyframes rotate {
  0% {
    transform: scale(1) rotate(360deg);
  }
  50% {
    transform: scale(.82) rotate(-360deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}

.mobile_form {
  display: none;
}

.fa-solid,
.fa-regular,
.fa-brands {
  color: inherit;
}

@media screen and (max-width: 1200px) {
  .page-shell {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .hero-panel {
    min-height: auto;
  }

  .hero-main-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-top {
    max-width: 100%;
  }

  .poster-showcase {
    align-items: flex-start;
  }

  .poster-head,
  .poster-frame {
    max-width: 420px;
  }
}

@media screen and (max-width: 760px) {
  .page-shell {
    padding: 14px;
    gap: 16px;
  }

  .hero-panel,
  .form-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  #title {
    font-size: 2.7rem;
  }

  #subtitle {
    font-size: 0.96rem;
  }

  .poster-frame {
    max-width: 100%;
    padding: 10px;
    border-radius: 22px;
  }

  #imgPagamentos {
    max-height: 420px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .full {
    grid-column: auto;
  }

  .form-title {
    font-size: 1.7rem;
  }

  .organizers-list {
    grid-template-columns: 1fr;
  }

  .organizer-header {
    align-items: flex-start;
  }

  .organizers-contacts {
    flex-direction: column;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
  }
}
.pix-copy {
  cursor: pointer;
  transition: 0.2s;
}

.pix-copy:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}