/* ===== EGGYS LANDING — refined dark, no AI-slop ===== */

:root{
  --bg: #0a0c10;
  --bg-2: #0d1015;
  --panel: #11141b;
  --panel-2: #161a23;
  --line: rgba(255,255,255,.07);
  --line-2: rgba(255,255,255,.12);
  --text: #ecedee;
  --muted: #8b9099;
  --muted-2: #5d626b;

  /* brand */
  --silver-1: #e7e9ec;
  --silver-2: #9ea4ad;
  --silver-3: #3a3f47;

  /* whatsapp accent (used sparingly) */
  --wa: #25d366;
  --wa-soft: #1f7a44;

  --warm: #f4a261;     /* warm accent for "human" feel */
  --warm-soft: #b97a3d;

  --radius: 14px;
  --radius-lg: 22px;

  --container: 1180px;

  --shadow-soft: 0 1px 0 rgba(255,255,255,.04) inset, 0 30px 60px -20px rgba(0,0,0,.5);
  --shadow-card: 0 1px 0 rgba(255,255,255,.05) inset, 0 12px 30px -10px rgba(0,0,0,.55);

  --ease-out: cubic-bezier(.2,.7,.2,1);
}

*,*::before,*::after{ box-sizing: border-box; margin:0; padding:0; }
html,body{ height: 100%; }
html{ scroll-behavior: smooth; }
body{
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a{ color: inherit; text-decoration: none; }
img{ max-width:100%; display:block; }
button{ font-family: inherit; cursor: pointer; border:0; background:none; color:inherit; }
em{ font-style: italic; font-family: 'Instrument Serif', serif; font-weight: 400; letter-spacing: -.01em; }

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

/* ============ NAV ============ */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,12,16,.6);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand{
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 17px; letter-spacing: -.01em;
}
.brand-logo{
  height: 30px; width: 30px; object-fit: contain;
  filter: brightness(1.4) contrast(1.1);
}
.brand-word{
  background: linear-gradient(180deg, var(--silver-1), var(--silver-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links{
  display: flex; align-items: center; gap: 28px;
  margin-left: 8px;
  font-size: 14px; color: var(--muted);
}
.nav-links a{ transition: color .15s; }
.nav-links a:hover{ color: var(--text); }
.nav-cta{
  margin-left: auto;
  display: flex; align-items: center; gap: 10px;
}

/* ============ BUTTONS ============ */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px; border-radius: 10px;
  font-weight: 600; font-size: 14px;
  transition: transform .15s var(--ease-out), background .15s, border-color .15s, box-shadow .2s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:active{ transform: translateY(1px); }
.btn-lg{ padding: 14px 24px; font-size: 15px; border-radius: 12px; }
.btn-block{ width: 100%; }

.btn-primary{
  background: var(--wa);
  color: #052e17;
  box-shadow: 0 8px 24px -8px rgba(37,211,102,.45), 0 1px 0 rgba(255,255,255,.18) inset;
}
.btn-primary:hover{ background: #2adf6d; }

.btn-secondary{
  background: rgba(255,255,255,.05);
  border-color: var(--line-2);
  color: var(--text);
}
.btn-secondary:hover{ background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.18); }

.btn-ghost{
  background: transparent;
  border-color: var(--line-2);
  color: var(--text);
}
.btn-ghost:hover{ background: rgba(255,255,255,.04); }

.btn-ghost-light{
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
}
.btn-ghost-light:hover{ background: rgba(255,255,255,.08); }


/* ============ HERO ============ */
.hero{
  position: relative;
  padding: 80px 0 110px;
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(37,211,102,.10), transparent 60%),
    radial-gradient(50% 50% at 15% 35%, rgba(244,162,97,.06), transparent 60%);
  pointer-events: none;
}
.hero-grain{
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .6;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero-inner{
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(37,211,102,.08);
  border: 1px solid rgba(37,211,102,.2);
  color: #aef0c4;
  border-radius: 100px;
  font-size: 12.5px; font-weight: 600;
  margin-bottom: 28px;
}
.dot-live{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 0 rgba(37,211,102,.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  70%{ box-shadow: 0 0 0 10px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.hero-h1{
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -.025em;
  font-weight: 800;
  margin-bottom: 22px;
}
.hero-h1 .hl{
  background: linear-gradient(180deg, #fff 0%, #d6dae0 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  border-bottom: 2px solid rgba(37,211,102,.7);
  padding-bottom: 2px;
}

.hero-sub{
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-sub b{ color: var(--text); font-weight: 600; }

.hero-ctas{ display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }

.hero-proof{
  display: flex; align-items: center; gap: 22px;
}
.proof-item{}
.proof-num{
  font-size: 24px; font-weight: 800; letter-spacing: -.02em;
  color: var(--text);
}
.proof-label{
  font-size: 12.5px; color: var(--muted);
  margin-top: 2px;
}
.proof-divider{
  width: 1px; height: 36px;
  background: var(--line-2);
}

/* ----- Phone mockup ----- */
.hero-phone-wrap{
  position: relative;
  justify-self: end;
  width: 360px;
  max-width: 100%;
}
.phone-glow{
  position: absolute; inset: -40px;
  background: radial-gradient(50% 60% at 50% 50%, rgba(37,211,102,.18), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.phone{
  position: relative;
  width: 360px;
  height: 720px;
  background: linear-gradient(180deg, #1a1d24, #0f1217);
  border: 1px solid #25282f;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.04) inset,
    0 0 0 1px rgba(255,255,255,.02),
    0 60px 120px -30px rgba(0,0,0,.7),
    0 30px 60px -20px rgba(37,211,102,.15);
  animation: floatY 8s ease-in-out infinite;
}
@keyframes floatY{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-12px); }
}
.phone-notch{
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px; background: #000;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone-screen{
  background: #0b141b;
  width: 100%; height: 100%;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,.018) 0%, transparent 50%),
    linear-gradient(180deg, #0b141b, #0a1218);
}

.wa-header{
  display: flex; align-items: center; gap: 10px;
  padding: 38px 14px 12px;
  background: #1f2c33;
  border-bottom: 1px solid rgba(0,0,0,.4);
  color: #e9edef;
}
.wa-back{ color: #e9edef; font-size: 22px; padding: 0 4px; }
.wa-avatar{
  width: 36px; height: 36px; border-radius: 50%;
  background: #0a0c10;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.wa-avatar img{ width: 70%; filter: brightness(1.6); }
.wa-info{ flex: 1; min-width: 0; }
.wa-name{ font-size: 14px; font-weight: 600; }
.wa-status{ font-size: 12px; color: #8696a0; display: flex; align-items: center; gap: 4px;}
.wa-typing-dot{
  width: 6px; height: 6px; border-radius: 50%; background: #25d366;
  animation: pulse 1.5s infinite;
}
.wa-icons{ display: flex; gap: 14px; color: #aebac1; }

.wa-body{
  flex: 1;
  padding: 14px 12px;
  background-color: #0b141b;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 19px, rgba(255,255,255,.012) 19px 20px),
    repeating-linear-gradient(90deg, transparent 0 19px, rgba(255,255,255,.012) 19px 20px);
  display: flex; flex-direction: column;
  gap: 6px;
  overflow: hidden;
  position: relative;
}
.wa-date{
  align-self: center;
  background: rgba(31,42,49,.85);
  color: #aebac1;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
  font-weight: 500;
}
.bubble{
  max-width: 80%;
  padding: 7px 10px 8px;
  border-radius: 8px;
  font-size: 13.5px;
  line-height: 1.4;
  position: relative;
  opacity: 0;
  transform: translateY(8px);
  animation: bubbleIn .35s var(--ease-out) forwards;
  box-shadow: 0 1px 0.5px rgba(0,0,0,.13);
  word-wrap: break-word;
}
@keyframes bubbleIn{
  to{ opacity: 1; transform: translateY(0); }
}
.bubble.them{
  align-self: flex-start;
  background: #1f2c33;
  color: #e9edef;
  border-top-left-radius: 0;
}
.bubble.me{
  align-self: flex-end;
  background: #005c4b;
  color: #e9edef;
  border-top-right-radius: 0;
}
.bubble .meta{
  display: flex; align-items: center; justify-content: flex-end; gap: 4px;
  font-size: 10px;
  color: rgba(255,255,255,.55);
  margin-top: 3px;
}
.bubble .ticks{ color: #53bdeb; font-size: 11px; }
.bubble.typing{
  padding: 11px 14px;
  display: flex; align-items: center; gap: 4px;
}
.bubble.typing span{
  width: 6px; height: 6px; border-radius: 50%;
  background: #8696a0;
  animation: typingDot 1.2s infinite;
}
.bubble.typing span:nth-child(2){ animation-delay: .15s; }
.bubble.typing span:nth-child(3){ animation-delay: .3s; }
@keyframes typingDot{
  0%, 60%, 100%{ opacity: .3; transform: translateY(0); }
  30%{ opacity: 1; transform: translateY(-3px); }
}
.bubble.audio{
  display: flex; align-items: center; gap: 8px;
  min-width: 180px;
}
.bubble.audio .play{
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
}
.bubble.audio .wave{
  flex: 1; height: 16px;
  background-image: linear-gradient(90deg, rgba(255,255,255,.4) 0 2px, transparent 2px 4px);
  background-size: 4px 16px;
  background-position: 0 50%;
  background-repeat: repeat-x;
}
.bubble.product{
  padding: 4px 4px 6px;
  max-width: 240px;
}
.bubble.product .pimg{
  height: 130px; border-radius: 6px;
  background: linear-gradient(135deg, #8b6940, #4a3320);
  position: relative;
  overflow: hidden;
}
.bubble.product .pimg::before{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,.2), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(0,0,0,.3), transparent 60%);
}
.bubble.product .ptxt{ padding: 6px 6px 0; }
.bubble.product .pname{ font-size: 12.5px; font-weight: 600; color: #e9edef; }
.bubble.product .pprice{ font-size: 13px; color: #25d366; font-weight: 700; margin-top: 2px;}

.wa-input{
  padding: 8px 10px;
  background: #1f2c33;
  display: flex; align-items: center; gap: 8px;
}
.wa-input-box{
  flex: 1;
  background: #2a3942;
  color: #8696a0;
  padding: 9px 14px;
  border-radius: 20px;
  font-size: 13px;
}
.wa-send{
  width: 38px; height: 38px; border-radius: 50%;
  background: #25d366;
  color: #052e17;
  display: flex; align-items: center; justify-content: center;
}

/* floating cards */
.float-card{
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: rgba(17,20,27,.95);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.5);
  z-index: 3;
}
.float-card-1{ top: 80px; left: -50px; animation: floatY 6s ease-in-out infinite reverse; }
.float-card-2{ bottom: 100px; right: -40px; animation: floatY 7s ease-in-out infinite; animation-delay: -2s; }
.fc-icon{
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(37,211,102,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.fc-title{ font-size: 13px; font-weight: 700; }
.fc-sub{ font-size: 11.5px; color: var(--muted); }


/* ============ TRUST STRIP ============ */
.trust{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.015);
}
.trust-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 28px;
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label{
  font-size: 12px; color: var(--muted-2);
  text-transform: uppercase; letter-spacing: .1em; font-weight: 600;
  margin-right: 6px;
}
.trust-pill{
  font-size: 13px; color: var(--muted);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}


/* ============ Shared section heads ============ */
.eyebrow{
  display: inline-block;
  font-size: 12px;
  color: var(--wa);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow-light{ color: rgba(255,255,255,.7); }
.h2{
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 800;
}
.h2-light{ color: #fff; }
.section-head{ text-align: center; margin-bottom: 56px; }
.section-sub{ color: var(--muted); margin-top: 14px; font-size: 16px; }
.lead{
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 18px;
}
.lead-light{ color: rgba(255,255,255,.75); }
.lead b{ color: var(--text); font-weight: 600; }


/* ============ PROBLEMA ============ */
.problema{
  padding: 110px 0;
}
.problema-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.problema-stats{
  display: flex; flex-direction: column; gap: 16px;
}
.pstat{
  padding: 22px 26px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,0));
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 22px;
  transition: transform .25s var(--ease-out), border-color .25s;
}
.pstat:hover{ transform: translateY(-2px); border-color: var(--line-2); }
.pstat-big{
  font-size: 42px; font-weight: 800; letter-spacing: -.03em;
  color: var(--text);
  min-width: 110px;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
}
.pstat-text{
  font-size: 14px; color: var(--muted);
  line-height: 1.5;
}


/* ============ COMO FUNCIONA ============ */
.como{
  padding: 110px 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
}
.steps{
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
}
.step{
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease-out), border-color .25s;
}
.step:hover{ transform: translateY(-3px); border-color: var(--line-2); }
.step-num{
  font-family: 'Instrument Serif', serif;
  font-size: 16px;
  color: var(--wa);
  margin-bottom: 16px;
  letter-spacing: .1em;
}
.step-icon{
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,211,102,.08);
  border-radius: 12px;
  margin-bottom: 18px;
  color: var(--wa);
}
.step-icon svg{ width: 22px; height: 22px; }
.step h3{
  font-size: 18px; font-weight: 700;
  margin-bottom: 8px; letter-spacing: -.01em;
}
.step p{ font-size: 14.5px; color: var(--muted); }
.step-arrow{
  width: 60px; align-self: center; color: var(--muted-2);
  opacity: .6;
}
.step-arrow svg{ width: 100%; height: auto; }


/* ============ SERVICOS ============ */
.servicos{ padding: 110px 0; }
.cards-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.scard{
  position: relative;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease-out), border-color .3s, background .3s;
}
.scard:hover{
  transform: translateY(-4px);
  border-color: var(--line-2);
  background: var(--panel-2);
}
.scard.featured{
  background: linear-gradient(180deg, rgba(37,211,102,.08), rgba(37,211,102,0) 60%), var(--panel);
  border-color: rgba(37,211,102,.25);
}
.scard-tag{
  position: absolute; top: 16px; right: 16px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wa);
  padding: 4px 10px;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.25);
  border-radius: 100px;
}
.scard-icon{
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--silver-1);
}
.scard.featured .scard-icon{
  background: rgba(37,211,102,.12);
  border-color: rgba(37,211,102,.3);
  color: var(--wa);
}
.scard-icon svg{ width: 22px; height: 22px; }
.scard h3{
  font-size: 19px; font-weight: 700;
  margin-bottom: 10px; letter-spacing: -.01em;
}
.scard p{
  font-size: 14.5px; color: var(--muted);
  margin-bottom: 16px;
}
.scard-list{
  list-style: none;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.scard-list li{
  font-size: 13.5px; color: var(--muted);
  padding: 6px 0 6px 22px;
  position: relative;
}
.scard-list li::before{
  content: "";
  position: absolute; left: 0; top: 12px;
  width: 12px; height: 2px;
  background: var(--wa);
  border-radius: 2px;
}


/* ============ TOTEM ============ */
.totem{
  position: relative;
  padding: 120px 0 130px;
  overflow: hidden;
  background:
    radial-gradient(60% 80% at 100% 50%, rgba(37,211,102,.08), transparent 60%),
    linear-gradient(180deg, #0a0c10 0%, #050608 100%);
  border-top: 1px solid var(--line);
}
.totem-bg{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(0deg, transparent 24%, rgba(255,255,255,.02) 25%, rgba(255,255,255,.02) 26%, transparent 27%, transparent 74%, rgba(255,255,255,.02) 75%, rgba(255,255,255,.02) 76%, transparent 77%),
    linear-gradient(90deg, transparent 24%, rgba(255,255,255,.02) 25%, rgba(255,255,255,.02) 26%, transparent 27%, transparent 74%, rgba(255,255,255,.02) 75%, rgba(255,255,255,.02) 76%, transparent 77%);
  background-size: 50px 50px;
  opacity: .5;
  pointer-events: none;
}
.totem-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.totem-feats{
  list-style: none;
  margin: 28px 0;
}
.totem-feats li{
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  color: rgba(255,255,255,.85);
  font-size: 15.5px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.totem-feats li:last-child{ border-bottom: none; }
.totem-feats svg{ color: var(--wa); flex-shrink: 0; }
.totem-ctas{ display: flex; flex-wrap: wrap; gap: 12px; }

/* The kiosk */
.totem-visual{
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 600px;
}
.kiosk-ambient{
  position: absolute; inset: -30px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(37,211,102,.15), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.kiosk{
  position: relative;
  width: 320px;
  z-index: 1;
}
.kiosk-tablet{
  width: 320px;
  height: 460px;
  background: linear-gradient(180deg, #2a2d35, #1a1c22);
  border-radius: 20px;
  padding: 14px;
  border: 1px solid #34373f;
  box-shadow:
    0 1px 0 rgba(255,255,255,.05) inset,
    0 30px 60px -20px rgba(0,0,0,.7),
    0 0 80px -10px rgba(37,211,102,.2);
  position: relative;
}
.kiosk-tablet::before{
  content: "";
  position: absolute; top: 50%; right: 6px; transform: translateY(-50%);
  width: 3px; height: 30px; background: #44474f; border-radius: 2px;
}
.kiosk-screen{
  background: linear-gradient(180deg, #0e1115, #16191f);
  width: 100%; height: 100%;
  border-radius: 10px;
  padding: 22px 20px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.kiosk-top{
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.kiosk-logo{ height: 26px; width: auto; filter: brightness(1.7); }
.kiosk-status{
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: rgba(255,255,255,.6);
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
}
.kiosk-prompt{
  font-size: 19px;
  line-height: 1.3;
  color: #fff;
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: -.01em;
}
.kiosk-prompt b{ color: var(--wa); font-weight: 700; }

.kiosk-chips{
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: auto;
}
.kiosk-chip{
  padding: 11px 14px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,.03);
  color: #fff;
  border-radius: 10px;
  text-align: left;
  font-size: 13.5px;
  font-weight: 500;
  transition: background .2s, border-color .2s, transform .2s;
}
.kiosk-chip:hover{
  background: rgba(37,211,102,.1);
  border-color: rgba(37,211,102,.3);
  transform: translateX(4px);
}

.kiosk-mic{
  display: flex; flex-direction: column; align-items: center;
  padding-top: 18px;
  position: relative;
}
.kiosk-mic-btn{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2adf6d, #15a553);
  color: #052e17;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  box-shadow: 0 8px 20px -5px rgba(37,211,102,.5);
}
.kiosk-mic-ring{
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5);
  top: 18px;
  animation: micRing 2s ease-out infinite;
}
.kiosk-mic-ring.delay{ animation-delay: 1s; }
@keyframes micRing{
  0%{ transform: scale(1); opacity: 1; }
  100%{ transform: scale(2.4); opacity: 0; }
}
.kiosk-mic-label{
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
}

.kiosk-neck{
  margin: -2px auto 0;
  width: 60px;
  height: 80px;
  background: linear-gradient(180deg, #1a1c22, #0e1014);
  border-left: 1px solid #2a2d35;
  border-right: 1px solid #2a2d35;
}
.kiosk-base{
  width: 240px;
  height: 30px;
  margin: 0 auto;
  background: linear-gradient(180deg, #2a2d35, #14161b);
  border-radius: 4px 4px 60% 60% / 4px 4px 100% 100%;
  border: 1px solid #34373f;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.6);
}
.kiosk-shadow{
  position: absolute;
  bottom: -20px; left: 50%; transform: translateX(-50%);
  width: 260px; height: 30px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.6), transparent 70%);
  filter: blur(8px);
  z-index: 0;
}


/* ============ PAINEL MOCKUP ============ */
.painel{
  padding: 110px 0;
  border-top: 1px solid var(--line);
}
.painel-mock{
  border: 1px solid var(--line-2);
  border-radius: 16px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.6);
  max-width: 1100px;
  margin: 0 auto;
}
.painel-chrome{
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: #0e1115;
  border-bottom: 1px solid var(--line);
}
.painel-chrome span{
  width: 11px; height: 11px; border-radius: 50%; background: #3a3f47;
}
.painel-chrome span:nth-child(1){ background: #ff5f57; }
.painel-chrome span:nth-child(2){ background: #febc2e; }
.painel-chrome span:nth-child(3){ background: #28c840; }
.painel-url{
  margin: 0 auto;
  font-size: 12px; color: var(--muted);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  padding: 4px 14px;
  border-radius: 6px;
}
.painel-body{
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 460px;
}
.painel-side{
  background: #0c0f14;
  padding: 18px 12px;
  border-right: 1px solid var(--line);
}
.painel-brand{
  display: flex; align-items: center; gap: 8px;
  padding: 4px 8px 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.painel-brand img{ width: 26px; filter: brightness(1.7); }
.painel-brand b{ font-size: 13px; display: block; }
.painel-brand small{ font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.painel-side nav{ display: flex; flex-direction: column; gap: 2px; padding-top: 6px; }
.painel-side a{
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  font-size: 13px;
  color: var(--muted);
  border-radius: 8px;
  cursor: pointer;
}
.painel-side a span{ font-size: 14px; }
.painel-side a em{
  margin-left: auto; font-size: 11px; padding: 1px 7px; background: var(--wa); color: #052e17; border-radius: 100px; font-weight: 700; font-family: inherit;
}
.painel-side a.active{ background: rgba(255,255,255,.05); color: var(--text); }
.painel-content{ padding: 22px 24px; }
.painel-head{
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap; gap: 12px;
}
.painel-head small{ font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em;}
.painel-head h4{ font-size: 20px; font-weight: 700; letter-spacing: -.01em; margin-top: 2px; }
.painel-quick{ display: flex; gap: 8px; }
.kpi{
  padding: 6px 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  color: var(--muted);
}
.kpi b{ color: var(--text); margin-right: 4px; }
.painel-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.painel-card{
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.panel-card-head{
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.panel-card-head b{ font-size: 13px; }
.panel-card-head small{ font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 6px;}
.chart{ width: 100%; height: 140px; }
.livelist{ display: flex; flex-direction: column; gap: 8px; }
.liveitem{
  display: flex; align-items: center; gap: 10px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.015);
}
.liveav{
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.livetxt{ flex: 1; min-width: 0; font-size: 12.5px; }
.livetxt b{ display: block; font-weight: 600;}
.livetxt span{ color: var(--muted); font-size: 11.5px; }
.livebadge{
  font-size: 10px; padding: 3px 8px; border-radius: 100px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
}
.livebadge.eggys{ background: rgba(37,211,102,.12); color: var(--wa); }
.livebadge.human{ background: rgba(244,162,97,.15); color: var(--warm); }
.livebadge.done{ background: rgba(255,255,255,.06); color: var(--muted); }


/* ============ COMPARATIVO (VS) ============ */
.vs{
  padding: 110px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(244,162,97,.06), transparent 60%),
    var(--bg-2);
}
.vs-grid{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}
.vs-card{
  position: relative;
  padding: 32px 28px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex; flex-direction: column;
}
.vs-human{
  background: linear-gradient(180deg, rgba(244,162,97,.04), transparent 60%), var(--panel);
  border-color: rgba(244,162,97,.18);
}
.vs-eggys{
  background: linear-gradient(180deg, rgba(37,211,102,.06), transparent 60%), var(--panel);
  border-color: rgba(37,211,102,.3);
  box-shadow: 0 30px 60px -20px rgba(37,211,102,.18);
}
.vs-tag{
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.vs-tag-human{
  color: var(--warm);
  background: rgba(244,162,97,.1);
  border: 1px solid rgba(244,162,97,.25);
}
.vs-tag-eggys{
  color: var(--wa);
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.3);
}
.vs-logo{ width: 16px; height: 16px; filter: brightness(1.7); }

.vs-amount{
  font-family: 'Instrument Serif', serif;
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 22px;
}
.vs-cur{ font-size: 18px; color: var(--muted); }
.vs-amount b{ font-size: 64px; font-weight: 400; letter-spacing: -.03em; line-height: 1; }
.vs-amount small{ font-size: 16px; color: var(--muted); font-family: 'Plus Jakarta Sans', sans-serif; }

.vs-list{
  list-style: none;
  flex: 1;
  margin-bottom: 22px;
}
.vs-list li{
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  line-height: 1.45;
  border-bottom: 1px dashed var(--line);
}
.vs-list li:last-child{ border-bottom: none; }
.vs-list li span{
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.vs-list li.bad{ color: rgba(236,237,238,.65); }
.vs-list li.bad span{ background: rgba(244,162,97,.15); color: var(--warm); }
.vs-list li.good{ color: var(--text); }
.vs-list li.good span{ background: rgba(37,211,102,.18); color: var(--wa); }
.vs-list li b{ color: var(--text); font-weight: 700; }

.vs-total{
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; align-items: baseline; justify-content: space-between;
}
.vs-total small{
  font-size: 11.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}
.vs-total b{
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--warm);
  letter-spacing: -.02em;
}
.vs-total-good b{ color: var(--wa); }

.vs-divider{
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.vs-divider::before{
  content: "";
  position: absolute;
  width: 1px;
  height: 80%;
  background: linear-gradient(180deg, transparent, var(--line-2), transparent);
}
.vs-circle{
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  color: var(--muted);
  letter-spacing: .05em;
  position: relative;
  box-shadow: 0 0 0 6px var(--bg-2);
}

.vs-savings{
  max-width: 1000px;
  margin: 36px auto 0;
  padding: 24px 28px;
  background: linear-gradient(180deg, rgba(37,211,102,.08), rgba(37,211,102,.02));
  border: 1px solid rgba(37,211,102,.3);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.vs-savings-line{
  font-size: 18px;
  line-height: 1.4;
  color: var(--text);
}
.vs-savings-line b{
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 32px;
  color: var(--wa);
  letter-spacing: -.02em;
  margin: 0 4px;
}
.vs-savings-line b sup{ font-size: 16px; vertical-align: super; }
.vs-savings-line em{ color: var(--wa); }

@media (max-width: 980px){
  .vs-grid{ grid-template-columns: 1fr; gap: 16px; }
  .vs-divider{ height: 30px; }
  .vs-divider::before{ width: 80%; height: 1px; background: linear-gradient(90deg, transparent, var(--line-2), transparent); }
  .vs-savings{ flex-direction: column; text-align: center; }
}

/* ============ PLANOS ============ */
.planos{ padding: 110px 0; border-top: 1px solid var(--line);}
.planos-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.plano{
  position: relative;
  padding: 32px 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease-out), border-color .25s;
}
.plano:hover{ transform: translateY(-4px); border-color: var(--line-2); }
.plano-featured{
  background: linear-gradient(180deg, rgba(37,211,102,.06), rgba(37,211,102,0) 50%), var(--panel);
  border-color: rgba(37,211,102,.3);
  transform: scale(1.02);
}
.plano-featured:hover{ transform: scale(1.02) translateY(-4px); }
.plano-tag{
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 5px 14px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: #052e17;
  background: var(--wa);
  border-radius: 100px;
}
.plano-name{ font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.plano-desc{ font-size: 13.5px; color: var(--muted); margin-bottom: 22px; min-height: 38px; }
.plano-price{
  font-family: 'Instrument Serif', serif;
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 24px;
}
.plano-price .cur{ font-size: 18px; color: var(--muted); }
.plano-price b{ font-size: 56px; font-weight: 400; letter-spacing: -.03em; }
.plano-price small{ font-size: 14px; color: var(--muted); font-family: 'Plus Jakarta Sans', sans-serif; }
.plano ul{ list-style: none; padding: 0 0 28px; flex: 1; }
.plano ul li{
  padding: 8px 0 8px 24px;
  font-size: 14px;
  color: rgba(236,237,238,.85);
  position: relative;
  border-bottom: 1px dashed var(--line);
}
.plano ul li:last-child{ border-bottom: none; }
.plano ul li::before{
  content: "";
  position: absolute; left: 0; top: 14px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--wa);
  border-bottom: 2px solid var(--wa);
  transform: rotate(-45deg);
}
.planos-note{
  text-align: center;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}
.planos-note a{ color: var(--wa); font-weight: 600; }


/* ============ FAQ ============ */
.faq{ padding: 100px 0; border-top: 1px solid var(--line); background: var(--bg-2); }
.faq-list{ max-width: 720px; margin: 0 auto; }
.faq-list details{
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.faq-list summary{
  list-style: none;
  cursor: pointer;
  padding: 18px 8px;
  font-size: 16px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker{ display: none; }
.faq-list .chev{
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  font-size: 18px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .25s, background .2s;
}
.faq-list details[open] .chev{
  transform: rotate(45deg);
  background: rgba(37,211,102,.1);
  border-color: rgba(37,211,102,.3);
  color: var(--wa);
}
.faq-list p{
  padding: 0 8px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.faq-list p b{ color: var(--text); font-weight: 600; }


/* ============ CTA FINAL ============ */
.cta-final{ padding: 100px 0; }
.cta-box{
  text-align: center;
  padding: 70px 28px;
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(37,211,102,.15), transparent 60%),
    linear-gradient(180deg, var(--panel) 0%, var(--bg) 100%);
  border: 1px solid var(--line-2);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.cta-box::before{
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .03 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .7;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.cta-box h2{
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: 12px;
}
.cta-box p{ color: var(--muted); font-size: 17px; margin-bottom: 30px; }
.cta-actions{ display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }


/* ============ FOOTER ============ */
.foot{
  border-top: 1px solid var(--line);
  padding: 60px 0 0;
}
.foot-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 50px;
}
.foot-brand{
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 17px;
  margin-bottom: 14px;
}
.foot-brand img{ height: 30px; filter: brightness(1.4); }
.foot-brand span{
  background: linear-gradient(180deg, var(--silver-1), var(--silver-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.foot-tag{ color: var(--muted); font-size: 14px; max-width: 240px; }
.foot h5{
  font-size: 12px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px;
  font-weight: 700;
}
.foot a{
  display: block;
  font-size: 14px;
  color: var(--muted);
  padding: 5px 0;
  transition: color .15s;
  cursor: pointer;
}
.foot a:hover{ color: var(--text); }
.foot-bottom{
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 28px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--muted-2);
  flex-wrap: wrap; gap: 8px;
}


/* ============ WHATSAPP FLOAT ============ */
.wa-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px 12px 14px;
  background: var(--wa);
  color: #052e17;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  box-shadow:
    0 20px 40px -10px rgba(37,211,102,.5),
    0 8px 20px -5px rgba(0,0,0,.3),
    0 1px 0 rgba(255,255,255,.2) inset;
  transition: transform .2s var(--ease-out), box-shadow .2s;
}
.wa-float:hover{
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 24px 50px -10px rgba(37,211,102,.6),
    0 10px 24px -5px rgba(0,0,0,.4),
    0 1px 0 rgba(255,255,255,.25) inset;
}
.wa-float-ring{
  position: absolute;
  inset: 0;
  border-radius: 100px;
  border: 2px solid var(--wa);
  animation: floatRing 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes floatRing{
  0%{ transform: scale(1); opacity: .6; }
  100%{ transform: scale(1.18); opacity: 0; }
}

/* ============ FOOTER contact ============ */
.foot-contact{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px 24px;
}
.foot-wa{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  background: rgba(37,211,102,.08);
  border: 1px solid rgba(37,211,102,.25);
  border-radius: 100px;
  color: var(--text) !important;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s, border-color .15s;
}
.foot-wa:hover{
  background: rgba(37,211,102,.14);
  border-color: rgba(37,211,102,.4);
}
.foot-wa svg{ color: var(--wa); }
.foot-wa b{ color: var(--wa); letter-spacing: .02em; }

@media (max-width: 640px){
  .wa-float-label{ display: none; }
  .wa-float{ padding: 14px; }
}

/* ============ MODAL LOGIN ============ */
.modal{
  position: fixed; inset: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease-out);
}
.modal[aria-hidden="false"]{
  opacity: 1;
  pointer-events: auto;
}
.modal-backdrop{
  position: absolute; inset: 0;
  background: rgba(5,6,8,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal-card{
  position: relative;
  width: 100%; max-width: 440px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 36px 32px 32px;
  box-shadow:
    0 50px 100px -20px rgba(0,0,0,.7),
    0 0 60px -10px rgba(37,211,102,.15),
    0 1px 0 rgba(255,255,255,.06) inset;
  transform: translateY(20px) scale(.97);
  transition: transform .35s var(--ease-out);
}
.modal[aria-hidden="false"] .modal-card{ transform: translateY(0) scale(1); }

.modal-close{
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: background .2s, color .2s;
}
.modal-close:hover{ background: rgba(255,255,255,.05); color: var(--text); }

.modal-brand{
  display: flex; justify-content: center;
  margin-bottom: 20px;
}
.modal-brand img{
  width: 60px;
  filter: brightness(1.7);
  animation: floatY 4s ease-in-out infinite;
}

.modal-card h3{
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 4px;
}
.modal-sub{
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.modal-tabs{
  display: flex;
  background: rgba(0,0,0,.3);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 24px;
  gap: 4px;
}
.mtab{
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--muted);
  transition: background .2s, color .2s;
}
.mtab.active{
  background: rgba(255,255,255,.06);
  color: var(--text);
  box-shadow: 0 1px 0 rgba(255,255,255,.05) inset;
}

.mform{ display: flex; flex-direction: column; gap: 16px; }
.mfield{ display: flex; flex-direction: column; gap: 7px; }
.mfield-head{ display: flex; align-items: center; justify-content: space-between; }
.mfield label{ font-size: 13px; color: var(--muted); font-weight: 500;}
.mctrl{
  display: flex; align-items: center; gap: 10px;
  padding: 0 14px;
  background: rgba(0,0,0,.3);
  border: 1px solid var(--line-2);
  border-radius: 11px;
  transition: border-color .15s, background .15s;
}
.mctrl:focus-within{
  border-color: var(--wa);
  background: rgba(0,0,0,.45);
  box-shadow: 0 0 0 3px rgba(37,211,102,.12);
}
.mctrl-ico{ color: var(--muted); flex-shrink: 0; }
.mctrl input{
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  padding: 13px 0;
  color: var(--text);
  font-family: inherit; font-size: 15px;
}
.mctrl input::placeholder{ color: var(--muted-2); }
.mctrl-eye{
  color: var(--muted);
  padding: 6px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.mctrl-eye:hover{ color: var(--text); background: rgba(255,255,255,.04); }

.mlink{
  font-size: 12.5px; color: var(--wa);
  font-weight: 600;
  padding: 2px;
}
.mlink:hover{ text-decoration: underline; }

.mremember{
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted);
  cursor: pointer;
  user-select: none;
  margin-top: 2px;
}
.mremember input{
  appearance: none;
  width: 18px; height: 18px;
  border: 1px solid var(--line-2);
  border-radius: 5px;
  background: rgba(0,0,0,.3);
  display: grid; place-items: center;
  transition: background .15s, border-color .15s;
}
.mremember input:checked{
  background: var(--wa);
  border-color: var(--wa);
}
.mremember input:checked::after{
  content: "";
  width: 9px; height: 5px;
  border-left: 2px solid #052e17;
  border-bottom: 2px solid #052e17;
  transform: rotate(-45deg) translate(1px, -1px);
}

.mbtn{ margin-top: 4px; }

.mfoot{
  text-align: center;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}
.mfoot a, .mfoot .mlink{ color: var(--wa); font-weight: 600; }

.tablet-note{
  display: flex; gap: 12px;
  padding: 14px;
  background: rgba(37,211,102,.06);
  border: 1px solid rgba(37,211,102,.2);
  border-radius: 12px;
  margin-bottom: 6px;
}
.tablet-note svg{ color: var(--wa); flex-shrink: 0; margin-top: 2px; }
.tablet-note b{ display: block; font-size: 13px; margin-bottom: 2px; }
.tablet-note span{ font-size: 12.5px; color: var(--muted); }
.tablet-note i{ color: var(--text); font-style: normal; font-weight: 600; }

.pin-row{
  display: flex; align-items: center; gap: 6px;
}
.pin{
  width: 100%;
  max-width: 46px;
  aspect-ratio: 1;
  background: rgba(0,0,0,.3);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  text-align: center;
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  color: var(--text);
  outline: none;
  transition: border-color .15s, background .15s, transform .1s;
}
.pin:focus{
  border-color: var(--wa);
  background: rgba(0,0,0,.45);
  transform: scale(1.05);
  box-shadow: 0 0 0 3px rgba(37,211,102,.12);
}
.pin-sep{ color: var(--muted-2); font-weight: 700; padding: 0 2px; }


/* ============ SCROLL REVEAL ============ */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.in{
  opacity: 1;
  transform: none;
}


/* ============ RESPONSIVE ============ */
@media (max-width: 980px){
  .hero{ padding: 50px 0 70px; }
  .hero-inner{ grid-template-columns: 1fr; gap: 50px; }
  .hero-phone-wrap{ justify-self: center; transform: scale(.9); transform-origin: top center; }
  .nav-links{ display: none; }
  .problema-grid{ grid-template-columns: 1fr; gap: 40px; }
  .steps{
    grid-template-columns: 1fr;
  }
  .step-arrow{ transform: rotate(90deg); width: 30px; margin: 0 auto; }
  .cards-grid{ grid-template-columns: 1fr 1fr; }
  .totem-grid{ grid-template-columns: 1fr; gap: 60px; }
  .planos-grid{ grid-template-columns: 1fr; }
  .plano-featured{ transform: none; }
  .plano-featured:hover{ transform: translateY(-4px); }
  .foot-grid{ grid-template-columns: 1fr 1fr; }
  .painel-body{ grid-template-columns: 1fr; }
  .painel-side{ display: none; }
  .painel-row{ grid-template-columns: 1fr; }
}
@media (max-width: 640px){
  .container, .nav-inner, .hero-inner{ padding-left: 20px; padding-right: 20px; }
  .hero-proof{ flex-wrap: wrap; gap: 14px; }
  .proof-divider{ display: none; }
  .cards-grid{ grid-template-columns: 1fr; }
  .foot-grid{ grid-template-columns: 1fr; gap: 28px; }
  .float-card{ display: none; }
  .hero-phone-wrap{ width: 300px; }
  .phone{ width: 300px; height: 600px; }
  .modal-card{ padding: 30px 22px 24px; }
}
