:root {
  /* paleta — MAREH casa de flores (delicada, editorial) */
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --ink-muted: #7A7370;
  --paper: #FAF7F2;
  --paper-2: #F1ECE3;
  --paper-3: #E8E1D5;
  --line: #E0D8CB;
  --rose: #C99B9B;
  --rose-deep: #A87878;
  --gold: #B89968;
  --moss: #6B7359;

  /* tipografia */
  --serif: "Cormorant Garamond", "Georgia", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* layout */
  --max: 1280px;
  --pad-x: clamp(24px, 5vw, 72px);
  --t: cubic-bezier(0.22, 1, 0.36, 1);
  --t-slow: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ---------- LENIS (smooth scroll com inércia) ---------- */
html.lenis,
html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  z-index: 100;
  font-size: 0.9rem;
}
.skip:focus { left: 12px; top: 12px; outline: 2px solid var(--gold); }

/* ---------- TIPOGRAFIA ---------- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.08;
  margin: 0 0 .5em;
}
h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 400;
}
h1 em, h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  position: relative;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
}
h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  font-weight: 500;
  line-height: 1.15;
}

p {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  line-height: 1;
}
.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow-center { justify-content: center; width: 100%; display: flex; }

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 36ch;
  line-height: 1.45;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 110; /* acima do grão (100) */
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1;
}
.brand-tag {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  transition: color .3s var(--t);
}
.nav a:hover { color: var(--ink); }
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--t);
}
.nav a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 11px 22px !important;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  transition: background .3s var(--t), transform .3s var(--t);
}
.nav-cta:hover { background: #000; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: transform .3s var(--t), opacity .3s var(--t);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 78px 0 auto 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px var(--pad-x) 32px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform .4s var(--t);
  }
  .nav.is-open { transform: translateY(0); }
  .nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .nav-cta {
    margin-top: 16px;
    text-align: center;
  }
}

/* ---------- BUTTONS / LINKS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.93rem;
  letter-spacing: 0.04em;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .3s var(--t), background .3s var(--t), color .3s var(--t), border-color .3s var(--t);
  cursor: pointer;
}
.btn span { transition: transform .3s var(--t); }
.btn:hover span { transform: translateX(4px); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

.link-arrow {
  font-family: var(--sans);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .3s var(--t), color .3s var(--t);
}
.link-arrow:hover { gap: 14px; color: var(--rose-deep); }
.link-arrow span { display: inline-block; }

/* ---------- HERO (editorial com sobreposição) ---------- */
.hero {
  padding: clamp(64px, 8vw, 110px) 0 clamp(72px, 9vw, 130px);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  column-gap: clamp(20px, 3vw, 56px);
  align-items: end;
  position: relative;
}
.hero-copy {
  grid-column: 1 / span 8;
  grid-row: 1;
  z-index: 3;
  position: relative;
  padding-bottom: clamp(20px, 4vw, 60px);
}
.hero-image {
  grid-column: 7 / span 6;
  grid-row: 1;
  z-index: 1;
  position: relative;
}
#hero-title {
  font-size: clamp(3.2rem, 9.5vw, 7.8rem);
  letter-spacing: -0.018em;
  line-height: 0.96;
  margin-bottom: 32px;
  color: var(--ink);
  font-weight: 400;
}
#hero-title em {
  color: var(--rose-deep);
  font-style: italic;
  display: inline-block;
  transform: translateX(clamp(0px, 2vw, 18px));
}
.hero-copy .lede {
  max-width: 38ch;
  position: relative;
  z-index: 4;
}
.hero-cta {
  position: relative;
  z-index: 4;
}
.hero-cta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}

.hero-image {
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image:hover img { transform: scale(1.02); }
.image-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 0.95rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
  letter-spacing: 0.02em;
}
.image-caption span:first-child {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.image-caption em { font-style: italic; }

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-copy { grid-column: 1; padding-bottom: 0; }
  .hero-image { grid-column: 1; grid-row: 2; max-width: 100%; aspect-ratio: 4 / 5; }
  #hero-title em { transform: none; }
}

