:root {
  --navy-950: #061f33;
  --navy-900: #0b304b;
  --navy-800: #163f5c;
  --navy-700: #315d79;
  --gold-500: #cda85f;
  --gold-400: #e3c580;
  --gold-glow: rgba(227, 197, 128, 0.32);
  --ink: #1e2f3e;
  --muted: #5e6b76;
  --line: #ded7c8;
  --surface: #f4f0e7;
  --white: #ffffff;
  --success: #1f8f5f;
  --shadow-sm: 0 8px 26px rgba(8, 39, 62, 0.08);
  --shadow-lg: 0 24px 70px rgba(8, 39, 62, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
.button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-900);
}

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

.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;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 68px 0;
}

.surface {
  background: var(--surface);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--navy-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--gold-500);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--navy-950);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 45px;
}

.section-heading.narrow {
  display: block;
  max-width: 760px;
}

.section-heading.narrow .lead {
  margin-top: 20px;
}

.space-top-sm {
  margin-top: 22px;
}

.space-top-xs {
  margin-top: 18px;
}

.muted-text {
  color: var(--muted);
}

.center-actions {
  margin-top: 34px;
  text-align: center;
}

.topbar {
  position: relative;
  z-index: 110;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-950);
  font-size: 0.86rem;
}

.topbar::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(227, 197, 128, 0.62), transparent);
}

.topbar-inner {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  white-space: nowrap;
}

.topbar-icon {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 900;
}

.topbar a:hover,
.topbar a:focus-visible {
  color: var(--gold-400);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(223, 194, 138, 0.34);
  background: rgba(8, 39, 62, 0.98);
  box-shadow: 0 5px 25px rgba(8, 39, 62, 0.16);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(223, 194, 138, 0.48);
  background: rgba(8, 39, 62, 0.94);
  box-shadow: 0 14px 42px rgba(8, 39, 62, 0.24);
}

.nav-shell {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.brand-wordmark {
  display: grid;
  color: var(--white);
  font-style: normal;
  line-height: 1;
}

.brand-wordmark strong {
  color: var(--white);
  font-size: 0.93rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.brand-wordmark small {
  margin-top: 7px;
  color: var(--gold-400);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.site-nav a {
  position: relative;
  padding: 27px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav .button {
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid rgba(227, 197, 128, 0.58);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(205, 168, 95, 0.14);
  white-space: nowrap;
}

.site-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold-500);
  transition: transform 180ms ease;
}

.site-nav a[aria-current="page"]::after,
.site-nav a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a[aria-current="page"] {
  color: var(--gold-400);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy-900);
  background: var(--white);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 21px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before {
  position: absolute;
  top: -7px;
}

.nav-toggle-lines::after {
  position: absolute;
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy-800);
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.2;
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::before {
  position: absolute;
  z-index: -1;
  top: -60%;
  left: -45%;
  width: 34%;
  height: 220%;
  content: "";
  transform: rotate(18deg) translateX(-220%);
  background: rgba(255, 255, 255, 0.24);
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover::before,
.button:focus-visible::before {
  transform: rotate(18deg) translateX(540%);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--navy-700);
  box-shadow: 0 12px 28px rgba(8, 39, 62, 0.2);
}

.button.gold {
  color: var(--navy-950);
  background: var(--gold-500);
}

.button.gold:hover {
  background: var(--gold-400);
}

.button.light {
  color: var(--navy-900);
  border-color: var(--line);
  background: var(--white);
}

.button.light:hover {
  border-color: #d8d1c3;
  background: #faf8f2;
}

.button.whatsapp {
  background: var(--success);
}

.button.whatsapp:hover {
  background: #16784e;
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-800);
  font-weight: 800;
}

.button-link::after {
  content: "\2192";
  transition: transform 160ms ease;
}

.button-link:hover::after {
  transform: translateX(4px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 78px;
  background:
    linear-gradient(rgba(6, 31, 51, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 31, 51, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 82% 16%, rgba(202, 167, 104, 0.24), transparent 23%),
    linear-gradient(135deg, #fbf9f3 0%, #f1ece2 100%);
  background-size: 42px 42px, 42px 42px, auto, auto;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(8, 39, 62, 0.08);
  border-radius: 50%;
  content: "";
  animation: orbit-drift 14s ease-in-out infinite alternate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  bottom: -180px;
  left: -120px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(202, 167, 104, 0.24), rgba(202, 167, 104, 0));
  filter: blur(4px);
  animation: glow-drift 10s ease-in-out infinite alternate;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: 74px;
  align-items: center;
}

.hero-copy h1 span {
  position: relative;
  display: inline-block;
  color: var(--navy-700);
}

.hero-copy h1 span::after {
  position: absolute;
  right: auto;
  bottom: -0.13em;
  left: 0;
  width: 38%;
  min-width: 88px;
  height: 0.075em;
  border-radius: 999px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold-500);
  animation: accent-draw 780ms 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy .lead {
  max-width: 680px;
  margin-top: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  color: #4d5d69;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust span::before {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  content: "\2713";
  color: var(--white);
  background: var(--navy-800);
  font-size: 0.72rem;
}

.product-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 240px 210px;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(8, 39, 62, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-lg);
  transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
  will-change: transform;
}

.product-collage:hover {
  box-shadow: 0 34px 85px rgba(8, 39, 62, 0.22);
}

.collage-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  transform: translate3d(calc(var(--parallax-x, 0px) * var(--depth, 1)), calc(var(--parallax-y, 0px) * var(--depth, 1)), 24px);
  transition: transform 260ms ease-out, box-shadow 260ms ease-out;
  will-change: transform;
}

.collage-item[data-depth="1.15"] { --depth: 1.15; }
.collage-item[data-depth="0.8"] { --depth: 0.8; }
.collage-item[data-depth="1"] { --depth: 1; }

.collage-item:first-child {
  grid-row: 1 / 3;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 300ms ease;
}

.collage-item:hover img {
  transform: scale(1.04);
}

.product-marquee {
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
  border-block: 1px solid rgba(223, 194, 138, 0.32);
}

.product-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 24px;
  padding: 17px 0;
  animation: marquee-flow 30s linear infinite;
}

