/* =====================================================================
   VELYON RESEARCH LABS — Design System
   Fonte de verdade: VELYON_BASE_REBRAND_SAFE.md (seções 10, 11, 12)
   Conceito: Vital Orbit — órbitas em movimento, vida no centro.
   ===================================================================== */

/* ---------- 10.2 Cores base ---------- */
:root {
  --color-deep-navy: #0D1B2A;
  --color-blue-black: #07111C;
  --color-electric-blue: #C6A46A;
  --color-cyan-tech: #C0C0C0;
  --color-violet: #C6A46A;
  --color-lilac: #E8E6DF;
  --color-cool-white: #F7F6F2;
  --color-ice: #F1EFE8;
  --color-soft-gray: #E8E6DF;
  --color-graphite: #142238;
  --color-muted: #6E6A61;

  /* 10.3 Tokens semânticos */
  --color-brand-primary: var(--color-deep-navy);
  --color-brand-secondary: var(--color-violet);
  --color-brand-accent: var(--color-electric-blue);
  --color-background: var(--color-cool-white);
  --color-background-muted: var(--color-ice);
  --color-surface: #FFFFFF;
  --color-surface-dark: var(--color-blue-black);
  --color-text-primary: var(--color-graphite);
  --color-text-secondary: var(--color-muted);
  --color-text-inverse: #FFFFFF;
  --color-border: rgba(20, 34, 56, 0.12);
  --color-border-strong: rgba(20, 34, 56, 0.24);
  --color-focus: var(--color-electric-blue);
  --color-cta: var(--color-violet);

  /* 10.4 Funcionais */
  --color-success: #1FBF75;
  --color-warning: #F5A524;
  --color-error: #D92D20;
  --color-info: #C6A46A;

  /* 10.5 Gradientes */
  --gradient-orbit: linear-gradient(135deg, #C6A46A 0%, #C6A46A 52%, #E8E6DF 100%);
  --gradient-deep: radial-gradient(circle at top right, rgba(198,164,106,.35), transparent 35%),
                   linear-gradient(135deg, #0D1B2A 0%, #07111C 100%);
  --gradient-soft: linear-gradient(135deg, #F7F6F2 0%, #F1EFE8 55%, #F7F5F1 100%);

  /* 10.6 Sombras */
  --shadow-soft: 0 12px 40px rgba(7,17,28,.08);
  --shadow-card: 0 18px 60px rgba(7,17,28,.12);
  --shadow-glow-blue: 0 0 32px rgba(198,164,106,.28);
  --shadow-glow-violet: 0 0 32px rgba(198,164,106,.24);

  /* 10.7 Raios */
  --radius-xs: 6px; --radius-sm: 10px; --radius-md: 16px;
  --radius-lg: 24px; --radius-xl: 32px; --radius-full: 999px;

  /* 10.8 Espaçamento */
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;
  --space-9: 96px; --space-10: 128px;

  /* 11 Tipografia */
  --font-heading: "Sora","Inter",system-ui,-apple-system,"Segoe UI",sans-serif;
  --font-body: "Inter","Sora",system-ui,-apple-system,"Segoe UI",sans-serif;
  --font-mono: "IBM Plex Mono","SFMono-Regular",Consolas,monospace;
  --text-xs:.75rem; --text-sm:.875rem; --text-md:1rem; --text-lg:1.125rem;
  --text-xl:1.375rem; --text-2xl:1.75rem; --text-3xl:2.25rem;
  --text-4xl:3rem; --text-5xl:4rem;
  --line-tight:1.05; --line-heading:1.15; --line-body:1.65;

  --header-h: 94px;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: var(--line-body);
  color: var(--color-text-primary);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-heading); line-height: var(--line-heading); font-weight: 600; color: var(--color-deep-navy); }
:focus-visible { outline: 3px solid var(--color-focus); outline-offset: 2px; border-radius: var(--radius-xs); }

/* ---------- 12.2 Container ---------- */
.container { width: min(100% - 32px, 1180px); margin-inline: auto; }
.section { padding-block: var(--space-9); }
.section--tight { padding-block: var(--space-8); }
.section--dark { background: var(--gradient-deep); color: var(--color-text-inverse); position: relative; overflow: hidden; }
.section--dark h1,.section--dark h2,.section--dark h3 { color: #fff; }
.section--muted { background: var(--color-background-muted); }
.section--soft { background: var(--gradient-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-heading); font-size: var(--text-sm); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--color-electric-blue);
  margin-bottom: var(--space-4);
}
.section--dark .eyebrow { color: var(--color-lilac); }
.eyebrow::before { content:""; width: 28px; height: 2px; background: var(--gradient-orbit); border-radius: 2px; }

.h2 { font-size: clamp(1.75rem, 1.2rem + 2.4vw, 2.25rem); margin-bottom: var(--space-4); }
.lead { font-size: var(--text-lg); color: var(--color-text-secondary); max-width: 60ch; }
.section--dark .lead { color: rgba(255,255,255,.78); }

/* ---------- Botões (15.3) — 7 estados ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  min-height: 48px; padding: 0 var(--space-6);
  font-family: var(--font-heading); font-size: var(--text-md); font-weight: 600;
  border-radius: var(--radius-full); border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn--primary { background: var(--color-cta); color: #fff; box-shadow: var(--shadow-glow-violet); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(198,164,106,.4); }
.btn--primary:active { transform: translateY(0); }
.btn--secondary { background: transparent; color: var(--color-deep-navy); border-color: var(--color-border-strong); }
.btn--secondary:hover { border-color: var(--color-electric-blue); color: var(--color-electric-blue); }
.section--dark .btn--secondary { color: #fff; border-color: rgba(255,255,255,.3); }
.section--dark .btn--secondary:hover { border-color: var(--color-lilac); color: var(--color-lilac); }
.btn--ghost { background: var(--color-surface); color: var(--color-deep-navy); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-electric-blue); }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn--block { width: 100%; }
.btn--sm { min-height: 40px; font-size: var(--text-sm); padding: 0 var(--space-4); }

/* ---------- Cards (15.3) ---------- */
.card {
  background: var(--color-surface); border: var(--color-border) 1px solid;
  border-radius: var(--radius-lg); padding: var(--space-6);
  box-shadow: var(--shadow-soft); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(198,164,106,.3); }
.card__icon {
  width: 48px; height: 48px; border-radius: var(--radius-md); display: grid; place-items: center;
  background: var(--color-ice); color: var(--color-electric-blue); margin-bottom: var(--space-4);
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.card p { color: var(--color-text-secondary); font-size: var(--text-md); }

/* ---------- Badges & tags ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-heading);
  font-size: var(--text-xs); font-weight: 600; padding: 5px 12px; border-radius: var(--radius-full);
  letter-spacing: .02em;
}
.badge--line { background: rgba(198,164,106,.1); color: var(--color-electric-blue); }
.badge--available { background: rgba(31,191,117,.12); color: #138a55; }
.badge--available::before { content:""; width:7px; height:7px; border-radius:50%; background: var(--color-success); }
.badge--catalogue { background: rgba(198,164,106,.13); color: var(--color-electric-blue); }
.badge--catalogue::before { content:""; width:7px; height:7px; border-radius:50%; background: var(--color-electric-blue); }
.badge--review { background: rgba(245,165,36,.14); color: #9a6310; }
.tag {
  display: inline-block; font-size: var(--text-xs); color: var(--color-text-secondary);
  background: var(--color-ice); border-radius: var(--radius-full); padding: 4px 10px;
}

/* ---------- Grids ---------- */
.grid { display: grid; gap: var(--space-5); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  background: rgba(248,251,255,.74);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  border-bottom: 1px solid rgba(198,164,106,.08);
  box-shadow: 0 18px 60px rgba(13,27,42,.04);
  --header-control-h: 45px;
  --header-control-radius: 16px;
  --header-lang-w: 119px;
}
.site-header .container {
  width: min(100% - 96px, 1760px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: clamp(20px, 2.6vw, 52px);
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand-logo img {
  height: 58px;
  width: auto;
  filter: drop-shadow(0 12px 28px rgba(198,164,106,.10));
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 42px);
  margin-left: auto;
  white-space: nowrap;
}
.nav a {
  font-family: var(--font-heading);
  font-size: .74rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(13,27,42,.86);
  position: relative;
  padding: 10px 0;
  transition: color .18s ease, opacity .18s ease, transform .18s ease;
}
.nav a:hover {
  color: var(--color-violet);
  transform: translateY(-1px);
}
.nav a.is-active {
  color: var(--color-deep-navy);
  font-weight: 700;
}
.nav a.is-active::after {
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width: 22px;
  height:2px;
  transform: translateX(-50%);
  background: var(--gradient-orbit);
  border-radius:2px;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 20px;
}
.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav-dropdown__caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  transform: translateY(-1px);
  color: rgba(198,164,106,.82);
  transition: transform .18s ease;
}
.nav-dropdown:hover .nav-dropdown__caret,
.nav-dropdown:focus-within .nav-dropdown__caret {
  transform: translateY(-1px) rotate(180deg);
}
.nav-dropdown__menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  width: 288px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(198,164,106,.12);
  box-shadow: 0 26px 70px rgba(13,27,42,.13), 0 8px 24px rgba(198,164,106,.08);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 90;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translateX(-50%) rotate(45deg);
  background: rgba(255,255,255,.94);
  border-left: 1px solid rgba(198,164,106,.12);
  border-top: 1px solid rgba(198,164,106,.12);
}
.nav-dropdown__menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: .76rem;
  letter-spacing: .05em;
  text-transform: none;
  color: rgba(13,27,42,.78);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.nav-dropdown__menu a:hover {
  background: linear-gradient(135deg, rgba(198,164,106,.10), rgba(198,164,106,.10));
  color: var(--color-deep-navy);
  transform: translateX(2px);
}
.nav-dropdown__menu a::after { display: none !important; }
.nav-dropdown__menu a span:last-child {
  color: rgba(198,164,106,.55);
  font-size: .82rem;
  line-height: 1;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}
.nav .nav-mobile-cta { display: none; }
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--header-lang-w);
  height: var(--header-control-h);
  padding: 0;
  border: 0;
  border-radius: var(--header-control-radius);
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  flex: 0 0 var(--header-lang-w);
}
.lang-switcher__art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  border-radius: inherit;
  filter: drop-shadow(0 8px 18px rgba(13,27,42,.12));
  transition: transform .18s ease, filter .18s ease;
}
.lang-switcher:hover .lang-switcher__art {
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 22px rgba(13,27,42,.16));
}
.lang-switcher__btn {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.lang-switcher__btn--pt {
  left: 0;
  width: 52%;
  border-radius: var(--header-control-radius) 0 0 var(--header-control-radius);
}
.lang-switcher__btn--en {
  right: 0;
  width: 48%;
  border-radius: 0 var(--header-control-radius) var(--header-control-radius) 0;
}
.lang-switcher__btn:hover,
.lang-switcher__btn.is-active {
  background: transparent;
  box-shadow: none;
}
.lang-switcher__btn:focus-visible {
  outline: 2px solid rgba(198,164,106,.55);
  outline-offset: 3px;
}
.lang-switcher__flag {
  display: none;
}
.nav .lang-switcher--mobile { display: none; margin-top: 14px; }

.site-header .btn--primary {
  min-height: var(--header-control-h);
  padding: 0 20px;
  border-radius: var(--header-control-radius);
  background: linear-gradient(135deg, #C6A46A 0%, #C6A46A 72%);
  box-shadow: 0 10px 22px rgba(198,164,106,.14), 0 6px 16px rgba(198,164,106,.12);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.site-header .btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(198,164,106,.16), 0 8px 18px rgba(198,164,106,.14);
}
.nav-toggle {
  display: none;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(198,164,106,.14);
  border-radius: 16px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(13,27,42,.06);
}
.nav-toggle svg { width: 22px; height: 22px; margin: auto; color: var(--color-deep-navy); }

/* ---------- Footer ---------- */
.site-footer { background: var(--gradient-deep); color: rgba(255,255,255,.82); padding-block: var(--space-9) var(--space-6); position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-6); position: relative; z-index: 2; }
.footer-grid h4 { color: #fff; font-size: var(--text-sm); letter-spacing: .08em; text-transform: uppercase; margin-bottom: var(--space-4); }
.footer-grid a { display: block; padding: 5px 0; font-size: var(--text-sm); color: rgba(255,255,255,.72); }
.footer-grid a:hover { color: var(--color-lilac); }
 .footer-brand img {
  height: clamp(58px, 5vw, 76px);
  width: auto;
  margin-bottom: var(--space-5);
  filter: brightness(0) invert(1);
  opacity: .98;
}
.footer-brand p { font-size: var(--text-sm); color: rgba(255,255,255,.68); max-width: 34ch; line-height: 1.65; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: var(--space-8); padding-top: var(--space-5);
  display:flex; justify-content:space-between; gap: var(--space-4); flex-wrap: wrap; font-size: var(--text-xs); color: rgba(255,255,255,.55); position: relative; z-index: 2; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: var(--space-10) var(--space-9); background: var(--gradient-soft); }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--space-8); align-items: center; }
.hero h1 { font-size: clamp(2.1rem, 1.2rem + 3.4vw, 3.4rem); line-height: var(--line-tight); letter-spacing: -.02em; margin-bottom: var(--space-5); }
.hero .lead { font-size: var(--text-lg); margin-bottom: var(--space-6); }
.hero__actions { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-6); }
.hero__art { position: relative; display: grid; place-items: center; }
.hero__art img { width: min(78%, 360px); filter: drop-shadow(0 24px 60px rgba(198,164,106,.35)); animation: float 8s ease-in-out infinite; }
@keyframes float { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-14px) } }