/* ---------- SECTION BASE ---------- */
.section {
  padding: clamp(56px, 7vw, 96px) 0;
  position: relative;
}
.section-head {
  max-width: 720px;
  margin: 0 auto clamp(36px, 4vw, 56px);
  text-align: center;
}
.section-head .eyebrow { justify-content: center; }
.section-head-left {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.section-head-left .eyebrow { justify-content: flex-start; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.two-col-tight {
  grid-template-columns: 1.05fr 1fr;
}
.two-col .col-art {
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.two-col .col-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--t-slow);
}
.two-col .col-art:hover img { transform: scale(1.03); }
.two-col .col-copy {
  max-width: 520px;
}

@media (max-width: 820px) {
  .two-col, .two-col-tight { grid-template-columns: 1fr; gap: 40px; }
  .two-col .col-copy { max-width: 100%; }
  .two-col .col-art { aspect-ratio: 4 / 5; }
  .two-col-tight .col-art { order: -1; }
}

.signature {
  margin-top: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--rose-deep);
  letter-spacing: 0.02em;
}

/* ---------- SERVIÇOS (grid editorial assimétrico) ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(20px, 3vw, 56px);
  row-gap: clamp(60px, 9vw, 140px);
}
.service:nth-child(1) { grid-column: 1 / span 5; }
.service:nth-child(2) { grid-column: 6 / span 7; margin-top: clamp(40px, 7vw, 100px); }
.service:nth-child(3) { grid-column: 1 / span 7; }
.service:nth-child(4) { grid-column: 8 / span 5; margin-top: clamp(40px, 7vw, 100px); }

@media (max-width: 820px) {
  /* Stack vertical em mobile */
  .services {
    grid-template-columns: 1fr;
    row-gap: 56px;
  }
  .service:nth-child(1),
  .service:nth-child(2),
  .service:nth-child(3),
  .service:nth-child(4) {
    grid-column: 1 / -1;
    margin-top: 0;
  }
}

.service {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.service-image {
  margin: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.service--lg .service-image {
  aspect-ratio: 4 / 3;
}
@media (max-width: 820px) {
  .service-image,
  .service--lg .service-image { aspect-ratio: 4 / 5; }
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--t-slow);
}
.service:hover .service-image img { transform: scale(1.04); }
.service-num {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--paper);
  padding: 6px 12px;
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 2px;
  font-weight: 500;
}
.service-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 38ch;
}
.service-body h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  color: var(--ink);
  margin: 0;
  line-height: 1.02;
}
.service-body p { margin: 0; }
.service-body .link-arrow { align-self: flex-start; margin-top: 6px; }

/* ---------- PROCESSO ---------- */
.section-processo { background: var(--paper-2); }
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 48px);
}
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 44px; }
}
@media (max-width: 500px) {
  .steps { grid-template-columns: 1fr; gap: 32px; }
}
.step {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  position: relative;
}
.step-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 2rem;
  color: var(--rose-deep);
  margin-bottom: 16px;
  line-height: 1;
}
.step h3 {
  font-style: italic;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.step p { font-size: 0.95rem; margin: 0; }

/* ---------- DEPOIMENTOS (grid) ---------- */
.section-quote {
  background: var(--paper-2);
}
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.5vw, 48px);
}
@media (max-width: 900px) {
  .quotes { grid-template-columns: 1fr; gap: 40px; }
}
.quote {
  margin: 0;
  background: var(--paper);
  border-radius: 4px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.32rem);
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
  flex: 1;
}
.quote blockquote::before { content: "“"; color: var(--rose-deep); margin-right: 2px; font-size: 1.3em; line-height: 0; }
.quote blockquote::after { content: "”"; color: var(--rose-deep); margin-left: 2px; font-size: 1.3em; line-height: 0; }
.quote figcaption {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.quote figcaption span {
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 400;
  margin-left: 2px;
  color: var(--ink-muted);
}

/* ---------- FAQ ---------- */
.section-faq {
  background: var(--paper);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.5vw, 1.32rem);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  line-height: 1.3;
  transition: color .3s var(--t);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--rose-deep); }
.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform .4s var(--t), background .3s var(--t);
}
.faq-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}
.faq-icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}
.faq-item[open] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-item[open] summary { color: var(--rose-deep); }
.faq-item[open] .faq-icon::before { background: var(--rose-deep); }
.faq-item p {
  margin: 0 0 28px;
  padding-right: 42px;
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 64ch;
  animation: faqOpen .4s var(--t-slow);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- ENTREGA ---------- */
.section-entrega .btn-outline { margin-top: 16px; }

/* ---------- PULL QUOTE (assinatura entre entrega e contato) ---------- */
.section-pullquote {
  padding: clamp(64px, 8vw, 110px) 0;
  text-align: center;
  background: var(--paper);
  position: relative;
}
.section-pullquote .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.pullquote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(5rem, 8vw, 7rem);
  color: var(--rose-deep);
  line-height: 0.6;
  display: block;
  margin-bottom: -10px;
  opacity: 0.85;
}
.pullquote-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.pullquote-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 8px auto 0;
}
.pullquote-attr {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}

