/* Voti — Viktor-style: bold sans + gradient hero, pill nav/buttons.
   ============================================================
   THEME — swap this one block to change the whole palette.
   Three ready-made options are below; only one is active.
   ============================================================ */

:root {
  /* ---------- OPTION C — GRADIENT / SUNSET (active) ---------- */
  --accent:      #7c3aed;
  --accent-deep: #6d28d9;
  --accent-soft: #f3ecff;
  --accent-glow: #d8b4fe;
  --on-accent:   #ffffff;
  --btn-bg:      linear-gradient(95deg, #7c3aed 0%, #c026d3 50%, #fb7185 100%);
  --hero-grad:   linear-gradient(160deg, #f3ecff 0%, #ecd9ff 26%, #ffd6ec 58%, #ffe1c7 90%);

  /* ---------- OPTION B — YELLOW / AMBER (commented) ----------
  --accent:      #b45309;
  --accent-deep: #92400e;
  --accent-soft: #fef3c7;
  --accent-glow: #fcd34d;
  --on-accent:   #ffffff;
  --btn-bg:      var(--accent);
  --hero-grad:   linear-gradient(168deg, #fffdf4 0%, #fff3cf 38%, #ffe49c 72%, #ffd567 100%);
  ----------------------------------------------------------- */

  /* ---------- OPTION A — PURPLE (alternate) ----------
  --accent:      #6d28d9;
  --accent-deep: #5b21b6;
  --accent-soft: #f1eaff;
  --accent-glow: #c4b5fd;
  --on-accent:   #ffffff;
  --btn-bg:      var(--accent);
  --hero-grad:   linear-gradient(168deg, #f7f1ff 0%, #ece0ff 36%, #dcc3fb 70%, #c8a6f6 100%);
  -------------------------------------------------------------- */

  /* ---------- neutrals (shared by all options) ---------- */
  --paper:   #FBFAF8;
  --paper-2: #F4F1EC;
  --paper-3: #E8E3D8;
  --white:   #FFFFFF;

  --ink:      #16121f;
  --ink-2:    #221c30;
  --ink-soft: #4a4458;
  --muted:    #6c6678;
  --faint:    #9a93a8;

  --rule:      #ECE7E0;
  --rule-soft: #F3EFE9;

  --display: "Gabarito", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --body:    "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1140px;
  --radius: 18px;
  --radius-sm: 12px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 100px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---- Typography ---- */
.display {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--ink);
}
.display em { font-style: normal; color: var(--accent-deep); }
.grad-text {
  background: var(--btn-bg);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--accent-deep);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.num { font-feature-settings: "tnum" 1, "lnum" 1; }

/* ---- Buttons (pill) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--body); font-size: 15.5px; font-weight: 600; line-height: 1;
  padding: 15px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--btn-bg); color: var(--on-accent); box-shadow: 0 10px 24px -10px var(--accent); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -10px var(--accent); }
.btn-ghost { color: var(--ink); background: rgba(255,255,255,.7); border-color: rgba(34,28,48,.16); }
.btn-ghost:hover { background: #fff; border-color: rgba(34,28,48,.3); }
.btn .arr { transition: transform .16s ease; }
.btn:hover .arr { transform: translateX(2px); }
.textlink { font-size: 15px; font-weight: 600; color: var(--accent-deep); text-underline-offset: 5px; }
.textlink:hover { text-decoration: underline; }

/* ---- Floating pill nav ---- */
.nav { position: sticky; top: 14px; z-index: 60; padding: 0 16px; }
.nav-inner {
  max-width: var(--wrap); margin: 0 auto; height: 62px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 10px 0 24px;
  background: rgba(255,255,255,0.66); backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.7); border-radius: 999px;
  box-shadow: 0 10px 34px -16px rgba(40,20,80,0.35);
}
.brand { font-family: var(--display); font-weight: 800; font-size: 24px; letter-spacing: -0.03em; color: var(--ink); }
.brand span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a.navlink { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); }
.nav-links a.navlink:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.lang { display: inline-flex; border: 1px solid var(--rule); border-radius: 999px; overflow: hidden; font-size: 12px; background: #fff; }
.lang a { padding: 5px 11px; color: var(--muted); font-weight: 600; letter-spacing: .03em; }
.lang a.active { background: var(--ink); color: var(--paper); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; transition: .2s; border-radius: 2px; }

/* ---- Sections ---- */
.sec { padding: 96px 0; }
.sec.alt { background: var(--paper-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.sec-head { max-width: 780px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-num { display: inline-block; font-family: var(--display); font-weight: 700; font-size: 13px; color: var(--accent); letter-spacing: .1em; }
.sec-title { margin: 14px 0 0; font-size: clamp(32px, 4.6vw, 56px); }
.sec-sub { margin: 18px 0 0; font-size: 18px; color: var(--muted); max-width: 620px; }
.sec-head.center .sec-sub { margin-left: auto; margin-right: auto; }

/* ---- HERO (centered, gradient) ---- */
.hero { position: relative; padding: 150px 0 112px; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; background: var(--hero-grad); }
.hero-bg::after { /* soft glow */
  content: ""; position: absolute; left: 50%; top: -10%; width: 70vw; height: 60vh;
  transform: translateX(-50%); background: radial-gradient(closest-side, rgba(255,255,255,.55), transparent 70%);
}
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 130px;
  background: linear-gradient(transparent, var(--paper)); z-index: -1; }
.hero-inner { max-width: 940px; margin: 0 auto; }
.social-proof { display: inline-flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.chips { display: inline-flex; }
.chip { width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 1px solid rgba(34,28,48,.1);
  display: flex; align-items: center; justify-content: center; margin-left: -9px; box-shadow: 0 2px 6px rgba(40,20,80,.12); color: var(--accent); }
.chip:first-child { margin-left: 0; }
.hero h1 { margin: 26px auto 0; font-size: clamp(46px, 8.6vw, 100px); line-height: 0.98; letter-spacing: -0.035em; max-width: 15ch; }
.hero .sub { margin: 28px auto 0; max-width: 600px; font-size: clamp(17px, 2.1vw, 21px); color: var(--ink-soft); line-height: 1.5; }
.hero .sub b { color: var(--ink); font-weight: 600; }
.hero-cta { margin-top: 36px; display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; }
.badges { margin-top: 44px; display: flex; justify-content: center; flex-wrap: wrap; gap: 14px 30px; }
.badge { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.badge svg { color: var(--accent); flex: 0 0 auto; }

/* ---- Marquee (portfolio) ---- */
.marquee-sec { background: var(--paper); padding: 56px 0 60px; border-bottom: 1px solid var(--rule); }
.marquee-mask { margin-top: 30px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee { display: flex; gap: 46px; width: max-content; animation: marquee 54s linear infinite; }
.marquee-mask:hover .marquee { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.client { width: 244px; flex: 0 0 auto; }
.client .name { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; color: var(--ink-soft); line-height: 1.15; transition: color .16s; }
.client.it .name { font-style: italic; }
.client:hover .name { color: var(--accent-deep); }
.client .note { margin-top: 5px; font-size: 12.5px; color: var(--faint); }

/* ---- Feature cards ---- */
.cards { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius); padding: 30px; transition: transform .16s ease, box-shadow .16s ease; }
.card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(40,20,80,.3); }
.card .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.card h3 { margin: 20px 0 0; font-family: var(--display); font-size: 21px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.card p { margin: 10px 0 0; font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* ---- Steps ---- */
.steps { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius); padding: 30px; }
.step .n { font-family: var(--display); font-weight: 800; font-size: 30px; color: var(--on-accent); background: var(--btn-bg); width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.step h3 { margin: 18px 0 0; font-family: var(--display); font-size: 21px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.step p { margin: 9px 0 0; font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* ---- Industries list ---- */
.rows { margin-top: 48px; border-top: 1px solid var(--rule); }
.row { display: grid; grid-template-columns: 1fr 1.6fr; align-items: baseline; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--rule); transition: padding-left .16s ease; }
.row:hover { padding-left: 10px; }
.row .label { font-family: var(--display); font-size: 19px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.row .desc { font-size: 14px; color: var(--muted); }

/* ---- Deploy two-col ---- */
.duo { margin-top: 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.panel { border: 1px solid var(--rule); border-radius: var(--radius); padding: 34px; background: var(--white); }
.panel.fill { background: var(--btn-bg); color: var(--on-accent); border-color: transparent; box-shadow: 0 22px 50px -28px var(--accent); }
.panel .tag { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-deep); font-weight: 700; }
.panel.fill .tag { color: rgba(255,255,255,0.8); }
.panel h3 { margin: 10px 0 0; font-family: var(--display); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.panel ul { margin-top: 22px; display: grid; gap: 13px; }
.panel li { font-size: 14.5px; color: var(--ink-soft); padding-left: 26px; position: relative; line-height: 1.5; }
.panel.fill li { color: rgba(255,255,255,0.94); }
.panel li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.panel.fill li::before { color: #fff; }

/* ---- Pricing ---- */
.prices { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.price { border: 1px solid var(--rule); border-radius: var(--radius); padding: 32px; background: var(--white); display: flex; flex-direction: column; }
.price.feature { border-color: transparent; box-shadow: 0 24px 60px -30px var(--accent); position: relative; outline: 2px solid var(--accent); }
.price .pill { position: absolute; top: -12px; left: 32px; background: var(--btn-bg); color: var(--on-accent); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.price .pname { font-family: var(--display); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-deep); }
.price .amt { margin-top: 16px; font-family: var(--display); font-weight: 800; font-size: 48px; color: var(--ink); line-height: 1; letter-spacing: -0.03em; }
.price .amt small { font-family: var(--body); font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price .pdesc { margin-top: 14px; font-size: 14px; color: var(--muted); line-height: 1.55; min-height: 42px; }
.price ul { margin-top: 22px; display: grid; gap: 11px; flex: 1; }
.price li { font-size: 14px; color: var(--ink-soft); padding-left: 26px; position: relative; line-height: 1.45; }
.price li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.price .btn { margin-top: 26px; width: 100%; }
.price-note { margin-top: 26px; font-size: 13px; color: var(--muted); text-align: center; max-width: 740px; margin-left: auto; margin-right: auto; line-height: 1.65; }

/* ---- Founder ---- */
.founder { background: var(--paper-2); }
.founder-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: start; }
.founder h2 { margin: 16px 0 0; font-size: clamp(30px, 4.6vw, 50px); }
.founder p.lead { font-size: 19px; color: var(--ink-soft); line-height: 1.6; max-width: 620px; }
.founder .cta { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.facts { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--rule); display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fact .k { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-deep); font-weight: 700; }
.fact .v { margin-top: 7px; font-size: 14px; color: var(--ink-soft); line-height: 1.45; }

/* ---- FAQ ---- */
.faq { margin-top: 44px; border-top: 1px solid var(--rule); max-width: 880px; }
details { border-bottom: 1px solid var(--rule); }
summary { list-style: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; gap: 24px; font-family: var(--display); font-size: 19px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
summary::-webkit-details-marker { display: none; }
summary .plus { color: var(--accent); font-weight: 400; font-size: 26px; line-height: 1; transition: transform .2s; }
details[open] summary .plus { transform: rotate(45deg); }
details p { margin: 0 0 22px; font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 720px; }

/* ---- Final CTA ---- */
.final { text-align: center; position: relative; overflow: hidden; }
.final.alt { background: var(--paper-2); }
.final h2 { font-size: clamp(36px, 6vw, 70px); margin: 0; }
.final p { margin: 22px auto 0; max-width: 540px; color: var(--ink-soft); font-size: 18px; }
.final .cta { margin-top: 34px; display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ---- Footer ---- */
.foot { background: var(--ink); color: var(--paper); padding: 64px 0 40px; }
.foot a { color: rgba(251,250,248,0.62); }
.foot a:hover { color: var(--paper); }
.foot-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; }
.foot .brand { color: var(--paper); }
.foot .brand span { color: var(--accent-glow); }
.foot .tagline { margin-top: 16px; font-size: 14px; color: rgba(251,250,248,0.58); max-width: 320px; line-height: 1.6; }
.foot h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(251,250,248,0.42); margin: 0 0 16px; font-weight: 700; }
.foot ul { display: grid; gap: 11px; font-size: 14px; }
.foot-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(251,250,248,0.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 13px; color: rgba(251,250,248,0.5); }

/* ---- Responsive ---- */
@media (max-width: 920px) {
  .cards, .steps, .prices, .duo { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 720px) {
  .nav-links { display: none; position: absolute; top: 70px; left: 16px; right: 16px; flex-direction: column;
    align-items: flex-start; gap: 0; background: #fff; border: 1px solid var(--rule); border-radius: 18px; padding: 8px 20px 16px; box-shadow: 0 16px 40px -16px rgba(40,20,80,.3); }
  .nav-links.open { display: flex; }
  .nav-links a.navlink { padding: 13px 0; width: 100%; border-bottom: 1px solid var(--rule-soft); font-size: 16px; }
  .nav-links .lang { margin-top: 14px; }
  .nav-toggle { display: block; }
  .sec { padding: 68px 0; }
  .hero { padding: 120px 0 70px; }
  .row { grid-template-columns: 1fr; gap: 4px; }
  .row:hover { padding-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee { animation: none; }
  html { scroll-behavior: auto; }
  .card:hover, .btn-primary:hover { transform: none; }
}
