/* ==========================================================================
   JCM Copiadora — folha de estilo principal
   ========================================================================== */

/* ---------- Tokens ---------- */
:root{
  --ink: #17181B;
  --graphite: #232529;
  --graphite-2: #2C2F35;
  --paper: #FAF9F6;
  --paper-warm: #F1EFE9;
  --cyan: #00AEEF;
  --magenta: #EC0B8C;
  --yellow: #FFD400;
  --text-dark: #1C1D20;
  --text-muted: #6B6E76;
  --text-on-dark: #F4F3EF;
  --text-on-dark-muted: #A7A9B0;
  --line-dark: rgba(255,255,255,0.14);
  --line-light: rgba(23,24,27,0.10);
  --radius: 2px;
  --maxw: 1180px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

/* ---------- Base ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  background:var(--paper);
  color:var(--text-dark);
  font-family:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3{
  font-family:'Fraunces',Georgia,serif;
  font-weight:700;
  letter-spacing:-0.01em;
  margin:0;
  color:inherit;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; }

::selection{ background:var(--yellow); color:var(--ink); }

:focus-visible{
  outline:2px solid var(--cyan);
  outline-offset:3px;
}

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 32px;
}

/* ---------- Elementos gráficos ---------- */
.eyebrow{
  font-family:'Space Mono',monospace;
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--text-muted);
}
.eyebrow::before{
  content:"";
  width:22px; height:1px;
  background:var(--magenta);
  display:inline-block;
}
.eyebrow--center{ justify-content:center; }
.section--dark .eyebrow{ color:var(--text-on-dark-muted); }
.section--dark .eyebrow::before{ background:var(--yellow); }

.colorbar{
  display:flex;
  height:4px;
  width:100%;
}
.colorbar span{ flex:1; }
.colorbar .c{ background:var(--cyan); }
.colorbar .m{ background:var(--magenta); }
.colorbar .y{ background:var(--yellow); }
.colorbar .k{ background:var(--ink); }

.regmark{
  width:16px; height:16px;
  position:relative;
  opacity:0.5;
  flex-shrink:0;
}
.regmark::before,.regmark::after{
  content:"";
  position:absolute;
  background:currentColor;
}
.regmark::before{ left:50%; top:0; width:1px; height:100%; transform:translateX(-50%); }
.regmark::after{ top:50%; left:0; height:1px; width:100%; transform:translateY(-50%); }
.regmark span{
  position:absolute; inset:0;
  border:1px solid currentColor;
  border-radius:50%;
}

.corner-marks{ position:relative; }
.corner-marks::before,.corner-marks::after{
  content:"";
  position:absolute;
  width:14px; height:14px;
  opacity:0.35;
}
.corner-marks::before{
  top:0; left:0;
  border-top:1px solid currentColor;
  border-left:1px solid currentColor;
}
.corner-marks::after{
  bottom:0; right:0;
  border-bottom:1px solid currentColor;
  border-right:1px solid currentColor;
}

/* ---------- Botões ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 28px;
  font-family:'Manrope',sans-serif;
  font-weight:700;
  font-size:14.5px;
  letter-spacing:0.01em;
  border-radius:var(--radius);
  border:1px solid transparent;
  cursor:pointer;
  transition:transform 0.35s var(--ease), background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }

.btn--primary{
  background:var(--paper);
  color:var(--ink);
}
.btn--primary:hover{ background:var(--yellow); }

.btn--ghost{
  background:transparent;
  color:var(--text-on-dark);
  border-color:var(--line-dark);
}
.btn--ghost:hover{ border-color:var(--text-on-dark); }

.btn--dark{
  background:var(--ink);
  color:var(--paper);
}
.btn--dark:hover{ background:var(--magenta); color:#fff; }

.btn--whatsapp{
  background:#25D366;
  color:#0b1f14;
}
.btn--whatsapp:hover{ background:#1fbd5a; }
.btn svg{ width:18px; height:18px; flex-shrink:0; }

.btn--block{ width:100%; }
.btn--spaced-lg{ margin-top:40px; }
.btn--spaced{ margin-top:28px; }

/* ---------- Navegação ---------- */
header.nav{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  background:rgba(23,24,27,0.92);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.nav__inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 32px;
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--text-on-dark);
}
.brand__mark{
  font-family:'Fraunces',serif;
  font-weight:800;
  font-size:20px;
  display:flex;
}
.brand__mark span{ display:inline-block; }
.brand__mark .j{ color:var(--cyan); }
.brand__mark .c{ color:var(--yellow); }
.brand__mark .m{ color:var(--magenta); }
.brand__name{
  font-family:'Space Mono',monospace;
  font-size:11px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--text-on-dark-muted);
  border-left:1px solid var(--line-dark);
  padding-left:12px;
}

