* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  touch-action: none; /* Previne zoom com pinça e rolagem no Totem */
}

.totem {
  position: relative;
  width: 1080px;
  height: 1920px;
  background: #000;
  transform-origin: center center;
  overflow: hidden;
}

/* ============================
   SCREEN TRANSITIONS
   ============================ */
@keyframes screenFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.screen {
  position: absolute;
  left: 0;
  top: 0;
  width: 1080px;
  height: 1920px;
  display: none;
}

.screen.active {
  display: block;
  animation: screenFadeIn 0.22s ease-out both;
}

.screen-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 1080px;
  height: 1920px;
  object-fit: cover;
  pointer-events: none;
}

/* ============================
   QUESTION TITLE (FIGMA EXACT LAYOUT)
   ============================ */
.q-title-wrap {
  position: absolute;
  top: 493px;
  left: 60px;
  width: 960px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 12;
}

.q-title {
  font-family: 'Source Han Sans KR', 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15em;
  color: #FFFFFF;
  text-align: center;
  letter-spacing: -0.01em;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

/* Base hotspot for navigation buttons */
.hotspot {
  position: absolute;
  cursor: pointer;
  z-index: 10;
  background: transparent;
  border: none;
  overflow: hidden;
  transition: transform 0.12s ease;
}

.hotspot:active {
  transform: scale(0.96);
}

/* ============================
   OPTION CARDS (FIGMA EXACT LAYOUT)
   ============================ */
.hotspot.option {
  position: absolute;
  cursor: pointer;
  z-index: 10;
  background: #FEFEFF;
  border: 1px solid #D5D5D5;
  border-radius: 15px;
  padding: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.opt-card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px 24px;
  gap: 16px;
  box-sizing: border-box;
}

.opt-card-icon {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  object-fit: contain;
  pointer-events: none;
  transition: transform 0.18s ease;
}

.opt-text {
  font-family: 'Source Han Sans KR', 'Inter', sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.03em;
  color: #000000;
  text-align: left;
  user-select: none;
  pointer-events: none;
  flex: 1;
  transition: color 0.18s ease;
}

/* Hover & Selected states */
.hotspot.option:hover {
  border-color: #E1141C;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(225, 20, 28, 0.15);
}

.hotspot.option.selected {
  outline: 4px solid rgba(225, 20, 28, 0.85);
  border-color: #E1141C;
  background: #FFFFFF;
  box-shadow: 0 8px 30px rgba(225, 20, 28, 0.25);
}

.hotspot.option.selected .opt-text {
  font-weight: 700;
  color: #E1141C;
}

.hotspot.option.selected .opt-card-icon {
  transform: scale(1.08);
}

/* ============================
   RIPPLE EFFECT
   ============================ */
@keyframes rippleAnim {
  0%   { transform: scale(0);   opacity: 0.55; }
  100% { transform: scale(4.5); opacity: 0;    }
}

.ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.40);
  transform: scale(0);
  animation: rippleAnim 0.65s linear forwards;
  pointer-events: none;
  z-index: 50;
}

/* ============================
   OPTION ICON OVERLAY
   ============================ */
.option-icon {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  background: rgba(0, 0, 0, 0.52);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.22);
  transition: background 0.22s ease, transform 0.18s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.hotspot.option.selected .option-icon {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.95);
  transform: translateX(-50%) scale(1.12);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.45);
}

.option-icon svg {
  width: 48px;
  height: 48px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.25));
  transition: filter 0.22s ease;
}

.hotspot.option.selected .option-icon svg {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

/* ============================
   DYNAMIC PROGRESS BAR (HTML)
   ============================ */
.quiz-progress {
  position: absolute;
  top: 147px;
  left: 0;
  width: 1080px;
  height: 24px;
  display: flex;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 20;
}
.quiz-progress.visible {
  opacity: 1;
}

/* ============================
   TOP HEADER DFM
   ============================ */
.header-dfm {
  position: absolute;
  top: 56px;
  left: 74px;
  height: 43px;
  width: auto;
  pointer-events: none;
  z-index: 10;
}

.qp-seg {
  position: absolute;
  top: 0;
  height: 7px;
  border-radius: 3.5px;
  background: #D9D9D9;
}

.qp-seg:nth-child(1) { left: 74px; width: 168px; }
.qp-seg:nth-child(2) { left: 266px; width: 167px; }
.qp-seg:nth-child(3) { left: 455px; width: 169px; }
.qp-seg:nth-child(4) { left: 646px; width: 170px; }
.qp-seg:nth-child(5) { left: 838px; width: 167px; }

.qp-active-bar {
  position: absolute;
  top: 0;
  height: 7px;
  border-radius: 3.5px;
  background: #E1141C;
  box-shadow: 0 0 12px rgba(225, 20, 28, 0.85);
  left: 74px;
  width: 168px;
  transition: left 0.4s cubic-bezier(0.34, 1.25, 0.64, 1), width 0.4s cubic-bezier(0.34, 1.25, 0.64, 1);
}

/* ============================
   EMAIL POPUP
   ============================ */

.hidden {
  display: none !important;
}

.email-popup {
  position: absolute;
  left: 0;
  top: 0;
  width: 1080px;
  height: 1920px;
  z-index: 100;
}

.email-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.email-modal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 920px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 24px;
  padding: 50px 50px 40px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

.email-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #888;
  font-size: 48px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 5;
}

