/* =========================================================
   COLLUCCI - STYLE.CSS
   ALTERAÇÕES RÁPIDAS:
   - Paleta de cores: bloco :root
   - Tamanho dos cards: .product-grid e .product-card
   - Responsividade: @media no final do arquivo
   ========================================================= */

:root {
  --black: #050505;
  --black-2: #0c0c0e;
  --white: #ffffff;
  --cream: #f5efe2;
  --muted: #b7ad9b;
  --gold: #d4af37;
  --gold-light: #f3dc8a;
  --gold-dark: #6e4d13;
  --border: rgba(212, 175, 55, 0.22);
  --glass: rgba(255, 255, 255, 0.055);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  --container: 1180px;
  --header-height: 82px;
  --transition: 260ms ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 36%),
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.05), transparent 24%),
    var(--black);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.11), transparent 18%),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.18), transparent 20%),
    radial-gradient(circle at 92% 46%, rgba(255, 255, 255, 0.09), transparent 22%),
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.07), transparent 24%),
    radial-gradient(circle at 52% 62%, rgba(212, 175, 55, 0.08), transparent 26%);
  filter: blur(28px);
  opacity: 0.58;
  animation: whiteLightsBreath 8s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  top: 18%;
  right: -230px;
  width: 780px;
  height: 260px;
  pointer-events: none;
  z-index: 0;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background:
    radial-gradient(ellipse at 88% 50%, rgba(255, 255, 255, 0.72), transparent 18%),
    radial-gradient(ellipse at 68% 45%, rgba(255, 255, 255, 0.42), transparent 26%),
    radial-gradient(ellipse at 45% 50%, rgba(255, 255, 255, 0.24), transparent 34%),
    radial-gradient(ellipse at 20% 55%, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.08) 22%,
      rgba(255, 255, 255, 0.28) 48%,
      rgba(255, 255, 255, 0.55) 72%,
      rgba(255, 255, 255, 0.12) 100%
    );
  filter: blur(34px);
  opacity: 0.34;
  transform: rotate(-18deg);
  animation: whiteTailMove 6s ease-in-out infinite alternate;
}

.header,
main,
.footer {
  position: relative;
  z-index: 1;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-menu a { transition: color var(--transition), transform var(--transition); }
.nav-menu a:hover { color: var(--gold-light); transform: translateY(-1px); }

.nav-highlight {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--cream) !important;
  background: rgba(212, 175, 55, 0.075);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--glass);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--gold-light);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  padding: 76px 0;
}

.hero-light {
  position: absolute;
  inset: 12% auto auto 56%;
  width: 470px;
  height: 470px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.08; letter-spacing: -0.045em; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; font-weight: 800; }
h1 { max-width: 920px; font-size: clamp(2.7rem, 7vw, 6.1rem); }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { font-size: 1.18rem; }

.hero-text, .section-description, .about-text, .cta-card p, .footer p {
  color: var(--muted);
}

.hero-text {
  max-width: 650px;
  margin: 22px 0 30px;
  font-size: 1.08rem;
}

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

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

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

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  box-shadow: 0 18px 48px rgba(212, 175, 55, 0.24);
}

.btn-primary:hover { box-shadow: 0 26px 66px rgba(212, 175, 55, 0.34); }

.btn-secondary {
  color: var(--cream);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.trust-row {
  max-width: 660px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.trust-row div {
  padding: 16px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.trust-row strong { display: block; color: var(--cream); font-size: 1.1rem; }
.trust-row span { color: var(--muted); font-size: 0.88rem; }

.hero-visual { position: relative; }

.hero-product-showcase {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
  padding: clamp(24px, 5vw, 38px);
  border: 1px solid rgba(212, 175, 55, 0.30);
  border-radius: 38px;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.10), transparent 26%),
    radial-gradient(circle at 24% 82%, rgba(212, 175, 55, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(212, 175, 55, 0.17), rgba(255, 255, 255, 0.028) 42%, rgba(10, 10, 10, 0.92));
  box-shadow:
    0 42px 100px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset;
  overflow: hidden;
}

.hero-product-showcase::before {
  content: "";
  position: absolute;
  inset: clamp(22px, 4vw, 32px);
  z-index: 1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.07), transparent 34%),
    linear-gradient(180deg, #050505 0%, #030303 100%);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.46) inset,
    0 0 0 1px rgba(212, 175, 55, 0.07);
}

.hero-product-showcase::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 54px;
  width: 70%;
  height: 36px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.55), transparent 70%);
  filter: blur(10px);
  z-index: 0;
}

