/* =========================================================
   ARTES VISUAIS — Componentes
   Estilo Apple Premium: tipografia grande e legível,
   header grande, hero impactante, cards premium.
   ========================================================= */

/* ======================================================
   HEADER — Grande, profissional, Apple-style
   Desktop: 72px / Mobile: 60px
   ====================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(224, 217, 206, 0.5);
  transition:
    background var(--dur-med) var(--ease),
    box-shadow var(--dur-med) var(--ease);
  -webkit-font-smoothing: antialiased;
}

.site-header.is-scrolled {
  background: rgba(250, 250, 248, 0.95);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 20px rgba(0,0,0,0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
  padding: 0 32px;
  max-width: var(--container);
  margin: 0 auto;
  box-sizing: border-box;
}

/* Brand — Discreto e elegante */
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
  text-decoration: none;
}
.brand__name {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  white-space: nowrap;
}

/* Nav desktop — links grandes e legíveis */
.nav-desktop { display: none; }
.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.nav-desktop a {
  display: inline-flex;
  align-items: center;
  padding: 0.45em 1em;
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.nav-desktop a:hover {
  color: var(--ink);
  background: rgba(28, 25, 22, 0.06);
}

/* Header actions */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  line-height: 1;
}

/* Botão cotação */
.quote-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--ink-soft);
  border-radius: var(--radius-pill);
  background: transparent;
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  position: relative;
  flex-shrink: 0;
}
.quote-toggle:hover {
  color: var(--ink);
  background: rgba(28, 25, 22, 0.06);
}
.quote-toggle svg { width: 20px; height: 20px; flex-shrink: 0; }
.quote-toggle__count {
  position: absolute;
  top: 4px;
  right: 4px;
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.62rem;
  font-weight: 700;
  background: var(--sage);
  color: #fff;
  border-radius: 50px;
  letter-spacing: 0.01em;
  line-height: 1;
  box-sizing: border-box;
  font-family: var(--font-body);
  border: 2px solid var(--paper);
}

/* Botão WhatsApp do header — grande e clicável */
.site-header__actions .btn.btn-primary.btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  height: 42px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-sizing: border-box;
  flex-shrink: 0;
  border: 1.5px solid var(--graphite);
  background: var(--graphite);
  color: var(--on-graphite);
  transition: all var(--dur-fast) var(--ease);
}
.site-header__actions .btn.btn-primary.btn-sm:hover {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(62, 77, 60, 0.3);
}
.site-header__actions .btn.btn-primary.btn-sm svg,
.site-header__actions .btn.btn-primary.btn-sm i[data-lucide] {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0;
}

/* Botão de menu mobile — grande */
.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(28, 25, 22, 0.18);
  border-radius: var(--radius-pill);
  background: transparent;
  transition: all var(--dur-fast) var(--ease);
  flex-shrink: 0;
}
.menu-toggle:hover {
  border-color: var(--ink-soft);
  background: rgba(28, 25, 22, 0.04);
}
.menu-toggle svg { width: 20px; height: 20px; color: var(--ink); }

@media (min-width: 900px) {
  .site-header__inner { height: 72px; }
  .nav-desktop { display: block; }
  .menu-toggle { display: none; }
}

