/* ============================================================
   AVALOON · essencial Sales Force — site institucional (DARK)
   Design tokens + componentes
   ============================================================ */

@font-face {
  font-family: "Kallisto";
  src: url("assets/Kallisto-Bold.otf") format("opentype");
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  /* Surfaces (dark, navy-tinted) */
  --bg: #090d13;
  --bg-elev: #0c111a;
  --surface: #121822;
  --surface-2: #18202c;
  --surface-3: #202b39;
  --border: rgba(255,255,255,.07);
  --border-strong: rgba(255,255,255,.13);

  /* Brand */
  --blue: #314657;
  --orange: #fe8026;
  --orange-600: #ec6f12;
  --orange-700: #cf5d08;
  --orange-soft: rgba(254,128,38,.12);
  --orange-line: rgba(254,128,38,.28);

  /* Dashboard accents (from product) */
  --teal: #2dd4bf;
  --sky: #4d8df0;
  --green: #28c76f;
  --red: #ef5350;
  --gold: #f5b942;

  /* Ink */
  --ink: #eef2f7;
  --ink-soft: #9aa9b8;
  --ink-mute: #61707f;

  --font-display: "Kallisto", "Montserrat", sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;

  --shadow-sm: 0 2px 12px rgba(0,0,0,.35);
  --shadow: 0 24px 60px -28px rgba(0,0,0,.7);
  --shadow-lg: 0 50px 110px -45px rgba(0,0,0,.85);

  --accent: var(--orange);
  --accent-soft: var(--orange-soft);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px; line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* subtle global dot field */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
}
main, .site-header, .site-footer { position: relative; z-index: 1; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section-pad { padding-block: clamp(72px, 11vw, 140px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 13.5px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--orange);
  background: var(--orange-soft); border: 1px solid var(--orange-line);
  padding: 9px 18px; border-radius: 999px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 3px var(--orange-soft); }
.eyebrow.center { justify-content: center; }
.h-sec { font-size: clamp(34px, 4.8vw, 56px); margin: 18px 0 0; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -.01em; color: var(--ink); }

.h-sec { margin: 14px 0 0; }
.lede { font-size: clamp(16.5px, 1.5vw, 19px); color: var(--ink-soft); max-width: 62ch; margin-top: 18px; }
.section-head { margin-bottom: clamp(40px, 6vw, 64px); max-width: 780px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lede { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --bg-btn: var(--orange);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 15.5px;
  padding: 15px 26px; border-radius: 999px; cursor: pointer; border: 0;
  background: var(--bg-btn); color: #fff;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .25s;
  box-shadow: 0 16px 34px -14px rgba(254,128,38,.6);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -16px rgba(254,128,38,.7); }
.btn:active { transform: translateY(0); }
.btn .ic { width: 18px; height: 18px; }
.btn-ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.6px var(--border-strong);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.6px var(--orange); background: var(--orange-soft); transform: translateY(-2px); }
.btn-lg { padding: 18px 34px; font-size: 16.5px; }

/* ---------- Header ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background .3s, box-shadow .3s, backdrop-filter .3s; }
.site-header .bar { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 38px; width: auto; }
.brand .word { font-family: var(--font-display); font-size: 27px; line-height: 1; color: #fff; margin-top: 2px; }
.brand .word .sf { font-family: var(--font-display); font-weight: 700; font-size: 12.5px; letter-spacing: .03em; text-transform: none; color: var(--orange); display: block; margin-top: 3px; }
.site-header.scrolled { background: rgba(9,13,19,.82); backdrop-filter: saturate(1.4) blur(16px); box-shadow: 0 1px 0 var(--border), 0 18px 40px -30px #000; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--ink-soft); font-weight: 600; font-size: 15px; transition: color .2s; position: relative; }
.nav a:hover { color: #fff; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--orange); border-radius: 2px; transition: right .25s; }
.nav-links a:hover::after { right: 0; }

.menu-btn { display: none; background: none; border: 0; cursor: pointer; color: var(--ink); padding: 8px; }
.menu-btn .ic { width: 26px; height: 26px; }

.mobile-nav { position: fixed; inset: 0; z-index: 200; background: var(--bg-elev); display: flex; flex-direction: column; padding: 28px var(--pad); transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.1,1); visibility: hidden; }
.mobile-nav.open { transform: translateX(0); visibility: visible; }
.mobile-nav .top { display: flex; justify-content: space-between; align-items: center; }
.mobile-nav .word { font-family: var(--font-display); font-size: 26px; color: #fff; }
.mobile-nav .close { background: none; border: 0; color: #fff; cursor: pointer; }
.mobile-nav .close .ic { width: 28px; height: 28px; }
.mobile-nav .links { display: flex; flex-direction: column; gap: 6px; margin-top: 48px; }
.mobile-nav .links a { color: #fff; font-family: var(--font-display); font-size: 30px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-nav .btn { margin-top: 32px; align-self: flex-start; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; isolation: isolate; overflow: hidden; color: #fff;
  background:
    radial-gradient(110% 80% at 86% -8%, rgba(254,128,38,.22), transparent 52%),
    radial-gradient(80% 70% at 8% 4%, rgba(49,70,87,.5), transparent 60%),
    linear-gradient(180deg, #0b1019 0%, var(--bg) 70%);
  padding-top: 156px; padding-bottom: clamp(70px, 9vw, 120px);
}
.hero-watermark { position: absolute; z-index: -1; pointer-events: none; right: -8%; top: 50%; transform: translateY(-50%); width: min(720px, 58vw); opacity: .06; }
.hero-grid {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .55;
  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: 46px 46px;
  -webkit-mask-image: radial-gradient(80% 60% at 30% 26%, #000, transparent 78%);
  mask-image: radial-gradient(80% 60% at 30% 26%, #000, transparent 78%);
}
.hero-inner { display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border-strong);
  padding: 8px 16px 8px 12px; border-radius: 999px; font-size: 13px; font-weight: 600; color: #fff;
  backdrop-filter: blur(6px);
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(254,128,38,.28); }
.hero-eyebrow b { color: var(--orange); }

.hero-title { font-size: clamp(38px, 5.4vw, 68px); line-height: 1.03; margin: 24px 0 0; letter-spacing: -.015em; color: #fff; }
.hero-title .accent { color: var(--orange); }
.hero-sub { font-size: clamp(16.5px, 1.6vw, 20px); color: var(--ink-soft); max-width: 56ch; margin-top: 22px; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.trust-line { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 30px; color: var(--ink-mute); font-size: 13.5px; }
.trust-line .ic { width: 17px; height: 17px; color: var(--orange); }
.trust-sep { width: 1px; height: 16px; background: var(--border-strong); }

/* ============================================================
   PRODUCT MOCKUP — shared visual language
   ============================================================ */
.glass {
  background: linear-gradient(180deg, var(--surface), var(--bg-elev));
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--border); background: var(--bg-elev); padding-block: 40px; }
.trust .label { display: flex; align-items: center; justify-content: center; gap: 14px; font-size: 19px; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: 28px; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px; }
.trust-logos .tlogo {
  font-family: var(--font-display); font-size: 19px; color: var(--ink);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 999px;
  background: linear-gradient(180deg, var(--surface), var(--bg-elev));
  border: 1px solid var(--border-strong);
  transition: transform .25s cubic-bezier(.2,.7,.3,1), border-color .25s, box-shadow .25s, color .25s;
}
.trust-logos .tlogo .ic { width: 20px; height: 20px; color: var(--orange); transition: transform .25s; }
.trust-logos .tlogo:hover { transform: translateY(-3px); border-color: var(--orange); box-shadow: 0 16px 34px -18px rgba(254,128,38,.5); }
.trust-logos .tlogo:hover .ic { transform: scale(1.12); }

