/* =============================================
   BRIKY — LANDING PAGE STYLES
   Design: Dark luxury with warm amber accents
   Fonts: Fraunces (display) + DM Sans (body)
   ============================================= */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --bg: #07090f;
  --bg-2: #0d1220;
  --bg-3: #111827;
  --surface: #161d2e;
  --surface-2: #1e2840;
  --border: rgba(255,255,255,0.07);
  --border-2: rgba(255,255,255,0.12);

  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --amber-dim: rgba(245,158,11,0.15);
  --amber-glow: rgba(245,158,11,0.3);

  --blue: #3b82f6;
  --blue-dim: rgba(59,130,246,0.15);
  --purple: #a855f7;
  --green: #22c55e;

  --text: #f1f5f9;
  --text-2: #94a3b8;
  --text-3: #64748b;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 60px rgba(0,0,0,0.6);
  --shadow-amber: 0 0 40px rgba(245,158,11,0.2);

  --transition: 0.1s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-dim);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 640px;
  margin-bottom: 60px;
  line-height: 1.7;
}
.section-sub.mid{
  margin-top: 1rem;
  max-width: none;
  text-align: center;
}
.section-sub a {
  color: var(--amber);
  font-weight: 500;
  border-bottom: 1.5px none rgba(245,158,11,0.3);
  transition: border-color var(--transition);
}
.section { padding: 100px 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: #000 !important;
}
.btn-primary-acess {
  background: transparent;
  color: var(--text-2);
  border: 1.5px solid var(--border-2);
}
.btn-primary-acess:hover {
  border-color: var(--amber);
  color: #000;
  transform: translateY(-2px);
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--amber-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-2);
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}
.btn-nav {
  background: var(--amber);
  color: #000;
  margin-left: 34px;
  padding: 10px 22px;
}
.btn-nav:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
}
.btn-acess {
  background: transparent;
  color: var(--text-2);
  border: 1.5px solid var(--border-2);
  padding: 10px 22px;
  font-size: 0.875rem;
  margin-left: 12px;
}
.btn-acess:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--amber);
  border: 1.5px solid rgba(245,158,11,0.3);
  padding: 10px 20px;
  font-size: 0.875rem;
}
.btn-ghost:hover {
  background: var(--amber-dim);
  transform: translateY(-2px);
}
.btn-cta-big {
  background: var(--amber);
  color: #000;
  font-size: 1.1rem;
  padding: 18px 40px;
  border-radius: 100px;
  font-weight: 700;
  box-shadow: 0 8px 40px var(--amber-glow);
}
.btn-cta-big:hover {
  background: var(--amber-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 50px var(--amber-glow);
}
.btn-arrow { transition: transform var(--transition); }
.btn-cta-big:hover .btn-arrow { transform: translateX(4px); }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(7,9,15,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
}
.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: auto;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(7,9,15,0.98);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--text); }
.nav-mobile .btn { margin-top: 16px; justify-content: center; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}
.blob-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
  top: -200px;
  right: -200px;
}
.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--amber);
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-microcopy {
  font-size: 0.82rem;
  color: var(--text-3);
  font-weight: 500;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--amber);
  border-bottom: 2px solid var(--amber);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s infinite;
  opacity: 0.6;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

