/* =====================
   SECTIONS — serviços, showcase, números, processo, sobre, depoimento, cta
   ===================== */

/* ---- Services ---- */
#services { padding: 150px 52px; }
.sh { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 68px; gap: 36px; }
.stit { font-family: 'Syne', sans-serif; font-size: clamp(36px,4.8vw,68px); font-weight: 700; line-height: 1.0; letter-spacing: -.02em; max-width: 560px; }
.ssub { font-size: 15px; line-height: 1.78; color: rgba(244,243,239,.42); max-width: 290px; font-weight: 300; }

.sg { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--l); }
.scard {
  background: var(--k);
  padding: 50px 42px;
  position: relative;
  overflow: hidden;
  transition: background .4s;
  cursor: default;
}
.scard::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(212,201,180,.055) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s;
}
.scard:hover::before { opacity: 1; }
.sn { font-family: 'Syne', sans-serif; font-size: 11px; letter-spacing: .1em; color: rgba(244,243,239,.16); margin-bottom: 40px; display: block; }
.sico {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--l);
  border-radius: 12px;
  margin-bottom: 26px;
  color: rgba(244,243,239,.55);
  transition: transform .4s, border-color .4s, color .4s;
}
.scard:hover .sico { transform: scale(1.1) rotate(-4deg); border-color: rgba(244,243,239,.16); color: var(--w); }
.sico svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.snam { font-family: 'Syne', sans-serif; font-size: 21px; font-weight: 700; margin-bottom: 12px; letter-spacing: -.01em; }
.sdsc { font-size: 14px; line-height: 1.8; color: rgba(244,243,239,.42); font-weight: 300; margin-bottom: 34px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: 10px; letter-spacing: .05em; text-transform: uppercase; border: 1px solid var(--l); padding: 4px 10px; border-radius: 100px; color: rgba(244,243,239,.28); transition: border-color .3s, color .3s; }
.scard:hover .tag { border-color: rgba(244,243,239,.16); color: rgba(244,243,239,.52); }

/* ---- Showcase ---- */
#showcase { padding: 0 52px 150px; }
.swi {
  border: 1px solid var(--l);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.swc { padding: 68px 60px; display: flex; flex-direction: column; justify-content: space-between; }
.swv {
  background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(212,201,180,.08) 0%, transparent 100%);
  border-left: 1px solid var(--l);
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.swt { font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 700; line-height: 1.05; letter-spacing: -.02em; margin-bottom: 18px; }
.swds { font-size: 14.5px; line-height: 1.8; color: rgba(244,243,239,.42); font-weight: 300; margin-bottom: 36px; }
.swl { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 36px; }
.swl li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: rgba(244,243,239,.62); }
.swl li::before { content: '→'; color: var(--g); font-size: 12px; }

/* ---- Numbers ---- */
#numbers {
  border-top: 1px solid var(--l);
  border-bottom: 1px solid var(--l);
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--l);
  position: relative;
}
#numbers::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(212,201,180,.04) 0%, transparent 100%);
  pointer-events: none;
}

.ni {
  background: var(--k);
  padding: 60px 40px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background .35s;
}

/* Linha accent que varre da esquerda ao hover */
.ni::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--a), transparent);
  transition: right .5s cubic-bezier(.22,1,.36,1);
}
.ni:hover::before { right: 0; }

/* Glow radial sobe pelo fundo ao hover */
.ni::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(212,201,180,.07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s, bottom .4s;
  pointer-events: none;
}
.ni:hover::after { opacity: 1; bottom: -20px; }
.ni:hover { background: rgba(255,255,255,.012); }

/* Ícone topo */
.ni-top {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; margin: 0 auto 18px;
  background: rgba(212,201,180,.07);
  border: 1px solid rgba(212,201,180,.12);
  border-radius: 8px;
  color: rgba(212,201,180,.5);
  transition: color .3s, background .3s, border-color .3s, transform .3s;
}
.ni-top svg { width: 14px; height: 14px; }
.ni:hover .ni-top {
  color: var(--a);
  background: rgba(212,201,180,.12);
  border-color: rgba(212,201,180,.25);
  transform: translateY(-2px);
}

/* Número com gradiente */
.nv {
  font-family: 'Syne', sans-serif;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
  background: linear-gradient(160deg, #f4f3ef 20%, #d4c9b4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: filter .3s;
}
.ni:hover .nv { filter: brightness(1.18); }

/* Pop ao finalizar contagem */
@keyframes nvPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.06); filter: brightness(1.3); }
  100% { transform: scale(1); }
}
.nv.done { animation: nvPop .45s cubic-bezier(.22,1,.36,1) forwards; }