.email-close:hover {
  color: #fff;
}

.email-icon-header {
  text-align: center;
  margin-bottom: 20px;
}

.email-title {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}

.email-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #aaa;
  text-align: center;
  margin-bottom: 36px;
  line-height: 1.4;
}

.email-input-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
}

.email-input {
  width: 100%;
  height: 80px;
  background: #111;
  border: 2px solid #444;
  border-radius: 12px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  padding: 0 24px;
  outline: none;
  transition: border-color 0.2s;
  caret-color: transparent;
}

.email-input:focus,
.email-input.active {
  border-color: #E1142D;
}

.email-input::placeholder {
  color: #555;
}

.email-cursor {
  display: none;
}

.email-feedback {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.email-feedback.success {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.email-feedback.error {
  background: rgba(225, 20, 28, 0.15);
  color: #E1142D;
  border: 1px solid rgba(225, 20, 28, 0.3);
}

.email-send {
  display: block;
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, #E1142D, #c0101f);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  margin-bottom: 32px;
}

.email-send:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 30px rgba(225, 20, 28, 0.4);
}

.email-send:active {
  transform: scale(0.98);
}

/* ============================
   VIRTUAL KEYBOARD
   ============================ */

.keyboard {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kb-row {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.kb-key {
  min-width: 68px;
  height: 72px;
  background: #2a2a2a;
  border: 1px solid #444;
  border-radius: 10px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.1s, transform 0.1s;
  user-select: none;
  -webkit-user-select: none;
}

.kb-key:hover {
  background: #3a3a3a;
}

.kb-key:active {
  background: #E1142D;
  transform: scale(0.95);
}

.kb-key.wide {
  min-width: 120px;
  font-size: 22px;
}

.kb-key.extra-wide {
  flex: 1;
  max-width: 420px;
  font-size: 22px;
}

/* ============================
   SOURCE HAN SANS KR
   ============================ */

@font-face {
  font-family: 'Source Han Sans KR';
  src: url('assets/fontes/source-han-sans-kr/SourceHanSansKR/SourceHanSansKR-VF.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
}

/* ============================
   TELA DE CADASTRO
   ============================ */

/* Background video – cobre todo o frame 1080×1920 */
.cad-video-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 1080px;
  height: 1920px;
  object-fit: cover;
  pointer-events: none;
  border: none;
  z-index: 0;
}

/* Iframe Vimeo fallback (Vercel) – sem object-fit, usa width/height fixos */
#cad-video-vimeo {
  object-fit: unset;
}

/* Painel glass: x:79 y:277 w:923 h:1149 */
.cad-panel {
  position: absolute;
  left: 79px;
  top: 277px;
  width: 923px;
  height: 1149px;
  background: rgba(255, 255, 255, 0.19);
  border: 1px solid #FFFFFF;
  border-radius: 96px;
  pointer-events: none;
  z-index: 1;
}

/* Logo DFM branca: x:411 y:292 w:259 h:335 */
.cad-logo {
  position: absolute;
  left: 411px;
  top: 292px;
  width: 259px;
  height: 335px;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
}

/* Rótulos dos campos */
.cad-label {
  position: absolute;
  font-family: 'Source Han Sans KR', sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2em;
  color: #000000;
  pointer-events: none;
  z-index: 2;
}

/* Campos de entrada: left:136 w:809 h:72 radius:96px */
/* Gradient border via background-clip */
.cad-input-field {
  position: absolute;
  left: 136px;
  width: 809px;
  height: 72px;
  border-radius: 96px;
  border: 1px solid transparent;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25)),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 51%, rgba(255, 255, 255, 1) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 31px;
}

.cad-input-field.active {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.40), rgba(255, 255, 255, 0.40)),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 51%, rgba(255, 255, 255, 1) 100%);
}

