/* =====================================================
   EVERTON — Vitrine / catálogo de sites
   Tema escuro premium (chrome neutro, thumbnails coloridos brilham)
   ===================================================== */

:root {
  --bg:      #0d0d11;
  --bg-2:    #141419;
  --bg-3:    #1b1b22;
  --bg-4:    #24242e;
  --white:   #f3f1ee;
  --gray:    #9c9ba6;
  --gray-2:  #63626d;
  --accent:  #ff5e3a;
  --accent-2:#ff3d84;
  --line:    rgba(243, 241, 238, .1);
  --line-soft: rgba(243, 241, 238, .06);

  --grad: linear-gradient(100deg, #ff7a3d 0%, #ff3d84 100%);

  --font-display: 'Syne', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;

  --container: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--bg); color: var(--white); line-height: 1.65; overflow-x: hidden; overflow-x: clip; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 26px; }

/* grão sutil */
body::before { content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .03; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ---------- abertura (intro da vitrine) ---------- */
.intro { display: none; }
html.play-intro .intro {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; height: 100dvh;
  z-index: 10000; background: var(--bg); overflow: hidden;
  animation: intro-out .6s var(--ease) 1s forwards;
}
html.play-intro .intro::before {
  content: ""; position: absolute; width: 72vw; max-width: 520px; aspect-ratio: 1; pointer-events: none;
  background: radial-gradient(circle, rgba(255,94,58,.2), rgba(255,61,132,.12) 42%, transparent 70%);
  filter: blur(12px);
  animation: intro-glow 1.4s var(--ease) forwards;
}
.intro__logo { position: relative; font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 9vw, 4.6rem); letter-spacing: 2px; color: var(--white); opacity: 0; }
html.play-intro .intro__logo { animation: intro-logo .65s var(--ease) .1s forwards; }
.intro__dot { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.intro__line { position: relative; width: 0; height: 3px; border-radius: 3px; background: var(--grad); margin-top: 20px; }
html.play-intro .intro__line { animation: intro-line .55s var(--ease) .5s forwards; }
@keyframes intro-logo { from { opacity: 0; transform: translateY(10px) scale(.94); filter: blur(4px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes intro-line { from { width: 0; opacity: .3; } to { width: min(240px, 62vw); opacity: 1; } }
@keyframes intro-glow { from { opacity: 0; transform: scale(.8); } 60% { opacity: 1; } to { opacity: .7; transform: scale(1); } }
@keyframes intro-out { to { transform: translateY(-101%); visibility: hidden; } }

/* ---------- tipografia ---------- */
.eyebrow { text-transform: uppercase; letter-spacing: .22em; font-size: .74rem; font-weight: 700; color: var(--accent); margin-bottom: 16px; }
.eyebrow--accent { color: var(--accent); }
.section-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.02; letter-spacing: -1px; }
.section-sub { color: var(--gray); font-size: 1.06rem; max-width: 56ch; margin: 16px auto 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(38px, 5vw, 60px); }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- botões ---------- */
.btn { --pad-y: 14px; --pad-x: 28px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: var(--pad-y) var(--pad-x); font-family: var(--font-body); font-weight: 700; font-size: .95rem; border-radius: 100px; border: 1.5px solid transparent; cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s, border-color .3s; white-space: nowrap; }
.btn--lg { --pad-y: 16px; --pad-x: 34px; font-size: 1rem; }
.btn--accent { background: var(--grad); color: #fff; box-shadow: 0 14px 34px -12px rgba(255,61,132,.6); }
.btn--accent:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -12px rgba(255,61,132,.8); }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }

/* ---------- header ---------- */
.header { position: sticky; top: 0; z-index: 100; background: rgba(13,13,17,.7); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-soft); transition: background .4s; }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 15px 0; }
.logo { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: 1px; color: var(--white); }
.logo__dot { color: var(--accent); }
.nav { display: flex; gap: 28px; }
.nav a { font-weight: 600; font-size: .94rem; color: var(--gray); position: relative; padding: 4px 0; transition: color .25s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--grad); border-radius: 2px; transition: width .3s var(--ease); }
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; position: relative; z-index: 95; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(50px, 8vw, 100px) 0 0; overflow: hidden; }
.hero__glow { position: absolute; top: -160px; left: 50%; transform: translateX(-50%); width: 900px; height: 560px; z-index: 0; pointer-events: none;
  background: radial-gradient(50% 60% at 50% 0%, rgba(255,94,58,.22), transparent 70%), radial-gradient(40% 50% at 70% 30%, rgba(255,61,132,.18), transparent 70%); filter: blur(10px); }
.hero__inner { position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto; }
.hero__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 6.5vw, 5rem); line-height: 1.02; letter-spacing: -2px; margin-bottom: 24px; }
.hero__lead { color: var(--gray); font-size: 1.16rem; max-width: 60ch; margin: 0 auto 34px; }
.hero__lead strong { color: var(--white); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 48px; }
.hero__stats { display: inline-flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; padding: 20px 30px; background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 18px; }
.hero__stats > div:not(.sep) { text-align: center; }
.hero__stats strong { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; display: block; }
.hero__stats span { font-size: .8rem; color: var(--gray); }
.hero__stats .sep { width: 1px; height: 34px; background: var(--line); }

