:root {
  --bg-dark: #1a0f0c;
  --bg-deep: #1a0f0c;
  --bg-panel: rgba(42, 23, 17, 0.64);
  --bg-panel-strong: rgba(26, 15, 12, 0.9);
  --emerald: #5d372e;
  --emerald-soft: rgba(93, 55, 46, 0.24);
  --gold: #d4af37;
  --gold-deep: #8c5a45;
  --gold-soft: rgba(212, 175, 55, 0.14);
  --gold-glow: rgba(212, 175, 55, 0.34);
  --text: #ebdec3;
  --text-soft: rgba(235, 222, 195, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(212, 175, 55, 0.4);
  --danger: #ff8f8f;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.3);
  --shadow-strong: 0 32px 120px rgba(0, 0, 0, 0.44);
  --top-bar-height: 40px;
  --progress-height: 4px;
}

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

html,
body {
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background: var(--bg-dark);
  overflow-x: hidden;
  position: relative;
}

a,
button,
input,
textarea,
select {
  font: inherit;
}

.site-bg,
.bg-layer,
.hero-portrait {
  position: fixed;
  pointer-events: none;
}

.site-bg {
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #1a0f0c;
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
  opacity: 0.1;
  mix-blend-mode: overlay;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: saturate(0.9) brightness(0.82);
  mix-blend-mode: luminosity;
}

.bg-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 15, 12, 0.72) 0%, rgba(26, 15, 12, 0.44) 44%, rgba(26, 15, 12, 0.72) 100%),
    linear-gradient(180deg, rgba(26, 15, 12, 0.08) 0%, rgba(26, 15, 12, 0.96) 100%);
}

.mesh-gradient {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle 660px at var(--x, 50vw) var(--y, 42vh),
    rgba(212, 175, 55, 0.28) 0%,
    rgba(140, 90, 69, 0.18) 30%,
    rgba(26, 15, 12, 0.2) 58%,
    rgba(0, 0, 0, 0) 72%
  );
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 0.3s ease;
  animation: none;
}

.hero-mesh {
  z-index: 0;
}

.hero-flash {
  position: absolute;
  pointer-events: none;
  mix-blend-mode: screen;
  display: none;
  opacity: 0;
  filter: blur(24px);
  z-index: 0;
  will-change: transform, opacity;
}

.hero-flash-gold {
  top: -2vh;
  left: -48vw;
  width: 140vw;
  height: 22vh;
  background:
    linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.02) 18%, rgba(212, 175, 55, 0.48) 42%, rgba(255, 242, 200, 0.22) 50%, rgba(212, 175, 55, 0.12) 58%, transparent 82%);
  transform: rotate(-13deg);
  animation: flashSweepGold 11s linear infinite;
}

.hero-flash-emerald {
  bottom: 8vh;
  right: -42vw;
  width: 128vw;
  height: 18vh;
  background:
    linear-gradient(90deg, transparent 0%, rgba(93, 55, 46, 0.02) 16%, rgba(93, 55, 46, 0.36) 42%, rgba(235, 222, 195, 0.14) 50%, rgba(93, 55, 46, 0.1) 58%, transparent 82%);
  transform: rotate(16deg);
  animation: flashSweepEmerald 14s linear infinite;
}

.mesh-orb {
  position: absolute;
  display: none;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.68;
}

.mesh-orb-left {
  left: -14vw;
  top: 18vh;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(93, 55, 46, 0.42) 0%, rgba(93, 55, 46, 0) 70%);
}

.mesh-orb-right {
  right: -10vw;
  bottom: 8vh;
  width: 38vw;
  height: 38vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 72%);
}

.bg-layer {
  z-index: 1;
}

.hero-portrait {
  right: 6vw;
  bottom: 6vh;
  top: auto;
  left: auto;
  width: min(50vw, 760px);
  height: min(92vh, 940px);
  z-index: 2;
}

.hero-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  opacity: 0.45;
  filter: drop-shadow(0 28px 90px rgba(212, 175, 55, 0.16)) drop-shadow(0 32px 80px rgba(0, 0, 0, 0.42));
  -webkit-mask-image: linear-gradient(to top, transparent 2%, rgba(0, 0, 0, 0.92) 30%, #000 100%);
  mask-image: linear-gradient(to top, transparent 2%, rgba(0, 0, 0, 0.92) 30%, #000 100%);
}

.submit-frame {
  display: none;
}

form,
.thank-you-shell {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-marquee {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: var(--top-bar-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, #8c5a45 0%, #d4af37 50%, #8c5a45 100%);
  background-size: 200% 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.2);
  animation: topGlow 7s ease infinite;
}

.top-marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marqueeScroll 26s linear infinite;
}

.top-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 1.2rem;
  color: #5d372e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

header {
  position: sticky;
  top: var(--top-bar-height);
  z-index: 24;
  background: transparent;
}

.container {
  width: 100%;
  margin: 0 auto;
}

.progress-container {
  position: relative;
  width: 100%;
  height: var(--progress-height);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, #8c5a45 0%, #d4af37 52%, #fff2c8 100%);
  background-size: 180% 100%;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.42);
  animation: progressShift 6s ease infinite;
  transition: width 0.42s ease;
  z-index: 1;
}

