/* ============================================
   DESIGN TOKENS — VIP Flagship (modelo topo de linha)
   ============================================ */
:root {
  --bg: #050506;
  --bg-alt: #0b0b0d;
  --bg-card: #121214;
  --text-primary: #f7f7f8;
  --text-body: #a9a9ae;
  --text-muted: #737378;
  --border: rgba(255, 255, 255, 0.09);

  --violet: #8b5cf6;
  --cyan: #22d3ee;
  --gradient: linear-gradient(120deg, var(--violet), var(--cyan));

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1220px;
  --radius: 14px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text-body); font-family: var(--font-body);
  font-weight: 400; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-primary); font-weight: 500; line-height: 1.1; }
section { padding: 130px 0; position: relative; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Barra de rolagem sutil */
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-card); border-radius: 10px; border: 2px solid var(--bg); }

/* ---------- CURSOR CUSTOMIZADO ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 999;
  border-radius: 50%; transform: translate(-50%, -50%);
}
.cursor-dot { width: 6px; height: 6px; background: var(--cyan); transition: opacity 0.2s; }
.cursor-ring {
  width: 34px; height: 34px; border: 1px solid rgba(139,92,246,0.5);
  transition: transform 0.15s var(--ease), border-color 0.3s, width 0.3s, height 0.3s;
}
.cursor-ring.hovering { width: 56px; height: 56px; border-color: var(--cyan); background: rgba(34,211,238,0.06); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } body { cursor: auto; } }

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 17px 36px;
  font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  border-radius: 40px; cursor: none; transition: all 0.4s var(--ease); border: 1px solid var(--border);
  background: transparent; color: var(--text-primary); position: relative; overflow: hidden;
}
.btn-solid { background: var(--gradient); color: #050506; border: none; font-weight: 700; }
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(139,92,246,0.35); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

/* ---------- HEADER ---------- */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 28px 0; transition: all 0.4s var(--ease); }
header.scrolled { padding: 16px 0; background: rgba(5,5,6,0.75); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-display); font-size: 1.5rem; color: var(--text-primary); font-style: italic; }
.logo span { -webkit-background-clip: text; background-clip: text; color: transparent; background: var(--gradient); font-style: normal; font-weight: 700; }
.nav-links { display: flex; gap: 42px; align-items: center; }
.nav-links a:not(.btn) { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-body); transition: color 0.3s; }
.nav-links a:not(.btn):hover { color: var(--text-primary); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: none; background: none; border: none; }
.nav-toggle span { width: 24px; height: 1px; background: var(--text-primary); }

/* ---------- HERO / PARALLAX ---------- */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-layer { position: absolute; inset: -10%; pointer-events: none; will-change: transform; }
.layer-1 { background: radial-gradient(ellipse 45% 40% at 25% 30%, rgba(139,92,246,0.16), transparent 70%); }
.layer-2 { background: radial-gradient(ellipse 40% 35% at 80% 60%, rgba(34,211,238,0.12), transparent 70%); }
.layer-grid {
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 40%, black, transparent);
}
.hero-content { position: relative; z-index: 2; max-width: 880px; }
.hero .kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 30px; }
.hero .kicker .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.6rem); margin-bottom: 30px; }
.hero h1 em { font-style: italic; }
.hero p { font-size: 1.15rem; max-width: 560px; margin-bottom: 46px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 90px; }
.scroll-hint { position: absolute; bottom: 40px; left: 32px; display: flex; align-items: center; gap: 12px; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); z-index: 2; }
.scroll-hint .line { width: 40px; height: 1px; background: var(--text-muted); position: relative; overflow: hidden; }
.scroll-hint .line::after { content: ""; position: absolute; inset: 0; background: var(--gradient); animation: scrollline 2s infinite; }
@keyframes scrollline { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* ---------- MARQUEE ---------- */
.marquee-wrap { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 34px 0; overflow: hidden; }
.marquee { display: flex; gap: 70px; width: max-content; animation: marquee 26s linear infinite; }
.marquee span { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--text-muted); white-space: nowrap; display: flex; align-items: center; gap: 70px; }
.marquee span::after { content: "✦"; color: var(--violet); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- FADE ---------- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ---------- SECTION HEAD ---------- */
.section-head { max-width: 640px; margin-bottom: 80px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker-label { display: block; font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--cyan); font-weight: 600; margin-bottom: 18px; }
.section-head h2 { font-size: clamp(2.1rem, 4vw, 3rem); }

/* ---------- DIFERENCIAIS ---------- */
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.diff-card { background: var(--bg); padding: 44px 32px; transition: background 0.4s; }
.diff-card:hover { background: var(--bg-card); }
.diff-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--gradient); display: flex; align-items: center; justify-content: center; margin-bottom: 26px; }
.diff-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.diff-card p { font-size: 0.86rem; color: var(--text-muted); }

