:root {
  --navy: #090d2b;
  --navy-soft: #12183c;
  --ink: #111314;
  --graphite: #343434;
  --steel: #6d7075;
  --paper: #f8f7f3;
  --white: #ffffff;
  --muted: #d7d0c3;
  --gold: #d79a20;
  --gold-soft: #f0bd4f;
  --gold-deep: #a76a11;
  --line: rgba(17, 19, 20, 0.12);
  --dark-line: rgba(245, 243, 238, 0.14);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 4%, rgba(215, 154, 32, 0.1), transparent 25rem),
    linear-gradient(180deg, #fbfaf6 0%, var(--paper) 38%, #eee9df 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body:not(.theme-dark) {
  --paper: #f8f7f3;
  --white: #ffffff;
  --ink: #111314;
  --graphite: #343434;
  --steel: #6d7075;
  --line: rgba(17, 19, 20, 0.12);
  color: var(--ink);
}

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

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

.cursor-glow {
  position: fixed;
  z-index: 2;
  width: 28rem;
  height: 28rem;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(215, 154, 32, 0.2), transparent 68%);
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  transition: opacity 220ms ease;
}

.catalog-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(248, 247, 243, 0.9);
  box-shadow: 0 14px 42px rgba(9, 13, 43, 0.08);
  backdrop-filter: blur(16px);
}

body:not(.theme-dark) .catalog-header {
  background: rgba(248, 247, 243, 0.9);
  box-shadow: 0 14px 42px rgba(9, 13, 43, 0.08);
}

body:not(.theme-dark) .header-main {
  background:
    linear-gradient(135deg, rgba(248, 247, 243, 0.96), rgba(236, 231, 220, 0.9)),
    radial-gradient(circle at 16% 0%, rgba(215, 154, 32, 0.14), transparent 24rem);
  color: var(--graphite);
  border-bottom-color: rgba(52, 52, 52, 0.12);
}

body:not(.theme-dark) .header-actions {
  border-color: rgba(52, 52, 52, 0.08);
  background: rgba(255, 255, 255, 0.48);
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  min-height: 6.5rem;
  padding: 1rem clamp(1rem, 5vw, 5rem);
  background:
    linear-gradient(135deg, rgba(248, 247, 243, 0.96), rgba(236, 231, 220, 0.9)),
    radial-gradient(circle at 16% 0%, rgba(215, 154, 32, 0.14), transparent 24rem);
  color: var(--graphite);
  border-bottom: 1px solid rgba(52, 52, 52, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(215, 154, 32, 0.18);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(9, 13, 43, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.brand img {
  width: clamp(10.8rem, 14vw, 13.4rem);
  aspect-ratio: 307 / 132;
  object-fit: contain;
  height: auto;
  display: block;
}

.site-search {
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  border-radius: 0.45rem;
  background: var(--white);
}

.site-search input {
  min-height: 3.25rem;
  border: 0;
  padding: 0 1.1rem;
  color: var(--ink);
  font-size: 1rem;
  outline: none;
}

.site-search button {
  width: auto;
  min-height: 3.25rem;
  border: 0;
  padding: 0 1.1rem;
  background: var(--gold);
  color: #17130d;
  font-weight: 900;
  font-size: 0.9rem;
  cursor: pointer;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.2vw, 0.9rem);
  font-weight: 800;
  padding: 0.35rem;
  border: 1px solid rgba(52, 52, 52, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 34px rgba(9, 13, 43, 0.06);
}

.header-actions a,
.header-actions button {
  width: auto;
  min-height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(52, 52, 52, 0.06);
  border-radius: 999px;
  background: rgba(248, 247, 243, 0.64);
  color: inherit;
  font: inherit;
  padding: 0 1.05rem;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: color 180ms ease, transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.zap-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.24);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.58)),
    linear-gradient(135deg, rgba(37, 211, 102, 0.16), rgba(255, 255, 255, 0.92));
  padding: 0;
  box-shadow: 0 12px 28px rgba(9, 13, 43, 0.08), 0 0 0 5px rgba(37, 211, 102, 0.06);
}

.zap-link img {
  width: 1.55rem;
  height: 1.55rem;
}

.theme-toggle {
  gap: 0.55rem;
  padding-inline: 0.95rem 1.1rem !important;
}

.theme-toggle span {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: rgba(9, 13, 43, 0.08);
  color: var(--navy);
  font-size: 1rem;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.theme-toggle strong {
  font: inherit;
  line-height: 1;
}

.theme-toggle:hover span {
  background: rgba(9, 13, 43, 0.16);
  transform: rotate(-10deg);
}

.header-actions a:hover,
.header-actions button:hover {
  color: #17130d;
  transform: translateY(-2px);
  border-color: rgba(215, 154, 32, 0.38);
  background:
    linear-gradient(135deg, rgba(240, 189, 79, 0.92), rgba(215, 154, 32, 0.88)),
    var(--gold);
  box-shadow: 0 14px 30px rgba(215, 154, 32, 0.24);
}

.header-actions .zap-link:hover {
  border-color: rgba(37, 211, 102, 0.42);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, rgba(37, 211, 102, 0.28), rgba(255, 255, 255, 0.95));
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.18), 0 0 0 7px rgba(37, 211, 102, 0.08);
}

.upload-link {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(215, 154, 32, 0.5);
  color: var(--gold-deep);
}

.category-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(0.75rem, 2.2vw, 2.6rem);
  padding: 0.9rem clamp(1rem, 6vw, 7rem);
  color: var(--navy);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.category-bar[hidden] {
  display: none;
}

.category-bar button,
.category-bar a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: none;
  min-height: auto;
  padding: 0.35rem 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: 1.15;
  white-space: nowrap !important;
  word-break: keep-all;
  overflow-wrap: normal;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.category-bar button:hover,
.category-bar button.is-active,
.category-bar a:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

body:not(.view-catalog) .category-bar [data-category] {
  display: none;
}

.hero-catalog {
  position: relative;
  min-height: calc(100svh - 6.5rem);
  overflow: hidden;
  display: grid;
  align-items: stretch;
  padding: 0;
  color: var(--white);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy);
}

.hero-backdrop img {
  height: 112%;
  object-fit: cover;
  opacity: 0.45;
  filter: saturate(0.65) contrast(1.05);
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.08);
  will-change: transform;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 13, 43, 0.88), rgba(9, 13, 43, 0.38), rgba(9, 13, 43, 0.82)),
    radial-gradient(circle at 50% 50%, transparent, rgba(9, 13, 43, 0.6));
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: none;
  padding: 0;
}