/* Valor digitado dentro do campo */
.cad-input-val {
  font-family: 'Source Han Sans KR', sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2em;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Botão Login: x:136 y:1225 w:809 h:115 */
.cad-btn-login {
  position: absolute;
  left: 136px;
  top: 1225px;
  width: 809px;
  height: 115px;
  background: #FF0000;
  border: 1px solid #FFFFFF;
  border-radius: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Source Han Sans KR', sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2em;
  color: #FFFFFF;
  cursor: pointer;
  z-index: 2;
}

/* ============================
   CADASTRO – TECLADO VIRTUAL
   ============================ */

.cad-kb-popup {
  position: absolute;
  left: 0;
  top: 0;
  width: 1080px;
  height: 1920px;
  z-index: 200;
}

.cad-kb-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cad-kb-modal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 920px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 24px;
  padding: 50px 50px 40px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

.cad-kb-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #888;
  font-size: 48px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 5;
}

.cad-kb-close:hover {
  color: #fff;
}

.cad-kb-field-name {
  font-family: 'Source Han Sans KR', sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #aaa;
  margin-bottom: 16px;
}

.cad-kb-input-wrap {
  width: 100%;
  margin-bottom: 24px;
}

.cad-kb-display {
  width: 100%;
  min-height: 80px;
  background: #111;
  border: 2px solid #E1142D;
  border-radius: 12px;
  color: #fff;
  font-family: 'Source Han Sans KR', sans-serif;
  font-size: 30px;
  padding: 20px 24px;
  box-sizing: border-box;
  word-break: break-all;
}

.cad-kb-confirm {
  display: block;
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, #E1142D, #c0101f);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: 'Source Han Sans KR', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  margin-top: 16px;
}

.cad-kb-confirm:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 30px rgba(225, 20, 28, 0.4);
}

.cad-kb-confirm:active {
  transform: scale(0.98);
}

