/*
 * LP do Cookie Manager — CSS PORTADO do repositório CookieManagerLP.
 *
 * Gerado a partir de index.html e escopado sob `.lp` para não afetar o
 * cabeçalho/rodapé do hub. Ao atualizar a LP de origem, regere em vez de
 * editar à mão (scratchpad/scope-css.py).
 */


.lp {
    --ink: #0F2A20;
    --deep: #123D2C;
    --green: #12855A;
    --green-dark: #0B5C3E;
    --neon: #7CFFC4;
    --orange: #F2731E;
    --orange-dark: #C6570F;
    --bg: #FFFFFF;
    --surface: #F3FBF7;
    --surface2: #E8F7EF;
    --coral: #FF5C39;
    --text: #0F2A20;
    --muted: #5C7A6E;
    --line: rgba(15,42,32,.12);
    --shadow: 0 18px 50px -22px rgba(15,90,60,.22);
    --radius: 16px;
  }

.lp * { box-sizing: border-box; }

.lp { scroll-behavior: smooth; }

.lp {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

.lp h1, .lp h2, .lp h3 { font-family: 'Inter', sans-serif; line-height: 1.05; margin: 0; letter-spacing: -.02em; }

.lp p { margin: 0; }

.lp a { color: inherit; }

.lp ul { margin: 0; padding: 0; list-style: none; }

.lp .eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 12.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

.lp .eyebrow::before {
    content: "";
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--neon);
    box-shadow: 0 0 0 4px rgba(27,217,138,.18);
  }

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

.lp .nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }

.lp .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.lp .brand img { height: 34px; display: block; }

.lp .navlinks { display: flex; align-items: center; gap: 28px; font-size: 14.5px; font-weight: 600; color: var(--muted); }

.lp .navlinks a { text-decoration: none; }

.lp .navlinks a:hover { color: var(--text); }

.lp .nav-cta {
    font-family: 'Inter'; font-weight: 700; font-size: 14px;
    text-decoration: none; color: #fff; background: var(--orange);
    padding: 10px 18px; border-radius: 999px;
    transition: background .2s, transform .12s;
  }

.lp .nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

.lp .menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex: none; }

.lp .menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }

.lp .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }

.lp .menu-toggle.open span:nth-child(2) { opacity: 0; }

.lp .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  @media (max-width: 780px) {

.lp .menu-toggle { display: block; }

.lp .navlinks {
      display: flex; flex-direction: column; align-items: stretch; gap: 0;
      position: absolute; top: 68px; left: 0; right: 0;
      background: var(--surface); border-bottom: 1px solid var(--line);
      padding: 4px 24px; max-height: 0; overflow: hidden; opacity: 0;
      transition: max-height .25s ease, opacity .2s ease;
    }

.lp .navlinks.open { max-height: 420px; opacity: 1; padding: 10px 24px 18px; }

.lp .navlinks a { padding: 12px 0; border-bottom: 1px solid var(--line); }

.lp .navlinks a:last-child { border-bottom: none; }
  }
/* ---------- hero ---------- */
.lp .hero {
    padding: 64px 0 44px; position: relative; overflow: hidden;
    background: linear-gradient(160deg, rgba(6,30,20,.62), rgba(10,55,38,.42)), url('/site/cookie-manager/images/back.webp') center/cover no-repeat;
  }

.lp .hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }

.lp .hero .eyebrow { color: var(--orange); }

.lp .hero .eyebrow::before { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.22); }

.lp .hero h1 { color: #fff; }

.lp .hero h1 .hl { color: var(--orange); }

.lp .hero .lead { color: rgba(255,255,255,.82); }

.lp .hero .microtrust { color: rgba(255,255,255,.78); }

.lp .hero .microtrust .ck { color: var(--orange); }

.lp .hero .btn.ghost { color: #fff; }

.lp .hero .btn.ghost:hover { color: var(--orange); }

.lp h1 { font-size: clamp(32px, 4.6vw, 50px); font-weight: 800; color: var(--text); }

.lp h1 .hl { color: var(--green); }

.lp .lead { margin-top: 20px; font-size: 18.5px; color: var(--muted); max-width: 34ch; }

.lp .cta-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 30px; }

.lp .btn {
    font-family: 'Inter'; font-weight: 700; font-size: 16px; letter-spacing: -.01em;
    border: none; cursor: pointer; border-radius: 11px; padding: 16px 26px;
    background: var(--orange); color: #fff; white-space: nowrap; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: transform .12s, background .2s; box-shadow: 0 14px 26px -12px rgba(0,0,0,.55);
  }

.lp .btn:hover { background: var(--orange-dark); transform: translateY(-1px); }

.lp .btn.ghost { background: transparent; color: var(--green); box-shadow: none; font-weight: 700; }

.lp .btn.ghost:hover { color: var(--green-dark); background: transparent; }

.lp .btn-full { width: 100%; justify-content: center; }

.lp .btn:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }

