/* lp.ezon.com.br — Demarco light theme replica */

@font-face {
  font-family: 'InterVariable';
  src: url('/assets/fonts/InterVariable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'InterVariable';
  src: url('/assets/fonts/InterVariable-Italic.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --text: #222222;
  --text-muted: #6b6b6b;
  --text-faint: #8b8b8b;
  --accent: #7c3aed;
  --accent-hover: #6d28d9;
  --border: #e5e5e5;
  --border-subtle: #f0f0f0;
  --highlight: #fff8c5;

  --page-width: 800px;
  --pad-x-desktop: 48px;
  --pad-x-mobile: 24px;

  --font-text: 'InterVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;

  --fs-base: 17px;
  --lh-base: 1.7;
  --lh-tight: 1.2;

  --h1-size: 2em;
  --h2-size: 1.5em;
  --h3-size: 1.2em;
  --h1-weight: 700;
  --h2-weight: 680;
  --h3-weight: 660;
}

@media (min-width: 750px) {
  :root {
    --h1-size: 2.6em;
    --h2-size: 1.7em;
    --h3-size: 1.3em;
  }
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-text);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  font-feature-settings: 'cv11', 'ss01', 'ss03';
}

.site-header {
  border-bottom: 1px solid var(--border-subtle);
}
.site-header__inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 18px var(--pad-x-mobile);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
.site-header__brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}
.site-header__brand:hover { color: var(--accent); }
.site-header__meta {
  color: var(--text-faint);
  font-size: 13px;
}

@media (min-width: 750px) {
  .site-header__inner { padding: 22px var(--pad-x-desktop); }
}

.page {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 48px var(--pad-x-mobile) 80px;
}
@media (min-width: 750px) {
  .page { padding: 80px var(--pad-x-desktop) 120px; }
}

.page__title {
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: var(--lh-tight);
  letter-spacing: -0.018em;
  margin: 0 0 0.6em;
  color: var(--text);
}
.page__subtitle {
  font-size: 1.15em;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 2.4em;
  font-weight: 400;
}

article h2 {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: var(--lh-tight);
  letter-spacing: -0.012em;
  margin: 2.6em 0 0.7em;
}
article h3 {
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  line-height: var(--lh-tight);
  margin: 2em 0 0.5em;
}
article p {
  margin: 0 0 1.25em;
}
article a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(124, 58, 237, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s ease, color 0.15s ease;
}
article a:hover {
  color: var(--accent-hover);
  text-decoration-color: var(--accent-hover);
}
article strong { font-weight: 660; }
article em { font-style: italic; }
article ul, article ol {
  margin: 0 0 1.5em;
  padding-left: 1.4em;
}
article li {
  margin-bottom: 0.55em;
}
article li::marker {
  color: var(--text-faint);
}
article hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.8em 0;
}
article blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.4em 0 0.4em 1.2em;
  margin: 1.4em 0;
  color: var(--text-muted);
  font-style: italic;
}
article figure {
  margin: 1.6em 0;
}
article figure img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
}
article figcaption {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.6em;
}
article code:not(pre code) {
  font-family: var(--font-mono);
  font-size: 0.92em;
  background: var(--border-subtle);
  padding: 0.1em 0.4em;
  border-radius: 3px;
}

.divider {
  text-align: center;
  color: var(--text-faint);
  margin: 2.4em 0;
  letter-spacing: 0.5em;
}

/* CTA button — destaque clicável tipo Demarco */
.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 660;
  font-size: 1.05em;
  padding: 14px 24px;
  border-radius: 8px;
  line-height: 1.3;
  transition: background 0.15s ease, transform 0.05s ease;
  border: 1px solid var(--accent);
}
.cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff !important;
}
.cta:active { transform: translateY(1px); }
.cta--secondary {
  background: transparent;
  color: var(--accent) !important;
  border: 1px solid var(--accent);
}
.cta--secondary:hover {
  background: var(--accent);
  color: #fff !important;
}
.cta-row {
  margin: 1.6em 0 1em;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Tabela simples (preço, comparações) */
article table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.4em 0;
  font-size: 0.95em;
}
article th, article td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
article th {
  font-weight: 660;
  color: var(--text-muted);
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Callout pra "preço" / "vagas" */
.callout {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 1.6em 0;
  background: #fafafa;
}
.callout--accent {
  border-color: var(--accent);
  background: rgba(124, 58, 237, 0.04);
}
.callout p:last-child { margin-bottom: 0; }

/* Lead — primeiro parágrafo destacado */
.lead {
  font-size: 1.18em;
  color: var(--text);
  margin-bottom: 1.6em;
  line-height: 1.55;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  margin-top: 64px;
}
.site-footer__inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 24px var(--pad-x-mobile);
  color: var(--text-faint);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
@media (min-width: 750px) {
  .site-footer__inner { padding: 28px var(--pad-x-desktop); }
}
.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
}
.site-footer a:hover { color: var(--accent); }

/* Pequenos detalhes Demarco-style */
.ps {
  margin-top: 2.4em;
  padding-top: 1.4em;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.95em;
}
.signature {
  margin-top: 2em;
  color: var(--text-muted);
  font-size: 0.95em;
}

/* Print */
@media print {
  .site-header, .site-footer, .cta, .cta-row { display: none; }
  body { color: #000; background: #fff; }
  .page { padding: 0; }
}