.progress-question-markers,
.progress-markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.progress-question-markers {
  z-index: 2;
}

.progress-markers {
  z-index: 3;
}

.progress-question-markers span {
  position: absolute;
  top: 50%;
  width: 2px;
  height: 46%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.22);
  opacity: 0.7;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.progress-question-markers span.active {
  background: rgba(255, 221, 186, 0.92);
  opacity: 1;
}

.progress-markers .block-marker {
  position: absolute;
  top: 50%;
  width: 4px;
  height: 100%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.22s ease, box-shadow 0.22s ease;
}

.progress-markers .block-marker.active {
  background: #fff2c8;
  box-shadow: 0 0 12px rgba(255, 242, 200, 0.42);
}

.progress-markers .block-marker.pulse {
  animation: pulseMarker 0.6s ease;
}

main,
.thank-you-main {
  width: 100%;
  flex: 1;
  min-height: calc(100vh - var(--top-bar-height) - var(--progress-height));
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 88px 0 128px;
  position: relative;
  z-index: 5;
}

body.hero-intro-active main {
  min-height: calc(100vh - var(--top-bar-height) - var(--progress-height));
  align-items: center;
  padding: 88px 0 128px;
}

.perguntas-container {
  width: min(640px, 92vw);
  margin: 0 auto;
  padding: 36px 1rem 36px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.perguntas-container.intro-layout {
  width: min(760px, 95vw);
}

.form-brand {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

#blockTitle {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.hero-intro-active #blockTitle {
  display: none;
}

.question-wrapper {
  position: relative;
  min-height: 210px;
  overflow: visible;
  --question-offset: 24px;
  transition: min-height 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.question {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateY(var(--question-offset));
  opacity: 0;
  transition:
    transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.36s ease-out;
  will-change: transform, opacity;
  backface-visibility: hidden;
  z-index: 1;
}

.question.enter {
  transform: translateY(0);
  opacity: 1;
}

.question.reverse {
  transform: translateY(calc(-1 * var(--question-offset)));
  opacity: 0;
}

.question.reverse.enter {
  transform: translateY(0);
  opacity: 1;
}

.question.exit {
  z-index: 2;
  transform: translateY(calc(-1 * var(--question-offset)));
  opacity: 0;
}

.question.exit-down {
  z-index: 2;
  transform: translateY(var(--question-offset));
  opacity: 0;
}

.question h2 {
  margin-bottom: 14px;
  color: var(--text);
  max-width: none;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: auto;
}

.intro {
  gap: 14px;
}

.intro h2 {
  max-width: none;
  font-size: 33px;
  line-height: 1.04;
}

.perguntas-container.intro-layout .intro h2 {
  max-width: none;
  font-size: 36px;
  letter-spacing: 0;
}

.intro-line,
.intro-subline,
.intro-name,
.intro-role {
  display: block;
}

.intro-line {
  white-space: normal;
}

.intro-subline {
  white-space: normal;
}

.intro-role {
  display: inline;
  color: var(--text);
  font-weight: 600;
}

.intro-name {
  display: inline;
  white-space: normal;
  color: #d4af37;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
  text-shadow:
    0 0 18px rgba(212, 175, 55, 0.14),
    0 0 42px rgba(212, 175, 55, 0.08);
}

.intro-title-break {
  display: none;
}

.intro-text {
  max-width: 54ch;
  color: rgba(255, 246, 226, 0.88);
  font-size: 15px;
  line-height: 1.72;
  font-weight: 300;
  letter-spacing: 0;
}

.perguntas-container.intro-layout .intro-text {
  max-width: 62ch;
}

input,
textarea {
  width: 100%;
  color: var(--text);
  font: inherit;
  background: transparent;
  outline: none;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

input {
  margin: 15px 0;
  padding: 10px 0 12px;
  border: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.46);
  border-radius: 0;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 400;
  -webkit-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
  min-height: 120px;
  max-height: 220px;
  margin: 10px 0 12px;
  padding: 10px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.5;
  overflow-y: auto;
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(247, 244, 239, 0.24);
}

input:focus,
textarea:focus,
.phone-country-trigger:focus {
  border-color: rgba(255, 220, 190, 0.92);
  box-shadow: none;
  background: transparent;
}

textarea {
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.58) rgba(255, 255, 255, 0.06);
}

textarea::-webkit-scrollbar {
  width: 8px;
}

textarea::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

textarea::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.6);
  border-radius: 8px;
}

