/* ============================================================
   NKS DESCARTÁVEIS · Site Institucional
   Identidade visual: gradiente rosa-magenta → roxo
   Tipografia: Inter
   ============================================================ */

:root {
  /* Palette */
  --pink:        #E94B82;
  --magenta:     #C73B6E;
  --magenta-dk:  #A22A5B;
  --purple:      #6B2A6E;
  --purple-dk:   #4A1F4F;

  --ink:         #1A1418;
  --ink-2:       #2B2129;
  --muted:       #6F6068;
  --line:        #ECE2DA;
  --line-2:      #F4ECE5;

  --bg:          #FAF7F4;
  --bg-2:        #FFFFFF;
  --bg-soft:     #FFE8EE;
  --bg-warm:     #FCF5F0;

  /* Gradients */
  --grad-brand:  linear-gradient(135deg, #E94B82 0%, #C73B6E 45%, #6B2A6E 100%);
  --grad-brand-v: linear-gradient(180deg, #E94B82 0%, #C73B6E 50%, #6B2A6E 100%);
  --grad-soft:   linear-gradient(180deg, #FFF 0%, #FCF5F0 100%);

  /* Type */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Radius & Shadows */
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-2xl: 48px;
  --r-pill: 999px;

  --shadow-sm: 0 4px 14px rgba(26, 20, 24, 0.06);
  --shadow-md: 0 12px 32px rgba(26, 20, 24, 0.08);
  --shadow-lg: 0 24px 60px rgba(107, 42, 110, 0.16);
  --shadow-brand: 0 18px 40px -10px rgba(199, 59, 110, 0.45);

  /* Container */
  --container: 1240px;
  --gutter: clamp(16px, 4vw, 32px);

  /* Motion */
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--magenta); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 12px 18px;
  z-index: 100;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--container);
  padding-inline: var(--gutter);
  margin-inline: auto;
}

/* ===== Typography helpers ===== */
.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--magenta);
}
.eyebrow--center { justify-content: center; width: 100%; }
.eyebrow--light { color: rgba(255, 255, 255, 0.85); }
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad-brand);
  box-shadow: 0 0 0 4px rgba(199, 59, 110, 0.18);
}
.eyebrow__dot--light {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

/* ===== Buttons ===== */
.btn {
  --btn-px: 28px;
  --btn-py: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-py) var(--btn-px);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn--sm { --btn-px: 20px; --btn-py: 12px; font-size: 14px; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px -10px rgba(199, 59, 110, 0.55);
}
.btn--ghost {
  background: rgba(199, 59, 110, 0.07);
  color: var(--magenta);
  border-color: rgba(199, 59, 110, 0.2);
}
.btn--ghost:hover {
  background: rgba(199, 59, 110, 0.12);
  border-color: rgba(199, 59, 110, 0.35);
  transform: translateY(-2px);
}
.btn--white {
  background: #fff;
  color: var(--magenta);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,0.18); }
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 14px 0;
}
.nav__inner {
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
  will-change: background, box-shadow;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--r-pill);
  padding: 10px 14px 10px 22px;
  box-shadow: 0 8px 30px rgba(26, 20, 24, 0.06);
}
.nav.is-scrolled .nav__inner {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 36px rgba(26, 20, 24, 0.08);
}
.nav__brand { display: flex; align-items: center; }
.nav__logo { height: 38px; width: auto; display: block; }
.nav__menu {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
}
.nav__menu a {
  color: var(--ink-2);
  position: relative;
  padding: 6px 2px;
  transition: color .2s;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  inset: auto 50% -4px 50%;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
  transition: inset .25s var(--ease);
}
.nav__menu a:hover { color: var(--magenta); }
.nav__menu a:hover::after { inset: auto 0 -4px 0; }
.nav__menu a.is-current { color: var(--magenta); }
.nav__menu a.is-current::after { inset: auto 0 -4px 0; }

