/* ==========================================================
   CAMPANHA JUNHO — JRD Creators
   preto #000 · branco #fff · neon #D8FF57 · Open Sans
   ========================================================== */
:root { --cj-ease: cubic-bezier(.16,1,.3,1); }

.cj-body { background: #000; color: #fff; font-family: 'Open Sans', sans-serif; }
.cj-section { position: relative; }
.cj-center { text-align: center; margin-top: 28px; }
.cj-fineprint { font-size: .78rem; color: #8A8AA3; text-align: center; max-width: 720px; margin: 22px auto 0; line-height: 1.6; }

/* ---- HEADER ---- */
.cj-header { position: sticky; top: 0; z-index: 100; background: rgba(0,0,0,.72); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,.06); transition: background .3s ease; }
.cj-header.scrolled { background: rgba(0,0,0,.9); }
.cj-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 66px; }
.cj-logo img { display: block; width: auto; }
.cj-nav { display: flex; gap: 24px; margin-left: auto; }
.cj-nav a { color: #C7C7DA; font-size: .9rem; font-weight: 600; text-decoration: none; transition: color .25s ease; }
.cj-nav a:hover { color: #D8FF57; }
.cj-header-cta { display: flex; align-items: center; gap: 14px; }
.cj-back { color: #B8B8D1; font-size: .85rem; text-decoration: none; }
.cj-back:hover { color: #fff; }
.cj-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.cj-burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.cj-burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.cj-burger.open span:nth-child(2){ opacity: 0; }
.cj-burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.cj-mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.cj-mobile-menu a { color: #fff; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); text-decoration: none; }
.cj-mobile-menu.open { max-height: 460px; padding: 10px 20px 18px; }

@media (max-width: 940px) {
  .cj-nav, .cj-header-cta { display: none; }
  .cj-burger { display: flex; }
  .cj-mobile-menu { display: flex; }
}

/* ---- HERO ---- */
.cj-hero { position: relative; overflow: hidden; padding: 72px 0 60px; }
.cj-hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.cj-hero-content h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.08; margin: 18px 0 16px; }
.cj-hero-sub { color: #C7C7DA; font-size: 1.05rem; line-height: 1.6; max-width: 560px; }
.cj-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #D8FF57; box-shadow: 0 0 10px #D8FF57; margin-right: 6px; }
.cj-hero-prices { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0; }
.cj-price-pill { display: flex; flex-direction: column; padding: 12px 18px; border-radius: 14px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); }
.cj-price-pill span { font-size: .72rem; color: #B8B8D1; }
.cj-price-pill strong { font-size: 1.3rem; color: #fff; }
.cj-price-pill-neon { border-color: rgba(216,255,87,.45); background: linear-gradient(135deg, rgba(216,255,87,.1), rgba(255,255,255,.02)); }
.cj-price-pill-neon strong { color: #D8FF57; }
.cj-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Orbs + glow */
.cj-orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; z-index: 1; }
.cj-orb-1 { width: 460px; height: 460px; background: rgba(216,255,87,.08); top: -120px; right: -80px; }
.cj-orb-2 { width: 380px; height: 380px; background: rgba(123,92,249,.06); bottom: -120px; left: -60px; }

/* Hero visual: cards flutuantes + preview do site */
.cj-hero-visual { position: relative; min-height: 420px; }
.cj-float-cards { position: relative; height: 100%; min-height: 420px; }
.cj-hero-shot { position: absolute; inset: 0; margin: auto; width: 86%; height: 360px; border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 30px 70px rgba(0,0,0,.6), 0 0 40px rgba(216,255,87,.08); background: #0a0a0a; }
.cj-hero-shot-img { width: 100%; height: auto; display: block; transform: translateY(0); animation: cjShotDrift 18s ease-in-out infinite alternate; }
@keyframes cjShotDrift { from { transform: translateY(0); } to { transform: translateY(calc(-100% + 360px)); } }
.cj-hero-shot:hover .cj-hero-shot-img { animation-play-state: paused; }

.cj-float { position: absolute; display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 12px; background: rgba(12,12,20,.9); border: 1px solid rgba(255,255,255,.1); font-size: .8rem; font-weight: 600; box-shadow: 0 14px 34px rgba(0,0,0,.5); z-index: 3; animation: cjFloat 5s ease-in-out infinite; }
.cj-float-1 { top: 6%; left: -4%; }
.cj-float-2 { top: 40%; right: -6%; animation-delay: .8s; }
.cj-float-3 { bottom: 12%; left: 0; animation-delay: 1.6s; }
.cj-float-notif { bottom: -4%; right: 6%; animation-delay: 2.2s; }
.cj-notif-dot { width: 8px; height: 8px; border-radius: 50%; background: #D8FF57; box-shadow: 0 0 8px #D8FF57; }
@keyframes cjFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---- GRIDS / CARDS ---- */
.cj-grid { display: grid; gap: 18px; margin-top: 12px; }
.cj-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cj-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cj-card { background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 24px 22px; transition: transform .4s var(--cj-ease), border-color .35s ease, box-shadow .35s ease; }
.cj-card:hover { transform: translateY(-6px); border-color: rgba(216,255,87,.3); box-shadow: 0 22px 48px rgba(0,0,0,.5); }
.cj-card p { color: #C7C7DA; font-size: .92rem; line-height: 1.5; margin: 0; }
.cj-card h3 { font-size: 1rem; margin: 0; }
.cj-card-ic { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: rgba(216,255,87,.1); border: 1px solid rgba(216,255,87,.3); color: #D8FF57; margin-bottom: 14px; }
.cj-card-sol h3 { color: #fff; }

/* ---- COMBOS ---- */
.cj-combos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 940px; margin: 8px auto 0; align-items: start; }
.cj-combo { position: relative; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 32px 28px; transition: transform .4s var(--cj-ease), box-shadow .35s ease; }
.cj-combo:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(0,0,0,.5); }
.cj-combo-destaque { border: 1.5px solid rgba(216,255,87,.5); background: linear-gradient(160deg, rgba(216,255,87,.07), rgba(255,255,255,.02)); box-shadow: 0 0 40px rgba(216,255,87,.08); }
.cj-combo-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #D8FF57; color: #000; font-size: .7rem; font-weight: 800; padding: 5px 16px; border-radius: 30px; white-space: nowrap; z-index: 2; }
.cj-combo-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; min-height: 52px; }
.cj-combo-price { font-size: 2.3rem; font-weight: 800; color: #D8FF57; line-height: 1; }
.cj-combo-price span { font-size: 1.1rem; }
.cj-combo-note { font-size: .8rem; color: #B8B8D1; margin: 6px 0 18px; }
.cj-combo-list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; }
.cj-combo-list li { position: relative; padding-left: 26px; font-size: .9rem; color: #C7C7DA; }
.cj-combo-list li::before { content: ""; position: absolute; left: 0; top: 2px; width: 16px; height: 16px; background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D8FF57' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }

/* ---- INCLUI ---- */
.cj-inc { background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 26px 24px; }
.cj-inc h3 { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; margin-bottom: 16px; }
.cj-inc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.cj-inc li { position: relative; padding-left: 22px; font-size: .88rem; color: #C7C7DA; }
.cj-inc li::before { content: ""; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: #D8FF57; }
.cj-inc-note { margin-top: 14px; font-size: .78rem; color: #8A8AA3; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.08); }

/* ---- PARA QUEM É / NÃO É ---- */
.cj-two { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cj-quem { background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 30px 28px; }
.cj-quem h2 { font-size: 1.3rem; margin-bottom: 18px; }
.cj-check, .cj-x { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.cj-check li, .cj-x li { position: relative; padding-left: 30px; color: #C7C7DA; font-size: .92rem; }
.cj-check li::before { content: ""; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D8FF57' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
.cj-x li::before { content: ""; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237C7C9C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E"); }
.cj-quem-nao { opacity: .92; }

/* ---- PORTFÓLIO BENTO ---- */
.cj-bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 16px; }
.cj-pf { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); background: #0a0a0a; text-decoration: none; display: block; transition: transform .4s var(--cj-ease), box-shadow .35s ease; }
.cj-pf:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(0,0,0,.5); }
.cj-pf-lg { grid-column: span 2; grid-row: span 2; }
.cj-pf-shot { position: absolute; inset: 0; overflow: hidden; }
.cj-pf-shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.6) 100%); }
.cj-pf-scroll img { width: 100%; height: auto; display: block; transform: translateY(0); transition: transform 5s cubic-bezier(.16,1,.3,1); }
.cj-pf-lg.cj-pf-scroll img, .cj-pf-lg .cj-pf-scroll img { }
.cj-pf:hover .cj-pf-scroll img { transform: translateY(calc(-100% + 220px)); }
.cj-pf-lg:hover .cj-pf-scroll img { transform: translateY(calc(-100% + 456px)); }
.cj-pf-contain { display: flex; align-items: center; justify-content: center; background: #0a0a0a; }
.cj-pf-contain img { width: 100%; height: 100%; object-fit: contain; transition: transform .6s var(--cj-ease); }
.cj-pf:hover .cj-pf-contain img { transform: scale(1.04); }
.cj-pf-cap { position: absolute; left: 0; bottom: 0; padding: 16px 18px; z-index: 2; }
.cj-pf-cap strong { display: block; font-size: 1rem; }
.cj-pf-cap span { font-size: .78rem; color: #B8B8D1; }

/* ---- PROCESSO ---- */
.cj-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cj-step { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 18px 20px; }
.cj-step-n { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #000; background: #D8FF57; }
.cj-step p { margin: 0; font-size: .9rem; color: #C7C7DA; }

/* ---- FORM ---- */
.cj-form-wrap { max-width: 760px; }
.cj-form-box { margin-top: 8px; }

/* ---- FAQ ---- */
.cj-faq { display: flex; flex-direction: column; gap: 12px; }
.cj-faq-item { background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; overflow: hidden; }
.cj-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 20px; background: none; border: 0; color: #fff; font-size: .98rem; font-weight: 600; text-align: left; cursor: pointer; font-family: inherit; }
.cj-faq-ic { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.cj-faq-ic::before, .cj-faq-ic::after { content: ""; position: absolute; background: #D8FF57; transition: transform .3s ease; }
.cj-faq-ic::before { left: 0; top: 6px; width: 14px; height: 2px; }
.cj-faq-ic::after { left: 6px; top: 0; width: 2px; height: 14px; }
.cj-faq-item.open .cj-faq-ic::after { transform: scaleY(0); }
.cj-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 20px; color: #C7C7DA; font-size: .9rem; line-height: 1.6; }
.cj-faq-item.open .cj-faq-a { max-height: 240px; padding: 0 20px 18px; }

/* ---- CHAMADA FINAL ---- */
.cj-final { padding: 80px 0; text-align: center; background: linear-gradient(180deg, rgba(216,255,87,.05), transparent); }
.cj-final h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); max-width: 720px; margin: 0 auto 14px; }
.cj-final p { color: #C7C7DA; max-width: 600px; margin: 0 auto 26px; }

/* ==========================================================
   MOVIMENTO — entrada de blocos (reusa .reveal do style.css)
   ========================================================== */
.cj-section .reveal, .cj-final .reveal, .cj-hero .reveal, .cj-hero .reveal-scale {
  transition-duration: 1.1s !important;
  transition-timing-function: var(--cj-ease) !important;
}

/* ==========================================================
   RESPONSIVO
   ========================================================== */
@media (max-width: 1024px) {
  .cj-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .cj-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .cj-hero-visual { min-height: 360px; }
}
@media (max-width: 768px) {
  .cj-grid-3, .cj-combos, .cj-two, .cj-steps, .cj-bento { grid-template-columns: 1fr; }
  .cj-grid-4 { grid-template-columns: 1fr; }
  .cj-bento { grid-auto-rows: 200px; }
  .cj-pf-lg { grid-column: span 1; grid-row: span 1; }
  .cj-pf:hover .cj-pf-scroll img, .cj-pf-lg:hover .cj-pf-scroll img { transform: none; }
  .cj-pf-scroll img { height: 100%; object-fit: cover; object-position: top; width: 100%; }
  .cj-hero { padding: 48px 0 40px; }
  .cj-hero-shot { position: relative; width: 100%; height: 220px; margin: 0 auto; }
  .cj-hero-shot-img { animation: none; }
  .cj-float { display: none; }
  .cj-float-cards { min-height: auto; }
  .cj-combo-name { min-height: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .cj-hero-shot-img, .cj-float { animation: none !important; }
  .cj-pf-scroll img { transition: none !important; }
}

/* ==========================================================
   RODADA 6 — tablets (769-900) e telas grandes
   ========================================================== */
@media (max-width: 1024px) {
  .cj-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .cj-bento { grid-template-columns: repeat(2, 1fr); }
  .cj-bento .cj-pf-lg { grid-column: span 2; grid-row: span 1; }
  .cj-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1700px) {
  .cj-hero-inner { gap: 72px; }
  .cj-bento { grid-auto-rows: 260px; }
}

/* ==========================================================
   RODADA 7 — correcao do HEADER da landing
   ========================================================== */
.cj-header-inner { min-height: 66px; height: auto; padding: 10px 0; flex-wrap: nowrap; }
.cj-logo { flex-shrink: 0; display: inline-flex; align-items: center; }
.cj-logo img { height: 36px !important; width: auto !important; max-width: 180px; display: block; }
.cj-nav { flex-wrap: nowrap; gap: 20px; }
.cj-nav a { white-space: nowrap; }
.cj-header-cta { flex-shrink: 0; }
.cj-header-cta .btn, .cj-back { white-space: nowrap; }

/* colapsa para o menu hamburguer um pouco mais cedo (notebooks estreitos) */
@media (max-width: 1080px) {
  .cj-nav, .cj-header-cta { display: none; }
  .cj-burger { display: flex; }
  .cj-mobile-menu { display: flex; }
}
@media (min-width: 1081px) {
  .cj-burger { display: none; }
  .cj-mobile-menu { display: none; }
}