/* ======================================================
   MOBILE DRAWER
   ====================================================== */

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  padding: var(--space-4);
  overflow-y: auto;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.mobile-drawer.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-drawer nav {
  margin-top: var(--space-5);
  flex: 1;
}
.mobile-drawer nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.mobile-drawer nav a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: block;
  padding-block: 0.3em;
  border-bottom: 1px solid var(--line-soft);
  transition: color var(--dur-fast) var(--ease);
}
.mobile-drawer nav a:hover { color: var(--sage); }
.mobile-drawer__foot {
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-drawer__foot a {
  color: var(--ink-soft);
  font-size: var(--step-body);
  transition: color var(--dur-fast) var(--ease);
}
.mobile-drawer__foot a:hover { color: var(--sage-deep); }

/* ======================================================
   HERO — PERFIL CARD ESTILO LINKTREE PREMIUM
   Fundo com gradiente vibrante + card glassmorphism
   ====================================================== */

.hero-profile {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: var(--space-6);
  padding-inline: var(--gutter);
}

/* Fundo gradiente vibrante animado */
.hero-profile__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 120% 80% at 15% 20%, rgba(168, 155, 185, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse 80% 70% at 85% 75%, rgba(140, 175, 135, 0.45) 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 50% 50%, rgba(225, 205, 180, 0.40) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 60% 20%, rgba(190, 180, 210, 0.30) 0%, transparent 45%),
    linear-gradient(135deg, #F0ECE5 0%, #E8E2D6 30%, #EDE7DD 60%, #F2EDE3 100%);
  animation: bgShift 15s ease-in-out infinite alternate;
}

@keyframes bgShift {
  0% {
    filter: hue-rotate(0deg) brightness(1);
  }
  50% {
    filter: hue-rotate(8deg) brightness(1.02);
  }
  100% {
    filter: hue-rotate(-5deg) brightness(0.98);
  }
}

/* Card central — glassmorphism forte e visível */
.hero-profile__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: saturate(180%) blur(40px);
  -webkit-backdrop-filter: saturate(180%) blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.80);
  border-radius: 32px;
  padding: 3rem 2.5rem 2.5rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.3),
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  animation: cardIn 1s var(--ease-out) both;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Avatar circular grande */
.hero-profile__avatar-wrap {
  display: flex;
  justify-content: center;
  animation: cardIn 1s var(--ease-out) 0.15s both;
}

.hero-profile__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.95);
  box-shadow:
    0 0 0 2px rgba(200, 190, 175, 0.5),
    0 4px 20px rgba(0, 0, 0, 0.10);
  background: linear-gradient(135deg, var(--paper-deep) 0%, var(--line-soft) 100%);
  flex-shrink: 0;
  position: relative;
}

.hero-profile__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Info do perfil — tipografia grande */
.hero-profile__info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation: cardIn 1s var(--ease-out) 0.2s both;
}

.hero-profile__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 1.2rem + 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
}

.hero-profile__role {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--sage);
  text-transform: uppercase;
  margin: 0;
}

.hero-profile__bio {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0.3rem 0 0;
  max-width: 38ch;
  margin-inline: auto;
}

/* Links estilo Linktree — grandes e premium */
.hero-profile__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  animation: cardIn 1s var(--ease-out) 0.25s both;
}

.profile-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 1em 1.25em;
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition:
    background var(--dur-fast) var(--ease),
    transform 200ms var(--ease-spring),
    box-shadow var(--dur-fast) var(--ease);
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(224, 217, 206, 0.65);
  color: var(--ink);
  cursor: pointer;
  position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.03);
}

.profile-link:hover {
  background: rgba(255,255,255,0.98);
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 8px 24px rgba(0,0,0,0.05);
  color: var(--ink);
  border-color: rgba(224, 217, 206, 0.85);
}

.profile-link:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

/* Link WhatsApp — CTA escuro */
.profile-link--primary {
  background: var(--graphite);
  color: var(--on-graphite);
  border-color: var(--graphite);
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12), 0 6px 20px rgba(0,0,0,0.08);
}
.profile-link--primary:hover {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  color: #fff;
  box-shadow: 0 6px 20px rgba(62, 77, 60, 0.4);
}

.profile-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(0,0,0,0.05);
  border-radius: 10px;
}
.profile-link--primary .profile-link__icon {
  background: rgba(255,255,255,0.14);
}

.profile-link__icon svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.profile-link__label {
  flex: 1;
  text-align: left;
  line-height: 1.3;
}

.profile-link__arrow {
  font-size: 1rem;
  opacity: 0.4;
  flex-shrink: 0;
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.profile-link:hover .profile-link__arrow {
  opacity: 0.75;
  transform: translate(2px, -2px);
}
.profile-link--primary .profile-link__arrow { opacity: 0.5; }
.profile-link--primary:hover .profile-link__arrow { opacity: 0.9; }

/* Badges de atributos */
.hero-profile__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding-top: 0.5rem;
  animation: cardIn 1s var(--ease-out) 0.3s both;
}

