:root {
    --primary: #680905;
    --primary-dark: #510603;
    --accent: #F91107;
    --neutral-dark: #020312;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --gray-border: #E5E7EB;
    --text-muted: #4B5563;
    --radius: 10px;
    --shadow: 0 10px 25px rgba(104, 9, 5, 0.08);
}
* { box-sizing: border-box; margin: 0; padding: 0; font-family: system-ui, sans-serif; }
body { background-color: var(--bg-light); color: var(--neutral-dark); line-height: 1.6; }
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.pm-header { background: var(--white); border-bottom: 1px solid var(--gray-border); padding: 16px 0; position: sticky; top: 0; z-index: 100; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo-text strong { color: var(--primary); }
.badge-demo { background: #FEF2F2; color: var(--accent); font-size: 0.7rem; padding: 4px 8px; border-radius: 4px; font-weight: 700; margin-left: 10px; }
.desktop-nav a { margin-left: 24px; text-decoration: none; color: var(--text-muted); font-weight: 500; }
.hero-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); padding: 60px 0; text-align: center; }
.hero-content h1 { font-size: 2.25rem; margin-bottom: 12px; }
.wizard-wrapper { margin-top: -30px; margin-bottom: 60px; }
.wizard-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px; }
.progress-bar-container { background: var(--gray-border); height: 6px; border-radius: 3px; margin-bottom: 30px; }
.progress-track { background: var(--accent); height: 100%; border-radius: 3px; transition: width 0.3s ease; }
.steps-indicator { font-size: 0.85rem; color: var(--text-muted); text-align: right; margin-top: 8px; }
.wizard-step { display: none; }
.wizard-step.active { display: block; }
.wizard-step h2 { font-size: 1.5rem; margin-bottom: 8px; }
.step-sub { color: var(--text-muted); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.form-control { width: 100%; padding: 12px 16px; border: 1px solid var(--gray-border); border-radius: 6px; font-size: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.options-grid, .plan-options-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.selection-card, .plan-card { border: 2px solid var(--gray-border); border-radius: var(--radius); padding: 20px; cursor: pointer; }
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.checkbox-card { display: flex; align-items: center; gap: 10px; padding: 12px; border: 1px solid var(--gray-border); border-radius: 6px; }
.wizard-actions { display: flex; justify-content: space-between; margin-top: 40px; border-top: 1px solid var(--gray-border); padding-top: 20px; }
.btn-primary { background: var(--primary); color: var(--white); border: none; padding: 12px 28px; font-weight: 600; border-radius: 6px; cursor: pointer; }
.btn-secondary { background: var(--accent); color: var(--white); border: none; padding: 10px 20px; border-radius: 6px; cursor: pointer; }
.btn-outline { background: transparent; border: 1px solid var(--gray-border); color: var(--text-muted); padding: 12px 28px; border-radius: 6px; cursor: pointer; }
.btn-outline-primary { border: 1px solid var(--primary); color: var(--primary); padding: 8px 16px; border-radius: 6px; text-decoration: none; font-weight: 600; }
.results-card { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.disclaimer-banner { background: #FEF2F2; border-left: 4px solid var(--accent); padding: 16px; font-size: 0.85rem; color: #991B1B; margin-bottom: 30px; }
.quote-header-flex { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.price-highlight-box { background: var(--bg-light); border-radius: var(--radius); padding: 24px; text-align: center; margin-bottom: 30px; }
.monthly-price { font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.summary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 30px; }
.summary-item { background: var(--bg-light); padding: 16px; border-radius: 6px; }
.action-buttons-group { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-whatsapp { background: #25D366; color: var(--white); padding: 12px 20px; border-radius: 6px; text-decoration: none; font-weight: 600; }
.pm-footer { background: var(--neutral-dark); color: var(--white); text-align: center; padding: 30px 0; font-size: 0.85rem; margin-top: 40px; }