/* ============================================================
   DESIGN SYSTEM
   ============================================================ */
:root {
  --pink:        #E8A0BE;
  --pink-soft:   #f3c8dc;
  --pink-pale:   #fdf0f6;
  --pink-hover:  #dB8BAE;
  --brown:       #5A2A0A;
  --brown-deep:  #3d1a05;
  --brown-mid:   #7a3a12;

  --ink:         #1c0e06;
  --ink-mid:     #4a3020;
  --ink-light:   #8a6a56;
  --surface:     #ffffff;
  --surface-2:   #faf7f4;
  --surface-3:   #f4ede8;
  --border:      #ede0d8;
  --border-soft: #f5ede8;

  --shadow-xs: 0 1px 3px rgba(90,42,10,.07);
  --shadow-sm: 0 2px 8px rgba(90,42,10,.09);
  --shadow-md: 0 4px 20px rgba(90,42,10,.11);
  --shadow-lg: 0 8px 40px rgba(90,42,10,.13);
  --shadow-xl: 0 20px 60px rgba(90,42,10,.15);

  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 999px;

  --space-section: 108px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--pink) var(--pink-pale);
  -webkit-text-size-adjust: 100%;
}
html::-webkit-scrollbar       { width: 5px; }
html::-webkit-scrollbar-track { background: var(--pink-pale); }
html::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
}
h2 em, h1 em {
  font-style: italic;
  color: var(--pink-hover);
}

.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 16px;
}
.label-tag::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  flex-shrink: 0;
}
.label-tag--light { color: rgba(255,255,255,.55); }
.label-tag--light::before { background: var(--pink-soft); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.revealed { opacity: 1; transform: none; }

.reveal-hero {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .85s var(--ease) .1s, transform .85s var(--ease) .1s;
}
.reveal-hero.revealed { opacity: 1; transform: none; }

/* Stagger */
.dif-card:nth-child(2) { transition-delay: .08s; }
.dif-card:nth-child(3) { transition-delay: .16s; }
.dif-card:nth-child(4) { transition-delay: .24s; }
.prod-card:nth-child(2) { transition-delay: .06s; }
.prod-card:nth-child(3) { transition-delay: .12s; }
.prod-card:nth-child(4) { transition-delay: .18s; }
.prod-card:nth-child(5) { transition-delay: .24s; }
.prod-card:nth-child(6) { transition-delay: .30s; }
.depo-card:nth-child(2) { transition-delay: .1s; }
.depo-card:nth-child(3) { transition-delay: .2s; }

/* ============================================================
   ANNOUNCE BAR
   ============================================================ */
.announce-bar {
  background: var(--brown);
  color: rgba(255,255,255,.7);
  text-align: center;
  padding: 10px 20px;
  font-size: 12.5px;
  font-weight: 400;
}
.announce-inner { display: flex; align-items: center; justify-content: center; gap: 8px; }
.announce-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}
.announce-bar a { color: var(--pink-soft); font-weight: 600; transition: color .2s; }
.announce-bar a:hover { color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow .3s var(--ease), border-color .3s;
}
.header.scrolled {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo-link { flex-shrink: 0; display: flex; align-items: center; }
.logo-img   { height: 50px; width: auto; object-fit: contain; }

.nav { display: flex; align-items: center; gap: 2px; margin: 0 auto; }
.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-light);
  padding: 7px 14px;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--brown); background: var(--surface-2); }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--brown);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--r-sm);
  transition: background .2s, transform .15s var(--ease), box-shadow .2s;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(90,42,10,.2);
}
.header-cta:hover { background: var(--brown-deep); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(90,42,10,.28); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 8px;
  transition: border-color .2s;
}
.hamburger:hover { border-color: var(--pink); }
.hamburger span {
  display: block; width: 100%; height: 1.5px;
  background: var(--brown); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   GLOBAL BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--brown);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  transition: background .2s, transform .2s var(--ease), box-shadow .2s;
  box-shadow: 0 2px 14px rgba(90,42,10,.22);
}
.btn-primary:hover {
  background: var(--brown-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(90,42,10,.3);
}
.btn-primary--lg {
  font-size: 15px;
  padding: 16px 32px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  padding: 13px 26px;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(255,255,255,.28);
  transition: all .2s;
}
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.09);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { object-position: center 38%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg,
    rgba(16,5,0,.68) 0%,
    rgba(16,5,0,.42) 55%,
    rgba(16,5,0,.14) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 88px 88px;
  max-width: 740px;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 22px; height: 1.5px;
  background: var(--pink);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-display {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -.015em;
}
.hero-display em {
  display: block;
  color: var(--pink);
  font-style: italic;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.68);
  line-height: 1.72;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-trust-stars {
  color: #f4b942;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
}
.hero-trust-text {
  font-size: 12.5px;
  color: rgba(255,255,255,.48);
  font-weight: 400;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
}
.stats-bar-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
}
.stats-bar-item {
  padding: 36px 20px;
  text-align: center;
}
.stats-bar-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 5px;
}
.stats-bar-item span {
  font-size: 11.5px;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 500;
}
.stats-bar-sep { width: 1px; height: 36px; background: var(--border); }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 14px; }
.section-desc { font-size: 16px; color: var(--ink-light); max-width: 500px; margin: 0 auto; line-height: 1.65; }
.section-header--light h2 { color: #fff; }
.section-desc--light { color: rgba(255,255,255,.5); }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais {
  background: var(--surface);
  padding: var(--space-section) 40px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.diferenciais-wrap { max-width: 1100px; margin: 0 auto; }

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dif-card {
  padding: 36px 28px 32px;
  border-top: 2px solid var(--border);
  transition: border-top-color .3s;
}
.dif-card:hover {
  border-top-color: var(--pink);
}

.dif-icon-wrap {
  font-size: 26px;
  width: 58px; height: 58px;
  border-radius: var(--r-lg);
  background: var(--pink-pale);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1.5px solid var(--pink-soft);
}

.dif-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
.dif-card p {
  font-size: 13.5px;
  color: var(--ink-light);
  line-height: 1.65;
}

/* ============================================================
   PRODUTOS
   ============================================================ */
.produtos {
  padding: var(--space-section) 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.prod-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--pink-soft);
}

.prod-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-3);
}
.prod-img-wrap img { transition: transform .5s var(--ease); }
.prod-card:hover .prod-img-wrap img { transform: scale(1.05); }

