/* =========================================================
   L&D Decorações — Home
   Cores aproximadas da identidade visual original
   ========================================================= */
:root {
  --red: #C6000B;
  --red-dark: #A30009;
  --white: #FFFFFF;
  --ink: #232323;
  --gray-bg: #F3F3F3;
  --gray-line: #E2E2E2;
  --gray-text: #6B6B6B; /* ~#707070, ajustado p/ contraste AA */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --container: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --section: clamp(56px, 7vw, 96px);
  --radius: 3px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; text-decoration: none;
}
.skip-link:focus { top: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
section[id], footer[id] { scroll-margin-top: 80px; }

/* ---------- Tipografia utilitária ---------- */
.eyebrow {
  display: block;
  font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.12; letter-spacing: -.01em;
}
.lead { color: var(--gray-text); font-size: 17px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 26px;
  font: 600 15px/1.2 var(--sans); text-decoration: none;
  border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: background-color .2s, color .2s, border-color .2s;
}
.btn .arrow { font-size: 1.05em; line-height: 1; }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-dark); }
.btn--white { background: #fff; color: var(--red); }
.btn--white:hover { background: var(--gray-bg); }
.link-under {
  font-size: 15px; font-weight: 500; text-decoration: underline;
  text-underline-offset: 5px; text-decoration-thickness: 1px;
  transition: color .2s;
}
.link-under:hover { color: var(--red); }
.link-arrow {
  font-size: 15px; font-weight: 500; text-decoration: none;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
  white-space: nowrap; transition: color .2s;
}
.link-arrow:hover { color: var(--red); }

/* ---------- A. Faixa superior ---------- */
.topbar { background: var(--ink); color: #fff; font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 36px; }
.topbar a { text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.topbar a:hover { text-decoration: underline; }
.topbar svg { width: 14px; height: 14px; }

/* ---------- B. Cabeçalho ---------- */
.header {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50;
  background: #fff; border-bottom: 1px solid var(--gray-line);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; }
.logo { display: block; flex-shrink: 0; }
.logo img { width: 140px; height: auto; }
.nav ul { display: flex; gap: clamp(20px, 2.6vw, 40px); }
.nav a {
  position: relative; display: inline-block; padding: 8px 0;
  font-size: 15px; font-weight: 500; text-decoration: none; color: var(--ink);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px;
  background: var(--red); transform: scaleX(0); transition: transform .2s;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.header__cta { padding: 10px 20px; min-height: 44px; font-size: 14px; }
.menu-toggle {
  display: none; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 1px solid var(--gray-line); border-radius: var(--radius);
  background: #fff; cursor: pointer; color: var(--ink);
}
.menu-toggle svg { width: 22px; height: 22px; }

/* ---------- C. Hero ---------- */
.hero { display: grid; grid-template-columns: minmax(0, 42fr) minmax(0, 58fr); min-height: 600px; }
.hero__text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px clamp(40px, 3.4vw, 56px) 40px max(var(--gutter), calc((100vw - var(--container)) / 2));
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(34px, calc(3.2vw + 6px), 47px);
  line-height: 1.06; letter-spacing: -.015em; margin-bottom: 24px;
}
.hero__desc { font-size: 18px; color: var(--gray-text); max-width: 380px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; }
.hero__note { margin-top: auto; padding-top: 56px; font-size: 13px; color: var(--gray-text); }
.hero__media { position: relative; }
.hero__photo { width: 100%; height: 100%; object-fit: cover; }
.hero__detail {
  position: absolute; left: -44px; bottom: 44px;
  width: clamp(150px, 15vw, 220px); height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  border: 6px solid #fff; box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

/* ---------- D. Diferenciais ---------- */
.features { border-top: 1px solid var(--gray-line); border-bottom: 1px solid var(--gray-line); }
.features ul { display: grid; grid-template-columns: repeat(3, 1fr); }
.features li {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 26px 16px; font-size: 15px; font-weight: 500;
}
.features li + li { border-left: 1px solid var(--gray-line); }
.icon { width: 36px; height: 36px; flex-shrink: 0; fill: none; stroke: #8A8A8A; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.icon .accent { stroke: var(--red); }

/* ---------- E. Produtos ---------- */
.products { padding: var(--section) 0 clamp(40px, 5vw, 64px); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
.card { display: block; text-decoration: none; color: var(--ink); background: #fff; }
.card__img { overflow: hidden; aspect-ratio: 4 / 4.3; background: var(--gray-bg); }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__img img { transform: scale(1.03); }
.card__bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 2px 6px; }
.card__bar h3 { font-family: var(--serif); font-size: 22px; }
.card__bar .arrow { color: var(--red); font-size: 20px; transition: transform .2s; }
.card:hover .card__bar .arrow { transform: translate(2px, -2px); }
.more {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--gray-line);
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px 14px;
  font-size: 15px;
}
.more a { text-decoration: none; padding: 6px 2px; }
.more a:hover { color: var(--red); text-decoration: underline; text-underline-offset: 4px; }
.more .dot { color: var(--red); }

/* ---------- F. Automação ---------- */
.automation { background: var(--gray-bg); padding: clamp(40px, 5vw, 64px) 0; }
.split { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.split__img img { width: 100%; aspect-ratio: 16 / 10.5; object-fit: cover; }
.automation .lead { margin: 18px 0 30px; max-width: 420px; }

/* ---------- G. Serviços ---------- */
.services { padding: var(--section) 0; }
.services .split { grid-template-columns: 1fr 1fr; align-items: start; }
.services .lead { margin: 18px 0 32px; }
.services__img img { width: 100%; aspect-ratio: 16 / 9.5; object-fit: cover; }
.service-list li {
  display: grid; grid-template-columns: 64px 1fr; gap: 12px;
  padding: 28px 0; border-bottom: 1px solid var(--gray-line);
}
.service-list li:first-child { border-top: 1px solid var(--gray-line); }
.service-list .num { font-family: var(--serif); font-size: 32px; line-height: 1; color: var(--red); }
.service-list h3 { font-family: var(--serif); font-size: 23px; line-height: 1.2; margin-bottom: 6px; }
.service-list p { color: var(--gray-text); }

/* ---------- H. Showroom ---------- */
.showroom { display: grid; grid-template-columns: 58fr 42fr; background: var(--gray-bg); }
.showroom__img img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.showroom__info {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 5vw, 72px) max(var(--gutter), calc((100vw - var(--container)) / 2)) clamp(40px, 5vw, 72px) clamp(32px, 5vw, 72px);
}
.info-list { margin: 26px 0 32px; display: grid; gap: 14px; }
.info-list li { display: flex; gap: 12px; align-items: flex-start; }
.info-list svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; fill: none; stroke: var(--red); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.info-list a { text-decoration: none; }
.info-list a:hover { text-decoration: underline; text-underline-offset: 4px; }
.showroom .btn { align-self: flex-start; }

/* ---------- I. CTA ---------- */
.cta { background: var(--red); color: #fff; padding: clamp(36px, 4.5vw, 56px) 0; }
.cta .container { display: flex; align-items: center; justify-content: center; gap: 24px 48px; flex-wrap: wrap; }
.cta h2 { font-family: var(--serif); font-size: clamp(28px, 3.2vw, 42px); line-height: 1.15; }

/* ---------- J. Rodapé ---------- */
.footer { background: var(--ink); color: #E8E8E8; padding: 56px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer__logo { display: inline-block; background: #fff; padding: 14px 22px; border-radius: var(--radius); }
.footer__logo img { width: 150px; height: auto; }
.footer h2 { font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer ul { display: grid; gap: 8px; }
.footer a { text-decoration: none; color: #E8E8E8; display: inline-flex; align-items: center; gap: 10px; padding: 3px 0; }
.footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.14); padding: 20px 0; text-align: center; font-size: 13px; color: #BDBDBD; }

/* =========================================================
   Responsivo
   ========================================================= */
@media (max-width: 1080px) {
  .hero { min-height: 520px; }
  .hero__detail { left: -32px; bottom: 32px; }
}

@media (max-width: 960px) {
  .menu-toggle { display: inline-flex; }
  .header__cta { display: none; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--gray-line);
    box-shadow: 0 10px 20px rgba(0,0,0,.06);
    display: none;
  }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; gap: 0; padding: 8px var(--gutter) 20px; }
  .nav li + li { border-top: 1px solid var(--gray-line); }
  .nav a { display: block; padding: 14px 0; font-size: 16px; }
  .nav a::after { display: none; }
  .nav .nav__cta { display: flex; margin-top: 12px; border-top: 0; }
  .nav .nav__cta a { display: inline-flex; width: 100%; color: #fff; padding: 12px 20px; font-weight: 600; font-size: 15px; }

  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero__text { padding: 48px var(--gutter) 40px; }
  .hero__note { padding-top: 28px; }
  .hero__media { aspect-ratio: 4 / 3; }
  .hero__detail { left: var(--gutter); bottom: -28px; width: 150px; }
  .features { margin-top: 44px; }
  .hero + .features { border-top: 0; }

  .split, .services .split { grid-template-columns: 1fr; }
  .showroom { grid-template-columns: 1fr; }
  .showroom__img img { min-height: 0; aspect-ratio: 16 / 10; }
  .showroom__info { padding: 44px var(--gutter); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (min-width: 961px) { .nav .nav__cta { display: none; } }

@media (max-width: 720px) {
  .logo img { width: 118px; }
  .topbar .container { font-size: 12px; }
  .features ul { grid-template-columns: 1fr; }
  .features li { justify-content: flex-start; padding: 16px 0; }
  .features li + li { border-left: 0; border-top: 1px solid var(--gray-line); }
  .features .container { padding: 0 var(--gutter); }
  .section-head { flex-direction: column; align-items: flex-start; }
  .cards { grid-template-columns: 1fr; gap: 28px; }
  .card__img { aspect-ratio: 4 / 3.4; }
  .service-list li { grid-template-columns: 52px 1fr; padding: 22px 0; }
  .cta .container { flex-direction: column; align-items: flex-start; }
  .cta .btn { width: 100%; }
  .hero__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .topbar .container { flex-wrap: wrap; justify-content: center; gap: 0 12px; padding-top: 6px; padding-bottom: 6px; }
  .hero__title br.lg { display: none; }
}

/* =========================================================
   Páginas internas
   ========================================================= */
.page-hero { background: var(--gray-bg); }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(28px, 5vw, 72px); align-items: center; padding-block: clamp(36px, 5vw, 72px); }
.page-hero__grid--solo { grid-template-columns: minmax(0, 780px); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; font-size: 13px; color: var(--gray-text); margin-bottom: 18px; }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; color: #A9A9A9; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.page-title { font-family: var(--serif); font-size: clamp(32px, 3.6vw, 50px); line-height: 1.1; letter-spacing: -.01em; text-wrap: balance; margin-bottom: 18px; }
.page-hero .lead { max-width: 560px; margin-bottom: 28px; }
.page-hero__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.page-body { padding-block: clamp(48px, 6vw, 88px); }
.page-body__grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(32px, 5vw, 72px); align-items: start; }
.prose { max-width: 720px; }
.prose > * + * { margin-top: 18px; }
.prose h2 { font-family: var(--serif); font-size: clamp(26px, 2.4vw, 32px); line-height: 1.2; margin-top: 44px; text-wrap: balance; }
.prose h3 { font-family: var(--serif); font-size: 23px; line-height: 1.25; margin-top: 32px; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p, .prose li { color: #3A3A3A; font-size: 17px; line-height: 1.75; }
.prose ul { display: grid; gap: 8px; padding-left: 0; }
.prose ul li { position: relative; padding-left: 22px; }
.prose ul li::before { content: ""; position: absolute; left: 2px; top: .78em; width: 7px; height: 7px; background: var(--red); }
.prose figure { margin: 32px 0; }
.prose figure img { width: 100%; max-height: 520px; object-fit: cover; }
.prose .btn { margin-top: 8px; }
.prose-links { display: flex; flex-wrap: wrap; gap: 12px; }

.aside-card { position: sticky; top: calc(env(safe-area-inset-top, 0px) + 100px); border: 1px solid var(--gray-line); padding: 28px; background: #fff; }
.aside-card h2 { font-family: var(--serif); font-size: 24px; line-height: 1.2; }
.aside-card p { color: var(--gray-text); font-size: 15px; margin-bottom: 20px; }
.aside-card .btn { width: 100%; }
.aside-card .info-list { margin: 22px 0 0; padding-top: 20px; border-top: 1px solid var(--gray-line); font-size: 14px; }

.gallery { padding-block: 0 clamp(48px, 6vw, 88px); }
.gallery h2 { margin-bottom: 28px; }
.gallery__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.gallery__grid button { all: unset; cursor: zoom-in; display: block; overflow: hidden; background: var(--gray-bg); aspect-ratio: 4 / 3; }
.gallery__grid button:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.gallery__grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__grid button:hover img { transform: scale(1.04); }

.lightbox { border: 0; padding: 0; background: transparent; max-width: min(1100px, 94vw); max-height: 92vh; }
.lightbox::backdrop { background: rgba(20, 20, 20, .88); }
.lightbox img { max-width: 100%; max-height: 86vh; width: auto; margin: 0 auto; }
.lightbox__close { position: fixed; top: 16px; right: 16px; width: 48px; height: 48px; border: 0; border-radius: var(--radius); background: #fff; color: var(--ink); font-size: 26px; line-height: 1; cursor: pointer; }

.related { background: var(--gray-bg); padding-block: clamp(48px, 6vw, 88px); }
.related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
.related .card { background: transparent; }
.related .card__img { aspect-ratio: 4 / 3; }
.related .card__bar h3 { font-size: 19px; }

.pill-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.pill-links a { font-size: 14px; text-decoration: none; padding: 8px 14px; border: 1px solid var(--gray-line); background: #fff; border-radius: 999px; transition: border-color .2s, color .2s; }
.pill-links a:hover { border-color: var(--red); color: var(--red); }

.post-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
.post-card .card__img { aspect-ratio: 16 / 10; }
.post-card p { color: var(--gray-text); font-size: 15px; margin-top: 4px; }

.catalog-group + .catalog-group { margin-top: clamp(40px, 5vw, 64px); }
.catalog-group > h2 { margin-bottom: 24px; }
.catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 24px); }
.catalog-grid .card__img { aspect-ratio: 4 / 3; }
.catalog-grid .card__bar h3 { font-size: 18px; }

@media (max-width: 960px) {
  .page-hero__grid, .page-body__grid { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .related__grid, .post-list { grid-template-columns: 1fr 1fr; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .related__grid, .post-list { grid-template-columns: 1fr; }
  .page-hero .btn { width: 100%; }
  .gallery__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .prose p, .prose li { font-size: 16px; }
}

/* Utilitários das páginas internas */
.caps { text-transform: lowercase; display: inline-block; }
.caps::first-letter { text-transform: uppercase; }
.caps-p { text-transform: lowercase; }
.caps-p::first-letter { text-transform: uppercase; }
.h3 { font-family: var(--serif); font-size: 20px; font-weight: 400; line-height: 1.25; margin: 0; }
.btn--outline { background: #fff; color: var(--red); border-color: var(--red); }
.btn--outline:hover { background: var(--red); color: #fff; }
.prose h2.callout, .prose h3.callout {
  font-family: var(--sans); font-size: 17px; font-weight: 600; line-height: 1.6;
  background: var(--gray-bg); border-left: 3px solid var(--red); padding: 18px 22px; margin-top: 36px;
}
.keywords { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--gray-line); }
.keywords h2, .keywords h3 { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gray-text); margin: 0 0 8px; }
.prose .keywords p { font-size: 13px; line-height: 1.7; color: var(--gray-text); }
.mission { margin-top: 40px; background: var(--gray-bg); padding: 28px 30px; border-left: 3px solid var(--red); }
.mission h2 { margin: 0 0 10px; }
.signature { font-family: var(--serif); font-size: 20px !important; font-style: italic; margin-top: 32px !important; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); }
.contact-card { border: 1px solid var(--gray-line); padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.contact-card h2 { font-family: var(--serif); font-size: 28px; }
.contact-card > p { color: var(--gray-text); }
.contact-card .info-list { margin: 8px 0 0; }
.hours { border-collapse: collapse; width: 100%; font-variant-numeric: tabular-nums; }
.hours th, .hours td { text-align: left; padding: 10px 0; border-bottom: 1px solid var(--gray-line); font-weight: 400; }
.hours th { font-weight: 600; width: 40%; }
.contact-card .note { font-size: 13px; }
.clients { margin: 0; border: 1px solid var(--gray-line); padding: clamp(16px, 3vw, 40px); background: #fff; }
.clients img { margin: 0 auto; }
.post-date { color: var(--gray-text); font-size: 14px; }
.post-body { padding-block: clamp(32px, 4vw, 56px) clamp(48px, 6vw, 88px); }
.post-cover { margin: 0 auto 40px; max-width: 1000px; }
.post-cover img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.prose--post { margin: 0 auto; }
.post-card .h3 { font-size: 20px; }
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card .btn { width: 100%; }
}
@media (max-width: 600px) { .page-hero .lead { font-size: 16px; } }

/* ---------- Rodapé vermelho compacto (modelo D) ---------- */
.footer-red { background: var(--red); color: #fff; border-top: 1px solid rgba(255,255,255,.28); }
.footer-red a { color: #fff; text-decoration: none; }
.footer-red a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-red__main .container { display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; padding-block: 34px; }
.footer-red__logo { display: inline-block; background: #fff; padding: 10px 14px; border-radius: var(--radius); }
.footer-red__logo img { width: 130px; height: auto; }
.footer-red nav ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px; font-weight: 500; }
.footer-red nav a { display: inline-block; padding: 4px 0; }
.footer-red__contact { display: grid; gap: 6px; font-size: 14px; justify-items: end; }
.footer-red__contact a { display: inline-flex; align-items: center; gap: 8px; padding: 3px 0; }
.footer-red svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.footer-red__bottom { border-top: 1px solid rgba(255,255,255,.28); }
.footer-red__bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 16px; padding-block: 14px; font-size: 13px; color: #FFE3E4; }
.footer-red__bottom a { color: #FFE3E4; }
.cta + .footer-red, .cta { border-bottom: 0; }
@media (max-width: 860px) {
  .footer-red__main .container { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 22px; }
  .footer-red__contact { justify-items: center; }
  .footer-red__bottom .container { justify-content: center; text-align: center; }
}

/* =========================================================
   Topo flutuante (modelo G) — barra branca sobre a foto
   ========================================================= */
:root { --bar-h: 72px; --bar-gap: 18px; }
.header--float {
  position: sticky; top: calc(env(safe-area-inset-top, 0px) + 12px); z-index: 50;
  width: calc(100% - 2 * var(--gutter)); max-width: 1320px;
  margin: var(--bar-gap) auto 0;
  background: #fff; border: 0; border-radius: 4px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}
.header--float .container { max-width: none; min-height: var(--bar-h); padding: 0 12px 0 22px; gap: 20px; }
.header--float .logo img { width: 124px; }
.header--float ~ main { margin-top: calc(-1 * (var(--bar-h) + var(--bar-gap))); }
.header__wa {
  display: none; align-items: center; justify-content: center; width: 46px; height: 46px;
  background: var(--red); color: #fff; border-radius: var(--radius);
}
.header__wa svg { width: 22px; height: 22px; }
.header__wa:hover { background: var(--red-dark); }
/* espaço para a barra não cobrir o conteúdo */
.hero__text { padding-top: calc(64px + var(--bar-h) + var(--bar-gap)); }
.page-hero { padding-top: calc(var(--bar-h) + var(--bar-gap)); }
section[id], footer[id] { scroll-margin-top: calc(var(--bar-h) + 30px); }
@media (max-width: 960px) {
  :root { --bar-h: 62px; --bar-gap: 12px; }
  .header--float .container { padding: 0 8px 0 14px; gap: 8px; }
  .header--float .logo img { width: 108px; }
  .header--float .logo { margin-right: auto; }
  .header__wa { display: inline-flex; }
  .header--float .nav { top: calc(100% + 8px); border-radius: 4px; border: 0; box-shadow: 0 16px 34px rgba(0, 0, 0, .18); overflow: hidden; }
  .hero__text { padding-top: calc(40px + var(--bar-h) + var(--bar-gap)); }
}

/* =========================================================
   Topo da Home com foto em tela cheia (opções 1 a 4)
   ========================================================= */
.hero-full { position: relative; display: flex; color: #fff; overflow: hidden; }
.hero-full__photo { position: absolute; inset: 0; margin: 0; }
.hero-full__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-full__photo::after { content: ""; position: absolute; inset: 0; }
.hero-full__content { position: relative; z-index: 2; }
.hero-full .eyebrow { color: #FFB3B7; }
.hero-full__title { font-family: var(--serif); font-weight: 400; line-height: 1.06; letter-spacing: -.015em; font-size: clamp(38px, 5vw, 68px); text-wrap: balance; }
.hero-full__desc { font-size: 19px; color: #F2EEEA; max-width: 470px; margin: 20px 0 30px; }
.hero-full .hero__actions .link-under { color: #fff; }
.hero-full__note { margin-top: 40px; font-size: 13px; color: #D9D2CB; }
.btn--line { border-color: rgba(255, 255, 255, .85); color: #fff; background: transparent; }
.btn--line:hover { background: rgba(255, 255, 255, .12); }

/* Opção 1 — texto à esquerda */
.hero-full--1 { min-height: 680px; align-items: flex-end; }
.hero-full--1 .hero-full__photo::after { background: linear-gradient(90deg, rgba(18,14,10,.78) 0%, rgba(18,14,10,.45) 42%, rgba(18,14,10,0) 72%), linear-gradient(0deg, rgba(18,14,10,.35), rgba(18,14,10,0) 40%); }
.hero-full--1 .hero-full__content { padding-block: calc(var(--bar-h) + var(--bar-gap) + 80px) 64px; }
.hero-full--1 .hero-full__title { max-width: 640px; }

/* Opção 2 — centralizado */
.hero-full--2 { min-height: 680px; align-items: center; justify-content: center; text-align: center; }
.hero-full--2 .hero-full__photo::after { background: rgba(20, 15, 11, .48); }
.hero-full--2 .hero-full__content { padding-block: calc(var(--bar-h) + var(--bar-gap) + 70px) 100px; max-width: 860px; }
.hero-full--2 .eyebrow { color: #fff; }
.hero-full--2 .hero-full__desc { margin-inline: auto; }
.hero-full--2 .hero__actions { justify-content: center; }
.hero-full__scroll { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: #fff; text-decoration: none; text-align: center; opacity: .9; }

/* Opção 3 — cartão branco */
.hero-full--3 { min-height: 700px; align-items: flex-end; color: var(--ink); }
.hero-full--3 .hero-full__card { position: relative; z-index: 2; background: #fff; max-width: 540px; padding: clamp(28px, 3.5vw, 48px); margin-bottom: 56px; border-top: 4px solid var(--red); box-shadow: 0 20px 50px rgba(0, 0, 0, .18); }
.hero-full--3 .eyebrow { color: var(--red); }
.hero-full--3 .hero-full__title { font-size: clamp(34px, 4vw, 54px); }
.hero-full--3 .hero-full__desc { color: var(--gray-text); font-size: 17px; margin: 16px 0 26px; }
.hero-full--3 .hero__actions .link-under { color: var(--ink); }
.hero-full--3 .hero-full__note { color: var(--gray-text); margin-top: 26px; padding-top: 16px; border-top: 1px solid var(--gray-line); }

/* Opção 4 — diferenciais na base */
.hero-full--4 { min-height: 740px; flex-direction: column; justify-content: flex-end; }
.hero-full--4 .hero-full__photo::after { background: linear-gradient(0deg, rgba(18,14,10,.82) 0%, rgba(18,14,10,.5) 38%, rgba(18,14,10,.05) 70%); }
.hero-full--4 .hero-full__content { padding-block: calc(var(--bar-h) + var(--bar-gap) + 80px) 40px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: end; }
.hero-full--4 .hero-full__desc { font-size: 18px; margin: 0 0 22px; }
.hero-full__strip { position: relative; z-index: 2; background: rgba(255, 255, 255, .96); color: var(--ink); }
.hero-full__strip ul { display: grid; grid-template-columns: repeat(3, 1fr); }
.hero-full__strip li { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 22px 12px; font-size: 15px; font-weight: 500; }
.hero-full__strip li + li { border-left: 1px solid var(--gray-line); }

@media (max-width: 700px) {
  .hero-full__desc { font-size: 17px; }
  .hero-full .btn { width: 100%; }
  .hero-full--1, .hero-full--2 { min-height: 640px; }
  .hero-full--1 .hero-full__photo::after { background: linear-gradient(0deg, rgba(18,14,10,.86) 0%, rgba(18,14,10,.55) 50%, rgba(18,14,10,.12) 82%); }
  .hero-full--1 .hero-full__content { padding-block: calc(var(--bar-h) + var(--bar-gap) + 60px) 36px; }
  .hero-full--2 .hero-full__content { padding-block: calc(var(--bar-h) + var(--bar-gap) + 50px) 90px; }
  .hero-full--3 { display: block; min-height: 0; }
  .hero-full--3 .hero-full__photo { position: relative; height: 420px; }
  .hero-full--3 .container { padding: 0; }
  .hero-full--3 .hero-full__card { margin: -70px 16px 0; max-width: none; }
  .hero-full--4 { min-height: 0; }
  .hero-full--4 .hero-full__photo::after { background: linear-gradient(0deg, rgba(18,14,10,.88) 0%, rgba(18,14,10,.6) 55%, rgba(18,14,10,.2) 85%); }
  .hero-full--4 .hero-full__content { grid-template-columns: 1fr; gap: 18px; padding-block: calc(var(--bar-h) + var(--bar-gap) + 60px) 30px; }
  .hero-full__strip ul { grid-template-columns: 1fr; }
  .hero-full__strip li { justify-content: flex-start; padding: 14px 16px; }
  .hero-full__strip li + li { border-left: 0; border-top: 1px solid var(--gray-line); }
}
.hero-full + .features { margin-top: 0; border-top: 0; }
@media (max-width: 700px) { .hero-full--3 .hero-full__photo { height: 320px; } }

/* =========================================================
   Banner da Home com 3 fotos trocando (animações)
   ========================================================= */
.hero-slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #2a221c; }
.hero-slides::after { content: ""; position: absolute; inset: 0; z-index: 4; background: rgba(20, 15, 11, .48); pointer-events: none; }
.hero-slide { position: absolute; inset: 0; margin: 0; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slides__ctrl { position: absolute; z-index: 6; left: 50%; bottom: 22px; transform: translateX(-50%); display: flex; align-items: center; gap: 10px; }
.hero-slides__dot { width: 34px; height: 24px; padding: 0; border: 0; background: transparent; cursor: pointer; position: relative; }
.hero-slides__dot::before { content: ""; position: absolute; left: 0; right: 0; top: 11px; height: 3px; background: rgba(255, 255, 255, .45); border-radius: 2px; }
.hero-slides__dot[aria-current="true"]::before { background: #fff; }
.hero-slides__pause { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .6); background: rgba(0, 0, 0, .15); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; margin-left: 6px; }
.hero-slides__pause svg { width: 12px; height: 12px; fill: currentColor; }

/* 1 — Esmaecer */
[data-effect="fade"] .hero-slide { opacity: 0; transition: opacity 1.4s ease; }
[data-effect="fade"] .hero-slide.is-active { opacity: 1; z-index: 2; }

/* 2 — Aproximação lenta (Ken Burns) */
[data-effect="zoom"] .hero-slide { opacity: 0; transition: opacity 1.6s ease; }
[data-effect="zoom"] .hero-slide.is-active { opacity: 1; z-index: 2; }
[data-effect="zoom"] .hero-slide.is-prev { opacity: 0; z-index: 1; }
[data-effect="zoom"] .hero-slide img { transform: scale(1.02); }
[data-effect="zoom"] .hero-slide.is-active img,
[data-effect="zoom"] .hero-slide.is-prev img { animation: heroZoom 8.5s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1.14); } }

/* 3 — Deslizar para o lado */
[data-effect="slide"] .hero-slide { transform: translateX(100%); }
[data-effect="slide"] .hero-slide.is-active { transform: translateX(0); transition: transform 1.1s cubic-bezier(.65, 0, .35, 1); z-index: 2; }
[data-effect="slide"] .hero-slide.is-prev { transform: translateX(-100%); transition: transform 1.1s cubic-bezier(.65, 0, .35, 1); z-index: 1; }

/* 4 — Abrir como cortina (do centro para os lados) */
[data-effect="curtain"] .hero-slide { visibility: hidden; }
[data-effect="curtain"] .hero-slide.is-prev { visibility: visible; z-index: 1; }
[data-effect="curtain"] .hero-slide.is-active { visibility: visible; z-index: 2; animation: heroCurtain 1.5s cubic-bezier(.7, 0, .3, 1) both; }
[data-effect="curtain"] .hero-slide.is-first { animation: none; }
@keyframes heroCurtain { from { clip-path: inset(0 50% 0 50%); } to { clip-path: inset(0 0 0 0); } }

@media (prefers-reduced-motion: reduce) {
  .hero-slide, .hero-slide img { transition: none !important; animation: none !important; }
}

/* Home: título e subtítulo em uma linha só no computador */
@media (min-width: 961px) {
  .hero-full--2 .hero-full__content { max-width: none; }
  .hero-full--2 .hero-full__title { white-space: nowrap; font-size: min(64px, calc((100vw - 2 * var(--gutter)) / 21.5)); text-wrap: nowrap; }
  .hero-full--2 .hero-full__title br { display: none; }
  .hero-full--2 .hero-full__desc { max-width: none; white-space: nowrap; }
}
.hero-full__title[data-slide-title] { transition: opacity .45s ease, transform .45s ease; }
.hero-full__title.is-swapping { opacity: 0; transform: translateY(8px); }
@media (prefers-reduced-motion: reduce) { .hero-full__title[data-slide-title] { transition: none; } }

/* =========================================================
   Bloco "Nossas soluções" — opções de layout
   ========================================================= */
.pv-head { text-align: center; margin-bottom: 40px; }
.pv-head .title { margin-bottom: 12px; }
.pv-head .link-arrow { display: inline-block; margin-top: 6px; }
.pv-head .lead { max-width: 560px; margin: 0 auto 10px; }

/* Opção 1 — nome sobre a foto */
.prod-o1 .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 24px); }
.prod-o1 .tile { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 5; color: #fff; text-decoration: none; background: var(--gray-bg); }
.prod-o1 .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.prod-o1 .tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(18,14,10,.72) 0%, rgba(18,14,10,.1) 45%, rgba(18,14,10,0) 70%); }
.prod-o1 .tile:hover img { transform: scale(1.05); }
.prod-o1 .tile__txt { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 26px 26px 24px; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.prod-o1 .tile h3 { font-family: var(--serif); font-size: clamp(22px, 2.1vw, 30px); line-height: 1.15; }
.prod-o1 .tile__go { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--red); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; transition: transform .2s; }
.prod-o1 .tile:hover .tile__go { transform: translate(2px, -2px); }

/* Opção 2 — destaque grande + dois */
.prod-o2 .grid { display: grid; grid-template-columns: 1.25fr 1fr; grid-template-rows: 1fr 1fr; gap: clamp(14px, 1.6vw, 24px); height: clamp(560px, 52vw, 720px); }
.prod-o2 .tile { position: relative; overflow: hidden; display: block; text-decoration: none; color: var(--ink); background: var(--gray-bg); }
.prod-o2 .tile--big { grid-row: 1 / 3; }
.prod-o2 .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.prod-o2 .tile:hover img { transform: scale(1.04); }
.prod-o2 .tile__box { position: absolute; left: 20px; bottom: 20px; background: #fff; padding: 16px 20px; display: flex; align-items: center; gap: 18px; box-shadow: 0 10px 24px rgba(0,0,0,.12); border-left: 3px solid var(--red); }
.prod-o2 .tile__box h3 { font-family: var(--serif); font-size: clamp(20px, 1.8vw, 26px); }
.prod-o2 .tile__box .arrow { color: var(--red); font-size: 18px; }

/* Opção 3 — quatro categorias com descrição */
.prod-o3 { background: var(--gray-bg); }
.prod-o3 .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 24px); }
.prod-o3 .item { display: flex; flex-direction: column; background: #fff; text-decoration: none; color: var(--ink); transition: box-shadow .25s, transform .25s; }
.prod-o3 .item:hover { box-shadow: 0 14px 30px rgba(0,0,0,.08); transform: translateY(-3px); }
.prod-o3 .item__img { aspect-ratio: 4 / 4.6; overflow: hidden; }
.prod-o3 .item__img img { width: 100%; height: 100%; object-fit: cover; }
.prod-o3 .item__body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prod-o3 .item h3 { font-family: var(--serif); font-size: 22px; line-height: 1.2; }
.prod-o3 .item p { color: var(--gray-text); font-size: 15px; line-height: 1.5; }
.prod-o3 .item__more { margin-top: auto; padding-top: 8px; color: var(--red); font-weight: 600; font-size: 14px; }

/* Opção 4 — lista com foto que troca */
.prod-o4 .wrap { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.prod-o4 .list { border-top: 1px solid var(--gray-line); }
.prod-o4 .list a { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px; padding: 22px 4px; border-bottom: 1px solid var(--gray-line); text-decoration: none; color: #9A9A9A; transition: color .25s, padding-left .25s; }
.prod-o4 .list a h3 { font-family: var(--serif); font-size: clamp(26px, 2.6vw, 38px); line-height: 1.15; }
.prod-o4 .list a p { grid-column: 1; font-size: 15px; color: var(--gray-text); max-height: 0; overflow: hidden; opacity: 0; transition: max-height .35s ease, opacity .35s ease; }
.prod-o4 .list a .arrow { color: var(--red); font-size: 22px; opacity: 0; transition: opacity .25s; grid-row: 1; grid-column: 2; }
.prod-o4 .list a.is-on, .prod-o4 .list a:hover, .prod-o4 .list a:focus-visible { color: var(--ink); padding-left: 12px; }
.prod-o4 .list a.is-on p { max-height: 60px; opacity: 1; margin-top: 6px; }
.prod-o4 .list a.is-on .arrow { opacity: 1; }
.prod-o4 .stage { position: relative; aspect-ratio: 4 / 4.4; overflow: hidden; background: var(--gray-bg); }
.prod-o4 .stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s ease, transform 1.2s ease; transform: scale(1.04); }
.prod-o4 .stage img.is-on { opacity: 1; transform: scale(1); }
.prod-o4 .mob-img { display: none; }

@media (max-width: 960px) {
  .prod-o1 .grid { grid-template-columns: 1fr 1fr; }
  .prod-o1 .tile:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
  .prod-o2 .grid { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .prod-o2 .tile--big { grid-row: auto; grid-column: 1 / -1; aspect-ratio: 16 / 11; }
  .prod-o2 .tile { aspect-ratio: 4 / 5; }
  .prod-o3 .grid { grid-template-columns: 1fr 1fr; }
  .prod-o4 .wrap { grid-template-columns: 1fr; }
  .prod-o4 .stage { display: none; }
  .prod-o4 .mob-img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; margin: 6px 0 4px; }
  .prod-o4 .list a p { max-height: none; opacity: 1; margin-top: 6px; }
  .prod-o4 .list a { color: var(--ink); }
  .prod-o4 .list a .arrow { opacity: 1; }
}
@media (max-width: 600px) {
  .prod-o1 .grid, .prod-o2 .grid, .prod-o3 .grid { grid-template-columns: 1fr; }
  .prod-o1 .tile, .prod-o1 .tile:first-child { aspect-ratio: 4 / 3.6; }
  .prod-o2 .tile, .prod-o2 .tile--big { aspect-ratio: 4 / 3.4; }
  .prod-o2 .tile__box { left: 12px; right: 12px; bottom: 12px; justify-content: space-between; }
}
.prod-o4 .list a .mob-img { grid-column: 1 / -1; }

/* =========================================================
   "Explore também" (outras categorias) — opções
   ========================================================= */
.more-x { margin-top: clamp(36px, 4vw, 56px); }
.more-x__label { display: block; text-align: center; font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gray-text); margin-bottom: 18px; }
.more-x ul { list-style: none; margin: 0; padding: 0; }
.more-x a { text-decoration: none; color: var(--ink); }

/* 1 — pílulas */
.more-x--1 ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.more-x--1 a { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border: 1px solid #D5D2CE; border-radius: 999px; font-size: 15px; font-weight: 500; transition: background-color .2s, border-color .2s, color .2s; }
.more-x--1 a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.more-x--1 a .arrow { color: var(--red); transition: color .2s; }
.more-x--1 a:hover .arrow { color: #fff; }

/* 2 — ícones */
.more-x--2 ul { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--gray-bg); }
.more-x--2 li + li { border-left: 1px solid var(--gray-line); }
.more-x--2 a { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 28px 12px; text-align: center; font-weight: 500; transition: background-color .2s; }
.more-x--2 a:hover { background: #ECEAE7; }
.more-x--2 svg { width: 40px; height: 40px; fill: none; stroke: #8A8A8A; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.more-x--2 svg .r { stroke: var(--red); }
.more-x--2 small { font-size: 13px; color: var(--red); font-weight: 600; }

/* 3 — botões com seta */
.more-x--3 ul { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.more-x--3 a { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 72px; padding: 16px 20px; border: 1px solid var(--gray-line); border-left: 3px solid var(--red); font-family: var(--serif); font-size: 20px; transition: background-color .2s, box-shadow .2s; }
.more-x--3 a:hover { background: var(--gray-bg); box-shadow: 0 8px 20px rgba(0,0,0,.06); }
.more-x--3 a .arrow { color: var(--red); font-family: var(--sans); font-size: 18px; }

/* 4 — mini fotos */
.more-x--4 ul { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.more-x--4 a { display: flex; align-items: center; gap: 14px; padding: 10px; border: 1px solid var(--gray-line); background: #fff; transition: box-shadow .2s, border-color .2s; }
.more-x--4 a:hover { border-color: #CFCBC6; box-shadow: 0 10px 24px rgba(0,0,0,.07); }
.more-x--4 img { width: 76px; height: 76px; object-fit: cover; flex-shrink: 0; }
.more-x--4 span.t { font-family: var(--serif); font-size: 19px; line-height: 1.2; flex: 1; }
.more-x--4 .arrow { color: var(--red); padding-right: 6px; }

@media (max-width: 900px) {
  .more-x--2 ul, .more-x--3 ul, .more-x--4 ul { grid-template-columns: 1fr 1fr; }
  .more-x--2 li:nth-child(3) { border-left: 0; }
  .more-x--2 li:nth-child(n+3) { border-top: 1px solid var(--gray-line); }
}
@media (max-width: 480px) {
  .more-x--3 ul, .more-x--4 ul { grid-template-columns: 1fr; }
}

/* =========================================================
   Automação residencial — opções de layout
   ========================================================= */
.auto-x { position: relative; }
.auto-x .eyebrow { margin-bottom: 14px; }
.auto-x .title { margin-bottom: 18px; }
.auto-x .lead { margin-bottom: 30px; max-width: 440px; }
.auto-x picture img, .auto-x > img { display: block; }
.auto-chips { display: flex; flex-wrap: wrap; gap: 8px 10px; margin: -8px 0 28px; }
.auto-chips li { list-style: none; font-size: 13px; font-weight: 600; padding: 7px 12px; border-radius: 999px; background: var(--gray-bg); color: var(--ink); }

/* 1 — foto em tela cheia */
.auto-o1 { min-height: 600px; display: flex; align-items: center; color: #fff; overflow: hidden; }
.auto-o1 .bg { position: absolute; inset: 0; }
.auto-o1 .bg img { width: 100%; height: 100%; object-fit: cover; }
.auto-o1 .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,14,10,.8) 0%, rgba(18,14,10,.5) 40%, rgba(18,14,10,0) 70%); }
.auto-o1 .container { position: relative; z-index: 2; padding-block: 80px; }
.auto-o1 .eyebrow { color: #FFB3B7; }
.auto-o1 .lead { color: #F2EEEA; }

/* 2 — cartão sobre a foto */
.auto-o2 { padding-block: clamp(56px, 7vw, 96px); background: var(--gray-bg); }
.auto-o2 .wrap { display: grid; grid-template-columns: repeat(12, 1fr); align-items: center; }
.auto-o2 .pic { grid-column: 5 / -1; grid-row: 1; }
.auto-o2 .pic img { width: 100%; aspect-ratio: 16 / 10.5; object-fit: cover; }
.auto-o2 .card { grid-column: 1 / 7; grid-row: 1; position: relative; z-index: 2; background: #fff; padding: clamp(28px, 3.5vw, 52px); border-top: 4px solid var(--red); box-shadow: 0 20px 50px rgba(0,0,0,.12); }
.auto-o2 .auto-chips li { background: var(--gray-bg); }

/* 3 — faixa grafite */
.auto-o3 { background: var(--ink); color: #fff; display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch; }
.auto-o3 .pic img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.auto-o3 .txt { padding: clamp(40px, 6vw, 96px) max(var(--gutter), calc((100vw - var(--container)) / 2)) clamp(40px, 6vw, 96px) clamp(32px, 5vw, 80px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.auto-o3 .eyebrow { color: #FF8A91; }
.auto-o3 .lead { color: #CFCAC5; }
.auto-o3 .auto-chips li { background: rgba(255,255,255,.08); color: #fff; }

/* 4 — centralizado + foto panorâmica */
.auto-o4 { padding-block: clamp(56px, 7vw, 96px) 0; text-align: center; }
.auto-o4 .lead { margin-inline: auto; }
.auto-o4 .btn { margin-bottom: clamp(36px, 4vw, 56px); }
.auto-o4 .pano { height: clamp(320px, 38vw, 560px); overflow: hidden; }
.auto-o4 .pano img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }

@media (max-width: 960px) {
  .auto-o1 { min-height: 560px; align-items: flex-end; }
  .auto-o1 .bg::after { background: linear-gradient(0deg, rgba(18,14,10,.88) 0%, rgba(18,14,10,.55) 50%, rgba(18,14,10,.1) 85%); }
  .auto-o1 .container { padding-block: 200px 44px; }
  .auto-o2 .wrap { display: block; }
  .auto-o2 .card { margin: -60px 16px 0; }
  .auto-o3 { grid-template-columns: 1fr; }
  .auto-o3 .pic img { min-height: 0; aspect-ratio: 16 / 10; }
  .auto-o3 .txt { padding: 44px var(--gutter); }
}
@media (max-width: 600px) { .auto-x .btn { width: 100%; } }

/* ---------- Automação: opções 5 a 8 ---------- */
/* 5 — demonstração interativa */
.auto-o5 { padding-block: clamp(56px, 7vw, 96px); background: #fff; }
.auto-o5 .wrap { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.demo { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--gray-bg); }
.demo img { width: 100%; height: 100%; object-fit: cover; }
.demo__blind { position: absolute; left: 16.5%; right: 11.5%; top: 8.5%; height: calc(var(--blind, 0) * 0.6%); background: repeating-linear-gradient(0deg, rgba(216,209,199,.97) 0 3px, rgba(206,198,187,.97) 3px 4px); box-shadow: 0 6px 14px rgba(0,0,0,.15); transition: height 1.8s cubic-bezier(.45, 0, .2, 1); }
.demo__blind::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: #BDB3A6; }
.demo__remote { display: inline-flex; gap: 6px; padding: 6px; background: var(--ink); border-radius: 999px; margin: 6px 0 28px; }
.demo__remote button { font: 600 14px var(--sans); color: #fff; background: transparent; border: 0; border-radius: 999px; padding: 10px 18px; cursor: pointer; min-height: 44px; }
.demo__remote button[aria-pressed="true"] { background: var(--red); }
.demo__hint { font-size: 13px; color: var(--gray-text); margin-bottom: 8px; }
@media (prefers-reduced-motion: reduce) { .demo__blind { transition: none; } }

/* 6 — mosaico com bloco vermelho */
.auto-o6 { padding-block: clamp(56px, 7vw, 96px); }
.auto-o6 .mosaic { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: 280px auto; gap: 14px; }
.auto-o6 .m2, .auto-o6 .m3 { min-height: 0; }
.auto-o6 .m1 { grid-row: 1 / 3; }
.auto-o6 .mosaic img { width: 100%; height: 100%; object-fit: cover; }
.auto-o6 .red { grid-column: 2 / 4; background: var(--red); color: #fff; padding: clamp(28px, 3.5vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.auto-o6 .red .eyebrow { color: #FFD6D8; }
.auto-o6 .red .lead { color: #FFE9EA; }
.auto-o6 .red .btn { align-self: flex-start; }

/* 7 — benefícios com ícones */
.auto-o7 { padding-block: clamp(56px, 7vw, 96px); background: var(--gray-bg); }
.auto-o7 .strip { height: clamp(180px, 20vw, 260px); overflow: hidden; margin-bottom: clamp(36px, 4vw, 56px); }
.auto-o7 .strip img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.auto-o7 .wrap { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.auto-o7 .bens { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.auto-o7 .bem { background: #fff; padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.auto-o7 .bem svg { width: 34px; height: 34px; fill: none; stroke: #8A8A8A; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.auto-o7 .bem svg .r { stroke: var(--red); }
.auto-o7 .bem h3 { font-family: var(--serif); font-size: 21px; line-height: 1.2; }
.auto-o7 .bem p { font-size: 15px; color: var(--gray-text); }

/* 8 — corte diagonal */
.auto-o8 { position: relative; min-height: 520px; display: flex; align-items: center; background: #f6f1e7; overflow: hidden; }
.auto-o8 .diag { position: absolute; top: 0; right: 0; bottom: 0; width: 62%; clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%); }
.auto-o8 .diag img { width: 100%; height: 100%; object-fit: cover; }
.auto-o8 .diag::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 100%; background: var(--red); clip-path: polygon(22% 0, 23.2% 0, 1.2% 100%, 0 100%); z-index: 2; }
.auto-o8 .container { position: relative; z-index: 3; padding-block: 72px; }
.auto-o8 .txt { max-width: 440px; }
.auto-o8 .big { font-family: var(--serif); font-size: clamp(40px, 4.6vw, 64px); line-height: 1.02; letter-spacing: -.015em; margin-bottom: 20px; }
.auto-o8 .big em { font-style: italic; color: var(--red); }

@media (max-width: 960px) {
  .auto-o5 .wrap, .auto-o7 .wrap { grid-template-columns: 1fr; }
  .auto-o6 .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .auto-o6 .m1 { grid-row: auto; grid-column: 1 / -1; aspect-ratio: 16 / 10; }
  .auto-o6 .m2, .auto-o6 .m3 { aspect-ratio: 1; }
  .auto-o6 .red { grid-column: 1 / -1; }
  .auto-o8 { display: block; min-height: 0; }
  .auto-o8 .diag { position: relative; width: 100%; height: 300px; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 88%); }
  .auto-o8 .diag::before { display: none; }
  .auto-o8 .container { padding-block: 32px 56px; }
}
@media (max-width: 600px) { .auto-o7 .bens { grid-template-columns: 1fr; } .demo__remote { display: flex; } .demo__remote button { flex: 1; padding: 10px 8px; } }

/* =========================================================
   Menu ao rolar: a barra vira faixa inteira no topo
   (o conteúdo continua na largura da página)
   ========================================================= */
.header--float {
  transition: width .45s cubic-bezier(.4, 0, .2, 1), max-width .45s cubic-bezier(.4, 0, .2, 1),
              top .45s cubic-bezier(.4, 0, .2, 1), border-radius .45s ease, box-shadow .45s ease,
              background-color .45s ease, border-color .45s ease;
}
.header--float .container { transition: max-width .45s cubic-bezier(.4, 0, .2, 1), padding .45s cubic-bezier(.4, 0, .2, 1); }
.header--float .logo img { transition: width .45s ease; }
.header--float.is-scrolled { top: 0; width: 100%; max-width: 100%; border-radius: 0; }
.header--float.is-scrolled .container { max-width: calc(var(--container) + var(--gutter) * 2); padding: 0 var(--gutter); }
.header--float.is-scrolled .logo img { width: 112px; }
@media (max-width: 960px) { .header--float.is-scrolled .logo img { width: 100px; } }

/* 1 — Branco com sombra suave */
.bar-s1.is-scrolled { box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 10px 28px rgba(0,0,0,.12); }

/* 2 — Vidro fosco */
.bar-s2.is-scrolled { background: rgba(255,255,255,.78); -webkit-backdrop-filter: saturate(160%) blur(14px); backdrop-filter: saturate(160%) blur(14px); box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 14px 34px rgba(0,0,0,.16); }

/* 3 — Fio vermelho embaixo */
.bar-s3 { border-bottom: 3px solid transparent; }
.bar-s3.is-scrolled { border-bottom-color: var(--red); box-shadow: 0 12px 30px rgba(0,0,0,.14); }

/* 4 — Grafite escuro */
.bar-s4.is-scrolled { background: var(--ink); box-shadow: 0 16px 36px rgba(0,0,0,.35); }
.bar-s4.is-scrolled .logo { background: #fff; padding: 4px 8px; border-radius: 3px; }
.bar-s4 .logo { transition: background-color .45s ease, padding .45s ease; }
@media (min-width: 961px) {
  .bar-s4.is-scrolled .nav a { color: #fff; }
  .bar-s4.is-scrolled .nav a::after { background: #fff; }
}
.bar-s4.is-scrolled .menu-toggle { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }

@media (prefers-reduced-motion: reduce) {
  .header--float, .header--float .container, .header--float .logo img { transition: none; }
}

/* =========================================================
   "Cuidado em cada etapa" — opções de layout
   ========================================================= */
.svc-x { padding-block: clamp(56px, 7vw, 96px); }
.svc-x .svc-head { text-align: center; max-width: 640px; margin: 0 auto clamp(36px, 4vw, 52px); }
.svc-x .svc-head .lead { margin-top: 14px; }

/* 1 — três cartões com foto */
.svc-o1 .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
.svc-o1 .it { background: #fff; border: 1px solid var(--gray-line); display: flex; flex-direction: column; }
.svc-o1 .it img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.svc-o1 .it .b { padding: 22px 24px 26px; position: relative; }
.svc-o1 .it .n { position: absolute; top: -26px; left: 24px; width: 52px; height: 52px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--serif); font-size: 20px; display: flex; align-items: center; justify-content: center; border: 4px solid #fff; }
.svc-o1 .it h3 { font-family: var(--serif); font-size: 23px; margin: 18px 0 6px; }
.svc-o1 .it p { color: var(--gray-text); }

/* 2 — faixa grafite com colunas */
.svc-o2 { background: var(--ink); color: #fff; }
.svc-o2 .svc-head .lead { color: #CFCAC5; }
.svc-o2 .cols { display: grid; grid-template-columns: repeat(3, 1fr); }
.svc-o2 .col { padding: 8px clamp(20px, 3vw, 40px) 12px; }
.svc-o2 .col + .col { border-left: 1px solid rgba(255,255,255,.16); }
.svc-o2 .n { font-family: var(--serif); font-size: clamp(56px, 6vw, 84px); line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--red); display: block; margin-bottom: 14px; }
.svc-o2 h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 8px; }
.svc-o2 p { color: #CFCAC5; }
.svc-o2 .strip { margin-top: clamp(40px, 5vw, 64px); height: clamp(160px, 18vw, 240px); overflow: hidden; }
.svc-o2 .strip img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }

/* 3 — foto grande com painel branco */
.svc-o3 { position: relative; min-height: 620px; display: flex; align-items: center; padding-block: 64px; }
.svc-o3 .bg { position: absolute; inset: 0; }
.svc-o3 .bg img { width: 100%; height: 100%; object-fit: cover; }
.svc-o3 .panel { position: relative; z-index: 2; margin-left: auto; max-width: 540px; background: #fff; padding: clamp(28px, 3.5vw, 48px); box-shadow: 0 24px 60px rgba(0,0,0,.18); }
.svc-o3 .panel .lead { margin: 12px 0 18px; }
.svc-o3 .service-list li { padding: 18px 0; }

/* 4 — linha do tempo */
.svc-o4 .line { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.svc-o4 .line::before { content: ""; position: absolute; top: 28px; left: 16.66%; right: 16.66%; height: 2px; background: repeating-linear-gradient(90deg, var(--red) 0 10px, transparent 10px 18px); }
.svc-o4 .step .n { position: relative; z-index: 1; width: 58px; height: 58px; border-radius: 50%; background: #fff; border: 2px solid var(--red); color: var(--red); font-family: var(--serif); font-size: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.svc-o4 .step h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 6px; }
.svc-o4 .step p { color: var(--gray-text); max-width: 280px; margin: 0 auto; }
.svc-o4 .pano { margin-top: clamp(40px, 5vw, 64px); height: clamp(200px, 24vw, 340px); overflow: hidden; }
.svc-o4 .pano img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .svc-o1 .grid, .svc-o2 .cols { grid-template-columns: 1fr; }
  .svc-o1 .grid { gap: 36px; }
  .svc-o2 .col + .col { border-left: 0; border-top: 1px solid rgba(255,255,255,.16); padding-top: 24px; margin-top: 16px; }
  .svc-o3 { display: block; min-height: 0; padding: 0; }
  .svc-o3 .bg { position: relative; height: 260px; }
  .svc-o3 .panel { margin: -50px 16px 0; max-width: none; }
  .svc-o3 { padding-bottom: 56px; }
  .svc-o4 .line { grid-template-columns: 1fr; gap: 32px; }
  .svc-o4 .line::before { top: 0; bottom: 0; left: 50%; right: auto; width: 2px; height: auto; background: repeating-linear-gradient(180deg, var(--red) 0 10px, transparent 10px 18px); opacity: .5; }
  .svc-o4 .step { background: #fff; position: relative; padding-block: 4px; }
}
.svc-o4 { padding-bottom: 0; }
.svc-o4 .pano { margin-bottom: 0; }
.svc-o4 + .footer-red, main:has(> .svc-o4:last-child) + .footer-red { border-top: 0; }

/* =========================================================
   Rodapé vermelho completo — opções
   ========================================================= */
.ft { background: var(--red); color: #fff; font-size: 15px; }
.ft a { color: #fff; text-decoration: none; }
.ft a:hover { text-decoration: underline; text-underline-offset: 4px; }
.ft h2 { font: 600 12px var(--sans); letter-spacing: .18em; text-transform: uppercase; color: #FFD6D8; margin: 0 0 16px; }
.ft ul { list-style: none; margin: 0; padding: 0; }
.ft .links { display: grid; gap: 9px; }
.ft .logo-box { display: inline-block; background: #fff; padding: 10px 14px; border-radius: var(--radius); }
.ft .logo-box img { width: 140px; height: auto; }
.ft .about { color: #FFE3E4; margin-top: 16px; max-width: 300px; line-height: 1.6; }
.ft .info { display: grid; gap: 14px; }
.ft .info li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.5; }
.ft .info b { display: block; font-weight: 600; }
.ft .info span { color: #FFE3E4; }
.ft svg.i { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ft .pay { display: flex; flex-wrap: wrap; gap: 8px; }
.ft .pay li { display: inline-flex; align-items: center; gap: 7px; background: #fff; color: var(--ink); font-size: 13px; font-weight: 600; padding: 7px 11px; border-radius: 4px; }
.ft .pay svg { width: 18px; height: 18px; fill: none; stroke: var(--red); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ft .secure { display: inline-flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.45); border-radius: 6px; padding: 10px 14px; }
.ft .secure svg { width: 28px; height: 28px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ft .secure b { display: block; font-size: 14px; }
.ft .secure small { color: #FFE3E4; font-size: 12px; }
.ft .bottom { border-top: 1px solid rgba(255,255,255,.28); }
.ft .bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 16px; padding-block: 16px; font-size: 13px; color: #FFE3E4; }
.ft .wa { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--red) !important; font-weight: 600; padding: 11px 18px; border-radius: var(--radius); min-height: 44px; }
.ft .wa:hover { text-decoration: none; background: #FBEDEE; }

/* 1 — quatro colunas */
.ft1 .main { display: grid; grid-template-columns: 1.3fr .8fr 1.2fr 1.2fr; gap: 40px; padding-block: 56px 44px; }
.ft1 .stack { display: grid; gap: 26px; align-content: start; }

/* 2 — selos em cima */
.ft2 .badges { border-bottom: 1px solid rgba(255,255,255,.28); }
.ft2 .badges ul { display: grid; grid-template-columns: repeat(3, 1fr); }
.ft2 .badges li { display: flex; align-items: center; gap: 14px; padding: 26px 20px; }
.ft2 .badges li + li { border-left: 1px solid rgba(255,255,255,.28); }
.ft2 .badges svg { width: 34px; height: 34px; fill: none; stroke: #fff; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.ft2 .badges b { display: block; font-size: 16px; }
.ft2 .badges span { color: #FFE3E4; font-size: 14px; }
.ft2 .main { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.3fr; gap: 40px; padding-block: 48px 40px; }

/* 3 — centralizado */
.ft3 { text-align: center; }
.ft3 .top { padding-block: 52px 36px; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.ft3 .nav3 { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px; font-weight: 500; }
.ft3 .row3 { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.28); border-bottom: 1px solid rgba(255,255,255,.28); }
.ft3 .row3 > div { padding: 30px 20px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.ft3 .row3 > div + div { border-left: 1px solid rgba(255,255,255,.28); }
.ft3 .row3 svg.i { width: 26px; height: 26px; margin: 0 0 4px; }
.ft3 .row3 span { color: #FFE3E4; }
.ft3 .trust { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 28px; padding-block: 28px; }

/* 4 — cartão branco de visita */
.ft4 .main { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 40px; padding-block: 56px 44px; align-items: start; }
.ft4 .visit { background: #fff; color: var(--ink); padding: 28px; border-radius: 4px; box-shadow: 0 16px 36px rgba(0,0,0,.18); }
.ft4 .visit h2 { color: var(--red); }
.ft4 .visit .t { font-family: var(--serif); font-size: 26px; line-height: 1.15; margin-bottom: 18px; }
.ft4 .visit .info span { color: var(--gray-text); }
.ft4 .visit svg.i { stroke: var(--red); }
.ft4 .visit a { color: var(--ink); }
.ft4 .visit .btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.ft4 .visit .btns a { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 16px; font-weight: 600; font-size: 14px; border-radius: var(--radius); }
.ft4 .visit .b1 { background: var(--red); color: #fff !important; }
.ft4 .visit .b2 { border: 1px solid var(--red); color: var(--red) !important; }
.ft4 .visit .btns a:hover { text-decoration: none; }
.ft4 .stack { display: grid; gap: 26px; }

@media (max-width: 1000px) {
  .ft1 .main, .ft2 .main, .ft4 .main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ft1 .main, .ft2 .main, .ft4 .main { grid-template-columns: 1fr; gap: 32px; }
  .ft2 .badges ul, .ft3 .row3 { grid-template-columns: 1fr; }
  .ft2 .badges li + li { border-left: 0; border-top: 1px solid rgba(255,255,255,.28); }
  .ft3 .row3 > div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.28); }
  .ft .bottom .container { justify-content: center; text-align: center; }
}

/* =========================================================
   Botão flutuante de WhatsApp + notificação de atendimento
   ========================================================= */
.wa-float { position: fixed; right: 20px; bottom: calc(20px + env(safe-area-inset-bottom, 0px)); z-index: 90; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; font-family: var(--sans); }
.wa-float__btn { position: relative; width: 62px; height: 62px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(0,0,0,.25); transition: transform .2s ease, box-shadow .2s ease; }
.wa-float__btn:hover { transform: scale(1.06); box-shadow: 0 14px 32px rgba(0,0,0,.3); }
.wa-float__btn svg { width: 32px; height: 32px; fill: #fff; }
.wa-float__btn::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25D366; opacity: .5; animation: waPulse 2.4s ease-out infinite; z-index: -1; }
.wa-float__badge { position: absolute; top: -2px; right: -2px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 10px; background: var(--red); color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; transform: scale(0); transition: transform .3s cubic-bezier(.3, 1.6, .5, 1); }
.wa-float.has-badge .wa-float__badge { transform: scale(1); }
@keyframes waPulse { 0% { transform: scale(1); opacity: .5; } 80%, 100% { transform: scale(1.7); opacity: 0; } }

.wa-note { width: min(320px, calc(100vw - 40px)); background: #fff; color: var(--ink); border-radius: 14px; box-shadow: 0 18px 44px rgba(0,0,0,.22); overflow: hidden; text-decoration: none; display: block;
  opacity: 0; transform: translateY(14px) scale(.96); transform-origin: bottom right; pointer-events: none; transition: opacity .3s ease, transform .35s cubic-bezier(.2, .9, .3, 1.2); }
.wa-float.is-open .wa-note { opacity: 1; transform: none; pointer-events: auto; }
.wa-note__top { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: #F5F5F5; font-size: 12px; color: #6B6B6B; }
.wa-note__top svg { width: 14px; height: 14px; fill: #25D366; }
.wa-note__top b { color: var(--ink); font-weight: 600; }
.wa-note { position: relative; }
.wa-note__link { display: block; color: inherit; text-decoration: none; }
.wa-note__top { min-height: 44px; padding-right: 48px !important; }
.wa-note > .x { position: absolute; top: 6px; right: 8px; z-index: 2; display: grid; place-items: center; border: 0; background: transparent; font-size: 20px; line-height: 1; color: #8A8A8A; cursor: pointer; width: 32px; height: 32px; border-radius: 50%; }
.wa-note > .x:hover { background: #E9E9E9; color: var(--ink); }
.wa-note__body { display: flex; gap: 12px; padding: 14px; align-items: flex-start; }
.wa-note__av { position: relative; width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--gray-line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.wa-note__av img { width: 40px; height: auto; }
.wa-note__av::after { content: ""; position: absolute; right: 1px; bottom: 1px; width: 11px; height: 11px; border-radius: 50%; background: #25D366; border: 2px solid #fff; }
.wa-note__msg b { display: block; font-size: 15px; margin-bottom: 2px; }
.wa-note__msg p { font-size: 14px; line-height: 1.45; color: #4A4A4A; }
.wa-note__online { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: #1B9E4B; font-weight: 600; margin-top: 6px; }
.wa-note__online::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #25D366; }
.wa-note__cta { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0 14px 14px; padding: 11px; border-radius: 8px; background: #25D366; color: #fff; font-weight: 600; font-size: 14px; }
.wa-note:hover .wa-note__cta { background: #1EBE5A; }
@media (prefers-reduced-motion: reduce) { .wa-float__btn::before { animation: none; } .wa-note { transition: none; } }
@media (max-width: 600px) { .wa-float { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom, 0px)); } .wa-float__btn { width: 56px; height: 56px; } }

/* ---- Rodapé 1: ajustes (pagamento à direita, texto maior) ---- */
.ft1 .stack { justify-items: end; text-align: right; }
.ft1 .stack .pay { justify-content: flex-end; }
.ft1 .stack .sec, .ft1 .stack .secure { text-align: left; }
.ft1 .about { max-width: 330px; }
@media (max-width: 640px) {
  .ft1 .stack { justify-items: start; text-align: left; }
  .ft1 .stack .pay { justify-content: flex-start; }
}

/* ---- Bloco Segurança: 4 variações ---- */
.sec svg { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.sec b { display: block; }
.sec small { display: block; }
/* 1 — Selo branco com brilho */
.sec1 { position: relative; overflow: hidden; display: flex; gap: 14px; align-items: flex-start; background: #fff; color: var(--ink); border-radius: 8px; padding: 16px 18px; box-shadow: 0 12px 28px rgba(0,0,0,.22); max-width: 300px; }
.sec1::after { content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.85), transparent); transform: skewX(-18deg); animation: secShine 4.5s ease-in-out infinite; }
@keyframes secShine { 0%, 60% { left: -60%; } 100% { left: 130%; } }
.sec1__ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: #1E9E4A; display: grid; place-items: center; box-shadow: 0 0 0 5px rgba(30,158,74,.15); }
.sec1__ic svg { width: 26px; height: 26px; stroke: #fff; stroke-width: 2; }
.sec1 b { font-size: 16px; }
.sec1 small { color: #1E9E4A; font-size: 12.5px; font-weight: 600; margin-top: 2px; }
.sec1 ul { margin-top: 8px !important; display: grid; gap: 3px; }
.sec1 li { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #444; }
.sec1 li svg { width: 14px; height: 14px; stroke: #1E9E4A; stroke-width: 2.2; }
/* 2 — Carimbo giratório */
.sec2 { display: flex; align-items: center; gap: 16px; max-width: 320px; }
.sec2__seal { position: relative; flex-shrink: 0; width: 104px; height: 104px; border-radius: 50%; background: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.sec2__ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: secSpin 18s linear infinite; }
.sec2__ring text { font: 700 10.5px var(--sans); letter-spacing: .14em; fill: var(--red); }
@keyframes secSpin { to { transform: rotate(360deg); } }
.sec2__lock { position: absolute; inset: 27px; border-radius: 50%; background: var(--red); display: grid; place-items: center; }
.sec2__lock svg { width: 26px; height: 26px; stroke: #fff; stroke-width: 1.9; }
.sec2 b { font-size: 16px; }
.sec2 small { color: #FFE3E4; font-size: 13px; line-height: 1.5; margin-top: 4px; }
/* 3 — Barra do navegador */
.sec3 { display: grid; gap: 10px; justify-items: start; }
.sec3__bar { display: flex; align-items: center; gap: 10px; background: #fff; color: var(--ink); border-radius: 999px; padding: 9px 18px 9px 10px; box-shadow: 0 10px 24px rgba(0,0,0,.22); font-size: 14px; }
.sec3__lock { width: 30px; height: 30px; border-radius: 50%; background: #E8F6EC; display: grid; place-items: center; }
.sec3__lock svg { width: 17px; height: 17px; stroke: #1E9E4A; stroke-width: 2; }
.sec3__url { font-weight: 600; white-space: nowrap; }
.sec3__url em { font-style: normal; color: #1E9E4A; }
.sec3 p { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; margin: 0; }
.sec3__dot { position: relative; width: 10px; height: 10px; border-radius: 50%; background: #3BE07A; }
.sec3__dot::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid #3BE07A; animation: secPulse 1.8s ease-out infinite; }
@keyframes secPulse { from { transform: scale(.5); opacity: 1; } to { transform: scale(1.5); opacity: 0; } }
/* 4 — Cartão grafite verificado */
.sec4 { background: var(--ink); border-radius: 8px; padding: 18px; max-width: 310px; box-shadow: 0 12px 28px rgba(0,0,0,.25); }
.sec4__top { display: flex; align-items: center; gap: 12px; }
.sec4__ic { position: relative; flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: #1E9E4A; display: grid; place-items: center; }
.sec4__ic::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #1E9E4A; animation: secPulse 2.2s ease-out infinite; }
.sec4__ic svg { width: 24px; height: 24px; stroke: #fff; stroke-width: 2; }
.sec4 b { font-size: 15px; }
.sec4 small { color: #BDBDBD; font-size: 12.5px; }
.sec4 ul { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px !important; padding-top: 14px !important; border-top: 1px solid rgba(255,255,255,.14); }
.sec4 li { display: grid; justify-items: center; gap: 5px; text-align: center; font-size: 11.5px; line-height: 1.25; color: #E6E6E6; }
.sec4 li svg { width: 22px; height: 22px; stroke: #5BD68A; stroke-width: 1.7; }
@media (prefers-reduced-motion: reduce) { .sec1::after, .sec2__ring, .sec3__dot::after, .sec4__ic::after { animation: none; } }

/* ---- Selos giratórios do rodapé (Site seguro + Pagamento facilitado) ---- */
.seals { display: flex; gap: 22px; justify-content: flex-end; }
.seal { display: block; }
.seal__disc { display: block; position: relative; width: 104px; height: 104px; border-radius: 50%; background: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.seal__ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: secSpin 18s linear infinite; }
.seal--rev .seal__ring { animation-direction: reverse; }
.seal__ring text { font: 700 10px var(--sans); fill: var(--red); }
.seal__ic { position: absolute; inset: 27px; border-radius: 50%; background: var(--red); display: grid; place-items: center; }
.seal__ic svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.seal b { font-size: 14px; line-height: 1.3; }
.seal small { color: #FFE3E4; font-size: 12px; line-height: 1.35; }
@keyframes secSpin { to { transform: rotate(360deg); } }
@media (max-width: 640px) { .seals { justify-content: flex-start; } }
@media (prefers-reduced-motion: reduce) { .seal__ring { animation: none; } }

/* =========================================================
   "Cuidado em cada etapa" — 4 animações (svc-a1..a4)
   ========================================================= */
.svc-o4 .step .n { transition: transform .5s cubic-bezier(.3,1.5,.5,1), background-color .4s, color .4s, box-shadow .4s; }
.svc-o4 .step h3, .svc-o4 .step p { transition: opacity .6s ease, transform .6s ease, color .4s; }
.svc-o4 .line::after { content: ""; position: absolute; top: 28px; left: 16.66%; height: 2px; width: 0; background: var(--red); z-index: 0; }

/* 1 — Linha que se desenha: o traço corre e os círculos aparecem quando ele chega */
.svc-a1 .line::before { transition: clip-path 1.8s cubic-bezier(.6,0,.3,1); clip-path: inset(0 0 0 0); }
.svc-a1.anim-ready:not(.is-in) .line::before { clip-path: inset(0 100% 0 0); }
.svc-a1.anim-ready:not(.is-in) .step .n { transform: scale(0); }
.svc-a1.anim-ready:not(.is-in) .step h3, .svc-a1.anim-ready:not(.is-in) .step p { opacity: 0; transform: translateY(14px); }
.svc-a1 .step:nth-child(2) .n { transition-delay: .9s; } .svc-a1 .step:nth-child(3) .n { transition-delay: 1.8s; }
.svc-a1 .step:nth-child(1) h3, .svc-a1 .step:nth-child(1) p { transition-delay: .25s; }
.svc-a1 .step:nth-child(2) h3, .svc-a1 .step:nth-child(2) p { transition-delay: 1.15s; }
.svc-a1 .step:nth-child(3) h3, .svc-a1 .step:nth-child(3) p { transition-delay: 2.05s; }
.svc-a1.is-in .step .n { animation: svcFill .6s ease forwards; }
.svc-a1.is-in .step:nth-child(2) .n { animation-delay: .9s; } .svc-a1.is-in .step:nth-child(3) .n { animation-delay: 1.8s; }
@keyframes svcFill { 50% { background: var(--red); color: #fff; } 100% { background: #fff; color: var(--red); } }

/* 2 — Etapas sobem em sequência + ponto vermelho percorrendo a linha */
.svc-a2.anim-ready:not(.is-in) .step { opacity: 0; transform: translateY(34px); }
.svc-a2 .step { transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.svc-a2 .step:nth-child(2) { transition-delay: .2s; } .svc-a2 .step:nth-child(3) { transition-delay: .4s; }
.svc-a2 .step .n { background: var(--red); color: #fff; box-shadow: 0 8px 18px rgba(198,0,11,.28); }
.svc-a2 .line > .dot { position: absolute; top: 23px; left: 16.66%; width: 12px; height: 12px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(198,0,11,.18); z-index: 0; opacity: 0; }
.svc-a2.is-in .line > .dot { animation: svcDot 4.5s ease-in-out 1s infinite; }
@keyframes svcDot { 0% { left: 16.66%; opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { left: calc(83.33% - 12px); opacity: 0; } }

/* 3 — Traço em movimento contínuo + anéis pulsando nos números */
.svc-a3 .line::before { animation: svcMarch 1.1s linear infinite; }
@keyframes svcMarch { to { background-position: 18px 0; } }
.svc-a3 .step .n::after { content: ""; position: absolute; inset: -2px; border-radius: 50%; border: 2px solid var(--red); animation: svcRing 2.4s ease-out infinite; }
.svc-a3 .step:nth-child(2) .n::after { animation-delay: .8s; } .svc-a3 .step:nth-child(3) .n::after { animation-delay: 1.6s; }
@keyframes svcRing { from { transform: scale(1); opacity: .7; } to { transform: scale(1.7); opacity: 0; } }
.svc-a3 .step:hover .n { background: var(--red); color: #fff; transform: scale(1.08); }
.svc-a3.anim-ready:not(.is-in) .step { opacity: 0; }
.svc-a3 .step { transition: opacity .9s ease; }

/* 4 — Destaque passo a passo (repete): a linha enche e cada etapa acende na sua vez */
.svc-a4.is-in .line::after { animation: svcProg 9s ease-in-out infinite; }
@keyframes svcProg { 0%, 28% { width: 0; } 34%, 61% { width: 33.33%; } 67%, 94% { width: 66.67%; } 100% { width: 0; } }
.svc-a4.is-in .step .n { animation: svcOn 9s ease-in-out infinite; }
.svc-a4.is-in .step h3 { animation: svcOnT 9s ease-in-out infinite; }
.svc-a4.is-in .step:nth-child(2) .n, .svc-a4.is-in .step:nth-child(2) h3 { animation-delay: 3s; }
.svc-a4.is-in .step:nth-child(3) .n, .svc-a4.is-in .step:nth-child(3) h3 { animation-delay: 6s; }
@keyframes svcOn { 0%, 30% { background: var(--red); color: #fff; transform: scale(1.14); box-shadow: 0 10px 22px rgba(198,0,11,.3); } 36%, 100% { background: #fff; color: var(--red); transform: scale(1); box-shadow: none; } }
@keyframes svcOnT { 0%, 30% { color: var(--red); } 36%, 100% { color: inherit; } }

@media (max-width: 760px) {
  .svc-o4 .line::after, .svc-a2 .line > .dot { display: none; }
  .svc-a1.anim-ready:not(.is-in) .line::before { clip-path: inset(0 0 100% 0); }
  .svc-a3 .line::before { animation-name: svcMarchV; }
  @keyframes svcMarchV { to { background-position: 0 18px; } }
}
@media (prefers-reduced-motion: reduce) { .svc-o4 *, .svc-o4 .line::before, .svc-o4 .line::after { animation: none !important; transition: none !important; } }

/* ---- Rodapé: bloco "Formas de pagamento" — 4 layouts, estica até a altura das colunas vizinhas ---- */
.ft1 .main { align-items: stretch; }
.ft1 .payv { display: flex; flex-direction: column; align-items: flex-end; text-align: left; gap: 0; }
.ft1 .payv h2 { text-align: right; }
.payv .pbody { flex: 1; width: 100%; max-width: 300px; display: flex; flex-direction: column; margin: 0; }
.payv svg { fill: none; stroke-linecap: round; stroke-linejoin: round; }
/* 1 — lista com ícones */
.plist { justify-content: space-between; }
.plist li { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.plist li:last-child { border-bottom: 0; }
.plist .pi { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: #fff; display: grid; place-items: center; }
.plist .pi svg { width: 20px; height: 20px; stroke: var(--red); stroke-width: 1.8; }
.plist b { display: block; font-size: 15px; }
.plist small { color: #FFE3E4; font-size: 13px; }
/* 2 — grade de cartões 2x2 */
.pgrid { flex: 1; display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: 10px; }
.pgrid li { background: #fff; color: var(--ink); border-radius: 6px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 12px 8px; transition: transform .2s, box-shadow .2s; }
.pgrid li:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(0,0,0,.2); }
.pgrid svg { width: 28px; height: 28px; stroke: var(--red); stroke-width: 1.7; }
.pgrid b { font-size: 13.5px; line-height: 1.25; }
.pnote { margin: 12px 0 0; font-size: 12.5px; color: #FFE3E4; text-align: right; }
/* 3 — cartão branco */
.pcard { background: #fff; color: var(--ink); border-radius: 8px; padding: 20px 20px 0; overflow: hidden; box-shadow: 0 14px 30px rgba(0,0,0,.2); }
.pcard .pt { font-family: var(--serif); font-size: 21px; margin: 0 0 12px; }
.pcard ul { flex: 1; display: flex; flex-direction: column; justify-content: space-around; }
.pcard li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14.5px; padding: 6px 0; }
.pcard li svg { width: 20px; height: 20px; stroke: var(--red); stroke-width: 1.8; }
.pfoot { margin: 12px -20px 0; background: #FBEDEE; padding: 14px 20px; display: flex; gap: 12px; align-items: center; }
.pfoot svg { width: 26px; height: 26px; stroke: var(--red); stroke-width: 1.8; flex-shrink: 0; }
.pfoot b { display: block; color: var(--red); font-size: 14.5px; }
.pfoot small { color: var(--gray-text); font-size: 12.5px; }
/* 4 — destaque parcelamento */
.pbig { justify-content: space-between; align-items: flex-end; text-align: right; }
.pbig .pt { font-family: var(--serif); font-size: 34px; line-height: 1.05; margin: 0; }
.pbig .pt em { font-style: italic; color: #FFD6D8; }
.pbig .ps { color: #FFE3E4; font-size: 14px; margin: 10px 0 0; }
.pbig ul { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; margin: 14px 0 0; }
.pbig li { display: inline-flex; align-items: center; gap: 6px; border: 1px solid rgba(255,255,255,.6); border-radius: 999px; padding: 6px 12px; font-size: 13px; font-weight: 600; }
.pbig li svg { width: 16px; height: 16px; stroke: #fff; stroke-width: 1.8; }
.pbig .pbtn { display: inline-flex; align-items: center; min-height: 44px; margin-top: 16px; background: #fff; color: var(--red) !important; font-weight: 700; font-size: 14px; padding: 10px 18px; border-radius: var(--radius); }
.pbig .pbtn:hover { text-decoration: none; background: #FBEDEE; }
@media (max-width: 640px) {
  .ft1 .payv { align-items: stretch; }
  .ft1 .payv h2, .pnote { text-align: left; }
  .payv .pbody { max-width: none; flex: none; }
  .pgrid { grid-auto-rows: 110px; }
  .pbig { align-items: flex-start; text-align: left; }
  .pbig ul { justify-content: flex-start; }
}
/* A coluna de pagamento não define a altura da linha: ela acompanha as colunas vizinhas */
@media (min-width: 1001px) {
  .ft1 .payv { height: 0; min-height: 100%; }
  .payv .pbody { min-height: 0; }
  .plist li { padding: 4px 0; }
  .plist .pi { width: 34px; height: 34px; }
  .plist .pi svg { width: 18px; height: 18px; }
  .plist small { font-size: 12.5px; }
  .pgrid { gap: 8px; } .pgrid li { padding: 8px 6px; gap: 6px; } .pgrid svg { width: 24px; height: 24px; }
  .pnote { margin-top: 8px; }
  .pcard { padding: 16px 18px 0; } .pcard .pt { font-size: 19px; margin-bottom: 4px; } .pcard li { padding: 2px 0; font-size: 14px; }
  .pfoot { margin: 8px -18px 0; padding: 10px 18px; }
  .pbig .pt { font-size: 30px; } .pbig .ps { margin-top: 6px; } .pbig ul { margin-top: 10px; } .pbig .pbtn { margin-top: 12px; min-height: 42px; padding: 8px 16px; }
}

/* =========================================================
   Página Empresa — 4 layouts (emp1..emp4)
   ========================================================= */
.emp-hero { min-height: 560px; }
.emp-hero.hero-full--2 .hero-full__content { padding-block: calc(var(--bar-h) + var(--bar-gap) + 60px) 80px; }
.emp-h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 4.6vw, 62px); line-height: 1.08; letter-spacing: -.015em; margin: 0; text-wrap: balance; }
.emp-h1 .eyebrow { display: block; font-family: var(--sans); margin-bottom: 14px; }
.emp-desc { font-size: 18px; color: #F2EEEA; max-width: 520px; margin: 18px 0 28px; }
.hero-full--2 .emp-desc { margin-inline: auto; }
.emp-crumb ol { display: flex; gap: 6px; list-style: none; margin: 0 0 18px; padding: 0; font-size: 13px; color: rgba(255,255,255,.8); }
.hero-full--2 .emp-crumb ol { justify-content: center; }
.emp-crumb li + li::before { content: "/"; margin-right: 6px; opacity: .6; }
.emp-crumb a { color: #fff; text-decoration: none; } .emp-crumb a:hover { text-decoration: underline; }
.emp-hero--left { align-items: center; }
.emp-hero--left .hero-full__content { padding-block: calc(var(--bar-h) + var(--bar-gap) + 60px) 110px; }
.emp-lead { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 28px); line-height: 1.4; color: var(--ink); margin: 0; }
.emp-text p { color: #4A4A4A; line-height: 1.75; margin: 0 0 16px; }
.emp-text .title { margin-bottom: 18px; }
.emp-sig { font-family: var(--serif); font-style: italic; font-size: 20px; text-align: center; margin: 36px 0 0; }
/* faixa da missão */
.emp-mis { padding-block: clamp(56px, 7vw, 96px); text-align: center; }
.emp-mis .container { max-width: 900px; }
.emp-mis blockquote { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px); line-height: 1.45; margin: 14px 0 0; }
.emp-mis blockquote::before { content: "“"; display: block; font-size: 64px; line-height: .6; color: var(--red); margin-bottom: 8px; }
.emp-mis--gray { background: var(--gray-bg); }
.emp-mis--red { background: var(--red); color: #fff; } .emp-mis--red .eyebrow { color: #FFD6D8; } .emp-mis--red blockquote::before { color: #fff; }
.emp-mis--ink { background: var(--ink); color: #fff; } .emp-mis--ink .eyebrow { color: #FF8A91; }
/* 1 */
.emp1 { padding-block: clamp(56px, 7vw, 96px); }
.emp1__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: start; }
.emp1 .emp-lead { border-left: 3px solid var(--red); padding-left: 24px; }
/* 2 */
.emp-stats { position: relative; z-index: 3; list-style: none; margin: -56px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); background: #fff; box-shadow: 0 18px 40px rgba(0,0,0,.12); border-top: 3px solid var(--red); }
.emp-stats li { padding: 26px 28px; display: grid; gap: 4px; }
.emp-stats li + li { border-left: 1px solid #ECECEC; }
.emp-stats b { font-family: var(--serif); font-weight: 400; font-size: 28px; color: var(--red); line-height: 1.1; }
.emp-stats span { color: var(--gray-text); font-size: 14.5px; }
.emp2 { padding-block: clamp(56px, 7vw, 96px); }
.emp2__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.emp2__pic img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
/* 3 */
.emp3-hero { display: grid; grid-template-columns: 1fr 1.15fr; min-height: 600px; background: var(--ink); color: #fff; }
.emp3-hero__txt { display: flex; align-items: center; padding: calc(var(--bar-h) + var(--bar-gap) + 50px) clamp(24px, 5vw, 72px) 64px max(var(--gutter), calc((100vw - 1200px) / 2)); }
.emp3-hero__txt .eyebrow { color: #FF8A91; }
.emp3-hero__pic { display: block; margin: 0; } .emp3-hero__pic img { width: 100%; height: 100%; object-fit: cover; }
.emp3 { padding-block: clamp(56px, 7vw, 100px) clamp(48px, 6vw, 80px); }
.emp3__art { max-width: 760px; margin: 0 auto; padding-inline: var(--gutter); }
.emp3__art > p:not(.emp-lead):not(.emp-sig) { color: #4A4A4A; line-height: 1.8; font-size: 17px; margin: 22px 0 0; }
.emp-drop::first-letter { float: left; font-size: 88px; line-height: .8; padding: 8px 12px 0 0; color: var(--red); }
.emp-pull { margin: 44px 0 20px; padding: 6px 0 6px 28px; border-left: 4px solid var(--red); }
.emp-pull blockquote { font-family: var(--serif); font-size: clamp(22px, 2.3vw, 28px); line-height: 1.4; color: var(--red); margin: 10px 0 0; }
.emp3__band img { display: block; width: 100%; height: clamp(200px, 24vw, 340px); object-fit: cover; }
/* 4 */
.emp4 { padding-block: clamp(56px, 7vw, 96px); }
.emp4__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.emp4__pics { position: relative; padding-bottom: 60px; }
.emp4__pics .a { width: 88%; aspect-ratio: 4 / 3; object-fit: cover; }
.emp4__pics .b { position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 4 / 3; object-fit: cover; border: 8px solid #fff; box-shadow: 0 16px 34px rgba(0,0,0,.18); }
.emp4__vals { list-style: none; padding: 0; margin: clamp(48px, 6vw, 80px) 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.emp4__vals li { background: var(--gray-bg); padding: 30px 26px; border-top: 3px solid var(--red); transition: transform .25s, box-shadow .25s; }
.emp4__vals li:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(0,0,0,.1); }
.emp4__vals svg { width: 36px; height: 36px; fill: none; stroke: var(--red); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.emp4__vals h3 { font-family: var(--serif); font-size: 24px; margin: 14px 0 8px; }
.emp4__vals p { color: #4A4A4A; margin: 0; line-height: 1.65; }
.emp4__note { text-align: center; color: var(--gray-text); margin: 28px 0 0; }
@media (max-width: 900px) {
  .emp1__grid, .emp2__grid, .emp4__grid { grid-template-columns: 1fr; }
  .emp-stats { grid-template-columns: 1fr; margin-top: -40px; }
  .emp-stats li + li { border-left: 0; border-top: 1px solid #ECECEC; }
  .emp3-hero { grid-template-columns: 1fr; }
  .emp3-hero__txt { padding: calc(var(--bar-h) + var(--bar-gap) + 36px) var(--gutter) 44px; }
  .emp3-hero__pic { height: 260px; }
  .emp4__vals { grid-template-columns: 1fr; }
}
/* Empresa — foto do atendimento */
.emp1__photo { margin: clamp(40px, 5vw, 64px) 0 0; }
.emp1__photo img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; object-position: 60% 12%; }
.emp1__photo figcaption, .emp3__fig figcaption { font-size: 13px; color: var(--gray-text); margin-top: 10px; }
.emp2__pic img { object-position: 65% 20%; }
.emp3__fig { margin: 36px calc(-1 * clamp(0px, 6vw, 80px)) 8px; }
.emp3__fig img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: 60% 12%; }
.emp4__pics .a { object-position: 62% 18%; }
@media (max-width: 900px) { .emp1__photo img { aspect-ratio: 4 / 3; } .emp3__fig { margin-inline: 0; } }
/* Empresa 4: foto do atendimento no quadro menor */
.emp4__pics .a { object-position: center; }
.emp4__pics .b { width: 50%; object-position: 62% 18%; }
/* Empresa — Missão com foto de fundo em parallax e texto na largura da página */
.emp-mis--parallax { position: relative; color: #fff; background-color: var(--ink); background-size: cover; background-position: center; background-attachment: fixed; padding-block: clamp(80px, 10vw, 140px); }
.emp-mis--parallax::before { content: ""; position: absolute; inset: 0; background: rgba(20, 15, 11, .72); }
.emp-mis--parallax .container { position: relative; max-width: calc(var(--container) + var(--gutter) * 2); }
.emp-mis--parallax .eyebrow { color: #FF9AA0; }
.emp-mis--parallax blockquote { font-size: clamp(22px, 2.6vw, 34px); }
@media (hover: none), (max-width: 900px) { .emp-mis--parallax { background-attachment: scroll; } }
/* Título "Formas de pagamento" alinhado à esquerda do bloco da lista */
.ft1 .payv h2 { width: 100%; max-width: 300px; text-align: left; }

/* =========================================================
   Escala tipográfica padronizada (todas as páginas)
   Títulos: Playfair Display • Texto: Lato
   ========================================================= */
:root {
  --fs-h1: clamp(36px, 3.9vw, 56px);    /* título principal da página */
  --fs-h2: clamp(30px, 3vw, 44px);      /* título de seção */
  --fs-h2s: clamp(24px, 2.1vw, 30px);   /* subtítulo dentro do texto */
  --fs-h3: clamp(19px, 1.5vw, 22px);    /* título de cartão/etapa */
  --fs-lead: 19px;                      /* texto de abertura */
  --fs-body: 17px;                      /* texto corrido */
  --fs-small: 15px;                     /* resumos de cartões */
  --fs-xs: 13px;                        /* navegação de página, notas, legendas */
}
@media (max-width: 600px) { :root { --fs-lead: 17px; --fs-body: 16px; --fs-small: 14px; } }

.page-title, .emp-h1, .hero-full__title { font-size: var(--fs-h1); }
@media (min-width: 961px) { .hero-full--2 .hero-full__title { font-size: min(56px, calc((100vw - 2 * var(--gutter)) / 21.5)); } }
.title, .auto-o8 .big { font-size: var(--fs-h2); }
.prose h2:not(.callout), .prose > h2, .contact-card h2, .aside-card h2 { font-size: var(--fs-h2s); }
.prose h3:not(.callout), .h3, .post-card .h3, .card__bar h3, .related .card__bar h3, .catalog-grid .card__bar h3,
.prod-o2 .tile__box h3, .svc-o4 .step h3, .emp4__vals h3, .more-x--4 span.t { font-size: var(--fs-h3); }
.lead, .page-hero .lead, .hero-full__desc, .emp-desc { font-size: var(--fs-lead); }
:where(main) p { font-size: var(--fs-body); }
.prose p, .prose li, .emp-text p, .emp4__vals p, .svc-o4 .step p, .contact-card p, .prose h2.callout, .prose h3.callout { font-size: var(--fs-body); }
.post-card p, .aside-card p, .features li, .prod-o3 .item p, .emp4__note { font-size: var(--fs-small); }
.breadcrumb ol, .emp-crumb ol, .contact-card .note, .post-date, .emp1__photo figcaption, .emp3__fig figcaption { font-size: var(--fs-xs); }
/* exceções que continuam pequenas */
.prose .keywords h2, .prose .keywords h3 { font-size: 12px; }
.prose .keywords p { font-size: var(--fs-xs); }

/* =========================================================
   Página Produtos — 4 layouts (pl1..pl4), topo com foto
   ========================================================= */
.pl-intro p { color: #4A4A4A; font-size: var(--fs-body); line-height: 1.7; margin: 0 0 6px; }
.pl1, .pl2, .pl3 { padding-block: clamp(56px, 7vw, 96px); }
.pl1 .pl-intro { text-align: center; max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); }
.pl1__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pl1__grid .card__img, .pl3__grid .card__img, .pl4__grid .card__img { overflow: hidden; }
.pl1__grid .card__img img, .pl3__grid .card__img img, .pl4__grid .card__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s ease; }
.pl1__grid .card:hover img, .pl3__grid .card:hover img, .pl4__grid .card:hover img { transform: scale(1.05); }
/* 2 — foto com nome por cima + filtro */
.pl2__top { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px 40px; flex-wrap: wrap; margin-bottom: 32px; }
.pl2__top .pl-intro { max-width: 620px; }
.pl-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pl-chips button { font: 600 14px var(--sans); border: 1px solid #D5D2CE; background: #fff; color: var(--ink); padding: 10px 18px; border-radius: 999px; cursor: pointer; min-height: 44px; transition: background-color .2s, color .2s, border-color .2s; }
.pl-chips button:hover { border-color: var(--red); color: var(--red); }
.pl-chips button[aria-pressed="true"] { background: var(--red); border-color: var(--red); color: #fff; }
.pl2__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pov { position: relative; display: block; overflow: hidden; color: #fff; text-decoration: none; }
.pov[hidden] { display: none; }
.pov img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .6s ease; }
.pov::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,15,11,.78) 0%, rgba(20,15,11,0) 55%); }
.pov__t { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.pov__t b { font-family: var(--serif); font-weight: 400; font-size: var(--fs-h3); line-height: 1.2; }
.pov__t .arrow { width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%; background: var(--red); display: grid; place-items: center; transition: transform .25s; }
.pov:hover img { transform: scale(1.06); }
.pov:hover .arrow { transform: rotate(45deg); }
/* 3 — cartão sobre o topo, destaques grandes + grade */
.pl3-hero { min-height: 520px; }
.pl3-hero .hero-full__content { padding-bottom: 150px; }
.pl3-card { position: relative; z-index: 3; margin: -96px auto 0; max-width: 900px; background: #fff; padding: clamp(28px, 4vw, 44px); box-shadow: 0 20px 44px rgba(0,0,0,.12); border-top: 3px solid var(--red); text-align: center; }
.pl3-card__t { font-family: var(--serif); font-size: var(--fs-h2s); line-height: 1.3; margin: 0 0 14px; color: var(--ink); }
.pl3 .eyebrow { display: block; margin-bottom: 16px; }
.pl3__big { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: clamp(40px, 5vw, 64px); }
.pov--big img { aspect-ratio: 16 / 10; }
.pov--big .pov__t b { font-size: var(--fs-h2s); }
.pl3__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
/* 4 — topo dividido + grupos por categoria */
.pl4-hero { display: grid; grid-template-columns: 1fr 1.15fr; min-height: 560px; background: var(--ink); color: #fff; }
.pl4-hero__txt { display: flex; align-items: center; padding: calc(var(--bar-h) + var(--bar-gap) + 50px) clamp(24px, 5vw, 72px) 64px max(var(--gutter), calc((100vw - var(--container)) / 2)); }
.pl4-hero__txt .eyebrow { color: #FF8A91; }
.pl4-hero__pic { display: block; margin: 0; } .pl4-hero__pic img { width: 100%; height: 100%; object-fit: cover; }
.pl4-nav { position: sticky; top: 0; z-index: 20; background: #fff; border-bottom: 1px solid var(--gray-line); }
.pl4-nav .container { display: flex; align-items: center; gap: 8px 28px; flex-wrap: wrap; min-height: 60px; font-size: 15px; }
.pl4-nav span { color: var(--gray-text); font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.pl4-nav a { color: var(--ink); text-decoration: none; font-weight: 600; padding: 8px 0; border-bottom: 2px solid transparent; }
.pl4-nav a:hover { color: var(--red); border-color: var(--red); }
.pl4-intro { padding-block: clamp(40px, 5vw, 64px) 0; } .pl4-intro .pl-intro { max-width: 720px; }
.pl4-group { padding-block: clamp(40px, 5vw, 72px); scroll-margin-top: 140px; }
.pl4-group--gray { background: var(--gray-bg); }
.pl4__row { display: grid; grid-template-columns: 280px 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.pl4__head p { color: var(--gray-text); margin-top: 10px; }
.pl4__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
/* galeria final */
.prod-gal { padding-block: 0 clamp(56px, 7vw, 96px); }
.pl4-group + .prod-gal, .pl4-group--gray + .prod-gal { padding-top: clamp(56px, 7vw, 96px); }
.prod-gal .title { text-align: center; margin-bottom: 28px; }
.prod-gal ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.prod-gal img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (max-width: 1000px) {
  .pl1__grid, .pl4__grid, .pl2__grid, .pl3__grid { grid-template-columns: repeat(2, 1fr); }
  .pl4__row { grid-template-columns: 1fr; }
}
@media (max-width: 900px) { .pl4-hero { grid-template-columns: 1fr; } .pl4-hero__txt { padding: calc(var(--bar-h) + var(--bar-gap) + 36px) var(--gutter) 44px; } .pl4-hero__pic { height: 260px; } }
@media (max-width: 600px) {
  .pl1__grid, .pl3__grid, .pl3__big, .pl4__grid, .prod-gal ul { grid-template-columns: 1fr; }
  .pl2__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pov__t { left: 10px; right: 10px; bottom: 10px; } .pov__t b { font-size: 16px; } .pov__t .arrow { width: 28px; height: 28px; }
  .pl3-card { margin-top: -60px; }
}
.pl1__grid .card__img, .pl3__grid .card__img, .pl4__grid .card__img { aspect-ratio: 4 / 3; }

/* =========================================================
   Página Produtos — um bloco por segmento (estilo da Home)
   ========================================================= */
.seg-nav .btn { min-width: 150px; justify-content: center; }
.seg-intro { padding-block: clamp(48px, 6vw, 72px) 0; text-align: center; }
.seg-intro .pl-intro { max-width: 720px; margin: 0 auto; }
.seg { padding-block: clamp(56px, 7vw, 96px); scroll-margin-top: 90px; }
.seg--gray { background: var(--gray-bg); }
.seg--gray .tile { background: #fff; }
.seg-sub { color: var(--gray-text); margin-top: 10px; max-width: 520px; }
.seg .grid + .grid { margin-top: clamp(14px, 1.6vw, 24px); }
.prod-o2 .grid--flip { grid-template-columns: 1fr 1.25fr; }
.prod-o2 .grid--flip .tile--big { grid-column: 2; grid-row: 1 / 3; }
.prod-o2 .grid--row { grid-template-rows: 1fr; height: clamp(320px, 30vw, 440px); }
.prod-o2 .grid--n2 { grid-template-columns: 1fr 1fr; }
.prod-o2 .grid--n1 { grid-template-columns: 1fr; }
.prod-gal--seg { padding-top: clamp(56px, 7vw, 96px); }
@media (max-width: 960px) {
  .prod-o2 .grid--flip .tile--big { grid-column: 1 / -1; grid-row: auto; }
  .prod-o2 .grid--row { height: auto; }
}
@media (max-width: 600px) { .prod-o2 .grid--flip, .prod-o2 .grid--n2 { grid-template-columns: 1fr; } .prod-o2 .grid--row .tile { aspect-ratio: 4 / 3.4; } }
@media (min-width: 601px) and (max-width: 960px) { .prod-o2 .tile.tile--big { aspect-ratio: 16 / 11; } .prod-o2 .grid--flip { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   "Mais inspirações" — carrossel colado no rodapé (ig1..ig4)
   Todas as fotos no mesmo tamanho: 4:3
   ========================================================= */
.main--flush > .ig:last-child { margin-bottom: 0; }
.ig { padding-top: clamp(56px, 7vw, 96px); padding-bottom: 0; overflow: hidden; background: #fff; }
.ig-head { text-align: center; margin-bottom: 28px; }
.ig img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ig ul { list-style: none; margin: 0; padding: 0; }
/* 1 e 3 — faixa contínua */
.ig-marquee { overflow: hidden; }
.ig-track { display: flex; width: max-content; animation: igScroll 70s linear infinite; }
.ig-track li { width: clamp(240px, 24vw, 360px); flex-shrink: 0; }
.ig-marquee:hover .ig-track { animation-play-state: paused; }
.ig-marquee--rev .ig-track { animation-direction: reverse; animation-duration: 80s; }
.ig3 .ig-marquee + .ig-marquee { margin-top: 0; }
.ig3 .ig-track li { width: clamp(200px, 19vw, 290px); }
@keyframes igScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* 2 — carrossel com setas */
.ig-car { position: relative; }
.ig-rail { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2)); }
.ig-rail::-webkit-scrollbar { display: none; }
.ig-rail li { flex: 0 0 clamp(260px, 30vw, 420px); scroll-snap-align: start; }
.ig-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 52px; height: 52px; border-radius: 50%; border: 0; background: #fff; color: var(--red); font-size: 30px; line-height: 1; cursor: pointer; box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.ig-nav:hover { background: var(--red); color: #fff; }
.ig-prev { left: max(12px, calc((100vw - var(--container)) / 2 - 26px)); }
.ig-next { right: max(12px, calc((100vw - var(--container)) / 2 - 26px)); }
/* 4 — destaque + miniaturas */
.ig-stage { background: var(--ink); padding-bottom: 18px; }
.ig-big { position: relative; height: clamp(320px, 42vw, 600px); }
.ig-big li { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.ig-big li.is-on { opacity: 1; }
.ig-big img { aspect-ratio: auto; }
.ig-thumbs { display: flex; gap: 10px; overflow-x: auto; padding-top: 18px; scrollbar-width: thin; }
.ig-thumbs li { flex: 0 0 120px; }
.ig-thumbs button { display: block; width: 100%; padding: 0; border: 2px solid transparent; background: none; cursor: pointer; opacity: .55; transition: opacity .2s, border-color .2s; }
.ig-thumbs button:hover { opacity: .9; }
.ig-thumbs button[aria-current="true"] { opacity: 1; border-color: var(--red); }
@media (max-width: 600px) { .ig-nav { width: 42px; height: 42px; font-size: 24px; } .ig-thumbs li { flex-basis: 84px; } }
@media (prefers-reduced-motion: reduce) { .ig-track { animation: none; } .ig-marquee { overflow-x: auto; } }
/* Produtos: frase do topo em uma única linha no computador */
@media (min-width: 961px) {
  .hero-full__content:has(.emp-desc--line) { max-width: none; }
  .emp-desc--line { max-width: none; white-space: nowrap; font-size: min(var(--fs-lead), calc((100vw - 2 * var(--gutter)) / 58)); }
}
/* 3 — faixa única com fotos grandes e espaço entre elas */
.ig3 .ig-marquee--big .ig-track { gap: 14px; animation-duration: 90s; }
.ig3 .ig-marquee--big .ig-track li { width: clamp(280px, 32vw, 480px); overflow: hidden; }
.ig3 .ig-marquee--big img { transition: transform .6s ease; }
.ig3 .ig-marquee--big li:hover img { transform: scale(1.06); }
/* Produtos: fotos do carrossel "Mais inspirações" 50% menores */
.ig3 .ig-marquee--big .ig-track { gap: 10px; }
.ig3 .ig-marquee--big .ig-track li { width: clamp(140px, 16vw, 240px); }
.ig--nohead { padding-top: 0; }

/* =========================================================
   Produtos — texto de abertura: 4 layouts (pi1..pi4)
   ========================================================= */
.pi .pi__big { font-family: var(--serif); font-size: var(--fs-h2s); line-height: 1.3; margin: 0; }
.pi .pi__small { font-size: var(--fs-body); margin: 12px 0 0; }
.pi__down { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; vertical-align: middle; margin-left: 10px; animation: piBounce 1.8s ease-in-out infinite; }
.pi__down svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@keyframes piBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
/* 1 — faixa vermelha */
.pi1 { background: var(--red); color: #fff; padding-block: clamp(40px, 5vw, 64px); text-align: center; }
.pi1 .pi__big { font-size: clamp(26px, 2.6vw, 36px); }
.pi1 .pi__small { color: #FFE3E4; }
.pi1 .pi__down { background: #fff; color: var(--red); }
/* 2 — cartão sobre a foto */
.pi2 { position: relative; z-index: 3; margin-top: -70px; }
.pi2__card { position: relative; display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px 48px; align-items: center; background: #fff; padding: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 56px); box-shadow: 0 22px 50px rgba(0,0,0,.12); }
.pi2__bar { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--red); }
.pi2__side p { color: var(--gray-text); margin: 0 0 16px; }
.pi2__badge { display: inline-flex; align-items: baseline; gap: 8px; background: #FBEDEE; color: var(--red); padding: 10px 16px; font-weight: 700; font-size: 14px; }
.pi2__badge b { font-family: var(--serif); font-weight: 400; font-size: 28px; }
/* 3 — frase + números */
.pi3 { padding-block: clamp(56px, 7vw, 88px) 0; }
.pi3__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px clamp(32px, 6vw, 90px); align-items: center; }
.pi3__q { display: block; font-family: var(--serif); font-size: 90px; line-height: .6; color: var(--red); margin-bottom: 6px; }
.pi3 .pi__big { font-size: clamp(28px, 2.8vw, 40px); }
.pi3 .pi__small { color: var(--gray-text); }
.pi3__nums { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; border-left: 1px solid var(--gray-line); }
.pi3__nums li { display: flex; align-items: baseline; gap: 16px; padding: 16px 0 16px 28px; }
.pi3__nums li + li { border-top: 1px solid var(--gray-line); }
.pi3__nums b { font-family: var(--serif); font-weight: 400; font-size: 40px; color: var(--red); min-width: 90px; }
.pi3__nums span { color: #4A4A4A; }
/* 4 — faixa grafite */
.pi4 { background: var(--ink); color: #fff; text-align: center; padding-block: clamp(56px, 7vw, 88px); }
.pi4__line { display: block; width: 60px; height: 3px; background: var(--red); margin: 0 auto 22px; }
.pi4 .pi__big { font-style: italic; font-size: clamp(26px, 2.8vw, 38px); }
.pi4 .pi__small { color: #CFCAC5; }
.pi4__cats { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pi4__cats a { color: #fff; text-decoration: none; border: 1px solid rgba(255,255,255,.4); padding: 10px 20px; border-radius: 999px; font-weight: 600; font-size: 14px; }
.pi4__cats a:hover { background: var(--red); border-color: var(--red); }
.pi4__down { display: grid; margin: 22px auto 0; color: #fff; border: 1px solid rgba(255,255,255,.4); }
@media (max-width: 800px) { .pi2__card, .pi3__grid { grid-template-columns: 1fr; } .pi3__nums { border-left: 0; } .pi3__nums li { padding-left: 0; } .pi2 { margin-top: -40px; } }
@media (prefers-reduced-motion: reduce) { .pi__down { animation: none; } }
.plist li { border-bottom: 0; }

/* =========================================================
   Menu Produtos com todas as categorias (mega menu)
   ========================================================= */
.nav .chev { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; vertical-align: -2px; margin-left: 4px; transition: transform .2s; }
.has-mega { position: relative; }
.mega-toggle { display: none; }
.mega { position: absolute; left: 50%; top: 100%; transform: translate(-50%, 10px); padding-top: 18px; opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s; z-index: 60; }
.mega__in { width: min(760px, calc(100vw - 48px)); display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 32px; background: #fff; padding: 28px 32px 22px; border-top: 3px solid var(--red); box-shadow: 0 22px 48px rgba(0,0,0,.18); border-radius: 0 0 4px 4px; }
.mega__h { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin: 0 0 10px; }
.nav .mega ul { display: block; padding: 0; }
.nav .mega li + li { border-top: 0; }
.nav .mega a { display: block; padding: 7px 0; font-size: 15px; font-weight: 400; color: var(--ink); white-space: nowrap; }
.nav .mega a::after { display: none; }
.nav .mega a:hover { color: var(--red); }
.nav .mega .mega__all { grid-column: 1 / -1; margin-top: 10px; padding-top: 14px; border-top: 1px solid var(--gray-line); font-weight: 700; color: var(--red); }
@media (min-width: 961px) {
  .has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
  .has-mega:hover .chev { transform: rotate(180deg); }
}
@media (max-width: 960px) {
  .has-mega { display: flex; flex-wrap: wrap; align-items: center; }
  .has-mega > a { flex: 1; }
  .has-mega > a .chev { display: none; }
  .mega-toggle { display: grid; place-items: center; width: 44px; height: 44px; border: 0; background: none; color: var(--ink); cursor: pointer; }
  .mega-toggle .chev { width: 20px; height: 20px; margin: 0; }
  .has-mega.is-open .mega-toggle .chev { transform: rotate(180deg); }
  .mega { position: static; transform: none; padding: 0; opacity: 1; visibility: visible; display: none; width: 100%; }
  .has-mega.is-open .mega { display: block; }
  .mega__in { width: auto; grid-template-columns: 1fr; gap: 14px; box-shadow: none; border-top: 0; padding: 4px 0 14px 12px; }
  .nav .mega a { padding: 8px 0; white-space: normal; }
}
@media (max-width: 960px) { .header--float .nav { max-height: calc(100vh - var(--bar-h) - 40px); overflow-y: auto; } }

/* Efeito de entrada ao rolar (aplicado pelo js/slides.js em todas as páginas) */
.sfx { opacity: 0; transform: translateY(32px); transition: opacity .8s cubic-bezier(.2,.7,.2,1) var(--sfx-d, 0ms), transform .8s cubic-bezier(.2,.7,.2,1) var(--sfx-d, 0ms); will-change: opacity, transform; }
.sfx.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .sfx { opacity: 1; transform: none; transition: none; } }

/* =========================================================
   Página Contato — formulário + mapa (ct1..ct4)
   ========================================================= */
.ct-hero { min-height: 480px; }
.ct { padding-block: clamp(56px, 7vw, 96px); }
.ct .title { margin: 6px 0 22px; }
.ct-form { display: grid; gap: 14px; }
.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ct-form label { display: grid; gap: 6px; font-size: 14px; font-weight: 700; color: var(--ink); }
.ct-form input[type=text], .ct-form input[type=tel], .ct-form input[type=email], .ct-form select, .ct-form textarea {
  font: 400 16px var(--sans); color: var(--ink); background: #fff; border: 1px solid #D5D2CE; border-radius: 4px; padding: 12px 14px; min-height: 48px; width: 100%; transition: border-color .2s, box-shadow .2s; }
.ct-form textarea { resize: vertical; min-height: 130px; }
.ct-form :is(input, select, textarea):focus { outline: 0; border-color: var(--red); box-shadow: 0 0 0 3px rgba(198,0,11,.15); }
.ct-form .ct-check { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; font-size: 14px; color: #4A4A4A; }
.ct-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--red); flex-shrink: 0; }
.ct-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.ct-send { justify-self: start; min-height: 50px; padding-inline: 28px; }
.ct-send[disabled] { opacity: .6; cursor: wait; }
.ct-status { margin: 0; font-size: 14px; font-weight: 700; min-height: 1.4em; }
.ct-status.is-ok { color: #1E7E3E; } .ct-status.is-err { color: var(--red); }
.ct-map { position: relative; min-height: 420px; background: var(--gray-bg); overflow: hidden; }
.ct-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(.85); }
.ct-map__pin { position: absolute; left: 16px; bottom: 16px; z-index: 2; display: flex; align-items: center; gap: 12px; background: #fff; color: var(--ink); text-decoration: none; padding: 12px 16px 12px 12px; box-shadow: 0 12px 28px rgba(0,0,0,.2); border-left: 3px solid var(--red); max-width: calc(100% - 32px); }
.ct-map__pin svg { width: 34px; height: 34px; flex-shrink: 0; fill: var(--red); stroke: #fff; stroke-width: 1.4; animation: ctPin 1.8s ease-in-out infinite; }
.ct-map__pin b { display: block; font-size: 15px; } .ct-map__pin small { display: block; color: var(--gray-text); font-size: 13px; }
@keyframes ctPin { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.ct-info { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.ct-info li { display: flex; gap: 10px; align-items: center; font-size: 15px; }
.ct-info svg { width: 20px; height: 20px; flex-shrink: 0; fill: none; stroke: var(--red); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ct-info a { color: inherit; }
/* 1 — lado a lado */
.ct1__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.ct1 .ct-map { min-height: 100%; }
/* 2 — mapa inteiro com cartão por cima */
.ct2 { position: relative; padding: 0; }
.ct-map--full { position: absolute; inset: 0; min-height: 0; }
.ct-map--full .ct-map__pin { left: auto; right: 24px; bottom: 24px; }
.ct2__wrap { position: relative; z-index: 2; padding-block: clamp(48px, 6vw, 80px); pointer-events: none; }
.ct2__card { pointer-events: auto; width: min(520px, 100%); background: #fff; padding: clamp(24px, 3vw, 40px); box-shadow: 0 24px 60px rgba(0,0,0,.22); border-top: 4px solid var(--red); }
/* 3 — painel vermelho */
.ct3__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; box-shadow: 0 20px 50px rgba(0,0,0,.12); }
.ct3__panel { background: var(--red); color: #fff; padding: clamp(28px, 4vw, 52px); }
.ct3__panel .eyebrow { color: #FFD6D8; } .ct3__panel .title { color: #fff; }
.ct-form--dark label { color: #fff; } .ct-form--dark .ct-check { color: #FFE3E4; }
.ct-form--dark :is(input, select, textarea):focus { border-color: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.35); }
.ct-form--dark .ct-send { background: #fff; color: var(--red); border-color: #fff; }
.ct-form--dark .ct-status.is-ok, .ct-form--dark .ct-status.is-err { color: #fff; }
.ct-form--dark .ct-check input { accent-color: #fff; }
.ct3__side { display: flex; flex-direction: column; background: #fff; }
.ct3__side .ct-map { flex: 1; }
.ct3__side .ct-info { margin: 0; padding: 22px 26px; }
/* 4 — grafite */
.ct4 { background: var(--ink); color: #fff; }
.ct4__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: start; }
.ct4 .ct-map { min-height: 460px; }
.ct4 .ct-info li { color: #E6E6E6; }
.ct4__form .title { color: #fff; } .ct4__form .eyebrow { color: #FF8A91; }
.ct4 .ct-form label { color: #fff; } .ct4 .ct-form .ct-check { color: #CFCAC5; }
.ct4 .ct-form :is(input, select, textarea) { background: #2E2E2E; border-color: #474747; color: #fff; }
.ct4 .ct-status.is-ok { color: #6BE08F; } .ct4 .ct-status.is-err { color: #FF8A91; }
@media (max-width: 900px) {
  .ct1__grid, .ct3__grid, .ct4__grid { grid-template-columns: 1fr; }
  .ct1 .ct-map, .ct3__side .ct-map { min-height: 340px; }
  .ct2 { display: flex; flex-direction: column-reverse; }
  .ct-map--full { position: relative; min-height: 360px; }
  .ct2__wrap { padding-block: 32px; }
}
@media (max-width: 600px) { .ct-row { grid-template-columns: 1fr; } .ct-send { justify-self: stretch; } }
@media (prefers-reduced-motion: reduce) { .ct-map__pin svg { animation: none; } }

/* ---------- Popup "Solicitar orçamento": ligar ou WhatsApp ---------- */
html.orc-open { overflow: hidden; }
.orc-pop { position: fixed; inset: 0; z-index: 400; display: grid; place-items: center; padding: 16px; }
.orc-pop[hidden] { display: none; }
.orc-pop__bg { position: absolute; inset: 0; background: rgba(20, 20, 20, .62); opacity: 0; transition: opacity .2s ease; }
.orc-pop__box { position: relative; width: min(460px, 100%); background: #fff; border-radius: 16px; padding: 34px 28px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28); text-align: center; border-top: 5px solid #C6000B;
  transform: translateY(14px) scale(.97); opacity: 0; transition: transform .22s ease, opacity .22s ease; }
.orc-pop.is-open .orc-pop__bg { opacity: 1; }
.orc-pop.is-open .orc-pop__box { transform: none; opacity: 1; }
.orc-pop__x { position: absolute; top: 10px; right: 12px; width: 38px; height: 38px; border: 0; background: #F3F3F3; border-radius: 50%;
  font-size: 24px; line-height: 1; color: #232323; cursor: pointer; }
.orc-pop__x:hover { background: #e6e6e6; }
.orc-pop .eyebrow { display: block; margin-bottom: 6px; }
.orc-pop__t { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.35rem, 3.6vw, 1.7rem); line-height: 1.25; color: #232323; margin: 0 0 10px; }
.orc-pop__prod { margin: 0 0 18px; font-size: .98rem; color: #555; }
.orc-pop__prod b { color: #C6000B; }
.orc-pop__opts { display: grid; gap: 12px; margin-top: 18px; }
.orc-pop__opt { display: flex; align-items: center; gap: 14px; padding: 15px 18px; border-radius: 12px; text-align: left;
  text-decoration: none; transition: transform .15s ease, box-shadow .15s ease; }
.orc-pop__opt:hover, .orc-pop__opt:focus-visible { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0, 0, 0, .14); }
.orc-pop__opt svg { width: 30px; height: 30px; flex: 0 0 30px; }
.orc-pop__opt span { display: flex; flex-direction: column; }
.orc-pop__opt b { font-size: 1.08rem; }
.orc-pop__opt small { font-size: .88rem; opacity: .85; margin-top: 2px; }
.orc-pop__opt--wa { background: #1faa55; color: #fff; }
.orc-pop__opt--wa svg { fill: #fff; }
.orc-pop__opt--tel { background: #232323; color: #fff; }
.orc-pop__opt--tel svg { fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.orc-pop__note { margin: 16px 0 0; font-size: .86rem; color: #6b6b6b; }
@media (prefers-reduced-motion: reduce) { .orc-pop__bg, .orc-pop__box { transition: none; } }

/* Formulário de contato: obrigatórios e mensagens de erro por campo */
.ct-form .req { color: #C6000B; font-weight: 700; }
.ct-req-note { margin: 2px 0 12px; font-size: .86rem; color: #6b6b6b; }
.ct-form--dark .ct-req-note { color: rgba(255,255,255,.8); }
.ct-form .is-bad { border-color: #C6000B !important; box-shadow: 0 0 0 3px rgba(198, 0, 11, .12); }
.ct-err { display: block; margin-top: 5px; font-size: .84rem; font-weight: 400; color: #C6000B; line-height: 1.35; }
.ct-err:empty { display: none; }
.ct-form--dark .ct-err { color: #ffd4d6; }
.ct-sug { border: 0; background: none; padding: 0; font: inherit; font-weight: 700; color: #C6000B; text-decoration: underline; cursor: pointer; }
.ct-form .ct-check { flex-wrap: wrap; }
.ct-check .ct-err { flex-basis: 100%; margin: 0 0 0 28px; }

/* ---------- Botão "Solicitar orçamento" do menu: 4 modelos ---------- */
.hcta { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; text-decoration: none; white-space: nowrap;
  font-family: 'Lato', system-ui, sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .02em; line-height: 1.1;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease, border-color .2s ease; }
.hcta svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.hcta:focus-visible { outline: 3px solid rgba(198, 0, 11, .35); outline-offset: 3px; }
/* 1 — Pílula vermelha com ícone */
.hcta--1 { background: #C6000B; color: #fff; border-radius: 999px; padding: 6px 22px 6px 6px; box-shadow: 0 6px 18px rgba(198, 0, 11, .28); }
.hcta--1 .hcta__ic { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255, 255, 255, .18); }
.hcta--1:hover { background: #a70009; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(198, 0, 11, .34); }
/* 2 — Contorno elegante */
.hcta--2 { background: transparent; color: #C6000B; border: 1.5px solid #C6000B; border-radius: 999px; padding: 0 20px 0 24px;
  text-transform: uppercase; font-size: 12.5px; letter-spacing: .12em; }
.hcta--2 .hcta__ar { display: grid; place-items: center; transition: transform .2s ease; }
.hcta--2:hover { background: #C6000B; color: #fff; }
.hcta--2:hover .hcta__ar { transform: translate(2px, -2px); }
/* 3 — Grafite com círculo vermelho */
.hcta--3 { background: #232323; color: #fff; border-radius: 999px; padding: 5px 5px 5px 22px; gap: 14px; }
.hcta--3 .hcta__ci { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: #C6000B; transition: transform .25s ease; }
.hcta--3:hover { background: #000; }
.hcta--3:hover .hcta__ci { transform: rotate(45deg); }
/* 4 — Dois níveis */
.hcta--4 { background: #C6000B; color: #fff; border-radius: 10px; padding: 7px 18px 7px 12px; gap: 11px; box-shadow: 0 6px 16px rgba(198, 0, 11, .22); }
.hcta--4 .hcta__ic { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 8px; background: rgba(255, 255, 255, .16); }
.hcta--4 .hcta__tx { display: flex; flex-direction: column; gap: 2px; }
.hcta--4 small { font-size: 10px; font-weight: 400; text-transform: uppercase; letter-spacing: .14em; opacity: .85; }
.hcta--4 b { font-size: 14.5px; }
.hcta--4:hover { background: #a70009; transform: translateY(-1px); }
.header--float.is-scrolled .hcta { min-height: 40px; }
@media (max-width: 1100px) and (min-width: 961px) { .hcta { font-size: 13px; } .hcta--1 { padding-right: 16px; } .hcta--3 { padding-left: 16px; } }
@media (prefers-reduced-motion: reduce) { .hcta, .hcta * { transition: none !important; } }

/* =========================================================
   Página interna de produto (pp) — topo com foto + 4 layouts
   ========================================================= */
.pp-hero.emp-hero { min-height: 460px; }
.pp-hero .emp-h1 { max-width: 900px; margin-inline: auto; }
.pp-plain { padding-block: clamp(48px, 6vw, 80px); }
.pp-plain .prose { max-width: 860px; margin-inline: auto; }
.pp section { scroll-margin-top: 110px; }
.pp .narrow { max-width: 860px; }
.pp-lead p { font-size: var(--fs-lead, 18px); line-height: 1.7; color: #4a4a4a; margin: 0 0 16px; }
.pp-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin-top: 26px; }
.pp-tel { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ink); text-decoration: none; }
.pp-tel svg { width: 20px; height: 20px; fill: none; stroke: var(--red); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pp-tel:hover span { text-decoration: underline; }
.pp-tel--light { color: #fff; } .pp-tel--light svg { stroke: #fff; }
.pp-zoom { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; overflow: hidden; }
.pp-zoom img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pp-zoom:hover img { transform: scale(1.04); }
.pp-prose { padding-block: 0 40px; }
.pp-ben { padding-block: clamp(56px, 7vw, 96px); }
.pp-ben__head { max-width: 760px; margin-bottom: 36px; }
.pp-ben__sub { color: #6b6b6b; margin: 10px 0 0; font-size: 17px; }
.pp-ben__end { max-width: 820px; margin: 34px 0 0; font-size: 17px; line-height: 1.7; color: #4a4a4a; }
.pp-gal { padding-block: clamp(56px, 7vw, 90px); }
.pp-gal ul { list-style: none; margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pp-gal li .pp-zoom { aspect-ratio: 4 / 3; border-radius: 6px; }
.pp-cta { background: var(--ink); color: #fff; padding-block: clamp(44px, 5vw, 64px); }
.pp-cta__in { display: flex; align-items: center; justify-content: space-between; gap: 28px 48px; flex-wrap: wrap; }
.pp-cta .title { color: #fff; margin: 0 0 10px; }
.pp-cta p { margin: 0; color: #d9d4ce; max-width: 640px; }
.pp-cta .pp-actions { margin-top: 0; }
.pp-tags { padding-block: 40px 10px; }
.pp-tags__t { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin: 0 0 14px; }
.pp-tags ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.pp-tags li { font-size: 13px; padding: 7px 13px; border-radius: 999px; background: #F3F3F3; color: #4a4a4a; }

/* 1 — Editorial */
.pp1-intro { padding-block: clamp(56px, 7vw, 96px); }
.pp1-intro__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.pp1-intro__img .pp-zoom { aspect-ratio: 6 / 5; border-radius: 10px; box-shadow: 0 24px 50px rgba(0,0,0,.14); }
.pp1-ben { background: #f6f1e7; }
.pp1-cards { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pp1-cards li { background: #fff; border-radius: 10px; padding: 26px 22px; border-top: 3px solid var(--red); box-shadow: 0 8px 22px rgba(0,0,0,.05); }
.pp1-n { display: block; font-family: var(--serif); font-size: 34px; color: var(--red); line-height: 1; margin-bottom: 14px; }
.pp1-cards h3 { font-family: var(--sans); font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--ink); }
.pp1-cards p { margin: 0; font-size: 15px; line-height: 1.6; color: #555; }
.pp1-gal ul { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; }
.pp1-gal li:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.pp1-gal li:nth-child(6) { grid-column: span 2; }
.pp1-gal li .pp-zoom { aspect-ratio: auto; height: 100%; }

/* 2 — Imersivo */
.pp2-intro { padding-block: clamp(60px, 8vw, 110px) clamp(40px, 5vw, 64px); text-align: center; }
.pp2-intro p { font-family: var(--serif); font-size: clamp(21px, 2.2vw, 28px); line-height: 1.55; color: var(--ink); margin: 0 auto 18px; }
.pp2-intro .pp-actions { justify-content: center; }
.pp2-strip { padding-block: 10px clamp(56px, 7vw, 90px); overflow: hidden; }
.pp2-strip ul { list-style: none; margin: 0; padding: 0 var(--gutter); display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.pp2-strip li { flex: 0 0 clamp(220px, 24vw, 320px); scroll-snap-align: start; }
.pp2-strip .pp-zoom { aspect-ratio: 13 / 16; border-radius: 10px; }
.pp2-ben { background: var(--ink); color: #fff; }
.pp2-ben .title { color: #fff; } .pp2-ben .pp-ben__sub, .pp2-ben .pp-ben__end { color: #cfcac5; }
.pp2-ben .eyebrow { color: #FF8A91; }
.pp2-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 28px; }
.pp2-n { display: grid; place-items: center; width: 46px; height: 46px; border: 1.5px solid var(--red); border-radius: 50%; font-weight: 700; color: #fff; margin-bottom: 16px; }
.pp2-grid h3 { font-family: var(--sans); font-size: 17px; font-weight: 700; margin: 0 0 8px; color: #fff; }
.pp2-grid p { margin: 0; font-size: 15px; line-height: 1.6; color: #cfcac5; }
.pp2-cta { background: var(--red); }
.pp2-cta p { color: #ffe3e4; }

/* 3 — Ficha do produto */
.pp3 { padding-block: clamp(48px, 6vw, 84px); }
.pp3-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 4.5vw, 64px); align-items: start; }
.pp3-media { position: sticky; top: 110px; }
.pp3-main { aspect-ratio: 5 / 4; border-radius: 10px; overflow: hidden; background: #F3F3F3; }
.pp3-main img { display: block; width: 100%; height: 100%; object-fit: cover; transition: opacity .15s ease; }
.pp3-main.is-swap img { opacity: .25; }
.pp3-thumbs { list-style: none; margin: 12px 0 0; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.pp3-th { display: block; width: 100%; padding: 0; border: 2px solid transparent; border-radius: 6px; overflow: hidden; background: none; cursor: pointer; aspect-ratio: 4 / 3; opacity: .7; transition: opacity .2s, border-color .2s; }
.pp3-th img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pp3-th:hover, .pp3-th.is-on { opacity: 1; border-color: var(--red); }
.pp3-quick { list-style: none; margin: 8px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.pp3-quick li { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15px; color: var(--ink); }
.pp3-quick svg { width: 20px; height: 20px; flex: 0 0 20px; padding: 3px; border-radius: 50%; background: var(--red); fill: none; stroke: #fff; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.pp3-ben { background: #F3F3F3; }
.pp3-ben__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.pp3-acc details { background: #fff; border-radius: 8px; margin-bottom: 10px; }
.pp3-acc summary { list-style: none; display: flex; align-items: center; gap: 14px; padding: 18px 20px; cursor: pointer; font-weight: 700; color: var(--ink); }
.pp3-acc summary::-webkit-details-marker { display: none; }
.pp3-n { color: var(--red); font-family: var(--serif); font-size: 22px; min-width: 22px; }
.pp3-s { flex: 1; }
.pp3-acc summary svg { width: 20px; height: 20px; fill: none; stroke: var(--red); stroke-width: 2; stroke-linecap: round; transition: transform .2s; }
.pp3-acc details[open] summary svg { transform: rotate(45deg); }
.pp3-acc details p { margin: 0; padding: 0 20px 20px 56px; color: #555; line-height: 1.65; }
.pp3-acc .pp-ben__end { margin-top: 22px; }

/* 4 — Alternado */
.pp4-top { padding-block: clamp(48px, 6vw, 80px) 0; }
.pp4-col { display: grid; grid-template-columns: 1fr 1.25fr 1fr; gap: 14px; align-items: end; }
.pp4-col__i .pp-zoom { aspect-ratio: 4 / 5; border-radius: 10px; }
.pp4-col__i:nth-child(2) .pp-zoom { aspect-ratio: 4 / 4.4; }
.pp4-rows { padding-block: clamp(40px, 6vw, 80px); }
.pp4-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: center; padding-block: clamp(28px, 4vw, 48px); }
.pp4-row--rev .pp4-row__img { order: 2; }
.pp4-row__img .pp-zoom { aspect-ratio: 5 / 4; border-radius: 10px; }
.pp4-row .pp-ben__head { margin-bottom: 20px; }
.pp4-list { list-style: none; counter-reset: pp4; margin: 0; padding: 0; display: grid; gap: 18px; }
.pp4-list li { counter-increment: pp4; position: relative; padding-left: 52px; }
.pp4-row:last-child .pp4-list { counter-reset: pp4 4; }
.pp4-list li::before { content: counter(pp4, decimal-leading-zero); position: absolute; left: 0; top: -2px; font-family: var(--serif); font-size: 26px; color: var(--red); }
.pp4-list b { display: block; color: var(--ink); margin-bottom: 4px; }
.pp4-list span { color: #555; line-height: 1.6; }
.pp4-gal { background: #f6f1e7; }
.pp4-cta { background: #f6f1e7; color: var(--ink); border-top: 1px solid rgba(0,0,0,.06); }
.pp4-cta .title { color: var(--ink); } .pp4-cta p { color: #555; }
.pp4-cta .pp-tel--light { color: var(--ink); } .pp4-cta .pp-tel--light svg { stroke: var(--red); }

@media (max-width: 1100px) {
  .pp1-cards, .pp2-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .pp1-intro__grid, .pp3-grid, .pp3-ben__grid, .pp4-row { grid-template-columns: 1fr; }
  .pp4-row--rev .pp4-row__img { order: 0; }
  .pp3-media { position: static; }
  .pp-gal ul, .pp1-gal ul { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .pp1-gal li:nth-child(n) { grid-column: auto; grid-row: auto; }
  .pp1-gal li .pp-zoom { aspect-ratio: 4 / 3; height: auto; }
  .pp4-col { grid-template-columns: 1fr 1fr; }
  .pp4-col__i:nth-child(3) { display: none; }
  .pp-cta__in { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .pp1-cards, .pp2-grid, .pp3-quick { grid-template-columns: 1fr; }
  .pp3-thumbs { grid-template-columns: repeat(4, 1fr); }
  .pp-hero.emp-hero { min-height: 380px; }
}
@media (max-width: 960px) { .header .hcta.header__cta { display: none; } }

/* ---------- Bloco de benefícios da página de produto: 4 opções (bb1–bb4) ---------- */
.bb-center { text-align: center; margin-inline: auto; }
.pp-ben__head.bb-center { max-width: 760px; }
/* 1 — Cartões */
.bb1 { background: #f6f1e7; }
.bb1-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bb1-grid li { background: #fff; border-radius: 12px; padding: 28px 26px; box-shadow: 0 10px 26px rgba(0,0,0,.05); transition: transform .25s ease, box-shadow .25s ease; }
.bb1-grid li:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(0,0,0,.09); }
.bb1-n { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--red); color: #fff; font-weight: 700; margin-bottom: 16px; }
.bb1-grid h3 { font-family: var(--sans); font-size: 18px; font-weight: 700; margin: 0 0 8px; color: var(--ink); }
.bb1-grid p { margin: 0; color: #555; line-height: 1.6; font-size: 15.5px; }
.bb1 .pp-ben__end { text-align: center; margin-inline: auto; }
/* 2 — Foto + lista */
.bb2 { background: #fff; }
.bb2-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.bb2-pic img { display: block; width: 100%; aspect-ratio: 9 / 11; object-fit: cover; border-radius: 12px; box-shadow: 0 24px 50px rgba(0,0,0,.14); }
.bb2-list { list-style: none; margin: 0; padding: 0; }
.bb2-list li { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid #ece7df; }
.bb2-list li:last-child { border-bottom: 0; }
.bb2-n { flex: 0 0 auto; font-family: var(--serif); font-size: 30px; line-height: 1; color: var(--red); min-width: 30px; }
.bb2-list h3 { font-family: var(--sans); font-size: 17px; font-weight: 700; margin: 2px 0 6px; color: var(--ink); }
.bb2-list p { margin: 0; color: #555; line-height: 1.6; font-size: 15.5px; }
/* 3 — Linha do tempo */
.bb3 { background: #F3F3F3; }
.bb3-line { list-style: none; margin: 10px auto 0; padding: 0; position: relative; max-width: 980px; }
.bb3-line::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--red); transform: translateX(-50%); }
.bb3-line li { position: relative; width: 50%; padding: 14px 44px 14px 0; }
.bb3-line li:nth-child(even) { margin-left: 50%; padding: 14px 0 14px 44px; }
.bb3-dot { position: absolute; top: 26px; right: -20px; width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 2px solid var(--red); color: var(--red); display: grid; place-items: center; font-weight: 700; z-index: 1; }
.bb3-line li:nth-child(even) .bb3-dot { right: auto; left: -20px; }
.bb3-card { background: #fff; border-radius: 10px; padding: 22px 24px; box-shadow: 0 8px 22px rgba(0,0,0,.05); }
.bb3-line li:nth-child(odd) .bb3-card { text-align: right; }
.bb3-card h3 { font-family: var(--sans); font-size: 17px; font-weight: 700; margin: 0 0 6px; color: var(--ink); }
.bb3-card p { margin: 0; color: #555; line-height: 1.6; font-size: 15.5px; }
.bb3 .pp-ben__end { margin-inline: auto; }
/* 4 — Painel com abas */
.bb4 { background: var(--ink); color: #fff; }
.bb4 .title { color: #fff; } .bb4 .eyebrow { color: #FF8A91; } .bb4 .pp-ben__sub, .bb4 .pp-ben__end { color: #cfcac5; }
.bb4-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(24px, 4vw, 56px); align-items: stretch; }
.bb4-tabs { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.bb4-tab { width: 100%; display: flex; align-items: center; gap: 14px; text-align: left; padding: 16px 18px; border: 0; border-radius: 10px;
  background: rgba(255,255,255,.05); color: #e9e4de; font: 700 16px var(--sans); cursor: pointer; transition: background .2s, color .2s; }
.bb4-tab span { color: #FF8A91; font-family: var(--serif); font-size: 20px; min-width: 28px; }
.bb4-tab:hover { background: rgba(255,255,255,.1); }
.bb4-tab.is-on { background: var(--red); color: #fff; } .bb4-tab.is-on span { color: #fff; }
.bb4-panel { position: relative; background: #fff; color: var(--ink); border-radius: 14px; padding: clamp(28px, 4vw, 52px); display: flex; }
.bb4-pane { align-self: center; animation: bb4in .35s ease; }
.bb4-big { display: block; font-family: var(--serif); font-size: clamp(64px, 8vw, 110px); line-height: .9; color: var(--red); margin-bottom: 18px; }
.bb4-pane h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 2.6vw, 36px); margin: 0 0 12px; }
.bb4-pane p { margin: 0; font-size: 18px; line-height: 1.7; color: #555; }
@keyframes bb4in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (max-width: 960px) {
  .bb1-grid { grid-template-columns: 1fr 1fr; }
  .bb2-grid, .bb4-grid { grid-template-columns: 1fr; }
  .bb2-pic img { aspect-ratio: 4 / 3; }
  .bb3-line::before { left: 20px; }
  .bb3-line li, .bb3-line li:nth-child(even) { width: auto; margin-left: 0; padding: 12px 0 12px 58px; }
  .bb3-dot, .bb3-line li:nth-child(even) .bb3-dot { left: 0; right: auto; }
  .bb3-line li:nth-child(odd) .bb3-card { text-align: left; }
}
@media (max-width: 560px) { .bb1-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .bb4-pane { animation: none; } .bb1-grid li { transition: none; } }

/* ---------- Página de produto: galeria "Projetos realizados" em carrossel infinito (pg1–pg4) ---------- */
.pg { padding-block: clamp(56px, 7vw, 90px); overflow: hidden; background: #fff; }
.pg-head { margin-bottom: 26px; }
.pg-head--center { text-align: center; }
.pg ul { list-style: none; margin: 0; padding: 0; }
.pg-marquee { overflow: hidden; }
.pg-track { display: flex; width: max-content; animation: pgScroll 80s linear infinite; }
.pg-track li { flex-shrink: 0; margin-right: 14px; }
.pg-marquee:hover .pg-track { animation-play-state: paused; }
.pg-marquee--rev .pg-track { animation-direction: reverse; }
@keyframes pgScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.pg-it { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; overflow: hidden; border-radius: 10px; }
.pg-it img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pg-it:hover img { transform: scale(1.06); }
/* 1 — faixa contínua */
.pg1 .pg-track li { width: clamp(240px, 24vw, 340px); aspect-ratio: 4 / 3; }
/* 2 — duas faixas em sentidos opostos */
.pg2 { background: #f6f1e7; }
.pg2 .pg-marquee + .pg-marquee { margin-top: 14px; }
.pg2 .pg-track { animation-duration: 70s; }
.pg2 .pg-track li { width: clamp(200px, 19vw, 280px); aspect-ratio: 4 / 3; }
/* 3 — faixa grande em fundo grafite, com as bordas esfumadas */
.pg3 { background: var(--ink); }
.pg3 .title { color: #fff; } .pg3 .eyebrow { color: #FF8A91; }
.pg3 .pg-marquee { -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.pg3 .pg-track { animation-duration: 110s; }
.pg3 .pg-track li { width: clamp(300px, 38vw, 560px); aspect-ratio: 3 / 2; margin-right: 18px; }
.pg3 .pg-it { border-radius: 4px; }
/* 4 — alturas variadas (em pé e deitadas alternando) */
.pg4 { background: #F3F3F3; }
.pg4 .pg-track { align-items: flex-end; animation-duration: 90s; }
.pg4 .pg-track li.pg-tall { width: clamp(200px, 18vw, 270px); aspect-ratio: 4 / 5; }
.pg4 .pg-track li.pg-wide { width: clamp(260px, 26vw, 380px); aspect-ratio: 4 / 3; }
.pg4 .pg-it { border-radius: 14px; box-shadow: 0 12px 26px rgba(0,0,0,.08); }
@media (max-width: 600px) {
  .pg1 .pg-track li { width: 200px; } .pg2 .pg-track li { width: 170px; }
  .pg3 .pg-track li { width: 260px; } .pg4 .pg-track li.pg-tall { width: 160px; } .pg4 .pg-track li.pg-wide { width: 220px; }
}
@media (prefers-reduced-motion: reduce) { .pg-track { animation: none; } .pg-marquee { overflow-x: auto; } }
/* Galeria aprovada (opção 1): cantos retos */
.pg1 .pg-it { border-radius: 0; }
/* "Veja também": etiquetas centralizadas na largura da página */
.pill-links { justify-content: center; text-align: center; }
/* Título do bloco de benefícios em uma única linha no computador (letra diminui só se o título for muito longo) */
@media (min-width: 961px) {
  .pp-ben__head.bb-center { max-width: none; }
  .pp-ben__t { white-space: nowrap; font-size: min(var(--fs-h2), calc(min(100vw - 2 * var(--gutter), var(--container)) / (var(--ch) * .5))); }
}
/* Benefícios (cartões): ícone ao lado do título, no lugar do número */
.bb1-top { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.bb1-top h3 { margin: 0; }
.bb1-ic { flex: 0 0 48px; width: 48px; height: 48px; border-radius: 50%; background: var(--red); display: grid; place-items: center; }
.bb1-ic svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
/* Galeria "Projetos realizados": fotos não ampliam (sem clique, sem zoom) */
.pg-it { cursor: default; }
.pg-it:hover img { transform: none; }

/* ---------- Página de produto: convite de orçamento (abre após 70 s, uma vez só) ---------- */
.pp-offer { position: fixed; inset: 0; z-index: 420; display: grid; place-items: center; padding: 16px; }
.pp-offer__bg { position: absolute; inset: 0; background: rgba(20,20,20,.6); opacity: 0; transition: opacity .25s ease; }
.pp-offer__box { position: relative; width: min(560px, 100%); max-height: calc(100vh - 32px); overflow: auto; background: #fff; border-radius: 16px;
  padding: 34px 30px 26px; text-align: center; border-top: 5px solid #C6000B; box-shadow: 0 24px 60px rgba(0,0,0,.3);
  transform: translateY(16px) scale(.97); opacity: 0; transition: transform .25s ease, opacity .25s ease; }
.pp-offer.is-open .pp-offer__bg { opacity: 1; }
.pp-offer.is-open .pp-offer__box { transform: none; opacity: 1; }
.pp-offer__x { position: absolute; top: 10px; right: 12px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: #F3F3F3; font-size: 24px; line-height: 1; cursor: pointer; color: #232323; }
.pp-offer .eyebrow { display: block; margin-bottom: 6px; }
.pp-offer__t { font-family: 'Playfair Display', Georgia, serif; font-weight: 400; font-size: clamp(24px, 3.4vw, 32px); line-height: 1.2; margin: 0 0 10px; color: #232323; }
.pp-offer__lead { margin: 0 0 16px; color: #555; line-height: 1.6; }
.pp-offer__q { margin: 0 0 10px; font-weight: 700; color: #232323; }
.pp-offer__pics { list-style: none; margin: 0 0 16px; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.pp-offer__pics button { position: relative; display: block; width: 100%; padding: 0; border: 3px solid transparent; border-radius: 8px; overflow: hidden; background: none; cursor: pointer; aspect-ratio: 4 / 3; transition: border-color .15s, transform .15s; }
.pp-offer__pics img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pp-offer__pics span { position: absolute; left: 6px; top: 6px; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.9); color: #232323; font-size: 12px; font-weight: 700; display: grid; place-items: center; }
.pp-offer__pics button:hover { transform: translateY(-2px); }
.pp-offer__pics button[aria-pressed="true"] { border-color: #C6000B; }
.pp-offer__pics button[aria-pressed="true"] span { background: #C6000B; color: #fff; }
.pp-offer__bens { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 14px; }
.pp-offer__bens li { font-size: 14px; font-weight: 700; color: #232323; }
.pp-offer__bens li::before { content: "✓"; color: #C6000B; margin-right: 6px; }
.pp-offer__acts { display: grid; gap: 10px; }
.pp-offer__wa { display: block; padding: 15px 18px; border-radius: 10px; background: #1faa55; color: #fff; font-weight: 700; text-decoration: none; }
.pp-offer__wa:hover { background: #178c45; }
.pp-offer__tel { display: block; padding: 12px 18px; border-radius: 10px; border: 1.5px solid #232323; color: #232323; font-weight: 700; text-decoration: none; }
.pp-offer__tel:hover { background: #232323; color: #fff; }
.pp-offer__foot { margin: 14px 0 0; font-size: 13px; color: #777; }
@media (max-width: 480px) { .pp-offer__box { padding: 30px 18px 20px; } .pp-offer__pics { grid-template-columns: repeat(3, 1fr); gap: 6px; } }
@media (prefers-reduced-motion: reduce) { .pp-offer__bg, .pp-offer__box { transition: none; } }
/* Contato: mapa desenhado (SVG) — funciona sem depender do Google; clique abre o Google Maps */
.ct-map__link { position: absolute; inset: 0; display: block; }
.ct-map__svg { width: 100%; height: 100%; display: block; }
.ct-map__svg .m { stroke: #FBE3BD; }
.ct-map__lbl { font-family: var(--sans); font-size: 19px; font-weight: 700; fill: #6b6259; text-anchor: middle; paint-order: stroke; stroke: #fff; stroke-width: 5px; stroke-linejoin: round; }
.ct-map__cr { font-family: var(--sans); font-size: 13px; fill: #8a8178; }
.ct-map__mk circle:first-child { animation: ctPulse 2.2s ease-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes ctPulse { 0% { transform: scale(.6); opacity: .35; } 100% { transform: scale(1.6); opacity: 0; } }
.ct-map__open { position: absolute; right: 16px; top: 16px; z-index: 2; background: #fff; color: var(--ink); text-decoration: none; font-weight: 700; font-size: 14px; padding: 9px 14px; box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.ct-map__open:hover { color: var(--red); }
@media (prefers-reduced-motion: reduce) { .ct-map__mk circle:first-child { animation: none; } }

/* =========================================================
   Clientes (cl1–cl4) e 404 (nf1–nf4) — em aprovação
   ========================================================= */
.cl { padding-block: clamp(56px, 7vw, 96px); text-align: center; }
.cl-frase { font-size: var(--fs-lead, 18px); color: #555; margin: 0 auto 32px; max-width: 720px; }
.cl-cta { margin-top: 36px; text-align: center; }
.cl-logo { margin: 0; background: #fff; border-radius: 12px; display: grid; place-items: center; padding: 18px; aspect-ratio: 4 / 3; box-shadow: 0 8px 22px rgba(0,0,0,.06); }
.cl-logo img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
/* 1 — grade */
.cl1 { background: #f6f1e7; }
.cl1-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 18px; max-width: 1040px; margin: 0 auto; }
.cl1 .cl-logo img { filter: grayscale(1); opacity: .8; transition: filter .3s, opacity .3s; }
.cl1 .cl-logo:hover img { filter: none; opacity: 1; }
/* 2 — faixa infinita */
.cl2 { overflow: hidden; }
.cl2-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.cl2-track { list-style: none; margin: 0; padding: 10px 0; display: flex; width: max-content; animation: pgScroll 40s linear infinite; }
.cl2-track li { width: 220px; margin-right: 22px; flex-shrink: 0; }
.cl2-marquee:hover .cl2-track { animation-play-state: paused; }
/* 3 — texto + mosaico */
.cl3 { text-align: left; }
.cl3-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.cl3 .cl-frase { margin: 12px 0 26px; }
.cl3-mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cl3-mosaic .cl-logo { background: #F3F3F3; box-shadow: none; }
/* 4 — grafite */
.cl4 { background: var(--ink); }
.cl4 .title { color: #fff; } .cl4 .eyebrow { color: #FF8A91; } .cl4 .cl-frase { color: #cfcac5; }
.cl4-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; max-width: 1040px; margin: 0 auto; }
.cl4 .cl-logo { animation: clFloat 6s ease-in-out infinite; }
.cl4 .cl-logo:nth-child(2n) { animation-delay: -2s; } .cl4 .cl-logo:nth-child(3n) { animation-delay: -4s; }
@keyframes clFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@media (max-width: 860px) { .cl3-grid { grid-template-columns: 1fr; } .cl3 { text-align: center; } .cl3 .cl-frase { margin-inline: auto; } }
@media (prefers-reduced-motion: reduce) { .cl2-track, .cl4 .cl-logo { animation: none; } }

.nf-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }
/* 1 — número grande sobre a foto */
.nf1 { position: relative; min-height: 88vh; display: grid; place-items: center; text-align: center; color: #fff; overflow: hidden; }
.nf1-bg, .nf1-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nf1::after { content: ""; position: absolute; inset: 0; background: rgba(20, 15, 11, .6); }
.nf1-in { position: relative; z-index: 1; padding-block: calc(var(--bar-h) + var(--bar-gap) + 40px) 60px; }
.nf1-num { display: block; font-family: var(--serif); font-size: clamp(120px, 22vw, 260px); line-height: .85; color: rgba(255,255,255,.92); letter-spacing: -.02em; }
.nf1 .emp-desc { margin-inline: auto; }
.nf1 .btn--outline { color: #fff; border-color: #fff; }
/* 2 — texto + foto */
.nf2-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 86vh; }
.nf2-txt { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: calc(var(--bar-h) + var(--bar-gap) + 40px) clamp(24px, 6vw, 96px) 60px; background: #f6f1e7; }
.nf2-txt .nf-btns { justify-content: flex-start; }
.nf2-pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* 3 — atalhos de produtos */
.nf3 { padding-block: clamp(56px, 7vw, 90px); text-align: center; }
.nf3-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 26px; }
.nf3-card { position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 10px; text-decoration: none; }
.nf3-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.nf3-card:hover img { transform: scale(1.05); }
.nf3-card span { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 16px 16px; color: #fff; font-weight: 700; text-align: left; background: linear-gradient(transparent, rgba(0,0,0,.7)); }
.nf3-card b { color: #FF8A91; }
/* 4 — grafite com links */
.nf4 { background: var(--ink); color: #fff; min-height: 86vh; display: flex; align-items: center; }
.nf4-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; padding-block: calc(var(--bar-h) + var(--bar-gap) + 40px) 60px; }
.nf4-num { display: block; font-family: var(--serif); font-size: clamp(90px, 14vw, 180px); line-height: .9; color: var(--red); }
.nf4 .emp-desc { color: #cfcac5; margin: 16px 0 26px; }
.nf4-t { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #FF8A91; margin: 0 0 12px; }
.nf4-links { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.12); }
.nf4-links a { display: flex; justify-content: space-between; padding: 13px 4px; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.12); font-weight: 700; }
.nf4-links a:hover { color: #FF8A91; }
@media (max-width: 860px) {
  .nf2-grid, .nf4-grid { grid-template-columns: 1fr; } .nf2-pic { height: 320px; }
  .nf3-grid { grid-template-columns: 1fr 1fr; }
}
.cl-logo { aspect-ratio: auto; height: 140px; min-width: 0; overflow: hidden; }
.cl-logo img { width: auto; height: auto; max-width: 100%; max-height: 104px; }
.cl3-mosaic .cl-logo { height: 120px; } .cl3-mosaic .cl-logo img { max-height: 88px; }
.cl1-grid, .cl4-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 190px)); justify-content: center; }
.nf1 .btn--outline { background: transparent; color: #fff; border: 1.5px solid #fff; }
.nf1 .btn--outline:hover { background: #fff; color: var(--ink); }
/* Clientes (aprovado: opção 3): cartão no tom da própria logo, logo maior */
.cl3-mosaic .cl-logo { box-shadow: 0 8px 20px rgba(0,0,0,.08); padding: 10px; }
.cl3-mosaic .cl-logo img { max-height: 100px; }
/* logos de fundo branco: o branco da imagem some no cartão (sem "emenda") */
.cl3-mosaic .cl-logo--w img { mix-blend-mode: multiply; }

/* ===== Interna dos posts do blog (4 layouts) ===== */
.bp-hero .hero-full__photo img { width: 100%; height: 100%; object-fit: cover; }
.bp-hero .breadcrumb, .bp4-top .breadcrumb { display: flex; justify-content: center; margin-bottom: 18px; }
.bp-hero .breadcrumb, .bp-hero .breadcrumb a { color: rgba(255,255,255,.85); }
.bp-hero .breadcrumb li[aria-current] { max-width: 34ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bp-meta { font-size: var(--fs-xs, 14px); letter-spacing: .02em; margin: 18px 0 0; }
.bp-hero .bp-meta { color: #F2EEEA; }
.bp { padding-block: clamp(40px, 5vw, 72px) clamp(48px, 6vw, 88px); }
.bp .prose--post { max-width: 760px; margin-inline: auto; }
.bp .prose--post > p:first-of-type { font-size: 19px; color: var(--ink); }
.bp .prose figure img { width: 100%; height: auto; display: block; }
.bp-share { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; margin-top: 40px !important; padding-top: 22px; border-top: 1px solid var(--gray-line); font-size: 14px; }
.bp-share span { color: var(--gray-text); margin-right: 4px; }
.bp-share a { padding: 8px 14px; border: 1px solid var(--gray-line); color: var(--ink); text-decoration: none; font-weight: 700; }
.bp-share a:hover { border-color: var(--red); color: var(--red); }
.bp-cta { max-width: 760px; margin: 40px auto 0; display: flex; gap: 24px; align-items: center; justify-content: space-between; background: #f6f1e7; padding: 28px 30px; }
.bp-cta__t { font-family: var(--serif); font-size: 26px; line-height: 1.2; margin: 6px 0 8px; }
.bp-cta p { margin: 0; color: #3A3A3A; }
.bp-cta .btn { flex: none; }
.bp-cta--line { background: none; border-top: 3px solid var(--red); border-bottom: 1px solid var(--gray-line); padding-inline: 0; }
.bp-cta--dark { background: var(--ink); color: #fff; }
.bp-cta--dark p { color: #d9d9d9; }
.bp-cta--dark .eyebrow { color: #fff; }
.bp-rel { background: var(--gray-bg); padding-block: clamp(48px, 6vw, 88px); }
.bp-rel__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 28px); }
.bp-rel__card { display: block; background: #fff; color: var(--ink); text-decoration: none; }
.bp-rel__img { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.bp-rel__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.bp-rel__card:hover img { transform: scale(1.04); }
.bp-rel__txt { display: grid; gap: 8px; padding: 20px 22px 24px; }
.bp-rel__txt time { font-size: 13px; color: var(--gray-text); }
.bp-rel__txt b { font-family: var(--serif); font-weight: 400; font-size: 21px; line-height: 1.25; }
.bp-rel__more { color: var(--red); font-weight: 700; font-size: 14px; }
.bp-rel--list .bp-rel__grid { grid-template-columns: 1fr; max-width: 900px; }
.bp-rel--list .bp-rel__card { display: grid; grid-template-columns: 260px 1fr; align-items: center; }
.bp-rel--list .bp-rel__img { height: 100%; aspect-ratio: auto; min-height: 160px; }
/* 2: índice lateral */
.bp-progress { position: fixed; top: 0; left: 0; right: 0; height: 4px; z-index: 400; pointer-events: none; }
.bp-progress span { display: block; height: 100%; width: 0; background: var(--red); }
.bp2-grid { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.bp2-side { position: sticky; top: 110px; display: grid; gap: 22px; }
.bp2 .prose--post { margin-inline: 0; }
.bp-toc { border-left: 3px solid var(--red); padding-left: 18px; }
.bp-toc__t { font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; margin: 0 0 10px; color: var(--gray-text); }
.bp-toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; counter-reset: t; }
.bp-toc li { counter-increment: t; font-size: 15px; line-height: 1.35; }
.bp-toc li::before { content: counter(t, decimal-leading-zero) "  "; color: var(--red); font-weight: 700; font-size: 12px; }
.bp-toc a { color: var(--ink); text-decoration: none; }
.bp-toc a:hover, .bp-toc a.on { color: var(--red); }
.bp2-card { background: #f6f1e7; padding: 22px; }
.bp2-card__t { font-family: var(--serif); font-size: 22px; margin: 0 0 6px; }
.bp2-card p { margin: 0 0 14px; font-size: 15px; color: #3A3A3A; }
.bp2 [id] { scroll-margin-top: 110px; }
/* 3: revista */
.bp3-top { position: relative; }
.bp3-photo { height: clamp(320px, 52vw, 560px); overflow: hidden; }
.bp3-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bp3-card { position: relative; margin: -150px auto 0; max-width: 860px; background: #fff; padding: clamp(28px, 4vw, 52px); text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,.08); }
.bp3-card .breadcrumb { display: flex; justify-content: center; margin-bottom: 14px; }
.bp3-card .breadcrumb li[aria-current] { display: none; }
.bp3-card .page-title { margin: 8px 0 0; text-wrap: balance; }
.bp3-card .bp-meta { color: var(--gray-text); }
.bp3 { padding-top: clamp(32px, 4vw, 56px); }
.bp3-body > p:first-of-type::first-letter { float: left; font-family: var(--serif); font-size: 76px; line-height: .82; padding: 8px 12px 0 0; color: var(--red); }
.bp3-body h2 { padding-top: 22px; border-top: 1px solid var(--gray-line); }
.bp-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 32px 0; }
.bp-pair figure { margin: 0 !important; }
.bp-pair img { aspect-ratio: 4 / 5; object-fit: cover; }
/* 4: grafite + seções */
.bp4-top { background: var(--ink); color: #fff; text-align: center; padding: calc(var(--bar-h, 80px) + var(--bar-gap, 0px) + 60px) 0 170px; }
.bp4-top .breadcrumb, .bp4-top .breadcrumb a { color: rgba(255,255,255,.75); }
.bp4-top .breadcrumb li[aria-current] { display: none; }
.bp4-top .eyebrow { color: #fff; }
.bp4-top .emp-h1 { max-width: 900px; margin-inline: auto; }
.bp4-top .bp-meta { color: #cfcfcf; }
.bp4-cover { margin-top: -120px; }
.bp4-cover img { width: 100%; max-width: 1100px; margin: 0 auto; display: block; aspect-ratio: 16 / 8; object-fit: cover; }
.bp4 { background: var(--gray-bg); margin-top: -60px; padding-top: 110px; }
.bp4-intro { margin-bottom: 36px; }
.bp4-secs { display: grid; gap: 22px; max-width: 900px; margin: 0 auto; }
.bp4-sec { position: relative; background: #fff; padding: clamp(24px, 3.5vw, 44px) clamp(22px, 4vw, 52px) clamp(24px, 3.5vw, 44px) clamp(70px, 8vw, 110px); }
.bp4-sec--solo { padding-left: clamp(22px, 4vw, 52px); }
.bp4-n { position: absolute; left: clamp(20px, 3vw, 40px); top: clamp(26px, 3.5vw, 46px); font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); color: var(--red); line-height: 1; }
.bp4-sec .prose { max-width: none; }
.bp4-end { max-width: 900px; margin: 0 auto; }
.bp4-end .bp-share { border-top: 0; }
.bp4 .bp-cta { max-width: 900px; }
@media (max-width: 960px) {
  .bp2-grid { grid-template-columns: 1fr; }
  .bp2-side { position: static; }
  .bp2-card { display: none; }
}
@media (max-width: 700px) {
  .bp-cta { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
  .bp-cta--line { padding-inline: 0; }
  .bp-rel__grid { grid-template-columns: 1fr; }
  .bp-rel--list .bp-rel__card { grid-template-columns: 1fr; }
  .bp-rel--list .bp-rel__img { aspect-ratio: 16 / 9; min-height: 0; }
  .bp3-card { margin-top: -80px; }
  .bp-pair { grid-template-columns: 1fr; }
  .bp4-sec { padding-left: 22px; padding-top: 64px; }
  .bp4-n { top: 20px; left: 22px; }
  .bp4-top { padding-bottom: 110px; }
  .bp4-cover { margin-top: -70px; }
}

[data-orc] { cursor: pointer; }
.bp4-cover { position: relative; z-index: 1; }

/* Formulário: tela de "mensagem enviada" */
.ct-sent { display: grid; justify-items: center; text-align: center; gap: 10px; padding: clamp(28px, 4vw, 44px) clamp(18px, 3vw, 32px); background: #f6f1e7; outline: 0; animation: ctIn .35s ease; }
.ct-sent p { margin: 0; color: #3A3A3A; max-width: 460px; }
.ct-sent__ic { width: 64px; height: 64px; border-radius: 50%; background: #1E7E3E; display: grid; place-items: center; margin-bottom: 6px; }
.ct-sent__ic svg { width: 34px; height: 34px; fill: none; stroke: #fff; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.ct-sent__t { font-family: var(--serif); font-size: clamp(26px, 3vw, 32px); color: var(--ink) !important; }
.ct-sent__copy { font-size: 14px; color: var(--gray-text) !important; }
.ct-sent__btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 10px; }
@keyframes ctIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.ct-form[hidden] { display: none !important; }

/* ===== Menu do celular com cara de aplicativo ===== */
.mn { display: none; }
@media (max-width: 960px) {
  .mn { display: block; font-family: var(--sans); }
  body.has-mn .menu-toggle, body.has-mn .header .nav { display: none !important; }
  body.has-mn .wa-float, body.has-mn .wa-note { bottom: 88px !important; }
  .mn-ic { width: 24px; height: 24px; flex: none; }
  .mn-chev { width: 18px; height: 18px; margin-left: auto; opacity: .45; flex: none; }
  .mn-x { border: 0; background: var(--gray-bg); width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: var(--ink); cursor: pointer; }
  .mn-x .mn-ic { width: 20px; height: 20px; }
  /* barra de abas */
  body.has-mn1 { padding-bottom: 72px; }
  .mn1-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 300; display: grid; grid-template-columns: repeat(5, 1fr); align-items: end;
    background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-top: 1px solid var(--gray-line); padding: 6px 4px calc(6px + env(safe-area-inset-bottom)); box-shadow: 0 -6px 24px rgba(0,0,0,.06); }
  .mn-tab { display: grid; justify-items: center; gap: 3px; padding: 6px 0; color: #6b6b6b; text-decoration: none; font-size: 11px; font-weight: 700; border: 0; background: none; cursor: pointer; font-family: inherit; }
  .mn-tab[aria-current="page"], .mn-tab.on { color: var(--red); }
  .mn-tab--orc { color: var(--ink); }
  .mn-orc { width: 54px; height: 54px; margin-top: -26px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px rgba(198,0,11,.35); border: 4px solid #fff; }
  /* folha que sobe de baixo */
  .mn-sheet, .mn-drawer { position: fixed; inset: 0; z-index: 400; }
  .mn-sheet[hidden], .mn-drawer[hidden], .mn-screen[hidden] { display: none; }
  .mn-sheet__bg { position: absolute; inset: 0; background: rgba(20,15,11,.45); animation: mnFade .2s ease; }
  .mn-sheet__box { position: absolute; left: 0; right: 0; bottom: 0; max-height: 82vh; background: #fff; border-radius: 22px 22px 0 0; display: flex; flex-direction: column; animation: mnUp .28s cubic-bezier(.2,.8,.2,1); }
  .mn-grab { width: 42px; height: 5px; border-radius: 3px; background: #d7d7d7; margin: 10px auto 2px; }
  .mn-sheet__head { display: flex; align-items: center; justify-content: space-between; padding: 6px 18px 10px; }
  .mn-sheet__head b { font-family: var(--serif); font-weight: 400; font-size: 24px; }
  .mn-sheet__body { overflow-y: auto; padding: 0 18px calc(22px + env(safe-area-inset-bottom)); }
  .mn-all { display: flex; align-items: center; padding: 14px 16px; margin-bottom: 14px; background: #f6f1e7; border-radius: 14px; color: var(--ink); font-weight: 700; text-decoration: none; }
  .mn-cat { margin-bottom: 14px; }
  .mn-cat__t { display: flex; align-items: center; gap: 8px; margin: 0 0 6px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--red); }
  .mn-cat__t .mn-ic { width: 18px; height: 18px; }
  .mn-cat ul { list-style: none; margin: 0; padding: 0; background: var(--gray-bg); border-radius: 14px; overflow: hidden; }
  .mn-cat li + li { border-top: 1px solid #e6e6e6; }
  .mn-cat a { display: flex; align-items: center; padding: 13px 16px; color: var(--ink); text-decoration: none; font-size: 15px; }
  .mn-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }
  .mn-links--col { grid-template-columns: 1fr; }
  .mn-links a { display: flex; align-items: center; gap: 10px; padding: 14px; border-radius: 14px; background: var(--gray-bg); color: var(--ink); text-decoration: none; font-weight: 700; }
  .mn-acts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
  .mn-act { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; border-radius: 14px; font-weight: 700; text-decoration: none; }
  .mn-act--wa { background: #25D366; color: #fff; }
  .mn-act--tel { background: var(--ink); color: #fff; }
  /* 2: tela cheia com ícones */
  .mn-fab { position: fixed; right: 16px; top: 18px; z-index: 310; width: 46px; height: 46px; border-radius: 14px; border: 0; background: var(--red); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px rgba(198,0,11,.3); cursor: pointer; }
  .mn-screen { position: fixed; inset: 0; z-index: 400; background: #fff; overflow-y: auto; padding: 16px 18px calc(24px + env(safe-area-inset-bottom)); animation: mnZoom .22s ease; }
  .mn-screen__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
  .mn2-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 10px; }
  .mn2-tile { display: grid; justify-items: center; gap: 8px; color: var(--ink); text-decoration: none; font-size: 13px; font-weight: 700; }
  .mn2-tile__ic { width: 64px; height: 64px; border-radius: 20px; display: grid; place-items: center; background: #f6f1e7; color: var(--red); }
  .mn2-tile__ic .mn-ic { width: 28px; height: 28px; }
  .mn2-tile[aria-current="page"] .mn2-tile__ic { background: var(--red); color: #fff; }
  .mn2-h { margin: 28px 0 10px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #6b6b6b; }
  .mn2-chips { display: flex; flex-wrap: wrap; gap: 8px; }
  .mn2-chip { padding: 9px 14px; border-radius: 999px; background: var(--gray-bg); color: var(--ink); text-decoration: none; font-size: 14px; }
  /* 3: gaveta lateral */
  .mn3-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(86vw, 380px); background: #fff; overflow-y: auto; padding: 16px 18px calc(24px + env(safe-area-inset-bottom)); animation: mnLeft .26s cubic-bezier(.2,.8,.2,1); box-shadow: -10px 0 40px rgba(0,0,0,.2); }
  .mn3-top { display: flex; align-items: center; justify-content: space-between; }
  .mn3-hello { font-family: var(--serif); font-size: 24px; margin: 18px 0 12px; }
  .mn3-list { list-style: none; margin: 0; padding: 0; }
  .mn3-row { display: flex; align-items: center; gap: 14px; width: 100%; padding: 15px 4px; border: 0; border-bottom: 1px solid var(--gray-line); background: none; color: var(--ink); text-decoration: none; font: 700 16px var(--sans); cursor: pointer; text-align: left; }
  .mn3-row .mn-ic:first-child { color: var(--red); }
  .mn3-row[aria-current="page"] { color: var(--red); }
  .mn3-acc .mn3-row[aria-expanded="true"] .mn-chev { transform: rotate(180deg); }
  .mn3-sub { padding: 12px 0 4px; }
  .mn3-addr { display: flex; gap: 8px; align-items: center; margin-top: 18px; font-size: 13px; color: #6b6b6b; }
  .mn3-addr .mn-ic { width: 18px; height: 18px; color: var(--red); }
  /* 4: vitrine */
  body.has-mn4 { padding-bottom: 72px; }
  .mn4-bar .mn-tab { padding: 8px 0 6px; }
  .mn4-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
  .mn4-card { display: grid; gap: 6px; color: var(--ink); text-decoration: none; font-size: 13px; font-weight: 700; }
  .mn4-card__img { aspect-ratio: 4 / 3; border-radius: 14px; background: var(--gray-bg) center / cover no-repeat; }
  /* 5-8: só os itens do menu */
  .mn-list { list-style: none; margin: 0; padding: 0; }
  .mn-row { display: flex; align-items: center; gap: 14px; width: 100%; padding: 16px 4px; border: 0; border-bottom: 1px solid var(--gray-line); background: none; color: var(--ink); text-decoration: none; font: 700 17px var(--sans); cursor: pointer; text-align: left; }
  .mn-row .mn-ic:first-child { color: var(--red); }
  .mn-row[aria-current="page"] { color: var(--red); }
  .mn-acc .mn-row[aria-expanded="true"] .mn-chev { transform: rotate(180deg); }
  .mn-sub { padding: 6px 0 12px 4px; }
  .mn-subt { margin: 12px 0 4px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--red); }
  .mn-subl { display: block; padding: 9px 0; color: #3a3a3a; text-decoration: none; font-size: 15px; }
  .mn-subl--all { font-weight: 700; color: var(--ink); }
  .mn5-list .mn-row { font: 400 30px/1.15 var(--serif); padding: 18px 2px; }
  .mn5-list .mn-chev { width: 22px; height: 22px; }
  .mn7-panel { position: absolute; top: 0; left: 0; bottom: 0; width: min(86vw, 380px); background: #232323; color: #fff; overflow-y: auto; padding: 16px 18px calc(24px + env(safe-area-inset-bottom)); animation: mnRight .26s cubic-bezier(.2,.8,.2,1); }
  .mn7-logo { background: #fff; border-radius: 10px; padding: 4px 8px; display: inline-flex; }
  .mn7-list { margin-top: 18px; }
  .mn7-list .mn-row { color: #fff; border-bottom-color: rgba(255,255,255,.12); }
  .mn7-list .mn-row[aria-current="page"] { color: #ff5a62; }
  .mn7 .mn-subl { color: #d9d9d9; } .mn7 .mn-subl--all { color: #fff; } .mn7 .mn-subt { color: #ff5a62; }
  .mn7 .mn-x { background: rgba(255,255,255,.12); color: #fff; }
  .mn7 .mn-act--tel { background: #fff; color: var(--ink); }
  .mn-orc--wa { background: #25D366; box-shadow: 0 8px 20px rgba(37,211,102,.35); }
  body.has-mn8 { padding-bottom: 72px; }
  @keyframes mnRight { from { transform: translateX(-100%); } to { transform: none; } }
  @keyframes mnUp { from { transform: translateY(100%); } to { transform: none; } }
  @keyframes mnLeft { from { transform: translateX(100%); } to { transform: none; } }
  @keyframes mnFade { from { opacity: 0; } to { opacity: 1; } }
  @keyframes mnZoom { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
}

/* Logo nova (24/09): rodapé com a logo em branco, sem caixa branca */
.ft .logo-box { background: none; padding: 0; }
.ft .logo-box img { width: 170px; }
.footer__logo { background: none; padding: 0; }

/* Texto extra das páginas de produto/região: dentro da coluna de informações, abaixo dos itens (24/09) */
.pp3-more { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--gray-line); display: grid; gap: 12px; }
.pp3-more p { margin: 0; color: #3A3A3A; font-size: 16px; line-height: 1.7; }
.pp3-more__t { margin: 8px 0 -4px; font-family: var(--serif); font-weight: 400; font-size: 21px; line-height: 1.25; color: var(--ink); }
.pp3-more__t:first-child { margin-top: 0; }