.hero-collage {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.deck-photo {
  position: absolute;
  display: block;
  width: clamp(10rem, 20vw, 23rem);
  aspect-ratio: 1.58;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 0.4rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
  opacity: 0.88;
  will-change: transform;
}

.photo-a {
  left: 4vw;
  top: 15%;
  background-image: linear-gradient(rgba(216, 154, 33, 0.18), rgba(5, 10, 42, 0.2)), url("assets/projects/optimized/pesca-madeira-completo.jpg");
  transform: translate3d(0, calc(var(--parallax-float, 0px) * -0.55), 0) rotate(-4deg);
}

.photo-b {
  right: 5vw;
  top: 15%;
  background-image: linear-gradient(rgba(216, 154, 33, 0.18), rgba(5, 10, 42, 0.2)), url("assets/projects/optimized/lazer-proa-madeira.jpg");
  transform: translate3d(0, calc(var(--parallax-float, 0px) * -0.35), 0) rotate(3deg);
}

.photo-c {
  left: 14vw;
  bottom: 10%;
  background-image: linear-gradient(rgba(216, 154, 33, 0.18), rgba(5, 10, 42, 0.25)), url("assets/projects/optimized/pesca-cinza-proa.jpg");
  transform: translate3d(0, calc(var(--parallax-float, 0px) * 0.42), 0) rotate(2deg);
}

.photo-d {
  right: 13vw;
  bottom: 8%;
  background-image: linear-gradient(rgba(216, 154, 33, 0.18), rgba(5, 10, 42, 0.25)), url("assets/projects/optimized/lazer-cinza-logo.jpg");
  transform: translate3d(0, calc(var(--parallax-float, 0px) * 0.5), 0) rotate(-3deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 2px;
  background: currentColor;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.15rem;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 1.12rem;
}

.hero-copy p,
.section-heading p,
.portal-copy p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.section-heading p,
.product-info p,
.benefit-card p,
.timeline-item p,
.portal-copy p {
  color: #70685f;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.split-choice {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100svh - 6.5rem);
  margin-top: 0;
  border-top: 0;
  border-radius: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 12%, rgba(240, 189, 79, 0.18), transparent 24rem),
    #080b22;
  box-shadow: none;
  isolation: isolate;
}

.split-choice::before {
  display: none;
}

.choice-panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 7vw, 7rem);
  border: 0;
  border-radius: 0;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  box-shadow: none;
  transform: translateZ(0);
  background-size: 110%;
  background-position: center;
  transition:
    transform 260ms ease,
    filter 220ms ease,
    background-size 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.choice-panel::before,
.choice-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: opacity 260ms ease, transform 420ms ease;
}

.choice-panel::before {
  inset: 0;
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(5, 7, 24, 0.08) 0%, rgba(5, 7, 24, 0.18) 34%, rgba(5, 7, 24, 0.76) 100%),
    radial-gradient(circle at var(--choice-x, 50%) var(--choice-y, 56%), rgba(240, 189, 79, 0.28), transparent 19rem);
  z-index: 0;
}

.choice-panel::after {
  display: none;
}

.choice-panel:hover {
  transform: translateZ(0);
  background-size: 116%;
  filter: saturate(1.22) contrast(1.05) brightness(1.05);
}

.choice-panel:hover::before {
  opacity: 1;
}

.catalog-choice:hover::before {
  background:
    linear-gradient(180deg, rgba(5, 7, 24, 0.04) 0%, rgba(5, 7, 24, 0.14) 34%, rgba(5, 7, 24, 0.72) 100%),
    radial-gradient(circle at var(--choice-x, 50%) var(--choice-y, 50%), rgba(240, 189, 79, 0.72), transparent 18rem),
    linear-gradient(135deg, rgba(248, 247, 243, 0.16), rgba(215, 154, 32, 0.1), transparent 58%);
}

.project-choice:hover::before {
  background:
    linear-gradient(180deg, rgba(5, 7, 24, 0.04) 0%, rgba(5, 7, 24, 0.14) 34%, rgba(5, 7, 24, 0.72) 100%),
    radial-gradient(circle at var(--choice-x, 50%) var(--choice-y, 50%), rgba(215, 154, 32, 0.7), transparent 18rem),
    linear-gradient(135deg, rgba(248, 247, 243, 0.14), rgba(52, 52, 52, 0.08), transparent 58%);
}

.choice-panel:hover::after {
  display: none;
}

.catalog-choice {
  z-index: 2;
  margin-right: -3.6rem;
  padding-right: 8.8rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - 7rem) 100%, 0 100%);
  background:
    linear-gradient(135deg, rgba(5, 7, 24, 0.76), rgba(9, 13, 43, 0.18) 52%, rgba(215, 154, 32, 0.08)),
    url("assets/projects/optimized/pesca-madeira-pescador.jpg") center/cover;
}

.project-choice {
  z-index: 1;
  margin-left: -3.6rem;
  padding-left: 8.8rem;
  clip-path: polygon(7rem 0, 100% 0, 100% 100%, 0 100%);
  background:
    linear-gradient(145deg, rgba(52, 52, 52, 0.46), rgba(9, 13, 43, 0.18) 54%, rgba(215, 154, 32, 0.14)),
    url("assets/projects/optimized/lazer-cockpit-madeira.jpg") center/cover;
}

.catalog-picker {
  min-height: calc(100svh - 6.5rem);
  padding: 0;
  background: var(--navy);
}

.catalog-type-split {
  min-height: calc(100svh - 6.5rem);
}

.pesca-type-choice {
  z-index: 2;
  margin-right: -3.6rem;
  padding-right: 8.8rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - 7rem) 100%, 0 100%);
  background:
    linear-gradient(135deg, rgba(5, 7, 24, 0.76), rgba(9, 13, 43, 0.24) 54%, rgba(215, 154, 32, 0.1)),
    url("assets/projects/optimized/pesca-madeira-completo.jpg") center/cover;
}

.lazer-type-choice {
  z-index: 1;
  margin-left: -3.6rem;
  padding-left: 8.8rem;
  clip-path: polygon(7rem 0, 100% 0, 100% 100%, 0 100%);
  background:
    linear-gradient(145deg, rgba(52, 52, 52, 0.56), rgba(9, 13, 43, 0.24) 54%, rgba(215, 154, 32, 0.16)),
    url("assets/projects/optimized/lazer-plataforma-madeira.jpg") center/cover;
}

.split-choice:has(.pesca-type-choice:hover) .pesca-type-choice {
  z-index: 5;
}

.split-choice:has(.pesca-type-choice:hover) .lazer-type-choice {
  filter: grayscale(0.1) brightness(0.88);
  transform: translateZ(0);
}

.split-choice:has(.lazer-type-choice:hover) .lazer-type-choice {
  z-index: 5;
}