.prod-img-overlay {
  position: absolute; inset: 0;
  background: rgba(16,5,0,.42);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.prod-card:hover .prod-img-overlay { opacity: 1; }

.btn-overlay {
  background: #fff;
  color: var(--brown);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: var(--r-full);
  transform: translateY(8px);
  transition: transform .3s var(--ease);
  white-space: nowrap;
}
.prod-card:hover .btn-overlay { transform: translateY(0); }

.prod-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--brown);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  letter-spacing: .04em;
}
.prod-badge--pink { background: var(--pink); color: var(--brown-deep); }

.prod-thumbs {
  display: flex;
  gap: 3px;
  height: 68px;
  background: var(--surface-3);
  flex-shrink: 0;
}
.prod-thumbs img { flex: 1; min-width: 0; object-fit: cover; display: block; }

.prod-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prod-categoria {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--pink-hover);
  margin-bottom: 7px;
}
.prod-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 8px;
}
.prod-body > p {
  font-size: 13.5px;
  color: var(--ink-light);
  flex: 1;
  line-height: 1.6;
}

.prod-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.prod-wa-note {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-light);
  text-align: center;
}
.btn-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--brown);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--r-sm);
  transition: background .2s, transform .15s var(--ease), box-shadow .2s;
  box-shadow: 0 2px 10px rgba(90,42,10,.18);
}
.btn-card:hover {
  background: var(--brown-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(90,42,10,.26);
}

/* ============================================================
   PRODUTOS HEADING
   ============================================================ */
.produtos-heading {
  max-width: 700px;
  margin: 0 auto;
  padding: 96px 40px 0;
  text-align: center;
}
.produtos-heading h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 12px;
}
.produtos-heading h2 em {
  font-style: italic;
  color: var(--pink-hover);
}
.produtos-heading .section-desc { margin-bottom: 0; }

/* ============================================================
   PRODUTOS — seções editoriais
   ============================================================ */
.ps-sec {
  padding: 108px 0;
  border-top: 1px solid var(--border-soft);
}
.ps-sec-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  align-items: center;
  gap: 72px;
}
.ps-sec--rev .ps-sec-inner { flex-direction: row-reverse; }
.ps-sec--featured { background: linear-gradient(145deg, #fce8f3 0%, #fdf0f6 60%, #fff 100%); border-top: none; }
.ps-sec--soft     { background: var(--surface-2); }
.ps-sec--dark     { background: var(--brown-deep); border-top: none; }

.ps-sec-visual { flex: 0 0 52%; max-width: 52%; }
.ps-sec-img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--r-xl); display: block; }

