/* ===== Tokens ===== */
:root {
  --ink: #0c0f17;
  --ink-2: #131826;
  --ink-3: #1b2233;
  --text: #1a1f2e;
  --muted: #5b6577;
  --muted-light: #9aa6bd;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --line: #e6e9f0;

  --accent: #4f7cff;
  --accent-2: #7c5cff;
  --grad: linear-gradient(100deg, #6a8bff 0%, #8b5cff 55%, #b06bff 100%);

  --nimo: #b35447;
  --nimo-2: #ffa17f;
  --nimer: #6fae45;
  --nimer-2: #c28f00;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -28px rgba(18, 27, 56, .35);
  --maxw: 1140px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: "Sora", var(--font);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; font-family: var(--display); font-weight: 600; font-size: .95rem;
  padding: .85rem 1.5rem; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 12px 30px -10px rgba(108, 92, 255, .6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(108, 92, 255, .7); }
.btn-line { border-color: var(--line); color: var(--text); background: #fff; }
.btn-line:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-ghost { color: var(--text); border-color: var(--line); padding: .6rem 1.1rem; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 26px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a { font-weight: 500; color: var(--muted); font-size: .95rem; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-links a.btn-ghost { color: var(--text); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 75% -10%, rgba(124,92,255,.45), transparent 60%),
    radial-gradient(50% 70% at 10% 110%, rgba(79,124,255,.35), transparent 60%);
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 80%);
}
.hero-inner { position: relative; padding: 120px 24px 110px; max-width: 920px; }
.eyebrow { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; color: var(--muted-light); }
.hero h1 { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 6vw, 4.3rem); line-height: 1.05; letter-spacing: -.03em; margin: 1.1rem 0 1.4rem; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.25rem); color: #c7d0e4; max-width: 640px; }
.hero-sub strong { color: #fff; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin: 2.2rem 0 3rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.8rem; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--display); font-size: 1.6rem; font-weight: 700; }
.hero-stats span { color: var(--muted-light); font-size: .9rem; }

/* ===== Strip ===== */
.strip { background: var(--ink-2); color: var(--muted-light); padding: 18px 0; text-align: center; }
.strip p { font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; font-family: var(--display); }

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--ink); color: #fff; }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.kicker { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; color: var(--accent); }
.kicker--light { color: #a99bff; }
.section-head h2 { font-family: var(--display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1.12; letter-spacing: -.02em; margin: .8rem 0 1rem; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.section--dark .section-head p { color: #b9c2d8; }

/* ===== Produtos ===== */
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.product {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 38px 34px; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; }
.product--nimo::before { background: linear-gradient(90deg, var(--nimo), var(--nimo-2)); }
.product--nimer::before { background: linear-gradient(90deg, var(--nimer), var(--nimer-2)); }
.product--nimo:hover { border-color: var(--nimo-2); }
.product--nimer:hover { border-color: var(--nimer); }
.product-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.product-logo { font-family: var(--display); font-weight: 800; font-size: 1.7rem; letter-spacing: -.03em; }
.product--nimo .product-logo { color: var(--nimo); }
.product--nimer .product-logo { color: var(--nimer); }
.product-tag { font-size: .76rem; font-weight: 600; padding: .35rem .8rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; }
.product--nimo .product-tag { background: rgba(179,84,71,.1); color: var(--nimo); }
.product--nimer .product-tag { background: rgba(111,174,69,.14); color: #4d7a2f; }
.product h3 { font-family: var(--display); font-weight: 600; font-size: 1.3rem; line-height: 1.25; margin-bottom: .7rem; }
.product > p { color: var(--muted); margin-bottom: 1.3rem; }
.product-feats { list-style: none; margin-bottom: 1.6rem; }
.product-feats li { position: relative; padding-left: 1.6rem; margin-bottom: .55rem; color: var(--text); font-size: .95rem; }
.product-feats li::before { content: "✓"; position: absolute; left: 0; font-weight: 700; }
.product--nimo .product-feats li::before { color: var(--nimo); }
.product--nimer .product-feats li::before { color: var(--nimer); }
.product-link { font-family: var(--display); font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; transition: gap .2s; }
.product--nimo .product-link { color: var(--nimo); }
.product--nimer .product-link { color: #4d7a2f; }
.product-link:hover { gap: .75rem; }

/* ===== Parceria ===== */
.duo { display: flex; align-items: stretch; justify-content: center; gap: 1.5rem; max-width: 880px; margin: 0 auto 70px; }
.duo-card { flex: 1; background: var(--ink-2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 30px; }
.duo-card--accent { background: linear-gradient(160deg, rgba(124,92,255,.18), rgba(79,124,255,.08)); border-color: rgba(124,92,255,.4); }
.duo-label { font-family: var(--display); font-size: .76rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: #a99bff; }
.duo-card h4 { font-family: var(--display); font-size: 1.3rem; font-weight: 600; margin: .5rem 0 1rem; color: #fff; }
.duo-card ul { list-style: none; }
.duo-card li { position: relative; padding-left: 1.4rem; margin-bottom: .55rem; color: #c7d0e4; font-size: .95rem; }
.duo-card li::before { content: "›"; position: absolute; left: 0; color: #a99bff; font-weight: 700; }
.duo-plus { display: flex; align-items: center; font-family: var(--display); font-size: 2.2rem; font-weight: 300; color: #a99bff; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { padding: 26px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); background: rgba(255,255,255,.02); }
.step-num { font-family: var(--display); font-size: .95rem; font-weight: 700; color: #a99bff; }
.step h5 { font-family: var(--display); font-size: 1.05rem; font-weight: 600; color: #fff; margin: .6rem 0 .5rem; }
.step p { color: #aeb8d0; font-size: .9rem; }

/* ===== Capacidades ===== */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cap { padding: 32px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .2s, box-shadow .2s; }
.cap:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cap-ic { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: var(--bg-soft); color: var(--accent); margin-bottom: 1rem; }
.cap-ic svg { width: 26px; height: 26px; }
.cap h4 { font-family: var(--display); font-size: 1.15rem; font-weight: 600; margin-bottom: .5rem; }
.cap p { color: var(--muted); font-size: .95rem; }

/* ===== Sobre ===== */
.about { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-family: var(--display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.5rem); letter-spacing: -.02em; margin: .8rem 0 1.2rem; }
.about-text p { color: var(--muted); margin-bottom: 1rem; font-size: 1.05rem; }
.about-points { list-style: none; display: grid; gap: 14px; }
.about-points li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; font-size: .98rem; }
.about-points strong { font-family: var(--display); }

/* ===== CTA / contato ===== */
.section--cta { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.section--cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 70% at 80% 0%, rgba(124,92,255,.3), transparent 60%); }
.cta-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.cta-text h2 { font-family: var(--display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -.02em; margin: .8rem 0 1rem; }
.cta-text > p { color: #b9c2d8; font-size: 1.08rem; max-width: 420px; }
.cta-contacts { display: flex; flex-direction: column; gap: .6rem; margin-top: 2rem; }
.cta-contacts a, .cta-contacts span { color: #c7d0e4; font-size: .98rem; }
.cta-contacts a:hover { color: #fff; }

.cta-form { background: #fff; color: var(--text); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--display); font-weight: 600; font-size: .85rem; margin-bottom: .4rem; }
.field input, .field textarea {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .95rem; color: var(--text); background: var(--bg-soft);
  transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
.field textarea { resize: vertical; }
.form-note { margin-top: 1rem; color: #2e8b57; font-weight: 600; font-size: .92rem; }
.recaptcha-terms { margin-top: 1rem; font-size: .72rem; line-height: 1.5; color: var(--muted); }
.recaptcha-terms a { color: var(--muted); text-decoration: underline; }
.recaptcha-terms a:hover { color: var(--accent); }

/* Oculta o selo flutuante do reCAPTCHA (permitido desde que o aviso acima esteja visível). */
.grecaptcha-badge { visibility: hidden; }

/* ===== Footer ===== */
.site-footer { background: var(--ink-2); color: #c7d0e4; padding: 60px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; }
.footer-logo { height: 30px; width: auto; align-self: flex-start; }
.footer-brand p { color: var(--muted-light); margin-top: .9rem; max-width: 260px; font-size: .92rem; }
.footer-col h6 { font-family: var(--display); color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--muted-light); margin-bottom: .6rem; font-size: .92rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding-top: 24px; color: var(--muted-light); font-size: .85rem; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 24px 20px;
    transform: translateY(-130%); transition: transform .3s ease; align-items: stretch;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-links a.btn-ghost { border: 1px solid var(--line); text-align: center; margin-top: 12px; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .product-grid, .cap-grid, .steps { grid-template-columns: 1fr; }
  .duo { flex-direction: column; }
  .duo-plus { justify-content: center; }
  .about, .cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .section { padding: 70px 0; }
  .hero-inner { padding: 80px 24px 70px; }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .hero-stats { gap: 1.5rem; }
}
