/* ═══════════════════════════════════════════════════════════════
   MASTERCARD BLACK — PARA VOCÊ PAGE
   Experiências Premium · 100vw × 100vh · sem scroll
   ═══════════════════════════════════════════════════════════════ */

html,
body {
  overflow: hidden !important;
}

@media (max-width: 860px) {
  html,
  body {
    overflow: hidden !important;
  }
}

/* Canvas levemente reduzido — igual ao cartoes */
#bg-canvas {
  opacity: 0.14;
}

/* ════════════════════════════════
   WRAPPER
   ════════════════════════════════ */
.pv-wrap {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ════════════════════════════════
   HEADER — idêntico ao ct-header
   ════════════════════════════════ */
.pv-header {
  flex-shrink: 0;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.10);
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.20) 100%
  );
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  position: relative;
  z-index: 20;
}

.pv-header .mc-logo {
  text-decoration: none;
  flex: 1;
  opacity: 0.88;
  transition: opacity 0.25s ease;
}

.pv-header .mc-logo:hover {
  opacity: 1;
}

.pv-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 20px;
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 100px;
  background: rgba(201, 169, 110, 0.045);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  white-space: nowrap;
}

.pv-badge span {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.pv-header-spacer {
  flex: 1;
}

/* ════════════════════════════════
   MAIN — ocupa o espaço restante
   ════════════════════════════════ */
.pv-main {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 20px 48px 72px;
  position: relative;
  z-index: 10;
}

/* ════════════════════════════════
   BLOCO DE TÍTULO
   ════════════════════════════════ */
.pv-hero-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pv-title {
  font-family: 'FF Mark', 'FFMark', 'Mark Pro', sans-serif;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 500;
  color: var(--white-soft);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.pv-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), #A07840);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pv-subtitle {
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 400;
  color: rgba(240, 237, 232, 0.48);
  letter-spacing: 0.06em;
  max-width: 560px;
  line-height: 1.6;
}

/* Régua divisória com diamante */
.pv-title-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 220px;
  margin-top: 4px;
}

.pv-rule-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 110, 0.35) 50%,
    transparent
  );
}

.pv-rule-diamond {
  font-size: 6px;
  color: var(--gold);
  opacity: 0.55;
  flex-shrink: 0;
}

/* ════════════════════════════════
   GRID DE 5 CARDS
   ════════════════════════════════ */
.pv-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1160px;
}

/* ════════════════════════════════
   CARD — glassmorphism premium
   ════════════════════════════════ */
.pv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 18px 20px;
  border-radius: 18px;
  overflow: hidden;
  z-index: 0;
  cursor: default;

  /* Fundo metálico escuro — mesmo DNA dos nav-btn da home */
  background: linear-gradient(
    145deg,
    #2a2a2e 0%,
    #1a1a1e 40%,
    #111114 70%,
    #1e1e22 100%
  );

  /* Borda neutra sutil */
  border: none;

  /* Sombra profunda com leve halo escuro atrás */
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.6),
    0 2px 6px rgba(0, 0, 0, 0.8),
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5);

  /* Entrada escalonada */
  animation: fade-up 0.7s ease forwards, card-in 0.7s ease forwards;
  animation-delay: var(--card-delay, 0s);
  opacity: 0;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Brilho branco girando na borda — contido dentro do card */
.pv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0deg,
    transparent 70deg,
    rgba(255, 255, 255, 0.55) 100deg,
    rgba(255, 255, 255, 0.22) 125deg,
    transparent 155deg,
    transparent 360deg
  );
  animation: spin-border 7s linear infinite;
  animation-delay: var(--card-delay, 0s);
  z-index: -1;
}

/* Máscara interna — mesmo fundo dos nav-btn */
.pv-card::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 16px;
  background: linear-gradient(
    145deg,
    #2a2a2e 0%,
    #1a1a1e 40%,
    #111114 70%,
    #1e1e22 100%
  );
  z-index: -1;
}

/* Hover: leve elevação + borda dourada mais intensa */
.pv-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.7),
    0 4px 10px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}

/* Faixa de acento na base — branca sutil */
.pv-card-accent {
  position: absolute;
  bottom: 0;
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.07) 40%,
    rgba(255, 255, 255, 0.07) 60%,
    transparent
  );
  pointer-events: none;
  z-index: 2;
}

/* ── Ícone SVG no topo do card ── */
.pv-card-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--white-dim);
  position: relative;
  z-index: 2;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.pv-card:hover .pv-card-icon {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white-soft);
}

.pv-card-icon svg {
  width: 20px;
  height: 20px;
}

/* ── Corpo do card ── */
.pv-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 2;
}

.pv-card-title {
  font-family: 'FF Mark', 'FFMark', 'Mark Pro', 'Inter', sans-serif;
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 600;
  color: var(--white-soft);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.pv-card-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(10px, 0.88vw, 12.5px);
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* Glow interno no hover — passa sobre o texto */
.pv-card::before {
  pointer-events: none;
}

/* ════════════════════════════════
   BOTÃO RETORNAR — idêntico ao ct-back-btn
   ════════════════════════════════ */
.pv-back-btn {
  position: fixed;
  bottom: 28px;
  left: 32px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px 7px 10px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid rgba(201, 169, 110, 0.18);
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: rgba(240, 237, 232, 0.42);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.25s ease,
    box-shadow 0.3s ease;
}

.pv-back-btn:hover {
  color: var(--gold-light);
  border-color: rgba(201, 169, 110, 0.45);
  background: rgba(20, 18, 14, 0.75);
  transform: translateX(-2px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.pv-back-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: inherit;
  transition: transform 0.25s ease;
}

.pv-back-btn:hover .pv-back-icon {
  transform: translateX(-2px);
}

/* ════════════════════════════════
   TIMER BAR — 60 segundos
   ════════════════════════════════ */
.pv-timer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(201, 169, 110, 0.08);
  z-index: 60;
  overflow: hidden;
}

.pv-timer-fill {
  height: 100%;
  width: 100%;
  transform-origin: left center;
  background: linear-gradient(
    90deg,
    rgba(201, 169, 110, 0.25) 0%,
    rgba(201, 169, 110, 0.55) 50%,
    rgba(232, 201, 138, 0.70) 100%
  );
  box-shadow: 0 0 8px rgba(201, 169, 110, 0.4);
  transition: none;
}

/* Linha dourada na base — detalhe de elegância */
.pv-wrap::after {
  content: '';
  position: fixed;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 110, 0.18) 30%,
    rgba(201, 169, 110, 0.25) 50%,
    rgba(201, 169, 110, 0.18) 70%,
    transparent
  );
  pointer-events: none;
  z-index: 30;
}