/* Orbital background pattern (BrandPattern, baixa opacidade) */
.orbit-bg { position: absolute; inset: 0; pointer-events: none; opacity: .5; }
.orbit-bg::before, .orbit-bg::after {
  content:""; position:absolute; border: 1px solid rgba(198,164,106,.16); border-radius: 50%;
}
.orbit-bg::before { width: 620px; height: 620px; right: -200px; top: -180px; }
.orbit-bg::after { width: 420px; height: 420px; right: -80px; top: -40px; border-color: rgba(198,164,106,.16); }
.section--dark .orbit-bg::before { border-color: rgba(124,150,255,.18); }
.section--dark .orbit-bg::after { border-color: rgba(232,230,223,.14); }

/* ---------- Microcopy / disclaimer ---------- */
.microcopy { font-size: var(--text-sm); color: var(--color-text-secondary); max-width: 70ch; }
.disclaimer {
  display: flex; gap: var(--space-3); align-items: flex-start;
  background: var(--color-ice); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm); color: var(--color-text-secondary);
}
.disclaimer svg { width: 20px; height: 20px; flex: none; color: var(--color-electric-blue); margin-top: 2px; }
.section--dark .disclaimer { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.7); }

/* Compliance notices */
.notice-review {
  display:flex; gap: var(--space-3); align-items:flex-start;
  background: rgba(245,165,36,.1); border: 1px solid rgba(245,165,36,.3);
  border-radius: var(--radius-md); padding: var(--space-4); font-size: var(--text-sm); color:#7a4e0a;
}
.notice-review svg { width:20px; height:20px; flex:none; color: var(--color-warning); margin-top:2px; }

/* ---------- Stats ---------- */
.stat { text-align: left; }
.stat__num { font-family: var(--font-heading); font-weight: 700; font-size: clamp(2rem,1.4rem+2vw,2.75rem);
  background: var(--gradient-orbit); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { font-size: var(--text-sm); color: var(--color-text-secondary); margin-top: var(--space-2); }
.section--dark .stat__label { color: rgba(255,255,255,.7); }

/* ---------- Process steps / timeline ---------- */
.steps { counter-reset: step; display: grid; gap: var(--space-5); }
.step { display: grid; grid-template-columns: 56px 1fr; gap: var(--space-4); align-items: start; }
.step__num { counter-increment: step; width: 48px; height: 48px; border-radius: var(--radius-full);
  display: grid; place-items: center; font-family: var(--font-heading); font-weight: 700; color: #fff;
  background: var(--gradient-orbit); }
.step__num::before { content: counter(step); }
.step h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.step p { color: var(--color-text-secondary); font-size: var(--text-md); }
.section--dark .step p { color: rgba(255,255,255,.72); }

/* ---------- Checklist ---------- */
.checklist { display: grid; gap: var(--space-3); }
.checklist li { display: flex; gap: var(--space-3); align-items: flex-start; }
.checklist svg { width: 22px; height: 22px; flex: none; color: var(--color-success); margin-top: 2px; }

/* ---------- Product cards ---------- */
.product-card { display: flex; flex-direction: column; gap: var(--space-3); }
.product-card__head { display: flex; justify-content: space-between; align-items: center; gap: var(--space-3); }
.product-card h3 { font-size: var(--text-xl); }
.product-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: var(--space-2); }
.product-card .product-cta { margin-top: auto; padding-top: var(--space-4); }

.product-card > p {
  min-height: 5.4em;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .tags { min-height: 58px; align-content: flex-start; }
.grid > .product-card { height: 100%; }

.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.18 / 1;
  border-radius: calc(var(--radius-lg) - 2px);
  border: 1px solid rgba(198,164,106,.16);
  background:
    radial-gradient(circle at 72% 20%, rgba(139,92,246,.18), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(235,243,255,.76));
  background-image: var(--product-image), radial-gradient(circle at 72% 20%, rgba(139,92,246,.18), transparent 36%), linear-gradient(135deg, rgba(255,255,255,.92), rgba(235,243,255,.76));
  background-size: cover, auto, auto;
  background-position: center, center, center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 14px 32px rgba(198,164,106,.08);
  margin-bottom: var(--space-1);
}
.product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 62%, rgba(255,255,255,.32) 100%);
  pointer-events: none;
}
.product-card--has-image { gap: var(--space-3); }
.product-card--has-image .product-card__head { align-items: flex-start; }
.product-card--has-image h3 { letter-spacing: -.01em; }
.product-media--tirzepatida { --product-image: url("../images/product-VEL-TIRZ-10.webp"); }
.product-media--retatrutida { --product-image: url("../images/product-VEL-RETA-20.webp"); }
.product-media--tesamorelina { --product-image: url("../images/product-VEL-TESA-10.webp"); }
.product-media--bpc-157 { --product-image: url("../images/product-VEL-BPC-10.webp"); }
.product-media--tb-500 { --product-image: url("../images/product-VEL-TB500-10.webp"); }
.product-media--kpv { --product-image: url("../images/product-VEL-KPV-10.webp"); }
.product-media--semax { --product-image: url("../images/product-VEL-SEMAX-10.webp"); }
.product-media--selank { --product-image: url("../images/product-VEL-SELANK-10.webp"); }
.product-media--ss-31 { --product-image: url("../images/product-VEL-SS31-10.webp"); }
.product-media--mots-c { --product-image: url("../images/product-VEL-MOTS-10.webp"); }
.product-media--nad-mais { --product-image: url("../images/product-VEL-NAD-50.webp"); }
.product-media--ghk-cu { --product-image: url("../images/product-VEL-GHK-50.webp"); }
.product-media--glow { --product-image: url("../images/product-VEL-GLOW-70.webp"); }
.product-media--klow { --product-image: url("../images/product-VEL-KLOW-80.webp"); }
.product-media--cjc-1295-dac { --product-image: url("../images/product-VEL-CJC-10.webp"); }
/* product image completion safety */
.product-card--has-image .product-card__media { min-height: 210px; }
@media (max-width: 720px){ .product-card--has-image .product-card__media { min-height: 260px; } }

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .88fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}
.product-detail-hero__content { min-width: 0; }
.product-detail-hero__media {
  min-height: clamp(360px, 44vw, 560px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(198,164,106,.16);
  background:
    var(--product-image),
    radial-gradient(circle at 74% 16%, rgba(139,92,246,.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(229,239,255,.82));
  background-size: cover, auto, auto;
  background-position: center, center, center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.product-detail-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.22), rgba(255,255,255,0) 42%, rgba(198,164,106,.08));
  pointer-events: none;
}
.product-detail-hero__media::after {
  content: "";
  position: absolute;
  inset: auto 10% 8% 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,164,106,.42), transparent);
  box-shadow: 0 0 24px rgba(198,164,106,.22);
}





/* ---------- Product page related carousel ---------- */
.product-related-products {
  border-top: 1px solid rgba(198,164,106,.08);
  border-bottom: 1px solid rgba(198,164,106,.08);
}
.product-related-products .home-products__head {
  margin-bottom: var(--space-6);
}
.product-related-products .product-slider-card {
  min-height: 312px;
}
.product-related-products .product-card__media {
  min-height: 148px;
}

/* ---------- Product detail compact actions ---------- */
.product-detail-hero .hero__actions {
  gap: 12px;
  align-items: center;
}
.product-detail-hero .hero__actions .btn {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 18px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.product-detail-hero .hero__actions .btn--primary {
  box-shadow: 0 12px 28px rgba(198,164,106,.20);
}
.product-detail-hero .hero__actions .btn:hover {
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .product-detail-hero .hero__actions .btn {
    width: 100%;
    min-height: 42px;
  }
}

/* ---------- Home product carousel ---------- */
.home-products { position: relative; overflow: hidden; }
.home-products__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-6);
  align-items: end;
  margin-bottom: var(--space-6);
}
.home-products__head .lead { max-width: 68ch; }
.product-slider { position: relative; }
.product-slider__viewport { overflow: hidden; border-radius: var(--radius-xl); }
.product-slider__track {
  display: flex;
  transition: transform .48s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.product-slider__slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  padding: 2px;
}
.product-slider-card { height: 100%; min-height: 326px; }
.product-slider-card .badge--review { gap: 6px; }
.product-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.product-slider__meta {
  min-width: 96px;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-weight: 600;
}
.product-slider__arrows { display: flex; gap: var(--space-2); }
.product-slider__btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: rgba(255,255,255,.88);
  color: var(--color-deep-navy);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(13,27,42,.08);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.product-slider__btn:hover {
  transform: translateY(-1px);
  color: var(--color-electric-blue);
  border-color: rgba(198,164,106,.34);
  box-shadow: 0 16px 34px rgba(198,164,106,.14);
}
.product-slider__btn svg { width: 19px; height: 19px; }
.product-slider__dots { display: flex; justify-content: center; align-items: center; gap: 8px; flex: 1; }
.product-slider__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: var(--radius-full);
  background: rgba(198,164,106,.24);
  cursor: pointer;
  padding: 0;
  transition: width .24s ease, background .24s ease, transform .24s ease;
}
.product-slider__dot:hover { transform: scale(1.2); background: rgba(198,164,106,.44); }
.product-slider__dot.is-active { width: 28px; background: var(--gradient-orbit); transform: none; }

/* Line section header */
.line-head { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-5); }
.line-head .badge { font-size: var(--text-sm); padding: 6px 14px; }

/* ---------- CTA band ---------- */
.cta-band { display: grid; grid-template-columns: 1.4fr auto; gap: var(--space-6); align-items: center;
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl);
  padding: var(--space-7); box-shadow: var(--shadow-soft); }
.cta-band__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* ---------- Accordion (FAQ) ---------- */
.accordion { display: grid; gap: var(--space-3); }
.acc-item { border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-surface); overflow: hidden; }
.acc-trigger { width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: var(--space-5); font-family: var(--font-heading); font-weight: 600; font-size: var(--text-lg);
  color: var(--color-deep-navy); display: flex; justify-content: space-between; align-items: center; gap: var(--space-4); }