.profile-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.38em 1em;
  background: rgba(92, 107, 90, 0.08);
  border: 1px solid rgba(92, 107, 90, 0.18);
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--sage-deep);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* ======================================================
   CATÁLOGO
   ====================================================== */

.catalog {
  padding-block: clamp(3rem, 5vw, 5rem);
  background: var(--paper);
  position: relative;
}

.catalog-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 3.5vw, 2.5rem);
  box-sizing: border-box;
}

.catalog__head {
  margin-bottom: 2.5rem;
}
.catalog__head h2 {
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3.2rem);
  line-height: 1.1;
  color: var(--ink);
}

.catalog__controls {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-soft);
}

@media (min-width: 900px) {
  .catalog__controls {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 0.4rem;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.filter-btn {
  padding: 0.55em 1.15em;
  font-size: 0.82rem;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: all var(--dur-fast) var(--ease);
  font-weight: 500;
  cursor: pointer;
  flex-shrink: 0;
  font-family: var(--font-body);
  box-shadow: var(--shadow-xs);
}
.filter-btn:hover {
  color: var(--ink);
  border-color: var(--sage-border);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.filter-btn.is-active {
  color: #fff;
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  box-shadow: 0 2px 10px rgba(62, 77, 60, 0.25);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-pill);
  padding: 0.6em 1.15rem;
  min-width: 280px;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  box-shadow: var(--shadow-xs);
}
.search-field:focus-within {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--sage-mist), var(--shadow-sm);
}
.search-field svg { width: 16px; height: 16px; color: var(--ink-faint); flex-shrink: 0; }
.search-field input {
  border: none;
  background: none;
  width: 100%;
  font-size: 0.9rem;
  color: var(--ink);
  padding: 0;
  font-family: var(--font-body);
}
.search-field input:focus { outline: none; }
.search-field input::placeholder { color: var(--ink-faint); }

.catalog__status { margin-bottom: 1.25rem; }
.catalog__count {
  font-size: 0.84rem;
  color: var(--ink-faint);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ======================================================
   GRID DE PRODUTOS
   ====================================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
  width: 100%;
  box-sizing: border-box;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  transition:
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease);
  box-shadow: var(--shadow-xs);
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--sage-border);
  box-shadow: var(--shadow-lg);
}

.product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* A4 proporção vertical: 1:1.414 */
  aspect-ratio: 1 / 1.414;
  overflow: hidden;
  background: var(--surface-2);
  position: relative;
  padding: 0;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
}
/* Variante page-based — usa aspect-ratio A4 explicitamente */
.product-card--page .product-card__media {
  aspect-ratio: 595 / 842;
  background: #f8f7f5;
}
.product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  transition: transform var(--dur-med) var(--ease);
}
.product-card:hover .product-card__media img {
  transform: scale(1.03);
}

.product-card__body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.3rem;
}
.product-card__category {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin: 0;
}
.product-card__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--ink);
  margin-block: 0.15rem 0.25rem;
  letter-spacing: -0.01em;
}
.product-card__sku {
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  color: var(--sage-deep);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  margin: 0.15rem 0 0;
}
/* Lista de itens dentro do card de página */
.product-card__items {
  list-style: none;
  margin: 0.2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.product-card__items li {
  font-size: 0.74rem;
  color: var(--ink-soft);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card__more {
  font-size: 0.72rem;
  color: var(--sage);
  font-weight: 500;
  margin-top: 0.1rem;
  display: block;
}
.product-card__actions {
  margin-top: auto;
  padding-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.btn-primary-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 1.1em;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--sage-deep);
  border: 1px solid var(--sage-deep);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(62, 77, 60, 0.2);
}
.btn-primary-quote:hover {
  background: var(--graphite);
  border-color: var(--graphite);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(28, 25, 22, 0.25);
}
.btn-link-details {
  background: transparent;
  border: none;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.35em 0.2em;
  transition: color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn-link-details:hover {
  color: var(--ink);
  text-decoration: underline;
}

/* Banner editorial */
.editorial-banner {
  grid-column: 1 / -1;
  border-block: 1px solid var(--line-soft);
  padding-block: var(--space-4);
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  margin-block: 0.5rem;
}
.editorial-banner h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 1rem + 2vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}
.editorial-banner h3 em { color: var(--sage); font-style: normal; }
.editorial-banner p {
  color: var(--ink-soft);
  font-size: var(--step-body);
  max-width: 42ch;
  line-height: 1.6;
  flex: 1;
}

.catalog__empty {
  text-align: left;
  color: var(--ink-soft);
  padding-block: var(--space-5);
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
}

.catalog__footnote {
  margin-top: var(--space-5);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line-soft);
  color: var(--ink-faint);
  font-size: var(--step-small);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1) var(--space-2);
}
.catalog__footnote strong {
  color: var(--sage-deep);
  font-weight: 600;
}

