/* ── Seja Vendedor — Landing Page ─────────────────────────── */

/* Hero */
.sv-hero {
    background: linear-gradient(135deg, #1a3d2a 0%, #2C5F3E 60%, #3d7a52 100%);
    color: white;
    padding: 80px 0 64px;
}
.sv-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.sv-hero-tag {
    display: inline-block;
    background: rgba(255,255,255,.15);
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.sv-hero-conteudo h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
}
.sv-destaque { color: #A8E6B8; }
.sv-hero-conteudo p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,.85);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 480px;
}
.sv-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.sv-outline-branco { border-color: rgba(255,255,255,.5) !important; color: white !important; }
.sv-outline-branco:hover { background: rgba(255,255,255,.1) !important; }

/* Números hero */
.sv-hero-numeros {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 16px 24px;
    width: fit-content;
}
.sv-num-item { text-align: center; padding: 0 20px; }
.sv-num-item strong { display: block; font-size: 1.5rem; font-weight: 900; color: white; }
.sv-num-item span { font-size: 0.75rem; color: rgba(255,255,255,.7); }
.sv-num-sep { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* Card demo painel */
.sv-hero-visual { display: flex; justify-content: center; }
.sv-card-demo {
    background: white;
    border-radius: 20px;
    padding: 24px;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.sv-card-demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #F0F0F0;
}
.sv-badge-ativo { font-size: 0.75rem; color: #2C5F3E; font-weight: 600; }
.sv-card-demo-linha {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    padding: 8px 0;
    border-bottom: 1px solid #F5F5F5;
    color: #444;
}
.sv-card-demo-linha strong { color: #1a1a1a; font-weight: 700; }
.sv-card-demo-linha.destaque { background: #F0F7F1; border-radius: 8px; padding: 8px 10px; margin: 8px 0; border: none; }
.sv-card-demo-linha.destaque strong { color: #2C5F3E; }
.sv-card-demo-barra-label { font-size: 0.75rem; color: #888; margin: 14px 0 6px; }
.sv-card-demo-barra {
    height: 8px; background: #E8E8E8; border-radius: 10px; overflow: hidden;
}
.sv-card-demo-barra div { height: 100%; background: #2C5F3E; border-radius: 10px; }

/* Como funciona */
.sv-como { background: #F8FAF8; }
.sv-passos {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.sv-passo {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
    padding: 32px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(44,95,62,.07);
}
.sv-passo-num {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--verde-escuro);
    background: #E8F5E9;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.sv-passo svg { margin-bottom: 16px; }
.sv-passo h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
.sv-passo p { font-size: 0.875rem; color: #666; line-height: 1.6; margin: 0; }
.sv-passo-seta {
    font-size: 1.5rem;
    color: #C8E6C9;
    align-self: center;
    padding-top: 20px;
}

/* Benefícios */
.sv-beneficios { background: white; }
.sv-beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sv-beneficio-card {
    background: #F8FAF8;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #E8F5E9;
    transition: box-shadow .2s, transform .2s;
}
.sv-beneficio-card:hover { box-shadow: 0 8px 32px rgba(44,95,62,.1); transform: translateY(-3px); }
.sv-beneficio-icone { font-size: 2rem; margin-bottom: 14px; }
.sv-beneficio-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; color: #1a1a1a; }
.sv-beneficio-card p { font-size: 0.875rem; color: #666; line-height: 1.6; margin: 0; }

/* Tabela vs */
.sv-vs { background: #F8FAF8; }
.sv-vs-table-wrap { overflow-x: auto; }
.sv-vs-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(44,95,62,.07);
}
.sv-vs-table th, .sv-vs-table td {
    padding: 14px 20px;
    text-align: center;
    font-size: 0.9rem;
    border-bottom: 1px solid #F0F0F0;
}
.sv-vs-table th:first-child, .sv-vs-table td:first-child { text-align: left; font-weight: 500; color: #444; }
.sv-vs-table thead th { background: #F8FAF8; font-weight: 800; font-size: 0.875rem; color: #1a1a1a; }
.sv-vs-table .sv-vs-eco { background: #F0F7F1; color: #2C5F3E; font-weight: 700; }
.sv-vs-table tbody tr:last-child td { border-bottom: none; }
.sv-vs-table tbody tr:hover td { background: #FAFFF9; }

/* CTA */
.sv-cta { background: #F8FAF8; }

/* Responsive */
@media (max-width: 900px) {
    .sv-hero-inner { grid-template-columns: 1fr; }
    .sv-hero-visual { display: none; }
    .sv-beneficios-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-passo-seta { display: none; }
}
@media (max-width: 600px) {
    .sv-beneficios-grid { grid-template-columns: 1fr; }
    .sv-hero-numeros { flex-direction: column; gap: 12px; }
    .sv-num-sep { width: 40px; height: 1px; }
}
