/**
 * Homepage premium — escopo exclusivo index.html (body.page-home)
 * Tema escuro, gradientes roxo/azul, glassmorphism. Carrega após landing.css
 * (sobrescreve header, nav, carrossel, modal de vídeo e hambúrguer).
 */

body.page-home {
  --hp-bg: #06060f;
  --hp-bg-2: #0c0a1d;
  --hp-bg-3: #120d29;
  --hp-surface: rgba(255, 255, 255, 0.045);
  --hp-surface-2: rgba(255, 255, 255, 0.07);
  --hp-border: rgba(255, 255, 255, 0.09);
  --hp-border-strong: rgba(255, 255, 255, 0.16);
  --hp-text: #f5f4fc;
  --hp-muted: #a7a3c6;
  --hp-muted-2: #7d7aa0;
  --hp-accent: #8b5cff;
  --hp-accent-2: #4f86ff;
  --hp-grad: linear-gradient(135deg, #8b5cff 0%, #4f86ff 100%);
  --hp-grad-soft: linear-gradient(135deg, rgba(139, 92, 255, 0.18), rgba(79, 134, 255, 0.18));
  --hp-radius: 18px;
  --hp-radius-lg: 26px;
  --hp-shadow: 0 24px 70px rgba(7, 5, 25, 0.55);
  --hp-glow: 0 0 0 1px rgba(139, 92, 255, 0.35), 0 18px 50px rgba(102, 70, 255, 0.35);

  margin: 0;
  background: var(--hp-bg);
  color: var(--hp-text);
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.page-home .landing {
  position: relative;
  background:
    radial-gradient(1100px 700px at 80% -5%, rgba(139, 92, 255, 0.22), transparent 60%),
    radial-gradient(900px 620px at 0% 8%, rgba(79, 134, 255, 0.16), transparent 55%),
    linear-gradient(180deg, var(--hp-bg) 0%, var(--hp-bg-2) 40%, var(--hp-bg) 100%);
  min-height: 100vh;
  overflow: hidden;
}

body.page-home a { color: inherit; }

/* Reveal */
body.page-home .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
body.page-home .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  body.page-home .reveal { opacity: 1; transform: none; transition: none; }
}

body.page-home .hp-section {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 40px);
}

body.page-home .hp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8b9ff;
  background: var(--hp-grad-soft);
  border: 1px solid var(--hp-border-strong);
  padding: 7px 14px;
  border-radius: 999px;
  margin: 0 0 18px;
}

body.page-home .hp-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(34px, 5vw, 56px);
}
body.page-home .hp-section-head .hp-eyebrow { margin-bottom: 16px; }