.nav__links{
  display:flex;
  align-items:center;
  gap:36px;
  list-style:none;
  margin:0; padding:0;
}
.nav__links a{
  font-size:14px;
  font-weight:600;
  color:var(--text-on-dark-muted);
  transition:color 0.2s ease;
  position:relative;
}
.nav__links a:hover{ color:var(--text-on-dark); }

.nav__cta{ display:flex; align-items:center; gap:18px; }
.nav__phone{
  font-family:'Space Mono',monospace;
  font-size:13px;
  color:var(--text-on-dark-muted);
  display:flex;
  align-items:center;
  gap:8px;
}

.nav__toggle{
  display:none;
  background:none;
  border:1px solid var(--line-dark);
  color:var(--text-on-dark);
  width:42px; height:42px;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.nav__toggle svg{ width:18px; height:18px; }

/* ---------- Menu mobile ---------- */
.mobile-menu{
  display:none;
  position:fixed;
  inset:0;
  background:var(--ink);
  z-index:99;
  padding:100px 32px 32px;
}
.mobile-menu.is-open{ display:block; }
.mobile-menu__list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:28px;
}
.mobile-menu__list a{
  font-family:'Fraunces',serif;
  font-size:26px;
  color:var(--text-on-dark);
}

/* ---------- Hero ---------- */
.hero{
  background:var(--ink);
  color:var(--text-on-dark);
  padding:176px 0 96px;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size:64px 64px;
  pointer-events:none;
}
.hero__inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 32px;
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:64px;
  align-items:center;
  position:relative;
}
.hero__eyebrow{
  font-family:'Space Mono',monospace;
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--text-on-dark-muted);
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:26px;
}
.hero__eyebrow .dot{ width:6px; height:6px; border-radius:50%; background:var(--yellow); }

.hero h1{
  font-size:clamp(38px, 4.6vw, 60px);
  line-height:1.06;
  color:var(--text-on-dark);
}
.hero h1 em{
  font-style:italic;
  background:linear-gradient(90deg, var(--cyan), var(--magenta));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero p.lead{
  margin-top:24px;
  max-width:520px;
  font-size:17px;
  color:var(--text-on-dark-muted);
}
.hero__actions{
  margin-top:40px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.hero__meta{
  margin-top:56px;
  display:flex;
  gap:40px;
  flex-wrap:wrap;
  border-top:1px solid var(--line-dark);
  padding-top:24px;
}
.hero__meta div{ display:flex; flex-direction:column; gap:4px; }
.hero__meta .label{
  font-family:'Space Mono',monospace;
  font-size:11px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--text-on-dark-muted);
}
.hero__meta .value{ font-weight:700; font-size:15px; }

/* ---------- Ficha de produção ---------- */
.proof{
  background:var(--graphite);
  border:1px solid var(--line-dark);
  padding:28px;
  position:relative;
  color:var(--text-on-dark);
}
.proof__head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-family:'Space Mono',monospace;
  font-size:11px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--text-on-dark-muted);
  padding-bottom:18px;
  border-bottom:1px dashed var(--line-dark);
  margin-bottom:22px;
}
.proof__marks{ display:flex; gap:10px; }
.proof__marks .regmark{ color:var(--text-on-dark-muted); }

