/* =========================================================================
   Larica Food — sistema visual da landing
   Paleta extraída da logomarca: âmbar #FFB70B → laranja #FB5A07, azul #112F48
   ========================================================================= */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
    --lf-amber: #ffb70b;
    --lf-orange: #fd8309;
    --lf-orange-deep: #fb5a07;
    --lf-orange-dark: #d94a04;
    --lf-navy: #112f48;
    --lf-navy-deep: #0a1c2c;
    --lf-navy-soft: #1b3f5e;
    --lf-ink: #102a40;
    --lf-body: #56697a;
    --lf-muted: #8296a6;
    --lf-cream: #fff7ef;
    --lf-cream-deep: #ffefe1;
    --lf-line: #ece1d6;
    --lf-white: #ffffff;

    --lf-grad: linear-gradient(135deg, #ffb70b 0%, #fd8309 48%, #fb5a07 100%);
    --lf-grad-soft: linear-gradient(135deg, rgba(255, 183, 11, .14), rgba(251, 90, 7, .14));

    --lf-shadow-sm: 0 2px 8px rgba(17, 47, 72, .06);
    --lf-shadow: 0 14px 40px -18px rgba(17, 47, 72, .28);
    --lf-shadow-lg: 0 40px 80px -32px rgba(17, 47, 72, .42);
    --lf-shadow-warm: 0 22px 48px -20px rgba(251, 90, 7, .55);

    --lf-r-sm: 12px;
    --lf-r: 18px;
    --lf-r-lg: 26px;
    --lf-r-xl: 34px;

    --lf-max: 1180px;
    --lf-gutter: 24px;
}

/* ---------- base ---------- */
body,
body.lf {
    font-family: "Plus Jakarta Sans", "Rubik", system-ui, -apple-system, "Segoe UI", sans-serif;
    color: var(--lf-body);
    background: var(--lf-white);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.lf h1, .lf h2, .lf h3, .lf h4, .lf h5,
.lf-header h1, .lf-footer h5 {
    font-family: "Plus Jakarta Sans", "Rubik", system-ui, sans-serif;
    color: var(--lf-ink);
    font-weight: 800;
    letter-spacing: -.015em;
    line-height: 1.18;
    margin: 0;
}

.lf p { margin: 0; }
.lf ul { list-style: none; margin: 0; padding: 0; }
.lf a { text-decoration: none; color: inherit; transition: color .2s ease, opacity .2s ease; }
.lf img { max-width: 100%; height: auto; display: block; }
.lf * { box-sizing: border-box; }

.lf-wrap {
    width: 100%;
    max-width: var(--lf-max);
    margin: 0 auto;
    padding: 0 var(--lf-gutter);
}

/* ---------- tipografia de seção ---------- */
.lf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--lf-orange-deep);
    background: rgba(251, 90, 7, .09);
    border: 1px solid rgba(251, 90, 7, .16);
    border-radius: 999px;
    padding: 7px 14px;
}
.lf-eyebrow--light {
    color: #ffd48a;
    background: rgba(255, 183, 11, .12);
    border-color: rgba(255, 183, 11, .26);
}