.cad-keyboard {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Teclado numérico (CEP e Telefone) */
.cad-keyboard--numeric {
  align-items: center;
}

.cad-keyboard--numeric .kb-row {
  justify-content: center;
  gap: 16px;
}

.kb-key.num-key {
  min-width: 180px;
  height: 120px;
  font-size: 52px;
  font-weight: 700;
  border-radius: 16px;
}

/* ============================
   TELAS DE RESULTADO (BOX / VIGO)
   ============================ */

.res-screen {
  position: absolute;
  left: 0;
  top: 0;
  width: 1080px;
  height: 1920px;
  overflow: hidden;
}

/* Background photo - full cover */
.res-bg-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 1080px;
  height: 1920px;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

/* QR panel: x:769 y:0 w:311 h:414 – white panel, bottom-left radius 30px */
.res-qr-panel {
  position: absolute;
  left: 769px;
  top: 0;
  width: 311px;
  height: 414px;
  background: #FFFFFF;
  border-radius: 0 0 0 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 55px 28px 28px 28px;
}

.res-qr-label {
  font-family: 'Source Han Sans KR', sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 1.2em;
  color: #000000;
  margin-bottom: 20px;
}

.res-qr-label strong {
  font-weight: 500;
}

.res-qr-img {
  width: 238px;
  height: 238px;
  object-fit: cover;
}

/* Logo DFM: x:75 y:56 w:160 h:60 */
.res-logo {
  position: absolute;
  left: 75px;
  top: 56px;
  width: 160px;
  height: 60px;
  object-fit: contain;
  pointer-events: none;
  z-index: 3;
}

/* SEU RESULTADO: x:74 y:402 – red, light 30px */
.res-label-seu {
  position: absolute;
  left: 74px;
  top: 402px;
  font-family: 'Source Han Sans KR', sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2em;
  color: #E1141C;
  z-index: 3;
  pointer-events: none;
}

/* DFM/BOX title block: x:67 y:453 */
.res-model-title {
  position: absolute;
  left: 67px;
  top: 453px;
  z-index: 3;
  pointer-events: none;
  line-height: 1.03em;
}

.res-title-dfm {
  font-family: 'Source Han Sans KR', sans-serif;
  font-size: 76px;
  font-weight: 900;
  color: #FFFFFF;
  display: block;
}

.res-title-model {
  font-family: 'Source Han Sans KR', sans-serif;
  font-size: 76px;
  font-weight: 300;
  color: #E1141C;
  display: block;
}

/* Description: x:74 y:693 w:483 */
.res-desc {
  position: absolute;
  left: 74px;
  top: 693px;
  width: 483px;
  font-family: 'Source Han Sans KR', sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 1.2em;
  color: #FFFFFF;
  z-index: 3;
  pointer-events: none;
}

/* Feature list: starts at y:862 */
.res-features {
  position: absolute;
  left: 82px;
  top: 862px;
  z-index: 3;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.res-feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  height: 98px;
}

.res-feat-icon {
  width: 81px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
}

.res-feat-text {
  font-family: 'Source Han Sans KR', sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 1.2em;
  color: #FFFFFF;
}

/* Avançar button */
.res-btn-avancar {
  display: flex;
  align-items: center;
  z-index: 4;
}

.res-btn-text {
  font-family: 'Source Han Sans KR', sans-serif;
  font-size: 27px;
  font-weight: 400;
  color: #FFFFFF;
  pointer-events: none;
}

/* ============================
   TELA DE FINALIZAÇÃO
   ============================ */

.fin-screen {
  position: absolute;
  left: 0;
  top: 0;
  width: 1080px;
  height: 1920px;
  overflow: hidden;
}

/* Dark gradient background */
.fin-bg {
  position: absolute;
  left: 0; top: 0;
  width: 1080px;
  height: 1920px;
  background: linear-gradient(180deg, #0e0e0e 0%, #323232 100%);
  z-index: 0;
}

/* Red semi-transparent ellipses (right side) */
.fin-ellipse {
  position: absolute;
  border-radius: 50%;
  background: rgba(225, 20, 28, 0.5);
  z-index: 1;
  pointer-events: none;
}

.fin-ellipse1 { left: 834px; top: 919px; width: 854px; height: 1120px; }
.fin-ellipse2 { left: 901px; top: 849px; width: 854px; height: 1120px; }
.fin-ellipse3 { left: 993px; top: 952px; width: 854px; height: 1120px; }

/* Stroke circles */
.fin-stroke-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  border-style: solid;
}

.fin-sc1 {
  left: 295px; top: 764px;
  width: 492px; height: 492px;
  border-width: 1px;
  border-color: transparent;
  border-image: linear-gradient(180deg, rgba(225,20,28,1) 0%, rgba(225,20,28,0) 74%) 1;
  /* Fallback for border-image on circle - use box-shadow instead */
  border: 1px solid rgba(225, 20, 28, 0.6);
  box-shadow: inset 0 0 0 0 transparent;
}

.fin-sc2 {
  left: 244px; top: 714px;
  width: 594px; height: 594px;
  border: 2px solid rgba(225, 20, 28, 0.4);
}

/* Small red dots */
.fin-dot {
  position: absolute;
  border-radius: 50%;
  background: #E1141C;
  z-index: 2;
  pointer-events: none;
}

/* OBRIGADO! title: x:353 y:590 w:374 – centered */
.fin-title {
  position: absolute;
  left: 353px;
  top: 590px;
  width: 374px;
  font-family: 'Source Han Sans KR', sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.03em;
  color: #E1141C;
  text-align: center;
  z-index: 3;
  pointer-events: none;
}

/* Central card image: x:337 y:827 w:406 h:367 */
.fin-card-img {
  position: absolute;
  left: 337px;
  top: 827px;
  width: 406px;
  height: 367px;
  object-fit: fill;
  z-index: 3;
  pointer-events: none;
}

/* Finalizar button: x:282 y:1370 w:517 h:109 – white stroke, rounded */
.fin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
  border-radius: 12px;
  background: transparent;
  z-index: 4;
  cursor: pointer;
}

.fin-btn-text {
  font-family: 'Source Han Sans KR', sans-serif;
  font-size: 64px;
  font-weight: 500;
  color: #FFFFFF;
  pointer-events: none;
}

/* ============================
   CADASTRO INTRO POPUP
   ============================ */
.cad-intro-popup {
  position: absolute;
  left: 0;
  top: 0;
  width: 1080px;
  height: 1920px;
  z-index: 250;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cad-intro-popup.hidden {
  display: none !important;
}

.cad-intro-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cad-intro-modal {
  position: relative;
  width: 800px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 40px;
  padding: 80px 60px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 2;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.cad-intro-text {
  font-family: 'Source Han Sans KR', sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.4em;
  margin-bottom: 60px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.cad-intro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 90px;
  background: #E1141C;
  border: 2px solid #FFFFFF;
  border-radius: 45px;
  font-family: 'Source Han Sans KR', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 10px 30px rgba(225, 20, 28, 0.4);
}

.cad-intro-btn:active {
  transform: scale(0.95);
  background: #c01018;
}