.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__burger { display: none; width: 40px; height: 40px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .2s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: clamp(120px, 16vh, 180px) 0 clamp(80px, 10vh, 140px);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #FFF6F1 0%, #FAF7F4 100%);
}
.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__blob {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}
.hero__blob--1 {
  background: radial-gradient(circle, #E94B82 0%, transparent 70%);
  top: -200px; right: -200px;
}
.hero__blob--2 {
  background: radial-gradient(circle, #6B2A6E 0%, transparent 70%);
  bottom: -300px; left: -100px;
  opacity: 0.22;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(199, 59, 110, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(199, 59, 110, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}
.hero__copy > * + * { margin-top: 24px; }
.hero__title {
  font-size: clamp(38px, 5.4vw, 68px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1.6px;
  color: var(--ink);
}
.hero__lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 540px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px !important; }
.hero__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 44px !important;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.pillar__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(233, 75, 130, 0.12), rgba(107, 42, 110, 0.08));
  color: var(--magenta);
  display: grid; place-items: center;
}
.pillar__icon svg { width: 22px; height: 22px; }
.pillar strong { display: block; font-size: 14px; color: var(--ink); font-weight: 700; }
.pillar span { font-size: 13px; color: var(--muted); }

/* Hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.hero__visual-shape {
  position: absolute;
  inset: 8% 6%;
  background: var(--grad-brand);
  border-radius: 50% 50% 55% 45% / 50% 55% 45% 50%;
  opacity: 0.95;
  z-index: 0;
  box-shadow: var(--shadow-lg);
}
.hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  filter: drop-shadow(0 30px 50px rgba(74, 31, 79, 0.35));
}
.hero__badge {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line-2);
}
.hero__badge--top {
  top: 8%;
  left: -6%;
}
.hero__badge--bottom {
  bottom: 6%;
  right: -2%;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #2ECC71; box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.2); }
.hero__badge-num {
  font-size: 32px;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.hero__badge-label { font-size: 12px; line-height: 1.3; font-weight: 600; color: var(--ink-2); }
.hero__badge-label--lg { font-size: 13px; font-weight: 700; color: var(--ink); }
.hero__badge-seal {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--grad-brand);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-brand);
  flex-shrink: 0;
}
.hero__badge-seal svg { width: 20px; height: 20px; }

.hero__wave {
  position: absolute;
  inset: auto 0 -1px 0;
  height: 80px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
}
.hero__wave svg { width: 100%; height: 100%; display: block; }

/* ===== Trust strip ===== */
.trust {
  background: var(--ink);
  color: #fff;
  padding: 28px 0;
  position: relative;
  z-index: 2;
}
.trust__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trust__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.trust__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.trust__items i {
  display: inline-block;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--magenta);
}

/* ===== Section base ===== */
.section { padding: clamp(72px, 10vw, 130px) 0; }
.section__head {
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 70px);
  text-align: center;
}
.section__head--left { text-align: left; margin-inline: 0; }
.section__head > * + * { margin-top: 16px; }
.section__title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--ink);
}
.section__title--sm { font-size: clamp(28px, 3vw, 42px); }
.section__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--muted);
  max-width: 620px;
  margin-inline: auto;
}
.section__head--left .section__sub { margin-inline: 0; }

/* ===== Produtos ===== */
.produtos { background: var(--bg-warm); position: relative; }
.produtos::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(233, 75, 130, 0.05), transparent 50%);
  pointer-events: none;
}

.produtos__featured {
  margin-bottom: 60px;
}
.prod-card--hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-2);
}
.prod-card__media {
  position: relative;
  background: linear-gradient(135deg, #FFF6F1, #FFE8EE);
  display: grid; place-items: center;
  padding: 40px;
  overflow: hidden;
  min-height: 380px;
}
.prod-card__shape {
  position: absolute;
  inset: 10% 10%;
  background: var(--grad-brand);
  border-radius: 50% 50% 55% 45% / 50% 55% 45% 50%;
  opacity: 0.95;
  box-shadow: var(--shadow-lg);
}
.prod-card__media img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 360px;
  filter: drop-shadow(0 22px 40px rgba(74, 31, 79, 0.35));
}
.prod-card__body {
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.prod-card__tag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  background: var(--bg-soft);
  color: var(--magenta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--r-pill);
}
.prod-card__body h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.8px;
}
.prod-card__body p { color: var(--muted); font-size: 16px; }
.prod-card__feats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.prod-card__feats li {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-2);
}
.prod-card__body .btn { align-self: flex-start; margin-top: 6px; }