.ps-sec-visual--bolo { display: flex; gap: 10px; height: 520px; }
.ps-bolo-main-img { flex: 0 0 65%; height: 100%; object-fit: cover; border-radius: var(--r-xl); display: block; }
.ps-bolo-side { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.ps-bolo-side img { flex: 1; border-radius: var(--r-lg); object-fit: cover; display: block; min-height: 0; }

.ps-sec-visual--mosaic4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px; height: 520px;
}
.ps-sec-visual--mosaic4 img { border-radius: var(--r-lg); object-fit: cover; display: block; width: 100%; height: 100%; }

.ps-sec-visual--mosaic3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px; height: 520px;
}
.ps-sec-visual--mosaic3 img:first-child { grid-column: 1 / -1; border-radius: var(--r-xl); }
.ps-sec-visual--mosaic3 img:not(:first-child) { border-radius: var(--r-lg); }
.ps-sec-visual--mosaic3 img { object-fit: cover; display: block; width: 100%; height: 100%; }

.ps-sec-copy { flex: 1; display: flex; flex-direction: column; align-items: flex-start; }

.ps-sec-tag {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--brown-mid); margin-bottom: 16px;
}
.ps-sec-overline {
  display: inline-block;
  background: #c92d7a; color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  padding: 5px 16px; border-radius: var(--r-full); margin-bottom: 20px;
}
.ps-sec-h {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 3.6vw, 3.8rem);
  font-weight: 700; color: var(--ink);
  line-height: 1.12; margin-bottom: 20px;
}
.ps-sec-h em { font-style: italic; color: var(--pink-hover); display: block; }
.ps-sec--dark .ps-sec-h    { color: #fff; }
.ps-sec--dark .ps-sec-h em { color: var(--pink-soft); }
.ps-sec--featured .ps-sec-h em { color: #c92d7a; }

.ps-sec-p { font-size: 15.5px; color: var(--ink-mid); line-height: 1.78; margin-bottom: 32px; max-width: 440px; }
.ps-sec--dark .ps-sec-p { color: rgba(255,255,255,.6); }

.ps-sec-cta {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600; color: var(--brown);
  border-bottom: 2px solid var(--pink); padding-bottom: 4px;
  transition: color .2s, border-color .2s;
}
.ps-sec-cta:hover { color: var(--brown-deep); border-color: var(--pink-hover); }
.ps-sec-cta--light { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.4); }
.ps-sec-cta--light:hover { color: #fff; border-color: rgba(255,255,255,.75); }

/* ============================================================
   COMO PEDIR
   ============================================================ */
.como-pedir {
  background: var(--brown);
  padding: var(--space-section) 32px;
  overflow: hidden;
  position: relative;
}
.como-pedir::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(232,160,190,.07), transparent);
  pointer-events: none;
}
.como-pedir-inner { max-width: 900px; margin: 0 auto; }

.steps-wrap { position: relative; margin-bottom: 56px; }
.steps-line {
  position: absolute;
  top: 28px;
  left: calc(50% / 3 + 18px);
  right: calc(50% / 3 + 18px);
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(232,160,190,.25) 0, rgba(232,160,190,.25) 6px, transparent 6px, transparent 14px);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.step { text-align: center; padding: 0 20px; }
.step-num-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(232,160,190,.3);
  display: grid; place-items: center;
  margin: 0 auto 20px;
  background: rgba(232,160,190,.07);
  transition: border-color .2s, background .2s;
}
.step:hover .step-num-wrap {
  border-color: var(--pink);
  background: rgba(232,160,190,.14);
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pink-soft);
}
.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}
.step p { font-size: 14px; color: rgba(255,255,255,.52); line-height: 1.65; }
.como-pedir-cta { text-align: center; }

/* ============================================================
   SOBRE
   ============================================================ */
