:root {
  --mh-primary: #8c57ff;
  --mh-primary-dark: #7c46f5;
  --mh-bg: #f5f2ff;
  --mh-text: #0f172a;
  --mh-muted: #64748b;
  --mh-border: #ece7ff;
  --mh-card: #ffffff;
  --mh-success: #25D366;
  --mh-shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.06);
  --mh-shadow-md: 0 18px 50px rgba(140, 87, 255, 0.18);
  --mh-shadow-lg: 0 28px 70px rgba(93, 56, 173, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, sans-serif;
  background: var(--mh-bg);
  color: var(--mh-text);
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }

.mh-page { min-height: 100vh; background: var(--mh-bg); color: var(--mh-text); }
.mh-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.mh-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mh-border);
}
.mh-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mh-brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.mh-brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(15,23,42,.08);
}
.mh-brand-title { font-size: 14px; font-weight: 700; }
.mh-brand-subtitle { font-size: 12px; color: var(--mh-muted); }

.mh-nav { display: flex; align-items: center; gap: 24px; font-size: 14px; color: #475569; }
.mh-nav a, .mh-footer-list a, .mh-mobile-menu a { transition: .25s ease; }
.mh-nav a:hover, .mh-footer-list a:hover, .mh-mobile-menu a:hover { color: var(--mh-primary-dark); }

.mh-header-actions { display: flex; align-items: center; gap: 12px; }
.mh-mobile-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid #ddd6fe;
  background: #fff;
  color: var(--mh-primary-dark);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.mh-mobile-menu {
  display: none;
  margin: 0 20px 16px;
  padding: 14px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--mh-border);
  box-shadow: 0 16px 40px rgba(15,23,42,.08);
}
.mh-mobile-menu.open { display: block; }
.mh-mobile-menu nav { display: flex; flex-direction: column; gap: 8px; }
.mh-mobile-menu a { padding: 10px 12px; border-radius: 12px; }
.mh-mobile-menu a:hover { background: #faf7ff; }

.mh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 700;
  border: 0;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
  cursor: pointer;
}
.mh-btn-primary {
  background: linear-gradient(135deg, var(--mh-primary), var(--mh-primary-dark));
  color: #fff;
  box-shadow: 0 14px 34px rgba(140,87,255,.28);
}
.mh-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(140,87,255,.34); }
.mh-btn-secondary {
  background: #fff;
  color: var(--mh-primary);
  border: 1px solid #d7c6ff;
}
.mh-btn-secondary:hover { background: #faf7ff; border-color: #c8b1ff; transform: translateY(-2px); }
.mh-btn-block { width: 100%; }
.mh-btn:disabled {
  background: #e2e8f0;
  color: #64748b;
  border-color: #e2e8f0;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.mh-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(140,87,255,.18), transparent 30%),
    radial-gradient(circle at left, rgba(140,87,255,.12), transparent 25%);
}
.mh-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0 96px;
}
.mh-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ddd6fe;
  color: var(--mh-primary-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  box-shadow: var(--mh-shadow-sm);
}
.mh-hero h1 {
  max-width: 680px;
  margin: 16px 0 0;
  font-size: 58px;
  line-height: 1.06;
  letter-spacing: -.03em;
}
.mh-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 19px;
  line-height: 1.75;
  color: #475569;
}
.mh-hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mh-mockup-wrap { position: relative; width: 100%; max-width: 520px; margin-left: auto; }
.mh-mockup-glow-1, .mh-mockup-glow-2 { position: absolute; border-radius: 999px; filter: blur(48px); }
.mh-mockup-glow-1 { width: 128px; height: 128px; left: -24px; top: 40px; background: rgba(167,139,250,.35); }
.mh-mockup-glow-2 { width: 160px; height: 160px; right: -20px; bottom: 40px; background: rgba(232,121,249,.30); }
.mh-mockup-back {
  position: absolute; inset: 0; transform: translate(24px,24px);
  border-radius: 34px; background: rgba(140,87,255,.14); filter: blur(22px);
}
.mh-mockup-tilt {
  position: absolute; inset: 0; transform: rotate(-4deg);
  border-radius: 34px; border: 1px solid rgba(196,181,253,.8);
  background: rgba(255,255,255,.7); backdrop-filter: blur(8px);
}
.mh-mockup {
  position: relative; z-index: 2; transform: rotate(2deg);
  overflow: hidden; border-radius: 34px;
  border: 1px solid rgba(15,23,42,.08); background: #0f172a;
  padding: 12px; box-shadow: 0 30px 90px rgba(24,24,40,.24);
  transition: transform .35s ease;
}
.mh-mockup:hover { transform: rotate(0); }
.mh-mockup-dots { display: flex; gap: 8px; padding: 2px 8px 12px; }
.mh-mockup-dots span { width: 10px; height: 10px; border-radius: 999px; }
.mh-dot-red { background: #fb7185; } .mh-dot-yellow { background: #fbbf24; } .mh-dot-green { background: #34d399; }
.mh-mockup-screen { overflow: hidden; border-radius: 24px; background: #fff; border: 1px solid rgba(255,255,255,.1); }
.mh-mockup-screen img { width: 100%; height: 320px; object-fit: cover; object-position: left top; }

.mh-hero-highlight {
  position: relative; z-index: 3; width: 88%; margin: -40px 0 0 auto;
  padding: 24px; border-radius: 28px; color: #fff;
  background: linear-gradient(135deg, var(--mh-primary), var(--mh-primary-dark));
  box-shadow: 0 20px 55px rgba(93,56,173,.34);
}
.mh-hero-highlight-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.mh-hero-highlight-label { font-size: 14px; color: #ede9fe; }
.mh-hero-highlight-title { margin-top: 4px; font-size: 30px; line-height: 1.1; font-weight: 800; letter-spacing: -.02em; }
.mh-hero-highlight-status {
  padding: 8px 12px; border-radius: 16px; background: rgba(255,255,255,.14);
  font-size: 14px; font-weight: 700; flex: 0 0 auto;
}
.mh-hero-highlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.mh-hero-highlight-card { padding: 16px; border-radius: 18px; background: rgba(255,255,255,.12); }
.mh-hero-highlight-card .small { font-size: 14px; color: #e9d5ff; }
.mh-hero-highlight-card .big { margin-top: 6px; font-size: 18px; font-weight: 700; line-height: 1.25; }

.mh-section { padding: 80px 0; }
.mh-section-tight { padding: 36px 0; }
.mh-eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--mh-primary-dark); }
.mh-section-title { margin: 16px 0 0; font-size: 42px; line-height: 1.15; letter-spacing: -.02em; }
.mh-section-lead { margin: 18px 0 0; font-size: 18px; line-height: 1.75; color: #475569; }
.mh-section-header { text-align: center; max-width: 760px; margin: 0 auto; }

.mh-card {
  background: var(--mh-card);
  border: 1px solid var(--mh-border);
  border-radius: 24px;
  box-shadow: var(--mh-shadow-sm);
}
.mh-strip-card { padding: 20px 24px; }
.mh-strip-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.mh-strip-card h3 { margin: 0; font-size: 14px; color: var(--mh-primary-dark); }
.mh-strip-card p { margin: 8px 0 0; font-size: 14px; line-height: 1.7; color: #475569; }

.mh-features-layout {
  margin-top: 48px; display: grid; grid-template-columns: 1fr minmax(320px,420px) 1fr;
  gap: 32px; align-items: center;
}
.mh-features-column { display: flex; flex-direction: column; gap: 20px; }
.mh-feature-card {
  display: flex; gap: 16px; padding: 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.mh-feature-card:hover, .mh-plan-card:hover, .mh-faq-item:hover {
  transform: translateY(-4px); box-shadow: var(--mh-shadow-md);
}
.mh-icon-wrap {
  width: 48px; height: 48px; flex: 0 0 auto; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: #f4edff; color: var(--mh-primary);
}
.mh-icon-wrap svg, .mh-icon svg {
  width: 22px; height: 22px; min-width: 22px; min-height: 22px;
  display: block; overflow: visible;
}
.mh-feature-copy h3 { margin: 0; font-size: 20px; }
.mh-feature-copy p { margin: 10px 0 0; font-size: 14px; line-height: 1.8; color: #475569; }

.mh-features-center { position: relative; width: 100%; max-width: 460px; margin: 0 auto; padding-bottom: 42px; }
.mh-features-center .mh-mockup { transform: none; }
.mh-features-center .mh-mockup-screen img { height: 420px; object-position: top center; }
.mh-features-highlight {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: calc(100% - 32px); background: linear-gradient(135deg, var(--mh-primary), var(--mh-primary-dark));
  color: #fff; border-radius: 18px; padding: 14px 16px;
  box-shadow: 0 18px 45px rgba(140,87,255,.28); z-index: 3;
}
.mh-features-highlight .small { font-size: 12px; color: rgba(255,255,255,.82); margin-bottom: 4px; }
.mh-features-highlight .big { font-size: 15px; line-height: 1.45; font-weight: 700; }

.mh-two-col { display: grid; grid-template-columns: .95fr 1.05fr; gap: 40px; align-items: start; }
.mh-step-list { display: flex; flex-direction: column; gap: 20px; }
.mh-step-card {
  display: flex; gap: 18px; padding: 24px; border-radius: 24px;
  background: #faf7ff; border: 1px solid var(--mh-border);
}
.mh-step-num {
  width: 48px; height: 48px; flex: 0 0 auto; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--mh-primary); color: #fff; font-weight: 800;
}
.mh-step-card h3 { margin: 0; font-size: 20px; }
.mh-step-card p { margin: 8px 0 0; font-size: 14px; line-height: 1.8; color: #475569; }

.mh-why-box {
  padding: 32px; border-radius: 32px; color: #fff;
  background: linear-gradient(135deg, var(--mh-primary), var(--mh-primary-dark));
  box-shadow: var(--mh-shadow-lg);
}
.mh-why-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 40px; align-items: center; }
.mh-why-box p { color: #ede9fe; }
.mh-why-card {
  padding: 24px; border-radius: 28px; background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(8px);
}
.mh-why-card ul { margin: 16px 0 0; padding-left: 18px; }
.mh-why-card li { line-height: 1.9; }

.mh-trial-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 40px; align-items: start; }
.mh-trial-benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.mh-trial-benefit { padding: 22px; }
.mh-trial-benefit h3 { margin: 0; font-size: 15px; color: var(--mh-primary-dark); }
.mh-trial-benefit p { margin: 8px 0 0; font-size: 14px; line-height: 1.8; color: #475569; }
.mh-trial-box {
  padding: 24px; border-radius: 32px; color: #fff;
  background: linear-gradient(135deg, var(--mh-primary), var(--mh-primary-dark));
  box-shadow: var(--mh-shadow-lg);
}
.mh-trial-box h3 { margin: 0; font-size: 34px; }
.mh-trial-box p { margin: 8px 0 0; color: #ede9fe; }
.mh-form-shell {
  margin-top: 32px; padding: 24px; border-radius: 24px; background: #fff; color: var(--mh-text);
  border: 1px solid rgba(255,255,255,.15);
}
.mh-form-group { margin-bottom: 16px; }
.mh-form-group label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 600; }
.mh-input, .mh-select {
  width: 100%; padding: 14px 16px; border-radius: 14px; border: 1px solid #dbe0ea; background: #fff;
  transition: .2s ease;
}
.mh-input:focus, .mh-select:focus { outline: none; border-color: #a78bfa; box-shadow: 0 0 0 3px rgba(167,139,250,.15); }
.mh-input.error, .mh-select.error { border-color: #fda4af; background: #fff1f2; }
.mh-field-error { margin-top: 8px; font-size: 13px; color: #dc2626; }
.mh-inline-alert {
  padding: 14px 16px; border-radius: 14px; border: 1px solid #fcd34d; background: #fffbeb;
  color: #92400e; font-size: 14px; line-height: 1.6; margin-bottom: 16px;
}
.mh-form-message {
  padding: 14px 16px; border-radius: 14px; font-size: 14px; line-height: 1.6; margin-bottom: 16px;
}
.mh-form-message.success { border: 1px solid #86efac; background: #f0fdf4; color: #166534; }
.mh-form-message.error { border: 1px solid #fecdd3; background: #fff1f2; color: #be123c; }
.mh-check-wrap {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; border-radius: 14px;
  border: 1px solid #e2e8f0; background: #f8fafc; font-size: 14px; line-height: 1.6; color: #475569;
  margin-bottom: 16px;
}
.mh-check-wrap input { margin-top: 3px; }
.mh-check-wrap a, .mh-faq-answer a { color: var(--mh-primary-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.mh-plans-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
.mh-plan-card {
  position: relative; padding: 24px; display: flex; flex-direction: column; height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.mh-plan-card.featured { background: #faf7ff; border: 2px solid #c9b4ff; }
.mh-plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 6px 16px; border-radius: 999px; background: var(--mh-primary); color: #fff; font-size: 12px; font-weight: 800;
}
.mh-plan-tag { font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--mh-primary-dark); }
.mh-plan-name { margin-top: 12px; font-size: 32px; font-weight: 800; }
.mh-plan-price { margin-top: 16px; font-size: 42px; font-weight: 800; }
.mh-plan-price small { font-size: 14px; color: var(--mh-muted); }
.mh-plan-list { margin: 20px 0 0; padding: 0; list-style: none; }
.mh-plan-list li { display: flex; gap: 12px; align-items: flex-start; margin-top: 12px; font-size: 14px; line-height: 1.7; color: #334155; }
.mh-plan-dot { width: 10px; height: 10px; flex: 0 0 auto; margin-top: 8px; border-radius: 999px; background: var(--mh-primary); }
.mh-plan-card .mh-btn { margin-top: 28px; width: 100%; }

.mh-faq-container { max-width: 860px; }
.mh-faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 16px; }
.mh-faq-item { padding: 22px 24px; transition: transform .25s ease, box-shadow .25s ease; }
.mh-faq-item h3 { margin: 0; font-size: 20px; }
.mh-faq-item p, .mh-faq-answer { margin: 12px 0 0; font-size: 14px; line-height: 1.8; color: #475569; }

.mh-cta-final { padding-top: 0; }
.mh-cta-box { padding: 28px; text-align: center; }
.mh-cta-box p { max-width: 760px; margin: 18px auto 0; color: #475569; line-height: 1.8; }

.mh-footer { margin-top: 16px; background: #fff; border-top: 1px solid var(--mh-border); }
.mh-footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 40px; padding: 48px 20px; }
.mh-footer-title { font-size: 14px; font-weight: 800; }
.mh-footer-list { list-style: none; padding: 0; margin: 16px 0 0; }
.mh-footer-list li { margin-top: 12px; font-size: 14px; color: #475569; }
.mh-footer-bottom { padding: 20px; text-align: center; font-size: 14px; color: #64748b; border-top: 1px solid var(--mh-border); }

.mh-legal-main { max-width: 1000px; padding-top: 64px; padding-bottom: 72px; }
.mh-legal-hero {
  padding: 32px; border-radius: 32px; color: #fff;
  background: linear-gradient(135deg, var(--mh-primary), var(--mh-primary-dark));
  box-shadow: var(--mh-shadow-lg);
}
.mh-legal-hero-title { margin: 16px 0 0; font-size: 42px; line-height: 1.15; }
.mh-legal-hero-text { max-width: 760px; margin: 16px 0 0; color: #ede9fe; font-size: 16px; line-height: 1.9; }
.mh-legal-card {
  margin-top: 32px; padding: 28px; border-radius: 32px; background: #fff; border: 1px solid var(--mh-border); box-shadow: var(--mh-shadow-sm);
}
.mh-legal-card section + section { margin-top: 28px; }
.mh-legal-card h2 { margin: 0 0 12px; font-size: 22px; }
.mh-legal-card p, .mh-legal-card li { font-size: 15px; line-height: 1.9; color: #475569; }
.mh-legal-card ul { padding-left: 20px; }
.mh-article-meta { margin-top: 14px; color: #ede9fe; font-size: 14px; }
.mh-article-card h2 { margin-top: 34px; }
.mh-article-card h2:first-child { margin-top: 0; }
.mh-article-card h3 { margin: 26px 0 10px; font-size: 18px; }
.mh-article-card a { color: var(--mh-primary-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.mh-article-card strong { color: var(--mh-text); }

.mh-whatsapp {
  position: fixed; bottom: 20px; right: 20px; width: 60px; height: 60px;
  background: var(--mh-success); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; box-shadow: 0 10px 30px rgba(0,0,0,.2); animation: mh-float 2s infinite ease-in-out;
  z-index: 60; transition: transform .25s ease, box-shadow .25s ease;
}
.mh-whatsapp:hover { transform: scale(1.05); box-shadow: 0 16px 36px rgba(0,0,0,.22); }
@keyframes mh-float { 0% { transform: translateY(0); } 50% { transform: translateY(-6px); } 100% { transform: translateY(0); } }

@media (max-width: 1024px) {
  .mh-hero-grid, .mh-two-col, .mh-why-layout, .mh-trial-layout, .mh-features-layout { grid-template-columns: 1fr; gap: 32px; }
  .mh-mockup-wrap { margin: 0 auto; }
  .mh-plans-grid { grid-template-columns: repeat(2,1fr); }
  .mh-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .mh-container { padding: 0 16px; }
  .mh-section { padding: 56px 0; }
  .mh-nav, .mh-header-actions { display: none; }
  .mh-mobile-toggle { display: inline-flex; }
  .mh-brand-subtitle { display: none; }
  .mh-hero h1, .mh-section-title, .mh-legal-hero-title { font-size: 34px; }
  .mh-hero p, .mh-section-lead { font-size: 16px; line-height: 1.7; }
  .mh-hero-grid { padding: 44px 0 72px; }
  .mh-mockup-screen img { height: 260px; }
  .mh-hero-highlight { width: 92%; padding: 18px; border-radius: 24px; }
  .mh-hero-highlight-title { font-size: 22px; }
  .mh-hero-highlight-grid, .mh-strip-grid, .mh-trial-benefits-grid, .mh-plans-grid, .mh-footer-grid { grid-template-columns: 1fr; }
  .mh-features-center .mh-mockup-screen img { height: 320px; }
  .mh-features-highlight { width: calc(100% - 20px); }
}
