/* MyEshop — Shopify landing page (matches homepage design system) */
:root {
  --ink: #0E1014;
  --ink-2: #1A1C22;
  --ink-3: #24272E;
  --paper: #F2EEE6;
  --paper-2: #E8E2D4;
  --pink-bg: #FBE2EA;
  --pink-bg-2: #F7D4E0;
  --pink-line: #EEC0D0;
  --cream-line: #C9C2B0;
  --gold: #C9A86A;
  --gold-2: #B89455;
  --pink: #E83C69;
  --pink-2: #FF5B83;
  --wpp: #25D366;
  --muted-dark: #8B8478;
  --muted-light: #6A6358;
  --display: "Bricolage Grotesque", "Times New Roman", serif;
  --sans: "Geist", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --gutter: clamp(20px, 4vw, 56px);
  --max: 1320px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--pink-bg); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
html, body { max-width: 100%; overflow-x: hidden; }
body { overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--pink); color: var(--paper); }

.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }

.sec-title {
  font-family: var(--display); font-weight: 500; font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1; letter-spacing: -0.028em; margin: 18px 0 0; max-width: 18ch; text-wrap: balance;
}
.sec-title em { font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-weight: 400; color: var(--pink); letter-spacing: -0.015em; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: -0.005em; border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn .arr { width: 14px; height: 14px; transition: transform .2s ease; }
.btn:hover .arr { transform: translate(2px, -2px); }
.btn .wpp { width: 18px; height: 18px; }
.btn--primary { background: var(--pink); color: var(--paper); }
.btn--primary:hover { background: var(--pink-2); }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-2); }
.btn--lg { padding: 19px 30px; font-size: 15px; }

/* NAV */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 16px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .24s ease, backdrop-filter .24s ease, border-color .24s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { background: rgba(14,16,20,.72); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); border-bottom-color: rgba(242,238,230,.06); }
.nav__logo img { height: 34px; width: auto; }
.nav__right { display: flex; align-items: center; gap: 22px; }
.nav__partner { height: 26px; width: auto; opacity: .9; }
.nav__partner--vtex { height: 22px; }
.nav__cta {
  background: var(--pink); color: var(--paper); border: none; padding: 11px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; flex-shrink: 0;
  transition: transform .16s ease, background .16s ease;
}
.nav__cta:hover { transform: translateY(-1px); background: var(--pink-2); }
.nav__cta .arr { width: 13px; height: 13px; transition: transform .2s ease; }
.nav__cta:hover .arr { transform: translate(2px,-2px); }

/* HERO */
.hero {
  background: var(--ink); color: var(--paper);
  width: 100%;
  height: clamp(540px, 56vw, 740px);
  padding: 116px var(--gutter) 56px;
  display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; background: url("assets/vtex-hero.png") center right/cover no-repeat; }
.hero__veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg, rgba(14,16,20,.95) 0%, rgba(14,16,20,.86) 32%, rgba(14,16,20,.5) 62%, rgba(14,16,20,.18) 100%),
    linear-gradient(to bottom, rgba(14,16,20,.4) 0%, rgba(14,16,20,.1) 40%, rgba(14,16,20,.55) 100%);
}
  background: linear-gradient(95deg, rgba(14,16,20,.93) 0%, rgba(14,16,20,.8) 38%, rgba(14,16,20,.46) 72%, rgba(14,16,20,.3) 100%),
    linear-gradient(to top, rgba(14,16,20,.55), transparent 55%);
}
.hero__grid { position: absolute; inset: 0; z-index: 2; pointer-events: none; background-image: linear-gradient(to right, rgba(242,238,230,.04) 1px, transparent 1px); background-size: calc(100%/12) 100%; }
.hero__inner { position: relative; z-index: 3; max-width: var(--max); margin: 0 auto; width: 100%; }
.hero .eyebrow { color: var(--gold); }
.hero__headline {
  font-family: var(--display); font-weight: 500; font-size: clamp(30px, 4.4vw, 66px);
  line-height: .98; letter-spacing: -0.028em; margin: 20px 0 22px; max-width: 17ch;
}
.hero__headline em { font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-weight: 400; color: var(--gold); }
.hero__lede { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.5; color: rgba(242,238,230,.8); max-width: 600px; }
.hero__cta-row { margin-top: 30px; }
.btn .wpp { color: currentColor; }
.hero__metrics { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(40px, 6vw, 72px); border-top: 1px solid rgba(242,238,230,.14); padding-top: 26px; }
.hmetric { padding-right: 24px; }
.hmetric + .hmetric { border-left: 1px solid rgba(242,238,230,.14); padding-left: 30px; }
.hmetric__n { display: block; font-family: var(--display); font-weight: 500; font-size: clamp(34px, 4vw, 56px); line-height: 1; letter-spacing: -0.025em; }
.hmetric__l { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted-dark); margin-top: 12px; line-height: 1.45; }

