:root {
  --orange: #f36a16;
  --orange-dark: #cf4f08;
  --menu-color: #2f2530;
  --orange-soft: #fff2e9;
  --whatsapp: #087b45;
  --ink: #2f2530;
  --muted: #6f666d;
  --cream: #fbf7f3;
  --line: #eadfd7;
  --white: #fff;
  --shadow: 0 24px 64px rgba(67, 44, 31, .11);
  --shadow-soft: 0 12px 34px rgba(63, 39, 29, .075);
  --radius: 22px;
  --radius-card: 20px;
  --radius-control: 12px;
  --header-height: 80px;
  --container: 1180px;
  --content-wide: 1180px;
  --content-readable: 720px;
  --section-space: clamp(4.75rem, 7vw, 6.75rem);
  --ease-fluid: cubic-bezier(.2, .75, .25, 1);
  --font-heading: Avenir, "Avenir Next", Montserrat, "Segoe UI", Arial, sans-serif;
  --font-body: Avenir, "Avenir Next", Montserrat, "Segoe UI", Arial, sans-serif;
  --orange-glow: rgba(243, 106, 22, .32);
  --gradient-accent: linear-gradient(135deg, var(--orange) 0%, #ff8b3d 52%, var(--orange-dark) 100%);
  --ease-spring: cubic-bezier(.34, 1.26, .44, 1);
  --shine-gradient: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, .28) 48%, rgba(255, 255, 255, .38) 52%, transparent 68%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  padding-top: var(--header-height);
  color: var(--ink);
  background: #fffdfb;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.035em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
}

h3 {
  margin-bottom: 10px;
}

p {
  color: var(--muted);
}

.container {
  width: min(calc(100% - clamp(2rem, 6vw, 4rem)), var(--content-wide));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 11px;
  color: var(--orange-dark);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-heading.centered {
  max-width: 790px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .22s var(--ease-fluid), box-shadow .22s var(--ease-fluid), background-color .22s ease, color .22s ease;
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button-icon {
  display: block;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-button:focus-visible,
.main-nav a:focus-visible,
.social-links a:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(243, 106, 22, .4);
  outline-offset: 3px;
}

.button-primary {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  background-size: 170% 170%;
  background-position: 0% 50%;
  box-shadow: 0 11px 24px rgba(243, 106, 22, .25);
  transition: transform .22s var(--ease-fluid), box-shadow .22s var(--ease-fluid), background-color .22s ease, color .22s ease, background-position .45s ease;
}

.button-primary::after {
  position: absolute;
  inset: 0;
  background: var(--shine-gradient);
  transform: translateX(-130%);
  transition: transform .6s ease;
  content: "";
  pointer-events: none;
}

.button-primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 14px 30px rgba(243, 106, 22, .35);
}

.button-primary:hover::after {
  transform: translateX(130%);
}

.button-primary:active {
  transform: translateY(0) scale(.985);
}

.button-outline {
  color: var(--orange-dark);
  background: rgba(255, 255, 255, .88);
  border-color: rgba(243, 106, 22, .55);
}

.button-outline:hover {
  color: #fff;
  background: var(--orange);
}

.button-whatsapp {
  color: #fff;
  background: linear-gradient(140deg, #2ee06f 0%, #25d366 45%, #1eb857 100%);
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(30, 184, 87, .32);
}

.button-whatsapp:hover {
  background: linear-gradient(140deg, #1eb857 0%, #25d366 55%, #2ee06f 100%);
  box-shadow: 0 14px 34px rgba(30, 184, 87, .42);
  transform: translateY(-2px);
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 10px 16px;
  color: var(--orange-dark);
  border: 1px solid rgba(243, 106, 22, .55);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.2;
  transition: color .2s ease, background-color .2s ease, transform .22s var(--ease-fluid);
}

.text-button span {
  font-size: 1.2em;
  transition: transform .2s ease;
}

.text-button:hover {
  color: #fff;
  background: var(--orange);
  transform: translateY(-2px);
}

.text-button:hover span {
  transform: translateX(3px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--header-height);
  background: rgba(255, 253, 251, .9);
  border-bottom: 1px solid rgba(47, 37, 48, .06);
  transition: min-height .25s var(--ease-fluid), background-color .25s ease, box-shadow .25s var(--ease-fluid), border-color .25s ease;
  backdrop-filter: blur(18px) saturate(1.35);
  animation: header-drop .55s var(--ease-fluid) both;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--gradient-accent);
  content: "";
  opacity: .42;
  transform: scaleX(.16);
  transform-origin: left;
  transition: transform .6s var(--ease-fluid), opacity .3s ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(255, 253, 251, .97);
  border-bottom-color: rgba(243, 106, 22, .16);
  box-shadow: 0 10px 30px rgba(49, 37, 29, .085), 0 2px 10px rgba(207, 79, 8, .05);
}

.site-header.is-scrolled::after {
  opacity: .9;
  transform: scaleX(1);
}

.header-inner {
  display: flex;
  min-height: inherit;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 36px);
}

.brand {
  position: relative;
  z-index: 2;
  display: flex;
  width: 200px;
  height: auto;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform .25s var(--ease-spring);
}

.brand:hover {
  transform: scale(1.045);
}

.brand img {
  width: 200px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 26px);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary {
  position: relative;
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 28px 10px 13px;
  color: var(--menu-color);
  font-size: .89rem;
  font-weight: 650;
  white-space: nowrap;
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
  transition: color .22s ease, background-color .22s ease, transform .22s var(--ease-fluid);
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  position: absolute;
  right: 12px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform .22s var(--ease-fluid);
}

.nav-dropdown:hover > summary,
.nav-dropdown[open] > summary,
.nav-dropdown > summary:focus-visible {
  color: var(--orange-dark);
  background: rgba(243, 106, 22, .08);
}

.nav-dropdown[open] > summary::after {
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  min-width: 250px;
  max-height: min(70vh, 440px);
  gap: 3px;
  overflow-y: auto;
  padding: 9px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(47, 37, 48, .15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-7px);
  transition: opacity .2s ease, transform .24s var(--ease-fluid);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown[open] .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--muted);
  border-radius: 10px;
  font-size: .78rem;
  line-height: 1.3;
  transition: color .18s ease, background-color .18s ease, transform .18s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--orange-dark);
  background: var(--orange-soft);
  transform: translateX(2px);
}

.nav-dropdown-menu .nav-dropdown-all {
  margin-bottom: 4px;
  color: var(--orange-dark);
  border-bottom: 1px solid var(--line);
  border-radius: 10px 10px 4px 4px;
  font-weight: 800;
}

.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-whatsapp-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.main-nav > a:not(.button) {
  position: relative;
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  color: var(--menu-color);
  font-size: .89rem;
  font-weight: 650;
  white-space: nowrap;
  border-radius: 999px;
  transition: color .22s ease, background-color .22s ease, transform .22s var(--ease-fluid);
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 16px;
  bottom: 3px;
  left: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s var(--ease-fluid);
}

.main-nav > a:not(.button):hover,
.main-nav > a.is-active:not(.button) {
  color: var(--orange-dark);
}

.main-nav > a:not(.button):hover {
  background: rgba(243, 106, 22, .08);
  transform: translateY(-1px);
}

.main-nav > a:not(.button):hover::after,
.main-nav > a.is-active:not(.button)::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav > a.is-active:not(.button) {
  background: rgba(243, 106, 22, .09);
}

.nav-whatsapp {
  position: relative;
  min-height: 44px;
  overflow: hidden;
  padding: 10px 18px;
  color: #fff;
  background: var(--gradient-accent);
  background-size: 160% 160%;
  background-position: 0% 50%;
  box-shadow: 0 9px 20px rgba(243, 106, 22, .3);
  transition: background-position .4s ease, box-shadow .25s var(--ease-fluid), transform .22s var(--ease-fluid);
}

.nav-whatsapp::after {
  position: absolute;
  inset: 0;
  background: var(--shine-gradient);
  transform: translateX(-120%);
  transition: transform .65s ease;
  content: "";
  pointer-events: none;
}