/* ---------- CONTATO ---------- */
.section-contato {
  text-align: center;
  background: var(--paper-2);
}
.contato-inner { max-width: 720px; margin: 0 auto; }
.contato-inner h2 { margin-bottom: 24px; }
.contato-inner p { color: var(--ink-soft); max-width: 48ch; margin-left: auto; margin-right: auto; }
.contato-cta {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(64px, 8vw, 96px) 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid rgba(250, 247, 242, 0.12);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.foot-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1;
}
.foot-brand .brand-name {
  color: var(--paper);
  font-size: 1.6rem;
}
.foot-brand .brand-tag {
  color: var(--paper-3);
}
.foot-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-3);
  margin: 0 0 4px;
}
.foot-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-list a {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.8);
  text-decoration: none;
  transition: color .3s var(--t);
  position: relative;
  padding-bottom: 1px;
  display: inline-block;
}
.foot-list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--t);
}
.foot-list a:hover { color: var(--paper); }
.foot-list a:hover::after { transform: scaleX(1); }
.foot-meta {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(250, 247, 242, 0.7);
  letter-spacing: 0.02em;
}
.foot-hours {
  font-style: italic;
  font-family: var(--serif);
  font-size: 0.92rem;
  margin-top: 8px;
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-credit {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.45);
  letter-spacing: 0.02em;
}

/* ---------- WHATSAPP FLUTUANTE ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 110; /* acima do grão (100) */
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #25D366;
  color: #FFFFFF;
  padding: 14px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25), 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform .35s var(--t), padding .35s var(--t), background .35s var(--t), box-shadow .35s var(--t);
  overflow: hidden;
  line-height: 1;
}
.wa-float:hover {
  transform: translateY(-3px);
  background: #1FB855;
  padding-right: 22px;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15);
}
.wa-float svg {
  display: block;
  flex-shrink: 0;
}
.wa-float-label {
  font-family: var(--sans);
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transition: max-width .35s var(--t), margin-left .35s var(--t), opacity .35s var(--t);
}
.wa-float:hover .wa-float-label {
  max-width: 200px;
  margin-left: 10px;
  opacity: 1;
}
@media (max-width: 720px) {
  .wa-float { bottom: 16px; right: 16px; padding: 12px; }
  .wa-float:hover { padding-right: 12px; }
  .wa-float:hover .wa-float-label { max-width: 0; margin-left: 0; opacity: 0; }
}

/* ---------- REVEAL ON SCROLL (só com JS ativo) ---------- */
.reveal {
  opacity: 1;
  transform: none;
}
html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1s var(--t-slow), transform 1s var(--t-slow);
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- FOCUS ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* loading placeholder while images load */
img {
  background: var(--paper-2);
}

/* ============================================
   AUDITORIA MOBILE — A11Y, POLISH, REFINAMENTO
   ============================================ */