.acc-trigger svg { width: 22px; height: 22px; flex: none; transition: transform .2s ease; color: var(--color-electric-blue); }
.acc-item.is-open .acc-trigger svg { transform: rotate(45deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.acc-panel-inner { padding: 0 var(--space-5) var(--space-5); color: var(--color-text-secondary); }

/* ---------- Forms (15.3) ---------- */
.form-grid { display: grid; gap: var(--space-5); }
.field { display: grid; gap: var(--space-2); }
.field label { font-size: var(--text-sm); font-weight: 600; color: var(--color-graphite); }
.field input, .field select, .field textarea {
  min-height: 48px; padding: 12px var(--space-4); font-family: var(--font-body); font-size: var(--text-md);
  border: 1px solid var(--color-border-strong); border-radius: var(--radius-sm); background: #fff; color: var(--color-graphite);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--color-focus); outline: none; box-shadow: 0 0 0 3px rgba(198,164,106,.18); }
.field .hint { font-size: var(--text-xs); color: var(--color-text-secondary); }
.field .error-msg { font-size: var(--text-xs); color: var(--color-error); display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--color-error); }
.field.has-error .error-msg { display: block; }
.consent { display: flex; gap: var(--space-3); align-items: flex-start; font-size: var(--text-sm); color: var(--color-text-secondary); }
.consent input { width: 20px; height: 20px; min-height: auto; margin-top: 2px; accent-color: var(--color-violet); }
.form-success { display: none; background: rgba(31,191,117,.1); border: 1px solid rgba(31,191,117,.3);
  border-radius: var(--radius-md); padding: var(--space-5); color: #0f6e44; }
.form-success.is-visible { display: block; }
.form-success.is-error { background: rgba(217,45,32,.08); border-color: rgba(217,45,32,.35); color: var(--color-error); }
.contact-form .h-captcha { margin: var(--space-2) 0; }
.h-captcha.has-error { outline: 2px solid var(--color-error); outline-offset: 4px; border-radius: var(--radius-sm); }

/* ---------- Page header (interior pages) ---------- */
.page-header { padding-block: var(--space-9) var(--space-7); position: relative; overflow: hidden; }
.breadcrumbs { font-size: var(--text-sm); color: var(--color-text-secondary); margin-bottom: var(--space-4); display: flex; gap: var(--space-2); flex-wrap: wrap; }
.breadcrumbs a:hover { color: var(--color-electric-blue); }
.page-header h1 { font-size: clamp(2rem, 1.3rem + 2.8vw, 3rem); line-height: var(--line-tight); letter-spacing: -.02em; margin-bottom: var(--space-4); max-width: 22ch; }

/* ---------- Pillars ---------- */
.pillar { display: flex; gap: var(--space-4); }
.pillar__dot { width: 12px; height: 12px; border-radius: 50%; background: var(--gradient-orbit); flex: none; margin-top: 7px; }
.pillar h3 { font-size: var(--text-lg); margin-bottom: var(--space-1); }
.pillar p { color: var(--color-text-secondary); font-size: var(--text-md); }
.section--dark .pillar p { color: rgba(255,255,255,.72); }

/* ---------- Commitment block ---------- */
.commitment { display: grid; gap: var(--space-3); font-family: var(--font-heading); font-size: var(--text-xl); font-weight: 600; color: #fff; }
.commitment span { display: flex; align-items: center; gap: var(--space-3); }
.commitment span::before { content:""; width: 22px; height: 2px; background: var(--gradient-orbit); border-radius: 2px; }

/* ---------- WhatsApp floating (mobile) ---------- */
.wa-float { position: fixed; right: 16px; bottom: 16px; z-index: 70; display: none;
  width: 56px; height: 56px; border-radius: 50%; background: var(--color-cta); color: #fff;
  align-items: center; justify-content: center; box-shadow: var(--shadow-glow-violet); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.maxw-prose { max-width: 68ch; }

/* =====================================================================
   Responsividade — mobile-first (12.3)
   ===================================================================== */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .product-detail-hero { grid-template-columns: 1fr; }
  .product-detail-hero__media { min-height: min(70vw, 520px); order: -1; }
  .hero__art { order: -1; }
  .hero__art img { width: min(58%, 260px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .home-products__head { grid-template-columns: 1fr; align-items: start; }
  .product-slider__slide { grid-template-columns: 1fr; gap: var(--space-4); }
  .product-slider-card { min-height: auto; }
  .product-slider__controls { flex-wrap: wrap; justify-content: center; }
  .product-slider__meta { text-align: center; min-width: 100%; }
  .product-slider__dots { order: 3; flex-basis: 100%; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav, .nav-actions .btn { display: none; }
  .nav-toggle { display: grid; }
  .site-header.nav-open .nav {
    display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-2);
    position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--color-surface);
    border-bottom: 1px solid var(--color-border); padding: var(--space-5); box-shadow: var(--shadow-soft);
  }
  .site-header.nav-open .nav .btn { display: inline-flex; margin-top: var(--space-2); }
  .product-card__media { aspect-ratio: 1 / .86; }
  .product-detail-hero__media { min-height: 380px; }
  .wa-float { display: flex; }
  .section { padding-block: var(--space-8); }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 44px 1fr; }
}

@media (max-width: 1180px) {
  .site-header .container { width: min(100% - 48px, 1180px); gap: 20px; }
  .brand-logo img { height: 50px; }
  .nav { gap: 18px; }
  .nav a { font-size: .68rem; letter-spacing: .12em; }
  .site-header { --header-control-h: 42px; --header-control-radius: 15px; --header-lang-w: 109px; }
  .site-header .btn--primary { min-height: var(--header-control-h); padding: 0 16px; font-size: .78rem; }
}
@media (max-width: 980px) {
  :root { --header-h: 78px; }
  .site-header .container { width: min(100% - 32px, 1180px); }
  .brand-logo img { height: 44px; }
  .nav, .nav-actions .btn { display: none; }
  .nav-toggle { display: grid; }
  .site-header.nav-open .nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    margin-left: 0;
    white-space: normal;
    background: rgba(248,251,255,.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(198,164,106,.10);
    padding: 18px 24px 22px;
    box-shadow: 0 24px 60px rgba(13,27,42,.10);
  }
  .site-header.nav-open .nav a {
    width: 100%;
    padding: 14px 0;
    font-size: .82rem;
    letter-spacing: .12em;
    border-bottom: 1px solid rgba(198,164,106,.08);
  }
  .site-header.nav-open .nav a:last-child { border-bottom: 0; }
  .site-header.nav-open .nav a.is-active::after { left: 0; transform: none; bottom: 8px; }
}


@media (max-width: 980px) {
  .site-header.nav-open .nav .nav-mobile-cta {
    display: inline-flex;
    width: 100%;
    min-height: 46px;
    margin-top: 14px;
    padding: 0 20px;
    justify-content: center;
    border-bottom: 0;
    color: #fff;
    letter-spacing: .08em;
  }
  .site-header.nav-open .nav .nav-mobile-cta::after { display: none; }
  .site-header.nav-open .nav .lang-switcher--mobile {
    display: inline-flex;
    width: var(--header-lang-w);
    justify-content: center;
  }
  .site-header.nav-open .nav .nav-dropdown {
    width: 100%;
    display: block;
  }
  .site-header.nav-open .nav .nav-dropdown__trigger {
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid rgba(198,164,106,.08);
  }
  .site-header.nav-open .nav .nav-dropdown__trigger.is-active::after {
    left: 0;
    transform: none;
    bottom: 8px;
  }
  .site-header.nav-open .nav .nav-dropdown__caret {
    transform: none;
  }
  .site-header.nav-open .nav .nav-dropdown__menu {
    position: static;
    width: 100%;
    margin: 0 0 4px;
    padding: 8px 0 10px 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .site-header.nav-open .nav .nav-dropdown__menu::before {
    display: none;
  }
  .site-header.nav-open .nav .nav-dropdown__menu a {
    width: 100%;
    padding: 10px 0 10px 14px;
    border-bottom: 0;
    font-size: .78rem;
    letter-spacing: .05em;
    color: rgba(13,27,42,.72);
  }
  .site-header.nav-open .nav .nav-dropdown__menu a:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

.view{display:none} .view.is-active{display:block}


/* ---------- Product technical detail system ---------- */
.product-detail-hero .lead { max-width: 62ch; }
.product-technical { padding-left: 0; padding-right: 0; }
.product-technical__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-6);
  align-items: end;
  margin-bottom: var(--space-6);
}
.product-technical__head .lead { max-width: 72ch; }
.product-tech-shell {
  display: grid;
  grid-template-columns: minmax(280px, .74fr) minmax(0, 1.26fr);
  gap: var(--space-6);
  align-items: start;
}
.product-fact-panel {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  border: 1px solid rgba(198,164,106,.18);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 10%, rgba(139,92,246,.14), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(241,246,255,.92));
  box-shadow: var(--shadow-card);
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
}
.product-fact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 14%, rgba(198,164,106,.18) 0 1px, transparent 2px),
    linear-gradient(120deg, rgba(111,67,239,.12), transparent 36%);
  background-size: 38px 38px, auto;
  opacity: .52;
  pointer-events: none;
}
.product-fact-panel > * { position: relative; }
.product-fact-panel h2 { font-size: clamp(2rem, 3.4vw, 3.8rem); letter-spacing: .04em; margin: 0 0 var(--space-3); }
.product-fact-panel__line { color: var(--color-electric-blue); font-weight: 700; letter-spacing: .11em; text-transform: uppercase; font-size: var(--text-xs); margin-bottom: var(--space-3); }
.product-fact-panel__summary { color: var(--color-text-secondary); line-height: 1.75; margin-bottom: var(--space-5); }
.product-info-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(198,164,106,.14);
}
.product-info-table tr + tr { border-top: 1px solid rgba(198,164,106,.11); }
.product-info-table th, .product-info-table td {
  text-align: left;
  vertical-align: top;
  padding: 12px 14px;
  font-size: var(--text-sm);
}
.product-info-table th {
  width: 38%;
  color: var(--color-deep-navy);
  font-family: var(--font-heading);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .68rem;
}
.product-info-table td { color: var(--color-text-secondary); font-weight: 500; }
.product-accordion-stack { display: grid; gap: var(--space-4); }
.product-accordion {
  border: 1px solid rgba(198,164,106,.16);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.86);
  box-shadow: 0 20px 54px rgba(13,27,42,.07);
  overflow: hidden;
}
.product-accordion[open] { border-color: rgba(111,67,239,.24); }
.product-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 22px clamp(22px, 3vw, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  color: var(--color-deep-navy);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: .02em;
}
.product-accordion summary::-webkit-details-marker { display: none; }
.product-accordion__title { display: inline-flex; align-items: center; gap: 12px; }
.product-accordion__icon {
  width: 36px; height: 36px; border-radius: var(--radius-full);
  display: inline-grid; place-items: center; flex: none;
  background: linear-gradient(135deg, rgba(198,164,106,.12), rgba(139,92,246,.13));
  color: var(--color-electric-blue);
  border: 1px solid rgba(198,164,106,.16);
}
.product-accordion__icon svg { width: 19px; height: 19px; }
.product-accordion__chev {
  width: 34px; height: 34px; border-radius: var(--radius-full);
  display: inline-grid; place-items: center; flex: none;
  background: rgba(198,164,106,.08); color: var(--color-electric-blue);
  transition: transform .22s ease, background .22s ease;
}
.product-accordion[open] .product-accordion__chev { transform: rotate(45deg); background: rgba(111,67,239,.12); }
.product-accordion__body { padding: 0 clamp(22px, 3vw, 30px) clamp(22px, 3vw, 30px); }
.product-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}
.product-benefit-card {
  min-height: 180px;
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(198,164,106,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,249,255,.92));
  box-shadow: 0 12px 34px rgba(198,164,106,.06);
}
.product-benefit-card__icon {
  width: 42px; height: 42px; border-radius: var(--radius-full);
  color: var(--color-electric-blue); margin-bottom: 14px;
  display: grid; place-items: center;
  background: radial-gradient(circle at 35% 25%, rgba(139,92,246,.22), rgba(198,164,106,.08));
  border: 1px solid rgba(198,164,106,.13);
}
.product-benefit-card__icon svg { width: 21px; height: 21px; }
.product-benefit-card h4 { margin: 0 0 8px; font-size: 1rem; letter-spacing: .01em; }
.product-benefit-card p { margin: 0; color: var(--color-text-secondary); font-size: var(--text-sm); line-height: 1.65; }
.product-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}
.product-list-card {
  border: 1px solid rgba(198,164,106,.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,250,255,.9));
  padding: var(--space-5);
}
.product-list-card h4 {
  font-size: var(--text-sm); text-transform: uppercase; letter-spacing: .13em;
  color: var(--color-electric-blue); margin-bottom: var(--space-3);
}
.product-bullet-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.product-bullet-list li { position: relative; padding-left: 20px; color: var(--color-text-secondary); font-size: var(--text-sm); line-height: 1.58; }
.product-bullet-list li::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--gradient-orbit); position: absolute; left: 0; top: .65em;
  box-shadow: 0 0 0 4px rgba(198,164,106,.08);
}
.product-responsibility-box {
  display: flex; gap: var(--space-3); align-items: flex-start;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(111,67,239,.18);
  background: linear-gradient(135deg, rgba(198,164,106,.06), rgba(139,92,246,.06));
  padding: var(--space-5);
  color: var(--color-text-secondary);
}
.product-responsibility-box svg { width: 26px; height: 26px; color: var(--color-electric-blue); flex: none; }
@media (max-width: 980px){
  .product-detail-hero { grid-template-columns: 1fr; }
  .product-tech-shell { grid-template-columns: 1fr; }
  .product-fact-panel { position: relative; top: auto; }
}
@media (max-width: 720px){
  .product-technical__head { grid-template-columns: 1fr; }
  .product-benefit-grid, .product-two-col { grid-template-columns: 1fr; }
  .product-info-table th, .product-info-table td { display: block; width: 100%; }
  .product-info-table td { padding-top: 0; }
  .product-accordion summary { align-items: flex-start; }
}


/* ---------- Peptide calculator page ---------- */
.calculator-view {
  background:
    radial-gradient(circle at 12% 8%, rgba(198,164,106,.08), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(198,164,106,.08), transparent 24%),
    var(--color-background);
}
.calculator-hero {
  padding-block: clamp(72px, 8vw, 118px) var(--space-8);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,248,255,.92)),
    radial-gradient(circle at 70% 35%, rgba(198,164,106,.18), transparent 34%);
}
.calculator-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
}
.calculator-hero__seal {
  border: 1px solid rgba(198,164,106,.12);
  border-radius: 32px;
  padding: clamp(22px, 2vw, 32px);
  background: linear-gradient(145deg, rgba(255,255,255,.78), rgba(247,249,255,.62));
  box-shadow: 0 28px 72px rgba(31, 47, 86, .10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
.calculator-hero__seal::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(198,164,106,.14);
  right: -80px;
  top: -80px;
}
.calculator-hero__seal svg {
  width: 54px;
  height: 54px;
  color: var(--color-violet);
  margin-bottom: var(--space-4);
}
.calculator-hero__seal h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}
.calculator-hero__seal p {
  color: var(--color-text-secondary);
}
.calc-alert {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--space-4);
  align-items: flex-start;
  border: 1px solid rgba(198,164,106,.16);
  background: linear-gradient(135deg, rgba(255,255,255,.86), rgba(246,248,255,.74));
  border-radius: 24px;
  padding: var(--space-5);
  box-shadow: 0 18px 48px rgba(31,47,86,.08);
}
.calc-alert--strong {
  border-color: rgba(198,164,106,.24);
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(245,241,255,.78));
}
.calc-alert__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(198,164,106,.10);
  color: var(--color-electric-blue);
}
.calc-alert__icon svg {
  width: 23px;
  height: 23px;
}
.calc-alert h3 {
  font-size: var(--text-lg);
  margin-bottom: 4px;
}
.calc-alert p {
  color: var(--color-text-secondary);
  margin: 0;
}
.calculator-shell {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
}
.calc-card {
  border: 1px solid rgba(198,164,106,.12);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(248,250,255,.76));
  box-shadow: 0 24px 70px rgba(31,47,86,.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}