.split-choice:has(.lazer-type-choice:hover) .pesca-type-choice {
  filter: grayscale(0.1) brightness(0.88);
  transform: translateZ(0);
}

.project-choice::before {
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(5, 7, 24, 0.06) 0%, rgba(5, 7, 24, 0.2) 38%, rgba(5, 7, 24, 0.78) 100%),
    radial-gradient(circle at var(--choice-x, 62%) var(--choice-y, 46%), rgba(215, 154, 32, 0.48), transparent 17rem),
    linear-gradient(135deg, rgba(248, 247, 243, 0.12), transparent 54%);
}

.split-choice:has(.catalog-choice:hover) .catalog-choice {
  z-index: 5;
}

.split-choice:has(.catalog-choice:hover) .project-choice {
  filter: grayscale(0.12) brightness(0.88);
  transform: translateZ(0);
}

.split-choice:has(.project-choice:hover) .project-choice {
  z-index: 5;
}

.split-choice:has(.project-choice:hover) .catalog-choice {
  filter: grayscale(0.12) brightness(0.88);
  transform: translateZ(0);
}

@supports not selector(:has(*)) {
  .split-choice::before {
    display: none;
  }

  .catalog-choice,
  .project-choice {
    margin: 0;
    padding: clamp(1.2rem, 3vw, 2rem);
    clip-path: none;
  }
}

.choice-panel span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 1.35rem;
  padding-left: 2.6rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 260ms ease, color 260ms ease;
}

.choice-panel span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
  transform: translateY(-50%);
}

.choice-panel strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 11ch;
  margin-bottom: 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 4.8vw, 5.35rem);
  line-height: 0.88;
  text-wrap: balance;
  text-shadow: 0 22px 46px rgba(0, 0, 0, 0.44);
  transition: transform 260ms ease, text-shadow 260ms ease;
}

.choice-panel small {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 29rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  transition: transform 260ms ease, color 260ms ease;
}

.choice-details {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.45rem;
}

.choice-details b {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0 0.72rem;
  border: 1px solid rgba(240, 189, 79, 0.24);
  border-radius: 999px;
  background: rgba(8, 11, 34, 0.34);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 900;
}

.choice-panel em {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 3.35rem;
  margin-top: 1.7rem;
  padding: 0 1.25rem;
  border: 1px solid rgba(240, 189, 79, 0.55);
  border-radius: 999px;
  background: rgba(17, 19, 20, 0.46);
  color: var(--white);
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
  transition: transform 260ms ease, background 260ms ease, color 260ms ease;
}

.choice-panel:hover span {
  color: #ffe19b;
  transform: translateY(-5px);
}

.choice-panel:hover strong {
  transform: translateY(-4px) scale(1.02);
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.45), 0 0 28px rgba(239, 189, 85, 0.24);
}

.choice-panel:hover small {
  color: rgba(255, 255, 255, 0.92);
  transform: translateY(3px);
}

.choice-panel:hover .choice-details b {
  border-color: rgba(240, 189, 79, 0.48);
  background: rgba(240, 189, 79, 0.16);
}

.choice-panel:hover em {
  transform: translateY(6px);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #17130d;
}

.app-view {
  display: none !important;
}

body.view-catalog .hero-catalog,
body.view-catalog-picker .hero-catalog,
body.view-project .hero-catalog {
  display: none;
}

body.view-catalog-picker .catalog-picker-view,
body.view-catalog .catalog-view,
body.view-project .project-view {
  display: grid !important;
}

body.view-catalog-picker .catalog-picker {
  display: grid !important;
}

body.view-catalog .catalog.section,
body.view-catalog .real-gallery.section,
body.view-catalog .benefits.section,
body.view-catalog .trust.section,
body.view-catalog .process.section,
body.view-project .portal.section {
  display: grid !important;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0 1.25rem;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(5, 10, 42, 0.16);
}

.button.primary:hover,
.product-actions button:first-child:hover,
form:not(.site-search) button:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #17130d;
  box-shadow: 0 18px 42px rgba(215, 154, 32, 0.28);
}

.hero-catalog .button.primary,
.quote-card .button.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #17130d;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.pathways {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1rem;
  padding-top: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: 0;
}

.path-card {
  min-height: 24rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 0.85rem;
  box-shadow: var(--shadow);
}

.path-card h2 {
  color: var(--white);
  max-width: 11ch;
}

.path-card p {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.78);
}

.path-sales {
  background:
    linear-gradient(135deg, rgba(5, 10, 42, 0.9), rgba(5, 10, 42, 0.58)),
    url("assets/projects/optimized/pesca-madeira-pescador.jpg") center/cover;
}

.path-client {
  background:
    linear-gradient(145deg, rgba(17, 19, 20, 0.95), rgba(45, 48, 50, 0.86)),
    radial-gradient(circle at top right, rgba(216, 154, 33, 0.22), transparent 26rem);
  border: 1px solid rgba(216, 154, 33, 0.26);
}

.path-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.button.light {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.client-code-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: end;
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.08);
}

.client-code-box label {
  color: var(--muted);
}

.client-code-box input {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.quick-help {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(1rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 86% 4%, rgba(215, 154, 32, 0.14), transparent 22rem),
    linear-gradient(180deg, rgba(248, 247, 243, 0.95), rgba(236, 231, 220, 0.82));
}

.help-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.55rem;
  width: 100%;
  min-height: 11rem;
  text-align: left;
  align-content: space-between;
  padding: 1.35rem;
  border: 1px solid rgba(52, 52, 52, 0.1);
  border-radius: 0.85rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 247, 243, 0.8)),
    radial-gradient(circle at 100% 0%, rgba(215, 154, 32, 0.16), transparent 12rem);
  box-shadow: 0 18px 48px rgba(9, 13, 43, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.help-card::after {
  content: "";
  position: absolute;
  inset: auto 1.35rem 1.05rem 1.35rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 154, 32, 0.55), transparent);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.help-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 154, 33, 0.48);
  box-shadow: 0 26px 64px rgba(9, 13, 43, 0.16);
}

.help-card:hover::after {
  opacity: 1;
  transform: translateY(-0.3rem);
}

.help-card span {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.help-card strong {
  color: var(--navy);
  font-size: 1.12rem;
}

.help-card small {
  color: #70685f;
  font-size: 0.94rem;
}

.real-gallery {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(215, 154, 32, 0.16), transparent 24rem),
    linear-gradient(180deg, #f8f7f3, #ece7dc);
}

.real-gallery h2 {
  color: var(--navy);
}

.real-gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-auto-rows: minmax(12rem, 18vw);
  gap: 1rem;
}

