/* ── Layout global ──────────────────────────────────────────── */
.main-render {
    padding-top: 74px;
}

/* ══ HERO ════════════════════════════════════════════════════ */
.lp-hero {
    position: relative;
    background: #0d2e5c;
    overflow: hidden;
    text-align: center;
}

.lp-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.lp-hero__inner {
    z-index: 3;
    max-width: 680px;
    margin: 0 auto;
    padding: 63px 24px 85px;
    position: relative;
}

.lp-hero__title {
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 800;
    color: var(--color-essence-ivory);
    margin: 0 0 16px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

    .lp-hero__title span {
        color: var(--color-success-dark);
    }

.lp-hero__desc {
    font-size: clamp(15px, 2vw, 17px);
    color: rgba(255,255,255,0.78);
    line-height: 1.5;
    margin: 10px auto 36px;
    max-width: 620px;
}

.lp-hero__search {
    display: flex;
    align-items: center;
    background: var(--color-essence-ivory);
    border-radius: 999px;
    box-shadow: rgba(0,0,0,0.22) 0 4px 24px;
    padding: 6px 6px 6px 20px;
    max-width: 460px;
    margin: 0 auto;
    gap: 8px;
}

.lp-hero__search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    color: var(--color-neutral-deepest);
    background: transparent;
    min-width: 0;
}

.lp-hero__search-input::placeholder {
    color: var(--color-tertiary-pure);
}

.lp-hero__search-btn {
    background: var(--color-secondary-pure);
    color: var(--color-essence-ivory);
    border: none;
    border-radius: 999px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s cubic-bezier(.4,0,.2,1), transform 0.25s cubic-bezier(.4,0,.2,1);
    white-space: nowrap;
    gap: 6px;
    display: flex;
    align-items: center;

}

.lp-hero__search-btn:hover {
    transform: scale(1.03);
}

.lp-hero__stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.lp-hero__stat {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .lp-hero__stat strong {
        color: var(--color-success-pure);
        font-size: 18px;
        font-weight: 700;
    }

/* ══ SEÇÃO DE REDES ══════════════════════════════════════════ */
.lp-redes-section {
    padding: 60px 0;
    background: var(--color-essence-ivory);
}

.lp-redes-section .container {
    text-align: center;
}

.lp-redes-header {
    text-align: center;
    margin-bottom: 36px;
}

    .lp-redes-header .lp-section-sub {
        margin: 0 auto;
    }

.lp-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--color-success-dark);
    margin-bottom: 10px;
}

.lp-section-title {
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 800;
    color: var(--color-secondary-pure);
    margin: 0 0 12px;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.lp-section-sub {
    font-size: 15px;
    color: var(--color-neutral-darker);
    max-width: 650px;
    line-height: 1.7;
    margin: 0;
}

.lp-redes-feedback {
    font-size: 14px;
    color: var(--color-neutral-darker);
    margin: 10px 0 0;
    min-height: 1.4em;
}

.lp-redes-feedback:empty {
    display: none;
}

.lp-redes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

/* ══ CARD DE REDE ════════════════════════════════════════════ */
.rede-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    background: #fff;
    border: 1.5px solid #b0bbcd47;
    border-radius: 16px;
    padding: 32px 20px 26px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    width: 100%;
    max-width: 260px;
    transition: border-color .22s, box-shadow .22s, transform .22s;
}

    .rede-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #133769 0%, #0e8645 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s ease;
    }

    .rede-card:hover {
        border-color: #c5d4ea;
        box-shadow: 0 8px 32px rgba(19, 55, 105, .10);
        transform: translateY(-5px);
        text-decoration: none;
        color: inherit;
    }

        .rede-card:hover::after {
            transform: scaleX(1);
        }

/* ── Logo ───────────────────────────────────────────────────── */
.rede-logo-ring {
    width: 130px;
    height: 100px;
    border-radius: 10px;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    transition: border-color .22s, box-shadow .22s;
}

.rede-logo-ring img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ── Placeholder ────────────────────────────────────────────── */
.rede-placeholder-ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #eef3fb;
    border: 1.5px solid #c5d4ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 700;
    color: #133769;
    flex-shrink: 0;
}

/* ── Conteúdo do card ───────────────────────────────────────── */
.rede-nome {
    font-size: 16px;
    font-weight: 700;
    color: #133769;
    line-height: 1.35;
    word-break: break-word;
}

.rede-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.rede-stat {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    font-weight: 600;
    border-radius: 999px;
    padding: 4px 10px;
    white-space: nowrap;
}

.rede-stat--imoveis {
    color: var(--color-success-deep);
    background: var(--color-primary-tinted);
}

.rede-stat--anunciantes {
    color: var(--color-secondary-pure);
    background: #eef3fb;
}

.rede-cta {
    font-size: 13px;
    color: var(--color-primary-pure);
    font-weight: 600;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity .22s, transform .22s;
    white-space: nowrap;
}

.rede-card:hover .rede-cta {
    opacity: 1;
    transform: translateY(0);
}

/* ══ SEÇÃO SEO ═══════════════════════════════════════════════ */
.lp-seo-section {
    background: var(--color-neutral-tinted);
    padding: 48px 0;
    border-top: 1px solid var(--color-neutral-pale);
    border-bottom: 1px solid var(--color-neutral-pale);
}

.lp-seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.lp-seo-text h2 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: var(--color-secondary-pure);
    margin: 0 0 16px;
    line-height: 1.3;
}

.lp-seo-text p {
    font-size: 15px;
    color: var(--color-neutral-darker);
    line-height: 1.8;
    margin: 0 0 14px;
}

.lp-seo-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .lp-seo-features li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 14.5px;
        color: var(--color-neutral-darker);
        line-height: 1.6;
    }

        .lp-seo-features li .icon {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
            border-radius: 8px;
            background: var(--color-primary-tinted);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 1px;
        }

            .lp-seo-features li .icon svg {
                color: var(--color-success-dark);
            }

        .lp-seo-features li strong {
            display: block;
            font-weight: 700;
            color: var(--color-secondary-pure);
            margin-bottom: 2px;
            font-size: 14px;
        }

/* ══ SEÇÃO FAQ ═══════════════════════════════════════════════ */
.lp-faq-section {
    padding: 48px 0 80px;
    background: var(--color-essence-ivory);
}

.lp-faq-header {
    text-align: center;
    margin-bottom: 35px;
}

.lp-faq-list {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ══ RESPONSIVO ══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .lp-seo-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .main-render {
        padding-top: 66px;
    }

    .lp-hero__inner {
        padding: 45px 16px 75px;
    }

    .lp-hero__stats {
        gap: 20px;
    }

    .lp-redes-grid {
        gap: 14px;
    }

    .rede-card {
        padding: 24px 14px 20px;
        gap: 11px;
        max-width: 350px !important;
    }

    .rede-placeholder-ring {
        font-size: 28px;
    }
}

@media (max-width: 400px) {
    .lp-redes-grid {
        grid-template-columns: 1fr;
    }
}
