/* ═══════════════════════════════════════════════════════════
   SERVICE PAGE — Compartilhado entre as 4 páginas de serviço
   ═══════════════════════════════════════════════════════════ */

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  min-height: 55vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
}
@media (min-width: 768px) { .page-hero { min-height: 60vh; } }
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.page-hero-bg--brand {
  background-position: 62% center;
  transform: none;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(10,22,40,.93) 0%, rgba(15,54,168,.45) 60%, rgba(10,22,40,.88) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding-top: 120px; }
.page-hero h1  { color: #fff; margin-bottom: 16px; }
.page-hero p   { color: rgba(255,255,255,.7); font-size: clamp(.95rem, 2.5vw, 1.1rem); max-width: 540px; line-height: 1.72; margin-bottom: 28px; }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Intro Section (text + image) ─────────────────────────── */
.svc-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 860px) { .svc-intro-grid { grid-template-columns: 1fr 1fr; gap: 72px; } }
.svc-intro-text > p { color: var(--muted); line-height: 1.78; margin-bottom: 16px; font-size: .97rem; }
.svc-intro-text .check-list { margin-top: 24px; }
.svc-intro-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--sh-md);
}
@media (min-width: 860px) { .svc-intro-img img { height: 480px; } }

/* ── Steps Section ────────────────────────────────────────── */
.steps-section { background: var(--cream); }

/* ── Targets Grid ─────────────────────────────────────────── */
.targets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 540px) { .targets-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .targets-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1000px) { .targets-grid { grid-template-columns: repeat(5, 1fr); } }
.target-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh);
  transition: var(--ease);
}
.target-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: rgba(22,72,208,.18); }
.target-thumb { aspect-ratio: 1; overflow: hidden; }
.target-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.target-card:hover .target-thumb img { transform: scale(1.1); }
.target-name { padding: 10px 12px 12px; text-align: center; }
.target-name h3 {
  font-family: 'Barlow', sans-serif;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink);
}

/* ── Methods Grid ─────────────────────────────────────────── */
.methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 480px) { .methods-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .methods-grid { grid-template-columns: repeat(4, 1fr); } }
.method-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px 22px;
  transition: var(--ease);
}
.method-card:hover { border-color: rgba(22,72,208,.22); box-shadow: var(--sh); transform: translateY(-3px); }
.method-ico {
  width: 46px; height: 46px;
  background: var(--blue-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.method-ico i { color: var(--blue); font-size: 1.1rem; }
.method-card h3 { font-size: 1rem; color: var(--ink); margin-bottom: 6px; }
.method-card p  { font-size: .84rem; color: var(--muted); line-height: 1.62; }

/* ── Guarantee Strip ──────────────────────────────────────── */
.guarantee {
  background: var(--blue);
  padding: 40px 0;
}
.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
}
.guarantee-item i { color: var(--org-l); font-size: 1.2rem; flex-shrink: 0; }

/* ── FAQ Section ──────────────────────────────────────────── */
.faq-section { background: var(--cream); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 860px) { .faq-layout { grid-template-columns: 2fr 3fr; gap: 60px; } }
.faq-aside h2  { color: var(--ink); margin-bottom: 14px; }
.faq-aside p   { color: var(--muted); font-size: .95rem; line-height: 1.72; margin-bottom: 24px; }