/* O QUE É A SHOPIFY */
.whatis { background: var(--ink); color: var(--paper); padding: clamp(64px, 8vw, 110px) 0; }
.whatis .eyebrow { color: var(--gold); }
.whatis__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.whatis__body p { font-size: 17px; line-height: 1.6; color: rgba(242,238,230,.78); margin: 0 0 30px; }
.whatis__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; border-top: 1px solid rgba(242,238,230,.14); padding-top: 26px; }
.whatis__facts > div { display: flex; flex-direction: column; gap: 8px; }
.whatis__fact-n { font-family: var(--display); font-weight: 500; font-size: clamp(24px, 2.3vw, 34px); letter-spacing: -0.02em; color: var(--gold); }
.whatis__facts span:last-child { font-family: var(--mono); font-size: 10.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-dark); line-height: 1.4; }

/* MODELOS / CANAIS */
.channels { background: var(--pink-bg); padding: clamp(72px, 9vw, 130px) 0; }
.channels__head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.channels__intro { font-size: 17px; line-height: 1.6; color: var(--muted-light); margin: 24px 0 0; }
.channels__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.channel { background: #fff; border: 1px solid var(--pink-line); border-radius: 12px; padding: 30px 26px; transition: transform .24s ease, border-color .24s ease; }
.channel:hover { transform: translateY(-3px); border-color: var(--pink); }
.channel__icon { display: inline-flex; width: 48px; height: 48px; border-radius: 10px; background: rgba(201,168,106,.14); align-items: center; justify-content: center; color: var(--gold-2); margin-bottom: 20px; }
.channel__icon svg { width: 24px; height: 24px; }
.channel h3 { font-family: var(--display); font-weight: 500; font-size: 19px; letter-spacing: -0.015em; margin: 0 0 8px; }
.channel p { font-size: 14px; line-height: 1.5; color: var(--muted-light); margin: 0; }

/* PAINS */
.pains { background: var(--pink-bg); padding: clamp(72px, 9vw, 130px) 0; }
.pains__head { max-width: 760px; margin-bottom: clamp(44px, 5vw, 70px); }
.pains__intro { font-size: 17px; line-height: 1.6; color: var(--muted-light); margin: 24px 0 0; }
.pains__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pain { background: #fff; border: 1px solid var(--pink-line); border-radius: 12px; padding: 30px 26px; }
.pain__x { display: inline-flex; width: 38px; height: 38px; border-radius: 50%; background: rgba(232,60,105,.1); position: relative; margin-bottom: 22px; }
.pain__x::before, .pain__x::after { content: ""; position: absolute; left: 50%; top: 50%; width: 15px; height: 2px; background: var(--pink); border-radius: 2px; }
.pain__x::before { transform: translate(-50%,-50%) rotate(45deg); }
.pain__x::after { transform: translate(-50%,-50%) rotate(-45deg); }
.pain h3 { font-family: var(--display); font-weight: 500; font-size: 20px; letter-spacing: -0.015em; margin: 0 0 6px; }
.pain p { font-size: 14px; color: var(--muted-light); margin: 0; line-height: 1.5; }

/* BENEFITS */
.benefits { position: relative; isolation: isolate; overflow: hidden; background: #0b0d10; color: var(--paper); padding: clamp(72px, 9vw, 130px) 0; }
.benefits::before { content: ""; position: absolute; inset: 0; z-index: -2; background: url("assets/bg-vtex.jpg") center/cover no-repeat; }
.benefits::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(11,13,16,.95) 0%, rgba(11,13,16,.78) 42%, rgba(11,13,16,.5) 100%), linear-gradient(to bottom, rgba(11,13,16,.45) 0%, rgba(11,13,16,.2) 40%, rgba(11,13,16,.8) 100%); }
.benefits .eyebrow { color: var(--gold); }
.benefits__head { margin-bottom: clamp(44px, 5vw, 72px); }
.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit { background: rgba(16,19,24,.62); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(242,238,230,.1); border-radius: 12px; padding: 34px; transition: border-color .24s ease, transform .24s ease, background .24s ease; }
.benefit:hover { border-color: rgba(232,60,105,.5); transform: translateY(-3px); background: rgba(16,19,24,.78); }
.benefit__icon { display: inline-flex; width: 52px; height: 52px; border-radius: 10px; background: rgba(201,168,106,.12); align-items: center; justify-content: center; color: var(--gold); margin-bottom: 22px; }
.benefit__icon svg { width: 26px; height: 26px; }
.benefit h3 { font-family: var(--display); font-weight: 500; font-size: 21px; letter-spacing: -0.015em; line-height: 1.1; margin: 0 0 10px; }
.benefit p { font-size: 14.5px; line-height: 1.55; color: rgba(242,238,230,.7); margin: 0; }

/* VÍDEO */
.vid { background: var(--ink); color: var(--paper); padding: clamp(72px, 9vw, 130px) 0; }
.vid .eyebrow { color: var(--gold); }
.vid__head { margin-bottom: clamp(32px, 4vw, 56px); }
.vid__frame { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; border: 1px solid rgba(242,238,230,.12); box-shadow: 0 30px 70px -34px rgba(0,0,0,.8); background: #000; }
.vid__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* STATS */
.stats { background: var(--pink-bg-2); padding: clamp(72px, 9vw, 130px) 0; border-block: 1px solid var(--pink-line); }
.stats__head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: clamp(44px, 5vw, 72px); }
.stats__intro { font-size: 17px; line-height: 1.6; color: var(--muted-light); margin: 0; }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--pink-line); }
.stat { padding: 40px 28px 0 0; }
.stat:last-child { padding-right: 0; }
.stat__n { font-family: var(--display); font-weight: 500; font-size: clamp(56px, 7vw, 100px); line-height: .95; letter-spacing: -0.035em; color: var(--ink); }
.stat__n span { color: var(--pink); }
.stat h3 { font-family: var(--display); font-weight: 500; font-size: 20px; letter-spacing: -0.015em; margin: 22px 0 8px; }
.stat p { font-size: 14.5px; line-height: 1.55; color: var(--muted-light); margin: 0; max-width: 30ch; }
.stats__cta { margin-top: clamp(40px, 5vw, 64px); }