.lf-h2 { font-size: clamp(28px, 3.6vw, 44px); }
.lf-h3 { font-size: clamp(20px, 2vw, 24px); }
.lf-lead {
    font-size: clamp(15.5px, 1.35vw, 18px);
    line-height: 1.7;
    color: var(--lf-body);
}
.lf-grad-text {
    background: var(--lf-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lf-section { padding: clamp(64px, 8vw, 112px) 0; position: relative; }
.lf-section--cream { background: var(--lf-cream); }
.lf-section-head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
.lf-section-head .lf-h2 { margin: 18px 0 14px; }
.lf-section-head--left { margin-left: 0; text-align: left; }

/* ---------- botões ---------- */
.lf .lf-btn {
    text-transform: none;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    padding: 15px 26px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.lf .lf-btn:hover { transform: translateY(-2px); }
.lf .lf-btn svg { flex: none; }

.lf .lf-btn-primary {
    background: var(--lf-grad);
    color: #fff;
    box-shadow: var(--lf-shadow-warm);
}
.lf .lf-btn-primary:hover { color: #fff; box-shadow: 0 26px 54px -20px rgba(251, 90, 7, .7); }

.lf .lf-btn-ghost {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .28);
    color: #fff;
}
.lf .lf-btn-ghost:hover { background: rgba(255, 255, 255, .14); color: #fff; }

.lf .lf-btn-outline {
    background: #fff;
    border-color: var(--lf-line);
    color: var(--lf-ink);
    box-shadow: var(--lf-shadow-sm);
}
.lf .lf-btn-outline:hover { border-color: var(--lf-orange); color: var(--lf-orange-deep); }

.lf .lf-btn-navy { background: var(--lf-navy); color: #fff; }
.lf .lf-btn-navy:hover { background: var(--lf-navy-deep); color: #fff; }

.lf .lf-btn-sm { padding: 11px 20px; font-size: 14px; }
.lf .lf-btn-block { width: 100%; }

.lf .lf-link-arrow {
    text-transform: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    color: var(--lf-orange-deep);
}
.lf .lf-link-arrow svg { transition: transform .2s ease; }
.lf .lf-link-arrow:hover svg { transform: translateX(4px); }

/* =========================================================================
   Cabeçalho
   ========================================================================= */
.lf-header {
    position: sticky;
    top: 0;
    inset-inline-start: auto;
    width: 100%;
    padding: 0;
    z-index: 60;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid rgba(17, 47, 72, .07);
}
.lf-header__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 76px;
}
.lf-header__logo img { height: 40px; width: auto; }
.lf-nav { display: flex; align-items: center; gap: 4px; margin-left: 14px; }
.lf-nav a {
    text-transform: none;
    display: block;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    color: var(--lf-ink);
}
.lf-nav a:hover { color: var(--lf-orange-deep); background: rgba(251, 90, 7, .07); }
.lf-nav a.is-active { color: var(--lf-orange-deep); background: rgba(251, 90, 7, .1); }

.lf-header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.lf-drop { position: relative; }
.lf-drop__btn {
    text-transform: none;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1.5px solid var(--lf-line);
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    color: var(--lf-ink);
    cursor: pointer;
}
.lf-drop__btn:hover { border-color: var(--lf-orange); color: var(--lf-orange-deep); }
.lf-drop .lf-drop__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 210px;
    background: #fff;
    border: 1px solid var(--lf-line);
    border-radius: var(--lf-r-sm);
    box-shadow: var(--lf-shadow);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all .18s ease;
}
.lf-drop.is-open .lf-drop__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lf-drop__menu a {
    text-transform: none;
    display: block;
    padding: 10px 14px;
    border-radius: 9px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--lf-ink);
}
.lf-drop__menu a:hover { background: var(--lf-cream); color: var(--lf-orange-deep); }

.lf-burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1.5px solid var(--lf-line);
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.lf-burger span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--lf-ink);
    transition: transform .2s ease, opacity .2s ease;
}
.lf-header.is-open .lf-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lf-header.is-open .lf-burger span:nth-child(2) { opacity: 0; }
.lf-header.is-open .lf-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================================
   Hero
   ========================================================================= */
.lf-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0d2437 0%, #112f48 42%, #0a1c2c 100%);
    color: #fff;
    padding: clamp(56px, 7vw, 96px) 0 clamp(72px, 9vw, 120px);
}
.lf-hero::before {
    content: "";
    position: absolute;
    width: 720px;
    height: 720px;
    right: -180px;
    top: -280px;
    background: radial-gradient(circle, rgba(253, 131, 9, .38) 0%, rgba(251, 90, 7, .12) 45%, transparent 70%);
    filter: blur(10px);
    pointer-events: none;
}
.lf-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(80% 70% at 30% 30%, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(80% 70% at 30% 30%, #000 0%, transparent 75%);
    pointer-events: none;
}
.lf-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}
.lf-hero h1 {
    color: #fff;
    font-size: clamp(38px, 5.4vw, 64px);
    line-height: 1.05;
    margin: 22px 0 0;
}
.lf-hero h1 .lf-grad-text { display: inline-block; }
.lf-hero .lf-hero__tag {
    margin: 28px 0 0;
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.65;
    color: rgba(255, 255, 255, .78);
    max-width: 34em;
}
.lf-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.lf-hero .lf-hero__points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}
.lf-hero .lf-hero__points li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .82);
}
.lf-hero .lf-hero__points svg { color: var(--lf-amber); flex: none; }

