/* Landing Page — Mone Lava & Seca */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--neutral-0); color: var(--fg); font-family: var(--font-sans); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===================== NAV ===================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav .inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav .logo img { height: 44px; display: block; }
.nav ul { display: flex; gap: 28px; list-style: none; padding: 0; margin: 0; }
.nav ul a { font-weight: 600; font-size: 15px; color: var(--fg); cursor: pointer; padding: 8px 4px; border-bottom: 2px solid transparent; transition: all .22s var(--ease-out); }
.nav ul a:hover { color: var(--brand-primary); }
.nav .nav-cta { display: flex; gap: 10px; align-items: center; }
.nav .open-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--primary-50); color: var(--primary-800);
  font-size: 13px; font-weight: 700;
}
.nav .open-pill .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--primary-500); box-shadow: 0 0 0 4px rgba(106,177,161,.18); animation: pulseDot 2s var(--ease-out) infinite; }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 4px rgba(106,177,161,.18); } 50% { box-shadow: 0 0 0 8px rgba(106,177,161,0); } }

/* ===================== BUTTONS ===================== */
.btn { font-family: inherit; font-weight: 700; font-size: 15px; border: 0; cursor: pointer; transition: all .22s var(--ease-out); display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; }
.btn svg { width: 18px; height: 18px; stroke-width: 2.25; }
.btn-primary { background: var(--primary-500); color: #fff; padding: 14px 26px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-600); box-shadow: var(--shadow-brand); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }
.btn-accent { background: var(--accent-500); color: #fff; padding: 14px 26px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--accent-600); box-shadow: var(--shadow-accent); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--fg-strong); padding: 13px 22px; border-radius: 16px; border: 1.5px solid var(--border-strong); }
.btn-ghost:hover { background: var(--primary-50); border-color: var(--primary-300); color: var(--primary-700); }
.btn-on-dark { background: #fff; color: var(--accent-700); padding: 14px 26px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.btn-on-dark:hover { background: var(--primary-50); transform: translateY(-2px); }
.btn-lg { padding: 18px 32px; font-size: 17px; }

/* ===================== HERO ===================== */
.hero { position: relative; padding: 88px 0 100px; overflow: hidden; background: var(--primary-50); }
.hero::before { content: ""; position: absolute; right: -240px; top: -180px; width: 760px; height: 760px; border-radius: 50%; background: radial-gradient(circle, var(--primary-100) 0%, transparent 65%); opacity: .9; z-index: 0; pointer-events: none; }
.hero::after { content: ""; position: absolute; left: -180px; bottom: -200px; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(240,226,231,.85) 0%, transparent 70%); z-index: 0; pointer-events: none; }
.hero .grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; }
.hero .eyebrow-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; background: #fff; color: var(--primary-800);
  border-radius: 999px; font-size: 12px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: var(--shadow-xs); border: 1px solid var(--primary-100);
}
.hero .eyebrow-chip svg { width: 14px; height: 14px; color: var(--primary-600); }
.hero h1 {
  font-size: 68px; font-weight: 900; line-height: 1.02;
  letter-spacing: -0.025em; margin: 22px 0 18px; color: var(--fg-strong);
}
.hero h1 em { font-style: normal; color: var(--brand-primary); }
.hero p.lead { font-size: 19px; color: var(--fg-muted); line-height: 1.6; max-width: 520px; margin: 0 0 32px; }
.hero .ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero quick info row */
.hero .meta-row { display: flex; gap: 22px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--primary-200); }
.hero .meta-row .meta { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--fg-muted); font-weight: 600; }
.hero .meta-row .meta svg { width: 18px; height: 18px; color: var(--primary-600); stroke-width: 2.25; }