/* ============================================================
   SOLUÇÕES
   ============================================================ */
.solutions { background: var(--bg-elev); }
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sol-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-elev));
  border-radius: var(--radius); padding: 30px 28px 28px;
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .3s;
}
.sol-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.sol-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.sol-card:hover::before { transform: scaleX(1); }
.sol-ico { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; background: var(--orange-soft); color: var(--orange); margin-bottom: 20px; transition: background .3s, color .3s, transform .3s; }
.sol-ico .ic { width: 26px; height: 26px; }
.sol-card:hover .sol-ico { background: var(--orange); color: #fff; transform: scale(1.04) rotate(-3deg); }
.sol-card h3 { font-size: 21px; margin: 0 0 9px; }
.sol-card p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.sol-card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; color: var(--orange); font-weight: 700; font-size: 13.5px; opacity: 0; transform: translateX(-6px); transition: opacity .3s, transform .3s; }
.sol-card .more .ic { width: 15px; height: 15px; }
.sol-card:hover .more { opacity: 1; transform: translateX(0); }
.sol-grid.layout-list { grid-template-columns: 1fr 1fr; }
.sol-grid.layout-list .sol-card { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; padding: 26px; }
.sol-grid.layout-list .sol-ico { margin-bottom: 0; }
.sol-grid.layout-list .more { grid-column: 2; }

