/* ==========================================================================
   RecoveryData · Landing Page v1 — Caxias do Sul/RS
   CSS 100% isolado. Todas as classes usam o prefixo .lp- para nao colidir
   com o CSS do site (assets/css/style.css, assets/style.css, master.css).
   Nenhum arquivo do site e alterado por este arquivo.
   ========================================================================== */

/* O próprio .lp-page entra no reset: sem isso o <body> mantém a margem
   padrão do navegador e abre uma faixa branca acima da topbar. */
.lp-page, .lp-page * { margin: 0; padding: 0; box-sizing: border-box; }

.lp-page {
    --lp-red: #c70100;
    --lp-red-dk: #9a0100;
    --lp-red-lt: #e8271f;
    --lp-ink: #14161a;
    --lp-ink-2: #2b2f37;
    --lp-txt: #454b55;
    --lp-mut: #757d8a;
    --lp-line: #e4e7ec;
    --lp-bg: #ffffff;
    --lp-bg-2: #f5f6f8;
    --lp-green: #1faa53;
    --lp-whats: #25d366;
    --lp-gold: #f2b705;
    --lp-radius: 14px;
    --lp-shadow: 0 2px 4px rgba(20, 22, 26, .04), 0 12px 32px rgba(20, 22, 26, .08);
    --lp-shadow-lg: 0 4px 10px rgba(20, 22, 26, .06), 0 24px 60px rgba(20, 22, 26, .14);

    font-family: 'Roboto', -apple-system, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--lp-txt);
    background: var(--lp-bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.lp-page img { max-width: 100%; height: auto; display: block; border: 0; }
/* Links herdam a cor do contexto e cada componente define a sua. O :where()
   zera a especificidade para que .lp-btn--*, .lp-footer a etc. sempre vençam. */
.lp-page a { text-decoration: none; }
.lp-page :where(a) { color: inherit; }
.lp-page ul, .lp-page ol { list-style: none; }
.lp-page button, .lp-page input, .lp-page select, .lp-page textarea { font-family: inherit; font-size: inherit; }
.lp-page h1, .lp-page h2, .lp-page h3, .lp-page h4 { color: var(--lp-ink); font-weight: 700; line-height: 1.2; }

.lp-wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.lp-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Titulos de secao ------------------------------------------- */
.lp-sec { padding: 78px 0; position: relative; }
.lp-sec--gray { background: var(--lp-bg-2); }
.lp-sec--dark { background: var(--lp-ink); }
.lp-sec--tight { padding: 58px 0 12px; }

.lp-head { text-align: center; max-width: 780px; margin: 0 auto 46px; }
.lp-head__eyebrow {
    display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .16em;
    text-transform: uppercase; color: var(--lp-red); margin-bottom: 12px;
}
.lp-head h2 { font-size: 36px; font-weight: 300; letter-spacing: -.01em; }
.lp-head h2 strong { font-weight: 700; }
.lp-head h2 em { font-style: normal; color: var(--lp-red); font-weight: 700; }
.lp-head p { margin-top: 14px; font-size: 17px; color: var(--lp-mut); }
.lp-head--light h2 { color: #fff; }
.lp-head--light p { color: rgba(255, 255, 255, .68); }
.lp-head__rule { width: 62px; height: 4px; border-radius: 3px; background: var(--lp-red); margin: 18px auto 0; }

/* ---------- Botoes ------------------------------------------------------ */
.lp-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-weight: 700; font-size: 15px; letter-spacing: .02em; text-align: center;
    padding: 15px 26px; border-radius: 10px; border: 2px solid transparent;
    cursor: pointer; transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
    line-height: 1.15; text-decoration: none;
}
.lp-btn svg { width: 18px; height: 18px; flex: 0 0 auto; fill: currentColor; }
.lp-btn:hover { transform: translateY(-2px); }
.lp-btn--red { background: var(--lp-red); color: #fff; box-shadow: 0 8px 22px rgba(199, 1, 0, .3); }
.lp-btn--red:hover { background: var(--lp-red-dk); color: #fff; box-shadow: 0 12px 28px rgba(199, 1, 0, .4); }
.lp-btn--whats { background: var(--lp-whats); color: #fff; box-shadow: 0 8px 22px rgba(37, 211, 102, .3); }
.lp-btn--whats:hover { background: #1eb356; color: #fff; }
.lp-btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .4); }
.lp-btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; color: #fff; }
.lp-btn--outline { background: #fff; color: var(--lp-ink); border-color: var(--lp-line); }
.lp-btn--outline:hover { border-color: var(--lp-red); color: var(--lp-red); }
.lp-btn--lg { padding: 18px 36px; font-size: 16.5px; }
.lp-btn--block { width: 100%; }

/* ==========================================================================
   1. Topbar
   ========================================================================== */
.lp-topbar {
    background: linear-gradient(90deg, var(--lp-red-dk) 0%, var(--lp-red) 55%, #d81b12 100%);
    color: #fff; font-size: 13.5px; position: relative; z-index: 60;
}
.lp-topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 40px; }
.lp-topbar__item { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.lp-topbar__item svg { width: 15px; height: 15px; fill: currentColor; opacity: .9; flex: 0 0 auto; }
.lp-topbar__item strong { font-weight: 700; }
.lp-topbar__short { display: none; }
.lp-topbar__pulse {
    width: 8px; height: 8px; border-radius: 50%; background: #7dffa6; flex: 0 0 auto;
    box-shadow: 0 0 0 0 rgba(125, 255, 166, .7); animation: lp-pulse 2.2s infinite;
}
@keyframes lp-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(125, 255, 166, .65); }
    70%  { box-shadow: 0 0 0 9px rgba(125, 255, 166, 0); }
    100% { box-shadow: 0 0 0 0 rgba(125, 255, 166, 0); }
}

/* ==========================================================================
   2. Header
   ========================================================================== */
.lp-header {
    background: #fff; border-bottom: 1px solid var(--lp-line);
    position: sticky; top: 0; z-index: 55; transition: box-shadow .2s ease, padding .2s ease;
}
.lp-header.is-stuck { box-shadow: 0 6px 24px rgba(20, 22, 26, .1); }
.lp-header__in { display: flex; align-items: center; gap: 22px; min-height: 100px; }
.lp-header__logo { flex: 0 0 auto; }
.lp-header__logo img { width: 218px; }
.lp-header__unit {
    padding-left: 22px; border-left: 1px solid var(--lp-line); line-height: 1.35;
}
.lp-header__unit span { display: block; font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--lp-red); }
.lp-header__unit strong { display: block; font-size: 14.5px; color: var(--lp-ink); font-weight: 500; }
.lp-header__actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.lp-header__tel { display: flex; align-items: center; gap: 11px; color: var(--lp-ink); }
.lp-header__tel-ico {
    width: 42px; height: 42px; border-radius: 50%; background: rgba(199, 1, 0, .08);
    display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
}
.lp-header__tel-ico svg { width: 19px; height: 19px; fill: var(--lp-red); }
.lp-header__tel small { display: block; font-size: 12px; color: var(--lp-mut); line-height: 1.2; }
.lp-header__tel b { display: block; font-size: 19px; font-weight: 700; letter-spacing: -.01em; line-height: 1.2; }

/* ==========================================================================
   3. Hero
   ========================================================================== */
.lp-hero { position: relative; background: #0d0f12; overflow: hidden; }
.lp-hero__bg {
    position: absolute; inset: 0;
    background: url("../../../imgs/back_banner_top.png") center 32% / cover no-repeat;
    opacity: .5;
}
.lp-hero__veil {
    position: absolute; inset: 0;
    background:
        radial-gradient(1100px 560px at 12% 24%, rgba(199, 1, 0, .34) 0%, rgba(199, 1, 0, 0) 62%),
        linear-gradient(100deg, rgba(10, 12, 15, .96) 0%, rgba(10, 12, 15, .9) 40%, rgba(10, 12, 15, .74) 70%, rgba(10, 12, 15, .82) 100%);
}
/* Atenção: usar padding-top/bottom (nunca o shorthand `padding`) em qualquer
   elemento que também tenha .lp-wrap — o shorthand zera os 20px laterais
   do container e o conteúdo cola na borda no mobile. */
.lp-hero__in {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 452px; gap: 54px; align-items: center;
    padding-top: 62px; padding-bottom: 68px;
}

.lp-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px;
    background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .18);
    color: #fff; border-radius: 100px; padding: 7px 16px 7px 12px;
    font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    backdrop-filter: blur(4px);
}
.lp-hero__eyebrow svg { width: 15px; height: 15px; fill: #ff5f57; }

.lp-hero h1 {
    color: #fff; font-size: 47px; font-weight: 300; line-height: 1.1; letter-spacing: -.022em;
}
.lp-hero h1 strong { font-weight: 900; display: block; }
.lp-hero h1 .lp-hl { color: #fff; position: relative; white-space: nowrap; }
.lp-hero h1 .lp-hl::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 11px; z-index: -1;
    background: var(--lp-red); border-radius: 2px; opacity: .95;
}
.lp-hero__sub {
    margin-top: 20px; font-size: 18px; line-height: 1.62; color: rgba(255, 255, 255, .8); max-width: 560px;
}
.lp-hero__sub b { color: #fff; font-weight: 700; }

.lp-hero__list { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; max-width: 580px; }
.lp-hero__list li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255, 255, 255, .93); font-size: 15px; font-weight: 500; }
.lp-hero__list svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 1px; fill: #38d16d; }

.lp-hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }

.lp-hero__proof {
    margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .14);
    display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
}
.lp-hero__proof-item { font-size: 13.5px; color: rgba(255, 255, 255, .74); display: inline-flex; align-items: center; gap: 8px; }
.lp-hero__proof-item svg { width: 17px; height: 17px; fill: rgba(255, 255, 255, .55); }
.lp-hero__proof-item b { color: #fff; font-weight: 700; }

/* ---------- Card do formulario ------------------------------------------ */
.lp-formcard {
    background: #fff; border-radius: 18px; box-shadow: var(--lp-shadow-lg); overflow: hidden;
    position: relative;
}
.lp-formcard__top {
    background: linear-gradient(135deg, var(--lp-ink) 0%, #23272f 100%);
    padding: 22px 28px 20px; text-align: center; position: relative;
}
.lp-formcard__top::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
    background: linear-gradient(90deg, var(--lp-red) 0%, var(--lp-red-lt) 100%);
}
.lp-formcard__tag {
    display: inline-block; background: var(--lp-red); color: #fff; font-size: 12px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; padding: 5px 13px; border-radius: 100px; margin-bottom: 11px;
}
.lp-formcard__top h2 { color: #fff; font-size: 22px; font-weight: 700; line-height: 1.28; }
.lp-formcard__top p { color: rgba(255, 255, 255, .66); font-size: 13.5px; margin-top: 7px; }
.lp-formcard__body { padding: 26px 28px 24px; }

.lp-field { margin-bottom: 13px; position: relative; }
.lp-field input[type="text"], .lp-field input[type="email"], .lp-field input[type="tel"], .lp-field select {
    width: 100%; height: 52px; padding: 0 16px; border: 1.5px solid var(--lp-line);
    border-radius: 10px; background: #fbfbfc; color: var(--lp-ink); font-size: 15.5px;
    transition: border-color .16s ease, box-shadow .16s ease, background .16s ease; outline: none;
}
.lp-field select { appearance: none; cursor: pointer; padding-right: 42px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23757d8a'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center; background-size: 20px;
}
.lp-field input::placeholder { color: #9aa1ac; }
.lp-field input:focus, .lp-field select:focus {
    border-color: var(--lp-red); background: #fff; box-shadow: 0 0 0 4px rgba(199, 1, 0, .1);
}
.lp-field.is-invalid input, .lp-field.is-invalid select { border-color: var(--lp-red); background: #fff6f6; }
.lp-field__err { display: none; font-size: 12.5px; color: var(--lp-red); font-weight: 500; margin-top: 5px; }
.lp-field.is-invalid .lp-field__err { display: block; }
.lp-field--hp { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; overflow: hidden; }

.lp-check { display: flex; align-items: flex-start; gap: 10px; margin: 14px 0 16px; cursor: pointer; }
.lp-check input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--lp-red); flex: 0 0 auto; cursor: pointer; }
.lp-check span { font-size: 12.8px; color: var(--lp-mut); line-height: 1.5; }
.lp-check a { font-weight: 700; color: var(--lp-red); text-decoration: underline; }
.lp-check.is-invalid span { color: var(--lp-red); }

.lp-formcard__submit { position: relative; }
.lp-formcard__submit .lp-btn { font-size: 16px; letter-spacing: .03em; padding: 18px 20px; }
.lp-formcard__note {
    margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 7px;
    font-size: 12.3px; color: var(--lp-mut); text-align: center;
}
.lp-formcard__note svg { width: 14px; height: 14px; fill: var(--lp-green); flex: 0 0 auto; }
.lp-formcard__or {
    margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--lp-line); text-align: center;
    font-size: 13.5px; color: var(--lp-mut);
}
.lp-formcard__or a { font-weight: 700; color: var(--lp-red); display: inline-block; padding: 4px 2px; }

.lp-alert {
    display: none; padding: 12px 14px; border-radius: 9px; font-size: 13.6px; font-weight: 500;
    margin-bottom: 14px; line-height: 1.45;
}
.lp-alert.is-on { display: block; }
.lp-alert--err { background: #fdecec; color: #a51512; border: 1px solid #f6c9c8; }
.lp-alert--ok { background: #e9f8ef; color: #146c37; border: 1px solid #bfe8cf; }

.lp-btn.is-loading { pointer-events: none; opacity: .8; }
.lp-btn.is-loading .lp-btn__txt { visibility: hidden; }
.lp-btn.is-loading::after {
    content: ""; position: absolute; width: 21px; height: 21px; border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, .4); border-top-color: #fff; animation: lp-spin .7s linear infinite;
}
@keyframes lp-spin { to { transform: rotate(360deg); } }
.lp-btn { position: relative; }

/* ==========================================================================
   4. Barra de metricas
   ========================================================================== */
.lp-stats { background: var(--lp-ink); position: relative; z-index: 3; }
.lp-stats__in { display: grid; grid-template-columns: repeat(4, 1fr); }
.lp-stats__i {
    padding: 26px 22px; text-align: center; border-right: 1px solid rgba(255, 255, 255, .09);
    display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.lp-stats__i:last-child { border-right: 0; }
.lp-stats__i svg { width: 26px; height: 26px; fill: var(--lp-red-lt); margin-bottom: 6px; }
.lp-stats__i b { color: #fff; font-size: 25px; font-weight: 900; line-height: 1.1; letter-spacing: -.02em; }
.lp-stats__i span { color: rgba(255, 255, 255, .62); font-size: 13.2px; line-height: 1.35; }

/* ==========================================================================
   4b. Breadcrumb + resumo factual (SEO / respostas de IA)
   ========================================================================== */
.lp-crumbs { margin-bottom: 18px; font-size: 12.5px; }
.lp-crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; }
.lp-crumbs li { color: rgba(255, 255, 255, .55); display: inline-flex; align-items: center; gap: 7px; }
.lp-crumbs li + li::before { content: "›"; color: rgba(255, 255, 255, .35); }
.lp-crumbs a { color: rgba(255, 255, 255, .72); text-decoration: none; padding: 2px 0; }
.lp-crumbs a:hover { color: #fff; text-decoration: underline; }
.lp-crumbs [aria-current] { color: #fff; font-weight: 500; }

.lp-resumo {
    background: #fff; border: 1px solid var(--lp-line); border-left: 5px solid var(--lp-red);
    border-radius: var(--lp-radius); padding: 32px 36px; box-shadow: var(--lp-shadow);
}
.lp-resumo h2 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.lp-resumo__lead { font-size: 16.2px; line-height: 1.72; color: var(--lp-txt); }
.lp-resumo__dl { margin-top: 22px; border-top: 1px solid var(--lp-line); }
.lp-resumo__row { display: grid; grid-template-columns: 190px 1fr; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--lp-line); }
.lp-resumo__row:last-child { border-bottom: 0; }
.lp-resumo__row dt { font-size: 13px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--lp-red); padding-top: 2px; }
.lp-resumo__row dd { font-size: 15.4px; line-height: 1.62; color: var(--lp-txt); }

/* ==========================================================================
   5. Midias que recuperamos
   ========================================================================== */
.lp-midias { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lp-midia {
    background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-radius);
    padding: 28px 26px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    position: relative; overflow: hidden;
}
.lp-midia::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: var(--lp-red); transform: scaleY(0); transform-origin: top; transition: transform .22s ease;
}
.lp-midia:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow); border-color: #d8dce3; }
.lp-midia:hover::before { transform: scaleY(1); }
/* Os ícones de assets/imgs são claros (feitos para fundo escuro),
   por isso ficam sobre uma placa escura para manter o contraste. */
.lp-midia__ico {
    width: 96px; height: 74px; margin-bottom: 18px; border-radius: 12px;
    background: linear-gradient(150deg, var(--lp-ink) 0%, #2c3038 100%);
    display: flex; align-items: center; justify-content: center; padding: 8px;
    box-shadow: 0 6px 16px rgba(20, 22, 26, .16); transition: background .2s ease;
}
.lp-midia:hover .lp-midia__ico { background: linear-gradient(150deg, var(--lp-red-dk) 0%, var(--lp-red) 100%); }
.lp-midia__ico img { max-height: 56px; max-width: 78px; width: auto; }
.lp-midia h3 { font-size: 18.5px; margin-bottom: 8px; }
.lp-midia p { font-size: 14.6px; color: var(--lp-mut); line-height: 1.6; }

/* ==========================================================================
   6. Sintomas
   ========================================================================== */
.lp-sint { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 20px; max-width: 940px; margin: 0 auto; }
.lp-sint li {
    display: flex; align-items: flex-start; gap: 12px; background: #fff; border: 1px solid var(--lp-line);
    border-radius: 10px; padding: 15px 18px; font-size: 15.2px; color: var(--lp-ink); font-weight: 500;
    transition: border-color .16s ease, box-shadow .16s ease;
}
.lp-sint li:hover { border-color: rgba(199, 1, 0, .4); box-shadow: 0 4px 14px rgba(199, 1, 0, .07); }
.lp-sint li svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 1px; fill: var(--lp-red); }
.lp-sint__foot {
    text-align: center; margin-top: 38px; font-size: 17px; color: var(--lp-txt);
}
.lp-sint__foot strong { color: var(--lp-ink); }
.lp-sint__foot .lp-btn { margin-top: 20px; }

.lp-warn {
    max-width: 940px; margin: 34px auto 0; background: #fff8e9; border: 1px solid #f6dfa8;
    border-left: 4px solid var(--lp-gold); border-radius: 10px; padding: 18px 22px;
    display: flex; gap: 14px; align-items: flex-start;
}
.lp-warn svg { width: 24px; height: 24px; flex: 0 0 auto; fill: #d99b00; margin-top: 1px; }
.lp-warn p { font-size: 14.8px; color: #6b5410; line-height: 1.6; }
.lp-warn strong { color: #4a3906; }

/* ==========================================================================
   7. Como funciona
   ========================================================================== */
.lp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.lp-steps::before {
    content: ""; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px;
    background: repeating-linear-gradient(90deg, #d5d9e0 0 8px, transparent 8px 16px);
}
.lp-step { text-align: center; position: relative; z-index: 2; }
.lp-step__n {
    width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 50%;
    background: #fff; border: 2px solid var(--lp-line); color: var(--lp-red);
    display: flex; align-items: center; justify-content: center; font-size: 25px; font-weight: 900;
    box-shadow: 0 6px 18px rgba(20, 22, 26, .07); transition: all .2s ease;
}
.lp-step:hover .lp-step__n { background: var(--lp-red); border-color: var(--lp-red); color: #fff; transform: translateY(-3px); }
.lp-step h3 { font-size: 18px; margin-bottom: 9px; }
.lp-step p { font-size: 14.7px; color: var(--lp-mut); line-height: 1.62; }
.lp-sec--gray .lp-step__n { background: var(--lp-bg-2); }

/* ==========================================================================
   8. Por que a RecoveryData
   ========================================================================== */
.lp-why { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.lp-why__media { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--lp-shadow-lg); }
.lp-why__media img { width: 100%; height: 480px; object-fit: cover; object-position: center 42%; display: block; }
.lp-why__badge {
    position: absolute; left: 24px; bottom: 24px; background: rgba(255, 255, 255, .96);
    border-radius: 12px; padding: 15px 20px; box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    backdrop-filter: blur(6px); display: flex; align-items: center; gap: 13px;
}
.lp-why__badge svg { width: 32px; height: 32px; fill: var(--lp-red); flex: 0 0 auto; }
.lp-why__badge b { display: block; font-size: 16px; color: var(--lp-ink); line-height: 1.2; }
.lp-why__badge span { font-size: 12.8px; color: var(--lp-mut); }

.lp-why__txt h2 { font-size: 34px; font-weight: 300; letter-spacing: -.015em; margin-bottom: 8px; }
.lp-why__txt h2 strong { font-weight: 700; }
.lp-why__txt > p { font-size: 16.4px; color: var(--lp-mut); margin-bottom: 26px; }
.lp-why__ul li { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--lp-line); }
.lp-why__ul li:last-child { border-bottom: 0; }
.lp-why__ul .lp-why__ico {
    width: 40px; height: 40px; border-radius: 10px; background: rgba(199, 1, 0, .08); flex: 0 0 auto;
    display: flex; align-items: center; justify-content: center;
}
.lp-why__ul .lp-why__ico svg { width: 21px; height: 21px; fill: var(--lp-red); }
.lp-why__ul b { display: block; font-size: 16px; color: var(--lp-ink); margin-bottom: 2px; }
.lp-why__ul span { font-size: 14.6px; color: var(--lp-mut); line-height: 1.55; }

/* ==========================================================================
   9. Depoimentos
   ========================================================================== */
.lp-depos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.lp-depo {
    background: #fff; border-radius: var(--lp-radius); padding: 30px 30px 26px; border: 1px solid var(--lp-line);
    display: flex; flex-direction: column; position: relative;
}
.lp-depo__q { display: block; font-size: 54px; line-height: .62; height: 34px; color: rgba(199, 1, 0, .22); font-weight: 900; font-family: Georgia, serif; }
.lp-depo blockquote { font-size: 15.3px; line-height: 1.72; color: var(--lp-txt); flex: 1; position: relative; z-index: 2; }
.lp-depo__by { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--lp-line); }
.lp-depo__by img { max-height: 34px; width: auto; opacity: .85; }

/* ==========================================================================
   10. Clientes
   ========================================================================== */
.lp-cli { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: center; }
.lp-cli__i {
    background: #fff; border: 1px solid var(--lp-line); border-radius: 12px; height: 108px;
    display: flex; align-items: center; justify-content: center; padding: 16px;
    filter: grayscale(1); opacity: .68; transition: all .2s ease;
}
.lp-cli__i:hover { filter: grayscale(0); opacity: 1; box-shadow: var(--lp-shadow); transform: translateY(-3px); }
.lp-cli__i img { max-height: 68px; width: auto; }

/* ==========================================================================
   11. Regiao atendida
   ========================================================================== */
.lp-regiao { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; }
.lp-regiao__box { background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-radius); padding: 30px 32px; }
.lp-regiao__box h3 { font-size: 19px; display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.lp-regiao__box h3 svg { width: 21px; height: 21px; fill: var(--lp-red); }
.lp-regiao__box > p { font-size: 14.5px; color: var(--lp-mut); margin-bottom: 18px; }
.lp-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-chips li {
    font-size: 13.4px; font-weight: 500; color: var(--lp-txt); background: var(--lp-bg-2);
    border: 1px solid var(--lp-line); border-radius: 100px; padding: 6px 14px;
}
.lp-chips li.is-main { background: rgba(199, 1, 0, .07); border-color: rgba(199, 1, 0, .22); color: var(--lp-red); font-weight: 700; }

/* ==========================================================================
   12. Mapa / unidade
   ========================================================================== */
.lp-unit { display: grid; grid-template-columns: 400px 1fr; gap: 0; border-radius: 18px; overflow: hidden; box-shadow: var(--lp-shadow-lg); background: #fff; }
.lp-unit__info { background: linear-gradient(160deg, var(--lp-ink) 0%, #22262e 100%); padding: 42px 38px; color: #fff; position: relative; }
.lp-unit__info::after {
    content: ""; position: absolute; right: -1px; top: 0; bottom: 0; width: 5px;
    background: linear-gradient(180deg, var(--lp-red) 0%, var(--lp-red-lt) 100%);
}
.lp-unit__tag {
    display: inline-flex; align-items: center; gap: 7px; background: rgba(199, 1, 0, .18);
    border: 1px solid rgba(232, 39, 31, .4); color: #ff8a84; border-radius: 100px;
    padding: 6px 14px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px;
}
.lp-unit__tag svg { width: 14px; height: 14px; fill: currentColor; }
.lp-unit__info h3 { color: #fff; font-size: 27px; font-weight: 300; line-height: 1.18; margin-bottom: 6px; }
.lp-unit__info h3 strong { font-weight: 700; display: block; }
.lp-unit__rows { margin: 26px 0 28px; }
.lp-unit__row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.lp-unit__row:last-child { border-bottom: 0; }
.lp-unit__row svg { width: 19px; height: 19px; fill: var(--lp-red-lt); flex: 0 0 auto; margin-top: 3px; }
.lp-unit__row small { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .45); margin-bottom: 3px; }
.lp-unit__row b { font-size: 15.6px; color: #fff; font-weight: 500; line-height: 1.45; display: block; }
.lp-unit__row a { color: #fff; }
.lp-unit__btns { display: grid; gap: 10px; }

.lp-unit__map { position: relative; min-height: 520px; background: #eceff3; }
.lp-unit__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; filter: saturate(1.04); }
.lp-mapcard {
    position: absolute; top: 22px; left: 22px; width: 320px; max-width: calc(100% - 44px);
    background: #fff; border-radius: 12px; box-shadow: 0 8px 32px rgba(0, 0, 0, .22); padding: 17px 19px; z-index: 2;
}
.lp-mapcard__top { display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #eef0f3; padding-bottom: 10px; margin-bottom: 10px; }
.lp-mapcard__top svg { width: 19px; height: 19px; fill: var(--lp-red); flex: 0 0 auto; }
.lp-mapcard__top span { font-size: 12px; font-weight: 700; color: var(--lp-red); letter-spacing: .06em; text-transform: uppercase; }
.lp-mapcard b { display: block; font-size: 15.5px; color: var(--lp-ink); line-height: 1.35; }
.lp-mapcard small { display: block; font-size: 12.6px; color: var(--lp-mut); margin-top: 3px; }
.lp-mapcard .lp-btn { margin-top: 13px; padding: 9px 16px; font-size: 13px; border-radius: 7px; }

/* ==========================================================================
   13. FAQ
   ========================================================================== */
.lp-faq { max-width: 880px; margin: 0 auto; }
.lp-faq__i { background: #fff; border: 1px solid var(--lp-line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; transition: box-shadow .18s ease, border-color .18s ease; }
.lp-faq__i.is-open { border-color: rgba(199, 1, 0, .3); box-shadow: 0 6px 22px rgba(20, 22, 26, .07); }
.lp-faq__q {
    width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
    padding: 20px 58px 20px 24px; font-size: 16.4px; font-weight: 500; color: var(--lp-ink);
    position: relative; line-height: 1.45;
}
.lp-faq__q::after {
    content: ""; position: absolute; right: 22px; top: 50%; width: 12px; height: 12px;
    border-right: 2.5px solid var(--lp-red); border-bottom: 2.5px solid var(--lp-red);
    transform: translateY(-70%) rotate(45deg); transition: transform .22s ease;
}
.lp-faq__i.is-open .lp-faq__q::after { transform: translateY(-30%) rotate(-135deg); }
.lp-faq__i.is-open .lp-faq__q { color: var(--lp-red); font-weight: 700; }
.lp-faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.lp-faq__a-in { padding: 0 24px 22px; font-size: 15.2px; color: var(--lp-txt); line-height: 1.72; }

/* ==========================================================================
   14. CTA final
   ========================================================================== */
.lp-cta { background: var(--lp-ink); position: relative; overflow: hidden; }
.lp-cta__bg {
    position: absolute; inset: 0;
    background: url("../../../imgs/back_hard_disk.png") center / cover no-repeat; opacity: .16;
}
.lp-cta__veil {
    position: absolute; inset: 0;
    background: radial-gradient(900px 480px at 78% 50%, rgba(199, 1, 0, .4) 0%, rgba(199, 1, 0, 0) 66%),
                linear-gradient(90deg, rgba(14, 16, 19, .95) 0%, rgba(14, 16, 19, .78) 100%);
}
.lp-cta__in { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 430px; gap: 56px; align-items: center; padding-top: 72px; padding-bottom: 72px; }
.lp-cta__txt h2 { color: #fff; font-size: 38px; font-weight: 300; line-height: 1.14; letter-spacing: -.02em; }
.lp-cta__txt h2 strong { font-weight: 900; }
.lp-cta__txt p { color: rgba(255, 255, 255, .75); font-size: 17.5px; margin-top: 16px; max-width: 520px; line-height: 1.6; }
.lp-cta__list { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px 26px; }
.lp-cta__list li { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-size: 15px; font-weight: 500; }
.lp-cta__list svg { width: 19px; height: 19px; fill: #38d16d; }
.lp-cta__tel { margin-top: 30px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.lp-cta__tel .lp-cta__tel-b { color: #fff; }
.lp-cta__tel-b small { display: block; font-size: 12.5px; color: rgba(255, 255, 255, .6); letter-spacing: .06em; text-transform: uppercase; }
.lp-cta__tel-b b { font-size: 30px; font-weight: 900; letter-spacing: -.02em; line-height: 1.15; }

/* ==========================================================================
   15. Rodape
   ========================================================================== */
.lp-footer { background: #0c0e11; color: rgba(255, 255, 255, .62); padding: 48px 0 28px; font-size: 14px; }
.lp-footer__in { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding-bottom: 34px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.lp-footer__logo { width: 180px; margin-bottom: 16px; }
.lp-footer p { line-height: 1.7; font-size: 14px; }
.lp-footer h3 { color: #fff; font-size: 13px; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 15px; font-weight: 700; }
.lp-footer li { margin-bottom: 9px; line-height: 1.55; }
.lp-footer a { color: rgba(255, 255, 255, .62); transition: color .16s ease; display: inline-block; padding: 5px 0; }
.lp-footer a:hover { color: #fff; }
.lp-footer__bot { padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255, 255, 255, .45); }
.lp-footer__bot a { color: rgba(255, 255, 255, .6); text-decoration: underline; }

/* ==========================================================================
   16. Flutuantes
   ========================================================================== */
.lp-float {
    position: fixed; right: 20px; bottom: 22px; z-index: 90; width: 62px; height: 62px; border-radius: 50%;
    background: var(--lp-whats); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 26px rgba(37, 211, 102, .45); transition: transform .18s ease;
}
.lp-float:hover { transform: scale(1.07); }
.lp-float svg { width: 34px; height: 34px; fill: #fff; }
.lp-float::before {
    content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--lp-whats);
    animation: lp-ring 2.4s ease-out infinite; z-index: -1;
}
@keyframes lp-ring {
    0% { transform: scale(1); opacity: .55; }
    100% { transform: scale(1.65); opacity: 0; }
}

.lp-bar { display: none; }

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 1100px) {
    .lp-hero__in { grid-template-columns: 1fr 400px; gap: 36px; }
    .lp-hero h1 { font-size: 40px; }
    .lp-unit { grid-template-columns: 340px 1fr; }
    .lp-unit__info { padding: 34px 28px; }
    .lp-cli { grid-template-columns: repeat(3, 1fr); }
    .lp-cta__in { grid-template-columns: 1fr 380px; gap: 36px; }
}

@media (max-width: 960px) {
    .lp-why__media img { height: 360px; }
    .lp-sec { padding: 58px 0; }
    .lp-head h2 { font-size: 30px; }
    .lp-header__unit { display: none; }
    .lp-hero__in { grid-template-columns: 1fr; padding-top: 44px; padding-bottom: 52px; gap: 34px; }
    .lp-hero h1 { font-size: 38px; }
    .lp-hero__sub { font-size: 17px; }
    .lp-formcard { max-width: 470px; margin: 0 auto; width: 100%; }
    .lp-stats__in { grid-template-columns: repeat(2, 1fr); }
    .lp-stats__i:nth-child(2) { border-right: 0; }
    .lp-stats__i:nth-child(1), .lp-stats__i:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, .09); }
    .lp-midias { grid-template-columns: repeat(2, 1fr); }
    .lp-steps { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
    .lp-steps::before { display: none; }
    .lp-why { grid-template-columns: 1fr; gap: 34px; }
    .lp-why__txt h2 { font-size: 29px; }
    .lp-depos { grid-template-columns: 1fr; }
    .lp-regiao { grid-template-columns: 1fr; gap: 22px; }
    .lp-unit { grid-template-columns: 1fr; }
    .lp-unit__info::after { left: 0; right: 0; top: auto; bottom: -1px; width: auto; height: 5px; background: linear-gradient(90deg, var(--lp-red) 0%, var(--lp-red-lt) 100%); }
    .lp-unit__map { min-height: 420px; }
    .lp-cta__in { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 56px; gap: 34px; }
    .lp-cta__txt h2 { font-size: 31px; }
    .lp-footer__in { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 700px) {
    .lp-page { font-size: 15.5px; }
    .lp-topbar { font-size: 12.3px; }
    .lp-topbar__in { justify-content: center; min-height: 36px; }
    .lp-topbar__item { white-space: nowrap; }
    .lp-topbar__item--addr, .lp-topbar__long { display: none; }
    .lp-topbar__short { display: inline; }
    .lp-header__in { min-height: 76px; gap: 12px; }
    .lp-header__logo img { width: 168px; }
    .lp-header__actions .lp-btn { display: none; }
    .lp-header__tel b { font-size: 16.5px; }
    .lp-header__tel small { font-size: 12px; }
    .lp-header__tel-ico { width: 36px; height: 36px; }
    .lp-header__tel-ico svg { width: 16px; height: 16px; }

    /* No celular o hero fica centralizado; só a lista de benefícios
       permanece alinhada à esquerda, centralizada como bloco. */
    .lp-hero__txt { text-align: center; }
    .lp-hero h1 { font-size: 31px; }
    .lp-hero h1 .lp-hl::after { height: 8px; bottom: 2px; }
    .lp-hero__sub { font-size: 16px; margin-left: auto; margin-right: auto; }
    .lp-hero__list { display: inline-grid; grid-template-columns: 1fr; gap: 10px; text-align: left; }
    .lp-hero__cta { display: none; }
    .lp-hero__proof { gap: 14px 20px; justify-content: center; }

    .lp-formcard__top { padding: 20px 20px 18px; }
    .lp-formcard__top h2 { font-size: 19.5px; }
    .lp-formcard__body { padding: 22px 20px 22px; }

    .lp-head { margin-bottom: 34px; }
    .lp-head h2 { font-size: 26px; }
    .lp-head p { font-size: 15.5px; }
    .lp-sec { padding: 48px 0; }

    .lp-midias { grid-template-columns: 1fr; gap: 14px; }
    .lp-midia { padding: 26px 20px; text-align: center; }
    .lp-midia__ico { margin-left: auto; margin-right: auto; }
    .lp-resumo { padding: 24px 22px; }
    .lp-resumo h2 { font-size: 19.5px; }
    .lp-resumo__lead { font-size: 15.4px; }
    .lp-resumo__row { grid-template-columns: 1fr; gap: 4px; }
    .lp-crumbs ol { justify-content: center; }
    .lp-sint { grid-template-columns: 1fr; gap: 10px; }
    .lp-sint li { font-size: 14.5px; padding: 13px 15px; }
    .lp-steps { grid-template-columns: 1fr; gap: 26px; }
    .lp-step { display: grid; grid-template-columns: 60px 1fr; gap: 16px; text-align: left; align-items: start; }
    .lp-step__n { width: 58px; height: 58px; font-size: 22px; margin: 0; }
    .lp-cli { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .lp-cli__i { height: 88px; }
    .lp-depo { padding: 24px 22px 22px; }
    .lp-regiao__box { padding: 24px 22px; }
    .lp-unit__info { padding: 30px 22px; }
    .lp-unit__info h3 { font-size: 23px; }
    .lp-unit__map { min-height: 440px; }
    .lp-mapcard { width: auto; left: 14px; right: 14px; top: 14px; padding: 14px 16px; }
    .lp-faq__q { font-size: 15.3px; padding: 17px 48px 17px 18px; }
    .lp-faq__a-in { padding: 0 18px 18px; font-size: 14.6px; }
    .lp-cta__txt { text-align: center; }
    .lp-cta__txt h2 { font-size: 26px; }
    .lp-cta__txt p { font-size: 16px; margin-left: auto; margin-right: auto; }
    .lp-cta__list { justify-content: center; }
    .lp-cta__tel { justify-content: center; }
    .lp-cta__tel-b b { font-size: 26px; }
    .lp-footer__in { grid-template-columns: 1fr; gap: 26px; }
    .lp-footer__bot { flex-direction: column; text-align: center; }

    /* barra fixa mobile */
    .lp-float { display: none; }
    .lp-bar {
        display: grid; grid-template-columns: 1fr 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0;
        z-index: 95; background: #fff; box-shadow: 0 -4px 20px rgba(0, 0, 0, .16); border-top: 1px solid var(--lp-line);
    }
    .lp-bar a {
        display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
        padding: 9px 4px 8px; font-size: 12px; font-weight: 700; color: var(--lp-ink);
        border-right: 1px solid var(--lp-line); line-height: 1.15; text-align: center;
        min-height: 56px; /* área de toque confortável */
    }
    .lp-bar a:last-child { border-right: 0; }
    .lp-bar svg { width: 21px; height: 21px; }
    .lp-bar__tel svg { fill: var(--lp-red); }
    .lp-bar__whats svg { fill: var(--lp-whats); }
    .lp-bar a.lp-bar__form { background: var(--lp-red); color: #fff; }
    .lp-bar__form svg { fill: #fff; }
    body.lp-has-bar { padding-bottom: 60px; }
}

@media (max-width: 400px) {
    .lp-hero h1 { font-size: 27px; }
    .lp-header__logo img { width: 148px; }
    .lp-header__tel small { display: none; }
}

/* Acessibilidade / preferencias */
@media (prefers-reduced-motion: reduce) {
    .lp-page *, .lp-page *::before, .lp-page *::after {
        animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important;
    }
}