/* Hero visual: stylized machine illustration */
.hero .visual {
  position: relative; height: 540px;
  display: flex; align-items: center; justify-content: center;
}
.hero .machine-stage {
  position: relative; width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--primary-100) 0%, var(--secondary-100) 100%);
  border-radius: 36px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
}
.hero .bubble {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: rgba(255,255,255,.55);
  animation: floaty 7s var(--ease-in-out) infinite;
}
.hero .bubble.b1 { width: 90px; height: 90px; top: 18%; left: 14%; animation-delay: 0s; }
.hero .bubble.b2 { width: 50px; height: 50px; top: 70%; left: 22%; animation-delay: 1.2s; background: rgba(208,176,225,.5); }
.hero .bubble.b3 { width: 28px; height: 28px; top: 28%; right: 18%; animation-delay: .6s; }
.hero .bubble.b4 { width: 64px; height: 64px; bottom: 12%; right: 14%; animation-delay: 2s; background: rgba(255,255,255,.45); }
@keyframes floaty {
  0%,100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-14px) translateX(6px); }
}
.hero .machine-illo {
  position: relative; width: 360px; height: 440px;
  filter: drop-shadow(0 20px 40px rgba(72, 50, 90, 0.18));
  z-index: 2;
}
.hero .machine-illo .body {
  position: absolute; inset: 0;
  background: #fff; border-radius: 32px;
  border: 4px solid var(--neutral-800);
}
.hero .machine-illo .top-bar {
  position: absolute; top: 22px; left: 22px; right: 22px; height: 56px;
  background: var(--primary-100); border-radius: 18px;
  display: flex; align-items: center; justify-content: space-between; padding: 0 18px;
}
.hero .machine-illo .top-bar .led { display: flex; gap: 8px; }
.hero .machine-illo .top-bar .led i { width: 10px; height: 10px; border-radius: 999px; background: var(--primary-500); }
.hero .machine-illo .top-bar .led i:nth-child(2) { background: var(--accent-300); }
.hero .machine-illo .top-bar .led i:nth-child(3) { background: var(--neutral-300); }
.hero .machine-illo .top-bar .screen {
  background: var(--neutral-900); color: var(--primary-300);
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  padding: 4px 12px; border-radius: 8px; letter-spacing: .04em;
}
.hero .machine-illo .door {
  position: absolute; left: 50%; top: 52%;
  transform: translate(-50%, -50%);
  width: 240px; height: 240px; border-radius: 50%;
  background: var(--neutral-800);
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 8px var(--neutral-700);
}
.hero .machine-illo .door .glass {
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--primary-100) 0%, var(--primary-200) 60%, var(--primary-300) 100%);
  position: relative; overflow: hidden;
  box-shadow: inset 0 0 30px rgba(72,50,90,.25);
}
.hero .machine-illo .door .glass::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 75%, rgba(255,255,255,.7) 0%, transparent 14%),
    radial-gradient(circle at 30% 60%, rgba(255,255,255,.5) 0%, transparent 8%),
    radial-gradient(circle at 55% 40%, rgba(255,255,255,.6) 0%, transparent 10%);
  animation: bubblesIn 4s var(--ease-in-out) infinite;
}
@keyframes bubblesIn {
  0%,100% { transform: translateY(0); opacity: .9; }
  50% { transform: translateY(-8px); opacity: 1; }
}
.hero .machine-illo .door .clothes {
  position: absolute; left: 14%; bottom: 18%;
  width: 72%; height: 38%;
  background:
    radial-gradient(ellipse at 30% 40%, var(--accent-200) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, var(--primary-300) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 70%, var(--secondary-300) 0%, transparent 65%);
  border-radius: 50%; filter: blur(2px);
  animation: tumble 6s linear infinite;
  transform-origin: center;
}
@keyframes tumble {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}
.hero .machine-illo .badge-bottom {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  background: var(--neutral-900); color: var(--primary-300);
  font-weight: 800; font-size: 13px; letter-spacing: .08em;
  padding: 6px 16px; border-radius: 999px;
}