.hero-product {
  position: absolute;
  max-height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.55));
}

.hero-product-main {
  z-index: 3;
  width: min(62%, 290px);
  transform: translateY(6px);
}

.hero-logo-main {
  z-index: 3;
  width: min(68%, 360px);
  max-height: 68%;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.38));
}

.hero-product-left,
.hero-product-right {
  z-index: 2;
  width: min(44%, 210px);
  opacity: 0.92;
}

.hero-product-left { left: 8%; bottom: 84px; transform: rotate(-8deg); }
.hero-product-right { right: 8%; bottom: 88px; transform: rotate(8deg); }

.floating-card {
  position: absolute;
  right: -12px;
  bottom: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 22px;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

.floating-card span { display: block; color: var(--muted); font-size: 0.82rem; }
.floating-card strong { color: var(--gold-light); }

.quality-section {
  position: relative;
  min-height: 132vh;
  overflow: hidden;
  overflow: clip;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  background: #020202;
}

.quality-stage {
  position: relative;
  min-height: 132vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.quality-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08) 42%, transparent 70%);
}

.quality-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: min(100vh, 820px);
  padding: 72px 0;
}

.quality-copy {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.quality-copy h2 {
  margin-top: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.2rem, 6.3vw, 6.6rem);
  line-height: 0.92;
}

.quality-copy p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 24px;
  color: rgba(245, 239, 226, 0.78);
  font-size: 1.08rem;
}

.quality-button {
  margin-top: 30px;
}

.quality-media {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: #020202;
  overflow: hidden;
}

.quality-video,
.quality-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.quality-video {
  opacity: 1;
}

.quality-fallback {
  display: none;
}

.quality-media.has-fallback .quality-video {
  display: none;
}

.quality-media.has-fallback .quality-fallback {
  display: block;
}

.collucci-experience {
  position: relative;
  min-height: 128vh;
  border-top: 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  overflow: hidden;
  isolation: isolate;
}

.collucci-experience::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  height: 150px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(243, 220, 138, 0.055), transparent 58%),
    radial-gradient(ellipse at 24% 8%, rgba(255, 255, 255, 0.035), transparent 46%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.28), rgba(3, 3, 3, 0.10) 45%, transparent 100%);
  filter: blur(16px);
  opacity: 0.62;
}

.experience-stage {
  --product-y: 82px;
  --product-scale: 0.88;
  --product-rotate: -7deg;
  --product-opacity: 0;
  --product-blur: 8px;
  --copy-y: 34px;
  --copy-opacity: 0;
  --copy-blur: 8px;
  --mist-opacity: 0.18;
  --experience-accent: rgba(212, 175, 55, 0.13);
  --experience-accent-soft: rgba(255, 255, 255, 0.07);
  position: sticky;
  top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.16), transparent 16%),
    radial-gradient(circle at 50% 58%, var(--experience-accent), transparent 30%),
    radial-gradient(circle at 80% 62%, rgba(255, 255, 255, 0.07), transparent 26%),
    linear-gradient(112deg, #020202 0%, #08080a 46%, #15120c 100%);
}

.experience-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 22%, transparent 78%, rgba(243, 220, 138, 0.08)),
    radial-gradient(ellipse at 50% 78%, rgba(255, 255, 255, 0.20), transparent 35%),
    radial-gradient(ellipse at 50% 104%, var(--experience-accent), transparent 44%);
  mix-blend-mode: screen;
  opacity: 0.64;
  transition: background 520ms ease;
}

