/* ============================================================
 * marketing.css — estilos do site institucional (www.park-os.net)
 * Extraído verbatim do protótipo validado:
 *   prototipos/parkos-site-prototipo.html
 * Isolado do Tailwind do app — só é incluído pelo layout marketing.
 * ============================================================ */

:root {
  --font: 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Cream warm palette */
  --bg: #faf6ed;
  --bg-2: #f3ecd9;
  --bg-3: #efe6cc;
  --surface: #ffffff;
  --surface-warm: #fbf7ee;

  --primary: #1f5240;
  --primary-dk: #133326;
  --primary-mid: #2d6b54;
  --primary-soft: #d9e8e1;

  --accent: #e07856;
  --accent-dk: #b85a3d;
  --accent-soft: #fbeae0;

  --success: #4a7c2e;
  --success-soft: #e1f0d6;
  --warning: #c08d28;
  --warning-soft: #f8eed1;
  --danger: #b85042;
  --danger-soft: #f7dfdb;
  --info: #2864a7;
  --info-soft: #d8e6f3;
  --pcd: #6b4ca5;
  --pcd-soft: #e6def3;

  --text: #1a1714;
  --text-mid: #5a5046;
  --text-soft: #8a7e6f;

  --border: #e8dfc8;
  --border-2: #d4c8a8;

  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-1: 0 2px 8px rgba(28,22,12,0.06), 0 1px 3px rgba(28,22,12,0.04);
  --shadow-2: 0 8px 24px rgba(28,22,12,0.08), 0 4px 8px rgba(28,22,12,0.05);
  --shadow-3: 0 20px 60px rgba(28,22,12,0.12), 0 8px 16px rgba(28,22,12,0.06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: var(--font); color: var(--text); background: var(--bg); font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ============== NAV HEADER ============== */
.nav-wrap {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 237, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: 1200px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; gap: 36px;
}
.nav-logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 18px; letter-spacing: -0.4px; cursor: pointer; }
.nav-logo .mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--text-mid);
  transition: color 0.15s; cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-spacer { flex: 1; }
.nav-actions { display: flex; gap: 10px; align-items: center; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: var(--radius);
  border: 1px solid var(--border-2); background: var(--surface);
  font-size: 14px; font-weight: 600; color: var(--text);
  transition: all 0.18s; cursor: pointer;
  text-decoration: none;
}
.btn:hover { border-color: var(--text-mid); box-shadow: var(--shadow-1); }
.btn i { font-size: 17px; }
.btn-primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dk); border-color: var(--primary-dk); transform: translateY(-1px); box-shadow: var(--shadow-2); }
.btn-accent { background: var(--accent); color: white; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dk); border-color: var(--accent-dk); transform: translateY(-1px); box-shadow: var(--shadow-2); }
.btn-ghost { background: transparent; border-color: transparent; color: var(--text-mid); }
.btn-ghost:hover { background: var(--surface-warm); color: var(--text); }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 12px; }
.btn-xl { padding: 16px 32px; font-size: 16px; border-radius: 14px; font-weight: 700; }
.btn-sm { padding: 7px 14px; font-size: 12px; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ============== LAYOUT / PAGES ============== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

.section { padding: 80px 0; }
.section-tight { padding: 48px 0; }
.section-bg { background: var(--bg-2); }
.section-dark { background: var(--primary); color: white; }
.section-cream { background: var(--bg-3); }

/* ============== TYPOGRAPHY ============== */
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-dk);
  background: var(--accent-soft);
  padding: 5px 12px; border-radius: 999px;
  margin-bottom: 18px;
}
.display {
  font-size: 56px; font-weight: 800; line-height: 1.05;
  letter-spacing: -1.5px; margin: 0 0 20px;
}
.display .accent { color: var(--accent); }
.display .underlined { position: relative; display: inline-block; }
.display .underlined::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -8px; height: 8px;
  background: var(--accent); opacity: 0.4; border-radius: 4px;
  transform: skewX(-12deg);
}
.h1 { font-size: 40px; font-weight: 800; line-height: 1.1; letter-spacing: -0.8px; margin: 0 0 16px; }
.h2 { font-size: 32px; font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; margin: 0 0 14px; }
.h3 { font-size: 22px; font-weight: 700; line-height: 1.25; letter-spacing: -0.3px; margin: 0 0 10px; }
.lead { font-size: 19px; line-height: 1.55; color: var(--text-mid); margin: 0 0 32px; }
.muted { color: var(--text-mid); }
.center { text-align: center; }
.mono { font-family: var(--font-mono); }