.proof__lettermark{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-bottom:22px;
}
.proof__letter{
  aspect-ratio:3/4;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Fraunces',serif;
  font-style:italic;
  font-weight:600;
  font-size:44px;
  border-radius:3px;
}
.proof__letter.j{ background:var(--cyan); color:#032B36; }
.proof__letter.c{ background:var(--yellow); color:#3A2D00; }
.proof__letter.m{ background:var(--magenta); color:#3A0021; }

.proof__bars{ display:flex; flex-direction:column; gap:6px; margin-bottom:22px; }
.proof__bar{ display:flex; height:9px; gap:2px; }
.proof__bar span{ flex:1; }
.proof__bar .c{ background:var(--cyan); }
.proof__bar .m{ background:var(--magenta); }
.proof__bar .y{ background:var(--yellow); }
.proof__bar .k{ background:#606368; }

.proof__foot{
  display:flex;
  justify-content:space-between;
  font-family:'Space Mono',monospace;
  font-size:10.5px;
  color:var(--text-on-dark-muted);
  letter-spacing:0.04em;
}

/* ---------- Seções ---------- */
.section{ padding:110px 0; }
.section--dark{ background:var(--ink); color:var(--text-on-dark); }
.section--tight{ padding:90px 0; }
.section-head{
  max-width:640px;
  margin-bottom:64px;
}
.section-head h2{
  font-size:clamp(28px,3.2vw,40px);
  line-height:1.15;
  margin-top:18px;
}
.section-head p{
  margin-top:18px;
  font-size:16px;
  color:var(--text-muted);
  max-width:520px;
}
.section--dark .section-head p{ color:var(--text-on-dark-muted); }

.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible{ opacity:1; transform:translateY(0); }

/* ---------- Serviços ---------- */
.services__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line-light);
  border:1px solid var(--line-light);
}
.service-card{
  background:var(--paper);
  padding:38px 32px 32px;
  display:flex;
  flex-direction:column;
  gap:20px;
  transition:background 0.3s ease;
}
.service-card:hover{ background:var(--paper-warm); }
.service-card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
}
.service-card__icon{
  width:44px; height:44px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
}
.service-card__icon svg{ width:22px; height:22px; }
.service-card__tag{
  font-family:'Space Mono',monospace;
  font-size:10.5px;
  letter-spacing:0.06em;
  color:var(--text-muted);
  text-transform:uppercase;
}
.service-card h3{
  font-size:19px;
  font-weight:600;
}
.service-card p{
  font-size:14.5px;
  color:var(--text-muted);
  flex-grow:1;
}
.service-card__cta{
  font-family:'Space Mono',monospace;
  font-size:12px;
  letter-spacing:0.04em;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  padding-top:8px;
  border-top:1px solid var(--line-light);
}
.service-card__cta svg{ width:13px; height:13px; transition:transform 0.25s ease; }
.service-card:hover .service-card__cta svg{ transform:translateX(4px); }

.ic-cyan{ background:rgba(0,174,239,0.12); color:var(--cyan); }
.ic-magenta{ background:rgba(236,11,140,0.12); color:var(--magenta); }
.ic-yellow{ background:rgba(255,212,0,0.18); color:#8A6D00; }

/* ---------- Diferenciais ---------- */
.why__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}
.why__item{ border-top:1px solid var(--line-dark); padding-top:22px; }
.why__item .num{
  font-family:'Space Mono',monospace;
  font-size:12px;
  color:var(--text-on-dark-muted);
}
.why__item h3{
  font-size:18px;
  margin-top:14px;
  color:var(--text-on-dark);
  font-weight:600;
  font-family:'Manrope',sans-serif;
}
.why__item p{
  margin-top:10px;
  font-size:14.5px;
  color:var(--text-on-dark-muted);
}

/* ---------- Como funciona ---------- */
.process__steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  position:relative;
}
.step{
  padding:0 32px 0 0;
  position:relative;
}
.step:not(:last-child)::after{
  content:"";
  position:absolute;
  top:14px; right:0;
  width:calc(100% - 0px);
  border-top:1px dashed var(--line-light);
}
.step__num{
  font-family:'Fraunces',serif;
  font-style:italic;
  font-size:15px;
  color:var(--magenta);
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}
.step__num .line{ height:1px; width:22px; background:var(--line-light); }
.step h3{ font-size:19px; font-weight:600; font-family:'Manrope',sans-serif; }
.step p{ margin-top:10px; font-size:14.5px; color:var(--text-muted); max-width:280px; }