.sobre {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  overflow: hidden;
}
.sobre-foto-wrap {
  position: relative;
  min-height: 500px;
  background: var(--surface-3);
}
.sobre-foto-wrap img { object-position: top center; }
.sobre-card-float {
  position: absolute;
  bottom: 40px; right: -22px;
  background: var(--pink);
  border-radius: var(--r-lg);
  padding: 22px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.sobre-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--brown-deep);
  line-height: 1;
}
.sobre-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: .7;
  margin-top: 4px;
}
.sobre-texto {
  background: var(--surface-2);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sobre-texto h2 { font-size: clamp(1.8rem, 2.6vw, 2.5rem); margin-bottom: 20px; }
.sobre-texto > p {
  font-size: 15px;
  color: var(--ink-mid);
  margin-bottom: 14px;
  line-height: 1.75;
}
.sobre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 28px;
}
.sobre-tags span {
  font-size: 12px;
  font-weight: 500;
  color: var(--brown);
  background: var(--surface);
  border: 1.5px solid var(--pink-soft);
  padding: 5px 14px;
  border-radius: var(--r-full);
  transition: background .2s, border-color .2s;
}
.sobre-tags span:hover { background: var(--pink-pale); border-color: var(--pink); }
.btn-sobre {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: var(--brown);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  transition: background .2s, transform .2s var(--ease), box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.btn-sobre:hover { background: var(--brown-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos { background: var(--surface-2); border-top: 1px solid var(--border-soft); }
.depoimentos-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-section) 40px;
}
.depo-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 22px;
  align-items: start;
}
.depo-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 34px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.depo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.depo-card--featured {
  background: var(--brown);
  border-color: transparent;
  transform: translateY(-18px);
  position: relative;
  box-shadow: var(--shadow-xl);
}
.depo-card--featured:hover { transform: translateY(-24px); }
.depo-big-quote {
  position: absolute;
  top: -10px; left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 90px;
  color: var(--pink);
  line-height: .7;
  pointer-events: none;
}
.depo-stars {
  font-size: 16px;
  color: #f4b942;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.depo-card--featured .depo-stars { color: #f4c86a; }
.depo-card > p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15.5px;
  color: var(--ink-mid);
  line-height: 1.72;
  margin-bottom: 26px;
}
.depo-card--featured > p { color: rgba(255,255,255,.72); }
.depo-autor { display: flex; align-items: center; gap: 12px; }
.depo-autor svg { border-radius: 50%; flex-shrink: 0; }
.depo-autor div { display: flex; flex-direction: column; gap: 2px; }
.depo-autor strong { font-size: 14px; font-weight: 600; color: var(--ink); }
.depo-card--featured .depo-autor strong { color: #fff; }
.depo-autor span { font-size: 12px; color: var(--ink-light); }
.depo-card--featured .depo-autor span { color: rgba(255,255,255,.42); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
}
.cta-final-img { position: relative; min-height: 420px; background: var(--surface-3); }
.cta-final-img img { object-position: center; max-height: 480px; object-fit: contain; width: auto; margin: auto; }
.cta-final-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 50%, rgba(248,245,242,.55));
}
.cta-final-content {
  background: var(--pink-pale);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-final-content h2 { font-size: clamp(1.8rem, 2.6vw, 2.5rem); margin-bottom: 16px; }
.cta-final-content > p { font-size: 15px; color: var(--ink-mid); margin-bottom: 36px; line-height: 1.75; }
.cta-final-content .btn-primary { align-self: flex-start; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #180a03; padding: 72px 36px 0; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  height: 48px; width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .55;
}
.footer-brand > p { font-size: 14px; color: rgba(255,255,255,.35); line-height: 1.7; max-width: 260px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,.48);
  transition: color .2s;
}
.footer-contact-item:hover { color: var(--pink-soft); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 4px;
}
.footer-col a { font-size: 14px; color: rgba(255,255,255,.48); transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,.88); }
.footer-info { font-size: 14px; color: rgba(255,255,255,.35); }
.footer-wa-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  background: rgba(37,211,102,.1) !important;
  color: #4ade80 !important;
  padding: 9px 16px;
  border-radius: var(--r-sm);
  font-size: 13px !important;
  font-weight: 600 !important;
  border: 1px solid rgba(37,211,102,.18);
  margin-top: 4px;
  transition: background .2s !important;
}
.footer-wa-btn:hover { background: rgba(37,211,102,.18) !important; color: #6ee7a0 !important; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 0;
}
.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255,255,255,.18);
  text-align: center;
  letter-spacing: .02em;
}

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 300;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--r-full);
  box-shadow: 0 4px 24px rgba(37,211,102,.42);
  font-size: 13.5px;
  font-weight: 600;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 38px rgba(37,211,102,.52);
}
.wa-float-text { white-space: nowrap; }