/* ======================================================
   CATÁLOGO — Modo Browse por Categorias
   ====================================================== */

.catalog-browse {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.catalog-category-section {
  border-top: 1px solid var(--line-soft);
  padding-top: var(--space-4);
}

.catalog-category-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.catalog-category-section__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.35rem, 1rem + 1.5vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
}

.catalog-category-section__count {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.catalog-category-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .catalog-category-section__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .catalog-category-section__grid { grid-template-columns: repeat(4, 1fr); }
}

.catalog-category-section__footer {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.btn-see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.6em 1.4em;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--sage-deep);
  border: 1.5px solid var(--sage-border);
  border-radius: var(--radius-pill);
  background: transparent;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  text-decoration: none;
  box-shadow: var(--shadow-xs);
}
.btn-see-all:hover {
  background: var(--sage-mist);
  border-color: var(--sage);
  box-shadow: var(--shadow-sm);
}
.btn-see-all svg {
  width: 14px; height: 14px;
  transition: transform var(--dur-fast) var(--ease);
}
.btn-see-all:hover svg { transform: translateX(3px); }

/* Modo filtrado — botão voltar */
.catalog-back-bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line-soft);
}

.btn-back-browse {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.5em 1.2em;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: transparent;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  box-shadow: var(--shadow-xs);
}
.btn-back-browse:hover {
  border-color: var(--ink);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-back-browse svg { width: 14px; height: 14px; }

.catalog-filter-label {
  font-size: 0.84rem;
  color: var(--ink-faint);
  font-weight: 500;
}

/* ======================================================
   MODAL DE PRODUTO (Cotação) & DRAWER (Carrinho)
   ====================================================== */

.modal-overlay, .drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(28, 25, 22, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease);
  box-sizing: border-box;
  max-width: 100vw;
  max-height: 100dvh;
  max-height: 100vh;
  overflow: hidden;
}
.modal-overlay.is-open, .drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 720px) {
  .modal-overlay {
    align-items: center;
    padding: 1.5rem;
  }
}

.modal {
  width: 100%;
  max-width: min(820px, 100vw);
  max-height: 88dvh;
  max-height: 88vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--surface);
  border-radius: 20px 20px 0 0;
  transform: translateY(24px);
  transition: transform var(--dur-med) var(--ease);
  position: relative;
  border: 1px solid var(--line);
  box-sizing: border-box;
  box-shadow: var(--shadow-xl);
  margin: 0 auto;
}
.modal::-webkit-scrollbar { display: none; }
.modal-overlay.is-open .modal { transform: translateY(0); }

@media (min-width: 720px) {
  .modal {
    max-height: 85dvh;
    max-height: 85vh;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    border-radius: 20px;
    margin: auto;
  }
}

.modal__close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  z-index: 2;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  background: rgba(28, 25, 22, 0.07);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--ink);
  transition: background var(--dur-fast) var(--ease);
}
.modal__close:hover { background: rgba(28, 25, 22, 0.14); }

.modal__media {
  aspect-ratio: 4/3;
  background: var(--surface-2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 720px) {
  .modal__media {
    aspect-ratio: auto;
    height: 100%;
    min-height: 350px;
    max-height: 100%;
  }
}
.modal__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.25rem;
  box-sizing: border-box;
  max-width: 100%;
  max-height: 100%;
}

.modal__body {
  padding: var(--space-4) var(--space-4);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
  scrollbar-width: thin;
}