body.page-home .hp-title {
  font-size: clamp(1.7rem, 4vw, 2.75rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
body.page-home .hp-title em {
  font-style: normal;
  background: var(--hp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.page-home .hp-sub {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--hp-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============ HEADER / NAV (override landing.css) ============ */
body.page-home header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 5vw, 40px);
  background: rgba(8, 7, 20, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hp-border);
}
body.page-home .logo .logo-wordmark { filter: none; height: 24px; width: auto; }
body.page-home .nav-auth {
  display: flex;
  align-items: center;
  gap: 14px;
}
body.page-home .nav-link-plans {
  color: var(--hp-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
body.page-home .nav-link-plans:hover { color: #fff; }
body.page-home .nav-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--hp-grad);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  box-shadow: 0 8px 24px rgba(102, 70, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body.page-home .nav-btn:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(102, 70, 255, 0.5); }
body.page-home .nav-auth .hidden,
body.page-home .hidden { display: none !important; }

/* ============ BOTÕES ============ */
body.page-home .hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 28px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
body.page-home .hp-btn-primary {
  background: var(--hp-grad);
  color: #fff;
  box-shadow: 0 14px 38px rgba(102, 70, 255, 0.45);
}
body.page-home .hp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 48px rgba(102, 70, 255, 0.6); }
body.page-home .hp-btn-ghost {
  background: var(--hp-surface);
  color: #fff;
  border: 1px solid var(--hp-border-strong);
  backdrop-filter: blur(8px);
}
body.page-home .hp-btn-ghost:hover { background: var(--hp-surface-2); transform: translateY(-2px); }
body.page-home .hp-btn-lg { padding: 17px 36px; font-size: 1.05rem; }

/* ============ HERO ============ */
body.page-home .hp-hero {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 84px) clamp(18px, 5vw, 40px) clamp(40px, 6vw, 70px);
}
body.page-home .hp-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
body.page-home .hp-hero-copy { max-width: 600px; }
body.page-home .hp-hero-title {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}
body.page-home .hp-hero-title em {
  font-style: normal;
  background: var(--hp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.page-home .hp-hero-sub {
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  color: var(--hp-muted);
  line-height: 1.6;
  margin: 0 0 28px;
}
body.page-home .hp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}
body.page-home .hp-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  max-width: 480px;
}
body.page-home .hp-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  color: #d8d5ef;
  font-weight: 500;
}
body.page-home .hp-badge svg { flex: none; color: #9b7bff; }

/* Hero showcase (direita) */
body.page-home .hp-showcase {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
}
body.page-home .hp-showcase::before {
  content: '';
  position: absolute;
  inset: -10% -6%;
  background: radial-gradient(closest-side, rgba(139, 92, 255, 0.28), transparent 70%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
body.page-home .hp-showcase-card {
  position: relative;
  z-index: 1;
  border-radius: var(--hp-radius);
  overflow: hidden;
  border: 1px solid var(--hp-border-strong);
  background: var(--hp-surface);
  box-shadow: var(--hp-shadow);
  aspect-ratio: 3 / 4;
}
body.page-home .hp-showcase-card--tall { grid-row: span 2; aspect-ratio: 9 / 16; }
body.page-home .hp-showcase-card video,
body.page-home .hp-showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body.page-home .hp-showcase-card .hp-showcase-tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  background: rgba(7, 5, 25, 0.62);
  border: 1px solid var(--hp-border);
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
body.page-home .hp-showcase-card .mute-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(7, 5, 25, 0.55);
  color: #fff;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ STRIP MARCAS ============ */
body.page-home .integrations-strip {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--hp-border);
  border-bottom: 1px solid var(--hp-border);
  background: rgba(255, 255, 255, 0.02);
  padding: 18px 0;
  margin: clamp(10px, 3vw, 26px) 0 0;
}
body.page-home .integrations-wrap { overflow: hidden; }
body.page-home .integrations-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: hp-marquee 26s linear infinite;
}
body.page-home .integrations-track span {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--hp-muted-2);
  white-space: nowrap;
}
@keyframes hp-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
body.page-home .integrations-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
  left: 0;
  background: linear-gradient(90deg, var(--hp-bg), transparent);
}
body.page-home .integrations-gradient.is-right { left: auto; right: 0; transform: scaleX(-1); }

/* ============ GRID DE CARDS (genérico) ============ */
body.page-home .hp-card {
  position: relative;
  border-radius: var(--hp-radius);
  border: 1px solid var(--hp-border);
  background: var(--hp-surface);
  padding: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
body.page-home .hp-card:hover {
  transform: translateY(-4px);
  border-color: var(--hp-border-strong);
  box-shadow: var(--hp-shadow);
}
body.page-home .hp-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 1.4rem;
  background: var(--hp-grad-soft);
  border: 1px solid var(--hp-border-strong);
  margin-bottom: 14px;
}
body.page-home .hp-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 6px;
}
body.page-home .hp-card p {
  font-size: 0.92rem;
  color: var(--hp-muted);
  line-height: 1.55;
  margin: 0;
}

/* O que você pode criar — vitrine premium */
body.page-home .hp-create-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
body.page-home .hp-create-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--hp-radius);
  overflow: hidden;
  border: 1px solid var(--hp-border);
  background: var(--hp-surface);
  box-shadow: var(--hp-shadow);
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease, box-shadow 0.28s ease;
}
body.page-home .hp-create-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(139, 92, 255, 0.65);
  box-shadow: 0 0 0 1px rgba(139, 92, 255, 0.45), 0 26px 60px rgba(102, 70, 255, 0.4);
}
/* mídia = ~75% do card */
body.page-home .hp-create-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #0a0820;
  overflow: hidden;
}
body.page-home .hp-create-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body.page-home .hp-create-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(7, 5, 25, 0.6);
  border: 1px solid var(--hp-border-strong);
  padding: 5px 11px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