.produtos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cat-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(199, 59, 110, 0.2);
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(233, 75, 130, 0.12), rgba(107, 42, 110, 0.08));
  color: var(--magenta);
  display: grid; place-items: center;
}
.cat-card__media {
  aspect-ratio: 1 / 1;
  margin: -28px -24px 18px;
  background: #fff;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  position: relative;
}
.cat-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.cat-card:hover .cat-card__media img { transform: scale(1.06); }
.cat-card__icon svg { width: 26px; height: 26px; }
.cat-card__icon--solid {
  background: var(--grad-brand);
  color: #fff;
}
.cat-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.cat-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.cat-card__arrow {
  margin-top: auto;
  font-size: 18px;
  color: var(--magenta);
  font-weight: 600;
  transition: transform .3s var(--ease);
}
.cat-card:hover .cat-card__arrow { transform: translateX(4px); }
.cat-card--more {
  background: linear-gradient(135deg, #FFF6F1, #FFE8EE);
  border-color: rgba(199, 59, 110, 0.15);
}

/* ===== Empresa ===== */
.empresa { background: #fff; }
.empresa__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.empresa__media {
  position: relative;
}
.empresa__media-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.empresa__media-frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.empresa__media-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(74, 31, 79, 0.4));
}
.empresa__media-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--grad-brand);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-brand);
  min-width: 200px;
}
.empresa__media-card-num {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}
.empresa__media-card-label {
  font-size: 13px;
  line-height: 1.4;
  margin-top: 6px;
  opacity: 0.95;
}
.empresa__copy > * + * { margin-top: 22px; }
.empresa__copy p { font-size: 16px; color: var(--ink-2); }
.empresa__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  margin-top: 40px !important;
}
.empresa__stats strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.empresa__stats span {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-top: 6px;
}

/* ===== Qualidade ===== */
.qualidade { background: var(--bg-warm); }
.quali__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.quali__item {
  background: #fff;
  padding: 36px 28px 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-2);
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.quali__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.quali__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -2px;
  background: linear-gradient(180deg, rgba(199, 59, 110, 0.15), rgba(107, 42, 110, 0.04));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.quali__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--grad-brand);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 22px;
  box-shadow: var(--shadow-brand);
}
.quali__icon svg { width: 28px; height: 28px; }
.quali__item h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 10px; }
.quali__item p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* ===== Processo ===== */
.processo { background: #fff; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  padding-top: 8px;
}
.step__num {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  font-size: 14px;
  font-weight: 800;
  color: var(--magenta);
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
}
.step:hover .step__num {
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-brand);
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.3px; }
.step p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* ===== CTA band ===== */
.cta-band {
  background: var(--grad-brand);
  color: #fff;
  padding: clamp(60px, 8vw, 110px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: -50% -10%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1), transparent 50%);
  z-index: -1;
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-band h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 14px 0 12px;
}
.cta-band p {
  font-size: 16px;
  opacity: 0.95;
  max-width: 540px;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

/* ===== Contato ===== */
.contato { background: var(--bg); }
.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.contato__copy > * + * { margin-top: 18px; }
.contato__copy p { color: var(--muted); font-size: 16px; max-width: 460px; }
.contato__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px !important;
}
.contato__info li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 18px 18px;
}
.contato__info-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(233, 75, 130, 0.12), rgba(107, 42, 110, 0.08));
  color: var(--magenta);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contato__info-icon svg { width: 20px; height: 20px; }
.contato__info strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 4px;
}
.contato__info a, .contato__info span {
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  word-break: break-word;
}
.contato__info a:hover { color: var(--magenta); }

/* Form */
.form {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field > span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ink-2);
}
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: 15px;
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s, background .2s;
  font-family: inherit;
  color: var(--ink);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--magenta);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(199, 59, 110, 0.12);
}
.form__hint { font-size: 12px; color: var(--muted); }
.form__feedback {
  display: none;
  padding: 14px 16px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
}
.form__feedback.is-success {
  display: block;
  background: rgba(46, 204, 113, 0.12);
  color: #1B7A3E;
  border: 1px solid rgba(46, 204, 113, 0.3);
}
.form__feedback.is-error {
  display: block;
  background: rgba(229, 62, 62, 0.1);
  color: #B43232;
  border: 1px solid rgba(229, 62, 62, 0.25);
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 70px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__brand p { font-size: 14px; line-height: 1.6; max-width: 360px; margin: 18px 0 22px; }
.footer__legal {
  font-size: 12.5px !important;
  line-height: 1.5 !important;
  color: rgba(255, 255, 255, 0.55) !important;
  margin: 24px 0 0 !important;
}
.footer__legal strong { color: rgba(255, 255, 255, 0.75); font-weight: 600; }
.footer__logo {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all .25s var(--ease);
}
.footer__social a:hover {
  background: var(--grad-brand);
  border-color: transparent;
  transform: translateY(-2px);
}
.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 18px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.7);
  transition: color .2s;
}
.footer__col a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__credit {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity .2s;
}
.footer__credit:hover { opacity: 0.7; }