.product-marquee span {
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-marquee i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold-500);
}

@keyframes orbit-drift {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to { transform: translate3d(-42px, 36px, 0) rotate(8deg); }
}

@keyframes glow-drift {
  from { transform: translate3d(0, 0, 0) scale(0.92); opacity: 0.68; }
  to { transform: translate3d(72px, -36px, 0) scale(1.08); opacity: 1; }
}

@keyframes accent-draw {
  to { transform: scaleX(1); }
}

@keyframes marquee-flow {
  to { transform: translateX(-50%); }
}

.collage-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(8, 39, 62, 0.88);
  font-size: 0.75rem;
  font-weight: 800;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-item strong,
.trust-item span {
  display: block;
}

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

.trust-item span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.87rem;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-card::after {
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  content: "";
  background: rgba(202, 167, 104, 0.13);
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: #d4ccbd;
  box-shadow: var(--shadow-lg);
}

.category-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 12px;
  color: var(--gold-400);
  background: var(--navy-950);
  font-size: 0.8rem;
  font-weight: 900;
}

.category-card p {
  margin: 12px 0 22px;
  color: var(--muted);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-media {
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  background: var(--surface);
}

.product-media img {
  width: 100%;
  height: 100%;
  padding: 20px;
  object-fit: contain;
  transition: transform 250ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.product-body {
  padding: 22px;
}

.product-category {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-700);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body p {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.feature-panel {
  position: relative;
  display: grid;
  min-height: 570px;
  grid-template-rows: auto minmax(260px, 1fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 22% 25%, rgba(223, 194, 138, 0.28), transparent 26%),
    linear-gradient(140deg, var(--navy-950), var(--navy-700));
  background-size: 32px 32px, 32px 32px, auto, auto;
  box-shadow: var(--shadow-lg);
}

.feature-panel img {
  position: relative;
  right: auto;
  bottom: auto;
  width: calc(100% - 36px);
  height: 270px;
  max-height: none;
  margin: 0 18px 18px;
  padding: 18px;
  border: 1px solid rgba(227, 197, 128, 0.5);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  object-fit: contain;
  filter: drop-shadow(0 24px 35px rgba(0, 0, 0, 0.25));
}

.feature-panel-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 42px 42px 28px;
  color: rgba(255, 255, 255, 0.8);
}

.feature-panel-copy h3 {
  color: var(--white);
}

.feature-panel-copy p {
  margin-top: 14px;
}

.check-list {
  display: grid;
  gap: 20px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
}

.check-list li::before {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  content: "\2713";
  color: var(--navy-950);
  background: var(--gold-400);
  font-size: 0.8rem;
  font-weight: 900;
}

.check-list strong,
.check-list span {
  display: block;
}

.check-list span {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.process-step {
  position: relative;
  padding: 28px;
  border-top: 3px solid var(--gold-500);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, box-shadow 220ms ease;
}

.process-step .step {
  display: block;
  margin-bottom: 20px;
  color: var(--navy-700);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-step p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 62px;
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(120deg, var(--navy-950), var(--navy-700));
  box-shadow: var(--shadow-lg);
}

.cta-band::after {
  position: absolute;
  top: -120px;
  right: -70px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.cta-band h2 {
  max-width: 700px;
  color: var(--white);
}

.cta-band p {
  max-width: 690px;
  margin-top: 14px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 88% 20%, rgba(202, 167, 104, 0.2), transparent 22%),
    linear-gradient(120deg, var(--navy-950), var(--navy-700));
}

.page-hero .eyebrow {
  color: var(--gold-400);
}

.page-hero h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(2.35rem, 5vw, 4.6rem);
}

.page-hero .lead {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.breadcrumbs {
  margin-top: 28px;
  font-size: 0.86rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--gold-400);
}

.catalog-toolbar {
  position: sticky;
  z-index: 20;
  top: 82px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.catalog-controls {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.search-field {
  position: relative;
}

.search-field input {
  width: 100%;
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #5e6b76;
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  color: var(--white);
  border-color: var(--navy-800);
  background: var(--navy-800);
}

.catalog-count {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  transition: opacity 150ms ease, transform 150ms ease;
}

.catalog-grid.is-updating {
  opacity: 0.42;
  transform: translateY(4px);
}

.catalog-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, box-shadow 220ms ease;
}

.catalog-card:hover,
.catalog-card:focus-within {
  transform: translateY(-7px);
  border-color: rgba(202, 167, 104, 0.72);
  box-shadow: 0 24px 52px rgba(8, 39, 62, 0.14);
}

.catalog-card:hover .product-media img,
.catalog-card:focus-within .product-media img {
  transform: scale(1.025);
}

.catalog-card[hidden] {
  display: none;
}

.catalog-card .product-media {
  aspect-ratio: 1.8 / 1;
}

.catalog-card .product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.catalog-card .product-body p {
  flex: 1;
}

.catalog-card.text-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
}

.catalog-card.text-card::after {
  position: absolute;
  right: -45px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  content: "";
  background: rgba(202, 167, 104, 0.1);
}

.no-results {
  grid-column: 1 / -1;
  padding: 40px;
  border: 1px dashed #d4ccbd;
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--muted);
  background: var(--surface);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 50px;
  align-items: start;
}

.form-aside {
  position: sticky;
  top: 126px;
}

.form-aside .lead {
  margin-top: 18px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.contact-list strong,
.contact-list span,
.contact-list a {
  display: block;
}

.contact-list span {
  color: var(--muted);
  font-size: 0.88rem;
}

.quote-form {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #344654;
  font-size: 0.88rem;
  font-weight: 800;
}

.field label span {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #ded7c8;
  border-radius: 10px;
  color: var(--ink);
  background: #fdfcf8;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field textarea {
  min-height: 124px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy-700);
  outline: 2px solid rgba(53, 83, 110, 0.12);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8, 39, 62, 0.08);
}