.nav-whatsapp:hover {
  background-position: 100% 50%;
  box-shadow: 0 12px 26px rgba(243, 106, 22, .4);
}

.nav-whatsapp:hover::after {
  transform: translateX(120%);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Hero */
.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: linear-gradient(120deg, #fff 8%, #fef9f4 53%, #fde8d8 100%);
}

.hero::before {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 61%;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.97) 58%, rgba(255,255,255,.82) 77%, transparent 100%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 155px;
  background: linear-gradient(0deg, #fff 2%, rgba(255,255,255,.88) 45%, transparent 100%);
  content: "";
  pointer-events: none;
}

.hero-slider {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 67%;
  overflow: hidden;
  background: #eee4dc;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.035);
  transition: opacity .8s ease, transform 6.8s var(--ease-fluid);
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 63%, rgba(255,255,255,.18));
  content: "";
  pointer-events: none;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-glow {
  position: absolute;
  z-index: 0;
  top: -18%;
  right: 12%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255,129,41,.22) 0%, rgba(255,129,41,0) 65%);
  filter: blur(10px);
  animation: glow-breathe 9s ease-in-out infinite;
}

.hero-rings {
  position: absolute;
  z-index: 0;
  right: -120px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(243, 106, 22, .16);
  border-radius: 50%;
  animation: ring-spin 46s linear infinite;
}

.hero-rings::before,
.hero-rings::after {
  position: absolute;
  border: 1px dashed rgba(207, 79, 8, .14);
  border-radius: 50%;
  content: "";
}

.hero-rings::before {
  inset: 12%;
}

.hero-rings::after {
  inset: 26%;
  border-color: rgba(243, 106, 22, .12);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 660px;
  flex-direction: column;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 120px;
}

.hero-copy {
  width: min(540px, 49%);
}

.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(243, 106, 22, .22);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(207, 79, 8, .08);
  backdrop-filter: blur(8px);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--gradient-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(243, 106, 22, .15);
  animation: dot-pulse 2.4s ease-in-out infinite;
}

.hero-copy .eyebrow {
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 5.4vw, 5.2rem);
  letter-spacing: -.06em;
  line-height: 1.05;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero h1 span::before,
.hero h1 span::after {
  content: "";
}

.hero-headline-rule {
  display: block;
  width: 96px;
  height: 5px;
  margin-bottom: 22px;
  background: var(--gradient-accent);
  border-radius: 99px;
  animation: rule-grow .9s var(--ease-fluid) .35s both;
}

.hero-text {
  max-width: 480px;
  margin-bottom: 32px;
  color: #5a4e55;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-badges {
  position: absolute;
  z-index: 3;
  top: 18%;
  right: clamp(12px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-showcase {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 7vw, 110px);
  bottom: clamp(110px, 16vh, 170px);
  width: min(34vw, 460px);
  border-radius: var(--radius-card);
  box-shadow: 0 28px 70px rgba(67, 44, 31, .22);
  animation: showcase-float 8s ease-in-out infinite;
  overflow: hidden;
}

.hero-showcase img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

@keyframes showcase-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(67, 44, 31, .16);
  backdrop-filter: blur(12px) saturate(1.2);
  animation: badge-float 7s ease-in-out infinite;
}

.hero-badge-years {
  flex-direction: column;
  gap: 2px;
  min-width: 132px;
  text-align: center;
  background: linear-gradient(150deg, rgba(255,255,255,.96), rgba(255,242,233,.96));
}

.hero-badge-years strong {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-badge-years span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-badge-seal {
  animation-delay: 1.2s;
}

.hero-badge-check {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--gradient-accent);
  border-radius: 50%;
  font-size: .9rem;
  font-weight: 900;
  box-shadow: 0 6px 16px rgba(207, 79, 8, .3);
}

.hero-badge-seal span:last-child {
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.25;
}

.hero-trust {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(1180px, calc(100% - clamp(2rem, 6vw, 4rem)));
  margin: -54px auto 0;
  padding-bottom: 34px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  color: var(--orange-dark);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(67, 44, 31, .1);
  backdrop-filter: blur(12px);
  transition: transform .3s var(--ease-fluid), box-shadow .3s var(--ease-fluid), background-color .3s ease;
}

.trust-item:hover {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 42px rgba(67, 44, 31, .15);
  transform: translateY(-5px);
}

.trust-item svg {
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  color: var(--orange);
  stroke-width: 1.55;
}

.trust-item span {
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.38;
}

.trust-item strong {
  color: var(--ink);
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #fffaf6;
}

.marquee-shell {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 68px;
}

