﻿:root {
  --navy: #081a2b;
  --navy-2: #0b2237;
  --teal: #14a3a0;
  --teal-light: #5cc8c5;
  --soft: #f4f9f9;
  --paper: #ffffff;
  --line: #e3eceb;
  --text: #0b2237;
  --muted: #41566b;
  --muted-2: #7a8fa0;
  --shadow: 0 26px 60px rgba(10, 34, 55, 0.12);
  --container: min(1240px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--soft);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.nav-toggle {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  width: var(--container);
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  cursor: pointer;
}

.brand strong {
  font-family: Sora, Manrope, sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand strong span {
  color: var(--teal);
}

.brand small {
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.contact-btn {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 800;
}

.nav-links a {
  color: var(--navy-2);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #0e7c7a;
  background: #e7f4f3;
}

.contact-btn {
  margin-left: 12px;
  color: #fff;
  background: var(--navy-2);
}

.contact-btn:hover {
  background: var(--teal);
}

.version-switch {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 6px;
  color: #9db4c5;
  background: rgba(8, 26, 43, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(8, 26, 43, 0.35);
  backdrop-filter: blur(12px);
}

.version-switch span {
  padding: 0 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
}

.version-switch a {
  padding: 8px 13px;
  color: #9db4c5;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.version-switch a.active,
.version-switch a:hover {
  color: #fff;
  background: var(--teal);
}

.hero {
  position: relative;
  overflow: hidden;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--teal-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero h1,
.section-head h2 {
  margin: 0;
  font-family: Sora, Manrope, sans-serif;
  font-weight: 800;
  letter-spacing: -1.5px;
  text-wrap: balance;
}

.hero p,
.section-head p,
.card p,
.category-card p {
  color: var(--muted);
  text-wrap: pretty;
}

.hero-dark p {
  color: #c8d8e4;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(20, 163, 160, 0.34);
}

.btn-primary:hover {
  background: #0e7c7a;
}

.btn-ghost {
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  color: var(--teal-light);
  border-color: var(--teal-light);
}

.btn-light {
  color: var(--navy-2);
  background: #fff;
  border: 1.5px solid #c7d8d7;
}

.btn-light:hover {
  color: #0e7c7a;
  border-color: var(--teal);
}

.hero-a {
  min-height: 640px;
  background: var(--navy);
}

.hero-a .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-a::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(88deg, rgba(8, 26, 43, 0.98) 0%, rgba(8, 26, 43, 0.84) 44%, rgba(8, 26, 43, 0.28) 100%);
}

.hero-a .container {
  position: relative;
  z-index: 1;
  padding: 104px 0 0;
}

.hero-a .copy {
  max-width: 680px;
  display: grid;
  gap: 24px;
}

.hero-a h1 {
  max-width: 680px;
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 1.06;
}

.hero-a h1 span {
  color: var(--teal-light);
}

.hero-a .copy > p {
  max-width: 560px;
  margin: 0;
  font-size: 17.5px;
  line-height: 1.65;
}

.cred-row {
  margin-top: 68px;
  padding: 28px 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.cred {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cred b {
  color: var(--teal-light);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}

.cred strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-family: Sora, Manrope, sans-serif;
  font-size: 15.5px;
}

.cred span {
  color: #9db4c5;
  font-size: 13.5px;
}

.hero-b {
  height: 460px;
  background: var(--navy);
}

.hero-b .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-b::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 26, 43, 0.94) 0%, rgba(8, 26, 43, 0.62) 50%, rgba(8, 26, 43, 0.08) 100%);
}

.hero-b .container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-b h1 {
  max-width: 590px;
  color: #fff;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.1;
}

.hero-b p {
  max-width: 500px;
  margin: 0;
  font-size: 16.5px;
}

.strip {
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.92);
  background: #0e7c7a;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  overflow: hidden;
}

.hero-c {
  min-height: min(520px, calc(100vh - 76px));
  background: #eff7f6;
}

.hero-c .outline-word {
  position: absolute;
  top: 18px;
  left: 50%;
  color: transparent;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(4.8rem, 14vw, 11.3rem);
  font-weight: 800;
  letter-spacing: 10px;
  white-space: nowrap;
  transform: translateX(-50%);
  -webkit-text-stroke: 1.5px rgba(20, 163, 160, 0.14);
}

.floating-product {
  position: absolute;
  width: min(250px, 20vw);
  filter: drop-shadow(0 28px 30px rgba(10, 34, 55, 0.2));
  animation: float 6s ease-in-out infinite;
}

.floating-left {
  left: 3.5%;
  bottom: 42px;
  transform: rotate(-7deg);
}

.floating-right {
  right: 3.5%;
  bottom: 46px;
  transform: rotate(6deg);
  animation-delay: 0.9s;
}

.hero-c .copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(56px, 8vh, 86px) 0 clamp(50px, 7vh, 76px);
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.hero-c .code {
  color: #0e7c7a;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 3px;
}

.hero-c h1 {
  color: var(--navy-2);
  font-size: clamp(2.6rem, 4.7vw, 4.15rem);
  line-height: 1.02;
}

.hero-c h1 span {
  color: var(--teal);
}

.hero-c p {
  max-width: 560px;
  margin: 0;
  font-size: 16.5px;
}

.marquee {
  overflow: hidden;
  padding: 10px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee div {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee span {
  padding-right: 60px;
  color: #0e7c7a;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 3px;
}

.hero-d {
  min-height: 620px;
  color: #fff;
  background: radial-gradient(1100px 620px at 72% 38%, #11344f 0%, #081a2b 62%);
}

.hero-d::before {
  position: absolute;
  width: 620px;
  height: 620px;
  right: 4%;
  top: -14%;
  content: "";
  background: radial-gradient(circle, rgba(20, 163, 160, 0.3) 0%, rgba(20, 163, 160, 0) 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-d::after {
  position: absolute;
  width: 420px;
  height: 420px;
  right: 26%;
  bottom: -18%;
  content: "";
  background: radial-gradient(circle, rgba(217, 83, 127, 0.16) 0%, rgba(217, 83, 127, 0) 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-d .container {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-d .copy {
  display: grid;
  gap: 22px;
}

.hero-d h1 {
  max-width: 620px;
  color: #fff;
  font-size: clamp(2.8rem, 4.7vw, 4.65rem);
  line-height: 1.04;
}

.hero-d h1 span {
  color: var(--teal-light);
}

.hero-d p {
  max-width: 500px;
  margin: 0;
  color: #c8d8e4;
  font-size: 17px;
  line-height: 1.65;
}

.stage-3d {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  perspective: 1100px;
}

.product-3d {
  width: min(470px, 90%);
  filter: drop-shadow(0 44px 48px rgba(0, 0, 0, 0.5));
  transform-style: preserve-3d;
  will-change: transform;
}

.shadow-3d {
  position: absolute;
  bottom: 34px;
  left: 50%;
  width: 320px;
  height: 44px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  transform: translateX(-50%);
}

.chip-3d {
  position: absolute;
  padding: 10px 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.chip-3d.top-left {
  top: 8%;
  left: 4%;
}

.chip-3d.top-right {
  top: 16%;
  right: 2%;
  background: #d9534f;
  border-color: #d9534f;
  box-shadow: 0 14px 30px rgba(217, 83, 79, 0.4);
}

.chip-3d.bottom-right {
  right: 6%;
  bottom: 14%;
}

.dots {
  padding-top: 12px;
  color: var(--teal);
  font-size: 13px;
  letter-spacing: 12px;
  text-align: center;
}

.section {
  padding: 64px 0;
}

.section-head {
  margin-bottom: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-head h2 {
  color: var(--navy-2);
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.1;
}

.section-head p {
  max-width: 560px;
  margin: 12px 0 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card,
.category-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover,
.category-card:hover {
  border-color: #bfe0de;
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.card {
  padding: 34px 30px;
}

.card img {
  height: 84px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.card h3,
.category-card h3 {
  margin: 0 0 10px;
  color: var(--navy-2);
  font-family: Sora, Manrope, sans-serif;
  font-size: 19px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card p,
.category-card p {
  margin: 0;
  font-size: 14.8px;
  line-height: 1.62;
}

.category-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.category-media {
  height: 250px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #edf8f7;
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-body {
  padding: 26px 28px 30px;
}

.plus {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--navy-2);
  border-radius: 999px;
  font-size: 22px;
}

.category-card:hover .plus {
  background: var(--teal);
}

.product-showcase-section {
  padding: 28px 0;
  background: #fff;
  scroll-margin-top: 96px;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(330px, 0.76fr) minmax(620px, 1.24fr);
  gap: clamp(24px, 3.5vw, 46px);
  align-items: stretch;
}

.product-showcase-intro {
  min-height: 452px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 0 6px;
}

.product-showcase-intro h2 {
  max-width: 430px;
  margin: 12px 0 0;
  color: var(--navy-2);
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(2.5rem, 3.85vw, 4rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -1.5px;
  text-wrap: balance;
}

.product-showcase-intro > p:not(.eyebrow) {
  max-width: 410px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15.8px;
  line-height: 1.62;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.25fr) minmax(260px, 0.85fr);
  grid-template-rows: 218px 218px;
  gap: 16px;
}

.product-category-tile {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 26, 43, 0.08);
  border-radius: 20px;
  color: #fff;
  background: #eef6f6;
  box-shadow: 0 24px 70px rgba(8, 26, 43, 0.12);
  isolation: isolate;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.product-category-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 82px rgba(8, 26, 43, 0.18);
}

.product-category-tile:focus-visible {
  outline: 3px solid rgba(20, 163, 160, 0.44);
  outline-offset: 3px;
}

.product-category-tile::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background: linear-gradient(180deg, rgba(8, 26, 43, 0) 0%, rgba(8, 26, 43, 0.06) 45%, rgba(8, 26, 43, 0.72) 100%);
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.product-category-tile::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.tile-large {
  grid-row: 1 / span 2;
}

.tile-copy {
  position: absolute;
  left: 22px;
  right: 64px;
  bottom: 24px;
  z-index: 3;
  transform: translateY(0);
  transition: transform 0.26s ease;
}

.tile-copy span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 11px;
  color: var(--navy-2);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.6px;
}

.tile-copy h3 {
  margin: 0;
  color: #fff;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(1.9rem, 2.75vw, 2.85rem);
  line-height: 0.98;
  letter-spacing: -1px;
  text-transform: none;
}

.tile-copy p {
  max-width: 410px;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13.3px;
  line-height: 1.42;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.24s ease, transform 0.24s ease, max-height 0.24s ease, margin-top 0.24s ease;
}

.product-category-tile:hover .tile-copy,
.product-category-tile:focus-visible .tile-copy {
  transform: translateY(-18px);
}

.product-category-tile:hover .tile-copy p,
.product-category-tile:focus-visible .tile-copy p {
  max-height: 72px;
  margin-top: 9px;
  opacity: 1;
  transform: translateY(0);
}

.tile-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy-2);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
}

.product-category-tile img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: none;
  transition: transform 0.28s ease;
}

.tile-pastas {
  background:
    radial-gradient(circle at 24% 18%, rgba(236, 108, 203, 0.58), rgba(236, 108, 203, 0) 30%),
    radial-gradient(circle at 82% 28%, rgba(42, 190, 228, 0.42), rgba(42, 190, 228, 0) 34%),
    linear-gradient(135deg, #4e217d 0%, #142d82 48%, #071a4d 100%);
}

.tile-pastas::before {
  background:
    linear-gradient(180deg, rgba(8, 26, 43, 0) 0%, rgba(8, 26, 43, 0.02) 42%, rgba(8, 26, 43, 0.72) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 58%);
}

.tile-pastas img {
  top: 30px;
  right: 12px;
  bottom: auto;
  left: 12px;
  width: calc(100% - 24px);
  height: 312px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 26px 32px rgba(4, 17, 31, 0.38));
  transform: translateY(0) scale(1.14);
  transform-origin: center top;
}

.tile-pastas:hover img {
  transform: translateY(-8px) scale(1.17);
}

.tile-pastas .tile-copy {
  left: 22px;
  right: 70px;
  bottom: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.tile-pastas .tile-copy span {
  color: var(--navy-2);
  background: rgba(255, 255, 255, 0.86);
  border: 0;
}

.tile-cepillos {
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 28%),
    radial-gradient(circle at 16% 18%, rgba(107, 218, 231, 0.48), rgba(107, 218, 231, 0) 34%),
    linear-gradient(135deg, #bde9f4 0%, #4fb7cf 46%, #0b6782 100%);
}

.tile-cepillos::before {
  background:
    linear-gradient(180deg, rgba(8, 26, 43, 0) 0%, rgba(8, 26, 43, 0.03) 36%, rgba(8, 26, 43, 0.74) 100%),
    linear-gradient(90deg, rgba(8, 26, 43, 0.2), rgba(8, 26, 43, 0) 62%);
}

.tile-cepillos img {
  top: 12px;
  right: 12px;
  bottom: auto;
  left: 12px;
  width: calc(100% - 24px);
  height: 132px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 22px rgba(4, 17, 31, 0.28));
  transform: translateY(0) scale(1.22);
  transform-origin: center top;
}

.tile-cepillos:hover img {
  transform: translateY(-8px) scale(1.26);
}

.tile-cepillos .tile-copy {
  right: 48px;
  bottom: 18px;
}

.tile-insumos {
  background:
    radial-gradient(circle at 78% 18%, rgba(72, 164, 255, 0.36), rgba(72, 164, 255, 0) 32%),
    radial-gradient(circle at 18% 86%, rgba(255, 198, 72, 0.22), rgba(255, 198, 72, 0) 28%),
    linear-gradient(135deg, #101923 0%, #17283d 48%, #07101b 100%);
}

.tile-insumos::before {
  background:
    linear-gradient(180deg, rgba(8, 26, 43, 0) 0%, rgba(8, 26, 43, 0.04) 36%, rgba(8, 26, 43, 0.82) 100%),
    linear-gradient(90deg, rgba(8, 26, 43, 0.18), rgba(8, 26, 43, 0) 62%);
}

.tile-insumos img {
  top: 12px;
  right: 12px;
  bottom: auto;
  left: 12px;
  width: calc(100% - 24px);
  height: 132px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.42));
  transform: translateY(0) scale(1.22);
  transform-origin: center top;
}

.tile-insumos:hover img {
  transform: translateY(-8px) scale(1.26);
}

.tile-insumos .tile-copy {
  right: 46px;
  bottom: 18px;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-showcase-intro {
    position: relative;
    top: auto;
    min-height: auto;
    gap: 26px;
  }

  .product-showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .product-category-tile,
  .tile-large {
    min-height: 360px;
    grid-row: auto;
  }

  .tile-pastas img {
    top: 28px;
    right: 12px;
    left: 12px;
    width: calc(100% - 24px);
    height: 58%;
    object-fit: contain;
    object-position: center;
    transform: translateY(0) scale(1.08);
  }

  .tile-cepillos img {
    top: 16px;
    right: 12px;
    left: 12px;
    width: calc(100% - 24px);
    height: 58%;
    object-fit: contain;
    object-position: center;
    transform: translateY(0) scale(1.08);
  }

  .tile-insumos img {
    top: 16px;
    right: 12px;
    left: 12px;
    width: calc(100% - 24px);
    height: 58%;
    object-fit: contain;
    object-position: center;
    transform: translateY(0) scale(1.08);
  }

  :root {
    --container: min(100% - 32px, 1240px);
  }

  .nav-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #e7f4f3;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px 0;
    background: var(--navy-2);
  }

  .nav {
    height: auto;
    min-height: 76px;
    align-items: flex-start;
    padding: 18px 0;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    flex-basis: 100%;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding-top: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .contact-btn {
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .hero-a .container,
  .hero-c .copy {
    padding-top: 82px;
  }

  .hero-d,
  .hero-d .container {
    min-height: auto;
  }

  .hero-d .container {
    grid-template-columns: 1fr;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .stage-3d {
    min-height: 360px;
  }

  .cred-row,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
  }

  .floating-product {
    display: none;
  }

  .footer .container {
    display: grid;
  }
}

@media (max-width: 620px) {
  .brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .nav-links a,
  .contact-btn {
    padding: 8px 12px;
    font-size: 13px;
  }

  .hero-a,
  .hero-c {
    min-height: auto;
  }

  .hero-b {
    height: auto;
    min-height: 520px;
  }

  .hero-a .container,
  .hero-b .container,
  .hero-c .copy {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero-c .copy {
    gap: 14px;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .hero-a h1,
  .hero-b h1,
  .hero-c h1 {
    font-size: 2.45rem;
  }

  .hero-d h1 {
    font-size: 2.45rem;
  }

  .chip-3d {
    display: none;
  }

  .cred-row {
    margin-top: 42px;
  }

  .version-switch {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
.page-hero h1{font-family:Sora,Manrope,sans-serif;font-size:clamp(2.5rem,5vw,4.3rem);line-height:1.02;margin:0 0 18px}.page-hero p{color:#41566b}.page-hero img{border-radius:28px;box-shadow:0 26px 60px rgba(10,34,55,.12)}.catalog-layout{display:grid;grid-template-columns:230px 1fr;gap:28px;align-items:start}.filters{position:sticky;top:98px;padding:22px;background:#0b2237;border-radius:22px;color:#fff}.filters button{display:block;width:100%;margin:0 0 10px;padding:12px 16px;border:0;border-radius:999px;background:#fff;color:#0b2237;font-weight:900;text-align:left;cursor:pointer}.filters button.active{background:#14a3a0;color:#fff}.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.product-card{background:#fff;border:1px solid #e3eceb;border-radius:22px;padding:20px;box-shadow:0 18px 48px rgba(10,34,55,.06)}.product-card .media{height:230px;display:grid;place-items:center;background:#edf8f7;border-radius:18px}.product-card img{max-width:90%;max-height:90%;object-fit:contain}.product-card h3{margin:14px 0 8px;font-family:Sora,Manrope,sans-serif}.tag{color:#0e7c7a;font-size:12px;font-weight:900;letter-spacing:2px;text-transform:uppercase}.contact-hero{position:relative;margin:40px auto 0;padding:70px;border-radius:28px;overflow:hidden;color:white;background:linear-gradient(90deg,rgba(8,26,43,.97),rgba(8,26,43,.78)),url('assets/p2-01.png') center/cover}.contact-hero h1{max-width:820px;margin:0 0 28px;font-family:Sora,Manrope,sans-serif;font-size:clamp(2.5rem,5vw,4.6rem);line-height:1}.contact-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}.contact-card{padding:28px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18);border-radius:20px;color:white}.contact-card p{color:rgba(255,255,255,.78)}.modal{position:fixed;inset:0;z-index:100;display:none;align-items:center;justify-content:center;padding:18px}.modal.open{display:flex}.modal:before{content:"";position:absolute;inset:0;background:rgba(4,17,31,.72);backdrop-filter:blur(12px)}.modal-panel{position:relative;z-index:1;display:grid;grid-template-columns:.9fr 1.1fr;width:min(920px,100%);max-height:calc(100vh - 36px);overflow:auto;background:white;border-radius:28px}.modal-media{display:grid;place-items:center;min-height:420px;background:#edf8f7}.modal-media img{max-height:350px;object-fit:contain}.modal-content{padding:40px}.modal-close{position:absolute;right:16px;top:16px;width:40px;height:40px;border:0;border-radius:50%;background:white;box-shadow:0 10px 30px rgba(0,0,0,.12);cursor:pointer;font-weight:900}@media(max-width:980px){.page-hero,.catalog-layout{grid-template-columns:1fr}.product-grid,.contact-grid{grid-template-columns:1fr 1fr}.filters{position:static}}@media(max-width:640px){.product-grid,.contact-grid{grid-template-columns:1fr}.contact-hero{padding:34px 22px}.modal-panel{grid-template-columns:1fr}}

.site-header {
  z-index: 80;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.mainframe-hero-shell {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 50%, rgba(228, 231, 229, 0.92), rgba(238, 240, 238, 0.5) 32%, rgba(248, 249, 248, 0) 58%),
    linear-gradient(90deg, #ffffff 0%, #f7f8f7 36%, #e8e9e7 72%, #dfe0de 100%);
}

.mainframe-hero-video {
  position: absolute;
  top: 0;
  right: -2vw;
  bottom: 0;
  z-index: 1;
  width: min(820px, 64vw);
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  pointer-events: none;
  background: transparent;
  filter: contrast(1.08) saturate(1.08);
  opacity: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.mainframe-hero-overlay {
  position: fixed;
  top: 76px;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: min(68vw, 880px);
  pointer-events: none;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.94) 48%, rgba(255, 255, 255, 0.68) 72%, rgba(255, 255, 255, 0) 100%);
}

.mainframe-hero {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: calc(100vh - 76px);
  align-items: center;
  padding: 0 clamp(24px, 5vw, 80px);
}

.mainframe-hero-content {
  max-width: 640px;
  padding: 34px 0;
}

.mainframe-kicker {
  margin: 0 0 18px;
  color: #0e7c7a;
  font-family: Sora, Manrope, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.mainframe-hero h1 {
  margin: 0;
  color: var(--navy-2);
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -1.5px;
  text-wrap: balance;
}

.mainframe-hero h1 span {
  color: var(--teal);
}

.mainframe-hero-content > p:not(.mainframe-kicker) {
  max-width: 570px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.mainframe-hero .actions {
  margin-top: 24px;
}

.mainframe-hero .btn {
  min-height: 56px;
  border-radius: 999px;
}

.mainframe-hero .btn-light {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(8, 26, 43, 0.14);
  backdrop-filter: blur(10px);
}

main > .section,
.footer {
  position: relative;
  z-index: 2;
  background: var(--soft);
}

@media (max-width: 900px) {
  .mainframe-hero-overlay {
    width: 100vw;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 64%, rgba(255, 255, 255, 0.34) 100%);
  }

  .mainframe-hero-video {
    right: -18vw;
    width: 78vw;
    opacity: 0.9;
  }

  .mainframe-hero {
    padding: 0 28px;
  }

  .mainframe-hero-content {
    max-width: 560px;
  }

  .mainframe-hero h1 {
    font-size: clamp(2.7rem, 10vw, 4.6rem);
  }
}

@media (max-width: 620px) {
  .product-showcase-section {
    padding: 58px 0;
    scroll-margin-top: 270px;
  }

  .product-showcase-intro h2 {
    font-size: 2.45rem;
  }

  .product-showcase-intro .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-category-tile,
  .tile-large {
    min-height: 430px;
    border-radius: 18px;
  }

  .tile-copy {
    left: 20px;
    right: 20px;
    bottom: 22px;
    transform: translateY(0);
  }

  .tile-copy h3 {
    font-size: 2.1rem;
  }

  .tile-copy p {
    max-width: 280px;
    max-height: 80px;
    margin-top: 9px;
    opacity: 1;
    transform: translateY(0);
  }

  .tile-arrow {
    top: 18px;
    right: 18px;
    bottom: auto;
  }

  .tile-pastas img {
    top: 22px;
    right: 12px;
    left: 12px;
    width: calc(100% - 24px);
    height: 54%;
    object-fit: contain;
    object-position: center;
    transform: translateY(0) scale(1.04);
  }

  .tile-pastas .tile-copy {
    right: 20px;
    padding: 0;
  }

  .tile-cepillos img {
    top: 16px;
    right: 12px;
    left: 12px;
    width: calc(100% - 24px);
    height: 54%;
    object-fit: contain;
    object-position: center;
    transform: translateY(0) scale(1.04);
  }

  .tile-insumos img {
    top: 16px;
    right: 12px;
    left: 12px;
    width: calc(100% - 24px);
    height: 54%;
    object-fit: contain;
    object-position: center;
    transform: translateY(0) scale(1.04);
  }

  .mainframe-hero-video {
    top: 76px;
    right: -34vw;
    width: 116vw;
    height: calc(100vh - 76px);
    object-position: 50% center;
    opacity: 0.56;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
  }

  .mainframe-hero-overlay {
    width: 100vw;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 74%, rgba(255, 255, 255, 0.46) 100%);
  }

  .mainframe-hero {
    align-items: center;
    padding: 0 20px;
  }

  .mainframe-hero-content {
    padding: 52px 0 28px;
  }

  .mainframe-kicker {
    font-size: 10px;
    letter-spacing: 2.8px;
    margin-bottom: 14px;
  }

  .mainframe-hero h1 {
    font-size: 2.18rem;
    line-height: 1;
  }

  .mainframe-hero-content > p:not(.mainframe-kicker) {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 16px;
  }

  .mainframe-hero .actions {
    margin-top: 18px;
  }

  .mainframe-hero .btn {
    min-height: 50px;
    padding: 13px 20px;
  }
}