.field-note,
.form-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.form-status {
  margin-top: 14px;
  color: var(--navy-800);
  font-size: 0.9rem;
  font-weight: 700;
}

.faq-list {
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

summary {
  position: relative;
  padding: 20px 55px 20px 22px;
  color: var(--navy-900);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  content: "+";
  transform: translateY(-50%);
  color: var(--navy-700);
  font-size: 1.35rem;
}

details[open] summary::after {
  content: "\2212";
}

details p {
  padding: 0 22px 22px;
  color: var(--muted);
}

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

.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, box-shadow 220ms ease;
}

.contact-card:hover,
.contact-card:focus-within,
.spec-card:hover,
.process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(202, 167, 104, 0.72);
  box-shadow: 0 22px 48px rgba(8, 39, 62, 0.12);
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-card p,
.contact-card span {
  color: var(--muted);
}

.contact-card a {
  color: var(--navy-700);
  font-weight: 800;
}

.map-card {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 44px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    radial-gradient(circle at 30% 40%, rgba(202, 167, 104, 0.24), transparent 18%),
    repeating-linear-gradient(40deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 44px),
    var(--navy-950);
}

.location-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(227, 197, 128, 0.34);
  border-radius: var(--radius-lg);
  background: var(--navy-950);
  box-shadow: var(--shadow-lg);
}

