:root {
  --black: #0b0b0b;
  --gold: #d4af37;
  --gold-bright: #f3cf63;
  --gold-glow: rgba(243, 207, 99, 0.46);
  --whatsapp: #25d366;
  --whatsapp-dark: #128c3e;
  --whatsapp-glow: rgba(37, 211, 102, 0.35);
  --offwhite: #f7f2ea;
  --white: #ffffff;
  --gray: #6f6a63;
  --panel: #13110f;
  --panel-soft: #191613;
  --line: rgba(212, 175, 55, 0.34);
  --overlay: rgba(11, 11, 11, 0.74);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--offwhite);
  font-family: "Montserrat", "Lato", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.site-header {
  align-items: center;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.88), rgba(11, 11, 11, 0.14));
  display: flex;
  height: 78px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(11, 11, 11, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

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

.nav {
  align-items: center;
  display: flex;
  gap: 26px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  color: rgba(247, 242, 234, 0.82);
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--gold);
  text-shadow: 0 0 14px var(--gold-glow);
}

.nav-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  border: 1px solid var(--whatsapp);
  border-radius: 999px;
  color: var(--white) !important;
  padding: 12px 18px;
  box-shadow: 0 8px 24px var(--whatsapp-glow), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.menu-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 42px;
}

.menu-toggle span {
  background: var(--white);
  display: block;
  height: 1px;
  position: absolute;
  width: 17px;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.hero {
  min-height: 100svh;
  overflow: hidden;
  padding: 112px clamp(18px, 5vw, 76px) 34px;
  position: relative;
}

.hero-media {
  background: var(--black);
  inset: 0;
  position: absolute;
}

.hero-slide {
  inset: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  transition: opacity 2000ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.hero-slide img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  width: 100%;
  will-change: transform;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-slide.is-active img {
  animation: heroDrift 8s cubic-bezier(0.2, 0.55, 0.35, 1) forwards;
}

.hero-slide.is-leaving {
  opacity: 1;
  z-index: 1;
}

.hero-slide.is-leaving img {
  transform: scale(1.16);
}

@keyframes heroDrift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.16);
  }
}

.final-cta-media {
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.68), rgba(11, 11, 11, 0.08) 54%, rgba(11, 11, 11, 0.18)),
    linear-gradient(180deg, transparent 58%, rgba(11, 11, 11, 0.62)),
    url("./assets/product-home.webp") center/cover;
  inset: 0;
  position: absolute;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.68) 0%, rgba(11, 11, 11, 0.34) 32%, rgba(11, 11, 11, 0.04) 66%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.08), transparent 54%, rgba(11, 11, 11, 0.52));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 2;
}

.final-cta-media::after {
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.22), transparent 28%),
    radial-gradient(circle at 12% 70%, rgba(212, 175, 55, 0.22), transparent 28%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 690px;
  min-height: calc(100svh - 250px);
  position: relative;
  z-index: 3;
}

.hero-content .eyebrow {
  margin-bottom: 12px;
}

.hero-content h1 {
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 0.98;
  margin-bottom: 20px;
  max-width: 680px;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.5);
}

.hero-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.92rem, 1.1vw, 1.04rem);
  line-height: 1.7;
  margin-left: 0;
  margin-right: 0;
  max-width: 610px;
  text-align: left;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

.hero-content .hero-actions {
  margin-top: 22px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 16px;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(243, 207, 99, 0.38);
}

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

h1,
h2 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  color: var(--offwhite);
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  line-height: 0.96;
  margin-bottom: 28px;
  max-width: 980px;
  overflow-wrap: break-word;
}

h2 {
  color: var(--offwhite);
  font-size: clamp(1.8rem, 3.3vw, 3.8rem);
  line-height: 1.02;
  margin-bottom: 18px;
}

h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-content p:not(.eyebrow),
.split-copy p,
.authority-content p,
.final-cta-content p,
.ambient-card p,
.section-heading p:not(.eyebrow) {
  color: rgba(247, 242, 234, 0.78);
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
  text-align: center;
}