/* Floating stat cards */
.hero .stat {
  position: absolute; background: #fff; border-radius: 18px;
  box-shadow: var(--shadow-lg); padding: 14px 18px;
  display: flex; gap: 12px; align-items: center; z-index: 3;
  border: 1px solid var(--border);
}
.hero .stat .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.hero .stat .ic svg { width: 22px; height: 22px; stroke-width: 2.25; }
.hero .stat b { display: block; font-size: 15px; font-weight: 800; color: var(--fg-strong); line-height: 1.2; }
.hero .stat span { font-size: 12px; color: var(--fg-muted); }
.hero .stat-1 { left: -10px; top: 64px; }
.hero .stat-1 .ic { background: var(--primary-100); color: var(--primary-700); }
.hero .stat-2 { right: -16px; bottom: 80px; }
.hero .stat-2 .ic { background: var(--accent-100); color: var(--accent-600); }
.hero .stat-3 { left: 16px; bottom: 36px; }
.hero .stat-3 .ic { background: var(--secondary-200); color: var(--accent-600); }

/* ===================== SECTION HEADS ===================== */
section { padding: 96px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; background: var(--accent-50); color: var(--brand-accent);
  border-radius: 999px; font-size: 12px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-head h2 { font-size: 44px; font-weight: 900; letter-spacing: -0.025em; margin: 0 0 14px; color: var(--fg-strong); text-wrap: balance; line-height: 1.05; }
.section-head h2 em { font-style: normal; color: var(--brand-primary); }
.section-head p { font-size: 18px; color: var(--fg-muted); margin: 0; line-height: 1.6; text-wrap: pretty; }

.bg-soft { background: var(--secondary-100); }
.bg-primary-soft { background: var(--primary-50); }

/* ===================== PROBLEMA ===================== */
.problema .layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.problema .copy h2 { font-size: 44px; font-weight: 900; line-height: 1.05; letter-spacing: -0.025em; margin: 0 0 18px; color: var(--fg-strong); }
.problema .copy h2 em { font-style: normal; color: var(--accent-500); }
.problema .copy p { font-size: 18px; color: var(--fg-muted); line-height: 1.65; margin: 0; }
.problema .compare {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px;
  align-items: stretch;
}
.problema .col {
  background: #fff; border-radius: 24px; padding: 28px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 14px;
}
.problema .col.before { background: var(--neutral-50); }
.problema .col.after { background: #fff; border: 2px solid var(--primary-200); box-shadow: var(--shadow-md); }
.problema .col h4 { margin: 0; font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.problema .col.before h4 { color: var(--neutral-500); }
.problema .col.after h4 { color: var(--brand-primary); }
.problema .col li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--fg); line-height: 1.5;
  list-style: none;
}
.problema .col ul { padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.problema .col .marker {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  margin-top: 1px;
}
.problema .col.before .marker { background: var(--secondary-300); color: var(--accent-800); }
.problema .col.after .marker { background: var(--primary-500); color: #fff; }
.problema .col .marker svg { width: 14px; height: 14px; stroke-width: 3; }
.problema .arrow {
  display: grid; place-items: center; align-self: center;
  width: 56px; height: 56px; background: var(--primary-500); color: #fff;
  border-radius: 999px; box-shadow: var(--shadow-brand);
}
.problema .arrow svg { width: 24px; height: 24px; stroke-width: 2.5; }

/* ===================== COMO FUNCIONA ===================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 76px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(to right, var(--primary-300) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  background: #fff; border-radius: 24px; padding: 32px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  position: relative; z-index: 1;
  transition: all .22s var(--ease-out);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-200); }
.step .num-ic {
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
}
.step .num-ic .num {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--primary-500); color: #fff;
  display: grid; place-items: center;
  font-weight: 900; font-size: 18px;
  box-shadow: 0 4px 12px rgba(106,177,161,.4);
}
.step .num-ic .ic {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--primary-50); color: var(--primary-700);
  display: grid; place-items: center;
  margin-left: auto;
}
.step .num-ic .ic svg { width: 28px; height: 28px; stroke-width: 1.75; }
.step .label { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-accent); margin-bottom: 6px; }
.step h3 { font-size: 22px; font-weight: 800; margin: 0 0 10px; color: var(--fg-strong); line-height: 1.2; }
.step p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; margin: 0; }

/* ===================== DIFERENCIAIS ===================== */
.diferenciais .grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 1080px; margin: 0 auto; }
.dif-card {
  background: #fff; border-radius: 24px; padding: 32px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  display: flex; gap: 22px; align-items: flex-start;
  transition: all .22s var(--ease-out);
}
.dif-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary-200); }
.dif-card .ic-wrap {
  width: 64px; height: 64px; border-radius: 18px; flex-shrink: 0;
  display: grid; place-items: center;
}
.dif-card .ic-wrap svg { width: 32px; height: 32px; stroke-width: 1.75; }
.dif-card.k1 .ic-wrap { background: var(--primary-100); color: var(--primary-700); }
.dif-card.k2 .ic-wrap { background: var(--accent-100); color: var(--accent-600); }
.dif-card.k3 .ic-wrap { background: var(--secondary-200); color: var(--accent-700); }
.dif-card.k4 .ic-wrap { background: var(--primary-100); color: var(--primary-700); }
.dif-card h3 { margin: 0 0 8px; font-size: 20px; font-weight: 800; color: var(--fg-strong); line-height: 1.25; }
.dif-card p { margin: 0; font-size: 15.5px; color: var(--fg-muted); line-height: 1.6; }