.location-shell::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
}

.location-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  min-height: 590px;
}

.location-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.78);
}

.location-panel h1,
.location-panel h2 {
  color: var(--white);
}

.location-panel .lead {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.location-facts {
  display: grid;
  gap: 12px;
  margin: 30px 0 4px;
}

.location-fact {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.location-fact > div {
  display: grid;
  min-width: 0;
  align-content: center;
  gap: 4px;
}

.location-fact strong,
.location-fact span {
  display: block;
}

.location-fact strong {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.2;
}

.location-fact span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.82rem;
  line-height: 1.25;
}

.location-fact-icon {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0;
  border-radius: 10px;
  color: var(--navy-950);
  background: var(--gold-400);
  font-size: 0.76rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-align: center;
}

.map-frame {
  position: relative;
  min-height: 590px;
  border-left: 1px solid rgba(227, 197, 128, 0.3);
  background: #d8d4ca;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.75) contrast(1.06);
}

.social-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.social-section {
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 12% 20%, rgba(227, 197, 128, 0.15), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    var(--navy-950);
  background-size: auto, 38px 38px, 38px 38px, auto;
}

.social-heading h2 {
  color: var(--white);
}

.social-heading .lead {
  color: rgba(255, 255, 255, 0.67);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(227, 197, 128, 0.3);
  border-radius: 11px;
  color: var(--gold-400);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 900;
}

.footer-social a:hover {
  border-color: var(--gold-400);
  color: var(--navy-950);
  background: var(--gold-400);
}

.social-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 28px;
  border: 1px solid rgba(227, 197, 128, 0.32);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.social-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-400);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.social-card strong {
  display: block;
  margin: 20px 0 8px;
  color: var(--white);
  font-size: 1.35rem;
}

.social-card-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(227, 197, 128, 0.5);
  border-radius: 14px;
  color: var(--gold-400);
  font-size: 1rem;
  font-weight: 900;
}

.social-card[aria-disabled="true"] {
  cursor: default;
  opacity: 0.68;
}

.map-card h2,
.map-card p {
  color: var(--white);
}

.map-card p {
  max-width: 550px;
  margin: 16px auto 26px;
  color: rgba(255, 255, 255, 0.74);
}

.solution-hero {
  padding: 72px 0;
  background: var(--surface);
}

.solution-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.35rem);
}

.solution-grid .lead {
  margin-top: 22px;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

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

.not-found h1 {
  margin-inline: auto;
}

.not-found .lead {
  margin: 22px auto 32px;
}

.not-found .hero-actions {
  justify-content: center;
}

.solution-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
  gap: 60px;
  align-items: center;
}

.solution-media {
  display: grid;
  aspect-ratio: 1.1 / 1;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.solution-media img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.solution-media:hover img {
  transform: scale(1.025) rotate(-0.5deg);
}

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

.spec-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, box-shadow 220ms ease;
}

.spec-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.9fr;
  gap: 50px;
  padding: 70px 0 50px;
}