.marquee-label {
  flex: 0 0 auto;
  color: var(--orange-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.marquee-viewport {
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-right: 42px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: .98rem;
  font-weight: 800;
  white-space: nowrap;
}

.marquee-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.marquee-icon svg {
  width: 100%;
  height: 100%;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Product */
.product-section {
  padding-block: clamp(3.75rem, 5vw, 5rem);
}

.product-panel {
  position: relative;
  display: grid;
  min-height: 370px;
  grid-template-columns: 1.02fr .92fr 1.35fr;
  align-items: stretch;
  overflow: hidden;
  background: radial-gradient(circle at 15% 10%, #fff 0, transparent 26%), var(--cream);
  border: 1px solid #f1e6de;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.product-panel::before {
  position: absolute;
  right: -5%;
  bottom: -70%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(243,106,22,.1);
  border-radius: 50%;
  content: "";
}

.product-visual {
  position: relative;
  display: flex;
  min-height: 370px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-visual::before {
  position: absolute;
  bottom: -34%;
  left: -22%;
  width: 330px;
  height: 260px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.product-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 40px 30px;
}

.product-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
}

.product-copy h2 span {
  display: block;
  color: var(--orange);
}

.product-copy p:not(.eyebrow) {
  margin-bottom: 24px;
  font-size: .92rem;
}

.benefits-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 22px 22px 22px 0;
}

.benefit-card {
  display: flex;
  min-height: 150px;
  align-items: center;
  gap: 13px;
  padding: 20px 16px;
  background: rgba(255,255,255,.91);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: calc(var(--radius-card) - 6px);
  box-shadow: 0 8px 20px rgba(63,39,29,.04);
  transition: transform .3s var(--ease-fluid), box-shadow .3s var(--ease-fluid), border-color .3s ease;
}

.benefit-card:hover {
  border-color: rgba(243, 106, 22, .25);
  box-shadow: 0 14px 32px rgba(63,39,29,.09);
  transform: translateY(-4px);
}

.benefit-card svg {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--orange);
}

.benefit-card h3 {
  margin-bottom: 6px;
  font-size: .95rem;
  letter-spacing: -.015em;
}

.benefit-card p {
  margin-bottom: 0;
  font-size: .74rem;
  line-height: 1.48;
}

/* About */
.about-section {
  padding-block: var(--section-space);
}

.about-grid {
  display: grid;
  grid-template-columns: .83fr 1.17fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.section-copy > p:not(.eyebrow) {
  margin-bottom: 28px;
  line-height: 1.8;
}

.about-visual {
  position: relative;
}

.about-visual::before {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 44%;
  height: 45%;
  border: 2px solid rgba(243,106,22,.18);
  border-radius: var(--radius);
  content: "";
}

.about-visual img {
  position: relative;
  width: 100%;
  min-height: 385px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .55s var(--ease-fluid), box-shadow .55s ease;
}

.about-visual:hover img {
  transform: scale(1.025);
  box-shadow: 0 30px 76px rgba(67, 44, 31, .16);
}

.years-badge {
  position: absolute;
  right: -22px;
  bottom: 54px;
  display: flex;
  width: 148px;
  min-height: 148px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 16px;
  color: #fff;
  background: linear-gradient(145deg, var(--orange), #f98a21);
  border: 5px solid rgba(255,255,255,.9);
  border-radius: 20px;
  box-shadow: 0 17px 34px rgba(207,79,8,.28);
  text-align: center;
}

.years-badge strong {
  font-size: 2.65rem;
  line-height: .9;
}

.years-badge span {
  margin: 3px 0 5px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.years-badge small {
  font-size: .67rem;
  font-weight: 700;
  line-height: 1.25;
}

/* Company timeline */
.company-timeline-section {
  overflow: hidden;
  background: linear-gradient(180deg, #fffaf6 0%, #fff 100%);
}

.company-timeline {
  position: relative;
  display: grid;
  margin: 48px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  list-style: none;
}

.company-timeline::before {
  position: absolute;
  top: 57px;
  right: 15%;
  left: 15%;
  height: 3px;
  background: linear-gradient(90deg, rgba(243,106,22,.18), var(--orange), rgba(243,106,22,.18));
  border-radius: 99px;
  content: "";
}

.timeline-item {
  position: relative;
  padding-top: 88px;
}

.timeline-item::before {
  position: absolute;
  z-index: 2;
  top: 47px;
  left: 50%;
  width: 23px;
  height: 23px;
  background: #fff;
  border: 6px solid var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(243,106,22,.12);
  content: "";
  transform: translateX(-50%) scale(.72);
  transition: transform .45s var(--ease-spring), box-shadow .45s ease;
}

.timeline-item.is-visible::before {
  box-shadow: 0 0 0 10px rgba(243,106,22,.14);
  transform: translateX(-50%) scale(1);
}

.timeline-year {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-grid;
  min-width: 78px;
  min-height: 34px;
  padding: 6px 13px;
  place-items: center;
  color: #fff;
  background: var(--gradient-accent);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(207,79,8,.2);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
  transform: translateX(-50%);
}

.timeline-card {
  height: 100%;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(243,106,22,.16);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.timeline-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.3;
}

.timeline-copy p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
}

/* Institutional Highlights */
.institutional-highlights {
  padding-block: var(--section-space);
  background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.highlight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 34px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(243, 106, 22, .12);
  border-radius: var(--radius-card);
  box-shadow: 0 14px 38px rgba(63, 39, 29, .07);
  transition: transform .35s var(--ease-fluid), box-shadow .35s var(--ease-fluid), border-color .35s ease;
}

.highlight-card:hover {
  border-color: rgba(243, 106, 22, .3);
  box-shadow: 0 24px 56px rgba(63, 39, 29, .14);
  transform: translateY(-7px);
}

.highlight-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: #fff;
  background: var(--gradient-accent);
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(207, 79, 8, .28);
}

.highlight-icon svg {
  width: 30px;
  height: 30px;
}

.highlight-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.3;
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
}

/* Quality */
.quality-section {
  padding-top: 40px;
  padding-bottom: 52px;
}

.anchor-offset {
  position: absolute;
  top: -110px;
}

.quality-panel {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3.5vw, 2.5rem);
  background: linear-gradient(120deg, #fffdfa, #faf3ed);
  border: 1px solid #f2e7df;
  border-radius: var(--radius-card);
  box-shadow: 0 14px 40px rgba(63, 39, 29, .045);
}

.quality-panel .section-heading {
  margin-bottom: 34px;
}

.quality-panel h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.contact-topics .quality-grid {
  width: min(100%, 1040px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-inline: auto;
}

.quality-card {
  position: relative;
  padding: 12px 16px 16px;
  text-align: center;
  border-radius: 14px;
  transition: background-color .3s ease, transform .3s var(--ease-fluid), box-shadow .3s ease;
}

.quality-card:hover {
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 34px rgba(63, 39, 29, .08);
  transform: translateY(-3px);
}

.quality-card + .quality-card::before {
  position: absolute;
  top: 8px;
  bottom: 12px;
  left: 0;
  width: 1px;
  background: #dfd2c9;
  content: "";
}

.quality-card svg {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  color: var(--orange);
  stroke-width: 1.55;
}

.quality-card h3 {
  min-height: 2.3em;
  margin-bottom: 8px;
  font-size: .9rem;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.quality-card p {
  margin-bottom: 0;
  font-size: .72rem;
  line-height: 1.5;
}

/* Process */
.process-section {
  padding-block: var(--section-space);
}

.process-section .section-heading {
  margin-bottom: 34px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.process-card {
  position: relative;
  overflow: visible;
  background: #fff;
  border: 1px solid rgba(243,106,22,.13);
  border-radius: var(--radius-card);
  box-shadow: 0 14px 36px rgba(63,39,29,.08);
  transition: transform .32s var(--ease-fluid), box-shadow .32s ease, border-color .32s ease;
}

.process-card:hover {
  border-color: rgba(243,106,22,.3);
  box-shadow: 0 22px 48px rgba(63,39,29,.14);
  transform: translateY(-5px);
}

.process-card:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 105px;
  right: -25px;
  color: var(--orange);
  content: "→";
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  transition: transform .3s var(--ease-fluid), color .3s ease;
}

.process-card:hover:not(:last-child)::after {
  color: var(--orange-dark);
  transform: translateX(4px);
}

.process-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: calc(var(--radius-card) - 1px) calc(var(--radius-card) - 1px) 0 0;
}

.process-image img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  transition: transform .55s var(--ease-fluid);
}

.process-card:hover .process-image img {
  transform: scale(1.06);
}

.process-icon-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  background: rgba(243,106,22,.94);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(92,30,4,.28);
  backdrop-filter: blur(5px);
}

.process-icon-badge svg {
  width: 22px;
  height: 22px;
}

.process-card-body {
  display: grid;
  min-height: 150px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 24px 20px 25px;
}

.process-index {
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
}

.process-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.3;
}

.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.6;
}

/* Home editorial */
.home-editorial {
  background: linear-gradient(180deg, #fffaf6 0%, #fff 100%);
}

.home-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.home-editorial-image {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px 30px 30px 8px;
  box-shadow: 0 24px 58px rgba(63, 39, 29, .16);
}

.home-editorial-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 45%, rgba(47, 37, 48, .38));
  content: "";
}

.home-editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  transition: transform .7s var(--ease-fluid);
}

.home-editorial-image:hover img {
  transform: scale(1.04);
}

.home-editorial-stamp {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 92px;
  height: 92px;
  place-content: center;
  color: #fff;
  background: var(--orange);
  border: 4px solid rgba(255,255,255,.85);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(63,39,29,.2);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transform: rotate(-8deg);
}

.home-editorial-stamp small {
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.home-editorial .home-content {
  max-width: 600px;
  margin: 0;
}

.home-editorial .home-content h2 {
  max-width: 520px;
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.03;
}

.home-editorial .home-content p {
  max-width: 570px;
  font-size: 1rem;
  line-height: 1.8;
}

.home-editorial .text-button {
  margin-top: 18px;
}

/* Stats */
.stats-band,
.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(110deg, var(--orange-dark), var(--orange) 54%, #ff8129);
}

.stats-band::before,
.final-cta::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(110deg, rgba(91,25,0,.12), transparent 40%, rgba(255,255,255,.06)),
    repeating-radial-gradient(ellipse at 0 100%, transparent 0 31px, rgba(255,255,255,.11) 32px 34px, transparent 35px 64px);
  background-size: auto, 142px 62px;
  content: "";
  opacity: .65;
}

.stats-band::after,
.final-cta::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, .16) 50%, transparent 58%);
  transform: translateX(-100%);
  animation: band-shine 7.5s ease-in-out infinite;
  content: "";
  pointer-events: none;
}

@keyframes band-shine {
  0%, 18% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

.stats-grid {
  display: grid;
  min-height: 164px;
  grid-template-columns: 1.28fr repeat(4, minmax(0, 1fr));
  align-items: center;
}

.stat-item {
  position: relative;
  display: grid;
  min-height: 112px;
  align-items: center;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 20px;
}

.stat-item-featured {
  margin-right: 10px;
  padding-inline: 24px;
  background: rgba(118,34,0,.2);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  box-shadow: inset 0 1px rgba(255,255,255,.1);
}

.stat-item + .stat-item::before {
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: 0;
  width: 1px;
  background: rgba(255,255,255,.45);
  content: "";
}

.stat-item svg {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  stroke-width: 1.5;
}

.stat-item p {
  margin-bottom: 0;
  color: #fff;
  font-size: .8rem;
  line-height: 1.35;
}

.stat-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.02rem;
  line-height: 1.18;
}

