/* ── SERVICOS.HTML — ESTILOS ESPECÍFICOS ── */

/* ── HERO ── */
.servicos-hero { min-height: 56vh; }
.servicos-hero .page-hero-bg { opacity: .2; }
.servicos-hero .section-title { font-size: clamp(36px, 6vw, 72px); }

/* ── SERVIÇO DETALHE ── */
.servico-detalhe { padding: 100px 0; background: var(--white); }
.servico-detalhe:nth-child(4n+3) { background: var(--off-white); }

.servico-detalhe-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.servico-detalhe--reverse .servico-detalhe-layout {
  /* já tem conteudo primeiro, imagem depois no HTML */
}

.servico-detalhe-imagem {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.servico-detalhe-imagem img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(0.4,0,0.2,1);
}
.servico-detalhe-imagem:hover img { transform: scale(1.03); }

.servico-num-grande {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  color: var(--gold-light);
  opacity: .18;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 8px;
}
.servico-detalhe-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.9;
  margin-top: 20px;
}
.servico-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.servico-features li {
  font-size: 14px;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.servico-features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.servico-detalhe-conteudo .btn { margin-top: 32px; }

/* ── DIVISOR ── */
.servico-divisor { height: 1px; background: var(--border); }

/* ── GARANTIA BANNER ── */
.garantia-banner {
  background: var(--navy);
  padding: 64px 0;
}
.garantia-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.garantia-escudo {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(159,124,86,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
}
.garantia-texto { flex: 1; }
.garantia-texto h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.garantia-texto p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  max-width: 600px;
}

/* ── RESPONSIVO ── */
@media (max-width: 1024px) {
  .servico-detalhe-layout { grid-template-columns: 1fr; gap: 48px; }
  .servico-detalhe--reverse .servico-detalhe-layout { }
  .servico-detalhe-imagem img { height: 360px; }
}

@media (max-width: 768px) {
  .servico-detalhe { padding: 72px 0; }
  .garantia-inner { flex-direction: column; text-align: center; }
  .garantia-escudo { margin: 0 auto; }
}

@media (max-width: 480px) {
  .servico-detalhe-imagem img { height: 260px; }
  .servico-num-grande { font-size: 56px; }
}