.calc-card__head {
  padding: clamp(22px, 2.4vw, 34px);
  border-bottom: 1px solid rgba(198,164,106,.10);
}
.calc-card__head h2 {
  font-size: clamp(1.35rem, 1rem + 1.4vw, 2rem);
  margin-bottom: var(--space-2);
}
.calc-card__body {
  padding: clamp(22px, 2.4vw, 34px);
}
.calc-form-grid {
  display: grid;
  gap: var(--space-5);
}
.calc-field {
  display: grid;
  gap: 8px;
}
.calc-field label,
.calc-label {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(13,27,42,.72);
}
.calc-field select,
.calc-field input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(198,164,106,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  padding: 0 16px;
  font: inherit;
  color: var(--color-deep-navy);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.calc-field select:focus,
.calc-field input:focus {
  border-color: rgba(198,164,106,.48);
  box-shadow: 0 0 0 4px rgba(198,164,106,.10);
  background: #fff;
}
.calc-field__hint {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.45;
}
.calc-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  gap: var(--space-3);
}
.calc-confirmations {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-4);
  border: 1px solid rgba(198,164,106,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.54);
}
.calc-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}
.calc-check input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 2px;
  accent-color: var(--color-violet);
}
.calc-lock-panel {
  display: none;
  border: 1px solid rgba(198,164,106,.20);
  border-radius: 22px;
  padding: var(--space-4);
  background: linear-gradient(135deg, rgba(247,243,255,.82), rgba(255,255,255,.68));
}
.calc-lock-panel.is-visible {
  display: grid;
  gap: var(--space-3);
}
.calc-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}
.calc-result-card {
  border: 1px solid rgba(198,164,106,.12);
  border-radius: 22px;
  padding: var(--space-5);
  background: rgba(255,255,255,.68);
}
.calc-result-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2.1rem);
  color: var(--color-deep-navy);
  letter-spacing: -.02em;
}
.calc-result-card span {
  display: block;
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  margin-top: 4px;
}
.calc-result-card--wide {
  grid-column: 1 / -1;
}
.calc-kpi {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-4);
}
.calc-kpi .tag {
  background: rgba(198,164,106,.08);
}
.syringe-visual {
  margin-top: var(--space-5);
  border: 1px solid rgba(198,164,106,.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(198,164,106,.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(247,250,255,.94));
  padding: clamp(18px, 2vw, 26px);
  box-shadow: 0 18px 46px rgba(31,47,86,.07);
}
.syringe-visual__top {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: 14px;
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}
.syringe-visual__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}
.syringe-visual__title strong {
  font-family: var(--font-heading);
  font-size: clamp(1rem, .95rem + .25vw, 1.12rem);
  letter-spacing: -.01em;
  color: var(--color-deep-navy);
}
.syringe-visual__title span {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}
.syringe-diagram {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 12px 34px;
  align-items: center;
  gap: 0;
  margin-top: 6px;
}
.syringe-diagram__plunger {
  position: relative;
  height: 52px;
}
.syringe-diagram__plunger::before,
.syringe-diagram__plunger::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(210,220,239,.9), rgba(237,242,250,.95));
  border: 1px solid rgba(198,164,106,.18);
}
.syringe-diagram__plunger::before {
  width: 22px;
  height: 10px;
  top: 3px;
}
.syringe-diagram__plunger::after {
  width: 6px;
  height: 40px;
  top: 8px;
}
.syringe-diagram__body {
  position: relative;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(198,164,106,.20);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,255,.96));
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.88), 0 10px 24px rgba(17,53,103,.06);
  overflow: visible;
}
.syringe-diagram__body::before {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 12px;
  border: 1px solid rgba(198,164,106,.08);
  pointer-events: none;
}
.syringe-diagram__ticks {
  position: absolute;
  inset: 8px 12px;
  border-radius: 10px;
  background:
    repeating-linear-gradient(90deg,
      rgba(34,59,94,.17) 0,
      rgba(34,59,94,.17) 1px,
      transparent 1px,
      transparent calc(10% - 1px),
      rgba(34,59,94,.09) calc(10% - 1px),
      rgba(34,59,94,.09) 10%);
  opacity: .78;
  pointer-events: none;
}
.syringe-diagram__liquid {
  position: absolute;
  inset: 10px auto 10px 10px;
  width: 0%;
  max-width: calc(100% - 20px);
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(198,164,106,.86), rgba(198,164,106,.82));
  box-shadow: 0 6px 20px rgba(198,164,106,.18);
}
.syringe-diagram__marker {
  position: absolute;
  top: 6px;
  bottom: 6px;
  width: 2px;
  border-radius: 999px;
  background: rgba(13,27,42,.68);
  box-shadow: 0 0 0 2px rgba(255,255,255,.86);
  transform: translateX(-1px);
}
.syringe-diagram__value {
  position: absolute;
  left: 50%;
  top: -15px;
  transform: translateX(-50%);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(198,164,106,.14);
  box-shadow: 0 8px 20px rgba(12,41,82,.10);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .03em;
  color: rgba(13,27,42,.90);
  white-space: nowrap;
  z-index: 4;
}
.syringe-diagram__scale {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(82,96,113,.9);
}
.syringe-diagram__hub {
  height: 18px;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(180deg, rgba(224,232,245,.96), rgba(248,250,255,.96));
  border-top: 1px solid rgba(198,164,106,.18);
  border-right: 1px solid rgba(198,164,106,.18);
  border-bottom: 1px solid rgba(198,164,106,.18);
}
.syringe-diagram__needle {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(188,197,214,.95), rgba(230,235,244,.98));
}
.syringe-diagram__needle::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 10px solid rgba(188,197,214,.92);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}
.syringe-diagram__legend {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.syringe-diagram__legend-row {
  display: contents;
}
.syringe-diagram__legend-row span {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(198,164,106,.10);
  color: var(--color-text-secondary);
  font-size: 12px;
}
.syringe-diagram__legend strong {
  color: var(--color-deep-navy);
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: -.01em;
}
.syringe-diagram__status {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(198,164,106,.08);
  border: 1px solid rgba(198,164,106,.12);
  color: var(--color-text-primary);
  font-size: 12px;
  font-weight: 750;
}
.syringe-diagram__status::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(198,164,106,.9), rgba(198,164,106,.9));
}
@media (max-width: 767px) {
  .syringe-diagram {
    grid-template-columns: 20px minmax(0, 1fr) 10px 28px;
  }
  .syringe-diagram__value {
    font-size: 11px;
    padding: 5px 8px;
  }
  .syringe-diagram__legend {
    grid-template-columns: 1fr;
  }
  .syringe-diagram__scale,
  .syringe-diagram__legend-row,
  .syringe-diagram__status {
    font-size: 11px;
  }
}
.calc-alert-list {
  display: grid;
  gap: 10px;
  margin-top: var(--space-5);
}
.calc-alert-pill {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(198,164,106,.07);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}
.calc-alert-pill svg {
  width: 20px;
  height: 20px;
  color: var(--color-violet);
  margin-top: 1px;
}
.calc-alert-pill--warn {
  background: rgba(255,171,46,.12);
}
.calc-alert-pill--danger {
  background: rgba(230,72,72,.10);
}
.calc-product-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.calc-meta-item {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(198,164,106,.10);
}
.calc-meta-item b {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(13,27,42,.56);
  margin-bottom: 4px;
}
.calc-meta-item span {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}
.calc-accordion {
  max-width: 980px;
  margin-inline: auto;
}
.calc-accordion .acc-panel-inner {
  color: var(--color-text-secondary);
}
.calc-formula {
  display: grid;
  gap: 10px;
  margin-top: var(--space-4);
}
.calc-formula code {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(198,164,106,.10);
  background: rgba(255,255,255,.72);
  color: var(--color-deep-navy);
  white-space: normal;
}
.calc-disclaimer-final {
  border-radius: 30px;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(10,20,44,.94), rgba(25,25,70,.94));
  color: rgba(255,255,255,.82);
  box-shadow: 0 24px 70px rgba(13,27,42,.18);
}
.calc-disclaimer-final h2 { color: #fff; }
.calc-disclaimer-final p { color: rgba(255,255,255,.76); }
@media (max-width: 980px) {
  .calculator-hero__grid,
  .calculator-shell {
    grid-template-columns: 1fr;
  }
  .calc-result-grid,
  .calc-product-meta {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .calc-inline {
    grid-template-columns: 1fr;
  }
  .calculator-hero__seal,
  .calc-card {
    border-radius: 24px;
  }
  .calc-card__head,
  .calc-card__body {
    padding: 20px;
  }
}


.calc-report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(198,164,106,.10);
}
.calc-report-note {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-top: 8px;
  max-width: 68ch;
}
.product-calculator-shortcut {
  margin-top: var(--space-5);
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(198,164,106,.12);
  background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(248,250,255,.64));
}
.product-calculator-shortcut p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}


.calc-report-actions .btn[disabled],
.calc-report-actions .btn[aria-disabled="true"] {
  opacity: .48;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.syringe-visual--invalid {
  border-color: rgba(230,72,72,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,246,246,.82));
}
.syringe-visual--invalid .syringe-diagram__body {
  border-color: rgba(230,72,72,.34);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,245,245,.96));
}
.syringe-visual--invalid .syringe-diagram__ticks {
  background: repeating-linear-gradient(90deg, rgba(230,72,72,.18) 0, rgba(230,72,72,.18) 1px, transparent 1px, transparent calc(10% - 1px), rgba(230,72,72,.10) calc(10% - 1px), rgba(230,72,72,.10) 10%);
}
.syringe-visual--invalid .syringe-diagram__liquid,
.syringe-visual--invalid .syringe-diagram__marker,
.syringe-visual--invalid .syringe-diagram__status::before {
  background: linear-gradient(135deg, rgba(230,72,72,.88), rgba(235,112,112,.88));
}
.syringe-visual--invalid .syringe-diagram__status {
  background: rgba(230,72,72,.08);
  border-color: rgba(230,72,72,.14);
  color: #8d2d2d;
}
.syringe-visual__warning {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(230,72,72,.08);
  color: #8d2d2d;
  font-size: var(--text-sm);
  line-height: 1.45;
}