.nlab {
  font-size: 11px;
  color: rgba(244,243,239,.35);
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ---- Process ---- */
#process { padding: 150px 52px; }
.ph { text-align: center; margin-bottom: 86px; }
.ptit { font-family: 'Syne', sans-serif; font-size: clamp(36px,4.8vw,68px); font-weight: 700; letter-spacing: -.02em; margin-bottom: 14px; }
.psub { font-size: 15.5px; color: rgba(244,243,239,.38); font-weight: 300; }

.pst { display: grid; grid-template-columns: repeat(4,1fr); position: relative; }
.pst::before { content: ''; position: absolute; top: 30px; left: 12.5%; right: 12.5%; height: 1px; background: var(--l); }
.stp { padding: 0 26px; text-align: center; }
.snw {
  width: 60px; height: 60px;
  border: 1px solid var(--l);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(244,243,239,.26);
  background: var(--k);
  transition: border-color .4s, color .4s;
}
.stp:hover .snw { border-color: rgba(244,243,239,.26); color: var(--w); }
.stnm { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 600; margin-bottom: 9px; }
.stdc { font-size: 13.5px; line-height: 1.78; color: rgba(244,243,239,.38); font-weight: 300; }

/* ---- Light (Sobre) ---- */
#light { background: var(--w); color: var(--k); padding: 150px 52px; }
.lgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.ltit { font-family: 'Syne', sans-serif; font-size: clamp(34px,3.8vw,54px); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; color: var(--k); margin-bottom: 26px; }
.ltxt { font-size: 15.5px; line-height: 1.82; color: rgba(0,0,0,.48); font-weight: 300; margin-bottom: 40px; }

.fl { display: flex; flex-direction: column; }
.fr { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--ld); transition: gap .3s; }
.fr:hover { gap: 22px; }
.fi { width: 36px; height: 36px; background: rgba(0,0,0,.052); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: rgba(0,0,0,.5); flex-shrink: 0; }
.fi svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.fn { font-family: 'Syne', sans-serif; font-size: 14.5px; font-weight: 600; color: var(--k); margin-bottom: 3px; }
.fd { font-size: 13px; color: rgba(0,0,0,.44); font-weight: 300; line-height: 1.65; }

/* ---- Testimonial ---- */
#testimonial { padding: 150px 52px; text-align: center; }
.qm { font-family: 'Syne', sans-serif; font-size: 110px; line-height: .55; color: rgba(244,243,239,.04); margin-bottom: 34px; display: block; font-weight: 800; }
.qt { font-family: 'Syne', sans-serif; font-size: clamp(22px,3.2vw,44px); font-weight: 600; line-height: 1.22; letter-spacing: -.02em; max-width: 740px; margin: 0 auto 32px; color: rgba(244,243,239,.78); }
.qa { font-size: 13px; color: var(--g); letter-spacing: .05em; }

/* Testimonial reveal effect */
.testi-wrap { position: relative; display: inline-block; max-width: 800px; }
.testi-back {
  position: absolute; inset: 0;
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px,3.2vw,44px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.02em;
  color: #f97316;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  clip-path: circle(0px at 50% 50%);
  pointer-events: none;
}
.testi-front { position: relative; margin: 0; clip-path: circle(9999px at 50% 50%); }

/* ---- CTA ---- */
#cta { padding: 52px 52px 150px; }
.ci {
  background: var(--w);
  color: var(--k);
  border-radius: 26px;
  padding: 88px 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.cbg { position: absolute; inset: 0; background: radial-gradient(ellipse 55% 75% at 80% 50%, rgba(0,0,0,.034) 0%, transparent 70%); }
.ctit { font-family: 'Syne', sans-serif; font-size: clamp(28px,3.8vw,54px); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; max-width: 460px; }
.cri { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; flex-shrink: 0; position: relative; }
.cem { font-size: 14.5px; color: rgba(0,0,0,.42); }
.cem a { color: var(--k); text-decoration: underline; }

/* ---- Responsivo ---- */
@media (max-width: 900px) {
  /* Seções — padding geral */
  #services, #process, #light, #testimonial, #cta, #showcase {
    padding-left: 16px !important; padding-right: 16px !important;
  }

  /* Cards de serviços */
  .sg { grid-template-columns: 1fr; gap: 12px; }
  .scard { padding: 28px 22px; }
  .snam { font-size: 18px; }
  .sdsc { font-size: 13.5px; }

  /* Showcase */
  .sh { flex-direction: column; align-items: flex-start; gap: 12px; }
  .stit { font-size: clamp(24px, 6vw, 36px); }
  .swi { grid-template-columns: 1fr; }
  .swv { display: none; }
  .swc { padding: 40px 22px; }

  /* Números */
  #numbers { grid-template-columns: repeat(2,1fr); }
  .ni { padding: 36px 18px 30px; }
  .nv { font-size: clamp(36px, 9vw, 56px); }

  /* Process */
  .pst { grid-template-columns: 1fr; gap: 24px; }
  .pst::before { display: none; }
  .stp { padding: 24px 20px; }

  /* About */
  .lgrid { grid-template-columns: 1fr; gap: 40px; }

  /* CTA */
  .ci { flex-direction: column; padding: 40px 22px; gap: 32px; }
  .cri { align-items: flex-start; width: 100%; }
  .ctit { font-size: clamp(24px, 6vw, 36px); max-width: 100%; }
}