.hero-actions,
.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 50px;
  padding: 0 22px;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.text-link:hover,
.ambient-card a:hover,
.nav-whatsapp:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  box-shadow: 0 12px 32px var(--whatsapp-glow), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  color: var(--white);
}

.button.ghost {
  border: 1px solid rgba(37, 211, 102, 0.58);
  box-shadow: inset 0 0 0 1px rgba(37, 211, 102, 0.08);
  color: var(--white);
}

.button.large {
  min-height: 56px;
  padding-inline: 28px;
}

.hero-strip {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-left: auto;
  max-width: 760px;
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.hero-strip div,
.metrics div {
  background: rgba(11, 11, 11, 0.68);
  padding: 20px 22px;
}

.hero-strip div + div,
.metrics div + div {
  border-left: 1px solid var(--line);
}

.hero-strip strong,
.metrics strong {
  color: var(--offwhite);
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
}

.hero-strip strong {
  font-size: clamp(1.15rem, 1.8vw, 1.75rem);
}

.hero-strip span,
.metrics span {
  color: rgba(247, 242, 234, 0.66);
  display: block;
  font-size: 0.78rem;
  margin-top: 7px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 620px);
  min-height: 650px;
}

.split-media {
  background:
    linear-gradient(90deg, transparent 58%, rgba(11, 11, 11, 0.24)),
    url("./assets/experience-bedroom.webp") center/cover;
}

.store-media {
  aspect-ratio: 1478 / 1064;
  background: #f4eadc url("./assets/store-location.webp") center/contain no-repeat;
  min-height: 0;
}

.store-address {
  margin: 0 0 1.5rem;
  color: var(--off-white);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.7;
}

.store {
  align-items: center;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
}

.split-copy,
.categories,
.inspiration,
.testimonials,
.differentials,
.authority,
.consultative,
.final-cta {
  padding: clamp(52px, 7vw, 88px) clamp(18px, 5vw, 76px);
}

.split-copy {
  align-self: center;
}

.text-link {
  color: var(--gold);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 12px;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(243, 207, 99, 0.32);
  transition: transform 180ms ease;
}

.differentials {
  background:
    linear-gradient(rgba(11, 11, 11, 0.62), rgba(11, 11, 11, 0.76)),
    url("./assets/product-kitchen-oak.webp") center/cover;
}

.section-heading {
  margin: 0 auto 30px;
  max-width: 860px;
  text-align: center;
}

.section-heading h2,
.section-heading p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.compact {
  max-width: 680px;
}

.pill-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 980px;
}

.pill-grid article {
  background: rgba(11, 11, 11, 0.62);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  gap: 8px;
  min-height: 130px;
  padding: 22px;
}

.pill-grid strong {
  color: var(--gold-bright);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
}

.pill-grid span {
  color: rgba(247, 242, 234, 0.88);
  font-size: 0.88rem;
}

.commercial-conditions {
  align-items: center;
  background:
    linear-gradient(110deg, rgba(24, 20, 15, 0.98), rgba(11, 11, 11, 0.98) 58%, rgba(20, 17, 13, 0.98)),
    var(--black);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--offwhite);
  display: grid;
  gap: clamp(34px, 6vw, 90px);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  overflow: hidden;
  padding: clamp(52px, 7vw, 88px) clamp(18px, 5vw, 76px);
  position: relative;
}

.commercial-conditions::before {
  border: 1px solid rgba(212, 175, 55, 0.18);
  content: "";
  inset: 14px;
  pointer-events: none;
  position: absolute;
}

.commercial-copy,
.commercial-cards {
  position: relative;
  z-index: 1;
}

.commercial-copy {
  max-width: 700px;
}

.commercial-copy .eyebrow {
  color: var(--gold-bright);
  text-shadow: 0 0 14px rgba(243, 207, 99, 0.24);
}

.commercial-copy h2 {
  color: var(--offwhite);
  margin-bottom: 16px;
  max-width: 680px;
}