.phone-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.25fr 0.62fr 1.13fr;
  gap: 12px;
  margin: 14px 0 8px;
  align-items: end;
}

.phone-label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.phone-label > span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.phone-grid input,
.phone-grid select,
.phone-country-trigger {
  width: 100%;
  margin: 0;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 400;
}

.phone-grid option {
  color: #111;
}

.phone-country-wrap {
  position: relative;
  z-index: 20;
}

.phone-country-wrap.open {
  z-index: 40;
}

.phone-country.native {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.phone-country-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  cursor: pointer;
}

.phone-country-wrap.open .phone-country-trigger {
  border-color: rgba(212, 175, 55, 0.9);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}

.phone-country-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-country-chevron {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-right: 2px solid rgba(255, 255, 255, 0.82);
  border-bottom: 2px solid rgba(255, 255, 255, 0.82);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.phone-country-wrap.open .phone-country-chevron {
  transform: rotate(-135deg);
}

.phone-country-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  max-height: 240px;
  padding: 6px;
  overflow-y: auto;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(42, 23, 17, 0.98), rgba(26, 15, 12, 0.98));
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.4);
  z-index: 50;
}

.phone-country-wrap.open .phone-country-list {
  display: block;
}

.phone-country-list {
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.6) rgba(255, 255, 255, 0.08);
}

.phone-country-list::-webkit-scrollbar {
  width: 8px;
}

.phone-country-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.phone-country-list::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.6);
  border-radius: 8px;
}

.phone-country-option {
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.35;
  cursor: pointer;
}

.phone-country-option:hover,
.phone-country-option:focus {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.phone-country-option.selected {
  background: rgba(212, 175, 55, 0.14);
  color: #fff2c8;
}

.choice-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 6px;
  align-items: stretch;
}

.choice {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  align-self: stretch;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.choice-main {
  display: inline;
}

.choice-meta {
  display: inline;
  font-size: 0.84em;
  line-height: 1.3;
  opacity: 0.8;
  letter-spacing: 0;
}

.choice:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.86);
}

.choice.selected {
  border-color: rgba(212, 175, 55, 0.98);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.22) 0%, rgba(140, 90, 69, 0.18) 100%);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(212, 175, 55, 0.08);
}

button {
  border: none;
  cursor: pointer;
  outline: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-buttons {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  row-gap: 12px;
  margin-top: 16px;
  margin-bottom: 32px;
  padding-bottom: 12px;
}

.back,
.restart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  gap: 6px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  box-shadow: none;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.back {
  padding-left: 14px;
}

.back:hover,
.restart-button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.back-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.back-icon svg {
  width: 100%;
  height: 100%;
}

.next,
.intro button,
.success-link {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border-radius: 8px;
  background-image:
    linear-gradient(115deg, #8c5a45 0%, #b58c20 28%, #d4af37 58%, #fff2c8 100%),
    linear-gradient(120deg, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0.14) 44%, rgba(255, 255, 255, 0.44) 52%, rgba(255, 255, 255, 0.12) 60%, rgba(255, 255, 255, 0) 78%);
  background-size: 220% 100%, 240% 100%;
  background-position: 0% 50%, 180% 50%;
  color: #1a0f0c;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow:
    0 16px 32px rgba(212, 175, 55, 0.18),
    0 8px 20px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  animation: buttonGradient 4.2s cubic-bezier(0.52, 0.08, 0.38, 0.95) infinite;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), filter 0.28s ease, box-shadow 0.28s ease;
}

.intro button {
  min-height: 42px;
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
}

.next:hover,
.intro button:hover,
.success-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    0 20px 36px rgba(212, 175, 55, 0.22),
    0 10px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.success-link {
  padding: 0 20px;
}

.has-error input,
.has-error textarea,
.has-error .phone-grid input,
.has-error .phone-country-trigger {
  border-color: var(--danger);
}

.has-error .choice-grid .choice {
  border-color: rgba(255, 143, 143, 0.36);
}

.error-message {
  margin-bottom: 10px;
  color: var(--danger);
  font-size: 0.92rem;
  line-height: 1.5;
}