body.page-home .hp-create-media .mute-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 4;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(7, 5, 25, 0.55);
  color: #fff;
  cursor: pointer;
  font-size: 0.82rem;
}
/* overlay de hover "Gerar esse estilo" */
body.page-home .hp-create-hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(7, 5, 25, 0.1), rgba(7, 5, 25, 0.78));
  opacity: 0;
  transition: opacity 0.28s ease;
}
body.page-home .hp-create-card:hover .hp-create-hover { opacity: 1; }
body.page-home .hp-create-hover span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: var(--hp-grad);
  box-shadow: 0 12px 30px rgba(102, 70, 255, 0.5);
  transform: translateY(8px);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
body.page-home .hp-create-card:hover .hp-create-hover span { transform: none; }
body.page-home .hp-create-hover span::before { content: '✨'; }
/* info compacta (título + ver exemplo) */
body.page-home .hp-create-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
}
body.page-home .hp-create-info h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.25;
}
body.page-home .hp-create-example {
  flex: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: #c8b9ff;
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--hp-border-strong);
  background: var(--hp-surface-2);
  transition: color 0.2s ease, border-color 0.2s ease;
}
body.page-home .hp-create-example:hover { color: #fff; border-color: rgba(139, 92, 255, 0.6); }

/* ============ EXEMPLOS (carrossel) ============ */
body.page-home .carousel-section { padding: 0; margin: 0 0 26px; }
body.page-home .carousel-wrapper { position: relative; max-width: 1240px; margin: 0 auto; }
body.page-home .carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px;
}
body.page-home .carousel::-webkit-scrollbar { display: none; }
body.page-home .carousel-track { display: flex; gap: 14px; }
body.page-home .video-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(150px, 40vw, 210px);
  aspect-ratio: 9 / 16;
  border-radius: var(--hp-radius);
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--hp-border-strong);
  background: #0a0820;
  box-shadow: var(--hp-shadow);
  cursor: pointer;
}
body.page-home .video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body.page-home .video-card .hp-cat-tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  background: rgba(7, 5, 25, 0.62);
  border: 1px solid var(--hp-border);
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
body.page-home .video-card .mute-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(7, 5, 25, 0.55);
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
}
body.page-home .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 16, 45, 0.85);
  border: 1px solid var(--hp-border-strong);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease;
}
body.page-home .carousel-nav:hover { background: rgba(139, 92, 255, 0.5); }
body.page-home .carousel-nav.left { left: -6px; }
body.page-home .carousel-nav.right { right: -6px; }
@media (max-width: 640px) { body.page-home .carousel-nav { display: none; } }

body.page-home .hp-examples-note {
  text-align: center;
  color: var(--hp-muted);
  font-size: 0.95rem;
  margin: 8px auto 0;
  max-width: 560px;
}

/* ============ DO PROMPT AO VÍDEO ============ */
body.page-home .hp-process-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
body.page-home .hp-steps { display: grid; gap: 14px; }
body.page-home .hp-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--hp-radius);
  border: 1px solid var(--hp-border);
  background: var(--hp-surface);
}
body.page-home .hp-step-num {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: var(--hp-grad);
  color: #fff;
}
body.page-home .hp-step h3 { margin: 2px 0 4px; font-size: 1.02rem; font-weight: 700; }
body.page-home .hp-step p { margin: 0; font-size: 0.9rem; color: var(--hp-muted); line-height: 1.5; }