.stat-item p span {
  display: block;
  opacity: .86;
}

.stat-item:first-child strong {
  font-size: 1.75rem;
  background: linear-gradient(120deg, #fff, #ffd9bf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Projects */
.projects-section {
  background: #fdfaf7;
}

.projects-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.projects-heading h2 {
  margin-bottom: 0;
}

.projects-heading .text-button {
  flex: 0 0 auto;
  margin-bottom: 3px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.projects-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-card) - 3px);
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease-fluid), box-shadow .35s ease;
}

.projects-grid figure::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(35, 24, 27, .5));
  opacity: 0;
  transition: opacity .35s ease;
  content: "";
  pointer-events: none;
}

.projects-grid figure:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.projects-grid img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  transition: transform .6s var(--ease-fluid);
}

.projects-grid figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 45px 16px 15px;
  color: #fff;
  background: linear-gradient(transparent, rgba(35,24,27,.78));
  font-size: .83rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}

.projects-grid figure:hover::before {
  opacity: 1;
}

.projects-grid figure:hover img {
  transform: scale(1.08) rotate(.4deg);
}

.projects-grid figure:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .projects-grid figcaption {
    opacity: 1;
    transform: none;
  }
}

/* CTA */
.final-cta {
  margin-top: 6px;
}

.cta-inner {
  display: grid;
  min-height: 164px;
  grid-template-columns: 1.3fr .72fr auto;
  align-items: center;
  gap: 36px;
  padding-top: 26px;
  padding-bottom: 26px;
}

.cta-inner h2 {
  max-width: 550px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.cta-inner p {
  margin-bottom: 0;
  color: rgba(255,255,255,.92);
  font-weight: 650;
  line-height: 1.55;
}

.cta-inner .button-row {
  flex-wrap: nowrap;
}

.button-light {
  color: var(--orange-dark);
  background: #fff;
  box-shadow: 0 10px 23px rgba(112,39,0,.18);
}

.button-whatsapp-light {
  color: var(--whatsapp);
  background: #fff;
  box-shadow: 0 10px 23px rgba(112,39,0,.18);
}

/* Footer */
.site-footer {
  padding-top: clamp(3.5rem, 6vw, 5rem);
  color: var(--ink);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr 1fr .55fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 38px;
}

.footer-brand img {
  width: 142px;
  height: 104px;
  margin: -18px 0 3px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.footer-brand p {
  max-width: 330px;
  margin-bottom: 0;
  font-size: .78rem;
  line-height: 1.6;
}

.site-footer h2 {
  margin-bottom: 19px;
  color: var(--ink);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 25px;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  color: var(--muted);
  font-size: .77rem;
  line-height: 1.45;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--orange-dark);
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 10px;
}

.footer-contact a:first-of-type {
  color: var(--orange-dark);
  font-size: 1rem;
  font-weight: 800;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--orange);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  color: var(--orange-dark);
  border: 1px solid rgba(243,106,22,.4);
  border-radius: 50%;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.social-links a:hover {
  color: #fff;
  background: var(--orange);
  transform: translateY(-2px);
}

.social-links svg {
  width: 17px;
  height: 17px;
}

/* Google Maps */
.map-embed {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #f4eee9;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-map {
  padding-bottom: 32px;
}

.map-embed-footer {
  height: 220px;
  border-radius: 18px;
}

.map-open-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: var(--orange-dark);
  font-size: .78rem;
  font-weight: 800;
}

.map-open-link:hover {
  color: var(--orange);
}

.contact-map {
  margin-top: 30px;
}

.contact-map-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.contact-map-heading h2 {
  margin: 6px 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.contact-map-heading p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.contact-map-heading .map-open-link {
  flex: 0 0 auto;
  margin: 0 0 5px;
}

.map-embed-contact {
  height: clamp(320px, 44vw, 470px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 17px;
  padding-bottom: 19px;
  border-top: 1px solid var(--line);
}

.footer-bottom p,
.footer-bottom a {
  margin-bottom: 0;
  color: #8b8186;
  font-size: .7rem;
}

.footer-credit {
  text-align: center;
}

.footer-bottom a:hover {
  color: var(--orange-dark);
}

/* Reveal animation */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8.5rem) 0 clamp(4.5rem, 7vw, 6.5rem);
  background:
    radial-gradient(900px 420px at 88% -10%, rgba(255, 129, 41, .16), transparent 62%),
    radial-gradient(700px 380px at -8% 108%, rgba(243, 106, 22, .08), transparent 58%),
    linear-gradient(120deg, #fff 0%, #fff8f2 58%, #fce4d3 100%);
}

.page-hero::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--gradient-accent);
  opacity: .85;
  content: "";
}

.page-hero::after {
  position: absolute;
  right: -8%;
  bottom: -140px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(243, 106, 22, .18);
  border-radius: 50%;
  content: '';
  animation: ring-spin 52s linear infinite;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: min(820px, var(--content-readable));
}

.js .page-hero .container > * {
  animation: hero-rise .7s var(--ease-fluid) both;
}

.js .page-hero .container > *:nth-child(2) { animation-delay: .09s; }
.js .page-hero .container > *:nth-child(3) { animation-delay: .18s; }
.js .page-hero .container > *:nth-child(4) { animation-delay: .27s; }
.js .page-hero .container > *:nth-child(5) { animation-delay: .36s; }

.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(243, 106, 22, .22);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(207, 79, 8, .08);
}

.page-hero .eyebrow::before {
  width: 8px;
  height: 8px;
  background: var(--gradient-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(243, 106, 22, .15);
  content: "";
}

.page-hero h1 {
  position: relative;
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  text-wrap: balance;
}

.page-hero h1::after {
  display: block;
  width: 84px;
  height: 5px;
  margin-top: 18px;
  background: var(--gradient-accent);
  border-radius: 99px;
  content: "";
}

.page-hero p {
  max-width: 670px;
  margin-bottom: 0;
  font-size: 1.06rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-bottom: 18px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(243, 106, 22, .25);
  border-radius: 999px;
  transition: color .2s ease, background-color .2s ease, transform .22s var(--ease-fluid), box-shadow .22s ease;
}

.back-link:hover {
  color: #fff;
  background: var(--orange);
  transform: translateX(-3px);
  box-shadow: 0 8px 20px rgba(243, 106, 22, .25);
}

.article-hero {
  padding-top: clamp(4.5rem, 7vw, 6.5rem);
}

.article-hero small {
  display: inline-block;
  margin-top: 14px;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 650;
}

.institutional-page {
  border-bottom: 1px solid rgba(243, 106, 22, .12);
}

.page-hero-institutional {
  background:
    linear-gradient(120deg, rgba(47,37,48,.82) 0%, rgba(47,37,48,.62) 45%, rgba(207,79,8,.35) 100%),
    url("../images/oficiais/cliente-01-hd.webp") center 56%/cover no-repeat;
}

.page-hero-blog {
  background:
    linear-gradient(120deg, rgba(47,37,48,.82) 0%, rgba(47,37,48,.62) 45%, rgba(207,79,8,.35) 100%),
    url("../images/pagina-blog.webp") center/cover no-repeat;
}

.page-hero-contact {
  background:
    linear-gradient(120deg, rgba(47,37,48,.86) 0%, rgba(47,37,48,.62) 46%, rgba(207,79,8,.25) 100%),
    url("../images/oficiais/cliente-06-hd.webp") center 52%/cover no-repeat;
}

.contact-hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.page-hero-contact::after {
  z-index: 1;
  inset: 0;
  width: auto;
  height: auto;
  background: linear-gradient(120deg, rgba(47,37,48,.88) 0%, rgba(47,37,48,.66) 48%, rgba(207,79,8,.28) 100%);
  border: 0;
  border-radius: 0;
  animation: none;
}

.page-hero-products {
  background:
    linear-gradient(120deg, rgba(47,37,48,.82) 0%, rgba(47,37,48,.62) 45%, rgba(207,79,8,.35) 100%),
    url("../images/pagina-produtos.webp") center/cover no-repeat;
}

.page-hero-services {
  background:
    linear-gradient(120deg, rgba(47,37,48,.82) 0%, rgba(47,37,48,.62) 45%, rgba(207,79,8,.35) 100%),
    url("../images/pagina-servicos.webp") center/cover no-repeat;
}

.page-hero-institutional .container,
.page-hero-blog .container,
.page-hero-contact .container,
.page-hero-products .container,
.page-hero-services .container {
  position: relative;
  z-index: 2;
}

.page-hero-institutional .eyebrow,
.page-hero-blog .eyebrow,
.page-hero-contact .eyebrow,
.page-hero-products .eyebrow,
.page-hero-services .eyebrow {
  color: #ffd8c0;
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .28);
}