.drawer-overlay {
  justify-content: flex-end;
  align-items: stretch;
}

.drawer {
  width: 100%;
  max-width: min(420px, 100vw);
  height: 100%;
  max-height: 100dvh;
  max-height: 100vh;
  background: var(--surface);
  border-left: 1px solid var(--line);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  transform: translateX(28px);
  transition: transform var(--dur-med) var(--ease);
  box-sizing: border-box;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.drawer-overlay.is-open .drawer { transform: translateX(0); }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.drawer__head h3 {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.quote-list {
  flex: 1 1 auto;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  scrollbar-width: none;
}
.quote-list::-webkit-scrollbar { display: none; }
.quote-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
.quote-item__media {
  width: 60px; height: 60px;
  overflow: hidden;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  grid-row: span 2;
}
.quote-item__media img { width: 100%; height: 100%; object-fit: contain; padding: 4px; box-sizing: border-box; }
.quote-item__info { flex: 1; min-width: 0; }
.quote-item__info h4 {
  font-size: 0.93rem;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.2em;
  overflow-wrap: break-word;
  word-break: break-word;
  letter-spacing: -0.01em;
}
.quote-item__info p {
  font-size: 0.76rem;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  margin: 0;
}
.quote-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  margin-top: 0.6em;
}
.quote-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.quote-item__qty button {
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  display: inline-grid;
  place-items: center;
  transition: background var(--dur-fast) var(--ease);
}
.quote-item__qty button:hover { background: var(--paper-soft); }
.quote-item__qty span { min-width: 1.6em; text-align: center; font-variant-numeric: tabular-nums; font-weight: 500; }
.quote-item__remove {
  font-size: 0.76rem;
  color: var(--ink-faint);
  border-bottom: 1px solid var(--ink-faint);
  padding-bottom: 1px;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.quote-item__remove:hover { color: var(--sage-deep); border-bottom-color: var(--sage-deep); }

.quote-empty {
  color: var(--ink-soft);
  text-align: center;
  padding-block: var(--space-5);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
}

.drawer__foot {
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.drawer__foot .btn { width: 100%; padding: 0.65em 1.1em; font-size: 0.88rem; }
#quoteClear {
  align-self: center;
  margin-top: var(--space-1);
  color: var(--ink-faint);
  border-bottom: 1px solid var(--ink-faint);
  padding-bottom: 1px;
}
#quoteClear:hover { color: var(--sage-deep); border-bottom-color: var(--sage-deep); }

/* ======================================================
   SERVIÇOS
   ====================================================== */

.services__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--line-soft);
  transition: background var(--dur-med) var(--ease);
}
.service-item:hover { background: var(--sage-mist); }
.service-item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1rem + 1vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.service-item p {
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 60ch;
  font-size: var(--step-body);
  margin: 0;
}

@media (min-width: 720px) {
  .service-item {
    grid-template-columns: 14rem 1fr;
    align-items: baseline;
    gap: var(--space-5);
  }
}

/* ======================================================
   COMO FUNCIONA
   ====================================================== */

.how__steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: steps;
}
.how__steps li {
  position: relative;
  padding-block: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--line-soft);
  counter-increment: steps;
  transition: background var(--dur-med) var(--ease);
}
.how__steps li:hover { background: var(--sage-mist); }
.how__steps li::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--sage-light);
  letter-spacing: 0.06em;
  margin-bottom: 0.6em;
}
.how__steps h3 {
  font-size: clamp(1.1rem, 0.9rem + 0.6vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 0.3em;
  color: var(--ink);
}
.how__steps p {
  color: var(--ink-soft);
  font-size: var(--step-body);
  max-width: 44ch;
  margin: 0;
  line-height: 1.6;
}

/* ======================================================
   SEÇÃO CONCEITUAL
   ====================================================== */

.conceptual {
  position: relative;
  overflow: hidden;
  background: var(--paper-soft);
}

.conceptual__bg-word {
  position: absolute;
  right: -3vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(5rem, 2rem + 14vw, 20rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--sage);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  text-align: right;
  white-space: nowrap;
}

.conceptual__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.conceptual__inner--single { max-width: var(--container-narrow); }

.conceptual__copy {
  display: flex;
  flex-direction: column;
}
.conceptual__copy .eyebrow { margin-bottom: var(--space-4); }
.conceptual__copy h2 {
  font-size: var(--step-h2);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-5);
  margin-top: var(--space-3);
}
.conceptual__copy h2 em { font-style: italic; color: var(--sage); }

