/* ── Hero ────────────────────────────────────────────── */
.hero {
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 32px 80px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/logo/logo-jf-transparent.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55%;
  opacity: .04;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 680px; }
.hero__kicker {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-border);
}
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.12;
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--brand);
  font-family: 'Bloverly', 'Cormorant Garamond', serif;
  font-size: 1.05em;
}
.hero__desc {
  font-size: .95rem;
  color: var(--brand);
  font-weight: 400;
  line-height: 1.85;
  max-width: 520px;
  margin: 0 auto 44px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero__crp {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-border);
  white-space: nowrap;
}

/* ── Sobre ───────────────────────────────────────────── */
.sobre__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.sobre__photo { position: relative; }
.sobre__photo-img { width: 100%; aspect-ratio: 3/4; overflow: hidden; }
.sobre__photo-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(8%);
  transition: filter var(--transition);
}
.sobre__photo-img:hover img { filter: grayscale(0); }
.sobre__photo-caption {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  padding: 20px 24px;
  border: 1px solid var(--gray-border);
}
.sobre__photo-caption-number { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 500; color: var(--brand); line-height: 1; }
.sobre__photo-caption-label  { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); margin-top: 4px; }
.sobre__title { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 300; margin-bottom: 8px; }
.sobre__title em { font-style: italic; }
.sobre__crp { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gray); margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--gray-border); }
.sobre__body p { font-size: .95rem; color: var(--brand); font-weight: 400; line-height: 1.85; margin-bottom: 16px; }
.sobre__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.sobre__tag { font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); border: 1px solid var(--brand); padding: 8px 16px; opacity: .75; }

/* ── Serviços ────────────────────────────────────────── */
.servicos__top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; gap: 32px; }
.servicos__top-left { max-width: 480px; }
.servicos__top .lead { max-width: 340px; }
.servicos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-border); border: 1px solid var(--gray-border); }
.servico-card { background: var(--white); padding: 40px 32px; display: flex; flex-direction: column; gap: 16px; transition: background var(--transition); position: relative; overflow: hidden; }
.servico-card:hover { background: var(--cream); }
.servico-card__photo { width: 100%; height: 200px; overflow: hidden; margin-bottom: 8px; }
.servico-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; filter: grayscale(20%); }
.servico-card:hover .servico-card__photo img { transform: scale(1.04); filter: grayscale(0); }
.servico-card__num   { font-family: 'Cormorant Garamond', serif; font-size: .9rem; color: var(--gray); font-weight: 300; }
.servico-card__title { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400; color: var(--dark); line-height: 1.3; }
.servico-card__desc  { font-size: .85rem; color: var(--brand); font-weight: 400; line-height: 1.8; }

/* ── Atendimento ─────────────────────────────────────── */
.atendimento__inner { display: grid; grid-template-columns: 1fr 1fr; }
.atend-item { padding: 72px 56px; border: 1px solid var(--gray-border); display: flex; flex-direction: column; gap: 20px; }
.atend-item + .atend-item { border-left: none; }
.atend-item__icon { width: 48px; height: 48px; border: 1px solid var(--gray-border); display: flex; align-items: center; justify-content: center; }
.atend-item__title { font-size: 1.5rem; font-weight: 400; }
.atend-item__desc  { font-size: .88rem; color: var(--brand); font-weight: 400; line-height: 1.85; }

/* ── CTA ─────────────────────────────────────────────── */
.cta { position: relative; padding: 120px 0; background: var(--brand); overflow: hidden; }
.cta__deco { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1604881991664-593b31b88488?auto=format&fit=crop&w=1200&q=40'); background-size: cover; background-position: center; opacity: .07; }
.cta__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.cta__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 300; color: var(--white); line-height: 1.15; margin-bottom: 20px; max-width: 640px; }
.cta__title em { font-style: italic; }
.cta__desc { font-size: .92rem; color: rgba(255,255,255,.90); font-weight: 300; max-width: 460px; line-height: 1.85; margin-bottom: 48px; }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta__note { margin-top: 28px; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.70); }

/* ── Responsivo ──────────────────────────────────────── */
@media (max-width: 960px) {
  .sobre__inner { grid-template-columns: 1fr; gap: 56px; }
  .sobre__photo-caption { right: 0; }
  .servicos__top { flex-direction: column; align-items: flex-start; }
  .servicos__grid { grid-template-columns: 1fr 1fr; }
  .atendimento__inner { grid-template-columns: 1fr; }
  .atend-item + .atend-item { border-left: 1px solid var(--gray-border); border-top: none; }
}
@media (max-width: 640px) {
  .hero { padding: 100px 24px 64px; min-height: 100svh; }
  .servicos__grid { grid-template-columns: 1fr; }
  .atend-item { padding: 48px 28px; }
  .cta { padding: 80px 0; }
  .cta__actions { flex-direction: column; align-items: center; }
}