@media (max-width: 820px) {
  /* ---------- PACOTE A: TOUCH TARGETS ≥ 44px ---------- */
  .nav-toggle {
    width: 44px;
    height: 44px;
  }
  .nav a {
    padding: 18px 0 !important;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .link-arrow {
    padding: 12px 0 !important;
    min-height: 44px;
    align-items: center;
  }
  .service-body .link-arrow {
    align-self: flex-start;
  }
  .foot-list a {
    padding: 10px 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .brand {
    padding: 8px 0;
    min-height: 44px;
  }

  /* ---------- PACOTE A: TAMANHOS DE FONTE ---------- */
  .eyebrow {
    font-size: 0.82rem; /* 13.12px de 16 base */
    letter-spacing: 0.2em;
  }
  .testimonial figcaption,
  .quote figcaption {
    font-size: 0.82rem; /* 13.12px */
  }
  .brand-tag {
    font-size: 0.92rem; /* 14.72px */
  }

  /* ---------- PACOTE B: HEADER COM MAIS RESPIRO ---------- */
  .header-inner {
    gap: 16px;
    align-items: center;
  }
  /* Brand em mobile: align center (não baseline) pra não cortar ascenders */
  .brand {
    align-items: center;
    line-height: 1.3;
  }
  .brand-name {
    font-size: 1.4rem;
    line-height: 1.3;
  }
  .brand-tag {
    font-size: 0.9rem;
    line-height: 1.3;
  }
  /* Mobile: header sólido (sem transparência) — backdrop-filter falha em alguns
     navegadores e a transparência deixa conteúdo passar por baixo */
  .site-header {
    background: var(--paper);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav {
    background: var(--paper);
  }

  /* DESATIVAR header shrink em mobile — header já é compacto */
  .site-header.is-shrunk .header-inner {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .site-header.is-shrunk .brand-display,
  .site-header.is-shrunk .brand-name {
    font-size: 1.4rem;
  }
  .site-header.is-shrunk .brand-script,
  .site-header.is-shrunk .brand-tag {
    font-size: 0.9rem;
  }

  /* Mais respiro no topo das seções pra não colar no header sticky */
  .section {
    padding-top: 80px;
  }
  .section[id] {
    scroll-margin-top: 80px;
  }

  /* ---------- PACOTE B: HERO COM QUEBRA H1 MELHOR + RESPIRO TOP ---------- */
  #hero-title {
    font-size: clamp(3rem, 13vw, 4.6rem);
    line-height: 0.98;
  }
  .hero {
    padding-top: 96px; /* mais respiro entre header e eyebrow */
  }
  .hero-copy .eyebrow {
    margin-bottom: 2rem; /* mais espaço entre crumb e H1 */
  }

  /* ---------- PACOTE B: BOLHA WHATSAPP MENOR + CONTATO COM PADDING ---------- */
  .wa-float {
    bottom: 14px;
    right: 14px;
    padding: 11px;
  }
  .wa-float svg {
    width: 24px;
    height: 24px;
  }
  .section-contato {
    padding-bottom: calc(clamp(56px, 7vw, 96px) + 60px); /* +60px pra bolha não cobrir CTA */
  }

  /* ---------- PACOTE C: FOOTER GAP MENOR ---------- */
  .footer-grid {
    gap: 24px;
    padding-bottom: 32px;
  }
  .footer-col {
    gap: 12px;
  }
  .footer-bottom {
    padding-top: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  /* fontes pequenas do footer também ≥13px */
  .foot-label { font-size: 0.82rem; }
  .foot-credit { font-size: 0.82rem; }
  .pullquote-attr { font-size: 0.82rem; }
}

/* ============================================
   CAMADA PREMIUM — GRÃO / DROP CAP / HEADER SHRINK / REVEAL
   ============================================ */

/* ---------- GRÃO (aplicado como background do próprio body — não cria layer separado) ---------- */
body {
  background-color: var(--paper);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.07  0 0 0 0 0.16  0 0 0 0.22 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  background-repeat: repeat;
  background-attachment: fixed;
}
/* Header não tem background próprio nessa abordagem, mas precisa cobrir o grão do body abaixo */
.site-header {
  background: var(--paper);
}
/* Seções com fundo próprio (paper-2, ink) já cobrem o grão naturalmente */

/* ---------- COLOR GRADING uniforme nas fotos (mais perceptível) ---------- */
.hero-image img,
.service-image img,
.two-col .col-art img {
  filter: saturate(0.92) contrast(1.05) brightness(0.98);
}

/* ---------- DROP CAP no primeiro parágrafo de texto do Sobre ---------- */
.section-sobre .col-copy h2 + p::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 4.6em;
  float: left;
  line-height: 0.82;
  margin: 0.08em 0.1em 0 -0.04em;
  color: var(--rose-deep);
}

/* ---------- HEADER SHRINK on scroll ---------- */
.site-header {
  transition: padding .35s var(--t), background .35s var(--t), backdrop-filter .35s var(--t);
}
.site-header.is-shrunk .header-inner {
  padding-top: 12px;
  padding-bottom: 12px;
}
.site-header.is-shrunk .brand-display {
  font-size: 1.4rem;
}
.site-header.is-shrunk .brand-script {
  font-size: 0.78rem;
}
.site-header.is-shrunk .brand-name {
  font-size: 1.4rem;
}
.site-header.is-shrunk .brand-tag {
  font-size: 0.82rem;
}
.header-inner {
  transition: padding .35s var(--t);
}

/* ---------- IMAGE WRAPPER (sem mask animada) ---------- */
.img-mask {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
}
.img-mask img {
  transition: transform 1.2s var(--t-slow);
}

/* desabilita o filter saturate em fotos do hero card / editorial / placeholder */
.hero-card img,
.editorial-card img {
  filter: none;
}
