/**
 * DrDim - Landing pages (Representante / Parceiro Contador)
 * Standalone, on-brand sections. Tokens from style.css:
 *   --verde-neon #00ff88 | --azul-ciano #00d4ff | --azul-petroleo #0d1929
 *   --preto #000 | --branco #fff
 */

.lp {
    background: var(--azul-petroleo, #0d1929);
    color: #fff;
    overflow: hidden;
}

.lp .lp-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- Hero ---------- */
.lp-hero {
    position: relative;
    padding: 5.5rem 0 4.5rem;
    background:
        radial-gradient(circle at 15% 0%, rgba(0, 255, 136, 0.14), transparent 45%),
        radial-gradient(circle at 100% 20%, rgba(0, 212, 255, 0.10), transparent 40%);
}

.lp-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--verde-neon, #00ff88);
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.25);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.lp-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    margin: 0 0 1.25rem;
    max-width: 15ch;
}

.lp-hero h1 .hl {
    color: var(--verde-neon, #00ff88);
}

.lp-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 48ch;
    margin: 0 0 1rem;
}

.lp-lead strong { color: #fff; }

.lp-sublead {
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    max-width: 46ch;
    margin: 0 0 2.25rem;
    border-left: 3px solid var(--verde-neon, #00ff88);
    padding-left: 1rem;
}

.lp-hero .btn-primary { display: inline-block; }

/* ---------- Section shell ---------- */
.lp-section {
    padding: 4.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-section h2 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 800;
    text-align: center;
    margin: 0 0 0.75rem;
}

.lp-section h2 .hl { color: var(--verde-neon, #00ff88); }

.lp-section .lp-section-sub {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 54ch;
    margin: 0 auto 3rem;
}

/* ---------- Benefit / feature cards ---------- */
.lp-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.lp-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 255, 136, 0.18);
    border-radius: 18px;
    padding: 2rem 1.6rem;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.lp-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 136, 0.5);
}

.lp-card .lp-ico {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(0, 255, 136, 0.12);
    margin-bottom: 1.1rem;
}

.lp-card .lp-ico svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--verde-neon, #00ff88);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lp-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.lp-card p {
    font-size: 0.96rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ---------- Stat strip ---------- */
.lp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    background: linear-gradient(160deg, rgba(0, 255, 136, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 22px;
    padding: 2.5rem 2rem;
}

.lp-stat {
    text-align: center;
}

.lp-stat .lp-stat-num {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.lp-stat .lp-stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.35rem;
}

.lp-stat .lp-stat-delta {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--verde-neon, #00ff88);
}

/* ---------- Checklist ---------- */
.lp-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    max-width: 780px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.lp-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
}

.lp-checklist svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    fill: none;
    stroke: var(--verde-neon, #00ff88);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---------- Pill row (segments / trust) ---------- */
.lp-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.lp-pills span {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.6rem 1.1rem;
    border-radius: 50px;
}

/* ---------- CTA band ---------- */
.lp-cta-band {
    text-align: center;
    padding: 4.5rem 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 255, 136, 0.16), transparent 55%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-cta-band h2 {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 800;
    margin: 0 0 0.6rem;
}

.lp-cta-band p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin: 0 0 2rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .lp-benefits { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
    .lp-hero { padding: 4rem 0 3.5rem; }
    .lp-section { padding: 3.5rem 0; }
    .lp-benefits { grid-template-columns: 1fr; }
    .lp-stats { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
    .lp-checklist { grid-template-columns: 1fr; }
    .lp-hero .btn-primary,
    .lp-cta-band .btn-primary { display: block; text-align: center; }
}