.page-hero-institutional h1,
.page-hero-blog h1,
.page-hero-contact h1,
.page-hero-products h1,
.page-hero-services h1 {
  color: #fff;
  text-shadow: 0 4px 22px rgba(0, 0, 0, .25);
}

.page-hero-institutional h1::after,
.page-hero-blog h1::after,
.page-hero-contact h1::after,
.page-hero-products h1::after,
.page-hero-services h1::after {
  background: var(--gradient-accent);
}

.page-hero-institutional p,
.page-hero-blog p,
.page-hero-contact p,
.page-hero-products p,
.page-hero-services p {
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .2);
}

.prose-grid {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 54px;
}

.prose-grid:has(.prose:only-child) {
  grid-template-columns: minmax(0, 780px);
}

.page-image,
.article-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rich-content h2,
.rich-content h3 {
  margin-top: 1.5em;
}

.rich-content p,
.rich-content li {
  font-size: 1rem;
  line-height: 1.8;
}

.rich-content a,
.back-link {
  color: var(--orange-dark);
  font-weight: 800;
}

.rich-content ul,
.rich-content ol {
  padding-left: 1.25rem;
}

.isoppo-contact {
  padding-top: 72px;
  background: #fdf9f5;
}

.isoppo-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 30px;
}

.motion-card {
  transition: transform .3s var(--ease-fluid), box-shadow .3s var(--ease-fluid);
}

.motion-card:hover {
  transform: translateY(-4px);
}

.contact-intro,
.contact-form {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid #f0e1d7;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.contact-intro {
  color: #fff;
  background: linear-gradient(145deg, var(--ink), #56444e);
}

.contact-intro h2,
.contact-intro p,
.contact-intro dt,
.contact-intro dd,
.contact-intro a {
  color: #fff;
}

.contact-intro p {
  color: rgba(255, 255, 255, .8);
}

.contact-details {
  display: grid;
  gap: 18px;
  margin: 32px 0 0;
}

.contact-details div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.contact-details dt {
  margin-bottom: 3px;
  color: #ffc69d;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 9px;
  background: #fff;
}

.form-heading {
  margin-bottom: 10px;
}

.form-heading .eyebrow {
  margin-bottom: 8px;
}

.form-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.contact-form label {
  margin-top: 8px;
  color: var(--ink);
  font-size: .84rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: #fffdfb;
  border: 1px solid #e7d7cd;
  border-radius: var(--radius-control);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s var(--ease-fluid);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(243, 106, 22, .12);
}

.contact-form textarea {
  resize: vertical;
}

.contact-success-modal {
  width: min(92vw, 520px);
  max-width: none;
  margin: auto;
  padding: 0;
  overflow: visible;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 28px;
}

.contact-success-modal::backdrop {
  background: rgba(29, 20, 14, .72);
  backdrop-filter: blur(6px);
}

.contact-success-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: clamp(32px, 7vw, 52px);
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(190, 84, 28, .18);
  border-radius: inherit;
  box-shadow: 0 28px 80px rgba(59, 34, 19, .26);
}

.contact-success-card h2,
.contact-success-card p {
  margin: 0;
}

.contact-success-card p {
  max-width: 38ch;
  color: var(--muted);
}

.contact-success-icon {
  display: grid;
  width: 62px;
  height: 62px;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  place-items: center;
}

.contact-success-icon svg {
  width: 30px;
  height: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid > div {
  display: grid;
  gap: 9px;
}

.contact-form .button {
  justify-self: start;
  margin-top: 14px;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.content-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0e4dc;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease-fluid), box-shadow .35s var(--ease-fluid), border-color .35s ease;
}

.content-card::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-fluid);
  content: "";
}

.content-card:hover {
  border-color: rgba(243, 106, 22, .3);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.content-card:hover::before {
  transform: scaleX(1);
}

.content-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform .6s var(--ease-fluid), filter .6s ease;
}

.content-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.08);
}

.content-card > div {
  padding: 25px;
}

.content-card small {
  color: var(--orange-dark);
  font-weight: 800;
}

.content-card h2 {
  margin: 10px 0;
  font-size: 1.5rem;
}

.content-card p {
  font-size: .9rem;
}

.content-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange-dark);
  font-weight: 800;
}

.content-card a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s var(--ease-fluid);
}

.content-card a:hover span {
  transform: translateX(4px);
}

/* Testimonials and clients */
.testimonials-section {
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fff8f2 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  position: relative;
  display: grid;
  min-height: 290px;
  align-content: space-between;
  gap: 25px;
  padding: clamp(1.5rem, 3vw, 2rem);
  overflow: hidden;
  border: 1px solid #f0e2d8;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.testimonial-card::after {
  position: absolute;
  top: 14px;
  right: 22px;
  color: rgba(243, 106, 22, .12);
  content: "“";
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
}

.testimonial-rating { position: relative; z-index: 1; color: var(--orange); font-size: 1rem; letter-spacing: .16em; }
.testimonial-card blockquote { position: relative; z-index: 1; margin: 0; color: var(--ink); font-size: 1.04rem; line-height: 1.72; }
.testimonial-card blockquote p { margin: 0; color: inherit; }
.testimonial-card footer { display: flex; align-items: center; gap: 13px; }
.testimonial-card footer img { width: 48px; height: 48px; flex: 0 0 auto; border: 2px solid var(--orange-soft); border-radius: 50%; object-fit: cover; }
.testimonial-card footer strong, .testimonial-card footer span { display: block; }
.testimonial-card footer strong { font-size: .96rem; }
.testimonial-card footer span { margin-top: 2px; color: var(--muted); font-size: .78rem; }

.clients-section {
  padding-block: clamp(3rem, 5vw, 4.5rem);
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #fff;
}