body.page-home .hp-prompt-demo {
  border-radius: var(--hp-radius-lg);
  border: 1px solid var(--hp-border-strong);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  padding: 20px;
  box-shadow: var(--hp-shadow);
}
body.page-home .hp-prompt-box {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(6, 5, 18, 0.7);
  border: 1px solid var(--hp-border);
  font-size: 0.92rem;
  color: #e9e7f7;
  line-height: 1.5;
}
body.page-home .hp-prompt-box .hp-prompt-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9b7bff;
  display: block;
  margin-bottom: 4px;
}
body.page-home .hp-prompt-arrow {
  text-align: center;
  color: var(--hp-muted-2);
  font-size: 1.4rem;
  margin: 12px 0;
}
body.page-home .hp-prompt-result {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  max-width: 240px;
  margin: 0 auto;
  border: 1px solid var(--hp-border-strong);
  background: #0a0820;
}
body.page-home .hp-prompt-result video,
body.page-home .hp-prompt-result img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============ BENEFÍCIOS ============ */
body.page-home .hp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ============ COMPARAÇÃO ============ */
body.page-home .hp-compare-table {
  max-width: 880px;
  margin: 0 auto;
  border-radius: var(--hp-radius-lg);
  border: 1px solid var(--hp-border-strong);
  overflow: hidden;
  background: var(--hp-surface);
  backdrop-filter: blur(10px);
}
body.page-home .hp-compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  align-items: center;
}
body.page-home .hp-compare-row + .hp-compare-row { border-top: 1px solid var(--hp-border); }
body.page-home .hp-compare-row > div { padding: 16px 18px; font-size: 0.95rem; }
body.page-home .hp-compare-head > div { font-weight: 700; font-size: 0.92rem; }
body.page-home .hp-compare-head {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--hp-border-strong);
}
body.page-home .hp-compare-feature { color: var(--hp-muted); font-weight: 600; }
body.page-home .hp-compare-zermini {
  background: linear-gradient(180deg, rgba(139, 92, 255, 0.12), rgba(79, 134, 255, 0.06));
  color: #fff;
  font-weight: 600;
}
body.page-home .hp-compare-head .hp-compare-zermini { color: #c8b9ff; }
body.page-home .hp-compare-other { color: var(--hp-muted); }
body.page-home .hp-compare-zermini::before {
  content: '✓ ';
  color: #7fffd1;
  font-weight: 800;
}
body.page-home .hp-compare-head .hp-compare-zermini::before { content: ''; }
body.page-home .hp-compare-other::before { content: '✕ '; color: #ff7a7a; font-weight: 800; }
body.page-home .hp-compare-head .hp-compare-other::before { content: ''; }

/* ============ PLANOS ============ */
body.page-home .hp-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
body.page-home .hp-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--hp-radius-lg);
  border: 1px solid var(--hp-border);
  background: var(--hp-surface);
  padding: 28px 24px;
  backdrop-filter: blur(10px);
}
body.page-home .hp-plan--featured {
  border-color: transparent;
  background:
    linear-gradient(var(--hp-bg-3), var(--hp-bg-3)) padding-box,
    var(--hp-grad) border-box;
  border: 1.5px solid transparent;
  box-shadow: var(--hp-glow);
  transform: translateY(-6px);
}
@media (max-width: 860px) { body.page-home .hp-plan--featured { transform: none; } }
body.page-home .hp-plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--hp-grad);
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(102, 70, 255, 0.5);
}
body.page-home .hp-plan-name { font-size: 1.2rem; font-weight: 800; margin: 0 0 4px; }
body.page-home .hp-plan-desc { font-size: 0.9rem; color: var(--hp-muted); margin: 0 0 18px; line-height: 1.45; min-height: 2.6em; }
body.page-home .hp-plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
body.page-home .hp-plan-price .hp-plan-now { font-size: 2.1rem; font-weight: 800; letter-spacing: -0.02em; }
body.page-home .hp-plan-price .hp-plan-cur { font-size: 1.1rem; font-weight: 700; color: var(--hp-muted); }
body.page-home .hp-plan-meta { font-size: 0.85rem; color: #c8b9ff; font-weight: 600; margin: 0 0 18px; }
body.page-home .hp-plan-features { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; flex: 1; }
body.page-home .hp-plan-features li {
  position: relative;
  padding-left: 26px;
  font-size: 0.9rem;
  color: #ddd9f0;
  line-height: 1.4;
}
body.page-home .hp-plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #9b7bff;
  font-weight: 800;
}
body.page-home .hp-plan-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  background: var(--hp-surface-2);
  border: 1px solid var(--hp-border-strong);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}
body.page-home .hp-plan-cta:hover { transform: translateY(-2px); }
body.page-home .hp-plan--featured .hp-plan-cta {
  background: var(--hp-grad);
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(102, 70, 255, 0.45);
}
body.page-home .hp-plans-note { text-align: center; color: var(--hp-muted-2); font-size: 0.85rem; margin-top: 20px; }