.footer-brand img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.reveal-ready .reveal-item {
  opacity: 0;
  translate: 0 30px;
  scale: 0.985;
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    translate 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    scale 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.reveal-ready .reveal-item.is-visible {
  opacity: 1;
  translate: none;
  scale: 1;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 20px;
}

.footer-column h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-links {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.footer-links a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
  box-shadow: 0 14px 36px rgba(17, 97, 64, 0.34);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.legal-note {
  padding: 16px 18px;
  border-left: 3px solid var(--gold-500);
  color: var(--muted);
  background: var(--surface);
  font-size: 0.88rem;
}

@media (max-width: 1050px) {
  .hero-grid,
  .split,
  .solution-grid {
    gap: 44px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.92fr;
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 0.8fr);
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.88rem;
  }

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

  .map-frame {
    min-height: 480px;
    border-top: 1px solid rgba(227, 197, 128, 0.3);
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 76px 0;
  }

  .topbar-inner {
    overflow-x: auto;
    justify-content: flex-start;
    padding-block: 7px;
    scrollbar-width: none;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 124px 0 0;
    display: none;
    align-items: stretch;
    padding: 30px 24px 45px;
    overflow-y: auto;
    background: var(--white);
  }

  .site-nav a {
    color: var(--navy-900);
  }

  .site-nav a[aria-current="page"] {
    color: var(--navy-700);
  }

  .site-nav.open {
    display: block;
  }

  .site-nav a {
    display: block;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
  }

  .site-nav a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 20px;
    padding: 13px 18px;
    border-bottom: 0;
    border-radius: 14px;
  }

  .hero {
    padding: 70px 0;
  }

  .hero-grid,
  .split,
  .solution-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .product-collage {
    max-width: 680px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .lead {
    margin-top: 20px;
  }

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

  .process-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .cta-band-inner {
    display: block;
  }

  .cta-band .button {
    margin-top: 28px;
  }

  .catalog-toolbar {
    top: 82px;
  }

  .catalog-controls {
    grid-template-columns: 1fr;
  }

  .filter-buttons {
    justify-content: flex-start;
  }

  .form-aside {
    position: static;
  }

  .contact-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    min-height: 0;
  }
}

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

  .section {
    padding: 62px 0;
  }

  .section-sm {
    padding: 48px 0;
  }

  .topbar {
    display: none;
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand-wordmark {
    max-width: 190px;
  }

  .brand-wordmark strong {
    font-size: 0.78rem;
  }

  .brand-wordmark small {
    font-size: 0.43rem;
    letter-spacing: 0.08em;
  }

  .site-nav {
    inset: 74px 0 0;
  }

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

  .map-frame {
    min-height: 390px;
  }

  .location-panel {
    padding: 32px 22px;
  }

  .feature-panel-copy {
    padding: 32px 26px 22px;
  }

  .feature-panel img {
    width: calc(100% - 28px);
    height: 230px;
    margin: 0 14px 14px;
  }

  .hero {
    padding: 58px 0;
  }

  .hero-grid {
    gap: 46px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .product-collage {
    grid-template-rows: 185px 150px;
    gap: 9px;
    padding: 9px;
    border-radius: 22px;
  }

  .collage-item {
    border-radius: 14px;
  }

  .collage-item img {
    padding: 12px;
  }

  .collage-label {
    display: none;
  }

  .trust-grid,
  .category-grid,
  .featured-grid,
  .process-grid,
  .catalog-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(3) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .feature-panel {
    min-height: 0;
  }

  .feature-panel-copy {
    width: 100%;
    padding: 30px 26px 22px;
  }

  .feature-panel img {
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    height: 230px;
    max-height: none;
    margin: 0 14px 14px;
  }

  .cta-band {
    padding: 38px 28px;
    border-radius: 22px;
  }

  .page-hero {
    padding: 62px 0;
  }

  .catalog-toolbar {
    position: static;
  }

  .filter-buttons {
    flex-wrap: nowrap;
    margin-right: -14px;
    padding-right: 14px;
    overflow-x: auto;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .quote-form {
    padding: 24px;
    border-radius: 20px;
  }

  .field.full {
    grid-column: auto;
  }

  .solution-media {
    aspect-ratio: 1 / 0.8;
  }

  .footer-grid {
    gap: 34px;
    padding: 58px 0 40px;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    min-height: 92px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

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