/* ============================================================
   SOBRE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about-visual { position: relative; display: grid; place-items: center; padding: 20px; }
.about-disc { position: relative; width: min(420px, 80%); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 50% 40%, var(--surface-2), var(--bg-elev)); display: grid; place-items: center; box-shadow: inset 0 0 0 1px var(--border), var(--shadow); }
.about-disc::before, .about-disc::after { content: ""; position: absolute; border-radius: 50%; border: 1.5px dashed var(--border-strong); }
.about-disc::before { inset: -22px; }
.about-disc::after { inset: -52px; border-style: solid; border-color: var(--border); }
.about-disc img { width: 60%; filter: drop-shadow(0 20px 40px rgba(254,128,38,.3)); }
.about-orbit { position: absolute; inset: -52px; animation: spin 26s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .about-orbit { animation: none; } }
.about-orbit .node { position: absolute; top: 50%; left: 50%; width: 46px; height: 46px; margin: -23px; background: var(--surface-2); border-radius: 13px; display: grid; place-items: center; box-shadow: var(--shadow-sm); color: var(--orange); border: 1px solid var(--border-strong); transform: translateY(calc(-1 * min(210px,40vw))); }
.about-points { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.about-points li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--ink-soft); }
.about-points .tick { width: 24px; height: 24px; border-radius: 50%; background: var(--orange-soft); color: var(--orange); display: grid; place-items: center; flex: none; margin-top: 1px; }
.about-points .tick .ic { width: 14px; height: 14px; }
.about-points b { color: var(--ink); }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: linear-gradient(150deg, #0e1620 0%, var(--bg) 100%); color: #fff; position: relative; overflow: hidden; border-block: 1px solid var(--border); }
.stats .hero-watermark { opacity: .05; right: -10%; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 14px; }
.stat .num { font-family: var(--font-display); font-size: clamp(40px, 5vw, 60px); line-height: 1; color: #fff; }
.stat .num .suffix { color: var(--orange); }
.stat .cap { margin-top: 10px; color: var(--ink-soft); font-size: 14.5px; font-weight: 500; }
.stat + .stat { border-left: 1px solid var(--border); }

/* ============================================================
   BENEFÍCIOS
   ============================================================ */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.benefit { background: linear-gradient(180deg, var(--surface), var(--bg-elev)); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; display: flex; gap: 16px; align-items: flex-start; transition: transform .25s, box-shadow .25s, border-color .25s; }
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.benefit .b-ico { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--surface-3); color: var(--orange); transition: background .25s, color .25s; }
.benefit:hover .b-ico { background: var(--orange); color: #fff; }
.benefit .b-ico .ic { width: 22px; height: 22px; }
.benefit h3 { font-size: 18px; margin: 2px 0 6px; }
.benefit p { margin: 0; font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }

/* ============================================================
   FLUXO
   ============================================================ */
.flow { background: var(--bg-elev); overflow: hidden; }
.flow-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 20px; }
.flow-line { position: absolute; top: 46px; left: 8%; right: 8%; height: 3px; background: var(--border-strong); border-radius: 3px; z-index: 0; }
.flow-line .pulse { position: absolute; top: 50%; left: 0; width: 60px; height: 7px; margin-top: -3.5px; border-radius: 7px; background: linear-gradient(90deg, transparent, var(--orange), transparent); filter: blur(.5px); animation: flowpulse 5.5s linear infinite; }
@keyframes flowpulse { 0% { left: -8%; opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .flow-line .pulse { animation: none; opacity: 0; } }
.flow-step { position: relative; z-index: 1; text-align: center; }
.flow-node { width: 92px; height: 92px; margin: 0 auto 20px; border-radius: 24px; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; color: var(--ink-soft); position: relative; transition: transform .4s, box-shadow .4s, color .4s, border-color .4s; }
.flow-node .ic { width: 38px; height: 38px; }
.flow-node .step-n { position: absolute; top: -10px; right: -10px; width: 30px; height: 30px; border-radius: 50%; background: var(--surface-3); color: #fff; font-family: var(--font-display); font-size: 14px; display: grid; place-items: center; transition: background .4s; }
.flow-step.active .flow-node { transform: translateY(-6px) scale(1.04); box-shadow: var(--shadow); border-color: var(--orange); color: var(--orange); }
.flow-step.active .flow-node .step-n { background: var(--orange); }
.flow-step h3 { font-size: 18px; margin: 0 0 8px; }
.flow-step p { font-size: 14px; color: var(--ink-soft); margin: 0 auto; max-width: 24ch; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: linear-gradient(180deg, var(--surface), var(--bg-elev)); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column; gap: 18px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.quote .mark { font-family: var(--font-display); font-size: 50px; line-height: .6; color: var(--orange); height: 26px; }
.quote p { margin: 0; font-size: 15.5px; color: var(--ink); line-height: 1.65; flex: 1; }
.quote .who { display: flex; align-items: center; gap: 13px; }
.quote .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--surface-3); color: var(--orange); display: grid; place-items: center; font-family: var(--font-display); font-size: 17px; flex: none; border: 1px solid var(--border-strong); }
.quote .who .nm { font-weight: 700; color: var(--ink); font-size: 15px; }
.quote .who .rl { font-size: 13px; color: var(--ink-mute); }

/* ============================================================
   CTA
   ============================================================ */
.cta { padding-block: clamp(70px, 9vw, 120px); }
.cta-inner { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: radial-gradient(120% 130% at 88% 8%, rgba(254,128,38,.32), transparent 50%), linear-gradient(150deg, #11202b 0%, #0a0f17 100%); color: #fff; padding: clamp(44px, 7vw, 86px); text-align: center; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.cta-inner .hero-grid { opacity: .5; }
.cta-watermark { position: absolute; right: -4%; bottom: -30%; width: 360px; opacity: .08; pointer-events: none; }
.cta h2 { font-size: clamp(30px, 4.6vw, 52px); color: #fff; max-width: 18ch; margin: 0 auto; }
.cta p { color: var(--ink-soft); max-width: 56ch; margin: 20px auto 0; font-size: clamp(16px,1.5vw,18.5px); }
.cta .actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #070a0f; color: var(--ink-soft); padding-block: 64px 30px; border-top: 1px solid var(--border); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.foot-brand .word { font-family: var(--font-display); font-size: 28px; color: #fff; display: flex; align-items: center; gap: 12px; }
.foot-brand .word img { height: 40px; }
.foot-brand p { margin: 18px 0 0; font-size: 14.5px; max-width: 36ch; line-height: 1.6; }
.foot-col h4 { font-family: var(--font-body); font-weight: 700; color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 18px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.foot-col a { font-size: 14.5px; transition: color .2s; }
.foot-col a:hover { color: var(--orange); }
.foot-contact li { display: flex; align-items: center; gap: 11px; font-size: 14.5px; margin-bottom: 13px; }
.foot-contact .ic { width: 17px; height: 17px; color: var(--orange); flex: none; }
.foot-social { display: flex; gap: 12px; margin-top: 20px; }
.foot-social a { width: 40px; height: 40px; border-radius: 11px; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; color: #fff; transition: background .25s, transform .25s; }
.foot-social a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }
.foot-social .ic { width: 19px; height: 19px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--border); font-size: 13px; color: var(--ink-mute); }
.foot-bottom a:hover { color: #fff; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 30px; }
  .sol-grid, .benefits-grid, .quotes-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 0; }
  .stat:nth-child(3) { border-left: 0; }
  .stat { border-top: 1px solid var(--border); padding-block: 28px; }
  .stat:nth-child(-n+2) { border-top: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .flow-track { grid-template-columns: repeat(2, 1fr); gap: 40px 18px; }
  .flow-line { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 980px) {
  .nav-links, .nav .nav-cta { display: none; }
  .menu-btn { display: inline-flex; }
}
@media (max-width: 760px) {
  .sol-grid, .benefits-grid, .quotes-grid, .sol-grid.layout-list { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; }
}
@media (max-width: 460px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-left: 0 !important; }
}

/* ============================================================
   LARGE SCREENS — fill the viewport, evita o look "encolhido"
   ============================================================ */
@media (min-width: 1500px) {
  :root { --maxw: 1500px; --pad: clamp(48px, 5vw, 110px); }
  body { font-size: 18.5px; }
  .hero { padding-top: 184px; }
  .hero-title { font-size: clamp(62px, 4.7vw, 90px); }
  .h-sec { font-size: clamp(42px, 3.6vw, 64px); }
  .hero-sub, .lede { font-size: 20px; }
  .feature-text h3 { font-size: clamp(34px, 3.2vw, 46px); }
  .stat .num { font-size: clamp(52px, 5vw, 72px); }
}
@media (min-width: 2000px) {
  :root { --maxw: 1720px; }
  body { font-size: 20.5px; }
  .hero-title { font-size: clamp(78px, 4.6vw, 112px); }
  .h-sec { font-size: clamp(52px, 3.6vw, 76px); }
  .hero-sub, .lede { font-size: 22px; }
}