/* mockup de celular desenhado em CSS */
.lf-phone-stage { position: relative; display: flex; justify-content: center; }
.lf-phone {
    position: relative;
    width: 300px;
    max-width: 100%;
    border-radius: 42px;
    background: linear-gradient(160deg, #22384c, #0e2536);
    padding: 12px;
    box-shadow: var(--lf-shadow-lg), 0 0 0 1px rgba(255, 255, 255, .07) inset;
    transform: rotate(-3deg);
}
.lf-phone__screen {
    position: relative;
    border-radius: 32px;
    background: #fff;
    overflow: hidden;
    padding: 20px 16px 18px;
}
.lf-phone__notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 92px;
    height: 7px;
    border-radius: 99px;
    background: #e8eef3;
}
.lf-phone__top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--lf-muted);
}
.lf-phone__top strong { color: var(--lf-ink); font-size: 12.5px; }
.lf-phone__search {
    margin-top: 12px;
    height: 38px;
    border-radius: 12px;
    background: #f4f6f8;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
    font-size: 12px;
    color: var(--lf-muted);
    font-weight: 500;
}
.lf-phone__banner {
    margin-top: 12px;
    height: 74px;
    border-radius: 14px;
    background: var(--lf-grad);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 16px;
    color: #fff;
}
.lf-phone__banner b { font-size: 15px; font-weight: 800; letter-spacing: -.01em; }
.lf-phone__banner span { font-size: 11px; opacity: .92; margin-top: 2px; }
.lf-phone__cats { display: flex; gap: 8px; margin-top: 14px; }
.lf-phone__cat {
    flex: 1;
    border-radius: 12px;
    background: #f7f9fb;
    padding: 9px 4px 7px;
    text-align: center;
    font-size: 9.5px;
    font-weight: 700;
    color: var(--lf-ink);
}
.lf-phone__cat i {
    display: block;
    font-size: 16px;
    font-style: normal;
    margin-bottom: 3px;
}
.lf-phone__label {
    margin-top: 16px;
    font-size: 12.5px;
    font-weight: 800;
    color: var(--lf-ink);
}
.lf-phone__item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 9px;
    border-radius: 14px;
    border: 1px solid #eef2f5;
}
.lf-phone__thumb {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    flex: none;
    background: var(--lf-grad);
    opacity: .9;
}
.lf-phone__item:nth-of-type(even) .lf-phone__thumb {
    background: linear-gradient(135deg, #ffd06b, #fd8309);
}
.lf-phone__item > div b { display: block; font-size: 11.5px; color: var(--lf-ink); font-weight: 800; }
.lf-phone__item > div span { display: block; font-size: 10px; color: var(--lf-muted); margin-top: 2px; }
.lf-phone__price { margin-left: auto; font-size: 12px; font-weight: 800; color: var(--lf-orange-deep); }

.lf-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--lf-ink);
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: var(--lf-shadow-lg);
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.3;
}
.lf-chip > div span { display: block; font-size: 10.5px; font-weight: 600; color: var(--lf-muted); }
.lf-chip__ico {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--lf-grad);
    display: grid;
    place-items: center;
    color: #fff;
    flex: none;
}
.lf-chip--a { left: -72px; top: 6%; }
.lf-chip--b { right: -52px; bottom: -18px; }

/* =========================================================================
   Passos
   ========================================================================= */
.lf-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lf-step {
    position: relative;
    background: #fff;
    border: 1px solid var(--lf-line);
    border-radius: var(--lf-r-lg);
    padding: 34px 28px 30px;
    box-shadow: var(--lf-shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.lf-step:hover { transform: translateY(-6px); box-shadow: var(--lf-shadow); border-color: transparent; }
.lf-step__num {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--lf-orange-deep);
    background: var(--lf-grad-soft);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}
.lf-step h3 { font-size: 19px; margin-bottom: 10px; }
.lf-step p { font-size: 14.8px; line-height: 1.65; }

/* =========================================================================
   Recursos
   ========================================================================= */
.lf-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lf-feature {
    position: relative;
    background: #fff;
    border: 1px solid var(--lf-line);
    border-radius: var(--lf-r-lg);
    padding: 30px 26px;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.lf-feature::after {
    content: "";
    position: absolute;
    inset: auto -40% -60% auto;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: var(--lf-grad-soft);
    opacity: 0;
    transition: opacity .3s ease;
}
.lf-feature:hover { transform: translateY(-6px); box-shadow: var(--lf-shadow); border-color: transparent; }
.lf-feature:hover::after { opacity: 1; }
.lf-feature > * { position: relative; z-index: 1; }
.lf-feature__ico {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--lf-grad);
    color: #fff;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    box-shadow: 0 12px 26px -12px rgba(251, 90, 7, .75);
}
.lf-feature__ico img { width: 28px; height: 28px; object-fit: contain; }
.lf-feature h3 { font-size: 18px; }
.lf-feature__sub {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--lf-orange-deep);
    margin: 4px 0 10px;
}
.lf-feature p { font-size: 14.6px; line-height: 1.65; }