/* ============ CONFIANÇA ============ */
body.page-home .hp-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
body.page-home .hp-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--hp-border);
  background: var(--hp-surface);
  font-size: 0.95rem;
  font-weight: 500;
}
body.page-home .hp-trust-item svg { flex: none; color: #9b7bff; }
body.page-home .home-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}
body.page-home .home-stat-card {
  text-align: center;
  padding: 26px 16px;
  border-radius: var(--hp-radius);
  border: 1px solid var(--hp-border-strong);
  background: var(--hp-grad-soft);
}
body.page-home .home-stat-num {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--hp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.page-home .home-stat-label { font-size: 0.88rem; color: var(--hp-muted); }

/* ============ FAQ ============ */
body.page-home .hp-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
body.page-home .hp-faq-item {
  border-radius: 14px;
  border: 1px solid var(--hp-border);
  background: var(--hp-surface);
  overflow: hidden;
}
body.page-home .hp-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
body.page-home .hp-faq-item summary::-webkit-details-marker { display: none; }
body.page-home .hp-faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: #9b7bff;
  transition: transform 0.2s ease;
  flex: none;
}
body.page-home .hp-faq-item[open] summary::after { transform: rotate(45deg); }
body.page-home .hp-faq-content {
  padding: 0 22px 20px;
  color: var(--hp-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ============ CTA FINAL ============ */
body.page-home .hp-final {
  position: relative;
  max-width: 1000px;
  margin: 0 auto clamp(40px, 6vw, 80px);
  padding: clamp(40px, 6vw, 70px) clamp(24px, 5vw, 56px);
  text-align: center;
  border-radius: var(--hp-radius-lg);
  border: 1px solid var(--hp-border-strong);
  background:
    radial-gradient(700px 380px at 50% 0%, rgba(139, 92, 255, 0.3), transparent 70%),
    linear-gradient(180deg, var(--hp-bg-3), var(--hp-bg-2));
  overflow: hidden;
}
body.page-home .hp-final h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
body.page-home .hp-final p { color: var(--hp-muted); font-size: 1.05rem; line-height: 1.6; margin: 0 auto 28px; max-width: 600px; }

/* ============ FOOTER (override) ============ */
body.page-home footer {
  border-top: 1px solid var(--hp-border);
  background: rgba(6, 5, 16, 0.6);
  padding: clamp(40px, 6vw, 64px) clamp(18px, 5vw, 40px) 30px;
}
body.page-home .footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 28px;
}
body.page-home .footer-title { font-weight: 700; margin-bottom: 12px; color: #fff; font-size: 0.95rem; }
body.page-home .footer-desc { color: var(--hp-muted); font-size: 0.9rem; line-height: 1.5; }
body.page-home .footer-link { display: block; color: var(--hp-muted); text-decoration: none; font-size: 0.9rem; margin-bottom: 8px; transition: color 0.2s ease; }
body.page-home .footer-link:hover { color: #fff; }
body.page-home .footer-bottom {
  max-width: 1180px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--hp-border);
  color: var(--hp-muted-2);
  font-size: 0.82rem;
}

/* ============ STICKY MOBILE CTA ============ */
body.page-home .hp-sticky-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 70;
  text-align: center;
  padding: 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.02rem;
  text-decoration: none;
  color: #fff;
  background: var(--hp-grad);
  box-shadow: 0 14px 40px rgba(102, 70, 255, 0.55);
}

/* ============ MODAL DE VÍDEO (override dark) ============ */
body.page-home .video-modal-content { background: var(--hp-bg-2); border: 1px solid var(--hp-border-strong); }
body.page-home .video-modal-desc { color: var(--hp-muted); }
body.page-home .video-modal-btn { border: 1px solid var(--hp-border-strong); color: #fff; }
body.page-home .video-modal-btn-primary { background: var(--hp-grad); border-color: transparent; }

/* ============ HAMBÚRGUER (override dark) ============ */
body.page-home .hamburger-btn span { background: #fff; }
body.page-home .landing-hamburger-panel { background: var(--hp-bg-2); border-left: 1px solid var(--hp-border-strong); }
body.page-home .landing-hamburger-panel a { color: #ece9fa; }

/* ============ RESPONSIVO ============ */
@media (max-width: 980px) {
  body.page-home .hp-create-grid,
  body.page-home .hp-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  body.page-home .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  body.page-home .hp-hero-inner { grid-template-columns: 1fr; }
  body.page-home .hp-hero-copy { max-width: 100%; text-align: center; margin: 0 auto; }
  body.page-home .hp-hero-cta { justify-content: center; }
  body.page-home .hp-badges { margin: 0 auto; justify-items: center; max-width: 420px; }
  body.page-home .hp-showcase { max-width: 440px; margin: 8px auto 0; }
  body.page-home .hp-process-grid { grid-template-columns: 1fr; }
  body.page-home .hp-plans-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  body.page-home .hp-trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  /* Performance/visual: menos glow e sombras pesadas, sem blur custoso */
  body.page-home { --hp-shadow: 0 10px 26px rgba(7, 5, 25, 0.4); }
  body.page-home .hp-card,
  body.page-home .hp-plan,
  body.page-home .hp-compare-table,
  body.page-home .hp-btn-ghost { backdrop-filter: none; -webkit-backdrop-filter: none; }
  body.page-home .hp-section { padding: 44px 18px; }
  body.page-home .hp-section-head { margin-bottom: 28px; }

  /* HERO compacto: vídeo/demo logo após o CTA, sem excesso de texto */
  body.page-home .hp-hero { padding: 24px 18px 30px; }
  body.page-home .hp-hero-title { font-size: clamp(1.85rem, 8.5vw, 2.4rem); margin-bottom: 12px; }
  body.page-home .hp-hero-sub { font-size: 1rem; line-height: 1.5; margin: 0 auto 18px; max-width: 32ch; }
  body.page-home .hp-hero-cta { flex-direction: column; margin-bottom: 18px; }
  body.page-home .hp-badges { display: none; }
  body.page-home .hp-showcase { max-width: 360px; gap: 10px; }
  body.page-home .hp-showcase::before { display: none; }
  body.page-home .hp-eyebrow { font-size: 0.7rem; padding: 6px 12px; margin-bottom: 14px; }

  /* VITRINE: 1 card por linha, vídeo como protagonista, botão pequeno */
  body.page-home .hp-create-grid { grid-template-columns: 1fr; gap: 14px; }
  body.page-home .hp-benefits-grid { grid-template-columns: 1fr; gap: 12px; }
  body.page-home .hp-create-media { aspect-ratio: 4 / 5; }
  body.page-home .hp-create-hover {
    opacity: 1;
    background: linear-gradient(180deg, transparent 50%, rgba(7, 5, 25, 0.62));
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 12px;
  }
  body.page-home .hp-create-hover span { transform: none; padding: 9px 16px; font-size: 0.85rem; }
  body.page-home .hp-create-info { padding: 12px 14px; }
  body.page-home .hp-create-info h3 { font-size: 0.95rem; }
  body.page-home .hp-create-example { font-size: 0.78rem; padding: 5px 11px; }

  /* GALERIA: scroll suave, ~2 cards (1 inteiro + prévia) por vez */
  body.page-home .carousel { scroll-behavior: smooth; padding: 2px 16px 2px 4px; }
  body.page-home .video-card { width: 60vw; max-width: 250px; box-shadow: none; }

  /* PLANOS empilhados: Pro em destaque, botões grandes, texto curto */
  body.page-home .hp-plan { padding: 22px 20px; }
  body.page-home .hp-plan-desc { min-height: 0; margin-bottom: 14px; }
  body.page-home .hp-plan-features { margin-bottom: 20px; }
  body.page-home .hp-plan--featured { transform: none; }
  body.page-home .hp-plan-cta { padding: 16px; font-size: 1.02rem; }

  /* COMPARAÇÃO empilhada */
  body.page-home .hp-compare-row { grid-template-columns: 1fr; }
  body.page-home .hp-compare-row > div { padding: 10px 16px; }
  body.page-home .hp-compare-row > div:first-child { padding-top: 16px; font-weight: 700; color: #fff; background: rgba(255,255,255,0.03); }
  body.page-home .hp-compare-head { display: none; }

  body.page-home .footer-grid { grid-template-columns: 1fr; }
  body.page-home .hp-sticky-cta { display: block; }
  body.page-home .hp-btn { width: 100%; }
  /* padding-bottom para o CTA fixo não cobrir conteúdo */
  body.page-home .landing { padding-bottom: 104px; }
}