/* ---------- Mobile performance optimization ---------- */
@media (max-width: 760px) {
  html { scroll-behavior: auto; }

  .product-slider__track {
    transition: transform .18s ease-out;
    will-change: auto;
  }

  .product-slider__viewport {
    border-radius: 22px;
    contain: content;
  }

  .product-slider__slide {
    gap: 14px;
    padding: 1px;
  }

  .product-slider-card,
  .product-related-products .product-slider-card {
    min-height: auto;
  }

  .card {
    transition: none;
    box-shadow: 0 10px 24px rgba(31,47,86,.06);
  }

  .card--hover:hover,
  .product-detail-hero .hero__actions .btn:hover,
  .btn--primary:hover {
    transform: none;
  }

  .card--hover:hover {
    box-shadow: 0 10px 24px rgba(31,47,86,.06);
    border-color: var(--color-border);
  }

  .product-card__media {
    aspect-ratio: 1.28 / .82;
    min-height: 132px;
    border-radius: 18px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
    background-size: contain, auto, auto;
    background-repeat: no-repeat;
  }

  .product-card__media::after {
    background: linear-gradient(180deg, rgba(255,255,255,0) 72%, rgba(255,255,255,.18) 100%);
  }

  .product-card {
    gap: 10px;
  }

  .product-card h3 {
    font-size: 1.05rem;
  }

  .product-card p {
    font-size: .92rem;
    line-height: 1.48;
  }

  .product-card .tags {
    gap: 5px;
  }

  .product-card .tag {
    font-size: .68rem;
    padding: 3px 8px;
  }

  .product-slider__btn {
    width: 40px;
    height: 40px;
    box-shadow: none;
  }

  .product-slider__btn:hover {
    transform: none;
    box-shadow: none;
  }

  .product-slider__controls {
    margin-top: 14px;
    gap: 10px;
  }

  .product-slider__dots {
    gap: 6px;
  }

  .product-slider__dot {
    width: 7px;
    height: 7px;
  }

  .reveal,
  .reveal.is-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .product-detail-hero__media,
  .hero__art,
  .calculator-hero__seal,
  .calc-card,
  .product-fact-panel,
  .product-accordion {
    box-shadow: 0 12px 28px rgba(31,47,86,.07);
  }

  .product-fact-panel {
    position: relative;
    top: auto;
  }

  .site-header,
  .site-header.nav-open .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (max-width: 480px) {
  .product-card__media {
    min-height: 116px;
  }

  .product-related-products .home-products__head,
  .home-products__head {
    gap: 12px;
    margin-bottom: 18px;
  }

  .product-related-products .home-products__head .btn,
  .home-products__head .btn {
    width: 100%;
  }
}



/* ---------- Final mobile/header/calculator refinements ---------- */
.calc-alert--result {
  align-self: stretch;
  min-height: 100%;
  align-content: start;
}
.calc-alert--result .calc-kpi {
  margin-top: 14px;
}
.calc-alert--result .calc-alert__icon {
  color: var(--color-violet);
  background: linear-gradient(135deg, rgba(198,164,106,.10), rgba(198,164,106,.10));
}
.site-header .btn,
.nav-mobile-cta {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-header .nav-actions > .btn,
.nav .nav-mobile-cta {
  display: none !important;
}

@media (max-width: 980px) {
  .site-header.nav-open .nav .nav-dropdown__menu {
    display: none;
    position: static;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0 0 0 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    overflow: hidden;
  }
  .site-header.nav-open .nav .nav-dropdown.is-open .nav-dropdown__menu {
    display: block;
    max-height: 420px;
    margin: 0 0 4px;
    padding: 8px 0 10px 12px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-header.nav-open .nav .nav-dropdown.is-open .nav-dropdown__caret {
    transform: rotate(180deg);
  }
}

@media (max-width: 760px) {
  .product-slider__viewport {
    border-radius: 24px;
    overflow: hidden;
  }
  .product-slider__slide {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0;
    padding: 0;
  }
  .product-slider__slide > .product-card {
    width: 100%;
    min-width: 0;
  }
  .product-card--has-image .product-card__media,
  .product-related-products .product-card__media,
  .product-card__media {
    aspect-ratio: 1 / .72;
    min-height: 220px;
    border-radius: 20px;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
    background-size: cover, auto, auto;
    background-position: center;
  }
  .product-card__media::before,
  .product-card__media::after {
    border: 0 !important;
    box-shadow: none !important;
  }
  .product-slider-card {
    min-height: auto;
  }
  .home-products__head .btn,
  .product-related-products .home-products__head .btn {
    width: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .product-card--has-image .product-card__media,
  .product-related-products .product-card__media,
  .product-card__media {
    min-height: 240px;
  }
}

/* ===== merged block ===== */
:root {
    --velyon-navy: #0D1B2A;
    --velyon-navy-deep: #07111C;
    --velyon-gold: #C6A46A;
    --velyon-silver: #E8E6DF;
    --velyon-offwhite: #F7F6F2;
  }

  .brand-logo img {
    height: 46px;
    max-width: 205px;
    object-fit: contain;
  }

  /*
    HERO VELYON
    Correção: a imagem agora é apenas camada de fundo.
    Não alteramos mais o grid original do hero no desktop,
    para não quebrar o alinhamento do conteúdo.
  */
  .hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: clamp(620px, 78vh, 860px);
    background-image:
      linear-gradient(90deg,
        rgba(247,246,242,0.99) 0%,
        rgba(247,246,242,0.97) 24%,
        rgba(247,246,242,0.90) 43%,
        rgba(247,246,242,0.56) 63%,
        rgba(247,246,242,0.18) 84%,
        rgba(247,246,242,0.04) 100%),
      url("../images/hero-home.png");
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    background-position: center center, center right;
  }

  .hero > .orbit-bg {
    opacity: .18;
    z-index: 0;
    pointer-events: none;
  }

  .hero .container {
    position: relative;
    z-index: 2;
  }

  .hero__grid {
    position: relative;
    z-index: 2;
    align-items: center;
  }

  /*
    Desktop: mantém a coluna direita ocupando espaço,
    preservando a composição original. Apenas escondemos
    a logo/símbolo que antes aparecia como arte principal.
  */
  .hero__art {
    visibility: hidden;
    pointer-events: none;
  }

  .hero__art img {
    width: min(82%, 430px);
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 28px 70px rgba(13,27,42,.18));
  }

  .hero h1,
  .hero .lead,
  .hero .disclaimer,
  .hero .eyebrow {
    max-width: 760px;
  }

  .hero .lead {
    font-size: clamp(1.05rem, 0.92rem + 0.45vw, 1.25rem);
  }

  .hero .disclaimer {
    background: rgba(255,255,255,0.76);
    backdrop-filter: blur(10px);
    border-color: rgba(198,164,106,0.28);
  }

  .footer-brand img {
    max-width: 220px;
    height: auto;
    object-fit: contain;
  }

  .section-eyebrow,
  .eyebrow,
  .kicker {
    letter-spacing: .16em;
  }

  .btn--primary,
  .btn-primary {
    box-shadow: 0 16px 40px rgba(198,164,106,.22);
  }

  @media (max-width: 900px) {
    .hero {
      min-height: auto;
      background-image:
        linear-gradient(180deg,
          rgba(247,246,242,0.99) 0%,
          rgba(247,246,242,0.96) 30%,
          rgba(247,246,242,0.86) 58%,
          rgba(247,246,242,0.54) 82%,
          rgba(247,246,242,0.30) 100%),
        url("../images/hero-home.png");
      background-position: center center, 64% center;
      background-size: cover, cover;
    }

    .hero__grid {
      grid-template-columns: 1fr;
    }

    .hero__art {
      display: none !important;
    }
  }

  @media (max-width: 520px) {
    .brand-logo img {
      height: 38px;
      max-width: 170px;
    }

    .hero {
      background-position: center center, 68% center;
    }

    .hero .disclaimer {
      background: rgba(255,255,255,0.84);
    }
  }

/* ===== merged block ===== */
/*
    AUDITORIA TIPOGRÁFICA VELYON — AJUSTE DE MERCADO
    Objetivo: reduzir a escala exagerada dos títulos, melhorar leitura,
    preservar o design premium e aproximar o site de padrões institucionais
    de marcas healthtech/lab/science com estética premium.
  */

  :root {
    --text-xs: clamp(0.74rem, 0.72rem + 0.06vw, 0.78rem);
    --text-sm: clamp(0.84rem, 0.81rem + 0.08vw, 0.90rem);
    --text-base: clamp(0.94rem, 0.90rem + 0.10vw, 1.00rem);
    --text-md: clamp(1.00rem, 0.96rem + 0.14vw, 1.08rem);
    --text-lg: clamp(1.08rem, 1.00rem + 0.22vw, 1.18rem);
    --text-xl: clamp(1.22rem, 1.10rem + 0.35vw, 1.38rem);

    --h1-size: clamp(2.05rem, 1.58rem + 1.75vw, 3.10rem);
    --h2-size: clamp(1.62rem, 1.34rem + 0.95vw, 2.20rem);
    --h3-size: clamp(1.18rem, 1.04rem + 0.42vw, 1.45rem);
    --h4-size: clamp(1.02rem, 0.96rem + 0.22vw, 1.18rem);

    --line-tight: 1.08;
    --line-heading: 1.16;
    --line-body: 1.62;
  }

  html {
    font-size: 16px;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }

  body {
    font-size: var(--text-base);
    line-height: var(--line-body);
  }

  p,
  li,
  .card p,
  .product-card p,
  .faq-answer,
  .accordion-content,
  .disclaimer,
  .timeline p,
  .feature p,
  .metric p {
    font-size: var(--text-base);
    line-height: var(--line-body);
  }

  .lead,
  .section-lead,
  .page-header .lead,
  .product-detail-hero .lead,
  .calculator-hero .lead {
    font-size: var(--text-lg);
    line-height: 1.58;
    max-width: 68ch;
  }

  h1,
  .h1,
  .hero h1,
  .page-header h1,
  .product-detail-hero h1,
  .calculator-hero h1 {
    font-size: var(--h1-size) !important;
    line-height: var(--line-tight);
    letter-spacing: -0.035em;
    max-width: 13.8ch;
  }

  h2,
  .h2,
  .section-title,
  .page-header h2 {
    font-size: var(--h2-size) !important;
    line-height: var(--line-heading);
    letter-spacing: -0.025em;
  }

  h3,
  .h3,
  .card h3,
  .product-card h3,
  .calculator-card h3,
  .faq-question,
  .accordion-trigger {
    font-size: var(--h3-size) !important;
    line-height: 1.22;
    letter-spacing: -0.015em;
  }

  h4,
  .h4,
  .mini-title,
  .stat-title {
    font-size: var(--h4-size) !important;
    line-height: 1.28;
  }

  .eyebrow,
  .section-eyebrow,
  .kicker,
  .badge,
  .pill,
  .nav-link,
  .btn,
  button,
  input,
  select,
  textarea {
    font-size: var(--text-sm);
  }

  .eyebrow,
  .section-eyebrow,
  .kicker {
    line-height: 1.35;
    letter-spacing: 0.14em;
  }

  .btn {
    line-height: 1.1;
    padding: 0.86rem 1.12rem;
  }

  .site-nav,
  .site-header,
  .footer,
  .footer p,
  .footer li,
  .footer a {
    font-size: var(--text-sm);
  }

  .hero {
    min-height: clamp(560px, 70vh, 760px);
  }

  .hero h1 {
    margin-bottom: 1.15rem;
  }

  .hero .lead {
    font-size: clamp(1.00rem, 0.94rem + 0.20vw, 1.14rem) !important;
    line-height: 1.62;
    max-width: 63ch;
    margin-bottom: 1.35rem;
  }

  .hero .eyebrow {
    font-size: clamp(0.72rem, 0.70rem + 0.05vw, 0.78rem);
    letter-spacing: 0.16em;
    margin-bottom: 0.92rem;
  }

  .hero__actions {
    gap: 0.85rem;
    margin-bottom: 1.15rem;
  }

  .hero .disclaimer {
    font-size: clamp(0.82rem, 0.79rem + 0.08vw, 0.88rem);
    line-height: 1.52;
    max-width: 64ch;
  }

  .metric-number,
  .stat-number,
  .counter,
  .calculator-result__value {
    font-size: clamp(1.75rem, 1.40rem + 1.10vw, 2.55rem) !important;
    line-height: 1.05;
    letter-spacing: -0.035em;
  }

  .product-card__title,
  .product-title {
    font-size: clamp(1.08rem, 1.00rem + 0.25vw, 1.25rem) !important;
    line-height: 1.22;
  }

  .product-meta,
  .small,
  small,
  .caption,
  .label,
  .form-label {
    font-size: var(--text-sm);
    line-height: 1.45;
  }

  .page-header {
    padding-block: clamp(4.5rem, 6vw, 6.5rem) clamp(3rem, 5vw, 5rem);
  }

  .section {
    padding-block: clamp(4rem, 6vw, 6.5rem);
  }

  .section-header {
    margin-bottom: clamp(2rem, 3.8vw, 3.5rem);
  }

  .section-header .lead,
  .section-header p {
    font-size: var(--text-md);
  }

  @media (min-width: 1200px) {
    .hero h1,
    .page-header h1,
    .product-detail-hero h1,
    .calculator-hero h1 {
      font-size: 3.05rem !important;
    }

    .h2,
    .section-title,
    h2 {
      font-size: 2.12rem !important;
    }
  }

  @media (max-width: 900px) {
    :root {
      --h1-size: clamp(1.92rem, 1.62rem + 1.15vw, 2.45rem);
      --h2-size: clamp(1.45rem, 1.24rem + 0.85vw, 1.88rem);
      --h3-size: clamp(1.08rem, 1.00rem + 0.34vw, 1.25rem);
    }

    .hero {
      min-height: auto;
      padding-block: clamp(5.2rem, 11vw, 7rem) clamp(4rem, 9vw, 6rem);
    }

    .hero h1,
    .page-header h1,
    .product-detail-hero h1,
    .calculator-hero h1 {
      max-width: 14.8ch;
    }

    .hero .lead,
    .lead,
    .page-header .lead {
      font-size: clamp(0.98rem, 0.93rem + 0.28vw, 1.08rem) !important;
      line-height: 1.58;
    }

    .hero .disclaimer {
      font-size: 0.82rem;
    }
  }

  @media (max-width: 560px) {
    html {
      font-size: 15.5px;
    }

    :root {
      --h1-size: clamp(1.72rem, 1.42rem + 1.45vw, 2.10rem);
      --h2-size: clamp(1.32rem, 1.14rem + 0.86vw, 1.62rem);
      --h3-size: clamp(1.02rem, 0.96rem + 0.32vw, 1.14rem);
      --text-base: 0.94rem;
      --text-lg: 1.00rem;
    }

    .hero {
      padding-block: 4.7rem 3.7rem;
    }

    .hero h1,
    .page-header h1,
    .product-detail-hero h1,
    .calculator-hero h1 {
      max-width: 15.5ch;
      letter-spacing: -0.03em;
    }

    .hero .eyebrow {
      font-size: 0.69rem;
      letter-spacing: 0.13em;
    }

    .hero .lead {
      font-size: 0.96rem !important;
    }

    .btn {
      font-size: 0.84rem;
      padding: 0.78rem 0.96rem;
    }

    .section {
      padding-block: 3.4rem;
    }

    .page-header {
      padding-block: 4rem 3rem;
    }
  }

/* ===== merged block ===== */
/*
    CORREÇÃO DE LARGURA DOS TÍTULOS
    O problema estava no max-width excessivamente curto aplicado aos H1.
    Isso fazia títulos de páginas internas quebrarem em várias linhas.
    A correção abaixo preserva a tipografia menor, mas libera largura real
    de leitura para os títulos seguirem o grid da página.
  */

  h1,
  .h1,
  .page-header h1,
  .product-detail-hero h1,
  .calculator-hero h1 {
    max-width: min(100%, 980px) !important;
  }

  .hero h1 {
    max-width: min(100%, 820px) !important;
  }

  .page-header .lead,
  .product-detail-hero .lead,
  .calculator-hero .lead {
    max-width: min(100%, 760px) !important;
  }

  .page-header .container > *,
  .product-detail-hero__content > *,
  .calculator-hero__grid > div:first-child > * {
    max-width: 100%;
  }

  .page-header h1 {
    text-wrap: balance;
  }

  .page-header .lead,
  .hero .lead {
    text-wrap: pretty;
  }

  /*
    Ajuste de escala para páginas internas:
    com a largura corrigida, o título pode respirar sem ficar gigante.
  */
  .page-header h1,
  .product-detail-hero h1,
  .calculator-hero h1 {
    font-size: clamp(2.05rem, 1.55rem + 1.65vw, 3.00rem) !important;
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .hero h1 {
    font-size: clamp(2.00rem, 1.50rem + 1.55vw, 2.92rem) !important;
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  @media (min-width: 1200px) {
    .page-header h1,
    .product-detail-hero h1,
    .calculator-hero h1 {
      font-size: 2.88rem !important;
    }

    .hero h1 {
      font-size: 2.82rem !important;
    }
  }

  @media (max-width: 900px) {
    h1,
    .h1,
    .hero h1,
    .page-header h1,
    .product-detail-hero h1,
    .calculator-hero h1 {
      max-width: 100% !important;
      font-size: clamp(1.78rem, 1.42rem + 1.55vw, 2.35rem) !important;
    }

    .page-header .lead,
    .product-detail-hero .lead,
    .calculator-hero .lead,
    .hero .lead {
      max-width: 100% !important;
    }
  }

  @media (max-width: 560px) {
    h1,
    .h1,
    .hero h1,
    .page-header h1,
    .product-detail-hero h1,
    .calculator-hero h1 {
      font-size: clamp(1.58rem, 1.24rem + 1.45vw, 2.00rem) !important;
      line-height: 1.12;
      letter-spacing: -0.025em;
    }
  }

/* ===== merged block ===== */
/*
    BACKGROUND DA PÁGINA SOBRE
    Mesma lógica aplicada na home:
    - imagem como camada de fundo da seção
    - conteúdo por cima
    - largura total
    - alinhamento preservado
  */

  .view[data-view="sobre"] .page-header {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: clamp(520px, 62vh, 720px);
    display: flex;
    align-items: center;
    background-image:
      linear-gradient(90deg,
        rgba(7,17,28,0.94) 0%,
        rgba(7,17,28,0.90) 20%,
        rgba(7,17,28,0.80) 42%,
        rgba(7,17,28,0.62) 62%,
        rgba(7,17,28,0.42) 80%,
        rgba(7,17,28,0.28) 100%),
      url("../images/hero-sobre.png");
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    background-position: center center, center center;
  }

  .view[data-view="sobre"] .page-header > .orbit-bg {
    z-index: 0;
    opacity: .14;
    pointer-events: none;
  }

  .view[data-view="sobre"] .page-header .container {
    position: relative;
    z-index: 2;
  }

  .view[data-view="sobre"] .page-header .breadcrumbs,
  .view[data-view="sobre"] .page-header h1,
  .view[data-view="sobre"] .page-header .lead,
  .view[data-view="sobre"] .page-header .hero__actions {
    max-width: min(100%, 880px);
  }

  .view[data-view="sobre"] .page-header .lead {
    max-width: min(100%, 760px);
  }

  .view[data-view="sobre"] .page-header .btn--secondary {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.26);
    color: #F7F6F2;
  }

  .view[data-view="sobre"] .page-header .btn--secondary:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.34);
  }

  @media (max-width: 900px) {
    .view[data-view="sobre"] .page-header {
      min-height: auto;
      padding-block: clamp(5rem, 11vw, 6.8rem) clamp(4rem, 8vw, 5.6rem);
      background-image:
        linear-gradient(180deg,
          rgba(7,17,28,0.90) 0%,
          rgba(7,17,28,0.82) 30%,
          rgba(7,17,28,0.70) 55%,
          rgba(7,17,28,0.54) 78%,
          rgba(7,17,28,0.42) 100%),
        url("../images/hero-sobre.png");
      background-position: center center, 62% center;
    }

    .view[data-view="sobre"] .page-header .breadcrumbs,
    .view[data-view="sobre"] .page-header h1,
    .view[data-view="sobre"] .page-header .lead,
    .view[data-view="sobre"] .page-header .hero__actions {
      max-width: 100%;
    }
  }

  @media (max-width: 560px) {
    .view[data-view="sobre"] .page-header {
      background-position: center center, 60% center;
    }
  }

/* ===== merged block ===== */
/*
    AJUSTE DE ENQUADRAMENTO DO HERO DA HOME
    Objetivo: evitar que a tampa do frasco principal fique cortada.
    Solução: reposicionar a imagem de fundo para baixo, mantendo o layout.
  */

  .hero {
    background-position: center center, 64% 62% !important;
  }

  @media (max-width: 1200px) {
    .hero {
      background-position: center center, 66% 58% !important;
    }
  }

  @media (max-width: 900px) {
    .hero {
      background-position: center center, 64% 46% !important;
    }
  }

  @media (max-width: 520px) {
    .hero {
      background-position: center center, 68% 42% !important;
    }
  }

/* ===== merged block ===== */
/*
    AJUSTE FINO DE ENQUADRAMENTO DO HERO DA HOME
    Correção da correção anterior: agora a imagem sobe,
    para revelar melhor a tampa do frasco principal.
  */

  .hero {
    background-position: center center, 64% 44% !important;
  }

  @media (max-width: 1200px) {
    .hero {
      background-position: center center, 66% 42% !important;
    }
  }

  @media (max-width: 900px) {
    .hero {
      background-position: center center, 64% 36% !important;
    }
  }

  @media (max-width: 520px) {
    .hero {
      background-position: center center, 68% 34% !important;
    }
  }

/* ===== merged block ===== */
/* Bloco de impressão da ficha técnica removido do CSS global.
   A ficha imprimível deve ser gerada isoladamente pelo JS, sem contaminar o site. */

/* ===== merged block ===== */
/*
    AUDITORIA TIPOGRÁFICA VELYON — AJUSTE DE MERCADO
    Objetivo: reduzir a escala exagerada dos títulos, melhorar leitura,
    preservar o design premium e aproximar o site de padrões institucionais
    de marcas healthtech/lab/science com estética premium.
  */

  :root {
    --text-xs: clamp(0.74rem, 0.72rem + 0.06vw, 0.78rem);
    --text-sm: clamp(0.84rem, 0.81rem + 0.08vw, 0.90rem);
    --text-base: clamp(0.94rem, 0.90rem + 0.10vw, 1.00rem);
    --text-md: clamp(1.00rem, 0.96rem + 0.14vw, 1.08rem);
    --text-lg: clamp(1.08rem, 1.00rem + 0.22vw, 1.18rem);
    --text-xl: clamp(1.22rem, 1.10rem + 0.35vw, 1.38rem);

    --h1-size: clamp(2.05rem, 1.58rem + 1.75vw, 3.10rem);
    --h2-size: clamp(1.62rem, 1.34rem + 0.95vw, 2.20rem);
    --h3-size: clamp(1.18rem, 1.04rem + 0.42vw, 1.45rem);
    --h4-size: clamp(1.02rem, 0.96rem + 0.22vw, 1.18rem);

    --line-tight: 1.08;
    --line-heading: 1.16;
    --line-body: 1.62;
  }

  html {
    font-size: 16px;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }

  body {
    font-size: var(--text-base);
    line-height: var(--line-body);
  }

  p,
  li,
  .card p,
  .product-card p,
  .faq-answer,
  .accordion-content,
  .disclaimer,
  .timeline p,
  .feature p,
  .metric p {
    font-size: var(--text-base);
    line-height: var(--line-body);
  }

  .lead,
  .section-lead,
  .page-header .lead,
  .product-detail-hero .lead,
  .calculator-hero .lead {
    font-size: var(--text-lg);
    line-height: 1.58;
    max-width: 68ch;
  }

  h1,
  .h1,
  .hero h1,
  .page-header h1,
  .product-detail-hero h1,
  .calculator-hero h1 {
    font-size: var(--h1-size) !important;
    line-height: var(--line-tight);
    letter-spacing: -0.035em;
    max-width: 13.8ch;
  }

  h2,
  .h2,
  .section-title,
  .page-header h2 {
    font-size: var(--h2-size) !important;
    line-height: var(--line-heading);
    letter-spacing: -0.025em;
  }

  h3,
  .h3,
  .card h3,
  .product-card h3,
  .calculator-card h3,
  .faq-question,
  .accordion-trigger {
    font-size: var(--h3-size) !important;
    line-height: 1.22;
    letter-spacing: -0.015em;
  }

  h4,
  .h4,
  .mini-title,
  .stat-title {
    font-size: var(--h4-size) !important;
    line-height: 1.28;
  }

  .eyebrow,
  .section-eyebrow,
  .kicker,
  .badge,
  .pill,
  .nav-link,
  .btn,
  button,
  input,
  select,
  textarea {
    font-size: var(--text-sm);
  }

  .eyebrow,
  .section-eyebrow,
  .kicker {
    line-height: 1.35;
    letter-spacing: 0.14em;
  }

  .btn {
    line-height: 1.1;
    padding: 0.86rem 1.12rem;
  }

  .site-nav,
  .site-header,
  .footer,
  .footer p,
  .footer li,
  .footer a {
    font-size: var(--text-sm);
  }

  .hero {
    min-height: clamp(560px, 70vh, 760px);
  }

  .hero h1 {
    margin-bottom: 1.15rem;
  }

  .hero .lead {
    font-size: clamp(1.00rem, 0.94rem + 0.20vw, 1.14rem) !important;
    line-height: 1.62;
    max-width: 63ch;
    margin-bottom: 1.35rem;
  }

  .hero .eyebrow {
    font-size: clamp(0.72rem, 0.70rem + 0.05vw, 0.78rem);
    letter-spacing: 0.16em;
    margin-bottom: 0.92rem;
  }

  .hero__actions {
    gap: 0.85rem;
    margin-bottom: 1.15rem;
  }

  .hero .disclaimer {
    font-size: clamp(0.82rem, 0.79rem + 0.08vw, 0.88rem);
    line-height: 1.52;
    max-width: 64ch;
  }

  .metric-number,
  .stat-number,
  .counter,
  .calculator-result__value {
    font-size: clamp(1.75rem, 1.40rem + 1.10vw, 2.55rem) !important;
    line-height: 1.05;
    letter-spacing: -0.035em;
  }

  .product-card__title,
  .product-title {
    font-size: clamp(1.08rem, 1.00rem + 0.25vw, 1.25rem) !important;
    line-height: 1.22;
  }

  .product-meta,
  .small,
  small,
  .caption,
  .label,
  .form-label {
    font-size: var(--text-sm);
    line-height: 1.45;
  }

  .page-header {
    padding-block: clamp(4.5rem, 6vw, 6.5rem) clamp(3rem, 5vw, 5rem);
  }

  .section {
    padding-block: clamp(4rem, 6vw, 6.5rem);
  }

  .section-header {
    margin-bottom: clamp(2rem, 3.8vw, 3.5rem);
  }

  .section-header .lead,
  .section-header p {
    font-size: var(--text-md);
  }

  @media (min-width: 1200px) {
    .hero h1,
    .page-header h1,
    .product-detail-hero h1,
    .calculator-hero h1 {
      font-size: 3.05rem !important;
    }

    .h2,
    .section-title,
    h2 {
      font-size: 2.12rem !important;
    }
  }

  @media (max-width: 900px) {
    :root {
      --h1-size: clamp(1.92rem, 1.62rem + 1.15vw, 2.45rem);
      --h2-size: clamp(1.45rem, 1.24rem + 0.85vw, 1.88rem);
      --h3-size: clamp(1.08rem, 1.00rem + 0.34vw, 1.25rem);
    }

    .hero {
      min-height: auto;
      padding-block: clamp(5.2rem, 11vw, 7rem) clamp(4rem, 9vw, 6rem);
    }

    .hero h1,
    .page-header h1,
    .product-detail-hero h1,
    .calculator-hero h1 {
      max-width: 14.8ch;
    }

    .hero .lead,
    .lead,
    .page-header .lead {
      font-size: clamp(0.98rem, 0.93rem + 0.28vw, 1.08rem) !important;
      line-height: 1.58;
    }

    .hero .disclaimer {
      font-size: 0.82rem;
    }
  }

  @media (max-width: 560px) {
    html {
      font-size: 15.5px;
    }

    :root {
      --h1-size: clamp(1.72rem, 1.42rem + 1.45vw, 2.10rem);
      --h2-size: clamp(1.32rem, 1.14rem + 0.86vw, 1.62rem);
      --h3-size: clamp(1.02rem, 0.96rem + 0.32vw, 1.14rem);
      --text-base: 0.94rem;
      --text-lg: 1.00rem;
    }

    .hero {
      padding-block: 4.7rem 3.7rem;
    }

    .hero h1,
    .page-header h1,
    .product-detail-hero h1,
    .calculator-hero h1 {
      max-width: 15.5ch;
      letter-spacing: -0.03em;
    }

    .hero .eyebrow {
      font-size: 0.69rem;
      letter-spacing: 0.13em;
    }

    .hero .lead {
      font-size: 0.96rem !important;
    }

    .btn {
      font-size: 0.84rem;
      padding: 0.78rem 0.96rem;
    }

    .section {
      padding-block: 3.4rem;
    }

    .page-header {
      padding-block: 4rem 3rem;
    }
  }

/* ===== merged block ===== */
/*
    BACKGROUND DA PÁGINA SOBRE
    Mesma lógica aplicada na home:
    - imagem como camada de fundo da seção
    - conteúdo por cima
    - largura total
    - alinhamento preservado
  */

  .view[data-view="sobre"] .page-header {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: clamp(520px, 62vh, 720px);
    display: flex;
    align-items: center;
    background-image:
      linear-gradient(90deg,
        rgba(7,17,28,0.94) 0%,
        rgba(7,17,28,0.90) 20%,
        rgba(7,17,28,0.80) 42%,
        rgba(7,17,28,0.62) 62%,
        rgba(7,17,28,0.42) 80%,
        rgba(7,17,28,0.28) 100%),
      url("../images/hero-sobre.png");
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    background-position: center center, center center;
  }

  .view[data-view="sobre"] .page-header > .orbit-bg {
    z-index: 0;
    opacity: .14;
    pointer-events: none;
  }

  .view[data-view="sobre"] .page-header .container {
    position: relative;
    z-index: 2;
  }

  .view[data-view="sobre"] .page-header .breadcrumbs,
  .view[data-view="sobre"] .page-header h1,
  .view[data-view="sobre"] .page-header .lead,
  .view[data-view="sobre"] .page-header .hero__actions {
    max-width: min(100%, 880px);
  }

  .view[data-view="sobre"] .page-header .lead {
    max-width: min(100%, 760px);
  }

  .view[data-view="sobre"] .page-header .btn--secondary {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.26);
    color: #F7F6F2;
  }

  .view[data-view="sobre"] .page-header .btn--secondary:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.34);
  }

  @media (max-width: 900px) {
    .view[data-view="sobre"] .page-header {
      min-height: auto;
      padding-block: clamp(5rem, 11vw, 6.8rem) clamp(4rem, 8vw, 5.6rem);
      background-image:
        linear-gradient(180deg,
          rgba(7,17,28,0.90) 0%,
          rgba(7,17,28,0.82) 30%,
          rgba(7,17,28,0.70) 55%,
          rgba(7,17,28,0.54) 78%,
          rgba(7,17,28,0.42) 100%),
        url("../images/hero-sobre.png");
      background-position: center center, 62% center;
    }

    .view[data-view="sobre"] .page-header .breadcrumbs,
    .view[data-view="sobre"] .page-header h1,
    .view[data-view="sobre"] .page-header .lead,
    .view[data-view="sobre"] .page-header .hero__actions {
      max-width: 100%;
    }
  }

  @media (max-width: 560px) {
    .view[data-view="sobre"] .page-header {
      background-position: center center, 60% center;
    }
  }