/* =========================================================================
   Plataforma (3 perfis)
   ========================================================================= */
.lf-roles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lf-role {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--lf-line);
    border-radius: var(--lf-r-xl);
    padding: 34px 30px;
    box-shadow: var(--lf-shadow-sm);
}
.lf-role--accent {
    background: linear-gradient(165deg, #14344e 0%, #0a1c2c 100%);
    border-color: transparent;
    color: rgba(255, 255, 255, .78);
    box-shadow: var(--lf-shadow-lg);
}
.lf-role--accent h3, .lf-role--accent .lf-role__kicker { color: #fff; }
.lf-role--accent .lf-role__list li { color: rgba(255, 255, 255, .76); }
.lf-role--accent .lf-role__list b { color: #fff; }
.lf-role__kicker {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--lf-orange-deep);
    margin-bottom: 14px;
}
.lf-role__ico {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--lf-grad);
    display: grid;
    place-items: center;
    color: #fff;
    margin-bottom: 22px;
}
.lf-role h3 { font-size: 22px; margin-bottom: 18px; }
.lf-role .lf-role__list { display: grid; gap: 18px; margin-bottom: 28px; }
.lf-role__list li { font-size: 14.6px; line-height: 1.6; }
.lf-role__list b { display: block; color: var(--lf-ink); font-size: 15.5px; margin-bottom: 5px; font-weight: 800; }
.lf-role .lf-btn { margin-top: auto; }

/* =========================================================================
   Por que escolher
   ========================================================================= */
.lf-why { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.lf-why__card {
    background: #fff;
    border: 1px solid var(--lf-line);
    border-radius: var(--lf-r-lg);
    overflow: hidden;
    box-shadow: var(--lf-shadow-sm);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.lf-why__card:hover { transform: translateY(-6px); box-shadow: var(--lf-shadow); border-color: transparent; }
.lf-why__media { aspect-ratio: 16 / 7; overflow: hidden; background: var(--lf-cream-deep); }
.lf-why__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.lf-why__card:hover .lf-why__media img { transform: scale(1.06); }
.lf-why__body { display: flex; align-items: center; gap: 18px; padding: 24px 26px 28px; }
.lf-why__n {
    flex: none;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    background: var(--lf-grad);
    box-shadow: 0 12px 24px -12px rgba(251, 90, 7, .8);
}
.lf-why__body h3 { font-size: 18.5px; line-height: 1.35; }

/* ---------- sobre ---------- */
.lf-about { display: grid; grid-template-columns: 1fr .88fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.lf-about__copy .lf-h2 { margin: 18px 0 22px; }
.lf-about__copy .lf-h2 .lf-grad-text { display: block; font-size: .82em; margin-top: 4px; }
.lf-about__copy .lf-lead + .lf-lead { margin-top: 14px; }
.lf-about__cta { display: flex; align-items: center; flex-wrap: wrap; gap: 16px 28px; margin-top: 32px; }
.lf-about__media { display: grid; gap: 20px; }
.lf-about__shot {
    margin: 0;
    aspect-ratio: 16 / 9;
    border-radius: var(--lf-r-lg);
    overflow: hidden;
    border: 7px solid #fff;
    box-shadow: var(--lf-shadow-lg);
}
.lf-about__shot img { width: 100%; height: 100%; object-fit: cover; }
.lf-about__shot--a { transform: translateX(-16px); }
.lf-about__shot--b { transform: translateX(16px); }

/* ---------- acompanhamento do pedido ---------- */
.lf-track {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--lf-r-xl);
    padding: clamp(26px, 3vw, 36px);
}
.lf-track__head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.lf-track__badge {
    align-self: flex-start;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #e05205 0%, #b83c02 100%);
    padding: 6px 13px;
    border-radius: 999px;
}
.lf-track__head b { color: #fff; font-size: clamp(19px, 2vw, 23px); font-weight: 800; letter-spacing: -.01em; }
.lf-track__list { list-style: none; margin: 0; padding: 0; }
.lf-track__list li {
    position: relative;
    padding: 0 0 26px 38px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
}
.lf-track__list li:last-child { padding-bottom: 0; }
.lf-track__list li::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 20px;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, .14);
}
.lf-track__list li:last-child::before { display: none; }
.lf-track__list li > span {
    position: absolute;
    left: 4px;
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .25);
}
.lf-track__list li.is-done { color: rgba(255, 255, 255, .86); }
.lf-track__list li.is-done > span { background: var(--lf-amber); border-color: var(--lf-amber); }
.lf-track__list li.is-now { color: #fff; font-weight: 800; }
.lf-track__list li.is-now > span {
    background: var(--lf-orange-deep);
    border-color: var(--lf-orange-deep);
    box-shadow: 0 0 0 6px rgba(251, 90, 7, .22);
}

/* =========================================================================
   Faixa de parceria
   ========================================================================= */
.lf-partner {
    position: relative;
    overflow: hidden;
    border-radius: var(--lf-r-xl);
    background: var(--lf-grad);
    color: #fff;
    padding: clamp(40px, 5vw, 64px);
    box-shadow: var(--lf-shadow-warm);
}
.lf-partner::before {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
}
.lf-partner::after {
    content: "";
    position: absolute;
    right: 90px;
    top: -160px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
}
.lf-partner__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 40px;
    align-items: center;
}
.lf-partner h2 { color: #fff; font-size: clamp(26px, 3.2vw, 40px); margin-bottom: 16px; }
.lf-partner p { color: rgba(255, 255, 255, .9); font-size: 16.5px; line-height: 1.65; }
.lf-partner__btns { display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
.lf .lf-partner .lf-btn-white { background: #fff; color: var(--lf-orange-deep); box-shadow: 0 18px 34px -18px rgba(0, 0, 0, .5); }
.lf .lf-partner .lf-btn-white:hover { color: var(--lf-orange-dark); }
.lf .lf-partner .lf-btn-ghost { border-color: rgba(255, 255, 255, .6); }

/* =========================================================================
   Baixe o app
   ========================================================================= */
.lf-app {
    background: linear-gradient(160deg, #0d2437 0%, #112f48 55%, #0a1c2c 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.lf-app::before {
    content: "";
    position: absolute;
    left: -160px;
    bottom: -220px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(255, 183, 11, .26) 0%, transparent 68%);
}
.lf-app__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 48px;
    align-items: center;
}
.lf-app h2 { color: #fff; margin: 18px 0 16px; }
.lf-app p { color: rgba(255, 255, 255, .78); font-size: 17px; line-height: 1.7; }
.lf-store { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.lf-app__cta { margin-top: 30px; }
.lf-store a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    transition: background .2s ease, transform .2s ease;
}
.lf-store a:hover { background: rgba(255, 255, 255, .16); transform: translateY(-2px); }
.lf-store small { display: block; font-size: 10.5px; color: rgba(255, 255, 255, .6); letter-spacing: .04em; }
.lf-store b { display: block; font-size: 15px; color: #fff; font-weight: 800; }

/* =========================================================================
   Depoimentos
   ========================================================================= */
.lf-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lf-quote {
    margin: 0;
    background: #fff;
    border: 1px solid var(--lf-line);
    border-radius: var(--lf-r-lg);
    padding: 30px 28px;
}
.lf-quote p { font-size: 15.5px; line-height: 1.7; color: var(--lf-body); }
.lf-quote__who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.lf-quote__who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.lf-quote__who b { display: block; color: var(--lf-ink); font-size: 15px; }
.lf-quote__who span { font-size: 13px; color: var(--lf-muted); }

/* =========================================================================
   Newsletter + rodapé
   ========================================================================= */
.lf-footer { background: var(--lf-navy-deep); color: rgba(255, 255, 255, .68); }
.lf-newsletter { position: relative; padding-top: clamp(56px, 7vw, 88px); }
.lf-newsletter__card {
    position: relative;
    overflow: hidden;
    border-radius: var(--lf-r-xl);
    background: linear-gradient(135deg, #16374f, #0f2a3f);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: clamp(34px, 4vw, 52px);
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 32px;
    align-items: center;
}
.lf-newsletter__card::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 131, 9, .35), transparent 70%);
}
.lf-newsletter__card > * { position: relative; z-index: 1; }
.lf-newsletter h3 { color: #fff; font-size: clamp(22px, 2.4vw, 30px); margin-bottom: 10px; }
.lf-newsletter p { color: rgba(255, 255, 255, .72); font-size: 15.5px; line-height: 1.6; }
.lf-newsletter form { display: flex; gap: 10px; }
.lf-newsletter input {
    flex: 1;
    height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    padding: 0 22px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color .2s ease, background .2s ease;
}
.lf-newsletter input::placeholder { color: rgba(255, 255, 255, .45); }
.lf-newsletter input:focus { border-color: var(--lf-amber); background: rgba(255, 255, 255, .1); }
.lf-newsletter button { height: 54px; }

.lf-footer__main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 48px;
    padding: clamp(52px, 6vw, 76px) 0 44px;
}
.lf-footer__logo {
    display: inline-block;
    background: #fff;
    padding: 12px 18px;
    border-radius: 16px;
    margin-bottom: 22px;
}
.lf-footer__logo img { height: 40px; }
.lf-footer__about { font-size: 15px; line-height: 1.7; max-width: 38ch; }
.lf-footer h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 22px;
    letter-spacing: -.01em;
}
.lf-footer__links li + li { margin-top: 13px; }
.lf-footer__links a { text-transform: none; font-size: 15px; color: rgba(255, 255, 255, .68); }
.lf-footer__links a:hover { color: var(--lf-amber); }
.lf-footer__contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 15px; line-height: 1.5; }
.lf-footer__contact svg { flex: none; margin-top: 3px; color: var(--lf-amber); }
.lf-footer__contact a:hover { color: var(--lf-amber); }
.lf-footer .lf-social { display: flex; gap: 10px; margin-top: 24px; }
.lf-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 16px;
}
.lf-social a:hover { background: var(--lf-grad); border-color: transparent; color: #fff; }
.lf-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 24px 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}
.lf-footer__bottom .lf-cookie { color: rgba(255, 255, 255, .45); font-size: 13px; max-width: 62ch; }