.submit-status {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.thank-you-card {
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.thank-you-card h2 {
  max-width: none;
  white-space: nowrap;
}

.thank-you-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.thank-you-note {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.thank-you-hidden {
  display: none !important;
}

.bottom-availability {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 4;
  width: min(94vw, 740px);
  padding: 1rem 1.25rem 1.1rem;
  border-radius: 32px 32px 0 0;
  background:
    linear-gradient(180deg, rgba(52, 31, 24, 0.92) 0%, rgba(34, 18, 14, 0.94) 100%);
  border: none;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow:
    0 -18px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(235, 222, 195, 0.08),
    inset 18px 0 32px rgba(212, 175, 55, 0.03),
    inset -18px 0 32px rgba(212, 175, 55, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  pointer-events: none;
  overflow: hidden;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease;
}

.bottom-availability::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  right: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.bottom-availability span {
  display: block;
  color: rgba(235, 222, 195, 0.68);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: uppercase;
}

body.bottom-availability-hidden .bottom-availability {
  transform: translate(-50%, calc(100% + 18px));
  opacity: 0;
}

@keyframes pulseMarker {
  0% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(2.4);
  }
  100% {
    transform: translateY(-50%) scale(1);
  }
}

@keyframes progressShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes topGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes buttonGradient {
  0% {
    background-position: 0% 50%, 180% 50%;
  }
  50% {
    background-position: 100% 50%, -10% 50%;
  }
  100% {
    background-position: 0% 50%, 180% 50%;
  }
}

@keyframes meshFloat {
  0% {
    transform: translate3d(-3%, -2%, 0) scale(0.98);
  }
  50% {
    transform: translate3d(1%, 2%, 0) scale(1.02);
  }
  100% {
    transform: translate3d(4%, -1%, 0) scale(1.05);
  }
}

@keyframes flashSweepGold {
  0% {
    transform: translate3d(-12vw, 0, 0) rotate(-13deg) scaleX(0.92);
    opacity: 0;
  }
  10% {
    opacity: 0.08;
  }
  24% {
    opacity: 0.44;
  }
  42% {
    transform: translate3d(68vw, 2vh, 0) rotate(-11deg) scaleX(1.02);
    opacity: 0.16;
  }
  56% {
    opacity: 0.04;
  }
  100% {
    transform: translate3d(102vw, 4vh, 0) rotate(-11deg) scaleX(1.06);
    opacity: 0;
  }
}

@keyframes flashSweepEmerald {
  0% {
    transform: translate3d(12vw, 0, 0) rotate(16deg) scaleX(0.9);
    opacity: 0;
  }
  14% {
    opacity: 0.06;
  }
  30% {
    opacity: 0.28;
  }
  50% {
    transform: translate3d(-62vw, -2vh, 0) rotate(14deg) scaleX(1.02);
    opacity: 0.1;
  }
  64% {
    opacity: 0.03;
  }
  100% {
    transform: translate3d(-96vw, -5vh, 0) rotate(14deg) scaleX(1.05);
    opacity: 0;
  }
}

@media (max-width: 1120px) {
  .hero-portrait {
    width: min(52vw, 700px);
    height: min(86vh, 760px);
  }
}

@media (max-width: 900px) {
  body.hero-intro-active {
    overflow: hidden;
    height: 100dvh;
  }

  body.hero-intro-active form {
    min-height: 100dvh;
    height: 100dvh;
    overflow: hidden;
  }

  .bg-video {
    opacity: 0.2;
  }

  .bg-video-overlay {
    background:
      linear-gradient(180deg, rgba(26, 15, 12, 0.28) 0%, rgba(26, 15, 12, 0.72) 100%),
      rgba(26, 15, 12, 0.44);
  }

  .mesh-orb-left {
    width: 74vw;
    height: 74vw;
    left: -24vw;
  }

  .mesh-orb-right {
    width: 60vw;
    height: 60vw;
    right: -16vw;
    bottom: 14vh;
  }

  .mesh-gradient {
    inset: -12%;
    opacity: 0.18;
    animation-duration: 18s;
  }

  .hero-flash {
    opacity: 0.04;
    filter: blur(26px);
  }

  .hero-portrait {
    left: 50%;
    right: auto;
    bottom: 4vh;
    width: min(116vw, 680px);
    height: min(82vh, 680px);
    transform: translateX(-50%);
  }

  .hero-portrait img {
    width: 100%;
    height: 100%;
    object-position: center bottom;
    opacity: 0.45;
    filter: blur(15px) brightness(0.88) saturate(0.94) drop-shadow(0 22px 56px rgba(0, 0, 0, 0.24));
    transform: scale(1.08);
  }

  header {
    top: var(--top-bar-height);
  }

  main,
  .thank-you-main {
    align-items: center;
    padding: 76px 0 108px;
  }

  body.hero-intro-active main {
    min-height: calc(100dvh - var(--top-bar-height) - var(--progress-height));
    max-height: calc(100dvh - var(--top-bar-height) - var(--progress-height));
    padding: 78px 0 48px;
    overflow: hidden;
  }

  .perguntas-container {
    width: min(640px, calc(100vw - 24px));
    margin: 0 auto;
    padding: 24px 16px 22px;
  }

  .perguntas-container.intro-layout {
    width: min(740px, calc(100vw - 24px));
  }

  .intro h2 {
    max-width: none;
    font-size: 30px;
  }

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

  body.hero-intro-active .hero-portrait img {
    opacity: 0.45;
    filter: brightness(0.98) saturate(1) drop-shadow(0 18px 42px rgba(0, 0, 0, 0.18));
    transform: scale(1.1);
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .perguntas-container.intro-layout .intro-title-break {
    display: block;
  }
}

@media (max-width: 640px) {
  :root {
    --top-bar-height: 36px;
  }

  .top-marquee-track span {
    margin: 0 1rem;
    font-size: 0.62rem;
    letter-spacing: 0;
  }

  .mesh-gradient {
    opacity: 0.12;
    inset: -8%;
  }

  .progress-container {
    height: 5px;
  }

  .hero-flash {
    opacity: 0.02;
    filter: blur(24px);
  }

  .hero-portrait {
    bottom: 5vh;
    width: min(122vw, 500px);
    height: min(68vh, 520px);
  }

  .hero-portrait img {
    opacity: 0.45;
    filter: blur(18px) brightness(0.84) saturate(0.92) drop-shadow(0 20px 52px rgba(0, 0, 0, 0.22));
    transform: scale(1.12);
  }

  body.hero-intro-active .hero-portrait {
    bottom: 20vh;
    left: 46%;
    width: min(118vw, 485px);
    height: min(66vh, 505px);
  }

  body.hero-intro-active .hero-portrait img {
    opacity: 0.45;
    filter: brightness(0.96) saturate(0.98) drop-shadow(0 16px 36px rgba(0, 0, 0, 0.16));
    transform: scale(1.12);
  }

  body.hero-intro-active main {
    padding: 92px 0 20px;
  }

  .perguntas-container {
    width: min(640px, calc(100vw - 20px));
    padding: 22px 12px 18px;
  }

  .perguntas-container.intro-layout {
    width: min(680px, calc(100vw - 20px));
  }

  .form-brand {
    font-size: 0.68rem;
    letter-spacing: 0;
  }

  #blockTitle {
    font-size: 0.72rem;
  }

  .intro h2,
  .perguntas-container.intro-layout .intro h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .perguntas-container.intro-layout .intro-line {
    font-size: 1.55rem;
    line-height: 1.12;
    white-space: nowrap;
  }

  .intro-title-break {
    display: block;
  }

  .perguntas-container.intro-layout .intro-subline {
    margin-left: -2px;
  }

  .question-wrapper {
    min-height: 220px;
    --question-offset: 22px;
  }

  .question h2 {
    margin-bottom: 16px;
    font-size: 1.7rem;
    line-height: 1.1;
  }

  .thank-you-card h2 {
    font-size: 1.55rem;
  }

  .intro-text {
    color: rgba(255, 247, 232, 0.96);
    font-size: 1rem;
    line-height: 1.68;
    font-weight: 300;
  }

  input {
    padding: 10px 0 12px;
    font-size: 1.06rem;
  }

  textarea {
    min-height: 132px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.98rem;
  }

  .choice-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .choice {
    padding: 13px 14px;
    border-radius: 8px;
    font-size: 0.92rem;
  }

  .nav-buttons,
  .thank-you-actions {
    gap: 10px;
  }

  .back,
  .restart-button,
  .next,
  .intro button,
  .success-link {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .bottom-availability {
    width: calc(100vw - 12px);
    padding: 0.9rem 0.9rem 1rem;
    border-radius: 24px 24px 0 0;
  }

  .bottom-availability span {
    font-size: 0.62rem;
    letter-spacing: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-marquee,
  .top-marquee-track,
  .progress-bar,
  .next,
  .intro button,
  .success-link {
    animation: none !important;
  }

  .question,
  .choice,
  .back,
  .restart-button,
  .next,
  .success-link {
    transition: none !important;
  }
}