.experience-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10%;
  width: min(880px, 94vw);
  height: 32%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.14), var(--experience-accent) 34%, transparent 72%);
  filter: blur(26px);
  pointer-events: none;
  transition: background 520ms ease;
}

.experience-atmosphere,
.experience-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.experience-atmosphere {
  background:
    radial-gradient(ellipse at 50% 32%, rgba(255, 255, 255, 0.13), transparent 20%),
    radial-gradient(ellipse at 50% 56%, var(--experience-accent), transparent 32%);
  filter: blur(12px);
  opacity: 0.72;
  transition: background 520ms ease;
}

.experience-particles {
  opacity: 0.42;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(243, 220, 138, 0.62) 0 1px, transparent 1.4px);
  background-size: 118px 118px, 168px 168px;
  background-position: 12px 30px, 44px 64px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.experience-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--header-height));
  display: block;
  padding: clamp(46px, 7vw, 82px) 0;
}

.experience-visual {
  position: absolute;
  inset: 0;
  min-height: 100%;
  display: grid;
  place-items: center;
  perspective: 1200px;
  pointer-events: none;
}

.experience-carousel {
  position: absolute;
  left: clamp(0px, 2vw, 32px);
  top: 0;
  bottom: 0;
  z-index: 5;
  width: min(720px, 62vw);
  overflow: hidden;
  pointer-events: auto;
  touch-action: pan-y;
}

.experience-carousel:focus-visible {
  outline: 1px solid rgba(243, 220, 138, 0.55);
  outline-offset: -12px;
}

.experience-track {
  position: absolute;
  inset: 0;
  overflow: hidden;
  cursor: grab;
}

.experience-track:active {
  cursor: grabbing;
}

.experience-product {
  --slide-x: 0px;
  --slide-scale: 1;
  --slide-rotate: 0deg;
  --slide-opacity: 1;
  position: absolute;
  left: 50%;
  top: 46%;
  z-index: 4;
  width: clamp(260px, 30vw, 390px);
  max-width: 100%;
  transform:
    translate(-50%, -50%)
    translateX(var(--slide-x))
    translateY(var(--product-y))
    scale(var(--product-scale))
    scale(var(--slide-scale))
    rotate(var(--product-rotate))
    rotate(var(--slide-rotate))
    rotateY(-5deg);
  opacity: min(var(--product-opacity), var(--slide-opacity));
  transform-origin: 50% 72%;
  transition:
    opacity 560ms ease,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 620ms ease;
  filter:
    blur(var(--product-blur))
    drop-shadow(0 48px 48px rgba(0, 0, 0, 0.72))
    drop-shadow(-18px 12px 28px rgba(212, 175, 55, 0.13))
    drop-shadow(18px -8px 24px rgba(255, 255, 255, 0.07));
  will-change: transform, opacity;
}

.experience-product.is-current {
  --slide-x: 0px;
  --slide-scale: 1;
  --slide-rotate: 0deg;
  --slide-opacity: 1;
  z-index: 6;
}

.experience-product.is-prev {
  --slide-x: clamp(-430px, -38vw, -300px);
  --slide-scale: 0.78;
  --slide-rotate: -6deg;
  --slide-opacity: 0.54;
  z-index: 3;
}

.experience-product.is-next {
  --slide-x: clamp(300px, 38vw, 430px);
  --slide-scale: 0.78;
  --slide-rotate: 6deg;
  --slide-opacity: 0.54;
  z-index: 3;
}

.experience-product.is-hidden {
  --slide-scale: 0.7;
  --slide-opacity: 0;
  pointer-events: none;
}

.experience-product::before {
  content: "";
  position: absolute;
  inset: 8% 18% 6%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 52% 44%, rgba(255, 255, 255, 0.22), transparent 28%),
    radial-gradient(ellipse at 58% 60%, var(--experience-accent), transparent 58%);
  filter: blur(24px);
  transition: background 520ms ease;
}