.commercial-copy > p:not(.eyebrow) {
  color: rgba(247, 242, 234, 0.74);
  margin-bottom: 26px;
  max-width: 620px;
}

.commercial-button {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  border-color: var(--whatsapp);
  color: var(--white);
}

.commercial-button:hover {
  background: linear-gradient(135deg, #2be171, var(--whatsapp-dark));
  border-color: #2be171;
}

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

.commercial-cards article {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(212, 175, 55, 0.045)),
    rgba(11, 11, 11, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  color: var(--offwhite);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
  padding: clamp(24px, 3vw, 38px);
}

.commercial-cards span {
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.commercial-cards strong {
  color: var(--gold-bright);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.15rem, 4vw, 4.4rem);
  font-weight: 600;
  line-height: 0.98;
  margin: 10px 0 18px;
}

.commercial-cards p {
  color: rgba(247, 242, 234, 0.76);
  font-size: 0.86rem;
  margin: 0;
}

.categories,
.testimonials {
  background: #050505;
}

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

.category-card {
  align-items: stretch;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(180deg, transparent 38%, rgba(11, 11, 11, 0.68)),
    var(--img) center/cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  padding: 22px;
}

.category-card.wide {
  grid-column: span 2;
}

.category-card span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-shadow: 0 0 14px rgba(243, 207, 99, 0.36);
}

.category-card h3 {
  align-self: stretch;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 1.9vw, 2.15rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 10px;
  text-transform: none;
  text-align: left;
}

.category-card p {
  align-self: stretch;
  color: rgba(247, 242, 234, 0.78);
  font-size: 0.8rem;
  margin: 0;
  text-align: left;
}

.ambient-list {
  display: grid;
  gap: 12px;
}

.ambient-card {
  align-items: end;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.66), rgba(11, 11, 11, 0.04) 46%, rgba(11, 11, 11, 0.12)),
    var(--img) center/cover;
  display: flex;
  min-height: 330px;
  padding: clamp(26px, 4vw, 48px);
}

.kitchen-banner {
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.64), rgba(11, 11, 11, 0.03) 48%, rgba(11, 11, 11, 0.08)),
    url("./assets/banner-kitchen-desktop.webp") center/cover;
}

.living-banner {
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.64), rgba(11, 11, 11, 0.03) 48%, rgba(11, 11, 11, 0.08)),
    url("./assets/banner-living-desktop.webp") center/cover;
}

.bedroom-banner {
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.64), rgba(11, 11, 11, 0.03) 48%, rgba(11, 11, 11, 0.08)),
    url("./assets/banner-bedroom-desktop.webp") center/cover;
}

.bathroom-banner {
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.64), rgba(11, 11, 11, 0.03) 48%, rgba(11, 11, 11, 0.08)),
    url("./assets/banner-bathroom-desktop.webp") center/cover;
}

.office-banner {
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.64), rgba(11, 11, 11, 0.03) 48%, rgba(11, 11, 11, 0.08)),
    url("./assets/banner-office-desktop.webp") center/cover;
}

.ambient-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 3.2vw, 2.9rem);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
}

.ambient-card p {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.hero-content h1,
.hero-content p,
.split-copy h2,
.split-copy p,
.authority-content h2,
.authority-content p,
.consultative-content h2,
.consultative-content p,
.final-cta-content h2,
.final-cta-content p {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.hero-content p:not(.eyebrow) {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.ambient-card a {
  background: rgba(11, 11, 11, 0.64);
  border: 1px solid rgba(37, 211, 102, 0.58);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 11px 16px;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

.authority {
  align-items: end;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.7) 0%, rgba(11, 11, 11, 0.4) 36%, rgba(11, 11, 11, 0.08) 68%),
    linear-gradient(180deg, transparent 62%, rgba(11, 11, 11, 0.52)),
    url("./assets/authority-materials.webp") center/cover;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 760px);
  min-height: 540px;
}

.consultative {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.72) 0%, rgba(11, 11, 11, 0.34) 38%, transparent 68%),
    url("./assets/venda-consultiva-whatsapp.webp") center/cover;
  display: flex;
  min-height: 560px;
}