/* ===== WhatsApp Float ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
  z-index: 60;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.4s infinite var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
@keyframes wa-pulse {
  0%   { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 480px; margin-inline: auto; }
  .hero__pillars { grid-template-columns: repeat(2, 1fr); }
  .produtos__grid { grid-template-columns: repeat(2, 1fr); }
  .quali__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .empresa__inner, .contato__inner, .cta-band__inner { grid-template-columns: 1fr; }
  .cta-band__actions { justify-content: flex-start; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .prod-card--hero { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__menu { display: none; }
  .nav__menu.is-open {
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    left: var(--gutter);
    right: var(--gutter);
    flex-direction: column;
    background: #fff;
    padding: 20px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav__menu.is-open a { padding: 12px 8px; border-bottom: 1px solid var(--line-2); }
  .nav__menu.is-open a:last-child { border: 0; }
  .nav__burger { display: flex; }
  .nav__cta .btn { display: none; }
  .nav__cta .nav__burger { display: flex; }

  .form__row { grid-template-columns: 1fr; }
  .empresa__stats { grid-template-columns: 1fr; gap: 16px; }
  .contato__info { grid-template-columns: 1fr; }
  .empresa__media-card { right: 12px; bottom: -20px; padding: 18px 22px; min-width: unset; }
  .empresa__media-card-num { font-size: 36px; }

  .hero__pillars { grid-template-columns: 1fr 1fr; }
  .trust__inner { gap: 16px; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
  .hero__badge--top { left: 4%; top: 4%; padding: 10px 14px; }
  .hero__badge--bottom { right: 4%; bottom: 4%; font-size: 12px; padding: 10px 14px; }
  .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .produtos__grid { grid-template-columns: 1fr; }
  .quali__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}

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

/* ============================================================
   INNER PAGES — Page Hero / Breadcrumb / Catálogo / Detalhe
   ============================================================ */

/* Page hero (top of inner pages) */
.page-hero {
  position: relative;
  padding: clamp(120px, 16vh, 180px) 0 clamp(60px, 8vh, 100px);
  background: linear-gradient(180deg, #FFF6F1 0%, #FAF7F4 100%);
  overflow: hidden;
  isolation: isolate;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.page-hero__bg::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  background: radial-gradient(circle, #E94B82 0%, transparent 70%);
  top: -200px; right: -150px;
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  background: radial-gradient(circle, #6B2A6E 0%, transparent 70%);
  bottom: -250px; left: -100px;
}
.page-hero__inner { max-width: 820px; text-align: center; margin-inline: auto; }
.page-hero__inner > * + * { margin-top: 18px; }
.page-hero__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.4px;
}
.page-hero__sub {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-2);
  max-width: 640px;
  margin-inline: auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.breadcrumb a {
  color: var(--muted);
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--magenta); }
.breadcrumb__sep { opacity: 0.5; }
.breadcrumb__current { color: var(--magenta); font-weight: 600; }

/* Catálogo grid (produtos.html) */
.catalog {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg);
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .catalog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .catalog__grid { grid-template-columns: 1fr; } }

.catalog-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(199, 59, 110, 0.2);
}
.catalog-card__visual {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #FFF6F1, #FFE8EE);
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
}
.catalog-card__visual--photo { padding: 0; background: #fff; }
.catalog-card__visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.catalog-card:hover .catalog-card__visual--photo img { transform: scale(1.04); }
.catalog-card__shape {
  position: absolute;
  inset: 18% 22%;
  background: var(--grad-brand);
  border-radius: 50% 50% 55% 45% / 50% 55% 45% 50%;
  opacity: 0.9;
  transition: transform .5s ease-out;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.catalog-card:hover .catalog-card__shape {
  transform: scale(1.08) translateZ(0);
}
.catalog-card__icon {
  position: relative;
  z-index: 1;
  width: 72px; height: 72px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  color: var(--magenta);
  box-shadow: var(--shadow-md);
}
.catalog-card__icon svg { width: 36px; height: 36px; }
.catalog-card__body { padding: 24px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.catalog-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--magenta);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.catalog-card__tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad-brand);
}
.catalog-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.25;
}
.catalog-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.catalog-card__footer {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--magenta);
}
.catalog-card__count {
  background: var(--bg-soft);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  color: var(--magenta);
  font-size: 12px;
}
.catalog-card__arrow { transition: transform .3s var(--ease); }
.catalog-card:hover .catalog-card__arrow { transform: translateX(4px); }