.real-photo-slot {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 15rem;
  padding: 1.2rem;
  border: 1px solid rgba(215, 154, 32, 0.26);
  border-radius: 0.55rem;
  background:
    linear-gradient(180deg, transparent, rgba(9, 13, 43, 0.78)),
    repeating-linear-gradient(45deg, rgba(215, 154, 32, 0.12) 0 12px, rgba(255, 255, 255, 0.1) 12px 24px),
    linear-gradient(135deg, rgba(9, 13, 43, 0.72), rgba(52, 52, 52, 0.4));
  color: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
  background-position: center calc(50% + var(--parallax-bg, 0px));
  background-size: cover;
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease, background-position 120ms linear;
  will-change: background-position, transform;
}

.real-photo-slot::before {
  content: "projeto real";
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.real-photo-slot:nth-child(1) {
  background-image:
    linear-gradient(180deg, transparent, rgba(9, 13, 43, 0.78)),
    url("assets/projects/optimized/lazer-plataforma-madeira.jpg");
}

.real-photo-slot:nth-child(2) {
  background-image:
    linear-gradient(180deg, transparent, rgba(9, 13, 43, 0.78)),
    url("assets/projects/optimized/pesca-madeira-logo.jpg");
}

.real-photo-slot:nth-child(3) {
  background-image:
    linear-gradient(180deg, transparent, rgba(9, 13, 43, 0.78)),
    url("assets/projects/optimized/pesca-cinza-rosa-dos-ventos.jpg");
}

.real-photo-slot:nth-child(4) {
  background-image:
    linear-gradient(180deg, transparent, rgba(9, 13, 43, 0.78)),
    url("assets/projects/optimized/pesca-madeira-pescador.jpg");
  background-position: center calc(42% + var(--parallax-bg, 0px));
}

.real-photo-slot span {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.real-photo-slot strong {
  max-width: 18rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.6vw, 2.7rem);
  line-height: 0.98;
}

.slot-large {
  grid-row: span 2;
}

.real-photo-slot:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 154, 32, 0.48);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.13);
}

.section {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 6vw, 7rem);
}

.section-heading {
  max-width: 64rem;
  margin-bottom: 2.2rem;
}

.catalog {
  background: var(--paper);
}

.catalog .section-heading h2 {
  color: var(--navy);
}

.catalog {
  background:
    radial-gradient(circle at 12% 8%, rgba(215, 154, 32, 0.14), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(9, 13, 43, 0.08), transparent 28rem),
    linear-gradient(180deg, #fbfaf7, #f1ede4);
}

.catalog-summary {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1.3rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(215, 154, 32, 0.18);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(9, 13, 43, 0.08);
  backdrop-filter: blur(10px);
}

.catalog-summary strong {
  color: var(--navy);
}

.catalog-summary span {
  display: block;
  color: #70685f;
}

.catalog-group {
  margin-top: 1.5rem;
}

.catalog-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: start;
}

.catalog-column {
  margin-top: 0;
}

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

.catalog-column[hidden] + .catalog-column,
.catalog-column:has(+ .catalog-column[hidden]) {
  grid-column: 1 / -1;
}

.catalog-group[hidden],
.product-card[hidden],
.empty-state[hidden] {
  display: none;
}

.group-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.2rem;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(215, 154, 32, 0.28);
}

.group-heading span {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), #1b2148);
  color: var(--gold-soft);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(9, 13, 43, 0.18);
}

.group-heading h3 {
  color: var(--navy);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.group-heading p {
  color: #70685f;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(215, 154, 32, 0.16);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 46px rgba(9, 13, 43, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.product-card::before {
  content: "projeto real";
  position: absolute;
  z-index: 2;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  background: rgba(9, 13, 43, 0.68);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 154, 33, 0.45);
  box-shadow: 0 22px 52px rgba(9, 13, 43, 0.14);
}

.product-image {
  position: relative;
  min-height: clamp(19rem, 28vw, 31rem);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 260ms ease;
  will-change: transform;
}

.product-card:hover .product-image {
  transform: scale(1.018);
}

.image-one {
  background-image: url("assets/projects/optimized/pesca-madeira-pescador.jpg");
}

.image-two {
  background-image: url("assets/projects/optimized/pesca-madeira-completo.jpg");
}

.image-three {
  background-image: url("assets/projects/optimized/pesca-cinza-proa.jpg");
}

.image-four {
  background-image: url("assets/projects/optimized/lazer-cabine-madeira.jpg");
}

.image-five {
  background-image: url("assets/projects/optimized/lazer-plataforma-madeira.jpg");
}

.image-six {
  background-image: url("assets/projects/optimized/pesca-cinza-console.jpg");
}

.image-seven {
  background-image: url("assets/projects/optimized/pesca-personalizado-cinza.jpg");
}

.image-eight {
  background-image: url("assets/projects/optimized/pesca-cinza-rosa-dos-ventos.jpg");
}

.product-image .deck-overlay {
  display: none;
}

.deck-overlay {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 48%;
  aspect-ratio: 1.75;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 0.35rem;
  background:
    repeating-linear-gradient(90deg, rgba(17, 19, 20, 0.75) 0 3px, transparent 3px 32px),
    linear-gradient(135deg, #c8892c, #76501e);
  box-shadow: 0 15px 36px rgba(0, 0, 0, 0.36);
  transform: perspective(380px) rotateX(48deg) rotateZ(-4deg);
}

.deck-overlay.grey {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.75) 0 3px, transparent 3px 32px),
    linear-gradient(135deg, #42484d, #222527);
}

.deck-overlay.gold {
  background:
    repeating-linear-gradient(90deg, rgba(17, 19, 20, 0.7) 0 3px, transparent 3px 30px),
    linear-gradient(135deg, #e2a744, #a76b16);
}

.product-info {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
}

.tag {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(216, 154, 33, 0.34);
  border-radius: 999px;
  background: rgba(215, 154, 32, 0.08);
  color: #8a5b10;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.product-footer strong {
  color: var(--navy);
}

.product-footer a {
  color: var(--gold);
  font-weight: 900;
}

.product-meta {
  display: grid;
  gap: 0.35rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  color: #5f5a54;
  font-size: 0.9rem;
}

.product-meta li {
  position: relative;
  padding-left: 1rem;
}

.product-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--gold);
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.product-actions button {
  min-height: 2.85rem;
  border: 1px solid rgba(5, 10, 42, 0.08);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), #181e49);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.product-actions button:hover {
  border-color: rgba(216, 154, 33, 0.55);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #17130d;
  transform: translateY(-2px);
}

.empty-state {
  padding: 2rem;
  border: 1px dashed rgba(5, 10, 42, 0.28);
  border-radius: 0.65rem;
  background: var(--white);
  color: #70685f;
  text-align: center;
  font-weight: 800;
}