.consultative-content {
  max-width: 760px;
}

.consultative-content p:not(.eyebrow) {
  color: rgba(247, 242, 234, 0.8);
  max-width: 650px;
}

.metrics {
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  text-align: center;
}

.metrics strong {
  font-size: clamp(1.15rem, 1.65vw, 1.65rem);
}

.metric-plus {
  color: var(--gold-bright);
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}

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

blockquote {
  background: rgba(255, 255, 255, 0.03);
  border-left: 1px solid var(--gold);
  margin: 0;
  padding: 24px;
}

blockquote p {
  color: rgba(247, 242, 234, 0.82);
}

cite {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(243, 207, 99, 0.3);
}

.final-cta {
  min-height: 620px;
  position: relative;
}

.final-cta-media {
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.7), rgba(11, 11, 11, 0.1) 52%, rgba(11, 11, 11, 0.2)),
    linear-gradient(180deg, transparent 58%, rgba(11, 11, 11, 0.64)),
    url("./assets/product-bedroom-light.webp") center/cover;
}

.final-cta-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.floating-whatsapp {
  align-items: center;
  background: transparent;
  border-radius: 999px;
  bottom: 20px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  color: #150d04;
  display: inline-flex;
  height: 58px;
  justify-content: center;
  position: fixed !important;
  right: 20px !important;
  width: 58px;
  opacity: 1;
  pointer-events: auto;
  transform: translateZ(0);
  z-index: 999;
}

.floating-whatsapp img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.footer {
  align-items: center;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 54px 18px;
  text-align: center;
}

.footer img {
  height: 76px;
  object-fit: contain;
  width: 230px;
}

.footer p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  margin-bottom: 0;
}

.footer span {
  color: rgba(247, 242, 234, 0.62);
}

.footer a {
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-page {
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.08), transparent 420px),
    var(--black);
}

