/* Rocha New: SEO landing pages (PT-BR). Brand-matched, lightweight, no-JS friendly.
   Loaded after site.css + custom.css. Scoped under .lp to avoid touching builder blocks. */
.lp {
  --gold: #1a5ba3;
  --gold-2: #5b9dd9;
  --ink: #23282a;
  --ink-soft: #3b4041;
  --dark: #111318;
  --dark-2: #0c0e12;
  --line: #e6e7ea;
  --wa: #25d366;
  font-family: 'Poppins', 'Lato', -apple-system, Segoe UI, sans-serif;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 17px;
}
.lp * { box-sizing: border-box; }
.lp img { max-width: 100%; height: auto; display: block; }
.lp .wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* HERO */
.lp-hero {
  position: relative;
  color: #fff;
  padding: 96px 20px 72px;
  text-align: left;
  background: #14161b;
  overflow: hidden;
}
.lp-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.lp-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  /* dark on the left (behind the text), lighter on the right so the photo shows through */
  background: linear-gradient(100deg, rgba(8,10,14,.86) 0%, rgba(8,10,14,.66) 42%, rgba(8,10,14,.38) 100%);
}
@media (max-width: 700px) {
  .lp-hero::after { background: linear-gradient(180deg, rgba(8,10,14,.66) 0%, rgba(8,10,14,.82) 100%); }
}
.lp-hero__inner { position: relative; z-index: 2; max-width: 1080px; margin: 0 auto; }
.lp-hero .lp-hero__eyebrow { color: var(--gold-2); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; margin: 0 0 14px; }
.lp-hero h1 { font-size: clamp(1.8rem, 4.4vw, 3rem); line-height: 1.12; margin: 0 0 18px; font-weight: 700; color: #fff; }
.lp-hero p { font-size: clamp(1rem, 1.6vw, 1.18rem); max-width: 720px; margin: 0 0 28px; color: #e8e9ec; }

/* breadcrumb */
.lp-crumb { font-size: .82rem; color: #cfd2d8; margin: 0 0 18px; }
.lp-crumb a { color: #cfd2d8; text-decoration: none; }
.lp-crumb a:hover { color: #fff; text-decoration: underline; }
.lp-crumb span { color: var(--gold-2); }

/* buttons */
.lp-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.lp-btn { display: inline-flex; align-items: center; gap: 9px; padding: 15px 28px; border-radius: 3px; font-weight: 600; text-decoration: none; font-size: 1rem; transition: transform .15s ease, background .15s ease; }
.lp-btn svg { width: 20px; height: 20px; }
.lp-btn--wa { background: var(--wa); color: #fff; }
.lp-btn--wa:hover { background: #1fb457; transform: translateY(-1px); }
.lp-btn--gold { background: var(--gold); color: #fff; }
.lp-btn--gold:hover { background: #134879; transform: translateY(-1px); }
.lp-btn--ghost { border: 1px solid rgba(255,255,255,.55); color: #fff; }
.lp-btn--ghost:hover { background: rgba(255,255,255,.1); }
.lp-btn--dark { background: #111318; color: #fff; }
.lp-btn--dark:hover { background: #000; }

/* sections */
.lp-section { padding: 60px 0; }
.lp-section--alt { background: #f7f7f5; }
.lp-section h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--ink); margin: 0 0 12px; font-weight: 700; line-height: 1.2; }
.lp-section h3 { font-size: 1.2rem; color: var(--ink); margin: 26px 0 8px; font-weight: 600; }
.lp-section p { margin: 0 0 16px; }
.lp-section ul { margin: 0 0 16px; padding-left: 0; list-style: none; }
.lp-section ul li { position: relative; padding: 6px 0 6px 30px; }
.lp-section ul li::before { content: ""; position: absolute; left: 4px; top: 14px; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.lp-lead { font-size: 1.12rem; color: var(--ink); }

/* feature grid */
.lp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-top: 30px; }
.lp-card { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 26px; }
.lp-section--alt .lp-card { background: #fff; }
.lp-card h3 { margin: 0 0 8px; font-size: 1.1rem; color: var(--ink); }
.lp-card p { font-size: .96rem; margin: 0; }
.lp-card__ico { width: 44px; height: 44px; border-radius: 50%; background: rgba(26,91,163,.12); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 1.3rem; font-weight: 700; }

/* trust strip */
.lp-trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; text-align: center; margin-top: 8px; }
.lp-trust__n { font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.lp-trust__l { font-size: .92rem; margin-top: 6px; color: var(--ink-soft); }

/* FAQ (native <details>, no JS) */
.lp-faq { margin-top: 26px; }
.lp-faq details { border-bottom: 1px solid var(--line); }
.lp-faq summary { cursor: pointer; list-style: none; padding: 18px 40px 18px 0; font-weight: 600; color: var(--ink); position: relative; font-size: 1.05rem; }
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: "+"; position: absolute; right: 6px; top: 15px; font-size: 1.5rem; color: var(--gold); font-weight: 400; transition: transform .2s; }
.lp-faq details[open] summary::after { content: "\2212"; }
.lp-faq details p { padding: 0 0 20px; margin: 0; }

/* related services */
.lp-related { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin-top: 26px; }
.lp-related a { display: block; padding: 20px 22px; background: #fff; border: 1px solid var(--line); border-radius: 6px; text-decoration: none; color: var(--ink); font-weight: 600; transition: border-color .15s, transform .15s; }
.lp-related a:hover { border-color: var(--gold); transform: translateY(-2px); }
.lp-related a span { display: block; font-weight: 400; font-size: .9rem; color: var(--ink-soft); margin-top: 5px; }

/* CTA band */
.lp-cta { background: linear-gradient(120deg, #14161b, #1d2026); color: #fff; padding: 56px 20px; text-align: center; }
.lp-cta h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 12px; }
.lp-cta p { max-width: 620px; margin: 0 auto 26px; color: #dfe1e5; }
.lp-cta .lp-btns { justify-content: center; }

@media (max-width: 640px) {
  .lp-hero { padding: 72px 20px 56px; }
  .lp-section { padding: 46px 0; }
}

/* ---- Blog / Dicas ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.blog-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; text-decoration: none; color: var(--ink); transition: transform .15s ease, box-shadow .15s ease; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.1); }
.blog-card__img { aspect-ratio: 16 / 10; overflow: hidden; background: #eee; }
.blog-card__pic { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card__img picture { display: block; height: 100%; }
.blog-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card__body h2 { font-size: 1.18rem; margin: 0 0 10px; line-height: 1.3; color: var(--ink); }
.blog-card__body p { font-size: .95rem; margin: 0 0 16px; color: var(--ink-soft); flex: 1; }
.blog-card__more { color: var(--gold); font-weight: 600; font-size: .92rem; }
/* article body typography */
.blog-body { max-width: 760px; }
.blog-body h2 { margin-top: 36px; }
.blog-body a { color: #134879; text-decoration: underline; font-weight: 500; }
.blog-body a:hover { color: var(--gold); }
