/* ========================================================= */
/* -- LP RESTAURAÇÃO DE FACHADAS -- */
/* CSS exclusivo da landing page. Todas as classes usam o     */
/* prefixo .lp- para nunca colidir com o style.css do site.   */
/* Depende apenas do Bootstrap 5 (grid e utilitários).        */
/* ========================================================= */

/* Reset, container, grid e utilitários vêm do lp-base.css */

.lp-page {
    --lp-navy: #0f2540;
    --lp-navy-2: #1a365d;
    --lp-blue: #4a90e2;
    --lp-amber: #ffb020;
    --lp-green: #25d366;
    --lp-ink: #16202e;
    --lp-muted: #64748b;
    --lp-line: #e4e9f0;
    --lp-bg: #f5f7fa;
    --lp-radius: 14px;

    font-family: 'Poppins', sans-serif;
    color: var(--lp-ink);
    background: #fff;
    line-height: 1.65;
    overflow-x: hidden;
}

.lp-page h1, .lp-page h2, .lp-page h3, .lp-page h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* --------------------------------------------------------- */
/* -- Botões -- */
/* --------------------------------------------------------- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.lp-btn:hover { transform: translateY(-2px); }

.lp-btn--wpp {
    background: var(--lp-green);
    color: #fff;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.32);
}
.lp-btn--wpp:hover { background: #1fbe5b; color: #fff; }

.lp-btn--solid {
    background: var(--lp-navy-2);
    color: #fff;
    box-shadow: 0 6px 18px rgba(26, 54, 93, 0.28);
}
.lp-btn--solid:hover { background: var(--lp-navy); color: #fff; }

.lp-btn--ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.lp-btn--ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

.lp-btn--block { width: 100%; padding: 17px 26px; font-size: 1.05rem; }
.lp-btn--sm { padding: 9px 18px; font-size: 0.9rem; }

/* --------------------------------------------------------- */
/* -- HERO: texto à esquerda, formulário à direita -- */
/* Núcleo da LP. A imagem de fundo fica bem escurecida para   */
/* o texto e o card branco do formulário terem contraste.     */
/* --------------------------------------------------------- */
.lp-hero {
    position: relative;
    background: var(--lp-navy);
    padding: 130px 0 72px; /* <-- ALTERADO AQUI: espaço para a navbar fixa */
    overflow: hidden;
}

.lp-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
}

.lp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(15, 37, 64, 0.95) 45%, rgba(15, 37, 64, 0.72) 100%);
}

.lp-hero__inner { position: relative; z-index: 2; }

.lp-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 176, 32, 0.14);
    border: 1px solid rgba(255, 176, 32, 0.45);
    color: var(--lp-amber);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 22px;
}

.lp-hero__title {
    color: #fff;
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    margin-bottom: 20px;
}

.lp-hero__title em {
    font-style: normal;
    color: var(--lp-blue);
}

.lp-hero__lead {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    max-width: 560px;
    margin-bottom: 28px;
}

.lp-hero__checks {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.lp-hero__checks li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    font-size: 0.98rem;
}

.lp-hero__checks .ico {
    color: var(--lp-green);
    margin-top: 5px;
    flex-shrink: 0;
}

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

/* Selos de confiança abaixo do texto do hero */
.lp-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.lp-hero__trust-num {
    font-family: 'Sora', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.lp-hero__trust-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-top: 4px;
}

/* --------------------------------------------------------- */
/* -- Card do formulário -- */
/* --------------------------------------------------------- */
.lp-formcard {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.lp-formcard__head {
    background: linear-gradient(135deg, var(--lp-navy-2), #2c5282);
    color: #fff;
    padding: 22px 28px;
    text-align: center;
}

.lp-formcard__head h2 {
    font-size: 1.25rem;
    margin: 0 0 4px;
    color: #fff;
}

.lp-formcard__head p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.lp-formcard__body { padding: 26px 28px 28px; }

.lp-formcard__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
    font-size: 0.78rem;
    color: var(--lp-muted);
}

.lp-label {
    display: block;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--lp-navy-2);
    margin-bottom: 6px;
}

