/* === Reset e Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #1a56db;
    --primary-dark: #1444b0;
    --primary-light: #e8effc;
    --success: #059669;
    --success-light: #d1fae5;
    --warning: #d97706;
    --warning-light: #fef3c7;
    --error: #dc2626;
    --error-light: #fee2e2;
    --info: #2563eb;
    --info-light: #dbeafe;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --radius: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.6;
    min-height: 100vh;
}

/* === Navbar === */
.navbar {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-back {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 1.3rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-user { color: var(--gray-600); font-size: 0.9rem; }

.badge-ia {
    background: var(--success-light);
    color: var(--success);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* === Container === */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.15s;
}

.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover:not(:disabled) { background: var(--primary-dark); }
.btn-outline { background: white; color: var(--gray-700); border: 1px solid var(--gray-300); }
.btn-outline:hover { background: var(--gray-100); }
.btn-sm { padding: 0.35rem 0.8rem; font-size: 0.8rem; }
.btn-lg { padding: 0.8rem 2rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* === Forms === */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.3rem; color: var(--gray-700); font-size: 0.9rem; }

input[type="text"], input[type="email"], input[type="password"], textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: border-color 0.15s;
    font-family: inherit;
}

input:focus, textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.input-error { border-color: var(--error) !important; }

.input-group {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 0.75rem;
}

.input-prefix {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-right: none;
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius) 0 0 var(--radius);
    color: var(--gray-600);
    font-weight: 500;
}

.input-group .input-field {
    border-radius: 0 var(--radius) var(--radius) 0;
    flex: 1;
}

.input-full { margin-bottom: 0.75rem; }
.textarea { resize: vertical; min-height: 120px; }

/* === Alerts === */
.alert {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.alert-error { background: var(--error-light); color: var(--error); border-left: 3px solid var(--error); }
.alert-warning { background: var(--warning-light); color: var(--warning); border-left: 3px solid var(--warning); }
.alert-info { background: var(--info-light); color: var(--info); border-left: 3px solid var(--info); }
.alert-success { background: var(--success-light); color: var(--success); border-left: 3px solid var(--success); }

/* === Login Page === */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a56db 0%, #0f3a8e 100%);
}

.login-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
    margin: 1rem;
}

.login-header { text-align: center; margin-bottom: 1.5rem; }
.login-header h1 { color: var(--primary); font-size: 1.5rem; }
.login-header p { color: var(--gray-600); font-size: 0.9rem; }

.tabs {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.tab-btn {
    flex: 1;
    padding: 0.6rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    font-weight: 500;
    color: var(--gray-400);
    transition: all 0.15s;
}

.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }

.login-footer { text-align: center; margin-top: 1.5rem; font-size: 0.8rem; color: var(--gray-400); }

.hidden { display: none !important; }

/* === Dashboard === */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.dashboard-header h2 { font-size: 1.3rem; }

.sessions-grid { display: flex; flex-direction: column; gap: 1rem; }

.session-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow);
    position: relative;
}

.session-card h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.session-date { color: var(--gray-400); font-size: 0.8rem; }

.session-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
}

.session-status.concluido { background: var(--success-light); color: var(--success); }
.session-status.em_andamento { background: var(--warning-light); color: var(--warning); }

.session-progress { margin: 0.75rem 0; }
.session-progress span { font-size: 0.8rem; color: var(--gray-400); }

.progress-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.3rem;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
    transition: width 0.3s;
}

.session-actions { margin-top: 0.75rem; }

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--gray-600);
}

.empty-state h3 { margin-bottom: 0.5rem; color: var(--gray-700); }
.empty-state p { margin-bottom: 1.5rem; }

/* === Diagnostico === */
.diagnostico-container { max-width: 700px; }

.progress-section { margin-bottom: 1.5rem; }
.progress-info { display: flex; justify-content: space-between; margin-top: 0.3rem; font-size: 0.85rem; color: var(--gray-600); }

.pergunta-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.pergunta-bloco {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.pergunta-texto {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    color: var(--gray-900);
    line-height: 1.5;
}

.opcoes-grid { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.5rem; }
.opcoes-2col { flex-direction: row; }

.opcao-btn {
    padding: 0.75rem 1rem;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.9rem;
    text-align: left;
    transition: all 0.15s;
    width: 100%;
}

.opcao-btn:hover:not(:disabled) {
    border-color: var(--primary);
    background: var(--primary-light);
}

.opcoes-2col .opcao-btn { flex: 1; text-align: center; font-weight: 500; }

.opcao-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.8rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.15s;
}

.opcao-check:hover { border-color: var(--primary); }
.opcao-check input { width: 18px; height: 18px; }

.alertas-area { margin-top: 1rem; }