/* SPECIALISTS */
.spec { position: relative; color: var(--paper); padding: clamp(80px, 10vw, 150px) 0; overflow: hidden; }
.spec__bg { position: absolute; inset: 0; background: url("assets/bg-cta-2.jpg") center/cover no-repeat; z-index: 0; }
.spec__veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(105deg, rgba(14,16,20,.92) 0%, rgba(14,16,20,.78) 50%, rgba(14,16,20,.6) 100%); }
.spec__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.spec .eyebrow { color: var(--gold); }
.spec__lede { font-size: 17px; line-height: 1.6; color: rgba(242,238,230,.82); margin: 24px 0 30px; max-width: 52ch; }
.spec__list { background: rgba(242,238,230,.05); border: 1px solid rgba(242,238,230,.12); border-radius: 14px; padding: 32px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.spec__list-label { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.spec__list ul { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 0; }
.spec__list li { font-size: 15px; padding: 14px 0 14px 30px; border-top: 1px solid rgba(242,238,230,.1); position: relative; }
.spec__list li:first-child { border-top: none; }
.spec__list li::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%) rotate(45deg); width: 8px; height: 8px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); }

/* PROCESS */
.proc { background: var(--pink-bg); padding: clamp(72px, 9vw, 130px) 0; }
.proc__head { margin-bottom: clamp(44px, 5vw, 72px); }
.proc__steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid var(--pink-line); }
.pstep { padding: 32px 22px 0 0; position: relative; }
.pstep::before { content: ""; position: absolute; top: -1px; left: 0; width: 28px; height: 2px; background: var(--pink); }
.pstep__n { font-family: var(--mono); font-size: 12px; color: var(--pink); display: block; margin-bottom: 22px; }
.pstep h3 { font-family: var(--display); font-weight: 500; font-size: 18px; letter-spacing: -0.015em; line-height: 1.1; margin: 0 0 10px; }
.pstep p { font-size: 14px; line-height: 1.5; color: var(--muted-light); margin: 0; }