.lp-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--lp-line);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--lp-ink);
    background: #fff;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.lp-input:focus {
    outline: none;
    border-color: var(--lp-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}

.lp-input.is-invalid { border-color: #dc3545; }

.lp-error {
    display: none;
    color: #dc3545;
    font-size: 0.76rem;
    margin-top: 4px;
}
.lp-input.is-invalid ~ .lp-error { display: block; }

/* Honeypot: invisível para humanos, preenchido por robôs */
.lp-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
}

/* --------------------------------------------------------- */
/* -- Seções genéricas -- */
/* --------------------------------------------------------- */
.lp-section { padding: 76px 0; }
.lp-section--gray { background: var(--lp-bg); }
.lp-section--navy { background: var(--lp-navy); color: #fff; }

.lp-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }

.lp-head__eyebrow {
    display: block;
    color: var(--lp-blue);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.lp-head__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--lp-navy);
    margin-bottom: 14px;
}

.lp-section--navy .lp-head__title { color: #fff; }

.lp-head__sub { color: var(--lp-muted); font-size: 1.02rem; margin: 0; }
.lp-section--navy .lp-head__sub { color: rgba(255, 255, 255, 0.72); }

/* --------------------------------------------------------- */
/* -- Cards de sintoma (sinais de alerta) -- */
/* A borda esquerda âmbar dá o tom de "alerta" sem poluir.    */
/* --------------------------------------------------------- */
.lp-symptom {
    height: 100%;
    background: #fff;
    border: 1px solid var(--lp-line);
    border-left: 4px solid var(--lp-amber);
    border-radius: var(--lp-radius);
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-symptom:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 37, 64, 0.1);
}

.lp-symptom__icon {
    width: 26px;
    height: 26px;
    fill: var(--lp-amber);
    display: block;
    margin-bottom: 14px;
}

.lp-symptom__title { font-size: 1.02rem; color: var(--lp-navy); margin-bottom: 8px; }
.lp-symptom__desc { font-size: 0.9rem; color: var(--lp-muted); margin: 0; }

/* --------------------------------------------------------- */
/* -- begin:: Comparativo pareado -- */
/* Grade de 2 colunas: cada linha confronta o mesmo tema dos   */
/* dois lados, então o contraste se mantém até no celular.     */
/* O fundo das duas colunas é um gradiente no container — por  */
/* isso o conteúdo não precisa ser duplicado para cada tela.   */
/* --------------------------------------------------------- */
.lp-versus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    overflow: hidden;
    background: linear-gradient(to right, #fdf2f2 0 50%, #f0f7ff 50% 100%);
}

.lp-versus__head {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 18px 22px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.02rem;
    line-height: 1.3;
}

