/* ==========================================================
   Imprime Já — Gráfica Rápida & Copiadora
   Identidade: registro de cores CMYK, tíquetes/recibos, papel.
   ========================================================== */

:root{
  --paper:      #FAFAF7;
  --paper-dim:  #F0EEE7;
  --ink:        #16150F;
  --ink-soft:   #4A4A42;
  --line:       #D9D6CC;

  --cyan:       #00AEEF;
  --magenta:    #EC008C;
  --yellow:     #FFD400;

  --radius: 2px;
  --wrap: 1180px;

  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Work Sans', system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

img{ max-width: 100%; display: block; }
a{ color: inherit; }

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

.skip-link{
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus{ left: 16px; top: 16px; }

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

/* halftone dot texture, fixed behind content */
.halftone-bg{
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(var(--line) 1px, transparent 1.2px);
  background-size: 14px 14px;
  opacity: .35;
}

/* ---------- typography ---------- */
h1, h2, h3{
  font-family: var(--font-display);
  line-height: 1.05;
  margin: 0 0 .4em;
  letter-spacing: -0.01em;
}
h2{ font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3{ font-size: 1.15rem; }

.eyebrow{
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  color: var(--magenta);
  margin: 0 0 .6em;
}

.section-lead{
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-head{ margin-bottom: 44px; }

/* ---------- buttons ---------- */
.btn{
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .85rem;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn-solid{
  background: var(--ink);
  color: var(--paper);
}
.btn-solid:hover{
  background: var(--magenta);
  border-color: var(--magenta);
  transform: translate(-1px, -2px);
}
.btn-outline{
  background: transparent;
  color: var(--ink);
}
.btn-outline:hover{
  transform: translate(-1px, -2px);
  border-color: var(--magenta);
  color: var(--magenta);
}
.btn-block{ display: block; width: 100%; text-align: center; }

/* ---------- CMYK registration marks ---------- */
.mark{
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  mix-blend-mode: multiply;
}
.mark-c{ background: var(--cyan); }
.mark-m{ background: var(--magenta); margin-left: -6px; }
.mark-y{ background: var(--yellow); margin-left: -6px; }

/* ---------- header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, .92);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--ink);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.logo-marks{ display: flex; }
.logo-text{
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.1;
  text-transform: uppercase;
}
.logo-text small{
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  text-transform: none;
  letter-spacing: .02em;
  font-size: .65rem;
  color: var(--ink-soft);
}

.main-nav{
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .95rem;
}
.main-nav a{ text-decoration: none; }
.main-nav a:not(.nav-cta){
  position: relative;
  padding-bottom: 2px;
}
.main-nav a:not(.nav-cta)::after{
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -3px;
  height: 2px;
  background: var(--magenta);
  transition: right .2s ease;
}
.main-nav a:not(.nav-cta):hover::after{ right: 0; }
.nav-cta{ padding: 10px 18px; font-size: .78rem; }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span{
  height: 2px;
  background: var(--ink);
  margin: 0 8px;
}

/* ---------- hero ---------- */
.hero{ padding: 72px 0 56px; }
.hero-grid{
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 56px;
  align-items: center;
}
.hero-copy{
  max-width: 700px;
}

.misprint{
  position: relative;
  font-size: clamp(2.6rem, 7.2vw, 5.4rem);
  text-transform: uppercase;
  margin-bottom: .3em;
}
.misprint .layer{
  display: block;
}
.misprint .layer-k{ position: relative; color: var(--ink); }
.misprint .layer-c,
.misprint .layer-m,
.misprint .layer-y{
  position: absolute;
  top: 0; left: 0;
  mix-blend-mode: multiply;
}
.misprint .layer-c{ color: var(--cyan);    transform: translate(-6px, -3px); }
.misprint .layer-m{ color: var(--magenta); transform: translate(6px, 2px); }
.misprint .layer-y{ color: var(--yellow);  transform: translate(-2px, 5px); }

.hero-lead{
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 auto 1.6em;
}
.hero-actions{ display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 2em; }

.hero-trust{
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 18px 0 0;
  border-top: 1px dashed var(--line);
  font-size: .85rem;
  color: var(--ink-soft);
  justify-content: center;
  flex-wrap: wrap;
}
.hero-trust strong{
  display: block;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--ink);
}

/* receipt / ticket */
.hero-ticket{ display: flex; justify-content: center; }
.ticket{
  position: relative;
  width: 100%;
  max-width: 320px;
  background: #fff;
  padding: 26px 22px 22px;
  box-shadow: 0 18px 40px -18px rgba(22,21,15,.35);
  transform: rotate(2deg);
  font-family: var(--font-mono);
}
.ticket-notch{
  position: absolute;
  left: 0; right: 0;
  height: 12px;
  background:
    radial-gradient(circle at 8px 0, transparent 7px, #fff 7.5px) top left / 16px 12px repeat-x;
}
.ticket-notch.top{ top: -1px; transform: rotate(180deg); }
.ticket-notch.bottom{ bottom: -1px; }
.ticket-title{
  text-align: center;
  font-weight: 700;
  letter-spacing: .08em;
  font-size: .8rem;
  margin: 0;
}
.ticket-rule{
  border-top: 1px dashed var(--ink);
  margin: 12px 0;
  opacity: .6;
}
.ticket-lines{ list-style: none; margin: 0; padding: 0; font-size: .82rem; }
.ticket-lines li{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
}
.ticket-total{
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: .95rem;
  margin: 0;
}
.ticket-barcode{
  margin-top: 16px;
  height: 34px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 5px, var(--ink) 5px 6px, transparent 6px 10px);
  opacity: .85;
}

/* ---------- strip ---------- */
.strip{
  background: var(--ink);
  color: var(--paper);
  padding: 12px 0;
  overflow: hidden;
}
.strip-inner{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.strip .dot{ color: var(--yellow); }

/* ---------- sections ---------- */
.section{ padding: 88px 0; }
.section-alt{ background: var(--paper-dim); }

/* services */
.card-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--ink);
  border: 2px solid var(--ink);
}
.job-card{
  background: var(--paper);
  padding: 26px 22px;
  position: relative;
}
.job-card-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.job-icon svg{
  width: 34px; height: 34px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.job-code{
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--magenta);
}
.job-card h3{ margin-bottom: .35em; }
.job-card p{ color: var(--ink-soft); font-size: .92rem; margin: 0; }

/* steps */
.steps{
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-mark{ display: block; margin-bottom: 14px; }
.step h3{ margin-bottom: .3em; }
.step p{ color: var(--ink-soft); margin: 0; }

/* gallery swatches */
.swatch-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.swatch{
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  overflow: hidden;
  isolation: isolate; /* garante que o blend mode fique contido neste swatch */
}
.swatch img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .4s ease;
}
.swatch:hover img{ transform: scale(1.06); }

/* véu de cor por cima da foto, mantendo a identidade CMYK */
.swatch::after{
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  mix-blend-mode: multiply;
  opacity: .55;
}
.swatch-tag{
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: .78rem;
  background: rgba(255,255,255,.9);
  padding: 6px 10px;
  color: var(--ink);
}
.swatch-c::after{ background: var(--cyan); }
.swatch-m::after{ background: var(--magenta); }
.swatch-y::after{ background: var(--yellow); }
.swatch-k::after{ background: var(--ink); opacity: .35; }
.swatch-k .swatch-tag{ background: rgba(255,255,255,.92); }
.swatch-cm::after{ background: linear-gradient(135deg, var(--cyan), var(--magenta)); }
.swatch-my::after{ background: linear-gradient(135deg, var(--magenta), var(--yellow)); }

/* fallback: se a imagem não carregar, mostra só a cor sólida */
.swatch img:not([src]), .swatch img[src=""]{ display: none; }

/* testimonials */
.testimonial-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card{
  background: #fff;
  margin: 0;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--magenta);
  box-shadow: 0 14px 28px -20px rgba(22,21,15,.35);
}
.testi-card p{ font-size: 1rem; margin: 0 0 16px; }
.testi-card footer{
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--ink-soft);
}
.testi-card footer span{ display: block; opacity: .8; }

/* contact */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 56px;
  align-items: start;
}
.info-list{
  list-style: none;
  margin: 28px 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.info-list li{
  display: grid;
  gap: 2px;
  border-left: 3px solid var(--cyan);
  padding-left: 14px;
}
.info-list strong{ font-family: var(--font-mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.info-list a{ text-decoration: underline; }

.map-frame{
  border: 2px solid var(--ink);
  overflow: hidden;
}
.map-frame iframe{ width: 100%; height: 240px; border: 0; display: block; }

.order-form{
  background: #fff;
  border: 2px solid var(--ink);
  padding: 28px 26px;
  box-shadow: 8px 8px 0 var(--yellow);
}
.order-form label{
  display: block;
  font-family: var(--font-mono);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.order-form input,
.order-form select,
.order-form textarea{
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
}
.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus{
  border-color: var(--magenta);
}
.form-note{
  font-size: .78rem;
  color: var(--ink-soft);
  margin: 10px 0 0;
}

/* ---------- footer ---------- */
.site-footer{
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 48px 0 28px;
  overflow: hidden;
}
.halftone-footer{
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1.2px);
  background-size: 12px 12px;
}
.footer-inner{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand{ display: flex; align-items: center; gap: 10px; }
.footer-brand .logo-text{ color: var(--paper); }
.footer-brand .logo-text small{ color: #B9B7AD; }
.footer-nav{ display: flex; gap: 22px; font-size: .9rem; }
.footer-nav a{ text-decoration: none; }
.footer-nav a:hover{ color: var(--yellow); }
.footer-legal{
  width: 100%;
  font-family: var(--font-mono);
  font-size: .75rem;
  color: #9C9A90;
  border-top: 1px solid #34332A;
  padding-top: 18px;
  margin: 6px 0 0;
}

/* whatsapp float */
.whatsapp-float{
  position: fixed;
  bottom: 22px; right: 22px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.4);
  z-index: 60;
  transition: transform .15s ease;
}
.whatsapp-float svg{ width: 28px; height: 28px; fill: #fff; }
.whatsapp-float:hover{ transform: scale(1.08); }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 980px){
  .card-grid{ grid-template-columns: repeat(2, 1fr); }
  .steps{ grid-template-columns: 1fr; }
  .testimonial-grid{ grid-template-columns: 1fr; }
  .swatch-grid{ grid-template-columns: repeat(2, 1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .main-nav{
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 24px;
    gap: 16px;
    display: none;
  }
  .main-nav.open{ display: flex; }
  .nav-cta{ align-self: flex-start; }
  .nav-toggle{ display: flex; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-ticket{ order: -1; }
}

@media (max-width: 560px){
  .card-grid{ grid-template-columns: 1fr; }
  .swatch-grid{ grid-template-columns: 1fr; }
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .hero-trust{ flex-wrap: wrap; row-gap: 10px; }
}

.logo-img {
    height: 50px; /* Altere para a altura ideal da sua barra de navegação */
    width: auto;  /* Mantém a proporção da imagem sem distorcer */
    vertical-align: middle;
}

.logo-banner
{
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 250px;
  width: auto;
}