.privacy-header {
  align-items: center;
  background: rgba(11, 11, 11, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 86px;
  padding: 12px clamp(18px, 5vw, 76px);
}

.privacy-main {
  margin: 0 auto;
  max-width: 1080px;
  padding: clamp(60px, 9vw, 110px) clamp(18px, 5vw, 76px);
}

.privacy-intro {
  border-bottom: 1px solid var(--line);
  margin-bottom: 42px;
  padding-bottom: 38px;
}

.privacy-intro h1 {
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  max-width: 850px;
}

.privacy-intro p,
.privacy-content p,
.privacy-content li {
  color: rgba(247, 242, 234, 0.78);
}

.privacy-updated {
  color: var(--gold-bright) !important;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.privacy-content {
  display: grid;
  gap: 18px;
}

.privacy-content section {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  padding: clamp(24px, 4vw, 42px);
}

.privacy-content h2 {
  color: var(--gold-bright);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.privacy-content li + li {
  margin-top: 9px;
}

.privacy-content address {
  color: rgba(247, 242, 234, 0.84);
  font-style: normal;
  line-height: 1.9;
}

.privacy-content address a {
  color: var(--gold-bright);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: revealUp 700ms ease forwards;
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: inline-flex;
    border-color: var(--gold);
    background: rgba(11, 11, 11, 0.72);
  }

  .nav {
    background: rgba(11, 11, 11, 0.97);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 18px;
    position: absolute;
    right: 0;
    top: 78px;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

  .nav-whatsapp {
    margin-top: 8px;
  }

  .hero-strip,
  .metrics,
  .commercial-conditions,
  .split-section,
  .authority,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-strip div + div,
  .metrics div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .split-media {
    min-height: 380px;
  }

  .store-media {
    min-height: 0;
    width: 100%;
  }

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

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

@media (max-width: 600px) {
  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(11, 11, 11, 0.34), transparent 38%, rgba(11, 11, 11, 0.68)),
      linear-gradient(90deg, rgba(11, 11, 11, 0.46), transparent 78%);
  }

  .kitchen-banner {
    background:
      linear-gradient(90deg, rgba(11, 11, 11, 0.58), transparent 68%),
      linear-gradient(180deg, transparent 52%, rgba(11, 11, 11, 0.56)),
      url("./assets/banner-kitchen-mobile.webp") center/cover;
  }

  .living-banner {
    background:
      linear-gradient(90deg, rgba(11, 11, 11, 0.58), transparent 68%),
      linear-gradient(180deg, transparent 52%, rgba(11, 11, 11, 0.56)),
      url("./assets/banner-living-mobile.webp") center/cover;
  }

  .bedroom-banner {
    background:
      linear-gradient(90deg, rgba(11, 11, 11, 0.58), transparent 68%),
      linear-gradient(180deg, transparent 52%, rgba(11, 11, 11, 0.56)),
      url("./assets/banner-bedroom-mobile.webp") center/cover;
  }

  .bathroom-banner {
    background:
      linear-gradient(90deg, rgba(11, 11, 11, 0.58), transparent 68%),
      linear-gradient(180deg, transparent 52%, rgba(11, 11, 11, 0.56)),
      url("./assets/banner-bathroom-mobile.webp") center/cover;
  }

  .office-banner {
    background:
      linear-gradient(90deg, rgba(11, 11, 11, 0.58), transparent 68%),
      linear-gradient(180deg, transparent 52%, rgba(11, 11, 11, 0.56)),
      url("./assets/banner-office-mobile.webp") center/cover;
  }

  .site-header {
    height: 72px;
    padding-inline: 16px;
  }

  .menu-toggle {
    position: fixed;
    right: 16px;
    top: 15px;
    z-index: 50;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
  }

  .menu-toggle span {
    background: var(--gold);
  }

  .brand img {
    height: 42px;
    width: 132px;
  }

  .nav {
    top: 72px;
  }

  .hero {
    max-width: 100vw;
    min-height: 100svh;
    padding: 96px 16px 24px;
    width: 100%;
  }

  .hero * {
    min-width: 0;
  }

  .hero-content {
    justify-content: flex-end;
    min-height: calc(100svh - 310px);
    min-width: 0;
    padding-bottom: 18px;
    width: calc(100vw - 32px);
  }

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

  .hero-content h1 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1;
    margin-bottom: 16px;
    max-width: calc(100vw - 32px);
    overflow-wrap: anywhere;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 0.88rem;
    line-height: 1.55;
    max-width: calc(100vw - 32px);
    overflow-wrap: anywhere;
  }

  .hero-content .eyebrow {
    font-size: 0.65rem;
    margin-bottom: 10px;
  }

  .hero-actions,
  .hero-strip {
    max-width: calc(100vw - 32px);
    width: 100%;
  }

  .hero .button {
    max-width: 100%;
    white-space: normal;
  }

  .hero-strip strong {
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(1.75rem, 8.5vw, 2.65rem);
  }

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

  .button {
    padding-inline: 16px;
  }

  .pill-grid,
  .commercial-cards,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .commercial-conditions::before {
    inset: 8px;
  }

  .commercial-cards article {
    min-height: 190px;
  }

  .pill-grid article {
    min-height: auto;
  }

  .consultative {
    background:
      linear-gradient(180deg, rgba(11, 11, 11, 0.12), rgba(11, 11, 11, 0.7) 70%),
      url("./assets/venda-consultiva-whatsapp.webp") 66% center/cover;
    align-items: flex-end;
    min-height: 660px;
  }

  .category-card.wide {
    grid-column: auto;
  }

  .ambient-card,
  .category-card {
    min-height: 290px;
  }

  .floating-whatsapp {
    bottom: 12px;
    height: 56px;
    left: auto !important;
    right: 16px !important;
    width: 56px;
  }

  .footer {
    padding-bottom: 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition-duration: 1ms;
  }

  .hero-slide.is-active img {
    animation: none;
  }
}