.clients-heading { margin-bottom: 26px; }
.clients-heading h2 { max-width: 680px; margin-bottom: 0; font-size: clamp(1.75rem, 3vw, 2.65rem); }
.client-marquee-viewport { overflow: hidden; }
.clients-section[data-client-marquee] .client-marquee-viewport { mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.client-marquee-track { display: flex; width: 100%; justify-content: center; }
.clients-section[data-client-marquee] .client-marquee-track { width: max-content; justify-content: flex-start; animation: client-marquee-scroll 34s linear infinite; }
.client-marquee-viewport:hover .client-marquee-track,
.client-marquee-viewport:focus-within .client-marquee-track { animation-play-state: paused; }
.client-marquee-sequence { display: flex; align-items: stretch; gap: 18px; padding-right: 18px; }
.clients-section:not([data-client-marquee]) .client-marquee-sequence { width: 100%; flex-wrap: wrap; justify-content: center; padding-right: 0; }
.client-marquee-item {
  display: grid;
  width: 190px;
  min-height: 94px;
  place-items: center;
  padding: 17px 22px;
  border: 1px solid #eee2da;
  border-radius: 16px;
  background: #fffaf6;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.client-marquee-item:hover,
.client-marquee-item:focus-visible { border-color: rgba(243, 106, 22, .45); box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.client-marquee-item:focus-visible { outline: 3px solid rgba(243, 106, 22, .2); outline-offset: 2px; }
.client-marquee-item img { width: auto; max-width: 145px; max-height: 58px; object-fit: contain; }
.client-marquee-item strong { color: var(--ink); text-align: center; }

@keyframes client-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.empty-state {
  max-width: 620px;
  margin: 0 auto;
  padding: 48px;
  background: #fffaf6;
  border: 1px dashed #e3cbb9;
  border-radius: var(--radius);
  text-align: center;
}

.catalog-intro,
.editorial-intro,
.home-editorial,
.latest-posts {
  background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.editorial-intro {
  overflow: hidden;
}

.editorial-intro-shell {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: clamp(2.25rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(243,106,22,.15);
  border-radius: 30px 30px 30px 8px;
  box-shadow: 0 24px 64px rgba(63,39,29,.1);
}

.editorial-intro-shell::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  background: var(--gradient-accent);
  content: "";
}

.editorial-intro-main {
  max-width: 700px;
}

.editorial-intro-rule {
  display: block;
  width: 72px;
  height: 4px;
  margin: 16px 0 24px;
  background: var(--gradient-accent);
  border-radius: 99px;
}

.editorial-intro-main h2 {
  max-width: 690px;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.02;
  text-wrap: balance;
}

.editorial-intro-copy p,
.editorial-intro-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.editorial-intro-notes {
  display: grid;
  gap: 16px;
}

.editorial-intro-notes article {
  position: relative;
  padding: 28px;
  background: #fff7f1;
  border: 1px solid rgba(243,106,22,.18);
  border-radius: 20px;
}

.editorial-intro-notes article > span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.editorial-intro-notes h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  line-height: 1.25;
}

.editorial-intro-signature {
  display: grid;
  min-height: 260px;
  place-content: center;
  color: var(--orange);
  background: linear-gradient(145deg, #fff7f1, #fff);
  border: 1px solid rgba(243,106,22,.17);
  border-radius: 24px;
  text-align: center;
}

.editorial-intro-signature svg {
  width: 112px;
  margin: 0 auto 22px;
  stroke-width: 3;
}

.editorial-intro-signature span {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.5;
}

.blog-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  min-height: 500px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--orange-dark));
  border-radius: calc(var(--radius-card) + 4px);
  box-shadow: var(--shadow);
}

.blog-feature-image {
  min-height: 100%;
  overflow: hidden;
}

.blog-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.75,.2,1);
}

.blog-feature:hover .blog-feature-image img {
  transform: scale(1.035);
}

.blog-feature-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(40px, 6vw, 78px);
}

.blog-feature-copy .eyebrow,
.blog-feature-copy .text-button {
  color: #ffd8c0;
}

.blog-feature-copy small {
  margin: 8px 0 16px;
  color: rgba(255,255,255,.72);
}

.blog-feature-copy h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1.05;
}

.blog-feature-copy p {
  color: rgba(255,255,255,.82);
}

.detail-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: clamp(2.75rem, 7vw, 5.75rem);
}

.detail-visual {
  position: relative;
  min-height: 500px;
  padding: 28px 28px 0 0;
}

.detail-visual::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 74%;
  height: 74%;
  content: "";
  background: #f4dfd0;
  border-radius: 24px;
}

.detail-visual .page-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.detail-seal {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: -22px;
  display: grid;
  place-content: center;
  width: 150px;
  height: 150px;
  padding: 18px;
  color: #fff;
  background: var(--orange);
  border: 8px solid #fff;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.detail-seal small {
  display: block;
  margin-top: 7px;
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 700;
  line-height: 1.25;
}

.detail-benefits .quality-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quality-card small {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-visual {
  margin: 0 0 50px;
}

.article-visual figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: .78rem;
  text-align: center;
}

.article-body {
  max-width: 900px;
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
}

.article-body .prose {
  counter-reset: article-section;
  max-width: 780px;
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 3.2rem);
  background: linear-gradient(145deg, #fff 0%, #fffaf6 100%);
  border: 1px solid rgba(243, 106, 22, .12);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(63, 39, 29, .07);
}

.article-body .prose h2 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  line-height: 1.15;
}

.article-body .prose h2:not(:first-child) {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.article-body .prose h2::before {
  counter-increment: article-section;
  content: counter(article-section, decimal-leading-zero);
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  color: #fff;
  background: var(--gradient-accent);
  border-radius: 12px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.article-body .prose p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.85;
}

.button-outline-light {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,.55);
}

.button-outline-light:hover {
  color: var(--orange-dark);
  background: #fff;
}

@keyframes hero-float {
  0%, 100% { transform: scale(1) translate3d(0, 0, 0); }
  50% { transform: scale(1.025) translate3d(-.7%, .5%, 0); }
}

@keyframes hero-zoom {
  from { transform: scale(1.09); opacity: .4; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes glow-breathe {
  0%, 100% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.18); opacity: 1; }
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(243, 106, 22, .15); }
  50% { box-shadow: 0 0 0 7px rgba(243, 106, 22, .07); }
}