/* marquee */
.marquee { margin-top: clamp(46px, 7vw, 80px); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); overflow: hidden; padding: 20px 0; }
.marquee__track { display: inline-flex; align-items: center; gap: 26px; white-space: nowrap; animation: slide 40s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--gray-2); text-transform: uppercase; letter-spacing: -.5px; }
.marquee__track i { color: var(--accent); font-style: normal; font-size: .9rem; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- portfólio ---------- */
.portfolio { padding: clamp(56px, 8vw, 100px) 0; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { position: relative; display: block; background: var(--bg-2); border: 1.5px solid var(--line-soft); border-radius: 18px; overflow: hidden; transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.card:hover { transform: translateY(-8px); border-color: transparent; box-shadow: 0 34px 64px -34px #000, 0 0 22px -7px rgba(255,61,132,.5); }
/* contorno gradiente sutil no hover (coral -> rosa) */
.card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .35s var(--ease); pointer-events: none; z-index: 4; }
.card:hover::after { opacity: 1; }
.card__img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-3); }
.card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; z-index: 1; transition: transform .8s var(--ease), opacity .55s var(--ease); }
.card__img img.card__frame { opacity: 0; }        /* quadros extras começam invisíveis (crossfade via JS) */
.card__img img.is-on { opacity: 1; }
.card:hover .card__img img { transform: scale(1.04); }
.card__img::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, transparent 60%, rgba(13,13,17,.5)); opacity: 0; transition: opacity .4s; pointer-events: none; }
.card:hover .card__img::after { opacity: 1; }
.card__view { position: absolute; left: 16px; bottom: 16px; z-index: 3; background: var(--grad); color: #fff; font-weight: 700; font-size: .84rem; padding: 9px 16px; border-radius: 100px; opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s; }
.card:hover .card__view { opacity: 1; transform: none; }
.card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 4px; }
.card__tag { text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; font-weight: 700; color: var(--accent); }
.card__body h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; }
.card__body p { color: var(--gray); font-size: .92rem; }
.portfolio__note { text-align: center; margin-top: 40px; color: var(--gray); font-size: 1.02rem; }
.portfolio__note a { color: var(--white); font-weight: 700; border-bottom: 2px solid var(--accent); padding-bottom: 2px; transition: color .25s; }
.portfolio__note a:hover { color: var(--accent); }

/* ---------- monte o seu (personalizador) ---------- */
.monte { padding: clamp(56px, 8vw, 96px) 0; }
.mk-studio { display: grid; grid-template-columns: 320px 1fr; gap: 22px; align-items: start; }
.mk-panel { background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 20px; padding: 24px; position: sticky; top: 84px; }
.mk-ctrl { margin-bottom: 24px; }
.mk-ctrl:last-child { margin-bottom: 0; }
.mk-ctrl__label { font-weight: 700; font-size: .95rem; margin-bottom: 12px; }
.mk-swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.mk-swatch { width: 38px; height: 38px; border-radius: 50%; cursor: pointer; border: none; padding: 0; box-shadow: 0 0 0 2px var(--bg-2), 0 0 0 2px transparent; transition: transform .2s var(--ease), box-shadow .2s; }
.mk-swatch:hover { transform: scale(1.08); }
.mk-swatch.is-on { box-shadow: 0 0 0 2px var(--bg-2), 0 0 0 4px #fff; }
.mk-opts { display: grid; gap: 8px; }
.mk-opt { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: var(--bg-3); border: 1px solid var(--line-soft); color: var(--white); border-radius: 12px; padding: 11px 14px; cursor: pointer; font-size: .92rem; font-weight: 600; transition: border-color .2s, background .2s, transform .15s; }
.mk-opt:hover { transform: translateY(-1px); }
.mk-opt.is-on { border-color: var(--accent); background: rgba(255,94,58,.1); }
.mk-tick { opacity: 0; color: var(--accent); font-weight: 800; }
.mk-opt.is-on .mk-tick { opacity: 1; }
.mk-f-modern { font-family: 'Poppins', sans-serif; }
.mk-f-elegant { font-family: 'Fraunces', serif; font-style: italic; }
.mk-f-fun { font-family: 'Baloo 2', cursive; }
.mk-seg { display: flex; background: var(--bg-3); border: 1px solid var(--line-soft); border-radius: 12px; padding: 4px; gap: 4px; }
.mk-seg button { flex: 1; background: transparent; border: none; color: var(--gray); border-radius: 8px; padding: 9px; cursor: pointer; font-family: inherit; font-weight: 600; font-size: .88rem; transition: background .2s, color .2s; }
.mk-seg button.is-on { background: var(--white); color: #14141a; }
.mk-frame { background: var(--bg-3); border: 1px solid var(--line-soft); border-radius: 16px; overflow: hidden; box-shadow: 0 40px 80px -40px #000; }
.mk-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--bg-2); border-bottom: 1px solid var(--line-soft); }
.mk-dots { display: flex; gap: 6px; }
.mk-dots i { width: 11px; height: 11px; border-radius: 50%; background: #45454f; }
.mk-url { flex: 1; text-align: center; background: var(--bg-3); border-radius: 8px; padding: 6px 12px; font-size: .8rem; color: var(--gray); max-width: 280px; margin: 0 auto; }

/* mini-site personalizável (vars próprias --mk-*) */
.mk-site {
  --mk-accent: #ff5e3a; --mk-ink: #ffffff; --mk-font: 'Poppins', sans-serif;
  --mk-bg: #ffffff; --mk-text: #191922; --mk-muted: #6b6b76; --mk-card: #f5f5f8; --mk-border: rgba(0,0,0,.08); --mk-radius: 16px;
  font-family: var(--mk-font); background: var(--mk-bg); color: var(--mk-text);
  transition: background .35s var(--ease), color .35s var(--ease);
  padding: 26px clamp(20px, 4vw, 44px) 40px;
}
.mk-site .s-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 40px; }
.mk-site .s-logo { font-weight: 700; font-size: 1.3rem; display: flex; align-items: center; gap: 8px; }
.mk-site .s-logo .dot { width: 12px; height: 12px; background: var(--mk-accent); border-radius: calc(var(--mk-radius) * .25); transition: background .35s, border-radius .35s; }
.mk-site .s-nav { display: flex; gap: 20px; }
.mk-site .s-nav span { color: var(--mk-muted); font-size: .92rem; font-weight: 500; }
.mk-site .s-nav span:first-child { color: var(--mk-accent); }
.mk-site .s-btn { background: var(--mk-accent); color: var(--mk-ink); padding: 10px 18px; border-radius: var(--mk-radius); font-weight: 600; font-size: .9rem; transition: all .35s var(--ease); }
.mk-site .s-hero { text-align: center; max-width: 560px; margin: 0 auto; }
.mk-site .s-badge { display: inline-block; background: color-mix(in srgb, var(--mk-accent) 14%, transparent); color: var(--mk-accent); font-weight: 600; font-size: .82rem; padding: 7px 15px; border-radius: var(--mk-radius); margin-bottom: 20px; transition: all .35s var(--ease); }
.mk-site .s-hero h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1.08; letter-spacing: -.5px; font-weight: 700; margin-bottom: 16px; }
.mk-site .s-hero h1 em { font-style: normal; color: var(--mk-accent); transition: color .35s; }
.mk-site .s-hero p { color: var(--mk-muted); font-size: 1.05rem; margin-bottom: 26px; }
.mk-site .s-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.mk-site .s-primary { background: var(--mk-accent); color: var(--mk-ink); padding: 13px 26px; border-radius: var(--mk-radius); font-weight: 600; transition: all .35s var(--ease); }
.mk-site .s-outline { background: transparent; color: var(--mk-text); border: 1.5px solid var(--mk-border); padding: 13px 26px; border-radius: var(--mk-radius); font-weight: 600; transition: all .35s var(--ease); }
.mk-site .s-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 44px; }
.mk-site .s-card { background: var(--mk-card); border: 1px solid var(--mk-border); border-radius: var(--mk-radius); padding: 22px; transition: all .35s var(--ease); }
.mk-site .s-ico { width: 42px; height: 42px; border-radius: calc(var(--mk-radius) * .6); background: color-mix(in srgb, var(--mk-accent) 16%, transparent); color: var(--mk-accent); display: grid; place-items: center; font-size: 1.2rem; margin-bottom: 14px; transition: all .35s var(--ease); }
.mk-site .s-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.mk-site .s-card p { color: var(--mk-muted); font-size: .86rem; }