.benefits {
  background:
    radial-gradient(circle at 84% 10%, rgba(215, 154, 32, 0.18), transparent 24rem),
    linear-gradient(145deg, #111314, #232426);
  color: var(--white);
}

.benefits .section-heading p,
.benefits .benefit-card p {
  color: var(--muted);
}

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

.benefit-card,
.timeline-item,
.quote-card,
.upload-panel {
  border: 1px solid var(--dark-line);
  border-radius: 0.65rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 13rem;
  padding: 1.2rem;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.benefit-card::after {
  content: "";
  position: absolute;
  right: -3.2rem;
  top: -3.2rem;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240, 189, 79, 0.22), transparent 70%);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 189, 79, 0.42);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.24);
}

.benefit-card span,
.timeline-item span {
  color: var(--gold-soft);
  font-weight: 900;
}

.benefit-card h3 {
  margin-top: 3.5rem;
}

.trust {
  background:
    linear-gradient(135deg, rgba(248, 247, 243, 0.94), rgba(236, 231, 220, 0.9)),
    radial-gradient(circle at top right, rgba(215, 154, 32, 0.22), transparent 28rem);
}

.trust h2 {
  color: var(--navy);
}

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

.trust-card {
  position: relative;
  overflow: hidden;
  min-height: 13rem;
  display: grid;
  align-content: space-between;
  gap: 1.2rem;
  padding: 1.2rem;
  border: 1px solid rgba(52, 52, 52, 0.12);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 154, 32, 0.34);
  box-shadow: 0 26px 68px rgba(9, 13, 43, 0.14);
}

.trust-card strong {
  color: var(--navy);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.05;
}

.trust-card span {
  color: #70685f;
}

.process {
  background:
    radial-gradient(circle at 12% 16%, rgba(215, 154, 32, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f3efe7 100%);
}

.process h2 {
  color: var(--navy);
}

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

.timeline-item {
  position: relative;
  overflow: hidden;
  min-height: 14rem;
  padding: 1.2rem;
  border-color: rgba(52, 52, 52, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(248, 247, 243, 0.78));
  box-shadow: 0 16px 44px rgba(9, 13, 43, 0.07);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.timeline-item:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 154, 32, 0.42);
  box-shadow: 0 26px 64px rgba(9, 13, 43, 0.13);
}

.timeline-item span {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 3rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(9, 13, 43, 0.18);
}

.portal {
  display: grid;
  place-items: center;
  min-height: calc(100svh - 6.5rem);
  padding: clamp(1.4rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 78% 24%, rgba(215, 154, 32, 0.22), transparent 22rem),
    linear-gradient(135deg, rgba(9, 13, 43, 0.78), rgba(52, 52, 52, 0.64)),
    url("assets/projects/optimized/lazer-plataforma-madeira.jpg") center/cover;
  color: var(--graphite);
}

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

.portal-copy p {
  color: var(--muted);
}

.portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.button.whatsapp {
  border-color: rgba(215, 154, 32, 0.55);
  background: rgba(215, 154, 32, 0.14);
  color: var(--gold-soft);
}

.icon-button {
  gap: 0.55rem;
}

.icon-button img {
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
}

.upload-panel {
  width: 100%;
  color: inherit;
  text-align: left;
  padding: 1.2rem;
  border: 1px solid var(--dark-line);
  border-radius: 0.65rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.project-upload-card {
  position: relative;
  overflow: hidden;
  width: min(72rem, 100%);
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(28rem, 1.18fr);
  gap: clamp(1.2rem, 3.2vw, 2.4rem);
  align-items: stretch;
  padding: clamp(1rem, 2.4vw, 1.8rem);
  border: 1px solid rgba(215, 154, 32, 0.34);
  border-radius: 1rem;
  background:
    radial-gradient(circle at top right, rgba(215, 154, 32, 0.16), transparent 20rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 247, 243, 0.92));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
}

.project-upload-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(215, 154, 32, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent 22%);
  opacity: 0.55;
}

.project-upload-card > * {
  position: relative;
  z-index: 1;
}

.upload-card-intro {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.1rem, 2.6vw, 2rem);
  padding: clamp(1rem, 2vw, 1.4rem);
  border-right: 1px solid rgba(52, 52, 52, 0.12);
  border-radius: 0.75rem;
  background:
    linear-gradient(160deg, rgba(9, 13, 43, 0.96), rgba(26, 29, 52, 0.92)),
    radial-gradient(circle at 30% 18%, rgba(215, 154, 32, 0.28), transparent 15rem);
}

.project-upload-card .button {
  width: 100%;
  min-height: 3.25rem;
}

.upload-card-intro h2 {
  color: var(--white);
  margin-bottom: 0.65rem;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 0.95;
}

.upload-card-intro p {
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.76);
}

.upload-card-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-content: center;
}

.project-upload-card label {
  color: var(--graphite);
}

.project-upload-card label:not(.upload-input) {
  display: grid;
  gap: 0.5rem;
}

.project-upload-card .button {
  grid-column: 1 / -1;
}

.project-upload-card input[type="text"],
.project-upload-card textarea {
  min-height: 3.4rem;
  border-color: rgba(52, 52, 52, 0.16);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--graphite);
  padding: 0.95rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.upload-input {
  position: relative;
  cursor: pointer;
  min-height: clamp(12rem, 18vw, 15rem);
  border-color: rgba(215, 154, 32, 0.48);
  background:
    radial-gradient(circle at center, rgba(215, 154, 32, 0.12), transparent 16rem),
    rgba(9, 13, 43, 0.035);
  color: var(--graphite);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.upload-input input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-input:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 154, 32, 0.78);
  background:
    radial-gradient(circle at center, rgba(215, 154, 32, 0.2), transparent 16rem),
    rgba(9, 13, 43, 0.05);
  box-shadow: 0 16px 34px rgba(215, 154, 32, 0.14);
}

.upload-drop {
  display: grid;
  place-items: center;
  gap: 0.4rem;
  min-height: clamp(12rem, 18vw, 15rem);
  border: 2px dashed rgba(239, 189, 85, 0.42);
  border-radius: 0.75rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
}

.upload-drop span {
  color: var(--gold-soft);
  font-size: 2.8rem;
  line-height: 1;
}

.upload-drop small {
  color: #8a8174;
}

.file-feedback {
  display: inline-flex;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin-top: 0.3rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(9, 13, 43, 0.08);
  color: var(--navy) !important;
  font-weight: 900;
}

