/* CaraCore Seed — Loja (tema escuro). Páginas: index, ativacao, download, canal-feedback, compra.
   Utilize sempre assets/css, assets/js e assets/img. */

:root {
    --bg-dark: #1a1d21;
    --bg-card: #252a30;
    --bg-elevated: #2d333b;
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --accent-blue: #58a6ff;
    --accent-cyan: #06b6d4;
    --accent-gold: #d4a853;
    --accent-green: #059669;
    --border: #373e47;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    min-height: 100vh;
    padding: 0 20px 40px;
}

body.seed-loja-narrow { padding: 0 20px 48px; }
body.seed-loja-compra { padding: 0 20px 48px; }

.wrapper { max-width: 900px; margin: 0 auto; }
.wrapper.seed-narrow { max-width: 640px; }
.wrapper.seed-compra { max-width: 560px; }

/* Breadcrumb */
.breadcrumb { font-size: 0.85rem; margin-bottom: 24px; padding-top: 16px; }
.breadcrumb.seed-mb16 { margin-bottom: 16px; }
.breadcrumb a { color: var(--accent-blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb.breadcrumb-cyan a { color: var(--accent-cyan); }
.breadcrumb span { color: var(--text-secondary); }

/* Header */
header {
    padding: 48px 0 40px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
header.seed-header-sm { padding: 40px 0 32px; }
header h1 { font-size: 1.75rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text-primary); margin-bottom: 12px; }
header h1.seed-gold { color: var(--accent-gold); margin-bottom: 8px; font-size: 1.5rem; }
header h1.seed-gold-lg { color: var(--accent-gold); margin-bottom: 8px; font-size: 1.6rem; }
header .subtitle { font-size: 1rem; font-weight: 400; color: var(--text-secondary); max-width: 640px; margin: 0 auto; line-height: 1.65; }
header p { font-size: 0.95rem; color: var(--text-secondary); }

/* Methodology (index) */
.methodology { margin: 40px 0 48px; }
.methodology .card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 32px;
}
.methodology .card h2 { font-size: 1rem; font-weight: 600; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; }
.methodology .card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }
.methodology .card p strong { color: var(--text-primary); }
.methodology .card.card-differential { margin-top: 20px; border-left: 4px solid var(--accent-gold); }

/* Nav grid (index) */
.nav-section-title { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-secondary); margin-bottom: 20px; }
.nav-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.nav-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, background 0.2s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.nav-card:hover { border-color: var(--accent-blue); background: var(--bg-elevated); }
.nav-card .icon { width: 40px; height: 40px; margin-bottom: 16px; flex-shrink: 0; }
.nav-card .icon svg { width: 100%; height: 100%; }
.nav-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.nav-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.55; }

/* Card (ativacao, download, compra, canal-feedback) */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}
.card.seed-download { padding: 28px; margin: 32px 0 24px; border-left: 4px solid var(--accent-gold); }
.card.seed-compra { padding: 28px; margin: 24px 0; border-left: 4px solid var(--accent-gold); }
.card h2 { font-size: 1rem; font-weight: 600; color: var(--accent-gold); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.card p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 12px; line-height: 1.7; }
.card p:last-child { margin-bottom: 0; }
.card a { color: var(--accent-blue); text-decoration: none; }
.card a.card-link-cyan { color: var(--accent-cyan); }
.card a:hover { text-decoration: underline; }

/* Steps (ativacao) */
.steps { list-style: none; margin: 24px 0; }
.steps li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.55;
}
.steps li::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-cyan);
    color: #0d0f12;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.steps li strong { color: var(--accent-gold); }

/* Intro, channels (canal-feedback) */
.intro { margin: 28px 0 24px; padding: 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; font-size: 0.95rem; }
.intro p { margin-bottom: 10px; }
.intro p:last-child { margin-bottom: 0; }
.intro strong { color: var(--accent-cyan); }
.no-phone { margin: 16px 0; padding: 14px 18px; background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.4); border-radius: 10px; font-size: 0.9rem; color: var(--text-primary); }
.no-phone strong { color: #f59e0b; }
.channels { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.channel-card {
    display: block;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.channel-card:hover { border-color: var(--accent-cyan); box-shadow: 0 0 20px rgba(6, 182, 212, 0.15); }
.channel-card .icon { font-size: 1.75rem; margin-bottom: 8px; }
.channel-card .title { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.channel-card .desc { font-size: 0.9rem; color: var(--text-secondary); }

/* LGPD */
.lgpd { margin-top: 28px; padding: 16px 20px; background: rgba(5, 150, 105, 0.08); border: 1px solid rgba(5, 150, 105, 0.35); border-radius: 10px; font-size: 0.85rem; color: var(--text-secondary); }
.lgpd.seed-mt28 { margin: 28px 0; }
.lgpd strong { color: var(--accent-green); }

/* Back nav */
.back { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); text-align: left; }
.back.seed-center { text-align: center; }
.back.seed-mt24 { margin-top: 24px; padding-top: 0; border-top: none; }
.back a { color: var(--accent-cyan); text-decoration: none; font-weight: 600; }
.back a.seed-muted { color: var(--text-secondary); font-weight: normal; }
.back a.seed-muted:hover { color: var(--accent-gold); }
.back a:hover { text-decoration: underline; }

/* Footer (index) */
footer { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--text-secondary); }
footer p { margin-bottom: 8px; }
footer a { color: var(--accent-blue); text-decoration: none; }
footer a:hover { text-decoration: underline; }