.mk-cta { text-align: center; margin-top: 36px; }
.mk-cta p { color: var(--gray); margin-bottom: 16px; font-size: 1.05rem; }
.mk-cta p strong { color: var(--white); }

@media (max-width: 860px) {
  .mk-studio { grid-template-columns: 1fr; }
  .mk-panel { position: static; }
  /* preview sobe pro topo e fica fixo enquanto os controles rolam embaixo */
  .mk-frame { order: -1; position: sticky; top: 70px; z-index: 5; }
  /* preview enxuto no celular pra sobrar espaço confortável aos controles */
  .mk-site { padding: 16px 18px 20px; }
  .mk-site .s-nav { display: none; }
  .mk-site .s-cards { display: none; }
  .mk-site .s-header { margin-bottom: 16px; }
  .mk-site .s-header .s-btn { padding: 8px 14px; font-size: .82rem; }
  .mk-site .s-badge { margin-bottom: 12px; padding: 5px 12px; font-size: .76rem; }
  .mk-site .s-hero h1 { font-size: 1.45rem; margin-bottom: 10px; }
  .mk-site .s-hero p { font-size: .88rem; margin-bottom: 14px; }
  .mk-site .s-btns { gap: 8px; }
  .mk-site .s-primary, .mk-site .s-outline { padding: 10px 18px; font-size: .88rem; }
}

/* ---------- benefícios ---------- */
.benefits { padding: clamp(56px, 8vw, 96px) 0; background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.benefits__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit { background: var(--bg); border: 1px solid var(--line-soft); border-radius: 18px; padding: 30px 26px; transition: transform .4s var(--ease), border-color .4s; }
.benefit:hover { transform: translateY(-6px); border-color: rgba(255,94,58,.4); }
.benefit h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; margin-bottom: 8px; }
.benefit p { color: var(--gray); font-size: .94rem; }

/* ---------- processo ---------- */
.process { padding: clamp(56px, 8vw, 96px) 0; }
.process__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pstep { background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 18px; padding: 34px 30px; position: relative; overflow: hidden; transition: transform .4s var(--ease); }
.pstep:hover { transform: translateY(-6px); }
.pstep::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.pstep:hover::before { transform: scaleX(1); }
.pstep__n { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: 14px; }
.pstep h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin-bottom: 8px; }
.pstep p { color: var(--gray); font-size: .95rem; }