/* ---------- SHOWCASE (TILT CARDS) ---------- */
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; perspective: 1000px; }
.tilt-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  transition: transform 0.15s ease-out, border-color 0.3s;
}
.tilt-card:hover { border-color: rgba(139,92,246,0.4); }
.tilt-visual { aspect-ratio: 4/3; position: relative; display: flex; align-items: center; justify-content: center; background: linear-gradient(150deg, rgba(139,92,246,0.13), var(--bg-alt)); }
.tilt-visual svg { width: 24%; opacity: 0.5; color: var(--cyan); }
.tilt-body { padding: 26px; }
.tilt-body .tag { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--violet); margin-bottom: 10px; display: block; }
.tilt-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.tilt-body p { font-size: 0.86rem; color: var(--text-muted); }

/* ---------- PROCESSO (linha animada) ---------- */
.process { position: relative; }
.process-track { position: relative; padding-left: 46px; }
.process-track::before {
  content: ""; position: absolute; left: 10px; top: 8px; bottom: 8px; width: 1px; background: var(--border);
}
.process-track .fill-line {
  content: ""; position: absolute; left: 10px; top: 8px; width: 1px; background: var(--gradient);
  height: 0%; transition: height 1.2s var(--ease);
}
.process-item { position: relative; padding-bottom: 60px; }
.process-item:last-child { padding-bottom: 0; }
.process-item::before {
  content: ""; position: absolute; left: -46px; top: 4px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border); transition: all 0.4s;
}
.process-item.in-view::before { border-color: var(--cyan); box-shadow: 0 0 16px rgba(34,211,238,0.5); }
.process-item h3 { font-size: 1.2rem; margin-bottom: 10px; }
.process-item p { font-size: 0.92rem; max-width: 480px; }

/* ---------- STATS ANIMADAS ---------- */
.stats-band { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; padding: 80px 0; }
.stat-num { font-family: var(--font-display); font-size: 3rem; color: var(--text-primary); }
.stat-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 10px; }

/* ---------- DEPOIMENTOS (CARROSSEL) ---------- */
.testi-carousel { max-width: 760px; margin: 0 auto; text-align: center; position: relative; min-height: 220px; }
.testi-slide { display: none; }
.testi-slide.active { display: block; animation: fadeslide 0.6s var(--ease); }
@keyframes fadeslide { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.testi-slide blockquote { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 2rem); font-style: italic; color: var(--text-primary); margin-bottom: 30px; }
.testi-slide cite { font-style: normal; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.testi-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--border); cursor: none; transition: all 0.3s; padding: 0; }
.testi-dots button.active { background: var(--gradient); width: 26px; border-radius: 5px; }

/* ---------- FAQ (ACCORDION) ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 26px 4px; cursor: none; background: none; border: none; width: 100%; text-align: left; color: var(--text-primary); font-family: var(--font-display); font-size: 1.05rem; }
.faq-q .plus { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--text-muted); transition: all 0.3s var(--ease); }
.faq-q .plus::before { width: 100%; height: 1px; top: 50%; left: 0; }
.faq-q .plus::after { width: 1px; height: 100%; left: 50%; top: 0; }
.faq-item.open .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item.open .plus::before { background: var(--cyan); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 4px 26px; font-size: 0.92rem; max-width: 620px; }

/* ---------- CTA FINAL ---------- */
.cta-final { text-align: center; background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(139,92,246,0.12), transparent 70%); border-top: 1px solid var(--border); }
.cta-final h2 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 34px; }
.cta-final h2 em { font-style: italic; }

/* ---------- FOOTER ---------- */
footer { padding: 70px 0 36px; border-top: 1px solid var(--border); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; margin-bottom: 54px; }
.footer-links { display: flex; gap: 50px; flex-wrap: wrap; }
.footer-col h4 { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 0.88rem; color: var(--text-body); margin-bottom: 12px; transition: color 0.3s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.75rem; color: var(--text-muted); padding-top: 30px; border-top: 1px solid var(--border); }

/* ---------- RESPONSIVO ---------- */
@media (max-width: 980px) {
  .diff-grid, .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
}
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  .btn, .faq-q, .nav-toggle, .testi-dots button { cursor: pointer; }
  .nav-links { position: fixed; top: 0; right: 0; height: 100vh; width: min(300px, 82vw); background: var(--bg-alt); flex-direction: column; justify-content: center; align-items: flex-start; padding: 40px; gap: 28px; border-left: 1px solid var(--border); transform: translateX(100%); transition: transform 0.4s var(--ease); }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .diff-grid, .showcase-grid, .stats-grid { grid-template-columns: 1fr; }
  section { padding: 90px 0; }
  .footer-top { flex-direction: column; }
}