.experience-product picture {
  position: relative;
  display: block;
}

.experience-product img {
  width: 100%;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.experience-product::after {
  content: "";
  position: absolute;
  inset: 7% 22% 9% 21%;
  z-index: 5;
  border-radius: 40% 40% 30% 30%;
  background:
    linear-gradient(104deg, transparent 11%, rgba(255, 255, 255, 0.64) 18%, rgba(255, 255, 255, 0.13) 24%, transparent 35%),
    linear-gradient(77deg, transparent 52%, rgba(243, 220, 138, 0.22) 58%, transparent 65%);
  mix-blend-mode: screen;
  opacity: 0.58;
  pointer-events: none;
}

.experience-arrow {
  position: absolute;
  top: 50%;
  z-index: 12;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(243, 220, 138, 0.42);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.64);
  color: var(--gold-light);
  font-size: 1.7rem;
  line-height: 1;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transform: translateY(-50%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.experience-arrow:hover,
.experience-arrow:focus-visible {
  border-color: rgba(243, 220, 138, 0.82);
  background: rgba(18, 15, 9, 0.86);
  transform: translateY(-50%) scale(1.06);
}

.experience-arrow-prev {
  left: 10px;
}

.experience-arrow-next {
  right: 10px;
}

.experience-reflection {
  position: absolute;
  left: 50%;
  bottom: 9%;
  z-index: 1;
  width: min(48vw, 540px);
  height: 74px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.21), var(--experience-accent) 34%, transparent 72%);
  filter: blur(15px);
  opacity: 0.72;
  transition: background 520ms ease;
}

.experience-mist {
  position: absolute;
  left: 50%;
  top: 22%;
  z-index: 3;
  width: min(50vw, 620px);
  height: 44%;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 28% 60%, rgba(255, 255, 255, 0.28), transparent 28%),
    radial-gradient(ellipse at 58% 38%, var(--experience-accent), transparent 36%),
    radial-gradient(ellipse at 72% 70%, var(--experience-accent-soft), transparent 32%);
  filter: blur(28px);
  opacity: var(--mist-opacity);
  transition: background 520ms ease, opacity 520ms ease;
}

.experience-light-beam {
  position: absolute;
  z-index: 2;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.86), rgba(243, 220, 138, 0.42), transparent);
  filter: blur(0.3px);
  opacity: 0.45;
  pointer-events: none;
}

.experience-light-beam-one {
  top: 28%;
  left: 12%;
  width: 64%;
  transform: rotate(-15deg);
}

.experience-light-beam-two {
  right: 8%;
  bottom: 24%;
  width: 54%;
  transform: rotate(-7deg);
}

.experience-copy {
  position: absolute;
  right: 0;
  bottom: clamp(30px, 7vh, 72px);
  z-index: 7;
  max-width: 390px;
  opacity: var(--copy-opacity);
  transform: translateY(var(--copy-y));
  filter: blur(var(--copy-blur));
  transition:
    opacity 760ms ease 90ms,
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1) 90ms,
    filter 820ms ease 90ms;
}

.experience-copy.is-changing {
  opacity: 0;
  transform: translateY(calc(var(--copy-y) + 12px));
  filter: blur(6px);
  transition-duration: 220ms;
}

.experience-copy h2 {
  font-size: clamp(2.3rem, 4.5vw, 4.7rem);
}

.experience-text {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.05rem;
}

.experience-price-box {
  display: inline-grid;
  gap: 4px;
  margin: 28px 0 20px;
  padding: 0 0 0 16px;
  border-left: 2px solid rgba(243, 220, 138, 0.72);
}

.experience-price-box span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.experience-price-box strong {
  color: var(--gold-light);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1;
}

.experience-button {
  min-width: min(100%, 290px);
  box-shadow:
    0 18px 48px rgba(212, 175, 55, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.brand-strip {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: -82px;
  padding: 12px 0 34px;
  transform: translateY(-10px);
  border-top: 1px solid rgba(212, 175, 55, 0.10);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(243, 220, 138, 0.07), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0));
}