/* ---------- cta ---------- */
.cta { padding: clamp(40px, 6vw, 80px) 0 clamp(64px, 9vw, 110px); }
.cta__card { position: relative; text-align: center; background: var(--bg-2); border: 1px solid var(--line); border-radius: 28px; padding: clamp(44px, 7vw, 80px) clamp(28px, 5vw, 60px); overflow: hidden; }
.cta__glow { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(60% 100% at 50% 0%, rgba(255,94,58,.18), transparent 65%), radial-gradient(50% 80% at 50% 100%, rgba(255,61,132,.14), transparent 65%); }
.cta__card > * { position: relative; z-index: 1; }
.cta__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.02; letter-spacing: -1px; margin-bottom: 16px; }
.cta__lead { color: var(--gray); font-size: 1.12rem; max-width: 48ch; margin: 0 auto 30px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- sobre mim ---------- */
.sobre { padding: clamp(56px, 8vw, 96px) 0; background: var(--bg-2); border-top: 1px solid var(--line-soft); }
.sobre__inner { display: grid; grid-template-columns: 300px 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.sobre__card { position: relative; text-align: center; background: var(--bg); border: 1px solid var(--line-soft); border-radius: 22px; padding: 34px 26px; overflow: hidden; }
.sobre__card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px; background: var(--grad); }
.sobre__avatar { position: relative; width: 128px; height: 128px; margin: 8px auto 18px; border-radius: 50%; overflow: hidden; display: grid; place-items: center; background: var(--grad); box-shadow: 0 14px 34px -14px rgba(255,61,132,.6); }
.sobre__avatar span { font-family: var(--font-display); font-weight: 800; font-size: 3rem; color: #fff; }
.sobre__avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; transform: scale(1.3); transform-origin: 50% 14%; }
.sobre__name { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; }
.sobre__role { color: var(--gray); font-size: .92rem; margin-top: 3px; }
.sobre__tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 16px 0 20px; }
.sobre__tags li { font-size: .78rem; font-weight: 600; color: var(--white); background: var(--bg-3); border: 1px solid var(--line-soft); border-radius: 100px; padding: 6px 12px; }
.sobre__wa { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .92rem; color: #fff; background: #25d366; border-radius: 100px; padding: 11px 22px; transition: transform .3s var(--ease), box-shadow .3s; }
.sobre__wa:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(37,211,102,.7); }
.sobre__copy .eyebrow { margin-bottom: 14px; }
.sobre__copy .section-title { font-size: clamp(1.8rem, 4vw, 2.9rem); margin-bottom: 18px; }
.sobre__lead { font-size: 1.12rem; color: var(--white); margin-bottom: 14px; max-width: 60ch; }
.sobre__text { color: var(--gray); font-size: 1rem; margin-bottom: 14px; max-width: 60ch; }
.sobre__text strong { color: var(--white); }
/* caixa de texto "digitada" (substituiu os 3 pontos com emoji) */
.type-box { display: flex; gap: 12px; align-items: flex-start; background: var(--bg); border: 1px solid var(--line-soft); border-radius: 14px; padding: 20px 22px; margin-top: 26px; min-height: 98px; }
.type-box__prompt { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; line-height: 1.35; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.type-box__text { color: var(--gray); font-size: 1rem; }
.type-box__text strong { color: var(--white); font-family: var(--font-display); font-weight: 700; }
.type-box__cursor { display: inline-block; width: 2px; height: 1.05em; background: var(--grad); margin-left: 3px; vertical-align: text-bottom; animation: tw-blink 1.05s steps(1) infinite; }
@keyframes tw-blink { 50% { opacity: 0; } }

/* ---------- faq ---------- */
.faq { padding: clamp(56px, 8vw, 96px) 0; }
.faq__list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item { background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 16px; overflow: hidden; transition: border-color .3s, background .3s; }
.faq__item[open] { border-color: rgba(255,94,58,.4); background: var(--bg-3); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--white); }
.faq__ico { position: relative; flex: 0 0 auto; width: 20px; height: 20px; }
.faq__ico::before, .faq__ico::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--accent); border-radius: 2px; transition: transform .35s var(--ease), opacity .3s; }
.faq__ico::before { width: 14px; height: 2px; }
.faq__ico::after { width: 2px; height: 14px; }
.faq__item[open] .faq__ico::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__a { padding: 0 24px 22px; color: var(--gray); font-size: .98rem; max-width: 64ch; }
.faq__item[open] .faq__a { animation: faq-open .35s var(--ease); }
.faq__a p { margin: 0; }
@keyframes faq-open { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: 56px; }
.footer__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; }
.footer__brand { max-width: 360px; }
.footer__brand .logo { display: inline-block; margin-bottom: 14px; }
.footer__brand p { color: var(--gray); font-size: .96rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: 14px 26px; align-content: flex-start; }
.footer__links a { color: var(--gray); font-weight: 600; font-size: .94rem; transition: color .25s; }
.footer__links a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid var(--line-soft); padding: 20px 0; }
.footer__bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer__bottom span { color: var(--gray-2); font-size: .85rem; }

/* ---------- whatsapp ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 200; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: #25d366; box-shadow: 0 12px 30px -8px rgba(37,211,102,.7); animation: pulse 2.6s ease-in-out infinite; transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.1); }
@keyframes pulse { 0%,100% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.7), 0 0 0 0 rgba(37,211,102,.5); } 50% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.7), 0 0 0 14px rgba(37,211,102,0); } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* =====================================================
   RESPONSIVO
   ===================================================== */