/* ===== merged block ===== */
/*
    AJUSTE DE ENQUADRAMENTO DO HERO DA HOME
    Objetivo: evitar que a tampa do frasco principal fique cortada.
    Solução: reposicionar a imagem de fundo para baixo, mantendo o layout.
  */

  .hero {
    background-position: center center, 64% 62% !important;
  }

  @media (max-width: 1200px) {
    .hero {
      background-position: center center, 66% 58% !important;
    }
  }

  @media (max-width: 900px) {
    .hero {
      background-position: center center, 64% 46% !important;
    }
  }

  @media (max-width: 520px) {
    .hero {
      background-position: center center, 68% 42% !important;
    }
  }

/* ===== merged block ===== */
/*
    AJUSTE FINO DE ENQUADRAMENTO DO HERO DA HOME
    Correção da correção anterior: agora a imagem sobe,
    para revelar melhor a tampa do frasco principal.
  */

  .hero {
    background-position: center center, 64% 44% !important;
  }

  @media (max-width: 1200px) {
    .hero {
      background-position: center center, 66% 42% !important;
    }
  }

  @media (max-width: 900px) {
    .hero {
      background-position: center center, 64% 36% !important;
    }
  }

  @media (max-width: 520px) {
    .hero {
      background-position: center center, 68% 34% !important;
    }
  }