.lp .microtrust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; font-size: 13.5px; color: var(--muted); font-weight: 600; }

.lp .microtrust span { display: inline-flex; align-items: center; gap: 6px; }

.lp .microtrust .ck { color: var(--green); }
/* ---------- hero visual: banner demo ---------- */
.lp .demo { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; }

.lp .demo-top { background: rgba(0,0,0,.3); padding: 12px 16px; display: flex; align-items: center; gap: 8px; }

.lp .demo-top i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.25); }

.lp .demo-top span { font-family: 'Space Mono', monospace; font-size: 11.5px; color: var(--neon); margin-left: 8px; }

.lp .demo-body { position: relative; height: 300px; background: #000; overflow: hidden; }

.lp .demo-video { width: 100%; height: 100%; object-fit: cover; display: block; }
/* ---------- trust bar ---------- */
.lp .trustbar { background: var(--ink); color: #DDF3E7; padding: 16px 0; border-block: 1px solid var(--line); }

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

.lp .trustbar span { font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }

.lp .trustbar .sep { color: var(--neon); opacity: .7; }
/* ---------- generic sections ---------- */
.lp .section { padding: 78px 0; }

.lp .section.alt { background: var(--surface); border-block: 1px solid var(--line); }

.lp #faq { background: linear-gradient(135deg, #FFFFFF 0%, #E8F7EF 45%, #FFE7D9 100%); position: relative; overflow: hidden; }

.lp #faq .faq-bg { position: absolute; top: 0; left: 0; width: 100%; height: auto; opacity: .3; mix-blend-mode: multiply; pointer-events: none; z-index: 0; }

.lp #faq .wrap { position: relative; z-index: 1; }

.lp .sec-head { max-width: 640px; margin-bottom: 44px; }

.lp .sec-head h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; color: var(--text); margin-top: 14px; }

.lp .sec-head p { color: var(--muted); margin-top: 14px; font-size: 17.5px; }

.lp .sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.lp .grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.lp .feat { background: var(--surface2); border: 1px solid var(--line); border-radius: 14px; padding: 24px; }

.lp .feat .ic { font-size: 26px; }

.lp .feat h3 { font-size: 18.5px; color: var(--text); margin: 14px 0 8px; font-family: 'Inter'; font-weight: 700; }

.lp .feat p { font-size: 14.5px; color: var(--muted); }

  @media (max-width: 900px) {

.lp .grid3 { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 620px) {

.lp .grid3 { grid-template-columns: 1fr; } }
/* ---------- plans ---------- */
.lp .plans-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 22px; align-items: stretch; }

.lp .plan { background: var(--surface); border: 1.5px solid var(--line); border-radius: 18px; padding: 30px; position: relative; }

.lp .plan.main { border-color: var(--green); box-shadow: var(--shadow); }

.lp .badge-pop { position: absolute; top: -13px; left: 30px; background: var(--green-dark); color: #fff; font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }

.lp .plan .tag { font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: .12em; color: var(--green); font-weight: 700; }

.lp .plan .price { font-family: 'Inter'; font-weight: 800; font-size: 42px; color: var(--text); margin-top: 10px; }

.lp .plan .price small { font-size: 15px; font-weight: 600; color: var(--muted); }

.lp .plan .alt-price { font-size: 13.5px; color: var(--muted); margin-top: 4px; }

.lp .plan .items { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }

.lp .plan .items li { font-size: 14.5px; color: var(--text); display: flex; gap: 8px; }

.lp .plan .items li::before { content: "✓"; color: var(--green); font-weight: 700; }

.lp .plan .btn { margin-top: 24px; }

.lp .plan.resale { background: var(--ink); color: #DDF3E7; }

.lp .plan.resale .tag { color: var(--neon); }

.lp .plan.resale .price { color: #fff; font-size: 42px; }

.lp .plan.resale p.desc { font-size: 14.5px; color: #A9CFC2; margin-top: 14px; }

.lp .plan.resale .btn { background: var(--neon); color: var(--ink); box-shadow: none; }

.lp .plan.resale .btn:hover { background: #fff; }

.lp .compat { text-align: center; margin-top: 30px; color: var(--muted); font-size: 13.5px; }

  @media (max-width: 860px) {

.lp .plans-grid { grid-template-columns: 1fr; } }
/* ---------- diagnóstico grátis ---------- */
.lp .diagband { background: linear-gradient(120deg, var(--green-dark), #0C6944); padding: 40px 0; }

.lp .diagband-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.lp .diagband h2 { color: #fff; font-size: clamp(20px, 2.6vw, 26px); font-weight: 800; }

.lp .diagband p { color: rgba(255,255,255,.85); margin-top: 8px; font-size: 15px; }

.lp .btn.ghost-outline { background: transparent; border: 2px solid #fff; color: #fff; box-shadow: none; }

.lp .btn.ghost-outline:hover { background: #fff; color: var(--green-dark); }
  @media (max-width: 700px) {

.lp .diagband-inner { flex-direction: column; align-items: flex-start; text-align: left; } }
/* ---------- FAQ ---------- */
.lp .faq { max-width: 780px; margin: 0 auto; }

.lp .faq-item { border-bottom: 1px solid var(--line); }

.lp .faq-q {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    background: none; border: none; cursor: pointer; padding: 20px 4px; text-align: left;
    font-family: 'Inter'; font-weight: 700; font-size: 16.5px; color: var(--text);
  }

.lp .faq-q .plus { font-size: 20px; color: var(--green); transition: transform .2s; flex: none; margin-left: 16px; }

.lp .faq-item.open .faq-q .plus { transform: rotate(45deg); }

.lp .faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }

.lp .faq-item.open .faq-a { max-height: 240px; }

.lp .faq-a p { padding: 0 4px 20px; color: var(--muted); font-size: 15px; max-width: 62ch; }
/* ---------- contact ---------- */
.lp .contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }

.lp .contact-info h2 { font-size: clamp(26px, 3.4vw, 36px); color: var(--text); }

.lp .contact-info p { color: var(--muted); margin-top: 14px; font-size: 17px; max-width: 40ch; }

.lp .contact-list { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; font-size: 15px; color: var(--text); font-weight: 600; }

.lp .contact-list li { display: flex; gap: 10px; align-items: flex-start; }

.lp .form-card { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 28px; box-shadow: var(--shadow); }

.lp .fld { margin-top: 14px; }

.lp .fld:first-child { margin-top: 0; }

.lp .fld label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }

.lp .fld input, .lp .fld textarea {
    width: 100%; font-family: 'Inter'; font-size: 15px;
    padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 10px;
    background: #fff; color: var(--text); outline: none; transition: border-color .18s, box-shadow .18s;
  }

.lp .fld textarea { resize: vertical; min-height: 90px; }

.lp .fld input:focus-visible, .lp .fld textarea:focus-visible { border-color: var(--green); box-shadow: 0 0 0 4px rgba(18,133,90,.2); }

.lp .form-msg { min-height: 18px; font-size: 13.5px; margin-top: 10px; }

.lp .form-msg.ok { color: var(--green); }

.lp .form-msg.err { color: #D9482E; }

  @media (max-width: 860px) {

.lp .contact-grid { grid-template-columns: 1fr; } }

.lp .foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }

.lp .foot-links { display: flex; gap: 18px; font-size: 13.5px; }

.lp .foot-links a:hover { color: #fff; }

.lp .ck-rej, .lp .ck-per { background: var(--surface2); color: var(--text); }

.lp .ck-ok { background: var(--green-dark); color: #fff; }

  @media (max-width: 900px) {

.lp .hero-grid { grid-template-columns: 1fr; gap: 34px; }

.lp .demo { order: -1; } }
  @media (max-width: 560px) {

.lp .cta-row { flex-direction: column; align-items: flex-start; }
  }
/* ---------- vida: entrada no scroll, hero animado, hovers ---------- */
.lp .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1); }

.lp .reveal.in { opacity: 1; transform: translateY(0); }

.lp .hero-grid { position: relative; z-index: 1; }

.lp .hero-grid > div:first-child { animation: heroInLeft .8s cubic-bezier(.16,.84,.44,1) both; }

.lp .hero-grid > .demo { animation: heroInRight .8s .15s cubic-bezier(.16,.84,.44,1) both; }
  @keyframes heroInLeft { from { opacity: 0; transform: translateX(-26px); } to { opacity: 1; transform: none; } }
  @keyframes heroInRight { from { opacity: 0; transform: translateX(26px) scale(.97); } to { opacity: 1; transform: none; } }

.lp .feat { transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }

.lp .feat:hover { transform: translateY(-5px); border-color: var(--green); box-shadow: var(--shadow); }

.lp .feat .ic { display: inline-block; transition: transform .22s ease; }

.lp .feat:hover .ic { transform: scale(1.15) rotate(-4deg); }

.lp .plan { transition: transform .22s ease, box-shadow .22s ease; }

.lp .plan:hover { transform: translateY(-5px); }

.lp .plan.main:hover { box-shadow: 0 24px 55px -20px rgba(18,133,90,.35), var(--shadow); }

.lp .plan .price, .lp .plan.resale .price { font-variant-numeric: tabular-nums; }

.lp .faq-q { transition: color .18s ease; }

.lp .faq-q:hover { color: var(--green); }

  @media (prefers-reduced-motion: reduce) {

.lp * { scroll-behavior: auto; transition: none !important; animation: none !important; }

.lp .reveal { opacity: 1 !important; transform: none !important; }
  }