/* ============== SHARED ============== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
}

.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.3px;
  text-transform: uppercase;
}
.badge-primary { background: var(--primary-soft); color: var(--primary); }
.badge-accent { background: var(--accent-soft); color: var(--accent-dk); }
.badge-success { background: var(--success-soft); color: var(--success); }
.badge-info { background: var(--info-soft); color: var(--info); }

.spread { display: flex; justify-content: space-between; align-items: center; }
.row { display: flex; align-items: center; }
.flex { display: flex; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 64px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }

/* ============== HERO ============== */
.hero {
  padding: 90px 0 100px;
  background:
    radial-gradient(circle at 80% 20%, rgba(224,120,86,0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(31,82,64,0.08) 0%, transparent 55%),
    var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }

.hero-visual {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: 24px; padding: 28px;
  box-shadow: var(--shadow-3);
  position: relative;
}
.hero-visual::before {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 100px; height: 100px; background: var(--accent); border-radius: 50%;
  opacity: 0.3; filter: blur(40px);
}
.hero-mock {
  background: white; border-radius: 14px;
  padding: 22px;
  box-shadow: 0 14px 38px rgba(0,0,0,0.2);
}
.hero-mock .mock-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.hero-mock .mock-title { font-weight: 800; font-size: 16px; }

/* ============== HOMEPAGE FEATURE GRID ============== */
.feature-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--border-2); }
.feature-card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.feature-card h4 { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.feature-card p { font-size: 14px; color: var(--text-mid); margin: 0; line-height: 1.55; }

/* ============== FOOTER ============== */
footer {
  background: var(--primary-dk); color: rgba(255,255,255,0.85);
  padding: 60px 0 30px;
  margin-top: 0;
}
footer h5 { color: white; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin: 0 0 16px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { padding: 5px 0; font-size: 14px; }
footer ul a { color: rgba(255,255,255,0.7); transition: color 0.15s; cursor: pointer; }
footer ul a:hover { color: white; }
footer .foot-bottom {
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 12px;
}
footer .nav-logo { color: white; }
footer .nav-logo .mark { background: var(--accent); }

/* ============== STEPPER ============== */
.stepper {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin: 0 auto 40px; max-width: 700px;
}
.stepper .step {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--text-soft);
  text-align: center; flex: 1;
}
.stepper .step .num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: var(--text-soft);
}
.stepper .step.active .num { background: var(--primary); color: white; border-color: var(--primary); }
.stepper .step.active { color: var(--primary); }
.stepper .step.done .num { background: var(--success); color: white; border-color: var(--success); }
.stepper .step.done .num::before { content: '✓'; }
.stepper .step.done .num span { display: none; }
.stepper .conn { height: 2px; flex: 0 0 30px; background: var(--border-2); margin-top: 14px; }
.stepper .conn.done { background: var(--success); }

/* ============== FORM ============== */
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--text-mid); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border-2); border-radius: 10px;
  background: var(--surface); font-size: 15px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31,82,64,0.1);
}
.field-hint { font-size: 12px; color: var(--text-soft); margin-top: 5px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============== SCROLLBAR ============== */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-soft); }

/* ============== ANIMAÇÕES ============== */
@keyframes pulse-card { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }
@keyframes livedot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ============== ERRO / FLASH ============== */
.flash {
  padding: 14px 18px; border-radius: 10px; margin-bottom: 20px;
  font-size: 14px; font-weight: 600;
}
.flash-error { background: var(--danger-soft); color: var(--danger); border: 1px solid var(--danger); }
.flash-notice { background: var(--success-soft); color: var(--success); border: 1px solid var(--success); }

.error-list { margin: 0; padding-left: 18px; font-weight: 400; }

/* ============== RESPONSIVE ============== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .display { font-size: 42px; }
  .h1 { font-size: 32px; }
  .h2 { font-size: 26px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .display { font-size: 36px; letter-spacing: -1px; }
  .container, .container-narrow { padding: 0 20px; }
  .field-row { grid-template-columns: 1fr; }
}
</content>
</invoke>