/* ============================================================
   RESPONSIVE — 1200px
   ============================================================ */
@media (max-width: 1200px) {
  .diferenciais-grid { gap: 18px; }
  .dif-card { padding: 28px 22px; }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .nav-link { font-size: 13px; padding: 6px 10px; }
  .header-inner { padding: 0 24px; }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .produtos-grid { grid-template-columns: repeat(2, 1fr); }
  .ps-sec-inner { padding: 0 36px; gap: 48px; }
  .ps-sec-img { height: 420px; }
  .ps-sec-visual--bolo,
  .ps-sec-visual--mosaic4,
  .ps-sec-visual--mosaic3 { height: 420px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --space-section: 72px; }

  .announce-bar { font-size: 12px; padding: 8px 16px; }

  .hamburger { display: flex; }
  .header-cta { display: none; }
  .header-inner { padding: 0 20px; }

  .nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    border-bottom: 2px solid var(--pink-soft);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .3s var(--ease), opacity .3s;
    pointer-events: none;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { padding: 12px 16px; font-size: 15px; }

  .hero { min-height: 85vh; align-items: flex-end; }
  .hero-content { padding: 0 24px 68px; max-width: 100%; }
  .hero-display { font-size: clamp(2.6rem, 10vw, 3.6rem); }
  .hero-sub { font-size: 16px; max-width: 100%; }
  .hero-actions { margin-bottom: 24px; }

  .stats-bar-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .stats-bar-sep { display: none; }
  .stats-bar-item { padding: 28px 12px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
  .stats-bar-item:nth-child(2n) { border-right: none; }
  .stats-bar-item:nth-last-child(-n+2) { border-bottom: none; }

  .diferenciais { padding: 64px 20px; }
  .diferenciais-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .dif-card { padding: 24px 20px; }

  .produtos { padding: 72px 20px; }
  .produtos-grid { grid-template-columns: 1fr; gap: 20px; }
  .prod-img-wrap { aspect-ratio: 16/9; }
  .prod-img-overlay { display: none; }
  .prod-thumbs { height: 58px; }

  .produtos-heading { padding: 64px 24px 0; }
  .ps-sec { padding: 56px 0; }
  .ps-sec-inner { flex-direction: column !important; padding: 0 24px; gap: 32px; }
  .ps-sec-visual,
  .ps-sec-visual--bolo,
  .ps-sec-visual--mosaic4,
  .ps-sec-visual--mosaic3 { flex: none; max-width: 100%; width: 100%; }
  .ps-sec-img { height: 300px; }
  .ps-sec-visual--bolo,
  .ps-sec-visual--mosaic4,
  .ps-sec-visual--mosaic3 { height: 280px; }
  .ps-sec-copy { align-items: center; text-align: center; }
  .ps-sec-p { max-width: 100%; }

  .steps-line { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .step { border-bottom: 1px solid rgba(255,255,255,.07); }
  .step:last-child { border-bottom: none; }

  .sobre { grid-template-columns: 1fr; }
  .sobre-foto-wrap { min-height: 320px; }
  .sobre-card-float { right: 16px; bottom: 16px; }
  .sobre-texto { padding: 48px 24px; }
  .sobre-texto h2 { font-size: clamp(1.7rem, 6vw, 2.2rem); }

  .depoimentos-inner { padding: 72px 20px; }
  .depo-grid { grid-template-columns: 1fr; gap: 16px; }
  .depo-card--featured { transform: none; box-shadow: var(--shadow-md); }
  .depo-card--featured:hover { transform: translateY(-4px); }
  .depo-big-quote { display: none; }

  .cta-final { grid-template-columns: 1fr; }
  .cta-final-img { min-height: 260px; }
  .cta-final-content { padding: 48px 24px; }
  .cta-final-content .btn-primary { align-self: stretch; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  .footer { padding: 56px 20px 0; }

  .wa-float-text { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .dif-card { padding: 22px 18px; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .btn-primary--lg { font-size: 14px; padding: 14px 24px; }

  .ps-sec-h { font-size: clamp(2rem, 8vw, 2.8rem); }
  .ps-sec-img,
  .ps-sec-visual--bolo,
  .ps-sec-visual--mosaic4,
  .ps-sec-visual--mosaic3 { height: 240px; }
}

/* ============================================================
   NAV — catálogo destaque
   ============================================================ */
.nav-link--catalog {
  color: var(--brown);
  font-weight: 600;
  background: var(--pink-pale);
  border: 1.5px solid var(--pink-soft);
  border-radius: var(--r-sm);
  margin-left: 4px;
}
.nav-link--catalog:hover { background: var(--surface-3); border-color: var(--pink); }

/* ============================================================
   CAT-CTA-STRIP — home page "ver catálogo"
   ============================================================ */
.cat-cta-strip {
  padding: 52px 40px 64px;
  text-align: center;
  border-top: 1px solid var(--border-soft);
}
.cat-cta-strip p { font-size: 14px; color: var(--ink-light); margin-bottom: 14px; }
.cat-cta-link {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 600;
  color: var(--brown);
  border-bottom: 2px solid var(--pink);
  padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.cat-cta-link:hover { color: var(--brown-deep); border-color: var(--pink-hover); }

/* ============================================================
   CATÁLOGO PAGE
   ============================================================ */
.cat-page-hero {
  background: var(--brown-deep);
  padding: 96px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cat-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 110%, rgba(232,160,190,.14), transparent);
  pointer-events: none;
}
.cat-page-hero .label-tag { color: rgba(255,255,255,.4); position: relative; }
.cat-page-hero .label-tag::before { background: rgba(232,160,190,.5); }
.cat-page-hero h1 { font-size: clamp(2.6rem, 5vw, 4rem); color: #fff; margin-bottom: 14px; position: relative; }
.cat-page-hero h1 em { color: var(--pink); }
.cat-page-hero p {
  font-size: 16px; color: rgba(255,255,255,.52);
  max-width: 500px; margin: 0 auto 36px;
  line-height: 1.68; position: relative;
}
.cat-page-hero .btn-primary { position: relative; }

.cat-nav {
  position: sticky;
  top: 68px; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
  padding: 0 40px;
  display: flex; gap: 0;
  overflow-x: auto; scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-link {
  flex-shrink: 0;
  font-size: 13px; font-weight: 500;
  color: var(--ink-light);
  padding: 15px 16px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.cat-nav-link:hover,
.cat-nav-link.active { color: var(--brown); border-bottom-color: var(--pink); }

.cat-wrap {
  border-bottom: 1px solid var(--border-soft);
  scroll-margin-top: 116px; /* header 68px + cat-nav ~48px */
}
.cat-wrap--alt { background: var(--surface-2); }

.cat-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 48px 80px;
}
.cat-section-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.cat-section-intro h2 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); margin-bottom: 8px; }
.cat-section-intro p { font-size: 14.5px; color: var(--ink-light); max-width: 440px; line-height: 1.65; }

.cat-grid { display: grid; gap: 10px; }
.cat-grid--1 { grid-template-columns: 1fr; max-width: 520px; }
.cat-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cat-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cat-grid--4 { grid-template-columns: repeat(4, 1fr); }

.cat-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--surface-3);
}
.cat-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.cat-item:hover img { transform: scale(1.05); }
.cat-item--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.cat-item--tall { grid-row: span 2; aspect-ratio: 1 / 2; }

.cat-final-strip {
  background: var(--brown);
  padding: 72px 40px;
  text-align: center;
  position: relative;
}
.cat-final-strip h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 12px; }
.cat-final-strip h2 em { color: var(--pink); }
.cat-final-strip p { color: rgba(255,255,255,.5); font-size: 15px; margin-bottom: 32px; }

/* Catalogue responsive */
@media (max-width: 1024px) {
  .cat-section { padding: 60px 36px; }
}
@media (max-width: 768px) {
  .cat-page-hero { padding: 72px 24px 64px; }
  .cat-nav { padding: 0 20px; }
  .cat-section { padding: 48px 24px 56px; }
  .cat-section-intro { flex-direction: column; align-items: flex-start; }
  .cat-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .cat-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .cat-item--wide { grid-column: span 1; aspect-ratio: 1 / 1; }
  .cat-item--tall { grid-row: span 1; aspect-ratio: 1 / 1; }
  .cat-cta-strip { padding: 40px 24px 48px; }
  .cat-final-strip { padding: 56px 24px; }
}
@media (max-width: 480px) {
  .cat-grid--3,
  .cat-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .cat-grid--2 { grid-template-columns: 1fr; }
}