.brand-strip::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(820px, 88vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(243, 220, 138, 0.58), transparent);
  opacity: 0.72;
  pointer-events: none;
}

.brand-logo-carousel {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 3.4vw, 42px);
  align-items: center;
  min-height: 146px;
  padding: 4px 0 8px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-logo-column {
  position: relative;
  height: 134px;
  overflow: hidden;
  background: transparent;
}

.brand-logo-slot {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(112%);
  filter: blur(8px);
  background: transparent;
  transition:
    opacity 680ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 720ms ease,
    visibility 0ms linear 720ms;
}

.brand-logo-slot.is-active {
  z-index: 2;
  visibility: visible;
  opacity: 0.68;
  transform: translateY(0);
  filter: blur(0) drop-shadow(0 0 16px rgba(243, 220, 138, 0.08));
  transition:
    opacity 680ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 720ms ease,
    visibility 0ms;
}

.brand-logo-slot.is-next {
  z-index: 1;
  visibility: visible;
  opacity: 0;
  transform: translateY(112%);
  filter: blur(8px);
  transition:
    opacity 680ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 720ms ease,
    visibility 0ms;
}

.brand-logo-slot.is-leaving {
  z-index: 2;
  visibility: visible;
  opacity: 0;
  transform: translateY(-112%);
  filter: blur(8px);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 620ms ease,
    visibility 0ms linear 620ms;
}

.brand-logo-slot img {
  display: block;
  width: 100%;
  max-width: 276px;
  height: 122px;
  object-fit: contain;
  background: transparent;
  transform: scale(0.96);
  transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
}

.brand-logo-slot.is-loading {
  opacity: 0;
  visibility: hidden;
}

.brand-logo-column:hover .brand-logo-slot.is-active:not(.is-leaving) {
  filter: blur(0) drop-shadow(0 0 18px rgba(243, 220, 138, 0.16));
}

.brand-logo-column:hover .brand-logo-slot.is-active:not(.is-leaving) {
  opacity: 0.86;
}

.brand-logo-column:hover .brand-logo-slot.is-active:not(.is-leaving) img {
  transform: scale(1);
}

.brand-logo-fallback {
  display: none;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.brand-logo-slot.has-error img {
  display: none;
}

.brand-logo-slot.has-error .brand-logo-fallback {
  display: block;
}

.benefits, .products-section, .about, .testimonials, .final-cta {
  padding: 90px 0;
}

.brand-strip + .products-section {
  padding-top: 82px;
}

.section-heading { max-width: 790px; margin-bottom: 32px; }
.section-description { margin-top: 16px; font-size: 1.02rem; }

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

.benefit-card, .product-card, .about-card, .testimonial-card, .cta-card {
  border: 1px solid rgba(212, 175, 55, 0.17);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.018)),
    rgba(12, 12, 14, 0.86);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.benefit-card { padding: 30px; }

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 1.25rem;
}

.benefit-card p, .testimonial-card p, .product-description {
  margin-top: 12px;
  color: var(--muted);
}

.products-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    rgba(255, 255, 255, 0.015);
}

.products-section .container {
  position: relative;
  z-index: 1;
}

.toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.filters { display: flex; flex-wrap: wrap; gap: 10px; }

.filter-button {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.035);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.filter-button:hover, .filter-button.active {
  color: var(--black);
  background: var(--gold);
  transform: translateY(-1px);
}

.catalog-controls {
  display: flex;
  align-items: end;
  gap: 12px;
  flex-wrap: wrap;
}

.search-box, .sort-box {
  min-width: min(100%, 230px);
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.search-box { min-width: min(100%, 290px); }

.search-box input, .sort-box select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--cream);
  outline: none;
  background: rgba(255, 255, 255, 0.045);
}