/* ---- PHONE MOCKUP ---- */
.hero-visual { display: flex; justify-content: center; position: relative; }
.phone-mockup { position: relative; display: flex; justify-content: center; }
.phone-frame {
  width: 280px;
  height: 580px;
  background: var(--surface);
  border-radius: 44px;
  border: 2px solid var(--border-2);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(245,158,11,0.08);
}
.phone-notch {
  width: 120px;
  height: 28px;
  background: var(--bg);
  border-radius: 0 0 20px 20px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.phone-screen {
  position: absolute;
  inset: 8px;
  border-radius: 38px;
  overflow: hidden;
  background: #fff;
}
.menu-preview {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fafafa;
}
.menu-header-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 36px 14px 12px;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.menu-logo-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  flex-shrink: 0;
}
.menu-header-text { flex: 1; }
.mht-name { height: 10px; background: #222; border-radius: 4px; width: 100px; margin-bottom: 5px; }
.mht-sub { height: 7px; background: #ccc; border-radius: 4px; width: 70px; }
.menu-cats {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: #fff;
}
.cat-tag {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1.5px solid #eee;
  color: #666;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.cat-tag.active {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #fff;
}
.menu-items { flex: 1; overflow: hidden; padding: 8px; display: flex; flex-direction: column; gap: 8px; }
.menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  border: 1px solid #eee;
}
.mi-img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e63946aa, #f4a26166);
  flex-shrink: 0;
}
.mi-img-2 { background: linear-gradient(135deg, #f4a261aa, #fbbf2466); }
.mi-img-3 { background: linear-gradient(135deg, #2a9d8faa, #52b78866); }
.mi-info { flex: 1; }
.mi-name { height: 8px; background: #222; border-radius: 3px; width: 80px; margin-bottom: 5px; }
.mi-desc { height: 6px; background: #ddd; border-radius: 3px; width: 100px; margin-bottom: 6px; }
.mi-price { font-size: 0.7rem; font-weight: 700; color: #f59e0b; font-family: 'DM Sans', sans-serif; }
.mi-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f59e0b;
  color: #fff;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  background: var(--amber);
  filter: blur(50px);
  opacity: 0.25;
  border-radius: 50%;
}
.qr-float {
  position: absolute;
  bottom: 40px;
  right: -70px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  color: var(--text-2);
  line-height: 1.3;
  box-shadow: var(--shadow);
  animation: float 3s ease-in-out infinite;
}
.qr-icon { font-size: 1.8rem; }
.qr-float strong { color: var(--text); display: block; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---- PROOF STRIP ---- */
.proof-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.proof-stat strong {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--amber);
}
.proof-stat span { font-size: 0.85rem; color: var(--text-2); font-weight: 500; }
.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border-2);
}

/* ---- SOBRE / STEPS ---- */
.sobre { background: var(--bg); }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 20px;
}
.step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
}
.step:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
  box-shadow: var(--shadow-amber);
}
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 20px;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.step-icon { font-size: 2rem;}
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.step p { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; }
.step-arrow {
  font-size: 1.5rem;
  color: var(--amber);
  opacity: 0.5;
  flex-shrink: 0;
  padding-top: 80px;
}

/* ---- BENEFÍCIOS ---- */
.beneficios { background: var(--bg-2); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.benefit-card:hover {
  border-color: rgba(245,158,11,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.bc-icon { font-size: 2rem; margin-bottom: 14px; }
.benefit-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.benefit-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; }

/* ---- RECURSOS ---- */
.recursos { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.feature-item:hover {
  border-color: rgba(245,158,11,0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.fi-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-dim);
  border-radius: var(--radius-sm);
}
.fi-content h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.fi-content p { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; }

/* ---- MODELOS ---- */
.modelos { background: var(--bg-2); }
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.model-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.model-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-2);
}
.model-preview {
  height: 190px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.mp-icon{width: 100%; height:100%;}

.mp-header { display: flex; align-items: center; gap: 10px; }
.mp-logo-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mp-lines { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.mp-lines div { height: 6px; background: rgba(255,255,255,0.2); border-radius: 3px; }
.mp-lines div:first-child { width: 80px; }
.mp-lines div:last-child { width: 50px; }
.mp-cats { display: flex; gap: 6px; }
.mp-cats span { font-size: 1.2rem; }
.mp-items { display: flex; flex-direction: column; gap: 8px; }
.mp-item { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); border-radius: 8px; padding: 8px; }
.mp-thumb { width: 32px; height: 32px; border-radius: 6px; flex-shrink: 0; }
.mp-item-lines { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.mp-item-lines div { height: 5px; background: rgba(255,255,255,0.15); border-radius: 3px; }
.mp-item-lines div:first-child { width: 90px; }
.mp-item-lines div:last-child { width: 60px; }

.model-info { padding: 24px; }
.model-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  background: var(--amber-dim);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.model-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.model-info p { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; margin-bottom: 16px; }

/* ---- PAINEL DEMO ---- */
.painel { background: var(--bg); }
.panel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.panel-row:last-child { margin-bottom: 0; }
.panel-row.reverse { direction: rtl; }
.panel-row.reverse > * { direction: ltr; }
.panel-media { display: flex; justify-content: center; }
.panel-screen {
  width: 100%;
  max-width: 480px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ps-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.ps-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.ps-dot.red { background: #ef4444; }
.ps-dot.yellow { background: #f59e0b; }
.ps-dot.green { background: #22c55e; }
.ps-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-3);
  margin-left: 8px;
}
.ps-content {
  display: flex;
  height: 300px;
}
.ps-sidebar {
  width: 110px;
  border-right: 1px solid var(--border);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-3);
  flex-shrink: 0;
}
.ps-sitem {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-3);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.ps-sitem.active {
  background: var(--amber-dim);
  color: var(--amber);
}
.ps-main { flex: 1; padding: 12px; overflow: hidden; }
.ps-toolbar { display: flex; gap: 8px; margin-bottom: 10px; align-items: center; }
.ps-search {
  flex: 1;
  height: 28px;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 6px;
}
.ps-addbtn {
  background: var(--amber);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}
.ps-table { font-size: 0.65rem; }
.ps-thead {
  display: grid;
  grid-template-columns: 150px 75px 50px 30px;
  gap: 6px;
  padding: 6px 6px;
  color: var(--text-3);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.ps-trow {
  display: grid;
  grid-template-columns: 28px 1fr 70px 55px 40px;
  gap: 6px;
  align-items: center;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s;
}
.ps-trow:hover { background: var(--surface-2); }
.ps-trow.highlight { background: rgba(245,158,11,0.06); }
.ps-timg {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  background: linear-gradient(135deg, #e6394666, #f4a26166);
}
.ps-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  display: inline-block;
}
.ps-badge.on { background: rgba(34,197,94,0.15); color: #22c55e; }
.ps-badge.off { background: rgba(148,163,184,0.1); color: var(--text-3); }
.ps-acts { color: var(--text-3); font-size: 0.7rem; cursor: pointer; }

/* Categories panel */
.ps-cats-list { display: flex; flex-direction: column; gap: 4px; }
.ps-cat-item {
  display: grid;
  grid-template-columns: 0 1fr 80px 60px 22px 22px;
  align-items: center;
  gap: 6px;
  padding: 8px 6px;
  border-radius: 8px;
  font-size: 0.65rem;
  transition: background 0.2s;
}
.ps-cat-item:hover { background: var(--surface-2); }
.ps-cat-item.drag-hint {
  background: var(--amber-dim);
  border: 1px dashed rgba(245,158,11,0.3);
}
.ps-drag { color: var(--text-3); cursor: grab; font-size: 0.8rem; }
.ps-cat-icon { font-size: 1rem; }
.ps-cat-name { font-weight: 600; color: var(--text); }
.ps-cat-count { color: var(--text-3); }
.cat-add {
  margin-top: 8px;
  text-align: center;
  padding: 8px;
  font-size: 0.65rem;
}

/* Metrics panel */
.metrics-main { display: flex; flex-direction: column; gap: 12px; }
.ps-badge-metrics {
  margin-left: 3px;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 15px;
  border-radius: 100px;
  border: 1px solid rgba(245,158,11,0.3);
  width: max-content;
  color: var(--amber);
}
.ps-badge-metrics.site {
  border-color: var(--amber);
  background: rgba(245,158,11,0.15);
}
.ps-badge-metrics.qr-code {
  color: var(--blue);
  border-color:  var(--blue);
  background: rgba(59, 130, 246, 0.15);
}
.metrics-cards {display: flex; flex-direction:column; gap: 3px; }
.mc {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  gap: 2px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.mc div {
  display: flex;
  justify-content: space-between;
}
.mc .mc-add{
  align-self: center;
  text-align: center;
  background: var(--amber);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 4px;
  height: max-content;
  border-radius: 6px;
}
.mc div:first-child { display: flex; flex-direction: column; }
.mc-val {
  font-family: 'Barlow', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}
.mc-label { font-size: 0.6rem; color: var(--text-3); font-weight: 500; }
.metrics-chart { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 12px; flex: 1; }
.chart-title { font-size: 0.65rem; font-weight: 600; color: var(--text-3); margin-bottom: 12px; }
.chart-bars { display: flex; gap: 6px; align-items: flex-end; height: 80px; }
.cb { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; height: 100%; justify-content: flex-end; }
.cb-bar {
  width: 100%;
  background: rgba(245,158,11,0.3);
  border-radius: 4px 4px 0 0;
  transition: background 0.3s;
}
.cb-bar.active { background: var(--amber); }
.cb span { font-size: 0.55rem; color: var(--text-3); }

.panel-text { padding: 20px 0; }
.pt-num {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 12px;
}
.panel-text h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}
.panel-text p { font-size: 1rem; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.pt-list { display: flex; flex-direction: column; gap: 10px; }
.pt-list li { font-size: 0.9rem; color: var(--text-2); font-weight: 500; }

/* ---- CTA MID ---- */
.cta-mid {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-mid-bg { position: absolute; inset: 0; pointer-events: none; }
.ctab-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}
.ctab-1 {
  width: 600px;
  height: 300px;
  background: var(--amber);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ctab-2 {
  width: 400px;
  height: 400px;
  background: #3b82f6;
  bottom: -100px;
  right: -50px;
}
.cta-mid-inner {
  position: relative;
  text-align: center;
  z-index: 1;
}
.cta-mid-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--amber);
  background: var(--amber-dim);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.cta-mid-inner h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.cta-mid-inner p {
  font-size: 1.1rem;
  color: var(--text-2);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-sub { font-size: 0.82rem; color: var(--text-3); margin-top: 16px; font-weight: 500; }

/* ---- PLANOS ---- */
.planos { background: var(--bg); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan-card.featured {
  background: var(--surface-2);
  border-color: var(--amber);
  transform: scale(1.03);
}
.plan-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-popular-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(251,191,36,0.06));
  pointer-events: none;
  z-index: -1;
}
.plan-badge-top {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.plan-badge-top.basic { background: rgba(34,197,94,0.1); color: #22c55e; }
.plan-badge-top.featured-badge { background: var(--amber); color: #000; }
.plan-badge-top.premium { background: rgba(168,85,247,0.15); color: #a855f7; }
.plan-icon { font-size: 1.5rem; margin-bottom: 8px; }
.plan-name {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.plan-old-price {
  font-size: 0.9rem;
  color: var(--text-3);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 8px;
  line-height: 1;
}
.plan-currency { font-size: 1rem; font-weight: 600; color: var(--text-2); padding-bottom: 4px; }
.plan-amount {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.plan-amount small { font-size: 1.4rem; }
.plan-period { font-size: 0.9rem; color: var(--text-3); padding-bottom: 6px; }
.plan-discount-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #000;
  background: var(--amber);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.plan-desc { font-size: 0.875rem; color: var(--text-2); line-height: 1.6;}
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.plan-features li { font-size: 0.875rem; font-weight: 500; }
.pf-yes { color: var(--text-2); }
.pf-no { color: var(--text-3); }
.btn-plan {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  margin: 10px 0 24px 0;
}
.basic-btn {
  background: var(--surface-2);
  border: 1.5px solid var(--border-2);
  color: var(--text);
}
.basic-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}
.featured-btn {
  background: var(--amber);
  color: #000;
}
.featured-btn:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--amber-glow);
}
.premium-btn {
  background: rgba(168,85,247,0.15);
  border: 1.5px solid rgba(168,85,247,0.3);
  color: #a855f7;
}
.premium-btn:hover {
  background: rgba(168,85,247,0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168,85,247,0.2);
}
.plan-guarantee {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 12px;
}
.plans-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--text-3);
}
.plans-note a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }

/* ---- DEPOIMENTOS ---- */
.depoimentos { background: var(--bg-2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: var(--shadow); }
.t-stars { font-size: 1rem; margin-bottom: 16px; }
.testimonial p { font-size: 0.95rem; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: 0.9rem; color: var(--text); margin-bottom: 2px; }
.t-author span { font-size: 0.78rem; color: var(--text-3); }

/* ---- FAQ ---- */
.faq { background: var(--bg); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(245,158,11,0.3); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
}
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 300;
  color: var(--amber);
  transition: var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }


/* ---- FOOTER ---- */
.footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 14px; display: inline-block; }
.footer-brand p { font-size: 0.875rem; color: var(--text-3); line-height: 1.6; margin-bottom: 20px; max-width: 260px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--amber); transform: translateY(-2px); }
.footer-links h4 { font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: var(--text-3); transition: color var(--transition); }
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.reveal-right {
  transform: translateX(40px);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .models-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-4px); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav, .btn-acess { display: none; }
  .nav-burger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 1; }
  .hero-visual { order: 2; }
  .hero-ctas { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-badge { justify-content: center; }
  .qr-float { display: none; }
  .phone-frame { width: 220px; height: 460px; }

  .steps { flex-direction: column; }
  .step-arrow { display: none; }

  .benefits-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .panel-row { grid-template-columns: 1fr; gap: 32px; }
  .panel-row.reverse { direction: ltr; }

  .proof-inner { gap: 28px; }
  .proof-divider { display: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { justify-content: center; text-align: center; }

  .cta-final-seals { gap: 16px; }
  .plans-grid { max-width: 100%; }
  
}

@media (max-width: 480px) {
  .section { padding: 70px 0; }
  .hero { padding: 100px 0 60px; }
  .hero-headline { font-size: 2rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-cta-big { font-size: 1rem; padding: 16px 28px; }
  .panel-media{display:none;}
}



/* ---- CARROSSEL MOBILE ---- */
@media (max-width: 740px) {
  .plans-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    scrollbar-width: none;
  }
  .plans-grid::-webkit-scrollbar { display: none; }

  .plan-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    max-width: 340px;
  }
  .plan-card.featured {
    flex: 0 0 88%;
    transform: none;
  }
  .plan-card.featured:hover { transform: none; }

  .plans-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  .plans-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: var(--transition);
  }
  .plans-dot.active {
    background: var(--amber);
    width: 22px;
    border-radius: 100px;
  }
}

@media (min-width: 741px) {
  .plans-dots { display: none; } /* dots só aparecem no mobile */
}