.trust__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-soft);
}
.trust__list li {
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3em;
  transition: background var(--dur-med) var(--ease);
}
.trust__list li:hover { background: var(--sage-mist); }
.trust__list h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.trust__list p {
  color: var(--ink-soft);
  font-size: var(--step-body);
  line-height: 1.6;
  margin: 0;
}

/* ======================================================
   CTA FINAL
   ====================================================== */

.final-cta {
  background: var(--graphite);
  color: var(--on-graphite);
  padding-block: var(--space-7);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "AV";
  position: absolute;
  right: -2rem;
  bottom: -4rem;
  font-family: var(--font-display);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(10rem, 5rem + 20vw, 28rem);
  letter-spacing: -0.05em;
  color: var(--on-graphite);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
}
.final-cta__inner { max-width: 780px; position: relative; z-index: 1; }
.final-cta .eyebrow { color: var(--sage-light); }
.final-cta h2 {
  color: var(--on-graphite);
  font-size: var(--step-h2);
  margin-top: var(--space-3);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 18ch;
}
.final-cta h2 em { font-style: italic; color: var(--sage-light); font-weight: 400; }
.final-cta p.lead {
  margin-top: var(--space-4);
  color: #C0B9A8;
  font-size: var(--step-lead);
  max-width: 44ch;
  line-height: 1.6;
}
.final-cta__actions {
  margin-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.final-cta .btn-primary { background: var(--sage); border-color: var(--sage); color: var(--paper); }
.final-cta .btn-primary:hover { background: var(--sage-light); border-color: var(--sage-light); }
.final-cta .btn-outline { border-color: rgba(246,241,231,0.25); color: var(--on-graphite); }
.final-cta .btn-outline:hover { background: var(--on-graphite); color: var(--graphite); border-color: var(--on-graphite); }

/* ======================================================
   RODAPÉ
   ====================================================== */

.site-footer {
  padding-top: var(--space-6);
  background: var(--paper);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  padding-bottom: var(--space-5);
  align-items: start;
}
@media (min-width: 720px) {
  .site-footer__inner { grid-template-columns: 1.2fr 1fr 1fr; }
}
.site-footer__brand .brand { margin-bottom: var(--space-3); }
.site-footer__brand p {
  color: var(--ink-soft);
  font-size: var(--step-body);
  max-width: 36ch;
  line-height: 1.65;
}
.site-footer h5 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--space-3);
  font-weight: 600;
}
.site-footer__links ul, .site-footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.65em;
  font-size: var(--step-body);
}
.site-footer__links a,
.site-footer__contact a {
  display: inline-block;
  padding-bottom: 0.2em;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.site-footer__links a:hover,
.site-footer__contact a:hover {
  color: var(--sage-deep);
  border-bottom-color: var(--sage);
}
.site-footer__legal {
  padding-block: var(--space-4);
  color: var(--ink-faint);
  font-size: 0.78rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  border-top: 1px solid var(--line-soft);
  letter-spacing: 0.01em;
}

/* ======================================================
   WHATSAPP FLUTUANTE
   ====================================================== */

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 48px;
  padding: 0 20px;
  background: var(--graphite);
  color: var(--on-graphite);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-lg);
  transition: all var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.wa-float:hover {
  background: var(--sage-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(62, 77, 60, 0.35);
  color: #fff;
}
.wa-float svg, .wa-float i[data-lucide] {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
}

@media (max-width: 420px) {
  .wa-float { width: 52px; height: 52px; padding: 0; right: 12px; bottom: 12px; border-radius: 50%; }
  .wa-float svg, .wa-float i[data-lucide] { width: 20px !important; height: 20px !important; }
  .wa-float span { display: none; }
}
@media (min-width: 900px) { .wa-float { display: none; } }