/* Filtros (chips) */
.cat-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.cat-chip {
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--ink-2);
  font: inherit;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.cat-chip:hover { border-color: var(--magenta); color: var(--magenta); }
.cat-chip.is-active {
  background: var(--grad-brand);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.catalog__empty {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  padding: 40px 20px;
}
.catalog__empty a {
  color: var(--magenta);
  font-weight: 600;
  text-decoration: underline;
}

/* Categoria — detalhe */
.cat-detail {
  padding: clamp(50px, 7vw, 90px) 0;
  background: var(--bg);
}
.cat-detail__top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: clamp(50px, 7vw, 90px);
}
@media (max-width: 900px) { .cat-detail__top { grid-template-columns: 1fr; } }

.cat-detail__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #FFF6F1, #FFE8EE);
  border-radius: var(--r-2xl);
  overflow: hidden;
}
.cat-detail__visual--photo {
  background: #fff;
  box-shadow: var(--shadow-lg);
  border: 0;
  padding: 0;
  cursor: zoom-in;
}
.cat-detail__visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.cat-detail__visual--photo:hover img { transform: scale(1.03); }
.cat-detail__zoom {
  position: absolute;
  top: 18px; right: 18px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  color: var(--magenta);
  box-shadow: var(--shadow-md);
  transition: transform .25s var(--ease);
}
.cat-detail__zoom svg { width: 22px; height: 22px; }
.cat-detail__visual--photo:hover .cat-detail__zoom { transform: scale(1.08); }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(20, 12, 16, 0.92);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 40px;
  opacity: 0;
  transition: opacity .25s var(--ease);
  cursor: zoom-out;
}
.lightbox.is-open { opacity: 1; }
.lightbox img {
  max-width: min(900px, 92vw);
  max-height: 90vh;
  border-radius: var(--r-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  transform: scale(0.95);
  transition: transform .35s var(--ease);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.22); transform: scale(1.05); }
.cat-detail__visual-shape {
  position: absolute;
  inset: 10% 12%;
  background: var(--grad-brand);
  border-radius: 50% 50% 55% 45% / 50% 55% 45% 50%;
  opacity: 0.95;
  box-shadow: var(--shadow-lg);
}
.cat-detail__visual-icon {
  position: relative;
  z-index: 1;
  width: 140px;
  height: 140px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.95);
  display: grid; place-items: center;
  color: var(--magenta);
  box-shadow: var(--shadow-lg);
}
.cat-detail__visual-icon svg { width: 70px; height: 70px; }

.cat-detail__copy > * + * { margin-top: 18px; }
.cat-detail__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.05;
}
.cat-detail__desc { font-size: 17px; color: var(--ink-2); line-height: 1.65; }
.cat-detail__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Produtos da categoria — lista */
.prod-list-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 16px;
}
.prod-list-head h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.6px;
}
.prod-list-head p { color: var(--muted); font-size: 14px; }

.prod-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .prod-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .prod-list { grid-template-columns: 1fr; } }

.prod-item {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative;
}
.prod-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(199, 59, 110, 0.2);
}
.prod-item__num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(199, 59, 110, 0.18), rgba(107, 42, 110, 0.04));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.prod-item h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
  padding-right: 32px;
  line-height: 1.3;
}
.prod-item ul { display: flex; flex-wrap: wrap; gap: 6px; }
.prod-item li {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: var(--bg-warm);
  color: var(--ink-2);
  border: 1px solid var(--line-2);
}
.prod-item__cta {
  margin-top: auto;
  padding-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--magenta);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s var(--ease);
}
.prod-item:hover .prod-item__cta { gap: 10px; }

/* Outras categorias (sugestões no fim de produto.html) */
.also {
  background: var(--bg-warm);
  padding: clamp(60px, 8vw, 100px) 0;
}
.also__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .also__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .also__grid { grid-template-columns: 1fr; } }

/* ===== EMPRESA page ===== */
.about-intro {
  padding: clamp(60px, 8vw, 110px) 0;
  background: #fff;
}
.about-intro__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .about-intro__inner { grid-template-columns: 1fr; } }
.about-intro__copy > * + * { margin-top: 18px; }
.about-intro__copy p { color: var(--ink-2); font-size: 16px; }