/* páginas de conteúdo (sobre, políticas, termos) */
.lf-prose { max-width: 820px; margin: 0 auto; }
.lf-prose h2 { font-size: clamp(26px, 3vw, 36px); margin: 0 0 20px; }
.lf-prose h3 { font-size: clamp(19px, 2vw, 23px); margin: 38px 0 12px; }
.lf-prose p, .lf-prose li { font-size: 16px; line-height: 1.78; color: var(--lf-body); }
.lf-prose p { margin: 0 0 16px; }
.lf-prose ul { list-style: disc; padding-left: 22px; margin: 0 0 18px; }
.lf-prose li { margin-bottom: 8px; }
.lf-prose a { color: var(--lf-orange-deep); font-weight: 600; }
.lf-prose a:hover { text-decoration: underline; }

.lf-pagehead {
    background: linear-gradient(160deg, #0d2437, #112f48);
    color: #fff;
    padding: clamp(48px, 6vw, 78px) 0;
    text-align: center;
}
.lf-pagehead h1 { color: #fff; font-size: clamp(30px, 4vw, 46px); }
.lf-pagehead p { color: rgba(255, 255, 255, .7); margin-top: 12px; font-size: 16px; }


/* =========================================================================
   Contato
   ========================================================================= */
.lf-contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 4vw, 56px); align-items: start; }
.lf-contact__cards { display: grid; gap: 18px; }
.lf-contact__card {
    background: #fff;
    border: 1px solid var(--lf-line);
    border-radius: var(--lf-r-lg);
    padding: 26px;
    box-shadow: var(--lf-shadow-sm);
}
.lf-contact__ico {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--lf-grad);
    color: #fff;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    box-shadow: 0 12px 24px -12px rgba(251, 90, 7, .75);
}
.lf-contact__card h3 { font-size: 16px; margin-bottom: 6px; }
.lf-contact__card a { font-size: 15.5px; font-weight: 600; color: var(--lf-orange-deep); word-break: break-word; }
.lf-contact__card a:hover { color: var(--lf-orange-dark); }
.lf-contact__form {
    background: #fff;
    border: 1px solid var(--lf-line);
    border-radius: var(--lf-r-xl);
    padding: clamp(28px, 3.4vw, 44px);
    box-shadow: var(--lf-shadow);
}
.lf-contact__form .lf-lead { margin: 10px 0 26px; }
.lf-contact__form label { display: block; margin-bottom: 18px; }
.lf-contact__form label span { display: block; font-size: 14px; font-weight: 700; color: var(--lf-ink); margin-bottom: 8px; }
.lf-contact__form input,
.lf-contact__form textarea {
    width: 100%;
    border: 1.5px solid var(--lf-line);
    border-radius: 14px;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 15px;
    color: var(--lf-ink);
    background: #fff;
    outline: none;
    resize: vertical;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.lf-contact__form input:focus,
.lf-contact__form textarea:focus {
    border-color: var(--lf-orange);
    box-shadow: 0 0 0 4px rgba(251, 90, 7, .12);
}
.lf .lf-formerrors {
    background: #fff2ee;
    border: 1px solid #ffd0be;
    border-radius: 14px;
    padding: 16px 18px 16px 36px;
    margin-bottom: 24px;
    list-style: disc;
}
.lf-formerrors li { color: #b53a08; font-size: 14.5px; }

/* =========================================================================
   Avisos (substituem o toastr nas páginas da landing)
   ========================================================================= */
.lf-toasts {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 200;
    display: grid;
    gap: 10px;
    max-width: min(380px, calc(100vw - 40px));
}
.lf-toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--lf-navy);
    color: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: var(--lf-shadow-lg);
    font-size: 14.5px;
    line-height: 1.5;
}
.lf-toast--success { background: linear-gradient(135deg, #1d7a4c, #146138); }
.lf-toast--error { background: linear-gradient(135deg, #c23b1b, #9c2a10); }
.lf-toast--warning { background: linear-gradient(135deg, #c98209, #a26506); }
.lf-toast button {
    font-family: inherit;
    background: none;
    border: 0;
    color: inherit;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    opacity: .7;
    padding: 0;
    margin-left: auto;
}
.lf-toast button:hover { opacity: 1; }


/* =========================================================================
   Movimento — tudo desligado para quem pede menos animação no sistema
   ========================================================================= */
@keyframes lf-float        { 0%, 100% { transform: rotate(-3deg) translate3d(0, 0, 0); } 50% { transform: rotate(-3deg) translate3d(0, -14px, 0); } }
@keyframes lf-float-flat   { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -12px, 0); } }
@keyframes lf-float-a      { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -11px, 0); } }
@keyframes lf-float-b      { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, 10px, 0); } }
@keyframes lf-breathe      { 0%, 100% { opacity: .85; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
@keyframes lf-ping         { 0% { opacity: .55; transform: scale(1); } 70%, 100% { opacity: 0; transform: scale(1.6); } }
@keyframes lf-sheen        { 0% { transform: translateX(-120%); } 55%, 100% { transform: translateX(220%); } }
@keyframes lf-rise         { from { opacity: 0; transform: translate3d(0, 24px, 0); } to { opacity: 1; transform: none; } }
@keyframes lf-rise-phone   { from { opacity: 0; transform: translate3d(0, 40px, 0) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes lf-dot          { 0%, 100% { box-shadow: 0 0 0 6px rgba(251, 90, 7, .22); } 50% { box-shadow: 0 0 0 11px rgba(251, 90, 7, .05); } }

/* entrada dos blocos ao rolar (só com JS ativo: sem JS tudo já nasce visível) */
.lf-js .lf-reveal { opacity: 0; transform: translate3d(0, 22px, 0); }
.lf-js .lf-reveal.is-in {
    opacity: 1;
    transform: none;
    transition: opacity .65s cubic-bezier(.22, .7, .3, 1), transform .65s cubic-bezier(.22, .7, .3, 1);
}
.lf-js .lf-reveal.is-in:nth-child(2) { transition-delay: .09s; }
.lf-js .lf-reveal.is-in:nth-child(3) { transition-delay: .18s; }
.lf-js .lf-reveal.is-in:nth-child(4) { transition-delay: .27s; }
.lf-js .lf-reveal.is-in:nth-child(5) { transition-delay: .18s; }
.lf-js .lf-reveal.is-in:nth-child(6) { transition-delay: .27s; }

@media (prefers-reduced-motion: reduce) {
    .lf-js .lf-reveal { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: no-preference) {
    /* entrada da hero */
    .lf-js .lf-hero__copy > * { animation: lf-rise .75s cubic-bezier(.22, .7, .3, 1) both; }
    .lf-js .lf-hero__copy > *:nth-child(1) { animation-delay: .05s; }
    .lf-js .lf-hero__copy > *:nth-child(2) { animation-delay: .14s; }
    .lf-js .lf-hero__copy > *:nth-child(3) { animation-delay: .23s; }
    .lf-js .lf-hero__copy > *:nth-child(4) { animation-delay: .32s; }
    .lf-js .lf-hero__copy > *:nth-child(5) { animation-delay: .41s; }
    .lf-js .lf-phone-stage { animation: lf-rise-phone .95s cubic-bezier(.22, .7, .3, 1) both .22s; }

    /* vida contínua */
    .lf-phone { animation: lf-float 7s ease-in-out 1.2s infinite; }
    .lf-chip--a { animation: lf-float-a 5.6s ease-in-out 1.4s infinite; }
    .lf-chip--b { animation: lf-float-b 6.4s ease-in-out 1.9s infinite; }
    .lf-hero::before { animation: lf-breathe 9s ease-in-out infinite; }

    /* halo pulsante nos ícones dos cards */
    .lf-chip__ico::after {
        content: "";
        position: absolute;
        inset: -3px;
        border-radius: 15px;
        border: 2px solid var(--lf-orange);
        animation: lf-ping 2.6s cubic-bezier(0, 0, .2, 1) infinite;
    }
    .lf-chip--b .lf-chip__ico::after { animation-delay: 1.3s; }

    /* brilho passando pelo banner do app */
    .lf-phone__banner { position: relative; overflow: hidden; }
    .lf-phone__banner::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 45%;
        background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .34), transparent);
        animation: lf-sheen 5.5s ease-in-out 2s infinite;
    }

    /* etapa atual do acompanhamento pulsa */
    .lf-track__list li.is-now > span { animation: lf-dot 2s ease-in-out infinite; }
}

/* =========================================================================
   Responsivo
   ========================================================================= */
@media (max-width: 1100px) {
    .lf-hero__inner { grid-template-columns: 1fr; gap: 48px; }
    .lf-phone { transform: none; animation-name: lf-float-flat; }
    .lf-chip--a { left: 0; }
    .lf-chip--b { right: 0; }
    .lf-app__inner, .lf-partner__inner, .lf-newsletter__card { grid-template-columns: 1fr; }
    .lf-footer__main { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 991px) {
    .lf-burger { display: flex; }
    .lf-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: #fff;
        border-bottom: 1px solid var(--lf-line);
        box-shadow: var(--lf-shadow);
        padding: 12px var(--lf-gutter) 18px;
        margin: 0;
        display: none;
    }
    .lf-header.is-open .lf-nav { display: flex; }
    .lf-steps, .lf-features, .lf-roles, .lf-quotes { grid-template-columns: 1fr 1fr; }
    .lf-why { grid-template-columns: 1fr; }
    .lf-contact { grid-template-columns: 1fr; }
    .lf-about { grid-template-columns: 1fr; }
    .lf-about__shot--a, .lf-about__shot--b { transform: none; }
}
@media (max-width: 720px) {
    :root { --lf-gutter: 18px; }
    .lf-steps, .lf-features, .lf-roles, .lf-quotes { grid-template-columns: 1fr; }
    .lf-footer__main { grid-template-columns: 1fr; }
    .lf-newsletter form { flex-direction: column; }
    .lf-newsletter input, .lf-newsletter button { width: 100%; }
    .lf-chip { display: none; }
    .lf-hero__cta .lf-btn { width: 100%; }
    .lf-header__actions .lf-drop--join { display: none; }
}
