/* Minike Commercial System v7 — shared, mobile-first layer.
 * This file intentionally contains no framework dependency.  It can be loaded
 * by every subdomain and is safe to layer over the existing product styles.
 */
:root {
  --mkc-ink: #102d2c;
  --mkc-muted: #5c716e;
  --mkc-paper: #f5faf8;
  --mkc-card: #ffffff;
  --mkc-line: #dbe9e4;
  --mkc-teal: #147b80;
  --mkc-cyan: #35c5c7;
  --mkc-gold: #c48a3b;
  --mkc-dark: #0b2024;
  --mkc-radius: 20px;
  --mkc-gutter: clamp(1rem, .45rem + 2vw, 2.5rem);
  --mkc-section: clamp(3.5rem, 2.2rem + 5vw, 7rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { text-size-adjust: 100%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; }
img, svg, video, canvas { max-width: 100%; }
button, input, select, textarea, a { touch-action: manipulation; }
button, [role="button"], a.btn, a.button, .btn, .button, .mk-btn,
.mk-btn-secondary, .nav-cta, .btn-hero, .soft-link, .annual a,
.plan-card a, .price-card a, [data-plan-id] a { min-height: 48px !important; }
:where(a, button):focus-visible { outline: 3px solid #f0c66b; outline-offset: 3px; }

/* Base previsivel para vitrines comerciais. O stylesheet legado usa um
   gradiente escuro mesmo quando o tema claro esta ativo; a camada comercial
   precisa manter contraste de venda independente do sistema operacional. */
.mkc-page { min-height: 100vh; background: var(--mkc-paper); color: var(--mkc-ink); }
.mkc-page h1, .mkc-page h2, .mkc-page h3, .mkc-page h4 { color: var(--mkc-ink); }
.mkc-page p, .mkc-page .mkc-lead { color: var(--mkc-muted); }
[data-theme="dark"] .mkc-page { background: #0b2024; color: #effcf8; }
[data-theme="dark"] .mkc-page h1,
[data-theme="dark"] .mkc-page h2,
[data-theme="dark"] .mkc-page h3,
[data-theme="dark"] .mkc-page h4 { color: #effcf8; }
[data-theme="dark"] .mkc-page p,
[data-theme="dark"] .mkc-page .mkc-lead { color: #b8d0cc; }
[data-theme="dark"] .mkc-page .mkc-card { background: #123238; border-color: rgba(190,235,225,.18); box-shadow: 0 14px 42px rgba(0,0,0,.22); }
[data-theme="dark"] .mkc-page .mkc-btn-secondary { color: #baf3ea; background: #153e43; border-color: rgba(190,235,225,.22); }
[data-theme="dark"] .mkc-page .mkc-disclosure { background: rgba(18,50,56,.9); color: #b8d0cc; }

/* O consentimento nunca deve esconder a ação principal nem ficar atrás da
   barra móvel. O HTML legado usa estilos inline; por isso estes ajustes são
   !important e preservam o mesmo comportamento em todos os subdomínios. */
#mkCookieConsent {
  right: max(16px, var(--mkc-gutter)) !important;
  bottom: max(16px, env(safe-area-inset-bottom)) !important;
  width: min(380px, calc(100vw - 32px)) !important;
  max-width: min(380px, calc(100vw - 32px)) !important;
  padding: 12px 14px !important;
  border-radius: 16px !important;
  box-shadow: 0 14px 34px rgb(15 23 42 / 24%) !important;
}
#mkCookieConsent p { max-width: 52ch; }
@media (max-width: 680px) {
  #mkCookieConsent {
    left: 10px !important;
    right: 10px !important;
    bottom: calc(var(--mk-bottom-h, 64px) + env(safe-area-inset-bottom, 0px) + 10px) !important;
    width: auto !important;
    max-width: none !important;
    padding: 10px 12px !important;
  }
  #mkCookieConsent p { font-size: 11px !important; line-height: 1.35 !important; }
  #mkCookieConsent button, #mkCookieConsent a { min-height: 42px !important; }
}

/* Optional shell used by new and refreshed pages. */
.mkc-shell { width: min(1180px, calc(100% - 2 * var(--mkc-gutter))); margin-inline: auto; }
.mkc-section { padding-block: var(--mkc-section); }
.mkc-hero { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(18rem, .92fr); align-items: center; gap: clamp(1.5rem, 3vw, 4rem); padding-block: clamp(3.5rem, 8vw, 7rem); }
.mkc-kicker { display: inline-flex; align-items: center; gap: .5rem; color: var(--mkc-teal); font-size: .75rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.mkc-hero h1 { max-width: 15ch; margin: .8rem 0 1.2rem; font-size: clamp(2.4rem, 5vw, 5.5rem); line-height: .98; letter-spacing: -.045em; }
.mkc-lead { max-width: 67ch; color: var(--mkc-muted); font-size: clamp(1rem, .95rem + .35vw, 1.2rem); line-height: 1.7; }
.mkc-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }
.mkc-actions > * { min-height: 48px; }
.mkc-btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .8rem 1.15rem; border: 1px solid transparent; border-radius: 12px; font-weight: 850; text-decoration: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.mkc-btn-primary { color: #fff; background: linear-gradient(120deg, var(--mkc-teal), var(--mkc-cyan)); box-shadow: 0 12px 28px rgb(20 123 128 / 22%); }
.mkc-btn-secondary { color: var(--mkc-teal); background: #fff; border-color: var(--mkc-line); }
.mkc-btn:where(:hover, :focus-visible) { transform: translateY(-2px); }
.mkc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); gap: clamp(.9rem, .55rem + 1vw, 1.5rem); }
.mkc-card { min-width: 0; padding: clamp(1.1rem, 1rem + .5vw, 1.6rem); border: 1px solid var(--mkc-line); border-radius: var(--mkc-radius); background: var(--mkc-card); box-shadow: 0 14px 42px rgb(16 45 44 / 8%); }
.mkc-card h2, .mkc-card h3 { margin-top: 0; }
.mkc-card p { color: var(--mkc-muted); }
.mkc-proof { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr)); gap: .8rem; }
.mkc-proof strong { display: block; font-size: clamp(1.35rem, 2vw, 2rem); color: var(--mkc-teal); }
.mkc-price { color: var(--mkc-ink); font-size: clamp(1.75rem, 3vw, 2.6rem); font-weight: 950; letter-spacing: -.03em; }
.mkc-price small { color: var(--mkc-muted); font-size: .8rem; font-weight: 650; letter-spacing: 0; }
.mkc-badge { display: inline-flex; align-items: center; border-radius: 999px; padding: .35rem .65rem; color: var(--mkc-teal); background: #e5f7f3; font-size: .72rem; font-weight: 850; }
.mkc-muted { color: var(--mkc-muted); }
.mkc-table-wrap { overflow-x: auto; border: 1px solid var(--mkc-line); border-radius: 14px; }
.mkc-table-wrap table { width: 100%; min-width: 38rem; border-collapse: collapse; }
.mkc-table-wrap th, .mkc-table-wrap td { padding: .8rem .9rem; border-bottom: 1px solid var(--mkc-line); text-align: left; vertical-align: top; }
.mkc-table-wrap th { color: var(--mkc-ink); background: #eef8f4; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.mkc-quote { margin: 0; padding: 1.1rem 1.2rem; border-left: 4px solid var(--mkc-gold); border-radius: 0 14px 14px 0; color: var(--mkc-ink); background: #fffaf1; }
.mkc-disclosure { padding: .9rem 1rem; border: 1px solid var(--mkc-line); border-radius: 12px; background: rgb(255 255 255 / 72%); color: var(--mkc-muted); font-size: .9rem; }
.mkc-sticky-cta { position: fixed; inset: auto var(--mkc-gutter) max(1rem, env(safe-area-inset-bottom)) auto; z-index: 80; display: none; }
.mkc-sticky-cta a { display: inline-flex; align-items: center; min-height: 48px; padding: .75rem 1rem; border-radius: 999px; color: #fff; background: var(--mkc-teal); box-shadow: 0 12px 30px rgb(0 0 0 / 22%); font-weight: 850; text-decoration: none; }
.mkc-mobile-only { display: none; }

/* Keep existing product pages comfortable at small widths. */
@media (max-width: 900px) {
  .mkc-hero { grid-template-columns: 1fr; }
  .mkc-hero h1 { max-width: 20ch; }
  .mkc-mobile-only { display: initial; }
}
@media (max-width: 680px) {
  .mkc-hero { padding-block: 3rem 4rem; }
  .mkc-actions > * { flex: 1 1 100%; width: 100%; }
  .mkc-card { border-radius: 16px; }
  .mkc-sticky-cta { display: block; }
  .mkc-sticky-cta + * { padding-bottom: 4.5rem; }
  .mkc-table-wrap { margin-inline: calc(-1 * var(--mkc-gutter)); border-inline: 0; border-radius: 0; }
}
@media (max-width: 390px) {
  .mkc-shell { width: min(100% - 1.2rem, 1180px); }
  .mkc-hero h1 { font-size: clamp(2.2rem, 12vw, 3.2rem); }
}
@media (hover: none) {
  .mkc-btn:where(:hover, :focus-visible) { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