.encerramento { border-left-width: 4px; }
.encerramento-actions { margin-top: 0.75rem; display: flex; gap: 0.5rem; }

.ia-area { margin-top: 1rem; }
.ia-card {
    background: #f0f4ff;
    border: 1px solid #c7d7fe;
    border-radius: var(--radius);
    padding: 1rem;
}
.ia-card h4 { color: var(--primary); margin-bottom: 0.5rem; font-size: 0.9rem; }
.ia-card p { font-size: 0.9rem; margin-bottom: 0.5rem; }
.ia-card ul { padding-left: 1.25rem; font-size: 0.85rem; }

.conclusao-area { text-align: center; padding: 3rem 1rem; }
.conclusao-area h2 { color: var(--success); margin-bottom: 0.5rem; }
.conclusao-area p { margin-bottom: 1.5rem; color: var(--gray-600); }
.conclusao-area .btn { margin: 0 0.5rem; }

.pergunta-ajuda {
    background: var(--info-light);
    border-left: 3px solid var(--info);
    padding: 0.6rem 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--gray-700);
    border-radius: 0 var(--radius) var(--radius) 0;
    line-height: 1.5;
}

.flag-nota { font-size: 0.8rem; margin-top: 0.4rem; opacity: 0.8; }
.flag-inelegivel { border-left-color: var(--warning); }

.loading { text-align: center; padding: 2rem; color: var(--gray-400); }

/* === Relatorio === */
.relatorio-container { max-width: 900px; }

.relatorio-header { text-align: center; margin-bottom: 1.5rem; }
.relatorio-header h1 { font-size: 1.5rem; color: var(--primary); }
.relatorio-date { color: var(--gray-400); font-size: 0.9rem; }

.relatorio-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.status-aprovado { background: var(--success-light); color: var(--success); }
.status-reprovado { background: var(--error-light); color: var(--error); }
.status-icon { font-size: 1.5rem; }