.sort-box select {
  min-height: 50px;
  padding-right: 46px;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
  color: var(--cream);
  font-weight: 700;
  line-height: 1.35;
  background-color: #101013;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-light) 50%),
    linear-gradient(135deg, var(--gold-light) 50%, transparent 50%);
  background-position:
    calc(100% - 21px) 50%,
    calc(100% - 15px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.sort-box select:hover {
  border-color: rgba(212, 175, 55, 0.5);
  background-color: #161619;
}

.sort-box select option {
  color: var(--cream);
  background: #101013;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.search-box input:focus, .sort-box select:focus {
  border-color: rgba(212, 175, 55, 0.68);
  box-shadow: 0 0 0 4px rgba(240, 240, 234, 0.12);
}

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

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: clamp(42px, 4.6vw, 58px);
  height: clamp(42px, 4.6vw, 58px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(243, 220, 138, 0.32);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(5, 5, 5, 0.76);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.carousel-arrow:hover {
  color: #111;
  border-color: rgba(243, 220, 138, 0.78);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-50%) scale(1.04);
}

.carousel-arrow span {
  display: block;
  margin-top: -3px;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1;
}

.carousel-arrow-left { left: clamp(-14px, -1.2vw, -6px); }
.carousel-arrow-right { right: clamp(-14px, -1.2vw, -6px); }

.product-card {
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.48);
  box-shadow: 0 28px 80px rgba(212, 175, 55, 0.16);
}

.product-image-box {
  position: relative;
  overflow: hidden;
  background: #ffffffea;
}

.product-image {
  width: 100%;
  height: 260px;
  object-fit: contain;
  padding: 18px;
  transition: transform 520ms ease, filter 520ms ease;
}

.product-card:hover .product-image {
  transform: scale(1.055);
  filter: contrast(1.04) saturate(1.04);
}

.badge, .stock {
  position: absolute;
  top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.stock { left: 14px; color: #111; background: rgba(255, 255, 255, 0.92); }
.badge { right: 14px; color: #040404; background: var(--gold); }

.product-body { padding: 18px; }

.product-brand {
  display: block;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-title { min-height: 52px; margin-top: 7px; }

.product-description {
  min-height: 74px;
  font-size: 0.94rem;
}

.price-box {
  display: grid;
  gap: 6px;
  margin: 16px 0;
}

.credit-price { color: var(--muted); font-weight: 700; }

.pix-price {
  color: var(--gold-light);
  font-size: 1.18rem;
  font-weight: 950;
}

.product-card .btn { width: 100%; }

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.about-card, .cta-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: clamp(28px, 5vw, 54px);
}

.about-text { display: grid; gap: 14px; }
.testimonial-card { padding: 28px; }
.testimonial-card strong { display: inline-block; margin-top: 18px; color: var(--gold-light); }

.cta-card {
  align-items: start;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--black-2);
}

.contact-form { display: grid; gap: 12px; }
.contact-form label { color: var(--cream); font-weight: 900; }

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px;
  color: var(--cream);
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  resize: vertical;
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.13);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  padding: 14px 18px;
  border-radius: 999px;
  color: #111;
  font-weight: 950;
  background: linear-gradient(135deg, #f7e7ad, var(--gold));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  transition: transform var(--transition);
}

.floating-whatsapp:hover { transform: translateY(-4px) scale(1.02); }

.footer {
  padding: 54px 0 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  background: #030303;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.8fr;
  gap: 28px;
}

.footer-logo {
  width: 150px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer h3 { margin-bottom: 12px; }

.footer a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  transition: color var(--transition);
}

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

.footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


@keyframes whiteLightsBreath {
  0% {
    opacity: 0.55;
    transform: scale(1);
  }

  100% {
    opacity: 0.95;
    transform: scale(1.04);
  }
}

@keyframes whiteTailMove {
  0% {
    transform: translateX(0) translateY(0) rotate(-18deg) scaleX(1);
    opacity: 0.55;
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  }

  50% {
    transform: translateX(-34px) translateY(18px) rotate(-14deg) scaleX(1.08);
    opacity: 0.86;
    border-radius: 45% 55% 62% 38% / 60% 45% 55% 40%;
  }

  100% {
    transform: translateX(-68px) translateY(-10px) rotate(-21deg) scaleX(1.14);
    opacity: 0.68;
    border-radius: 70% 30% 50% 50% / 42% 58% 35% 65%;
  }
}

/* MARCA D'ÁGUA FIXA NO BACKGROUND */
.fixed-watermark {
  position: fixed;
  top: 50%;
  left: 50%;

  width: min(620px, 90vw);
  height: min(620px, 90vw);

  background-image: url("assets/logo-collucci-transparente (1).png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  opacity: 0.07;
  transform: translate(-50%, -50%);

  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1120px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .hero-grid, .about-card, .cta-card { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; }
  .benefit-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .toolbar { align-items: stretch; flex-direction: column; }
  .experience-grid {
    padding: 40px 0 56px;
  }
  .experience-visual {
    min-height: 100%;
  }
  .experience-carousel {
    left: 0;
    width: min(680px, 70vw);
  }
  .experience-copy {
    left: 0;
    right: auto;
    bottom: 32px;
    max-width: 420px;
  }
  .experience-product { width: min(54vw, 360px); }
  .experience-mist {
    left: 50%;
    width: min(74vw, 620px);
  }
}

@media (max-width: 768px) {
  :root { --header-height: 74px; }
  .menu-button { display: inline-block; }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--border);  
    border-radius: 22px;
    background: rgba(5, 5, 5, 0.96);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero { padding: 54px 0 68px; }
  .trust-row { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-product-showcase { min-height: 500px; }
  .quality-section {
    min-height: auto;
  }
  .quality-stage {
    position: relative;
    top: auto;
    min-height: auto;
    display: block;
  }
  .quality-stage::before {
    display: none;
  }
  .quality-media {
    position: relative;
    aspect-ratio: 16 / 9;
    min-height: auto;
  }
  .quality-video,
  .quality-fallback {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
  }
  .quality-content {
    min-height: auto;
    padding: 28px 0 58px;
  }
  .quality-copy {
    max-width: 660px;
  }
  .quality-copy h2 {
    font-size: clamp(2.7rem, 12vw, 4.4rem);
  }
  .quality-copy p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 0.98rem;
  }
  .benefits, .products-section, .about, .testimonials, .final-cta { padding: 68px 0; }
  .brand-strip {
    margin-top: 36px;
    padding: 28px 0 34px;
    transform: none;
  }
  .brand-strip + .products-section {
    padding-top: 68px;
  }
  .brand-logo-carousel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 22px;
    min-height: 224px;
  }
  .brand-logo-column {
    height: 102px;
  }
  .brand-logo-slot img {
    max-width: 196px;
    height: 92px;
  }
  .brand-logo-slot,
  .brand-logo-slot.is-active,
  .brand-logo-slot.is-next,
  .brand-logo-slot.is-leaving,
  .brand-logo-column:hover .brand-logo-slot.is-active:not(.is-leaving) {
    filter: none;
  }
  .brand-logo-slot {
    transition:
      opacity 360ms ease,
      transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0ms linear 420ms;
  }
  .brand-logo-slot.is-active,
  .brand-logo-slot.is-next {
    transition:
      opacity 360ms ease,
      transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0ms;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .collucci-experience { min-height: auto; }
  .experience-stage {
    position: relative;
    top: auto;
    align-items: start;
    min-height: auto;
    contain: layout paint;
  }
  .experience-stage::before {
    filter: blur(8px);
    opacity: 0.48;
  }
  .experience-stage::after {
    filter: blur(14px);
    opacity: 0.58;
  }
  .experience-atmosphere {
    filter: blur(8px);
    opacity: 0.48;
  }
  .experience-particles {
    opacity: 0.24;
    background-size: 148px 148px, 210px 210px;
  }
  .experience-grid {
    min-height: 780px;
    padding: 28px 0 52px;
  }
  .experience-visual { min-height: 100%; }
  .experience-carousel {
    top: 0;
    bottom: 38%;
    width: 100%;
    transform: translateZ(0);
  }
  .experience-product {
    width: min(74vw, 305px);
    filter: drop-shadow(0 30px 32px rgba(0, 0, 0, 0.62));
    transition:
      opacity 340ms ease,
      transform 380ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }
  .experience-product::before {
    filter: blur(14px);
  }
  .experience-product::after {
    opacity: 0.38;
  }
  .experience-product.is-prev {
    --slide-x: clamp(-320px, -72vw, -230px);
    --slide-scale: 0.72;
  }
  .experience-product.is-next {
    --slide-x: clamp(230px, 72vw, 320px);
    --slide-scale: 0.72;
  }
  .experience-arrow {
    width: 54px;
    height: 54px;
    font-size: 1.8rem;
    background: rgba(5, 5, 5, 0.74);
  }
  .experience-arrow-prev { left: 12px; }
  .experience-arrow-next { right: 12px; }
  .experience-copy {
    left: 0;
    right: 0;
    bottom: 28px;
    max-width: 100%;
    filter: none;
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }
  .experience-copy.is-changing {
    filter: none;
    transform: translateY(8px);
  }
  .experience-copy h2 { font-size: clamp(2.2rem, 11vw, 3.8rem); }
  .experience-text { font-size: 0.98rem; }
  .experience-price-box {
    margin: 22px 0 16px;
    padding: 0 0 0 14px;
  }
  .experience-button { width: 100%; }
  .experience-mist {
    left: 50%;
    top: 13%;
    width: 88vw;
    height: 38%;
    filter: blur(14px);
  }
  .experience-reflection {
    bottom: 5%;
    width: 84vw;
    height: 54px;
    filter: blur(9px);
  }
  .experience-light-beam { opacity: 0.32; }
  .experience-light-beam-one { left: 0; width: 92%; }
  .experience-light-beam-two { right: 0; width: 82%; }
}

@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr; }
  .catalog-controls, .search-box, .sort-box { width: 100%; }
  .sort-box select {
    min-height: 54px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container { width: min(100% - 24px, var(--container)); }
  .brand img, .footer-logo { width: 126px; }
  .hero-actions, .btn { width: 100%; }
  .quality-section {
    min-height: auto;
  }
  .quality-content {
    padding: 24px 0 46px;
  }
  .quality-copy {
    text-align: left;
  }
  .quality-copy h2 {
    max-width: 340px;
  }
  .quality-button {
    margin-top: 24px;
  }
  .brand-strip {
    margin-top: 46px;
    padding-top: 34px;
  }
  .brand-logo-carousel {
    gap: 18px 16px;
  }
  .brand-logo-slot img {
    max-width: 176px;
    height: 84px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-card {
    max-width: 360px;
    margin-inline: auto;
  }

  .hero-product-showcase {
    min-height: 410px;
    border-radius: 30px;
  }
  .hero-product-showcase::before {
    inset: 20px;
    border-radius: 23px;
  }
  .hero-product-main { width: 58%; }
  .hero-logo-main {
    width: min(72%, 270px);
    max-height: 66%;
  }
  .hero-product-left, .hero-product-right { width: 36%; bottom: 70px; }

  .fixed-watermark {
    opacity: 0.045;
    width: 360px;
    height: 360px;
  }

  .product-image {
    height: 220px;
    padding: 18px;
  }

  .product-body {
    padding: 16px;
  }

  .product-title {
    min-height: auto;
    font-size: 1.05rem;
  }

  .product-description {
    min-height: auto;
    font-size: 0.9rem;
  }

  .price-box {
    margin: 12px 0;
  }

  .pix-price {
    font-size: 1.08rem;
  }

  .collucci-experience { min-height: auto; }
  .experience-grid { min-height: 740px; }
  .experience-product { width: min(74vw, 285px); }
  .experience-carousel { bottom: 40%; }
  .experience-copy { max-width: 100%; }
  .experience-particles {
    background-size: 120px 120px, 170px 170px;
    opacity: 0.24;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