.lp-versus__head--bad { color: #b02a2a; border-bottom: 1px solid #f0c9c9; }
.lp-versus__head--good { color: var(--lp-navy-2); border-bottom: 1px solid #c9dcf5; }

.lp-versus__cell {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 22px;
    font-size: 0.93rem;
    line-height: 1.5;
}

.lp-versus__cell .ico { margin-top: 4px; }

.lp-versus__cell--bad {
    color: #7d4a4a;
    border-bottom: 1px solid rgba(176, 42, 42, 0.1);
}
.lp-versus__cell--bad .ico { color: #d05353; }

.lp-versus__cell--good {
    color: #3f5a7d;
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
}
.lp-versus__cell--good .ico { color: #2f855a; }

/* Última linha (as duas células) não leva divisória */
.lp-versus > :nth-last-child(-n + 2) { border-bottom: none; }

@media (max-width: 767.98px) {
    .lp-versus__head { padding: 14px 12px; font-size: 0.88rem; gap: 6px; }
    .lp-versus__cell { padding: 12px; font-size: 0.82rem; gap: 7px; }
    .lp-versus__cell .ico { width: 11px; height: 11px; margin-top: 5px; }
}

/* --------------------------------------------------------- */
/* -- Etapas do processo (numeradas, em grid) -- */
/* --------------------------------------------------------- */
.lp-step {
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--lp-radius);
    padding: 26px 22px;
}

.lp-step__num {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(74, 144, 226, 0.55);
    line-height: 1;
    margin-bottom: 14px;
}

.lp-step__title { color: #fff; font-size: 1.02rem; margin-bottom: 8px; }
.lp-step__desc { color: rgba(255, 255, 255, 0.68); font-size: 0.89rem; margin: 0; }



/* Sinais em 2 colunas — respiro intermediário em telas médias */
@media (min-width: 576px) and (max-width: 991.98px) {
    .lp-symptom { padding: 20px 18px; }
    .lp-symptom__title { font-size: 0.98rem; }
    .lp-symptom__desc { font-size: 0.86rem; }
}

/* --------------------------------------------------------- */
/* -- begin:: Carrossel das etapas -- */
/* No desktop não existe: a .row continua sendo grade normal  */
/* e os controles ficam escondidos. Abaixo de 992px a faixa   */
/* vira rolagem lateral com encaixe, e as setas e bolinhas    */
/* aparecem. O arrastar é rolagem nativa — sem JS de drag.    */
/* --------------------------------------------------------- */
.lp-carousel__nav { display: none; }

@media (max-width: 991.98px) {

    .lp-carousel__track {
        /* <-- ALTERADO AQUI: centralizado, o início da faixa fica fora
           do alcance da rolagem e os primeiros cards somem */
        justify-content: flex-start !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-left: 0;
        margin-right: 0;
        padding-bottom: 6px;
        scrollbar-width: none;
    }

    .lp-carousel__track::-webkit-scrollbar { display: none; }

    /* Cada card ocupa 86% para deixar o próximo à mostra */
    .lp-carousel__track > * {
        flex: 0 0 86%;
        width: 86%;
        max-width: 86%;
        scroll-snap-align: center;
    }

    .lp-carousel__track > .lp-step,
    .lp-carousel__track > * > .lp-step { height: 100%; }

    .lp-carousel__nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        margin-top: 26px;
    }

    /* Padrão: seção clara. A variante do fundo navy vem logo abaixo. */
    .lp-carousel__arrow {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid var(--lp-line);
        background: #fff;
        color: var(--lp-navy-2);
        cursor: pointer;
        transition: background 0.2s ease, opacity 0.2s ease;
    }

    .lp-carousel__arrow:hover { background: var(--lp-bg); }

    .lp-section--navy .lp-carousel__arrow {
        border-color: rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
    }

    .lp-section--navy .lp-carousel__arrow:hover { background: rgba(255, 255, 255, 0.16); }
    .lp-carousel__arrow:disabled { opacity: 0.3; cursor: default; }

    /* A seta é o mesmo ícone de chevron, girado */
    .lp-carousel__arrow .ico { width: 14px; height: 14px; transform: rotate(90deg); }
    .lp-carousel__arrow--next .ico { transform: rotate(-90deg); }

    .lp-carousel__dots { display: flex; align-items: center; gap: 8px; }

    .lp-carousel__dot {
        width: 8px;
        height: 8px;
        padding: 0;
        border-radius: 50%;
        background: #cbd5e1;
        cursor: pointer;
        transition: all 0.25s ease;
    }

    .lp-section--navy .lp-carousel__dot { background: rgba(255, 255, 255, 0.3); }

    .lp-carousel__dot.is-active {
        width: 24px;
        border-radius: 4px;
        background: var(--lp-blue);
    }
}

/* --------------------------------------------------------- */
/* -- Antes e depois -- */
/* --------------------------------------------------------- */



/* --------------------------------------------------------- */
/* -- Prova social -- */
/* --------------------------------------------------------- */
.lp-quote {
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    padding: 28px;
    height: 100%;
}

.lp-quote__stars { color: #fbbf24; margin-bottom: 14px; }
.lp-quote__text { font-size: 0.96rem; color: #47525f; margin-bottom: 18px; }

.lp-quote__author {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--lp-navy);
    font-weight: 600;
}

.lp-quote__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--lp-navy-2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* --------------------------------------------------------- */
/* -- Garantias -- */
/* --------------------------------------------------------- */
/* Cada garantia é um cartão. Solto sobre o branco, o conjunto
   ficava sem apoio visual — o texto parecia flutuar na página. */
.lp-guarantee {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    margin-bottom: 12px;
    background: var(--lp-bg);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.lp-guarantee:last-child { margin-bottom: 0; }

.lp-guarantee:hover {
    border-color: var(--lp-blue);
    transform: translateX(3px);
}

.lp-guarantee__icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #fff;
    border: 1px solid var(--lp-line);
    color: var(--lp-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-guarantee__icon .ico { width: 20px; height: 20px; }

.lp-guarantee__title { font-size: 0.98rem; color: var(--lp-navy); margin-bottom: 5px; }
.lp-guarantee__desc { font-size: 0.89rem; color: var(--lp-muted); margin: 0; }

/* --------------------------------------------------------- */
/* -- FAQ (accordion nativo com <details>) -- */
/* --------------------------------------------------------- */
.lp-faq {
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.lp-faq__q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--lp-navy);
    cursor: pointer;
    list-style: none;
}

.lp-faq__q::-webkit-details-marker { display: none; }
.lp-faq__q .ico { color: var(--lp-blue); transition: transform 0.2s ease; flex-shrink: 0; }
.lp-faq[open] .lp-faq__q .ico { transform: rotate(180deg); }

.lp-faq__a {
    padding: 0 24px 22px;
    font-size: 0.94rem;
    color: var(--lp-muted);
}

.lp-faq__a p { margin: 0; }

/* --------------------------------------------------------- */
/* -- CTA final -- */
/* --------------------------------------------------------- */
.lp-cta {
    background: linear-gradient(135deg, var(--lp-navy), #24487a);
    color: #fff;
    text-align: center;
    padding: 76px 0;
}

.lp-cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; margin-bottom: 14px; }
.lp-cta p { color: rgba(255, 255, 255, 0.78); max-width: 620px; margin: 0 auto 30px; }

.lp-cta__phones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* --------------------------------------------------------- */
/* -- Rodapé simples -- */
/* --------------------------------------------------------- */
.lp-footer {
    background: #0a1a2e;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0 30px;
    font-size: 0.86rem;
}

.lp-footer a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.lp-footer a:hover { color: #fff; text-decoration: underline; }
.lp-footer__logo { height: 40px; margin-bottom: 14px; }

/* --------------------------------------------------------- */
/* -- Barra fixa de CTA no mobile -- */
/* Some no desktop; no celular garante o WhatsApp sempre à mão*/
/* --------------------------------------------------------- */
.lp-mobilebar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: #fff;
    border-top: 1px solid var(--lp-line);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 12px;
    gap: 10px;
}

.lp-mobilebar .lp-btn { flex: 1; padding: 13px 10px; font-size: 0.92rem; }

/* --------------------------------------------------------- */
/* -- Modal de sucesso -- */
/* --------------------------------------------------------- */
.lp-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1060;
    background: rgba(10, 26, 46, 0.72);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lp-modal__box {
    background: #fff;
    border-radius: 18px;
    padding: 40px 32px;
    text-align: center;
    max-width: 420px;
    width: 100%;
}

.lp-modal__check {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e8f5e9;
    color: #4caf50;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.lp-modal__check .ico { width: 32px; height: 32px; }

.lp-modal__box h3 { color: var(--lp-navy); font-size: 1.35rem; margin-bottom: 10px; }
.lp-modal__box p { color: var(--lp-muted); font-size: 0.94rem; margin: 0; }

/* --------------------------------------------------------- */
/* -- Responsivo -- */
/* --------------------------------------------------------- */
@media (max-width: 991.98px) {
    .lp-hero { padding: 104px 0 56px; }
    .lp-formcard { margin-top: 38px; }
}

/* --------------------------------------------------------- */
/* -- begin:: Ajustes de celular -- */
/* Telas estreitas pedem título menor, menos respiro entre    */
/* seções e os selos de confiança em duas colunas, senão o    */
/* terceiro item fica sozinho e desalinhado.                  */
/* --------------------------------------------------------- */
@media (max-width: 575.98px) {
    .lp-hero { padding: 88px 0 40px; }

    /* Pílula com texto de 2 linhas fica torta. No celular vira um
       aviso com barra lateral, que acomoda melhor a quebra. */
    .lp-hero__tag {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
        font-size: 0.78rem;
        line-height: 1.45;
        text-align: left;
        padding: 12px 14px;
        border: none;
        border-left: 3px solid var(--lp-amber);
        border-radius: 0 10px 10px 0;
        margin-bottom: 20px;
    }

    .lp-hero__tag .ico { margin-top: 3px; }

    .lp-hero__title { font-size: 1.75rem; line-height: 1.18; margin-bottom: 14px; }

    /* Menor e mais apagado que os checks: cria hierarquia no bloco */
    .lp-hero__lead {
        font-size: 0.94rem;
        color: rgba(255, 255, 255, 0.68);
        margin-bottom: 22px;
    }

    .lp-hero__checks { margin-bottom: 24px; }
    .lp-hero__checks li { font-size: 0.9rem; gap: 10px; margin-bottom: 10px; }
    .lp-hero__checks .ico { width: 15px; height: 15px; margin-top: 4px; }

    /* Três selos em uma linha só, dentro de uma caixa com divisórias */
    .lp-hero__trust {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        padding: 14px 0;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
        text-align: center;
    }

    .lp-hero__trust > div + div { border-left: 1px solid rgba(255, 255, 255, 0.12); }
    .lp-hero__trust-num { font-size: 1.05rem; }
    .lp-hero__trust-label { font-size: 0.66rem; line-height: 1.35; margin-top: 5px; padding: 0 6px; }

    .lp-formcard__head { padding: 18px 20px; }
    .lp-formcard__body { padding: 20px; }

    .lp-section { padding: 48px 0; }
    .lp-cta { padding: 48px 0; }

    .lp-head { margin-bottom: 32px; }
    .lp-head__title { font-size: 1.5rem; }

    /* Sinais ficam 2 por linha: card mais compacto para caber em ~160px */
    .lp-symptom { padding: 16px 14px; border-left-width: 3px; }
    .lp-symptom__icon { width: 22px; height: 22px; margin-bottom: 10px; }
    .lp-symptom__title { font-size: 0.92rem; margin-bottom: 6px; }
    .lp-symptom__desc { font-size: 0.8rem; line-height: 1.5; }
    .lp-doc__bar, .lp-doc__body, .lp-doc__foot { padding-left: 18px; padding-right: 18px; }
    .lp-faq__q { padding: 16px 18px; font-size: 0.94rem; }
    .lp-faq__a { padding: 0 18px 18px; }

    .lp-btn { padding: 13px 20px; font-size: 0.95rem; }
    .lp-mobilebar .lp-btn { font-size: 0.86rem; padding: 12px 8px; }
}

@media (max-width: 767.98px) {
    .lp-section { padding: 56px 0; }
    .lp-cta { padding: 56px 0; }
    .lp-hero__trust { gap: 20px; }
    .lp-hero__trust-num { font-size: 1.4rem; }
    .lp-mobilebar { display: flex; }
    .lp-page { padding-bottom: 74px; } /* espaço para a barra fixa */
}

/* --------------------------------------------------------- */
/* -- Ícones SVG (sprite inline no HTML) -- */
/* Substituem o Font Awesome: herdam a cor do texto e escalam */
/* junto com a fonte, como se fossem glifos.                  */
/* --------------------------------------------------------- */
.ico {
    width: 1em;
    height: 1em;
    fill: currentColor;
    vertical-align: -0.125em;
    flex-shrink: 0;
}

/* --------------------------------------------------------- */
/* -- Utilitários que o bootstrap-grid não traz -- */
/* --------------------------------------------------------- */
.text-center { text-align: center !important; }
@media (min-width: 768px) { .text-md-end { text-align: right !important; } }

/* --------------------------------------------------------- */
/* -- Títulos alinhados à esquerda (seção de garantias) -- */
/* --------------------------------------------------------- */
.lp-head__title--left,
.lp-head__sub--left { text-align: left; margin-left: 0; }

/* --------------------------------------------------------- */
/* -- Prévia do laudo técnico -- */
/* Simula o documento entregue na vistoria, sem usar imagem:  */
/* carrega rápido e não depende de foto que a HG não tem.     */
/* --------------------------------------------------------- */
.lp-doc {
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    box-shadow: 0 18px 44px rgba(15, 37, 64, 0.12);
    overflow: hidden;
}

.lp-doc__bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--lp-navy-2);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 16px 22px;
}

.lp-doc__body { padding: 8px 22px; }

.lp-doc__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    font-size: 0.93rem;
    color: #47525f;
    border-bottom: 1px dashed var(--lp-line);
}

.lp-doc__row:last-child { border-bottom: none; }
.lp-doc__ok { color: #2f855a; }

.lp-doc__foot {
    background: var(--lp-bg);
    padding: 14px 22px;
    font-size: 0.8rem;
    color: var(--lp-muted);
    text-align: center;
    border-top: 1px solid var(--lp-line);
}

/* --------------------------------------------------------- */
/* -- Foto com legenda -- */
/* --------------------------------------------------------- */
.lp-figure { margin: 0; }

.lp-figure img {
    width: 100%;
    height: auto;
    border-radius: var(--lp-radius);
    display: block;
}

.lp-figure figcaption {
    margin-top: 12px;
    font-size: 0.83rem;
    color: var(--lp-muted);
    text-align: center;
}

/* --------------------------------------------------------- */
/* -- Cidades atendidas (SEO local) -- */
/* --------------------------------------------------------- */
.lp-cities__title {
    font-size: 1.05rem;
    color: var(--lp-navy);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--lp-blue);
    display: inline-block;
}

.lp-cities__text { font-size: 0.92rem; color: var(--lp-muted); margin-bottom: 14px; }

.lp-cities__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--lp-navy-2);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
}

.lp-cities__link:hover { color: var(--lp-blue); }

/* --------------------------------------------------------- */
/* -- Autor do depoimento -- */
/* --------------------------------------------------------- */
.lp-quote__author span {
    display: block;
    font-weight: 400;
    font-size: 0.78rem;
    color: var(--lp-muted);
}

/* --------------------------------------------------------- */
/* -- Revelação no scroll -- */
/* Os blocos sobem suavemente ao entrar na tela. O estado     */
/* visível é aplicado pelo JS; sem JS, tudo aparece normal.   */
/* --------------------------------------------------------- */
.lp-js .lp-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-js .lp-reveal.is-visible { opacity: 1; transform: none; }

/* Respeita quem pediu menos animação no sistema */
@media (prefers-reduced-motion: reduce) {
    .lp-js .lp-reveal { opacity: 1; transform: none; transition: none; }
    .lp-btn:hover, .lp-symptom:hover { transform: none; }
}

/* Spinner do botão de envio (substitui o fa-spin do Font Awesome) */
.lp-girando { animation: lp-girar 0.9s linear infinite; }
@keyframes lp-girar { to { transform: rotate(360deg); } }