/* ===================== FIDELIDADE ===================== */
.fidelidade {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--accent-700) 0%, var(--accent-800) 100%);
  color: #fff;
}
.fidelidade::before {
  content: ""; position: absolute; right: -220px; top: -220px; width: 600px; height: 600px;
  border-radius: 50%; background: radial-gradient(circle, rgba(208,176,225,.25) 0%, transparent 70%);
  pointer-events: none;
}
.fidelidade::after {
  content: ""; position: absolute; left: -160px; bottom: -180px; width: 480px; height: 480px;
  border-radius: 50%; background: radial-gradient(circle, rgba(106,177,161,.18) 0%, transparent 70%);
  pointer-events: none;
}
.fidelidade .layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.fidelidade .eyebrow-chip {
  display: inline-flex; padding: 6px 14px;
  background: rgba(255,255,255,.12); color: var(--accent-200);
  border-radius: 999px; font-size: 12px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.fidelidade h2 { font-size: 48px; font-weight: 900; letter-spacing: -0.025em; line-height: 1.05; margin: 18px 0 18px; color: #fff; }
.fidelidade .copy > p { font-size: 18px; line-height: 1.65; color: var(--accent-100); margin: 0 0 28px; max-width: 520px; }
.fidelidade .slogan {
  display: inline-block;
  font-size: 22px; font-weight: 900; letter-spacing: 0.14em;
  color: var(--primary-300); padding: 14px 22px;
  border: 2px dashed rgba(106,177,161,.5); border-radius: 16px;
  margin-bottom: 24px;
}
.fidelidade .note {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--accent-200);
  line-height: 1.55; max-width: 520px;
}
.fidelidade .note svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--accent-300); }