@media (max-width: 980px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 720px) {
  .nav { position: fixed; top: 0; right: 0; left: auto; width: min(82vw, 320px); height: 100vh; height: 100dvh; flex-direction: column; gap: 4px; padding: 96px 30px 40px; background: var(--bg-2); border-left: 1px solid var(--line); transform: translateX(100%); transition: transform .4s var(--ease); z-index: 90; overflow-y: auto; }
  .nav.is-open { transform: none; box-shadow: 0 0 0 100vmax rgba(0,0,0,.55), -30px 0 60px -20px #000; }
  .nav a { font-size: 1.15rem; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .nav-toggle { display: flex; }
  .header__cta { display: none; }
  .hero__stats { gap: 18px; padding: 16px 20px; }
  .card__view { opacity: 1; transform: none; }
  .sobre__inner { grid-template-columns: 1fr; gap: 30px; }
  .sobre__card { max-width: 340px; margin: 0 auto; width: 100%; }
  .faq__item summary { font-size: 1rem; padding: 18px 20px; }
  .faq__a { padding: 0 20px 20px; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }
  .hero__stats .sep { display: none; }
  .hero__actions .btn, .cta__actions .btn { flex: 1 1 auto; }
  .footer__inner { flex-direction: column; gap: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =====================================================
   HERO com mockup celular/desktop (adicionado 2026-07-23)
   ===================================================== */

/* ---------- hero em 2 colunas ---------- */
.hero__inner--split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 76px); align-items: center; text-align: left; max-width: var(--container); }
.hero__inner--split .hero__title { font-size: clamp(2.2rem, 3.8vw, 3.4rem); max-width: 15ch; }
.hero__inner--split .hero__lead { margin: 0 0 34px; }
.hero__inner--split .hero__actions { justify-content: flex-start; }

/* ---------- mockup ---------- */
.hero__mock { position: relative; display: flex; flex-direction: column; align-items: center; gap: 18px; min-height: 540px; justify-content: center; }
.mock-glow { position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(255,94,58,.22), rgba(255,61,132,.1) 50%, transparent 72%); filter: blur(18px); pointer-events: none; }

/* seletor celular/desktop */
.mock-seg { position: relative; z-index: 2; display: flex; background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 100px; padding: 4px; gap: 4px; }
.mock-seg button { background: transparent; border: none; color: var(--gray); border-radius: 100px; padding: 9px 20px; font-family: var(--font-body); font-weight: 600; font-size: .84rem; cursor: pointer; transition: background .25s, color .25s, box-shadow .25s; }
.mock-seg button.is-on { background: var(--grad); color: #fff; font-weight: 700; box-shadow: 0 8px 20px -8px rgba(255,61,132,.6); }

/* troca com crossfade */
.mock { position: relative; z-index: 1; display: none; animation: mock-in .45s var(--ease); }
.mock.is-on { display: block; }
@keyframes mock-in { from { opacity: 0; transform: translateY(10px) scale(.97); } to { opacity: 1; transform: none; } }

/* flutuação */
.mock-phone, .mock-browser { animation: mock-float 6s ease-in-out infinite; }
@keyframes mock-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* celular */
.mock-phone { width: 250px; background: var(--bg-3); border: 1.5px solid rgba(243,241,238,.14); border-radius: 38px; padding: 10px; box-shadow: 0 50px 90px -30px #000, 0 0 40px -14px rgba(255,61,132,.35); }
.mock-phone__screen { background: #141414; border-radius: 29px; overflow: hidden; }
.mock-phone__notch { display: flex; justify-content: center; padding-top: 8px; }
.mock-phone__notch i { width: 80px; height: 18px; background: #000; border-radius: 100px; }

/* navegador (desktop) */
.mock-browser { width: min(500px, 100%); background: var(--bg-3); border: 1.5px solid rgba(243,241,238,.14); border-radius: 16px; overflow: hidden; box-shadow: 0 50px 90px -30px #000, 0 0 40px -14px rgba(255,61,132,.35); }
.mock-browser__bar { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--bg-2); border-bottom: 1px solid var(--line-soft); }
.mock-dots { display: flex; gap: 5px; }
.mock-dots i { width: 9px; height: 9px; border-radius: 50%; background: #45454f; }
.mock-url { flex: 1; text-align: center; background: var(--bg-3); border-radius: 6px; padding: 4px 10px; font-size: .64rem; color: var(--gray); max-width: 200px; margin: 0 auto; }

/* mini-site (conteúdo fake BRASA) — celular */
.ms { padding: 14px 14px 18px; display: flex; flex-direction: column; gap: 12px; }
.ms__top { display: flex; align-items: center; justify-content: space-between; }
.ms__logo { font-family: var(--font-display); font-weight: 800; font-size: .82rem; color: #ffb03a; letter-spacing: 1px; }
.ms__burger { display: flex; flex-direction: column; gap: 3px; }
.ms__burger i { width: 16px; height: 2px; background: var(--white); border-radius: 2px; }
.ms__hero { position: relative; height: 92px; border-radius: 12px; background: linear-gradient(160deg, #2a1408, #4a2008 55%, #7a3410); overflow: hidden; display: flex; align-items: flex-end; padding: 10px; }
.ms__flare { position: absolute; right: -18px; top: -18px; width: 80px; height: 80px; border-radius: 50%; background: radial-gradient(circle, rgba(255,140,40,.55), transparent 70%); }
.ms__hero strong { position: relative; font-family: var(--font-display); font-weight: 800; font-size: .88rem; line-height: 1.1; color: #fff; }
.ms__cta { background: #ff6a1f; color: #fff; text-align: center; font-weight: 700; font-size: .68rem; padding: 9px; border-radius: 100px; }
.ms__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ms__card { background: #1f1f26; border-radius: 10px; padding: 9px; display: flex; flex-direction: column; gap: 5px; }
.ms__card i { width: 22px; height: 22px; border-radius: 6px; background: rgba(255,106,31,.2); }
.ms__card b { height: 5px; background: #3a3a44; border-radius: 3px; }
.ms__card u { height: 4px; background: #26262e; border-radius: 3px; text-decoration: none; }

/* mini-site — desktop */
.md { background: #141414; padding: 16px 20px 20px; display: flex; flex-direction: column; gap: 14px; }
.md__top { display: flex; align-items: center; justify-content: space-between; }
.md__nav { display: flex; gap: 12px; }
.md__nav i { font-style: normal; font-size: .56rem; color: #8a8a94; font-weight: 600; }
.md__btn { background: #ff6a1f; color: #fff; font-weight: 700; font-size: .56rem; padding: 6px 12px; border-radius: 100px; }
.md__hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 14px; align-items: center; }
.md__copy { display: flex; flex-direction: column; gap: 8px; }
.md__copy strong { font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; line-height: 1.1; color: #fff; }
.md__copy b { height: 5px; background: #2c2c34; border-radius: 3px; }
.md__btns { display: flex; gap: 8px; margin-top: 4px; }
.md__btns em { font-style: normal; background: #ff6a1f; color: #fff; font-weight: 700; font-size: .62rem; padding: 8px 14px; border-radius: 100px; }
.md__btns i { font-style: normal; border: 1px solid #33333c; color: #c9c9d1; font-weight: 700; font-size: .62rem; padding: 8px 14px; border-radius: 100px; }
.md__img { position: relative; height: 120px; border-radius: 12px; background: linear-gradient(160deg, #2a1408, #4a2008 55%, #7a3410); overflow: hidden; }
.md__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }

/* responsivo */
@media (max-width: 980px) {
  .hero__inner--split { grid-template-columns: 1fr; text-align: center; }
  .hero__inner--split .hero__title { max-width: none; }
  .hero__inner--split .hero__lead { margin: 0 auto 34px; }
  .hero__inner--split .hero__actions { justify-content: center; }
  .hero__mock { display: none; }   /* mockup só no desktop (não empilhar no mobile/tablet) */
}
@media (max-width: 560px) {
  .mock-browser { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .mock-phone, .mock-browser { animation: none; }
}

/* ---------- mobile: hero de texto mais compacto (mockup escondido) ---------- */
@media (max-width: 600px) {
  .hero__inner--split .hero__title { font-size: 2rem; }
  .hero__inner--split .hero__lead { margin-bottom: 26px; }
}

/* =====================================================
   TON — assistente (seção + balão + chat)
   ===================================================== */
.tonsec { padding: clamp(50px, 7vw, 84px) 0; }
.ton-sec__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 56px); align-items: center; background: linear-gradient(180deg, var(--bg-2), #101015); border: 1px solid var(--line); border-radius: 26px; padding: clamp(26px, 4vw, 48px); }
.tonsec h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 3.8vw, 2.6rem); line-height: 1.05; letter-spacing: -.5px; margin: 6px 0 14px; }
.ton-sec__lead { color: var(--gray); font-size: 1.04rem; margin-bottom: 22px; max-width: 52ch; }
.ton-sec__lead b { color: var(--white); font-weight: 600; }
.ton-benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.ton-benefits div { display: flex; align-items: center; gap: 11px; font-size: .96rem; color: var(--white); }
.ton-benefits div::before { content: "›"; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ton-open { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-weight: 800; font-size: 1rem; color: #fff; background: var(--grad); border: none; border-radius: 100px; padding: 15px 28px; cursor: pointer; box-shadow: 0 16px 40px -14px rgba(255,61,132,.7); transition: transform .3s var(--ease), box-shadow .3s; }
.ton-open:hover { transform: translateY(-3px); box-shadow: 0 22px 50px -14px rgba(255,61,132,.85); }
.ton-preview { background: var(--bg); border: 1px solid var(--line); border-radius: 20px; padding: 20px; box-shadow: 0 30px 60px -30px #000; }
.ton-preview__head { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--line-soft); }
.ton-preview__head b { font-family: var(--font-display); font-weight: 800; font-size: 1rem; }
.ton-preview__head span:not(.ton-av) { font-size: .74rem; color: #33d17a; display: flex; align-items: center; gap: 5px; }
.ton-preview__head span:not(.ton-av)::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #33d17a; box-shadow: 0 0 0 3px rgba(51,209,122,.2); }
.pv-b { max-width: 80%; padding: 10px 14px; border-radius: 14px; font-size: .9rem; margin-bottom: 9px; }
.pv-b--bot { background: var(--bg-3); border: 1px solid var(--line-soft); border-top-left-radius: 4px; }
.pv-b--me { background: var(--grad); color: #fff; margin-left: auto; border-top-right-radius: 4px; font-weight: 600; }

.ton-av { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(rgba(255,255,255,.16), rgba(255,255,255,.16)), var(--grad); display: grid; place-items: center; box-shadow: 0 6px 16px -6px rgba(255,61,132,.6); }
.ton-av--sm { width: 28px; height: 28px; }
.ton-av--lg { width: 52px; height: 52px; }
.ton-face { width: 64%; height: 64%; color: #fff; }

.ton-fab { position: fixed; right: 20px; bottom: 20px; z-index: 400; display: inline-flex; align-items: center; gap: 11px; background: var(--grad); color: #fff; border: none; border-radius: 100px; padding: 11px 20px 11px 12px; cursor: pointer; font-family: var(--font-body); font-weight: 800; font-size: .95rem; box-shadow: 0 18px 44px -14px rgba(255,61,132,.7); transition: transform .3s var(--ease), box-shadow .3s; }
.ton-fab:hover { transform: translateY(-3px) scale(1.03); }
.ton-fab .ton-av { width: 40px; height: 40px; box-shadow: none; }
.ton-fab__pulse { position: absolute; inset: 0; border-radius: 100px; animation: ton-pulse 2.6s ease-out infinite; pointer-events: none; }
@keyframes ton-pulse { 0% { box-shadow: 0 0 0 0 rgba(255,61,132,.45); } 70% { box-shadow: 0 0 0 16px rgba(255,61,132,0); } 100% { box-shadow: 0 0 0 0 rgba(255,61,132,0); } }

.ton-teaser { position: fixed; right: 22px; bottom: 82px; z-index: 399; max-width: 212px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; border-bottom-right-radius: 4px; padding: 12px 15px; font-size: .9rem; box-shadow: 0 20px 44px -18px #000; opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s; cursor: pointer; }
.ton-teaser.show { opacity: 1; transform: none; }
.ton-teaser b { color: var(--white); }
.ton-teaser__x { position: absolute; top: 6px; right: 8px; color: var(--gray-2); cursor: pointer; font-size: .9rem; line-height: 1; background: none; border: none; }

.ton-panel { position: fixed; right: 20px; bottom: 20px; z-index: 401; width: 370px; max-width: calc(100vw - 32px); height: 560px; max-height: calc(100vh - 40px); display: flex; flex-direction: column; background: var(--bg-2); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: 0 40px 90px -30px #000, 0 0 0 1px rgba(255,61,132,.14); transform-origin: bottom right; animation: ton-in .35s var(--ease); }
.ton-panel[hidden] { display: none; }
@keyframes ton-in { from { opacity: 0; transform: translateY(16px) scale(.96); } to { opacity: 1; transform: none; } }
.ton-hd { display: flex; align-items: center; gap: 12px; padding: 15px 16px; background: linear-gradient(105deg, rgba(255,122,61,.16), rgba(255,61,132,.16)); border-bottom: 1px solid var(--line); }
.ton-hd__t { flex: 1; min-width: 0; }
.ton-hd__t b { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; display: block; }
.ton-hd__t span { font-size: .76rem; color: #33d17a; display: flex; align-items: center; gap: 5px; }
.ton-hd__t span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #33d17a; box-shadow: 0 0 0 3px rgba(51,209,122,.2); }
.ton-x { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 10px; border: 1px solid var(--line); background: var(--bg-3); color: var(--white); cursor: pointer; font-size: 1.1rem; line-height: 1; transition: background .2s; }
.ton-x:hover { background: var(--bg-4); }
.ton-msgs { flex: 1; overflow-y: auto; padding: 18px 16px; display: flex; flex-direction: column; gap: 12px; }
.ton-msg { display: flex; align-items: flex-end; gap: 8px; max-width: 88%; }
.ton-msg--bot { align-self: flex-start; }
.ton-msg--me { align-self: flex-end; flex-direction: row-reverse; }
.ton-bubble { padding: 11px 14px; border-radius: 16px; font-size: .94rem; line-height: 1.5; }
.ton-msg--bot .ton-bubble { background: var(--bg-3); border: 1px solid var(--line-soft); border-bottom-left-radius: 5px; }
.ton-msg--bot .ton-bubble b { color: #ffb98a; }
.ton-msg--me .ton-bubble { background: var(--grad); color: #fff; font-weight: 600; border-bottom-right-radius: 5px; }
.ton-typing { display: flex; gap: 4px; padding: 14px; }
.ton-typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--gray); animation: ton-dot 1s infinite; }
.ton-typing i:nth-child(2) { animation-delay: .15s; } .ton-typing i:nth-child(3) { animation-delay: .3s; }
@keyframes ton-dot { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-4px); } }
.ton-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 12px; }
.ton-chip { background: var(--bg-3); border: 1px solid var(--line); color: var(--white); border-radius: 100px; padding: 9px 15px; font-family: var(--font-body); font-weight: 600; font-size: .88rem; cursor: pointer; transition: border-color .2s, background .2s, transform .15s; }
.ton-chip:hover { border-color: #ff5e3a; background: rgba(255,94,58,.1); transform: translateY(-1px); }
.ton-chip--wa { background: #25d366; border-color: #25d366; color: #fff; font-weight: 700; }
.ton-chip--wa:hover { background: #1fbf5b; border-color: #1fbf5b; }
.ton-form { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line); background: var(--bg-2); }
.ton-form input { flex: 1; background: var(--bg-3); border: 1px solid var(--line); border-radius: 100px; color: var(--white); padding: 11px 16px; font-family: var(--font-body); font-size: .92rem; outline: none; }
.ton-form input:focus { border-color: #ff5e3a; }
.ton-form button { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; border: none; background: var(--grad); color: #fff; cursor: pointer; font-size: 1.05rem; }
.ton-foot { text-align: center; font-size: .68rem; color: var(--gray-2); padding: 0 0 10px; }

@media (max-width: 760px) { .ton-sec__inner { grid-template-columns: 1fr; } .ton-preview { display: none; } }
@media (max-width: 480px) { .ton-panel { right: 8px; left: 8px; bottom: 8px; width: auto; height: calc(100vh - 16px); height: calc(100dvh - 16px); } .ton-fab__lbl { display: none; } .ton-fab { padding: 12px; } }
@media (prefers-reduced-motion: reduce) { .ton-fab__pulse, .ton-panel, .ton-teaser, .ton-typing i { animation: none !important; } }

/* ---------- Ton: correção mobile (não sobrepor os botões do hero) ---------- */
.ton-fab { transition: transform .3s var(--ease), box-shadow .3s, opacity .3s; }
.ton-fab--gated { opacity: 0; pointer-events: none; transform: translateY(12px) scale(.92); }
@media (max-width: 720px) {
  /* no mobile o balão volta, mas só aparece junto com o fab (após sair do hero) — controle no ton.js */
  .ton-teaser { bottom: 96px; right: 16px; max-width: 200px; }
}
.ton-teaser { pointer-events: none; }      /* só o ícone (fab) abre o chat — o balão é só aviso (ideia do Everton) */
.ton-teaser__x { pointer-events: auto; }   /* mas o X ainda fecha o aviso */
.ton-foot { padding: 2px 16px 10px; line-height: 1.4; }   /* aviso de LGPD cabe bem */

/* =====================================================
   Easter egg "Monte o seu" (link so no menu mobile)
   ===================================================== */
.nav-egg { display: none; }
@media (max-width: 720px) {
  .nav-egg { display: block; color: var(--white); }
}

/* =====================================================
   TEMA CLARO (toggle sol/lua no header · padrão = escuro)
   ===================================================== */
.theme-toggle { flex: 0 0 auto; width: 40px; height: 40px; background: none; border: none; color: var(--white); display: grid; place-items: center; cursor: pointer; transition: color .25s, transform .2s var(--ease); }
.theme-toggle:hover { color: var(--accent); transform: translateY(-1px); }
.theme-toggle .tt-moon { display: none; }
html.light .theme-toggle .tt-sun { display: none; }
html.light .theme-toggle .tt-moon { display: block; }

/* paleta clara (off-white quente, contraste alto, marca coral intacta) */
html.light {
  --bg:      #f7f5f2;
  --bg-2:    #ffffff;
  --bg-3:    #efece7;
  --bg-4:    #e6e2dc;
  --white:   #1d1c22;
  --gray:    #575660;
  --gray-2:  #8b8a94;
  --line:    rgba(24, 23, 30, .14);
  --line-soft: rgba(24, 23, 30, .08);
}

/* ajustes pontuais do claro (cores que eram fixas no escuro) */
html.light .header { background: rgba(247, 245, 242, .78); }
html.light .card:hover { box-shadow: 0 30px 55px -32px rgba(24,23,30,.4), 0 0 22px -7px rgba(255,61,132,.3); }
html.light .mk-frame { box-shadow: 0 40px 80px -45px rgba(24,23,30,.45); }
/* o mockup do hero é um "site de exemplo" escuro — em fundo claro ele vira objeto/moldura escura */
html.light .mock-phone,
html.light .mock-browser { background: #17171d; border-color: rgba(24,23,30,.45); box-shadow: 0 40px 70px -32px rgba(24,23,30,.5), 0 0 40px -14px rgba(255,61,132,.22); }
html.light .mock-browser__bar { background: #101014; border-bottom-color: rgba(255,255,255,.07); }
html.light .mock-url { background: #1b1b22; color: #9c9ba6; }
html.light .ton-preview { box-shadow: 0 26px 50px -30px rgba(24,23,30,.4); }
html.light .ton-teaser { box-shadow: 0 18px 40px -18px rgba(24,23,30,.35); }
html.light .ton-panel { box-shadow: 0 34px 80px -34px rgba(24,23,30,.45), 0 0 0 1px rgba(255,61,132,.12); }
html.light .ton-msg--bot .ton-bubble b { color: #c2410c; }
html.light .ton-sec__inner { background: linear-gradient(180deg, #ffffff, #efece7); }

/* =====================================================
   Benefícios com foto de fundo (sem emoji) — funciona
   igual nos dois temas (foto + véu escuro + texto claro)
   ===================================================== */
.benefit--img { position: relative; min-height: 320px; display: flex; align-items: flex-end; padding: 24px 22px; overflow: hidden; background-size: cover; background-position: center; background-clip: padding-box; border-color: transparent; }
.benefit--img::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,14,.18) 0%, rgba(10,10,14,.55) 48%, rgba(10,10,14,.92) 100%); transition: background .4s; }
.benefit--img:hover::before { background: linear-gradient(180deg, rgba(10,10,14,.06) 0%, rgba(10,10,14,.48) 48%, rgba(10,10,14,.9) 100%); }
.benefit__body { position: relative; }
.benefit--img h3 { color: #fff; }
.benefit--img p { color: rgba(243,241,238,.82); }
.benefit--cred   { background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=900&q=80'); }
.benefit--whats  { background-image: url('../assets/card-whats.jpg'); }
.benefit--google { background-image: url('../assets/card-google.jpg'); background-position: center top; }
.benefit--mobile { background-image: url('../assets/card-celular.jpg'); }
@media (max-width: 560px) {
  .benefit--img { min-height: 240px; }
  .type-box { min-height: 126px; }
}

/* =====================================================
   Logo EVERTON. animado no hover (onda de letras +
   ponto piscando como cursor — ideia do Everton)
   ===================================================== */
.logo .lg { display: inline-block; }
.logo:hover .lg { animation: logo-wave .55s var(--ease) both; animation-delay: calc(var(--i) * .045s); }
@keyframes logo-wave {
  0%   { transform: none; }
  35%  { transform: translateY(-6px); color: var(--accent); }
  70%  { transform: translateY(2px); }
  100% { transform: none; }
}
.logo:hover .logo__dot { animation: tw-blink .8s steps(1) infinite; }