/* FINAL CTA */
.final { position: relative; color: var(--paper); padding: clamp(90px, 11vw, 170px) 0; overflow: hidden; text-align: center; }
.final__bg { position: absolute; inset: 0; background: url("assets/bg-cta-2.jpg") center/cover no-repeat; z-index: 0; }
.final__veil { position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse 80% 90% at 50% 50%, rgba(14,16,20,.72) 0%, rgba(14,16,20,.9) 100%); }
.final__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.final .eyebrow { color: var(--gold); }
.final__title { font-family: var(--display); font-weight: 500; font-size: clamp(40px, 6vw, 92px); line-height: .96; letter-spacing: -0.03em; margin: 20px 0 0; max-width: 14ch; }
.final__title em { font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-weight: 400; color: var(--gold); }
.final__lede { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.55; color: rgba(242,238,230,.82); margin: 26px 0 0; max-width: 56ch; }
.final__cta { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 36px; }
.final__note { font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--muted-dark); }

/* FOOTER */
.footer { background: var(--ink); color: var(--paper); padding: 56px 0 36px; }
.footer__brand { display: flex; align-items: center; gap: 28px; padding-bottom: 36px; border-bottom: 1px solid rgba(242,238,230,.1); flex-wrap: wrap; }
.footer__logo { height: 30px; width: auto; }
.footer__partner { height: 26px; width: auto; opacity: .85; }
.footer__partner--vtex { height: 22px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 28px; font-family: var(--mono); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted-dark); }
.footer__bottom a { transition: color .18s ease; }
.footer__bottom a:hover { color: var(--gold); }

/* Floating WhatsApp */
.wpp-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--wpp); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); transition: transform .2s ease; }
.wpp-float:hover { transform: scale(1.06); }
.wpp-float svg { width: 30px; height: 30px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; } .d5 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
.reveal.shown { opacity: 1 !important; transform: none !important; transition: none !important; }

/* Responsive */
@media (max-width: 1024px) {
  .pains__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__head { grid-template-columns: 1fr; gap: 24px; }
  .spec__inner { grid-template-columns: 1fr; }
  .proc__steps { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .pstep { border-top: 1px solid var(--pink-line); padding-top: 28px; }
}
@media (max-width: 680px) {
  .nav__partner { display: none; }
  .hero__metrics { grid-template-columns: 1fr; }
  .hmetric + .hmetric { border-left: none; padding-left: 0; border-top: 1px solid rgba(242,238,230,.14); padding-top: 20px; margin-top: 20px; }
  .pains__grid, .benefits__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--pink-line); padding: 32px 0; }
  .stat:last-child { border-bottom: none; }
  .proc__steps { grid-template-columns: 1fr; }
}

/* ===== Vibrant pink sections (#E83C69) ===== */
.pains, .channels, .stats, .proc { background: #E83C69; }
.stats { border-block-color: rgba(255,255,255,.22); }
.pains .eyebrow, .channels .eyebrow, .stats .eyebrow, .proc .eyebrow { color: #fff; }
.pains .sec-title, .channels .sec-title, .stats .sec-title, .proc .sec-title { color: var(--paper); }
.pains .sec-title em, .channels .sec-title em, .stats .sec-title em, .proc .sec-title em { color: var(--ink); }
.pains__intro, .channels__intro, .stats__intro { color: rgba(255,255,255,.88); }

/* white cards still pop on the vibrant pink */
.pain, .channel { border-color: rgba(255,255,255,.0); box-shadow: 0 10px 30px -16px rgba(120,8,40,.55); }

/* STATS — text sits directly on pink, flip to light */
.stats__grid { border-top-color: rgba(255,255,255,.28); }
.stat__n span { color: var(--paper); }
.stat h3 { color: var(--paper); }
.stat p { color: rgba(255,255,255,.85); }

/* PROCESS — text sits directly on pink, flip to light */
.proc__steps { border-top-color: rgba(255,255,255,.28); }
.pstep::before { background: var(--gold); }
.pstep__n { color: var(--gold); }
.pstep h3 { color: var(--paper); }
.pstep p { color: rgba(255,255,255,.85); }

@media (max-width: 680px) {
  .stat { border-bottom-color: rgba(255,255,255,.22); }
  .pstep { border-top-color: rgba(255,255,255,.22); }
}