/* Stamp card */
.stamp-card {
  background: #fff; border-radius: 28px; padding: 32px;
  box-shadow: var(--shadow-lg); color: var(--fg);
  position: relative;
}
.stamp-card .top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.stamp-card .top h4 { margin: 0 0 4px; font-size: 18px; font-weight: 800; color: var(--fg-strong); }
.stamp-card .top span { font-size: 13px; color: var(--fg-muted); }
.stamp-card .top .progress-num { font-size: 32px; font-weight: 900; color: var(--brand-primary); letter-spacing: -.02em; line-height: 1; }
.stamp-card .top .progress-num small { font-size: 14px; color: var(--fg-muted); font-weight: 700; }
.stamp-card .grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.stamp {
  aspect-ratio: 1; border-radius: 50%;
  background: var(--neutral-100); border: 2px dashed var(--neutral-300);
  display: grid; place-items: center;
  position: relative;
}
.stamp svg { width: 22px; height: 22px; color: var(--neutral-400); stroke-width: 2; }
.stamp.done {
  background: var(--primary-500); border: 2px solid var(--primary-600);
  box-shadow: 0 6px 14px -4px rgba(106,177,161,.6);
}
.stamp.done svg { color: #fff; }
.stamp.last {
  background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
  border: 2px solid var(--accent-700);
  box-shadow: 0 6px 16px -4px rgba(138,77,176,.6);
}
.stamp.last svg { color: #fff; }
.stamp-card .reward {
  margin-top: 24px; padding: 16px;
  background: var(--primary-50); border-radius: 16px;
  display: flex; gap: 12px; align-items: center;
  border: 1px solid var(--primary-200);
}
.stamp-card .reward .gift {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--primary-500); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.stamp-card .reward b { font-size: 14px; color: var(--primary-800); display: block; }
.stamp-card .reward span { font-size: 13px; color: var(--primary-700); }

/* ===================== PREÇOS ===================== */
.precos .intro { text-align: center; font-size: 16px; color: var(--fg-muted); margin: 0 auto; max-width: 540px; }
.price-card {
  background: #fff; border-radius: 28px;
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
  overflow: hidden; max-width: 880px; margin: 0 auto;
}
.price-card .head {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  background: var(--neutral-900); color: #fff;
  padding: 18px 28px;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.price-card .head .col-time { display: flex; align-items: center; gap: 8px; }
.price-card .head .col-time svg { width: 14px; height: 14px; }
.price-card .head .col-time.night { color: var(--accent-200); }
.price-card .row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  padding: 22px 28px; align-items: center;
  border-bottom: 1px solid var(--border);
}
.price-card .row:last-child { border-bottom: 0; }
.price-card .row.featured { background: var(--primary-50); }
.price-card .machine-name { display: flex; align-items: center; gap: 14px; }
.price-card .machine-name .ic {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--primary-100); color: var(--primary-700);
  display: grid; place-items: center; flex-shrink: 0;
}
.price-card .row.featured .machine-name .ic { background: #fff; box-shadow: var(--shadow-xs); }
.price-card .machine-name .ic svg { width: 24px; height: 24px; stroke-width: 1.75; }
.price-card .machine-name b { display: block; font-size: 17px; color: var(--fg-strong); font-weight: 800; }
.price-card .machine-name span { font-size: 13px; color: var(--fg-muted); }
.price-card .price { font-size: 24px; font-weight: 900; color: var(--fg-strong); letter-spacing: -.02em; }
.price-card .price small { font-size: 13px; font-weight: 700; color: var(--fg-muted); margin-left: 4px; }
.price-card .price.night { color: var(--accent-600); }
.price-card .footnote {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 18px 28px; background: var(--secondary-100);
  font-size: 14px; color: var(--fg-muted); line-height: 1.5;
  border-top: 1px solid var(--border);
}
.price-card .footnote svg { width: 18px; height: 18px; color: var(--accent-500); flex-shrink: 0; margin-top: 1px; }
.precos .below-cta { text-align: center; margin-top: 36px; }

/* ===================== FAQ ===================== */
.faq {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  max-width: 1040px; margin: 0 auto;
}
.q {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 20px 24px; transition: all .22s var(--ease-out);
}
.q:hover { border-color: var(--primary-200); }
.q[open] { border-color: var(--primary-300); box-shadow: var(--shadow-sm); }
.q summary {
  font-weight: 700; font-size: 16px; color: var(--fg-strong);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.q summary::-webkit-details-marker { display: none; }
.q summary .plus {
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--accent-50); color: var(--brand-accent);
  display: grid; place-items: center; flex-shrink: 0;
  font-weight: 900; font-size: 18px; line-height: 1;
  transition: transform .22s var(--ease-out);
}
.q[open] summary .plus { transform: rotate(45deg); background: var(--brand-accent); color: #fff; }
.q p { margin: 14px 0 0; color: var(--fg-muted); font-size: 15px; line-height: 1.6; }

/* ===================== LOCAL / CTA FINAL ===================== */
.local-band {
  background: #fff; border-radius: 32px;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.1fr;
}
.local-band .info { padding: 56px 56px 56px 56px; }
.local-band h2 { font-size: 42px; font-weight: 900; letter-spacing: -0.025em; line-height: 1.05; margin: 14px 0 28px; color: var(--fg-strong); text-wrap: balance; }
.local-band h2 em { font-style: normal; color: var(--brand-primary); }
.info-row { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.info-row .ic {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--primary-50); color: var(--primary-700);
}
.info-row.k2 .ic { background: var(--accent-50); color: var(--accent-600); }
.info-row.k3 .ic { background: var(--secondary-200); color: var(--accent-700); }
.info-row .ic svg { width: 22px; height: 22px; stroke-width: 2; }
.info-row .label { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 4px; }
.info-row .value { font-size: 16px; font-weight: 600; color: var(--fg-strong); line-height: 1.5; }
.local-band .map {
  background: #e8eef3 url("design-system/assets/map.png") center/cover no-repeat;
  position: relative;
  display: grid; place-items: center;
  min-height: 480px;
}
.local-band .map::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 60%, rgba(255,255,255,.25) 100%);
  pointer-events: none;
}
.local-band .pin {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.local-band .pin .marker {
  width: 64px; height: 64px; border-radius: 50% 50% 50% 0;
  background: var(--accent-500);
  transform: rotate(-45deg);
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
  position: relative;
}
.local-band .pin .marker::after {
  content: ""; width: 24px; height: 24px; border-radius: 50%; background: #fff;
}
.local-band .pin .pulse {
  position: absolute; left: 50%; top: 32px; width: 64px; height: 64px;
  margin-left: -32px; margin-top: -32px;
  border-radius: 50%; border: 3px solid var(--accent-500);
  animation: pingPulse 2s var(--ease-out) infinite;
}
@keyframes pingPulse {
  0% { transform: scale(.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}
.local-band .pin .label-bubble {
  background: #fff; border-radius: 12px;
  padding: 8px 14px; box-shadow: var(--shadow-md);
  font-size: 13px; font-weight: 700; color: var(--fg-strong);
}

/* ===================== FOOTER ===================== */
.footer { background: var(--neutral-900); color: var(--neutral-300); padding: 56px 0 32px; }
.footer .top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--neutral-700); }
.footer img { height: 44px; margin-bottom: 16px; }
.footer h4 { font-size: 13px; font-weight: 800; color: #fff; margin: 0 0 16px; letter-spacing: 0.08em; text-transform: uppercase; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul li { font-size: 14px; color: var(--neutral-400); line-height: 1.5; }
.footer .desc { font-size: 14px; line-height: 1.6; color: var(--neutral-400); max-width: 320px; margin: 0; }
.footer .bottom { padding-top: 24px; display: flex; justify-content: space-between; font-size: 13px; color: var(--neutral-500); flex-wrap: wrap; gap: 12px; }

/* ===================== Reveal animations ===================== */
.reveal { opacity: 0; transform: translateY(24px); transition: all .6s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===================== Responsive ===================== */

/* Tablet */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .hero h1 { font-size: 54px; }
  .section-head h2 { font-size: 36px; }
  .diferenciais .grid { gap: 18px; }
  .steps { gap: 18px; }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .container { padding: 0 18px; }

  /* NAV — keep sticky, compact, hide menu, keep "Aberto" pill + CTA visible */
  .nav .inner { height: 64px; }
  .nav .logo img { height: 36px; }
  .nav ul { display: none; }
  .nav .nav-cta .btn-ghost,
  .nav .nav-cta .btn-primary { padding: 10px 14px; font-size: 13px; }
  .nav .nav-cta .btn svg { width: 14px; height: 14px; }
  .nav .open-pill { padding: 6px 10px; font-size: 11px; }
  .nav .open-pill .dot { width: 7px; height: 7px; }

  /* HERO — single column, big text, illustration smaller, only 1 stat card */
  .hero { padding: 40px 0 56px; }
  .hero .grid { grid-template-columns: 1fr; gap: 32px; }
  .hero .eyebrow-chip { font-size: 11px; padding: 6px 12px; }
  .hero h1 { font-size: 38px; line-height: 1.05; margin: 16px 0 14px; }
  .hero p.lead { font-size: 17px; max-width: 100%; margin: 0 0 24px; }
  .hero .ctas { flex-direction: column; align-items: stretch; }
  .hero .ctas .btn { width: 100%; justify-content: center; }
  .hero .meta-row {
    flex-wrap: wrap; gap: 12px 18px; margin-top: 24px; padding-top: 20px;
  }
  .hero .meta-row .meta { font-size: 13px; }
  .hero .visual { height: 380px; }
  .hero .machine-stage { border-radius: 28px; }
  .hero .machine-illo { width: 240px; height: 320px; }
  .hero .machine-illo .top-bar { height: 44px; left: 16px; right: 16px; top: 16px; padding: 0 14px; }
  .hero .machine-illo .top-bar .screen { font-size: 11px; padding: 3px 9px; }
  .hero .machine-illo .door { width: 170px; height: 170px; }
  .hero .machine-illo .door .glass { width: 140px; height: 140px; }
  .hero .machine-illo .badge-bottom { font-size: 11px; padding: 5px 12px; bottom: 16px; }
  .hero .stat { padding: 10px 14px; border-radius: 14px; }
  .hero .stat .ic { width: 36px; height: 36px; border-radius: 10px; }
  .hero .stat .ic svg { width: 18px; height: 18px; }
  .hero .stat b { font-size: 13px; }
  .hero .stat span { font-size: 11px; }
  .hero .stat-1 { left: 4px; top: 8px; }
  .hero .stat-2 { right: 4px; bottom: 16px; }
  .hero .stat-3 { display: none; }
  .hero::before { width: 480px; height: 480px; right: -180px; top: -120px; }
  .hero::after { display: none; }

  /* SECTION HEADS */
  section { padding: 56px 0; }
  .section-head { margin: 0 auto 36px; }
  .section-head h2 { font-size: 30px; }
  .section-head p { font-size: 16px; }

  /* PROBLEMA */
  .problema .layout { grid-template-columns: 1fr; gap: 28px; }
  .problema .copy h2 { font-size: 30px; }
  .problema .copy p { font-size: 16px; }
  .problema .compare { grid-template-columns: 1fr; gap: 12px; }
  .problema .arrow { transform: rotate(90deg); justify-self: center; width: 44px; height: 44px; }
  .problema .arrow svg { width: 20px; height: 20px; }
  .problema .col { padding: 22px; border-radius: 20px; }
  .problema .col li { font-size: 14.5px; }

  /* COMO FUNCIONA */
  .steps { grid-template-columns: 1fr; gap: 14px; }
  .steps::before { display: none; }
  .step { padding: 24px 22px; border-radius: 20px; }
  .step .num-ic { margin-bottom: 16px; }
  .step .num-ic .num { width: 36px; height: 36px; font-size: 16px; }
  .step .num-ic .ic { width: 48px; height: 48px; border-radius: 14px; }
  .step .num-ic .ic svg { width: 24px; height: 24px; }
  .step h3 { font-size: 19px; }
  .step p { font-size: 14.5px; }

  /* DIFERENCIAIS */
  .diferenciais .grid { grid-template-columns: 1fr; gap: 14px; }
  .dif-card { padding: 22px; border-radius: 20px; gap: 16px; }
  .dif-card .ic-wrap { width: 52px; height: 52px; border-radius: 14px; }
  .dif-card .ic-wrap svg { width: 26px; height: 26px; }
  .dif-card h3 { font-size: 18px; }
  .dif-card p { font-size: 14.5px; }

  /* FIDELIDADE */
  .fidelidade .layout { grid-template-columns: 1fr; gap: 32px; }
  .fidelidade h2 { font-size: 32px; margin: 14px 0 14px; }
  .fidelidade .copy > p { font-size: 16px; }
  .fidelidade .slogan { font-size: 17px; padding: 12px 18px; letter-spacing: 0.1em; }
  .stamp-card { padding: 24px; border-radius: 22px; }
  .stamp-card .top h4 { font-size: 16px; }
  .stamp-card .top .progress-num { font-size: 26px; }
  .stamp-card .grid { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .stamp svg { width: 18px; height: 18px; }
  .stamp-card .reward { padding: 14px; }
  .stamp-card .reward .gift { width: 36px; height: 36px; }
  .stamp-card .reward b { font-size: 13.5px; }
  .stamp-card .reward span { font-size: 12.5px; }

  /* PREÇOS — re-stack as cards instead of table */
  .price-card { border-radius: 22px; }
  .price-card .head { display: none; }
  .price-card .row {
    grid-template-columns: 1fr; gap: 14px;
    padding: 22px; border-bottom: 1px solid var(--border);
  }
  .price-card .machine-name { gap: 12px; }
  .price-card .machine-name .ic { display: grid; width: 44px; height: 44px; }
  .price-card .machine-name .ic svg { width: 22px; height: 22px; }
  .price-card .machine-name b { font-size: 16px; }
  .price-card .machine-name span { font-size: 12.5px; }
  .price-card .price {
    display: flex; justify-content: space-between; align-items: baseline;
    font-size: 20px; padding: 10px 14px; background: var(--neutral-50);
    border-radius: 12px;
  }
  .price-card .price.night { background: var(--accent-50); }
  .price-card .price::before {
    content: "Diurno · 06h–23h59"; font-size: 11px; font-weight: 800;
    letter-spacing: .08em; text-transform: uppercase; color: var(--fg-muted);
  }
  .price-card .price.night::before { content: "Noturno · 00h–05h59"; color: var(--accent-600); }
  .price-card .price small { font-size: 12px; }
  .price-card .footnote { padding: 16px 22px; font-size: 13.5px; }

  /* FAQ */
  .faq { grid-template-columns: 1fr; gap: 10px; }
  .q { padding: 16px 18px; border-radius: 14px; }
  .q summary { font-size: 15px; gap: 10px; }
  .q summary .plus { width: 26px; height: 26px; font-size: 16px; }
  .q p { font-size: 14.5px; margin-top: 12px; }

  /* LOCAL */
  .local-band { grid-template-columns: 1fr; border-radius: 24px; }
  .local-band .info { padding: 28px 22px; order: 2; }
  .local-band .map { order: 1; min-height: 260px; }
  .local-band h2 { font-size: 28px; margin: 12px 0 22px; }
  .info-row { gap: 14px; margin-bottom: 18px; }
  .info-row .ic { width: 40px; height: 40px; }
  .info-row .value { font-size: 15px; }
  .local-band .info > div[style*="display:flex"] { flex-direction: column; }
  .local-band .info .btn { width: 100%; justify-content: center; }
  .local-band .pin .marker { width: 52px; height: 52px; }
  .local-band .pin .marker::after { width: 20px; height: 20px; }
  .local-band .pin .pulse { width: 52px; height: 52px; margin-left: -26px; margin-top: -26px; top: 26px; }

  /* FOOTER */
  .footer { padding: 40px 0 28px; }
  .footer .top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .footer img { height: 38px; }
  .footer .bottom { flex-direction: column; gap: 8px; font-size: 12px; }
}

/* Small phones (≤ 380px) */
@media (max-width: 380px) {
  .hero h1 { font-size: 32px; }
  .hero .visual { height: 320px; }
  .hero .machine-illo { width: 200px; height: 280px; }
  .hero .machine-illo .door { width: 145px; height: 145px; }
  .hero .machine-illo .door .glass { width: 120px; height: 120px; }
  .section-head h2 { font-size: 26px; }
  .problema .copy h2 { font-size: 26px; }
  .fidelidade h2 { font-size: 28px; }
  .local-band h2 { font-size: 24px; }
  .nav .nav-cta .btn-primary span,
  .nav .open-pill { display: none; }
}