.about-intro__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-intro__media img { width: 100%; height: 100%; object-fit: cover; }
.about-intro__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(74, 31, 79, 0.35));
}
.about-intro__badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--grad-brand);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-brand);
}
.about-intro__badge strong { display: block; font-size: 28px; font-weight: 800; letter-spacing: -0.5px; line-height: 1; }
.about-intro__badge span { display: block; font-size: 12px; opacity: 0.9; margin-top: 4px; }

/* MVV cards */
.mvv {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--bg-warm);
}
.mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .mvv__grid { grid-template-columns: 1fr; } }
.mvv__card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.mvv__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.mvv__card::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.mvv__card:hover::before { transform: scaleX(1); }
.mvv__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--grad-brand);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 22px;
  box-shadow: var(--shadow-brand);
}
.mvv__icon svg { width: 30px; height: 30px; }
.mvv__card h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}
.mvv__card p { color: var(--ink-2); font-size: 15.5px; line-height: 1.7; }

/* Stats banner */
.stats-band {
  padding: clamp(50px, 7vw, 90px) 0;
  background: var(--ink);
  color: #fff;
}
.stats-band__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
@media (max-width: 900px) { .stats-band__inner { grid-template-columns: repeat(2, 1fr); } }
.stats-band__item strong {
  display: block;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats-band__item span {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.4px;
}

/* Galeria de aplicações (brandbook) */
.gallery {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #fff;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery__grid { grid-template-columns: 1fr; } }

.gallery__item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-warm);
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 20px 14px;
  background: linear-gradient(0deg, rgba(26, 20, 24, 0.85), transparent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
}

/* ===== CLIENTES page ===== */
.segments {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--bg);
}
.segment {
  background: #fff;
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 50px);
  margin-bottom: 28px;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-sm);
}
.segment__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.segment__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--grad-brand);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-brand);
}
.segment__icon svg { width: 28px; height: 28px; }
.segment__head h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.segment__head p {
  color: var(--muted);
  font-size: 14.5px;
  margin-top: 4px;
}
.segment__count {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--magenta);
  background: var(--bg-soft);
  padding: 8px 14px;
  border-radius: var(--r-pill);
}
.segment__logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .segment__logos { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px) { .segment__logos { grid-template-columns: repeat(2, 1fr); } }
.segment__logo {
  aspect-ratio: 1 / 1;
  background: var(--bg-warm);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  padding: 16px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.segment__logo:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-sm);
  border-color: rgba(199, 59, 110, 0.2);
}
.segment__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter .3s;
  mix-blend-mode: multiply;
}
.segment__logo:hover img { filter: grayscale(0%) opacity(1); }

/* ===== Quote/CTA simples nas inner pages ===== */
.inner-cta {
  padding: clamp(60px, 8vw, 110px) 0;
}
.inner-cta__inner {
  background: var(--grad-brand);
  border-radius: var(--r-2xl);
  padding: clamp(40px, 6vw, 70px);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.inner-cta__inner::before {
  content: '';
  position: absolute;
  inset: -50% -10%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1), transparent 50%);
}
.inner-cta__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .inner-cta__grid { grid-template-columns: 1fr; } }
.inner-cta__grid h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin: 10px 0;
}
.inner-cta__grid p { opacity: 0.95; font-size: 16px; max-width: 480px; }
.inner-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
@media (max-width: 900px) { .inner-cta__actions { justify-content: flex-start; } }

/* ===== FAQ ===== */
.faq { background: var(--bg-warm); }
.faq__list {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq__item[open] {
  border-color: rgba(199, 59, 110, 0.25);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 28px;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--magenta); }
.faq__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
  border-radius: 50%;
  background: var(--bg-soft);
  transition: background .25s, transform .35s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  inset: 50% 25% auto 25%;
  height: 2px;
  background: var(--magenta);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: transform .3s var(--ease);
}
.faq__icon::after { transform: translateY(-50%) rotate(90deg); }
.faq__item[open] .faq__icon { background: var(--grad-brand); }
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after { background: #fff; }
.faq__item[open] .faq__icon::after { transform: translateY(-50%) rotate(0deg); }
.faq__body {
  padding: 0 28px 24px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.7;
}

/* Empty state on produto.html */
.empty-state {
  text-align: center;
  padding: 80px 30px;
  background: #fff;
  border-radius: var(--r-xl);
  border: 1px dashed var(--line);
}
.empty-state h2 { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.empty-state p { color: var(--muted); margin-bottom: 24px; }