@keyframes rule-grow {
  from { width: 0; opacity: 0; }
  to { width: 96px; opacity: 1; }
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes header-drop {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes nav-drop {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fab-enter {
  from { opacity: 0; transform: translateY(24px) scale(.7); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fab-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .45); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes shine-sweep {
  from { transform: translateX(-130%) skewX(-12deg); }
  to { transform: translateX(230%) skewX(-12deg); }
}

.js .site-header .brand,
.js .main-nav > * {
  animation: nav-drop .5s var(--ease-fluid) both;
}

.js .main-nav > *:nth-child(1) { animation-delay: .06s; }
.js .main-nav > *:nth-child(2) { animation-delay: .11s; }
.js .main-nav > *:nth-child(3) { animation-delay: .16s; }
.js .main-nav > *:nth-child(4) { animation-delay: .21s; }
.js .main-nav > *:nth-child(5) { animation-delay: .26s; }
.js .main-nav > *:nth-child(6) { animation-delay: .31s; }
.js .main-nav > *:nth-child(7) { animation-delay: .36s; }
.js .main-nav > *:nth-child(8) { animation-delay: .41s; }

/* WhatsApp floating button */
.whatsapp-fab {
  position: fixed;
  z-index: 1500;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  gap: 0;
  padding: 0;
  color: #fff;
  background: linear-gradient(140deg, #2ee06f 0%, #25d366 45%, #1eb857 100%);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(30, 184, 87, .42);
  font-size: .88rem;
  font-weight: 800;
  animation: fab-enter .55s var(--ease-spring) .8s both, fab-pulse 2.6s ease-out 1.6s infinite;
  transition: transform .25s var(--ease-spring), box-shadow .25s ease;
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.whatsapp-fab-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, .55);
  border-radius: inherit;
  animation: fab-ring 2.6s ease-out infinite;
  pointer-events: none;
}

@keyframes fab-ring {
  0% { transform: scale(1); opacity: .7; }
  70%, 100% { transform: scale(1.35); opacity: 0; }
}

.whatsapp-fab-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width .38s var(--ease-fluid), opacity .3s ease;
  opacity: 0;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  width: 166px;
  gap: 12px;
  padding-inline: 18px;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 44px rgba(30, 184, 87, .55);
}

.whatsapp-fab:hover .whatsapp-fab-label,
.whatsapp-fab:focus-visible .whatsapp-fab-label {
  max-width: 130px;
  opacity: 1;
}

@media (max-width: 640px) {
  .whatsapp-fab-label {
    display: none;
  }

  .whatsapp-fab {
    padding: 0;
    width: 58px;
    height: 58px;
    gap: 0;
    justify-content: center;
  }

  .whatsapp-fab:hover,
  .whatsapp-fab:focus-visible {
    width: 58px;
    gap: 0;
    padding: 0;
  }
}

/* Footer legal */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
}

.footer-legal a {
  position: relative;
  color: #8b8186;
  font-size: .7rem;
  transition: color .2s ease;
}

.footer-legal a:hover {
  color: var(--orange-dark);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px) scale(.985);
  filter: blur(5px);
  transition: opacity .65s ease, transform .65s var(--ease-fluid), filter .65s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Tablet */
@media (max-width: 1120px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(calc(100% - clamp(2rem, 5vw, 3rem)), var(--content-wide));
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav > a:not(.button) {
    font-size: .82rem;
  }

  .nav-whatsapp {
    padding-inline: 14px;
  }

  .hero,
  .hero-inner {
    min-height: 600px;
  }

  .home-editorial-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-editorial-image,
  .home-editorial-image img {
    min-height: min(76vw, 390px);
  }

  .hero-copy {
    width: 52%;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 6.1vw, 4.5rem);
  }

  .hero-trust {
    width: 100%;
  }

  .marquee-shell {
    gap: 18px;
    min-height: 62px;
  }

  .marquee-label {
    font-size: .65rem;
  }

  .product-panel {
    grid-template-columns: .9fr 1fr;
  }

  .product-visual {
    grid-row: 1 / span 2;
  }

  .product-copy {
    padding: 30px 30px 12px;
  }

  .benefits-grid {
    padding: 10px 22px 22px 30px;
  }

  .benefit-card {
    min-height: 120px;
  }

  .quality-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 30px;
  }

  .quality-card:nth-child(4)::before {
    display: none;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 34px;
  }

  .process-card:nth-child(2)::after {
    display: none;
  }

  .stats-grid {
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .stat-item-featured {
    grid-column: 1 / -1;
    margin: 0 18px 8px;
  }

  .stat-item + .stat-item::before {
    display: none;
  }

  .stat-item:not(.stat-item-featured) {
    border-top: 1px solid rgba(255,255,255,.28);
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner {
    grid-template-columns: 1fr 1fr;
  }

  .cta-inner .button-row {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.2fr .8fr 1fr;
  }

  .footer-social {
    grid-column: 3;
  }
}

@media (max-width: 900px) {
  .brand {
    width: 126px;
    height: 66px;
  }

  .brand img {
    width: 120px;
    height: 62px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 16px;
    padding: 0 0 18px;
  }

  .main-nav > a:not(.button) {
    padding: 8px 4px;
  }

  .nav-whatsapp {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .js .header-inner {
    flex-wrap: nowrap;
  }

  .js .main-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    display: flex;
    width: min(360px, 88vw);
    height: 100vh;
    height: 100dvh;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    padding: 112px 28px 32px;
    background: #fff;
    box-shadow: -15px 0 35px rgba(47,37,48,.14);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: clip-path .28s var(--ease-fluid), opacity .22s ease, visibility .28s ease;
  }

  .js .main-nav::before {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 100%;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(47,37,48,.35);
    content: "";
  }

  .js .main-nav.is-open {
    clip-path: inset(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .js .main-nav > a:not(.button) {
    min-height: 44px;
    padding: 12px 4px;
    font-size: 1rem;
  }

  .js .nav-dropdown {
    width: 100%;
  }

  .js .nav-dropdown > summary {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 28px 12px 4px;
    font-size: 1rem;
  }

  .js .nav-dropdown-menu {
    position: static;
    min-width: 0;
    max-height: none;
    margin: 0 0 6px 8px;
    padding: 4px 0 4px 12px;
    border: 0;
    border-left: 2px solid var(--orange-soft);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .js .nav-whatsapp {
    align-self: flex-start;
    margin-top: 10px;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero::before {
    width: 78%;
  }

  .hero-slider {
    width: 73%;
  }

  .hero-slide img {
    object-position: 58% center;
  }

  .hero-copy {
    width: 58%;
  }

  .hero-trust {
    width: 100%;
  }

  .hero-showcase {
    right: clamp(10px, 3vw, 40px);
    bottom: clamp(120px, 18vh, 190px);
    width: min(30vw, 320px);
  }

  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .about-visual img {
    min-height: 430px;
  }

  .years-badge {
    right: -10px;
    bottom: 30px;
  }

  .company-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 76px;
  }

  .company-timeline::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 28px;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, rgba(243,106,22,.18), var(--orange), rgba(243,106,22,.18));
  }

  .timeline-item {
    padding-top: 0;
  }

  .timeline-item::before {
    top: 9px;
    left: -48px;
    transform: translateX(-50%) scale(.72);
  }

  .timeline-item.is-visible::before {
    transform: translateX(-50%) scale(1);
  }

  .timeline-year {
    position: static;
    margin-bottom: 12px;
    transform: none;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --header-height: 72px;
  }

  body {
    font-size: 15px;
  }

.trust-item{
  display: block;
}

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: clamp(3.75rem, 14vw, 4.5rem);
  }

  .page-hero {
    padding: 68px 0 54px;
  }

  .prose-grid,
  .isoppo-contact-grid,
  .card-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .isoppo-contact {
    padding-top: 48px;
  }

  .contact-intro,
  .contact-form {
    padding: 26px 20px;
  }

  .contact-map-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .contact-map-heading .map-open-link {
    margin: 0;
  }

  .map-embed-contact {
    height: 320px;
  }

  .map-embed-footer {
    height: 190px;
  }

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

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  .site-header {
    min-height: var(--header-height);
  }

  .brand {
    width: 108px;
    height: 60px;
  }

  .brand img {
    width: 102px;
    height: 56px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero::before {
    top: 0;
    right: 0;
    width: auto;
    height: 180px;
    background: linear-gradient(
    180deg,
    rgba(255,255,255,.92) 0%,
    rgba(255,255,255,.55) 55%,
    transparent 100%
  );
  }

  .hero::after {
    display: none;
  }

  .hero-slider {
    position: relative;
    width: 100%;
    height: min(68vw, 380px);
    margin-top: 0;
  }

  .hero-slider::after {
    position: absolute;
    z-index: 2;
    inset: 0;
    background: linear-gradient(180deg, #fff, transparent 20%);
    content: "";
    pointer-events: none;
  }

  .hero-slide img {
    object-position: 82% center;
  }

  .hero-inner {
    display: block;
    min-height: auto;
    padding-top: 46px;
    padding-bottom: 38px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 380px;
    font-size: clamp(2.7rem, 13vw, 3.65rem);
  }

  .hero-text {
    max-width: 560px;
    font-size: .94rem;
  }

  .hero .button-row,
  .final-cta .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero .button {
    width: 100%;
  }

  .hero-trust {
    position: relative;
    bottom: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 12px;
    width: 100%;
    margin-top: 36px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
  }

  .hero-badges {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
  }

  .hero-showcase {
    display: none;
  }

  .hero-badge {
    padding: 12px 16px;
    border-radius: 14px;
  }

  .hero-badge-years {
    flex-direction: row;
    min-width: 0;
    gap: 10px;
    text-align: left;
  }

  .hero-badge-years strong {
    font-size: 1.55rem;
  }

  .trust-item svg {
    width: 38px;
    height: 38px;
  }

  .product-section {
    padding-top: 38px;
  }

  .product-panel {
    display: block;
  }

  .product-visual {
    min-height: 270px;
  }

  .product-visual img {
    height: 285px;
  }

  .product-copy {
    padding: 34px 24px 24px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    padding: 0 18px 18px;
  }

  .benefit-card {
    min-height: 112px;
  }

  .about-section {
    padding-top: 34px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual img {
    min-height: 0;
    aspect-ratio: 1.25 / 1;
  }

  .about-visual::before {
    right: -8px;
  }

  .years-badge {
    right: -8px;
    bottom: 18px;
    width: 122px;
    min-height: 122px;
  }

  .years-badge strong {
    font-size: 2.1rem;
  }

  .quality-section {
    padding-top: 24px;
  }

  .quality-panel {
    width: min(calc(100% - 20px), var(--container));
    padding: 34px 16px 22px;
  }

  .quality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 0;
  }

  .quality-card {
    padding-inline: 12px;
  }

  .quality-card:nth-child(4)::before {
    display: block;
  }

  .quality-card:nth-child(odd)::before {
    display: none;
  }

  .quality-card h3 {
    min-height: auto;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .process-card:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -38px;
    content: "↓";
    transform: translateX(50%);
  }

  .process-image img {
    height: min(56vw, 260px);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .stat-item-featured {
    grid-column: auto;
    margin: 0 12px 4px;
  }

  .stat-item {
    min-height: 88px;
    padding: 16px 12px;
  }

  .stat-item + .stat-item::before,
  .stat-item:nth-child(4)::before {
    display: block;
    top: 0;
    right: 12px;
    bottom: auto;
    left: 12px;
    width: auto;
    height: 1px;
  }

  .stat-item p {
    font-size: .9rem;
  }

  .projects-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .projects-grid {
    display: flex;
    width: 100%;
    gap: 14px;
    overflow-x: auto;
    padding-right: 16px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--orange) #f1e6de;
  }

  .projects-grid figure {
    min-width: min(82vw, 330px);
    scroll-snap-align: start;
  }

  .projects-grid figcaption {
    opacity: 1;
    transform: none;
  }

  .cta-inner {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    padding-top: 46px;
    padding-bottom: 46px;
    text-align: center;
  }

  .cta-inner .button-row {
    width: 100%;
  }

  .cta-inner .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-social {
    grid-column: auto;
  }

  .footer-brand p {
    max-width: 470px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 410px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.1rem);
  }

  .button {
    padding-inline: 15px;
  }

  .quality-panel {
    width: calc(100% - 16px);
  }

  .quality-card svg {
    width: 45px;
    height: 45px;
  }

  .quality-card p {
    font-size: .69rem;
  }
}

@media (max-width: 900px) {
  .blog-feature,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .blog-feature-image img {
    min-height: 320px;
    max-height: 440px;
  }

  .blog-feature-copy {
    padding: 38px 28px 44px;
  }

  .detail-visual {
    min-height: 390px;
    padding-right: 16px;
  }

  .detail-visual .page-image {
    height: min(66vw, 440px);
  }

  .detail-benefits .quality-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .contact-topics .quality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .contact-topics .quality-grid {
    grid-template-columns: 1fr;
  }

  .blog-feature {
    border-radius: 18px;
  }

  .blog-feature-image img {
    min-height: 250px;
  }

  .detail-visual {
    min-height: 320px;
  }

  .detail-seal {
    right: -4px;
    width: 118px;
    height: 118px;
    border-width: 5px;
    font-size: 1.1rem;
  }
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-intro-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .editorial-intro-signature {
    min-height: 210px;
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: 250px;
  }

  .clients-heading {
    margin-bottom: 22px;
  }

  .client-marquee-item {
    width: 160px;
    min-height: 84px;
    padding: 14px 18px;
  }

  .editorial-intro-shell {
    padding: 34px 24px 28px 28px;
    border-radius: 22px 22px 22px 7px;
  }

  .editorial-intro-main h2 {
    font-size: clamp(2.1rem, 10.5vw, 3rem);
  }

  .editorial-intro-notes article {
    padding: 24px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .hero-glow,
  .hero-rings,
  .whatsapp-fab-ring {
    display: none;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition-delay: 0s !important;
  }

  .js .page-hero .container > *,
  .js .site-header .brand,
  .js .main-nav > * {
    animation: none;
  }

  .client-marquee-track {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
  }

  .client-marquee-sequence {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }

  .client-marquee-sequence[aria-hidden='true'] {
    display: none;
  }
}

/* Manual técnico */
.manual-download-section {
  padding-top: 0;
}

.manual-download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 38px;
  border: 1px solid rgba(47, 37, 48, .10);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(243, 106, 22, .08), rgba(255, 255, 255, .96));
  box-shadow: 0 18px 48px rgba(47, 37, 48, .08);
}

.manual-download-copy {
  max-width: 720px;
}

.manual-download-copy h2 {
  margin: 6px 0 10px;
}

.manual-download-copy p {
  margin: 0;
  color: var(--muted);
}

.manual-download-button {
  flex: 0 0 auto;
  text-align: center;
}

@media (max-width: 820px) {
  .manual-download-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
  }

  .manual-download-button {
    width: 100%;
  }
}

@media (max-width: 768px){
  .hero-slide img{
    object-position: 85% center;
  }
}



/* Legal pages */
.legal-page-hero {
  padding-top: clamp(4.75rem, 8vw, 7rem);
  padding-bottom: clamp(3.75rem, 6vw, 5.5rem);
  background:
    linear-gradient(120deg, rgba(47,37,48,.88) 0%, rgba(47,37,48,.72) 48%, rgba(207,79,8,.42) 100%),
    url("../images/oficiais/cliente-01-hd.webp") center 54%/cover no-repeat;
}

.legal-page-hero .container {
  max-width: min(880px, var(--content-readable));
}

.legal-page-hero .eyebrow,
.legal-page-hero h1,
.legal-page-hero p,
.legal-page-hero small {
  color: #fff;
}

.legal-page-hero .eyebrow {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
}

.legal-page-hero h1::after {
  background: #fff;
}

.legal-page-hero small {
  display: block;
  margin-top: 18px;
  opacity: .78;
  font-size: .78rem;
  font-weight: 650;
}

.legal-section {
  background:
    radial-gradient(700px 340px at 8% 0%, rgba(243,106,22,.06), transparent 66%),
    #fff;
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: calc(var(--header-height, 84px) + 28px);
  padding: 28px;
  background: linear-gradient(145deg, #fff8f2 0%, #fff 100%);
  border: 1px solid rgba(243,106,22,.15);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(47,37,48,.07);
}

.legal-aside h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.legal-aside p {
  color: var(--muted);
  font-size: .92rem;
}

.legal-nav {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.legal-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--menu-color);
  background: #fff;
  border: 1px solid rgba(47,37,48,.1);
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 700;
  transition: color .2s ease, border-color .2s ease, transform .2s ease, background-color .2s ease;
}

.legal-nav a:hover,
.legal-nav a.is-active {
  color: #fff;
  background: var(--gradient-accent);
  border-color: transparent;
  transform: translateX(3px);
}

.legal-content {
  max-width: 820px;
  padding: clamp(1.75rem, 4vw, 3.5rem);
  background: #fff;
  border: 1px solid rgba(47,37,48,.09);
  border-radius: 24px;
  box-shadow: 0 20px 54px rgba(47,37,48,.06);
}

.legal-content > p:first-child {
  color: var(--menu-color);
  font-size: 1.08rem;
  font-weight: 600;
}

.legal-content h2 {
  margin-top: 2.4rem;
  margin-bottom: .85rem;
  color: var(--menu-color);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
}

.legal-content h2::before {
  display: inline-block;
  width: 6px;
  height: 18px;
  margin-right: 10px;
  background: var(--gradient-accent);
  border-radius: 999px;
  content: "";
  vertical-align: -2px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  padding-left: 1.3rem;
}

.legal-content li::marker {
  color: var(--orange);
}

.legal-content a {
  color: var(--orange-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(207,79,8,.25);
  text-underline-offset: 3px;
}

.legal-contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 6px;
  padding: 18px;
  background: #fff8f2;
  border: 1px solid rgba(243,106,22,.18);
  border-radius: 16px;
}

.legal-contact-card p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.legal-contact-card strong {
  color: var(--menu-color);
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .legal-shell { grid-template-columns: 1fr; }
  .legal-aside { position: static; }
  .legal-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-content { max-width: none; }
}

@media (max-width: 640px) {
  .legal-page-hero { padding-top: 3.75rem; padding-bottom: 3.25rem; }
  .legal-aside, .legal-content { padding: 22px 18px; border-radius: 18px; }
  .legal-nav, .legal-contact-card { grid-template-columns: 1fr; }
  .legal-content h2 { margin-top: 2rem; }
}