/* ---------- Product image variants and galleries ---------- */
.product-image-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0 var(--space-2);
}
.product-image-variants__pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(198,164,106,.24);
  background: rgba(255,255,255,.72);
  color: var(--color-graphite);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 6px 14px rgba(13,27,42,.05);
}
.product-detail-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-self: stretch;
}
.product-detail-gallery--multi {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.product-detail-gallery__item {
  margin: 0;
  min-width: 0;
}
.product-detail-gallery__media {
  min-height: clamp(230px, 24vw, 360px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(198,164,106,.16);
  background:
    var(--product-image),
    radial-gradient(circle at 74% 16%, rgba(139,92,246,.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(229,239,255,.82));
  background-size: cover, auto, auto;
  background-position: center, center, center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.product-detail-gallery__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.22), rgba(255,255,255,0) 42%, rgba(198,164,106,.08));
  pointer-events: none;
}
.product-detail-gallery__badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid rgba(198,164,106,.30);
  background: rgba(255,255,255,.82);
  color: var(--color-graphite);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 10px 24px rgba(13,27,42,.08);
  backdrop-filter: blur(8px);
}
@media (max-width: 900px) {
  .product-detail-gallery--multi { grid-template-columns: 1fr; }
  .product-detail-gallery__media { min-height: 320px; }
}

/* ---------- Institutional portfolio gallery ---------- */
.portfolio-jump {
  border-bottom: 1px solid rgba(198,164,106,.10);
  background: rgba(247,246,242,.72);
}
.portfolio-jump__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.portfolio-jump__grid a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(198,164,106,.22);
  background: rgba(255,255,255,.76);
  color: var(--color-graphite);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(13,27,42,.04);
}
.portfolio-jump__grid a:hover {
  border-color: rgba(198,164,106,.42);
  transform: translateY(-1px);
}
.portfolio-line-section {
  scroll-margin-top: calc(var(--header-h, 88px) + 24px);
}
.portfolio-line-section:nth-child(even) {
  background: rgba(247,246,242,.54);
}
.product-card__variant-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: var(--space-1);
}
.product-card__variant-item {
  margin: 0;
  min-width: 0;
}
.product-card__variant-media {
  min-height: 138px;
  border-radius: calc(var(--radius-lg) - 2px);
  border: 1px solid rgba(198,164,106,.16);
  background-image: var(--product-image), radial-gradient(circle at 72% 20%, rgba(139,92,246,.18), transparent 36%), linear-gradient(135deg, rgba(255,255,255,.92), rgba(235,243,255,.76));
  background-size: cover, auto, auto;
  background-position: center, center, center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 12px 28px rgba(198,164,106,.08);
  position: relative;
  overflow: hidden;
}
.product-card__variant-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 62%, rgba(255,255,255,.32) 100%);
  pointer-events: none;
}
.product-card__variant-item figcaption {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(198,164,106,.24);
  background: rgba(255,255,255,.76);
  color: var(--color-graphite);
  font-size: .70rem;
  font-weight: 800;
  letter-spacing: .02em;
}
@media (max-width: 720px) {
  .product-card__variant-gallery { grid-template-columns: 1fr; }
  .product-card__variant-media { min-height: 260px; }
}


/* ===== VELYON — FIXES DE PUBLICAÇÃO WORDPRESS =====
   Correções aplicadas após teste real de importação:
   1) imagem do hero da Home restaurada com variável inline/PHP;
   2) botão lang-flags ajustado ao novo asset PT/EU;
   3) CSS de ficha imprimível isolado/removido do escopo global. */
.view[data-view="home"] .hero,
.hero--home {
  background-image:
    linear-gradient(90deg,
      rgba(247,246,242,0.99) 0%,
      rgba(247,246,242,0.97) 24%,
      rgba(247,246,242,0.90) 43%,
      rgba(247,246,242,0.56) 63%,
      rgba(247,246,242,0.18) 84%,
      rgba(247,246,242,0.04) 100%),
    var(--velyon-hero-home, url("../images/hero-home.png")) !important;
  background-size: cover, cover !important;
  background-repeat: no-repeat, no-repeat !important;
  background-position: center center, 64% 44% !important;
}

@media (max-width: 1200px) {
  .view[data-view="home"] .hero,
  .hero--home {
    background-position: center center, 66% 42% !important;
  }
}

@media (max-width: 900px) {
  .view[data-view="home"] .hero,
  .hero--home {
    background-image:
      linear-gradient(180deg,
        rgba(247,246,242,0.99) 0%,
        rgba(247,246,242,0.96) 30%,
        rgba(247,246,242,0.86) 58%,
        rgba(247,246,242,0.54) 82%,
        rgba(247,246,242,0.30) 100%),
      var(--velyon-hero-home, url("../images/hero-home.png")) !important;
    background-position: center center, 64% 36% !important;
  }
}

@media (max-width: 520px) {
  .view[data-view="home"] .hero,
  .hero--home {
    background-position: center center, 68% 34% !important;
  }
}

.lang-switcher {
  width: 126px !important;
  height: 50px !important;
  flex-basis: 126px !important;
  border-radius: 999px !important;
  overflow: visible !important;
}

.lang-switcher__art {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  filter: drop-shadow(0 8px 18px rgba(13,27,42,.14));
}

.lang-switcher__btn {
  top: 3px !important;
  bottom: 3px !important;
}

.lang-switcher__btn--pt {
  left: 3px !important;
  width: 49% !important;
  border-radius: 999px 0 0 999px !important;
}

.lang-switcher__btn--en {
  right: 3px !important;
  width: 48% !important;
  border-radius: 0 999px 999px 0 !important;
}

@media (max-width: 980px) {
  .site-header.nav-open .nav .lang-switcher--mobile {
    width: 126px !important;
    height: 50px !important;
  }
}

@media (max-width: 520px) {
  .lang-switcher {
    width: 116px !important;
    height: 46px !important;
    flex-basis: 116px !important;
  }
}


/* ---------- Product presentation selector ---------- */
.product-detail-gallery--selector {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-self: stretch;
}
.product-detail-gallery__item--selected { margin: 0; }
.product-presentation-selector {
  border: 1px solid rgba(198,164,106,.18);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  padding: 14px;
  box-shadow: 0 12px 26px rgba(13,27,42,.05);
}
.product-presentation-selector__label {
  display: block;
  color: var(--color-graphite);
  font-family: var(--font-heading);
  font-size: .86rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.product-presentation-selector p {
  margin: 0 0 10px;
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.55;
}
.product-presentation-selector__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-presentation-option {
  appearance: none;
  border: 1px solid rgba(198,164,106,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--color-graphite);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 13px;
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}
.product-presentation-option:hover,
.product-presentation-option.is-active {
  transform: translateY(-1px);
  border-color: rgba(198,164,106,.58);
  background: rgba(198,164,106,.14);
  box-shadow: 0 10px 22px rgba(198,164,106,.12);
}
@media (max-width: 640px) {
  .product-presentation-option { flex: 1 1 calc(50% - 8px); }
  .product-card > p { min-height: auto; }
}


/* Defensive: institutional catalogue only, no WooCommerce sales interface. */
.woocommerce div.product .stock,
.woocommerce div.product p.price,
.woocommerce div.product form.cart,
.woocommerce div.product .product_meta,
.woocommerce div.product .woocommerce-tabs,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  display: none !important;
}


/* ---------- Language switcher hotfix: PT/EU flag visibility ---------- */
.site-header .lang-switcher,
.site-header .nav .lang-switcher--mobile {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 132px !important;
  min-width: 132px !important;
  height: 52px !important;
  flex: 0 0 132px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  overflow: visible !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 20 !important;
}

.site-header .lang-switcher__art {
  display: block !important;
  width: 132px !important;
  min-width: 132px !important;
  height: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
  filter: drop-shadow(0 8px 18px rgba(13,27,42,.15)) !important;
}

.site-header .lang-switcher__btn {
  position: absolute !important;
  top: 4px !important;
  bottom: 4px !important;
  z-index: 2 !important;
  display: block !important;
  border: 0 !important;
  background: transparent !important;
  cursor: pointer !important;
}

.site-header .lang-switcher__btn--pt {
  left: 4px !important;
  width: 50% !important;
  border-radius: 999px 0 0 999px !important;
}

.site-header .lang-switcher__btn--en {
  right: 4px !important;
  width: 48% !important;
  border-radius: 0 999px 999px 0 !important;
}

@media (max-width: 980px) {
  .site-header .nav-actions > .lang-switcher {
    display: inline-flex !important;
    width: 120px !important;
    min-width: 120px !important;
    height: 48px !important;
    flex-basis: 120px !important;
  }
  .site-header .nav-actions > .lang-switcher .lang-switcher__art {
    width: 120px !important;
    min-width: 120px !important;
  }
  .site-header.nav-open .nav .lang-switcher--mobile {
    display: inline-flex !important;
    width: 132px !important;
    min-width: 132px !important;
    height: 52px !important;
    flex-basis: 132px !important;
    margin-top: 14px !important;
  }
}

@media (max-width: 520px) {
  .site-header .nav-actions > .lang-switcher {
    width: 108px !important;
    min-width: 108px !important;
    height: 44px !important;
    flex-basis: 108px !important;
  }
  .site-header .nav-actions > .lang-switcher .lang-switcher__art {
    width: 108px !important;
    min-width: 108px !important;
  }
}


/* Hotfix: only one language switcher in the header. The site now starts in English by default. */
.site-header .nav .lang-switcher--mobile,
.site-header.nav-open .nav .lang-switcher--mobile {
  display: none !important;
}

/* ---------- HOTFIX: product detail gallery framing and visible related products ----------
   Product images are square (1:1). The product detail page must not crop them into
   a horizontal frame. Related product blocks are dynamic, so they must remain visible
   even when injected after the initial reveal observer has already run. */