/* ---------- Localização ---------- */
.location__grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:0;
  border:1px solid var(--line-light);
}
.location__info{
  padding:48px 44px;
  background:var(--paper);
}
.location__row{
  display:flex;
  gap:18px;
  padding:20px 0;
  border-top:1px solid var(--line-light);
}
.location__row:first-of-type{ border-top:none; }
.location__row .ic{
  width:20px; height:20px;
  flex-shrink:0;
  color:var(--magenta);
}
.location__row .label{
  font-family:'Space Mono',monospace;
  font-size:11px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--text-muted);
  margin-bottom:4px;
}
.location__row .value{ font-weight:600; font-size:15px; }
.location__row .value small{ display:block; font-weight:400; color:var(--text-muted); margin-top:2px; font-size:13.5px; }

.map-frame{ position:relative; min-height:420px; background:var(--paper-warm); }
.map-frame iframe{ width:100%; height:100%; min-height:420px; border:0; filter:grayscale(0.25) contrast(1.05); }

/* ---------- Contato CTA ---------- */
.contact-cta{
  background:var(--ink);
  color:var(--text-on-dark);
  padding:100px 0;
  text-align:center;
  position:relative;
}
.contact-cta h2{
  font-size:clamp(30px,4vw,48px);
  max-width:760px;
  margin:18px auto 0;
  line-height:1.14;
}
.contact-cta p{
  margin:22px auto 0;
  max-width:480px;
  color:var(--text-on-dark-muted);
}
.contact-cta__actions{
  margin-top:40px;
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}
.contact-cta__email{
  margin-top:28px;
  font-family:'Space Mono',monospace;
  font-size:13.5px;
  color:var(--text-on-dark-muted);
}
.contact-cta__email a{ color:var(--text-on-dark); border-bottom:1px solid var(--line-dark); }

/* ---------- Especificações (plotagem) ---------- */
.spec-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line-light);
  border:1px solid var(--line-light);
}
.spec-item{
  background:var(--paper);
  padding:32px 28px;
}
.spec-item h3{
  font-size:16px;
  font-weight:600;
  font-family:'Manrope',sans-serif;
  margin-bottom:18px;
}
.tag-pill-group{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.tag-pill{
  font-family:'Space Mono',monospace;
  font-size:12px;
  letter-spacing:0.02em;
  color:var(--text-dark);
  border:1px solid var(--line-light);
  border-radius:999px;
  padding:6px 14px;
}

/* ---------- Banner de destaque (atendimento empresarial) ---------- */
.highlight-banner{
  background:var(--ink);
  color:var(--text-on-dark);
  padding:56px 48px;
  display:grid;
  grid-template-columns:1.3fr 0.7fr;
  gap:40px;
  align-items:center;
}
.highlight-banner h2{
  font-size:clamp(24px,2.6vw,32px);
  line-height:1.18;
  margin-top:16px;
  color:var(--text-on-dark);
}
.highlight-banner p{
  margin-top:16px;
  font-size:15.5px;
  color:var(--text-on-dark-muted);
  max-width:460px;
}
.highlight-banner__list{
  list-style:none;
  margin:24px 0 0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.highlight-banner__list li{
  font-size:14.5px;
  color:var(--text-on-dark);
  padding-left:20px;
  position:relative;
}
.highlight-banner__list li::before{
  content:"";
  position:absolute;
  left:0; top:8px;
  width:8px; height:8px;
  background:var(--yellow);
}
.highlight-banner > a{ justify-self:start; }

/* ---------- Texto SEO ---------- */
.seo-copy__text{
  max-width:760px;
}
.seo-copy__text p{
  font-size:15px;
  color:var(--text-muted);
  line-height:1.75;
}
.seo-copy__text p + p{ margin-top:16px; }

/* ---------- Rodapé ---------- */
footer.site-footer{
  background:var(--graphite);
  color:var(--text-on-dark-muted);
  padding:56px 0 28px;
}
.footer__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  gap:32px;
  padding-bottom:36px;
  border-bottom:1px solid var(--line-dark);
}
.footer__brand .brand{ margin-bottom:14px; }
.footer__brand p{ font-size:13.5px; max-width:280px; }
.footer__cols{ display:flex; gap:64px; flex-wrap:wrap; }
.footer__col h4{
  font-family:'Space Mono',monospace;
  font-size:11px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--text-on-dark-muted);
  margin-bottom:16px;
}
.footer__col ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.footer__col a{ font-size:14px; color:var(--text-on-dark); transition:color 0.2s ease; }
.footer__col a:hover{ color:var(--yellow); }
.footer__bottom{
  padding-top:22px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  font-size:12.5px;
}