.relatorio-section {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.relatorio-section h2 {
    font-size: 1.1rem;
    color: var(--gray-800);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.editais-grid { display: flex; flex-direction: column; gap: 0.75rem; }

.edital-card {
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}

.edital-card h3 { font-size: 0.95rem; }
.edital-linha { font-size: 0.8rem; color: var(--gray-600); margin: 0.25rem 0 0.5rem; }

.compat-bar { height: 8px; background: var(--gray-200); border-radius: 4px; overflow: hidden; margin: 0.4rem 0; }
.compat-fill { height: 100%; border-radius: 4px; transition: width 0.3s; }
.compat-alta { background: var(--success); }
.compat-media { background: var(--warning); }
.compat-baixa { background: var(--gray-400); }
.compat-pct { font-size: 0.8rem; color: var(--gray-600); font-weight: 500; }

.score-summary { text-align: center; margin-bottom: 1.5rem; }

.score-circle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.score-ok { background: var(--success-light); color: var(--success); }
.score-low { background: var(--error-light); color: var(--error); }
.score-num { font-size: 2rem; font-weight: 700; line-height: 1; }
.score-max { font-size: 0.8rem; }

.criterios-grid { display: flex; flex-direction: column; gap: 0.6rem; }

.criterio-item { padding: 0.5rem 0; }
.criterio-eliminado { opacity: 0.7; }
.criterio-eliminado .criterio-fill { background: var(--error); }

.criterio-header { display: flex; justify-content: space-between; margin-bottom: 0.25rem; }
.criterio-nome { font-size: 0.85rem; color: var(--gray-700); }
.criterio-nota { font-size: 0.85rem; font-weight: 600; }

.criterio-bar { height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden; }
.criterio-fill { height: 100%; background: var(--primary); border-radius: 3px; transition: width 0.3s; }

.relatorio-texto {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.8rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
    background: var(--gray-50);
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    max-height: 600px;
    overflow-y: auto;
}

.relatorio-footer {
    text-align: center;
    padding: 1.5rem;
    color: var(--gray-400);
    font-size: 0.85rem;
}

/* === Print === */
@media print {
    .no-print { display: none !important; }
    body { background: white; }
    .container { max-width: none; }
    .relatorio-section { box-shadow: none; border: 1px solid var(--gray-200); }
}

/* === Landing Page — Atitude Inovação Branding === */
.landing-page {
    background: white;
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #313131;
}

/* Nav */
.landing-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

.landing-nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0.6rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.landing-nav-links a {
    text-decoration: none;
    color: #5D0E14;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.15s;
}

.landing-nav-links a:hover { color: #FF721E; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #5D0E14;
    border-radius: 2px;
    transition: 0.2s;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #5D0E14 0%, #3a0a0d 60%, #1a0406 100%);
    color: white;
    padding: 5rem 1.5rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,114,30,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,114,30,0.2);
    color: #FF721E;
    padding: 0.3rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.text-orange { color: #FF721E; }

.hero-sub {
    font-size: 1.2rem;
    opacity: 0.85;
    line-height: 1.65;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-orange {
    background: #FF721E;
    color: white;
    border: none;
    border-radius: 9999px;
    padding: 0.85rem 2.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    text-decoration: none;
    display: inline-block;
}

.btn-orange:hover {
    background: #e5651a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,114,30,0.35);
}

.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 9999px;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    display: inline-block;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: white;
}

.btn-dark {
    background: #5D0E14;
    color: white;
    border: none;
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    display: inline-block;
}

.btn-dark:hover {
    background: #3a0a0d;
}

.hero-note {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    opacity: 0.55;
    font-weight: 300;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg { width: 100%; height: auto; }

/* Stats bar */
.stats-bar {
    padding: 2.5rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #FF721E;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Sections */
.section {
    padding: 5rem 1.5rem;
}

.section-alt {
    background: #faf9f8;
}

.section-inner {
    max-width: 1060px;
    margin: 0 auto;
}

.section-tag {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FF721E;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    color: #5D0E14;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 300;
}

/* Steps */
.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 1.5rem;
    flex: 1;
    max-width: 280px;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 1.5rem;
    font-size: 1.5rem;
    color: #FF721E;
    font-weight: 300;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #FF721E;
    color: white;
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(255,114,30,0.3);
}

.step-card h3 {
    font-size: 1.1rem;
    color: #5D0E14;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.55;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.05rem;
    color: #5D0E14;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.55;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: start;
}

.pricing-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 2.5rem 1.75rem;
    position: relative;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.pricing-featured {
    border-color: #FF721E;
    border-width: 2px;
    box-shadow: 0 8px 32px rgba(255,114,30,0.15);
    transform: scale(1.04);
}

.pricing-featured:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 16px 40px rgba(255,114,30,0.2);
}

.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF721E;
    color: white;
    padding: 0.3rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.pricing-header {
    margin-bottom: 1.75rem;
}

.pricing-header h3 {
    font-size: 1.15rem;
    color: #5D0E14;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: #313131;
}

.pricing-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-400);
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features li::before {
    content: "✓ ";
    color: #FF721E;
    font-weight: 700;
    margin-right: 0.3rem;
}

.pricing-features li.feature-disabled {
    color: var(--gray-300);
    text-decoration: line-through;
}

.pricing-features li.feature-disabled::before {
    content: "— ";
    color: var(--gray-300);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* FAQ */
.faq-list {
    max-width: 720px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.faq-item summary {
    padding: 1.1rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    color: #5D0E14;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    color: #FF721E;
    font-weight: 300;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #5D0E14 0%, #3a0a0d 100%);
    color: white;
}

.cta-inner {
    text-align: center;
}

.cta-inner h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    color: white;
}

.cta-inner p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Footer */
.landing-footer {
    background: #1a1a1a;
    color: var(--gray-400);
    padding: 3.5rem 1.5rem 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand-block {
    max-width: 280px;
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand-block p {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--gray-400);
}

.footer-cols {
    display: flex;
    gap: 3rem;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-300);
    margin-bottom: 0.75rem;
}

.footer-col a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: color 0.15s;
}

.footer-col a:hover { color: #FF721E; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* === Responsive === */
@media (max-width: 768px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-sub { font-size: 1rem; }
    .hero { padding: 3.5rem 1.25rem 5rem; }
    .section { padding: 3rem 1.25rem; }
    .section-title { font-size: 1.5rem; }
    .steps-grid { flex-direction: column; align-items: center; }
    .step-connector { transform: rotate(90deg); padding: 0; }
    .benefits-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .pricing-featured { transform: none; }
    .pricing-featured:hover { transform: translateY(-4px); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .landing-nav-links { display: none; }
    .landing-nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    }
    .mobile-menu-btn { display: flex; }
    .footer-top { flex-direction: column; gap: 2rem; }
    .footer-cols { flex-direction: column; gap: 1.5rem; }
    .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 640px) {
    .container { padding: 1rem; }
    .navbar { padding: 0.5rem 1rem; }
    .opcoes-2col { flex-direction: column; }
    .dashboard-header { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
    .pergunta-texto { font-size: 1rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === Checkbox LGPD no formulario de registro === */
.form-check { margin: 0.75rem 0 1rem; }
.form-check .check-label {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--gray-700);
    line-height: 1.4;
    cursor: pointer;
}
.form-check input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: #FF721E;
    cursor: pointer;
}
.form-check a { color: #FF721E; font-weight: 600; text-decoration: none; }
.form-check a:hover { text-decoration: underline; }
.login-footer a { color: #FF721E; text-decoration: none; font-weight: 600; }