.upload-panel ol {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.upload-panel li {
  padding: 0.8rem;
  border: 1px solid var(--dark-line);
  color: var(--muted);
}

.upload-panel li.done,
.upload-panel li.active {
  border-color: rgba(239, 189, 85, 0.44);
  color: var(--white);
}

.quote {
  background: var(--paper);
}

.quote-card {
  max-width: 62rem;
  margin: auto;
  padding: clamp(1.2rem, 4vw, 3rem);
  border-color: var(--line);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.quote-card h2 {
  color: var(--white);
}

.quote-helper {
  max-width: 44rem;
  color: var(--muted);
}

form:not(.site-search) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.whatsapp-wide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  margin-top: 1rem;
  border: 1px solid rgba(215, 154, 32, 0.6);
  color: var(--gold-soft);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-wide:hover {
  transform: translateY(-2px);
  background: rgba(215, 154, 32, 0.13);
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

label:has(textarea),
form:not(.site-search) button {
  grid-column: 1 / -1;
}

input,
textarea,
select {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(17, 19, 20, 0.18);
  border-radius: 0.28rem;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 0.85rem;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.quote-card input,
.quote-card textarea {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(216, 154, 33, 0.72);
}

textarea {
  resize: vertical;
}

button {
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 6vw, 7rem);
  background: #f8f7f3;
  color: var(--graphite);
  border-top: 1px solid rgba(52, 52, 52, 0.12);
}

footer strong {
  color: var(--graphite);
}

.float-whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 4.35rem;
  min-width: 4.35rem;
  min-height: 4.35rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(circle at 32% 26%, #ffffff 0 28%, rgba(255, 255, 255, 0.82) 62%, rgba(248, 247, 243, 0.96) 100%);
  color: var(--graphite);
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.22),
    0 0 0 9px rgba(37, 211, 102, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.float-whatsapp img {
  width: 2.1rem;
  height: 2.1rem;
  filter: drop-shadow(0 8px 16px rgba(37, 211, 102, 0.22));
}

.float-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  color: #17130d;
  background:
    radial-gradient(circle at 32% 26%, #ffffff 0 24%, rgba(255, 255, 255, 0.72) 58%, rgba(37, 211, 102, 0.26) 100%);
  box-shadow:
    0 24px 58px rgba(37, 211, 102, 0.24),
    0 0 0 11px rgba(37, 211, 102, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.float-project {
  position: fixed;
  right: 7.35rem;
  bottom: 1.48rem;
  z-index: 40;
  width: auto;
  min-height: 4rem;
  padding: 0 1.35rem;
  border: 1px solid rgba(240, 189, 79, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(17, 19, 20, 0.98), rgba(52, 52, 52, 0.92)),
    radial-gradient(circle at 20% 0%, rgba(240, 189, 79, 0.24), transparent 10rem);
  color: var(--white);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-weight: 950;
  cursor: pointer;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.float-project:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 189, 79, 0.62);
  background:
    linear-gradient(135deg, var(--gold), var(--gold-soft)),
    var(--gold);
  color: #17130d;
  box-shadow:
    0 24px 58px rgba(215, 154, 32, 0.34),
    0 0 0 8px rgba(215, 154, 32, 0.11);
}

body.view-project .float-project {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 42, 0.72);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(44rem, 100%);
  max-height: min(90vh, 50rem);
  overflow: auto;
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.8rem;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  transform: translateY(14px) scale(0.98);
  transition: transform 180ms ease;
}

.modal.is-open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2.4rem;
  min-height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 900;
}

.modal-card h2 {
  color: var(--white);
}

.modal-card p {
  color: var(--muted);
}

.modal-card form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.modal-card label {
  color: var(--muted);
}

.modal-card label:has(textarea),
.modal-card .upload-field,
.modal-card .project-code-field,
.modal-card form button {
  grid-column: 1 / -1;
}

.modal-card input,
.modal-card textarea {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.modal-card input[type="file"] {
  padding: 0.75rem;
}

.upload-field small {
  color: var(--muted);
}

body.theme-dark {
  --paper: #0f1118;
  --white: #ffffff;
  --ink: #f4f1e9;
  --graphite: #ebe6dc;
  --steel: #a9a195;
  --line: rgba(240, 189, 79, 0.16);
  background:
    radial-gradient(circle at 12% 4%, rgba(215, 154, 32, 0.14), transparent 25rem),
    linear-gradient(180deg, #090b18 0%, #11131b 44%, #17130d 100%);
  color: #f4f1e9;
}

body.theme-dark .cursor-glow {
  background: radial-gradient(circle, rgba(240, 189, 79, 0.18), transparent 68%);
}

body.theme-dark .catalog-header {
  background: rgba(13, 15, 24, 0.9);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
}

body.theme-dark .header-main {
  background:
    radial-gradient(circle at 16% 0%, rgba(215, 154, 32, 0.16), transparent 24rem),
    linear-gradient(135deg, rgba(18, 20, 29, 0.96), rgba(9, 11, 24, 0.94));
  color: #f4f1e9;
  border-bottom-color: rgba(240, 189, 79, 0.14);
}

body.theme-dark .brand {
  border-color: rgba(240, 189, 79, 0.2);
  background: rgba(248, 247, 243, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

body.theme-dark .header-actions {
  border-color: rgba(240, 189, 79, 0.13);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 36px rgba(0, 0, 0, 0.2);
}

body.theme-dark .header-actions a:not(.zap-link),
body.theme-dark .header-actions button {
  border-color: rgba(240, 189, 79, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #f4f1e9;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.theme-dark .header-actions a:hover,
body.theme-dark .header-actions button:hover {
  color: #17130d;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
}

body.theme-dark .theme-toggle span {
  background: rgba(240, 189, 79, 0.16);
  color: var(--gold-soft);
}

body.theme-dark .category-bar,
body.theme-dark footer {
  background: #11131b;
  color: #f4f1e9;
  border-color: rgba(240, 189, 79, 0.14);
}

body.theme-dark footer strong {
  color: #f4f1e9;
}

body.theme-dark .quick-help {
  background:
    radial-gradient(circle at 86% 4%, rgba(215, 154, 32, 0.16), transparent 22rem),
    linear-gradient(180deg, #11131b, #161821);
}

body.theme-dark .help-card,
body.theme-dark .catalog-summary,
body.theme-dark .trust-card,
body.theme-dark .timeline-item,
body.theme-dark .empty-state {
  border-color: rgba(240, 189, 79, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 100% 0%, rgba(215, 154, 32, 0.12), transparent 13rem);
  color: #f4f1e9;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

body.theme-dark .help-card strong,
body.theme-dark .catalog-summary strong,
body.theme-dark .trust-card strong,
body.theme-dark .timeline-item h3,
body.theme-dark .group-heading h3,
body.theme-dark .catalog .section-heading h2,
body.theme-dark .process h2,
body.theme-dark .trust h2 {
  color: #f4f1e9;
}

body.theme-dark .help-card small,
body.theme-dark .catalog-summary span,
body.theme-dark .trust-card span,
body.theme-dark .timeline-item p,
body.theme-dark .group-heading p,
body.theme-dark .section-heading p,
body.theme-dark .product-info p,
body.theme-dark .product-footer span {
  color: #cfc7b8;
}

body.theme-dark .catalog,
body.theme-dark .trust,
body.theme-dark .process {
  background:
    radial-gradient(circle at 12% 10%, rgba(215, 154, 32, 0.12), transparent 24rem),
    linear-gradient(180deg, #0f1118, #151821);
}

body.theme-dark .product-card {
  border-color: rgba(240, 189, 79, 0.18);
  background: #181b24;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

body.theme-dark .product-info {
  background:
    linear-gradient(180deg, rgba(24, 27, 36, 0.98), rgba(17, 19, 27, 0.98));
}

body.theme-dark .product-info h3,
body.theme-dark .product-footer strong {
  color: #f4f1e9;
}

body.theme-dark .tag {
  border-color: rgba(240, 189, 79, 0.34);
  background: rgba(240, 189, 79, 0.1);
  color: var(--gold-soft);
}

body.theme-dark .product-actions {
  border-top-color: rgba(240, 189, 79, 0.14);
}

body.theme-dark .project-upload-card {
  border-color: rgba(240, 189, 79, 0.28);
  background:
    radial-gradient(circle at top right, rgba(215, 154, 32, 0.18), transparent 20rem),
    linear-gradient(145deg, rgba(24, 27, 36, 0.96), rgba(17, 19, 27, 0.94));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

body.theme-dark .project-upload-card label,
body.theme-dark .project-upload-card input[type="text"],
body.theme-dark .project-upload-card textarea,
body.theme-dark .upload-drop strong {
  color: #f4f1e9;
}

body.theme-dark .project-upload-card input[type="text"],
body.theme-dark .project-upload-card textarea,
body.theme-dark .upload-input {
  border-color: rgba(240, 189, 79, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

body.theme-dark .upload-drop {
  background: rgba(255, 255, 255, 0.035);
}

body.theme-dark .upload-drop small {
  color: #cfc7b8;
}

body.theme-dark .file-feedback {
  background: rgba(240, 189, 79, 0.12);
  color: var(--gold-soft) !important;
}

.reveal {
  --reveal-y: 22px;
  --reveal-scale: 1;
  --reveal-rotate: 0deg;
  opacity: 0;
  transform: translate3d(0, var(--reveal-y), 0) scale(var(--reveal-scale)) rotate(var(--reveal-rotate));
  transition:
    opacity 420ms ease,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
}

.section-heading.reveal {
  --reveal-y: 28px;
}

.section-heading.reveal .eyebrow,
.section-heading.reveal h2,
.section-heading.reveal p {
  opacity: 0;
  transform: translate3d(-14px, 0, 0);
  transition:
    opacity 380ms ease,
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.section-heading.reveal h2 {
  transition-delay: 50ms;
}

.section-heading.reveal p {
  transition-delay: 90ms;
}

.section-heading.reveal.is-visible .eyebrow,
.section-heading.reveal.is-visible h2,
.section-heading.reveal.is-visible p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.real-photo-slot.reveal {
  --reveal-y: 28px;
  --reveal-scale: 0.97;
  --reveal-rotate: -0.8deg;
}

.real-photo-slot.reveal:nth-child(even) {
  --reveal-rotate: 0.8deg;
}

.product-card.reveal {
  --reveal-y: 30px;
  --reveal-scale: 0.98;
}

.product-card.reveal .product-image,
.real-photo-slot.reveal {
  transition:
    opacity 420ms ease,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card.reveal .product-image {
  transform: scale(1.035);
}

.product-card.reveal.is-visible .product-image {
  transform: scale(1);
}

.product-card.reveal.is-visible:hover {
  transform: translateY(-5px);
}

.product-card.reveal.is-visible:hover .product-image {
  transform: scale(1.018);
}

.help-card.reveal,
.benefit-card.reveal,
.trust-card.reveal,
.timeline-item.reveal,
.project-upload-card.reveal {
  --reveal-y: 24px;
  --reveal-scale: 0.98;
}

.benefit-card.reveal span,
.timeline-item.reveal span,
.help-card.reveal span {
  opacity: 0;
  transform: rotate(-8deg) scale(0.88);
  transition:
    opacity 360ms ease 90ms,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1) 90ms;
}

.benefit-card.reveal.is-visible span,
.timeline-item.reveal.is-visible span,
.help-card.reveal.is-visible span {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.benefit-card.reveal::after {
  transform: scale(0.9) rotate(-8deg);
  transition: transform 540ms cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card.reveal.is-visible::after {
  transform: scale(1) rotate(0deg);
}

@media (max-width: 1100px) {
  .header-main {
    grid-template-columns: 1fr;
  }

  .header-actions {
    justify-content: space-between;
  }

  .category-bar {
    justify-content: flex-start;
    overflow-x: auto;
  }

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

  .benefit-grid,
  .trust-grid,
  .real-gallery-grid,
  .timeline,
  .quick-help,
  .pathways,
  .portal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 4.8rem;
  }

  .header-main {
    display: grid;
    grid-template-columns: minmax(5.9rem, 29vw) minmax(0, 1fr);
    min-height: auto;
    gap: 0.38rem;
    align-items: center;
    justify-content: initial;
    padding: 0.52rem 0.48rem;
  }

  .brand {
    width: 100%;
    flex: 0 0 auto;
    padding: 0.24rem 0.28rem;
    border-radius: 0.38rem;
  }

  .brand img {
    width: 100%;
    max-width: 7.2rem;
  }

  .header-actions {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 2.05rem minmax(0, 0.78fr) minmax(0, 1.18fr);
    min-width: 0;
    justify-content: stretch;
    gap: 0.18rem;
    margin-left: 0;
    padding: 0.16rem;
    border-color: rgba(52, 52, 52, 0.06);
    background: rgba(255, 255, 255, 0.38);
    box-shadow: none;
    font-size: clamp(0.58rem, 2.45vw, 0.72rem);
    overflow: visible;
    scrollbar-width: none;
  }

  .header-actions::-webkit-scrollbar {
    display: none;
  }

  .header-actions a:not(.zap-link),
  .header-actions button {
    width: 100%;
    min-width: 0;
    min-height: 2.08rem;
    padding: 0 0.28rem;
    background: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .zap-link {
    width: 2.35rem;
    min-width: 2.35rem;
    height: 2.35rem;
    box-shadow: 0 8px 18px rgba(9, 13, 43, 0.08), 0 0 0 4px rgba(37, 211, 102, 0.06);
  }

  .zap-link img {
    width: 1.35rem;
    height: 1.35rem;
  }

  .theme-toggle strong {
    display: none;
  }

  .theme-toggle {
    width: 2.05rem;
    min-width: 0;
    padding: 0 !important;
    justify-content: center;
  }

  .theme-toggle span {
    width: 1.32rem;
    height: 1.32rem;
  }

  .category-bar {
    padding: 0.65rem 0.85rem;
    font-size: 0.78rem;
  }

  .hero-catalog {
    min-height: calc(100svh - 4.4rem);
    align-items: stretch;
    padding-top: 0;
  }

  .photo-a,
  .photo-b,
  .photo-c,
  .photo-d {
    width: 11.5rem;
  }

  .photo-a {
    top: 7%;
  }

  .photo-b {
    top: 13%;
  }

  .photo-c,
  .photo-d {
    display: none;
  }

  .split-choice,
  .quick-help,
  .pathways,
  .trust-grid,
  .real-gallery-grid,
  .product-grid,
  .benefit-grid,
  .timeline,
  .portal,
  form:not(.site-search) {
    grid-template-columns: 1fr;
  }

  .real-gallery-grid {
    grid-auto-rows: auto;
    gap: 1rem;
  }

  .real-photo-slot,
  .real-photo-slot.slot-large {
    grid-column: auto;
    grid-row: auto;
    min-height: clamp(18rem, 72vw, 24rem);
  }

  .real-photo-slot strong {
    max-width: 10ch;
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    line-height: 0.96;
  }

  .split-choice {
    border-top-width: 0;
    min-height: calc(100svh - 4.4rem);
  }

  .split-choice::before {
    display: none;
  }

  .catalog-choice,
  .project-choice,
  .pesca-type-choice,
  .lazer-type-choice,
  .split-choice:has(.catalog-choice:hover) .catalog-choice,
  .split-choice:has(.project-choice:hover) .project-choice,
  .split-choice:has(.pesca-type-choice:hover) .pesca-type-choice,
  .split-choice:has(.lazer-type-choice:hover) .lazer-type-choice {
    margin: 0;
    padding: 1.15rem;
    min-height: 50svh;
    clip-path: none;
  }

  .split-choice:has(.catalog-choice:hover) .project-choice,
  .split-choice:has(.project-choice:hover) .catalog-choice,
  .split-choice:has(.pesca-type-choice:hover) .lazer-type-choice,
  .split-choice:has(.lazer-type-choice:hover) .pesca-type-choice {
    filter: none;
    transform: none;
  }

  .choice-panel {
    justify-content: flex-end;
    background-position: center;
  }

  .choice-panel::before {
    opacity: 0.5;
    background:
      linear-gradient(180deg, transparent 16%, rgba(5, 7, 24, 0.18) 46%, rgba(5, 7, 24, 0.78) 100%),
      radial-gradient(circle at 18% 72%, rgba(240, 189, 79, 0.32), transparent 13rem);
  }

  .choice-panel::after {
    display: none;
  }

  .choice-panel:hover {
    transform: none;
    filter: saturate(1.2) contrast(1.05);
  }

  .choice-panel span {
    margin-bottom: 0.75rem;
    font-size: 0.72rem;
  }

  .choice-panel strong {
    max-width: 10ch;
    margin-bottom: 0.45rem;
    font-size: clamp(2.25rem, 10vw, 3.15rem);
  }

  .choice-panel small {
    max-width: 18rem;
    font-size: 0.92rem;
  }

  .choice-details {
    display: none;
  }

  .choice-panel em {
    min-height: 2.7rem;
    margin-top: 1rem;
    padding: 0 0.95rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: #17130d;
  }

  .float-whatsapp {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 3.55rem;
    min-width: 3.55rem;
    min-height: 3.55rem;
    font-size: 0.74rem;
  }

  .float-whatsapp img {
    width: 1.7rem;
    height: 1.7rem;
  }

  .float-project {
    right: 4.95rem;
    left: 0.85rem;
    bottom: 0.95rem;
    min-height: 3.25rem;
    padding: 0 0.9rem;
    text-align: center;
    font-size: 0.82rem;
  }

  .section {
    padding: clamp(2.3rem, 9vw, 3.4rem) 1rem;
  }

  .catalog-columns {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .catalog-column {
    min-width: 0;
  }

  .catalog-column .product-grid {
    gap: 1rem;
    grid-template-columns: 1fr;
  }

  .group-heading {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .group-heading span {
    width: 2.15rem;
    height: 2.15rem;
  }

  .product-card {
    border-radius: 0.55rem;
  }

  .product-card:hover {
    transform: none;
  }

  .product-card::before {
    top: 0.6rem;
    left: 0.6rem;
    font-size: 0.58rem;
  }

  .product-image {
    min-height: clamp(18rem, 86vw, 25rem);
  }

  .product-info {
    padding: 1rem;
  }

  .product-info p {
    font-size: 0.95rem;
  }

  .product-actions button {
    min-height: 3.1rem;
    font-size: 0.95rem;
  }

  .product-actions,
  .modal-card form,
  .project-upload-card,
  .upload-card-fields,
  .catalog-summary,
  .client-code-box {
    grid-template-columns: 1fr;
  }

  .upload-card-intro {
    border-right: 0;
    border-bottom: 1px solid rgba(52, 52, 52, 0.12);
    padding-right: 0;
    padding-bottom: 1rem;
  }

  .upload-card-intro h2 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .project-upload-card {
    padding: 1rem;
  }

  .upload-box {
    min-height: 12rem;
  }

  input,
  textarea,
  select,
  button {
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 11vw, 3rem);
  }
}

@media (max-width: 420px) {
  .header-main {
    grid-template-columns: minmax(5.35rem, 27vw) minmax(0, 1fr);
    gap: 0.3rem;
    padding-inline: 0.38rem;
  }

  .brand img {
    max-width: 6.6rem;
  }

  .header-actions {
    grid-template-columns: 1.95rem minmax(0, 0.74fr) minmax(0, 1.2fr);
    gap: 0.14rem;
    font-size: clamp(0.54rem, 2.38vw, 0.64rem);
  }

  .header-actions a:not(.zap-link),
  .header-actions button {
    min-height: 1.98rem;
    padding-inline: 0.2rem;
  }

  .theme-toggle {
    width: 1.95rem;
    min-width: 0;
  }

  .theme-toggle span {
    width: 1.24rem;
    height: 1.24rem;
  }

  .real-photo-slot,
  .real-photo-slot.slot-large {
    min-height: clamp(16rem, 76vw, 21rem);
    padding: 0.95rem;
  }
}

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

  .hero-backdrop img,
  .deck-photo,
  .choice-panel,
  .product-image,
  .real-photo-slot {
    will-change: auto;
  }
}