.product-detail-gallery--selector {
  width: 100%;
  max-width: min(560px, 100%);
  justify-self: center;
  align-self: start;
}
.product-detail-gallery__item--selected {
  width: 100%;
  aspect-ratio: 1 / 1;
}
.product-detail-gallery__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0 !important;
  height: auto;
  background-size: contain, auto, auto !important;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center, center, center;
  background-color: rgba(247,246,242,.96);
}
.product-related-products .home-products__head,
.product-related-products .product-slider {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
.product-related-products {
  display: block !important;
  padding-block: clamp(52px, 6vw, 86px);
  background: linear-gradient(180deg, rgba(247,246,242,.74), rgba(255,255,255,.94));
}
@media (max-width: 980px) {
  .product-detail-gallery--selector {
    max-width: min(520px, 100%);
    margin-inline: auto;
  }
}


/* ------------------------------------------------------------------
 * Institutional copy rebuild — shop redirection only
 * ------------------------------------------------------------------ */
.nav-shop-btn { white-space: nowrap; padding-inline: 16px; }
.footer-grid--copy { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
.footer-shop-link { margin-top: 10px; color: var(--color-electric-blue) !important; font-weight: 700; }
.footer-contact-line { color: rgba(255,255,255,.72); margin: 0 0 12px; }
.product-cta--dual { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.product-cta--dual .btn { flex: 1 1 auto; justify-content: center; }
.faq-category + .faq-category { margin-top: var(--space-8); }
.compliance-accordion .acc-panel-inner p + p { margin-top: 12px; }
.disclaimer--strong { border-color: rgba(255,118,94,.35); background: rgba(255,118,94,.08); }
.checklist--negative li::before { content: '✗'; color: #d95c4a; }
.coa-search-card { max-width: 760px; margin-inline: auto; }
.coa-search { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; align-items: end; margin-top: var(--space-4); }
.coa-result { margin-top: var(--space-5); }
.coa-result__not-found, .coa-result__empty { border: 1px solid rgba(198,164,106,.22); border-radius: var(--radius-lg); padding: var(--space-4); background: rgba(255,255,255,.68); color: var(--color-graphite); }
.search-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; align-items: end; }
.prose { max-width: 850px; }
.prose h2 { margin-top: var(--space-6); margin-bottom: var(--space-2); font-size: var(--text-xl); }
.prose p { color: var(--color-muted); line-height: 1.75; }
.stack { display: grid; gap: var(--space-4); }
@media (max-width: 980px) {
  .nav-actions { gap: 10px; }
  .nav-shop-btn { display: none; }
  .footer-grid--copy { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .footer-grid--copy { grid-template-columns: 1fr; }
  .coa-search, .search-form { grid-template-columns: 1fr; }
  .product-cta--dual { flex-direction: column; align-items: stretch; }
}


/* ------------------------------------------------------------------
 * Hotfix — catalogue menu, readability, compliance, shop restraint
 * ------------------------------------------------------------------ */
.view[data-view="sobre"] .page-header,
.view[data-view="compliance"] .page-header.page-header--readable {
  background-image:
    linear-gradient(90deg,
      rgba(7,17,28,0.985) 0%,
      rgba(7,17,28,0.96) 28%,
      rgba(7,17,28,0.90) 50%,
      rgba(7,17,28,0.72) 72%,
      rgba(7,17,28,0.56) 100%),
    url("../images/hero-sobre.png") !important;
  background-size: cover, cover !important;
  background-position: center center, center center !important;
}
.view[data-view="sobre"] .page-header .breadcrumbs,
.view[data-view="sobre"] .page-header .breadcrumbs a,
.view[data-view="sobre"] .page-header h1,
.view[data-view="sobre"] .page-header .lead,
.view[data-view="sobre"] .page-header .eyebrow,
.view[data-view="compliance"] .page-header .breadcrumbs,
.view[data-view="compliance"] .page-header .breadcrumbs a,
.view[data-view="compliance"] .page-header h1,
.view[data-view="compliance"] .page-header .lead,
.view[data-view="compliance"] .page-header .eyebrow {
  color: #F7F6F2 !important;
  opacity: 1 !important;
}
.view[data-view="sobre"] .page-header h1,
.view[data-view="compliance"] .page-header h1 {
  color: #FFFFFF !important;
  text-shadow: 0 12px 38px rgba(0,0,0,.45);
  max-width: 18ch !important;
}
.view[data-view="sobre"] .page-header .lead,
.view[data-view="compliance"] .page-header .lead {
  color: rgba(255,255,255,.84) !important;
  text-shadow: 0 8px 28px rgba(0,0,0,.38);
}
.compliance-layout { max-width: 1040px; }
.compliance-card--alert {
  border-color: rgba(255,118,94,.32);
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,246,242,.92));
}
.compliance-card--alert h2 { margin-bottom: var(--space-3); }
.nav-shop-btn {
  min-height: 38px !important;
  padding-inline: 14px !important;
  font-size: .72rem !important;
  letter-spacing: .12em;
  box-shadow: none !important;
}
@media (max-width: 980px) {
  .view[data-view="sobre"] .page-header,
  .view[data-view="compliance"] .page-header.page-header--readable {
    background-image:
      linear-gradient(180deg,
        rgba(7,17,28,0.98) 0%,
        rgba(7,17,28,0.94) 52%,
        rgba(7,17,28,0.78) 100%),
      url("../images/hero-sobre.png") !important;
  }
}


/* ------------------------------------------------------------------
 * V3 global consistency hotfix — shop shortcut, language labels,
 * About hero readability, catalogue naming
 * ------------------------------------------------------------------ */
.site-header .nav-actions > .nav-shop-btn,
.site-header .nav-shop-btn {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center;
  justify-content: center;
  min-height: 38px !important;
  padding: 0 15px !important;
  border-radius: 999px !important;
  font-size: .72rem !important;
  font-weight: 800 !important;
  letter-spacing: .12em !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
}
@media (max-width: 980px) {
  .site-header .nav-actions > .nav-shop-btn,
  .site-header .nav-shop-btn {
    display: inline-flex !important;
    min-height: 34px !important;
    padding-inline: 12px !important;
    font-size: .66rem !important;
  }
}
@media (max-width: 720px) {
  .site-header .nav-actions > .nav-shop-btn,
  .site-header .nav-shop-btn {
    display: none !important;
  }
}
.view[data-view="sobre"] .page-header,
.velyon-page--sobre .page-header {
  min-height: clamp(430px, 54vh, 620px) !important;
  display: flex !important;
  align-items: center !important;
  background-image:
    linear-gradient(90deg,
      rgba(7,17,28,0.99) 0%,
      rgba(7,17,28,0.97) 30%,
      rgba(7,17,28,0.88) 58%,
      rgba(7,17,28,0.68) 100%),
    url("../images/hero-sobre.png") !important;
  background-size: cover, cover !important;
  background-position: center center, center center !important;
}
.view[data-view="sobre"] .page-header .container,
.velyon-page--sobre .page-header .container {
  max-width: 1180px !important;
}
.view[data-view="sobre"] .page-header h1,
.velyon-page--sobre .page-header h1 {
  max-width: 920px !important;
  width: 100% !important;
  color: #fff !important;
  font-size: clamp(2.5rem, 5.6vw, 5.2rem) !important;
  line-height: .98 !important;
  letter-spacing: -.055em !important;
  text-wrap: balance;
  overflow-wrap: normal !important;
  word-break: normal !important;
}
.view[data-view="sobre"] .page-header .lead,
.velyon-page--sobre .page-header .lead {
  max-width: 760px !important;
  color: rgba(255,255,255,.88) !important;
}
.view[data-view="sobre"] .page-header .breadcrumbs,
.view[data-view="sobre"] .page-header .breadcrumbs a,
.view[data-view="sobre"] .page-header .eyebrow,
.velyon-page--sobre .page-header .breadcrumbs,
.velyon-page--sobre .page-header .breadcrumbs a,
.velyon-page--sobre .page-header .eyebrow {
  color: rgba(255,255,255,.92) !important;
  opacity: 1 !important;
}
.view[data-view="compliance"] .page-header.page-header--readable,
.velyon-page--compliance .page-header {
  min-height: clamp(360px, 46vh, 520px) !important;
  background-image:
    linear-gradient(90deg,
      rgba(7,17,28,0.99) 0%,
      rgba(7,17,28,0.96) 44%,
      rgba(7,17,28,0.76) 100%),
    url("../images/hero-sobre.png") !important;
}
.view[data-view="compliance"] .page-header h1,
.velyon-page--compliance .page-header h1 {
  max-width: 940px !important;
  color: #fff !important;
  font-size: clamp(2.35rem, 5vw, 4.8rem) !important;
  line-height: 1.02 !important;
  word-break: normal !important;
}
.view[data-view="compliance"] .page-header .lead,
.velyon-page--compliance .page-header .lead {
  color: rgba(255,255,255,.86) !important;
}


/* Hotfix v4: quality standards block should use briefing copy, not arbitrary metrics */
.home-quality-standards {
  background: var(--gradient-soft);
}
.home-quality-standards .stat--standard {
  align-items: flex-start;
  text-align: left;
  gap: .35rem;
}
.home-quality-standards .stat--standard .stat__num {
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  letter-spacing: .08em;
  line-height: 1.1;
}
.home-quality-standards .stat--standard .stat__label {
  max-width: 24ch;
}


/* ===== HOTFIX V5 — HOME HERO IMAGE RESTORE =====
   Restores the original/static CSS image loading strategy used in the stable theme.
   The previous version relied on an inline CSS custom property inside the HTML fragment;
   if a cache/minifier/parser preserved the PHP text instead of evaluating it, the
   background became invalid. This direct relative CSS URL is safer inside WordPress. */
.view[data-view="home"] .hero--home {
  background-image:
    linear-gradient(90deg,
      rgba(247,246,242,0.99) 0%,
      rgba(247,246,242,0.97) 24%,
      rgba(247,246,242,0.90) 43%,
      rgba(247,246,242,0.56) 63%,
      rgba(247,246,242,0.18) 84%,
      rgba(247,246,242,0.04) 100%),
    url("../images/hero-home.png") !important;
  background-size: cover, cover !important;
  background-repeat: no-repeat, no-repeat !important;
  background-position: center center, center right !important;
}
@media (max-width: 900px) {
  .view[data-view="home"] .hero--home {
    background-image:
      linear-gradient(180deg,
        rgba(247,246,242,0.99) 0%,
        rgba(247,246,242,0.96) 30%,
        rgba(247,246,242,0.86) 58%,
        rgba(247,246,242,0.54) 82%,
        rgba(247,246,242,0.30) 100%),
      url("../images/hero-home.png") !important;
    background-position: center center, 64% center !important;
    background-size: cover, cover !important;
  }
}
@media (max-width: 520px) {
  .view[data-view="home"] .hero--home {
    background-position: center center, 68% center !important;
  }
}

/* ===== HOTFIX V6 — HOME HERO COMPOSITION / NO CROP =====
   Objectivo: preservar o frasco principal completo, evitar corte no topo
   e fazer a secção ocupar a largura total com uma composição mais limpa.
   A imagem passa a ser dimensionada pela altura do hero, não por cover. */
.view[data-view="home"] .hero--home {
  width: 100%;
  min-height: clamp(700px, 74vh, 840px) !important;
  padding-block: clamp(118px, 8vw, 150px) clamp(86px, 7vw, 124px) !important;
  background-color: #F7F6F2 !important;
  background-image:
    linear-gradient(90deg,
      rgba(247,246,242,1) 0%,
      rgba(247,246,242,0.995) 22%,
      rgba(247,246,242,0.94) 40%,
      rgba(247,246,242,0.70) 56%,
      rgba(247,246,242,0.28) 72%,
      rgba(247,246,242,0.06) 100%),
    url("../images/hero-home.png") !important;
  background-size: 100% 100%, auto 100% !important;
  background-position: center center, right center !important;
  background-repeat: no-repeat, no-repeat !important;
}

.view[data-view="home"] .hero--home .container {
  width: min(100% - 48px, 1180px);
}

.view[data-view="home"] .hero--home .hero__grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr) !important;
  min-height: auto;
}

.view[data-view="home"] .hero--home .hero__grid > div:first-child {
  max-width: 670px;
}

.view[data-view="home"] .hero--home .hero__art {
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (min-width: 1500px) {
  .view[data-view="home"] .hero--home {
    min-height: clamp(720px, 72vh, 860px) !important;
    background-size: 100% 100%, auto 100% !important;
    background-position: center center, right center !important;
  }
}

@media (max-width: 1200px) {
  .view[data-view="home"] .hero--home {
    min-height: clamp(660px, 72vh, 780px) !important;
    background-size: 100% 100%, auto 100% !important;
    background-position: center center, right center !important;
  }
  .view[data-view="home"] .hero--home .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr) !important;
  }
}

@media (max-width: 900px) {
  .view[data-view="home"] .hero--home {
    min-height: auto !important;
    padding-block: 112px 70px !important;
    background-image:
      linear-gradient(180deg,
        rgba(247,246,242,1) 0%,
        rgba(247,246,242,.98) 38%,
        rgba(247,246,242,.90) 64%,
        rgba(247,246,242,.72) 100%),
      url("../images/hero-home.png") !important;
    background-size: 100% 100%, auto 72% !important;
    background-position: center center, right bottom !important;
  }
  .view[data-view="home"] .hero--home .hero__grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .view[data-view="home"] .hero--home {
    padding-block: 104px 58px !important;
    background-size: 100% 100%, auto 58% !important;
    background-position: center center, 82% bottom !important;
  }
}


/* ------------------------------------------------------------------
 * V8 — institutional Terms & Privacy pages
 * ------------------------------------------------------------------ */
.legal-layout { max-width: 1120px; }
.legal-notice { margin-bottom: var(--space-7); }
.legal-notice p { margin: 8px 0 0; color: var(--color-text-secondary); line-height: 1.75; }
.legal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-5); }
.legal-card { padding: var(--space-5); }
.legal-card .badge { margin-bottom: var(--space-3); }
.legal-card h2 { font-size: var(--text-xl); line-height: var(--line-tight); margin-bottom: var(--space-3); }
.legal-card p { color: var(--color-text-secondary); line-height: 1.72; margin: 0; }
.legal-card p + p { margin-top: var(--space-3); }
.view[data-view="termos"] .page-header.page-header--readable,
.view[data-view="privacidade"] .page-header.page-header--readable {
  background-image:
    linear-gradient(90deg,
      rgba(7,17,28,0.985) 0%,
      rgba(7,17,28,0.95) 38%,
      rgba(7,17,28,0.78) 70%,
      rgba(7,17,28,0.58) 100%),
    url("../images/hero-sobre.png");
  background-size: cover, cover;
  background-position: center center, center center;
}
.view[data-view="termos"] .page-header .breadcrumbs,
.view[data-view="termos"] .page-header .breadcrumbs a,
.view[data-view="termos"] .page-header h1,
.view[data-view="termos"] .page-header .lead,
.view[data-view="termos"] .page-header .eyebrow,
.view[data-view="privacidade"] .page-header .breadcrumbs,
.view[data-view="privacidade"] .page-header .breadcrumbs a,
.view[data-view="privacidade"] .page-header h1,
.view[data-view="privacidade"] .page-header .lead,
.view[data-view="privacidade"] .page-header .eyebrow {
  color: #F7F6F2 !important;
  opacity: 1 !important;
}
.view[data-view="termos"] .page-header h1,
.view[data-view="privacidade"] .page-header h1 {
  color: #FFFFFF !important;
  text-shadow: 0 12px 38px rgba(0,0,0,.45);
  max-width: 18ch !important;
}
.view[data-view="termos"] .page-header .lead,
.view[data-view="privacidade"] .page-header .lead {
  color: rgba(255,255,255,.84) !important;
  text-shadow: 0 8px 28px rgba(0,0,0,.38);
}
@media (max-width: 860px) {
  .legal-grid { grid-template-columns: 1fr; }
}


/* Hotfix v9: Legal/Compliance routing visibility */
.nav-dropdown--legal .nav-dropdown__trigger {
  font-family: var(--font-heading);
  font-size: .74rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(13,27,42,.86);
  padding: 10px 0;
}
.nav-dropdown--legal .nav-dropdown__trigger:hover { color: var(--color-violet); }
.nav-dropdown__menu--legal { width: 330px; }
.nav-dropdown__menu--legal a {
  min-height: 62px;
  height: auto;
  border-radius: 16px;
  padding: 12px 14px;
  display: grid;
  gap: 4px;
  text-transform: none;
  letter-spacing: 0;
}
.nav-dropdown__menu--legal a span:first-child {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 800;
  color: var(--color-deep-navy);
}
.nav-dropdown__menu--legal a span:last-child {
  font-size: .74rem;
  line-height: 1.35;
  color: var(--color-text-secondary);
}
.site-header.nav-open .nav .nav-dropdown__menu--legal a {
  padding: 11px 12px;
  border-radius: 14px;
}
.footer-grid--copy ul li a[href*="compliance"] { font-weight: 800; }
.legal-related-section { padding-top: 0; padding-bottom: clamp(3.5rem, 5vw, 5.5rem); }
.cta-band--legal .cta-band__actions { flex-wrap: wrap; }
@media (max-width: 980px) {
  .site-header.nav-open .nav .nav-dropdown__trigger { width: 100%; justify-content: space-between; }
  .site-header.nav-open .nav .nav-dropdown__menu--legal { width: 100%; display: grid; gap: 8px; }
}