/* ---------- WhatsApp flutuante ---------- */
.float-wa{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:90;
  background:#25D366;
  color:#0b1f14;
  width:58px; height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.28);
  opacity:0;
  transform:translateY(16px) scale(0.9);
  pointer-events:none;
  transition:opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.float-wa.is-visible{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
.float-wa:hover{ background:#1fbd5a; }
.float-wa svg{ width:26px; height:26px; }

/* ---------- Mobile ---------- */
html,body{ overflow-x:hidden; max-width:100%; }

@media (max-width:960px){
  .hero__inner{ grid-template-columns:1fr; gap:56px; }
  .why__grid{ grid-template-columns:repeat(2,1fr); }
  .process__steps{ grid-template-columns:1fr; gap:36px; }
  .step:not(:last-child)::after{ display:none; }
  .services__grid{ grid-template-columns:repeat(2,1fr); }
  .location__grid{ grid-template-columns:1fr; }
  .map-frame{ min-height:320px; }
  .map-frame iframe{ min-height:320px; }
  .spec-grid{ grid-template-columns:1fr; }
  .highlight-banner{ grid-template-columns:1fr; padding:40px 32px; }
  .highlight-banner > a{ justify-self:stretch; }

  /* Nav vira hambúrguer já no tablet: links + telefone + CTA não cabem
     ao lado do brand nessa largura e estouravam a viewport. */
  .nav__links, .nav__cta{ display:none; }
  .nav__toggle{ display:flex; }
}

@media (max-width:720px){
  .wrap,.nav__inner,.hero__inner{ padding-left:20px; padding-right:20px; }
  .hero{ padding:140px 0 72px; }
  .section{ padding:76px 0; }
  .services__grid{ grid-template-columns:1fr; }
  .why__grid{ grid-template-columns:1fr; gap:28px; }
  .footer__top{ flex-direction:column; }
  .location__info{ padding:36px 24px; }
  .hero__actions .btn{ width:100%; }
}

@media (max-width:480px){
  .wrap,.nav__inner,.hero__inner{ padding-left:16px; padding-right:16px; }
  .mobile-menu{ padding:96px 20px 24px; }
  .mobile-menu__list a{ font-size:22px; }
  .hero{ padding:124px 0 60px; }
  .hero p.lead{ font-size:15.5px; }
  .hero__meta{ gap:24px; }
  .btn{ padding:13px 22px; font-size:14px; }
  .section{ padding:64px 0; }
  .section-head{ margin-bottom:44px; }
  .service-card{ padding:30px 22px 26px; }
  .location__info{ padding:30px 18px; }
  .footer__cols{ gap:36px; }
  .contact-cta{ padding:72px 0; }
}
