/* ─── TOKENS ──────────────────────────────────────── */
:root {
  --black:      #0a0806;
  --black-soft: #110e0a;
  --gold-light: #f0d080;
  --gold-mid:   #c9a84c;
  --gold-dark:  #8a6a1e;
  --cream:      #f5edd6;
  --white:      #fff;
  --font-display: 'GFS Didot', 'Didot', Georgia, serif;
  --font-script:  'Dancing Script', 'Great Vibes', cursive;
  --font-body:    'Cormorant Garamond', Georgia, serif;
  --font-sc:      'Cormorant SC', 'Cormorant Garamond', Georgia, serif;
  --gold-warm:    #e8c870;
}

/* ─── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; overflow-x: hidden; }
a, button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ─── CURSOR ──────────────────────────────────────── */
#cursor {
  position: fixed;
  width: 14px; height: 14px;
  border: 1.5px solid var(--gold-mid);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .12s ease, width .2s, height .2s, background .2s;
}
#cursor-dot {
  position: fixed;
  width: 4px; height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
}

:focus-visible {
  outline: 1.5px solid var(--gold-mid);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── HEADER ──────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4vw;
  height: 72px;
  background: rgba(10,8,6,.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201,168,76,.18);
  transition: background .3s;
}

.header-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.header-logo-img {
  width: 42px; height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.35);
  filter: drop-shadow(0 0 10px rgba(240,208,128,.55));
}
.header-logo-text {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
}

nav { display: flex; gap: 2.4rem; }
nav a {
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: .78;
  transition: color .25s, opacity .25s;
  cursor: none;
}
nav a:hover { color: var(--gold-light); opacity: 1; }

.header-cta {
  font-family: var(--font-display);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-mid);
  border: 1px solid var(--gold-dark);
  padding: .5rem 1.2rem;
  text-decoration: none;
  transition: background .25s, color .25s;
  cursor: none;
}
.header-cta:hover { background: var(--gold-mid); color: var(--black); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: none; background: none; border: none; padding: 10px;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--gold-mid); transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%; height: 100vh; height: 100svh; min-height: 600px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}

#bokeh-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, transparent 30%, rgba(6,5,4,.75) 100%),
    linear-gradient(to bottom, rgba(6,5,4,.65) 0%, transparent 20%, transparent 70%, rgba(6,5,4,.9) 100%);
  pointer-events: none; z-index: 1;
}

.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 1.8rem;
  padding: 0 2rem;
}

.hero-logo-img {
  width: clamp(240px, 75vw, 680px);
  max-width: 100%;
  height: auto;
  opacity: 0;
  animation: heroLogoIn 1.4s cubic-bezier(.22,1,.36,1) .3s forwards;
  filter: drop-shadow(0 0 40px rgba(201,168,76,.3)) drop-shadow(0 0 80px rgba(201,168,76,.12));
}

.hero-cta {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold-mid);
  padding: 1rem 2.4rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color .3s;
  cursor: none;
}
.hero-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold-mid);
  transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.77,0,.175,1);
  z-index: -1;
}
.hero-cta:hover::before { transform: translateX(0); }
.hero-cta:hover { color: var(--black); }

.scroll-indicator {
  position: absolute; bottom: 2.2rem; left: 50%;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  opacity: .5;
  animation: scrollIndicatorIn 1s 2s both;
}
.scroll-indicator span {
  font-family: var(--font-display);
  font-size: .55rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold-dark), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

/* ─── MARQUEE ─────────────────────────────────────── */
.marquee-strip {
  background: linear-gradient(135deg, #0e0b06, #1a1508, #0e0b06);
  border-top: 1px solid rgba(201,168,76,.2);
  border-bottom: 1px solid rgba(201,168,76,.2);
  padding: 1.1rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-sc);
  font-size: .58rem;
  letter-spacing: .4em;
  color: var(--gold-warm);
  text-transform: uppercase;
  padding: 0 3rem;
}
.marquee-track .dot {
  color: var(--gold-mid);
  letter-spacing: 0; padding: 0; font-size: .7rem;
}

/* ─── COMUNS DE SEÇÃO ─────────────────────────────── */
section { padding: 7rem 5vw; }

.section-label {
  font-family: var(--font-display);
  font-size: .6rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .8rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--gold-light);
  font-weight: 400;
  line-height: 1.12;
}
.gold-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  margin: 1.4rem auto;
}

/* ─── REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .34s; }
.reveal-delay-4 { transition-delay: .46s; }

/* ─── COLEÇÃO ─────────────────────────────────────── */
#colecao {
  background: var(--black-soft);
  text-align: center;
}
#colecao .section-header { margin-bottom: 3.5rem; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: #0d0b08;
  border: 1px solid rgba(138,106,30,.25);
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: border-color .35s, box-shadow .35s;
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 0 36px rgba(201,168,76,.18), inset 0 0 24px rgba(201,168,76,.05);
}
.product-card::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-top: 32px solid rgba(201,168,76,.18);
  border-left: 32px solid transparent;
  transition: border-top-color .4s;
}
.product-card:hover::after { border-top-color: rgba(201,168,76,.45); }

.product-img {
  height: 260px;
  overflow: hidden;
  position: relative;
  background: #0d0b08;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .4s ease;
}
.product-card:hover .product-img img { transform: scale(1.04); }

.product-body { padding: 1.6rem 1.8rem 2rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.product-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold-light);
  font-weight: 400;
}
.product-desc {
  font-size: 1rem;
  color: rgba(245,237,214,.55);
  font-style: italic;
  line-height: 1.55;
  flex: 1;
}
.p-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.2rem; padding-top: 1.2rem;
  border-top: 1px solid rgba(107,83,15,.25);
}
.p-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-mid);
  letter-spacing: .04em;
}
.p-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-light));
  padding: .6rem 1rem;
  text-decoration: none;
  border: none;
  transition: opacity .25s;
  cursor: none;
  white-space: nowrap;
}
.p-btn:hover { opacity: .85; }
.p-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ─── SOBRE MIM ──────────────────────────────────── */
#sobre-mim { background: var(--black); }

.sobre-mim-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.sobre-mim-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.portrait-frame {
  position: relative;
  width: 210px; height: 210px;
  display: flex; align-items: center; justify-content: center;
}
.portrait-frame svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.portrait-logo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,.45);
  box-shadow: 0 0 32px rgba(201,168,76,.12);
}
.founder-signature {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold-light);
  text-align: center;
  letter-spacing: .02em;
  line-height: 1.3;
}
.founder-location {
  display: flex; align-items: center; gap: .45rem;
  font-family: var(--font-display);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.founder-location svg { width: 11px; height: 14px; flex-shrink: 0; }

.sobre-mim-text {
  display: flex; flex-direction: column; gap: 1.3rem;
}
.sobre-mim-divider { margin-left: 0; }

.sobre-mim-lead {
  font-family: var(--font-display);
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-mid);
}
.sobre-mim-text p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: rgba(245,237,214,.76);
  line-height: 1.78;
}
.sobre-mim-text strong { color: var(--gold-light); font-weight: 600; }

.sobre-mim-quote {
  border-left: 1.5px solid var(--gold-dark);
  padding: 1rem 1.6rem;
  margin: .2rem 0;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.7;
  background: rgba(201,168,76,.04);
}
.sobre-mim-text .sobre-mim-closing {
  font-family: var(--font-script);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  color: var(--gold-light);
  line-height: 1.55;
  opacity: .88;
}

/* ─── SOBRE ───────────────────────────────────────── */
#sobre {
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
#sobre::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,168,76,.055) 0%, transparent 70%);
  pointer-events: none;
}

.sobre-quote {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  max-width: 700px;
  margin: 0 auto 3.5rem;
  line-height: 1.55;
  position: relative;
}
.sobre-quote::before {
  content: '\201C';
  font-family: var(--font-script);
  font-size: 5rem;
  color: var(--gold-dark);
  position: absolute;
  top: -2rem; left: -1.5rem;
  line-height: 1;
  opacity: .5;
}

.pillars {
  display: flex; justify-content: center; gap: 4rem;
  flex-wrap: wrap;
  max-width: 900px; margin: 0 auto;
}
.pillar {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; max-width: 180px;
}
.pillar-icon {
  width: 64px; height: 64px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,.06);
}
.pillar-icon svg { width: 28px; height: 28px; }
.pillar-label {
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-mid);
  text-align: center;
  line-height: 1.5;
}

/* ─── COMO FUNCIONA ──────────────────────────────── */
#como-funciona {
  background: var(--black-soft);
  text-align: center;
}
#como-funciona .section-header { margin-bottom: 4rem; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(138,106,30,.45) 15%,
    rgba(138,106,30,.45) 85%, transparent 100%);
}
.step {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.2rem;
  padding: 0 1.5rem;
}
.step-number {
  width: 64px; height: 64px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .18em;
  color: var(--gold-mid);
  background: var(--black-soft);
  position: relative; z-index: 1;
}
.step-title {
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
}
.step-desc {
  font-family: var(--font-body);
  font-size: .96rem;
  color: rgba(245,237,214,.58);
  line-height: 1.65;
  max-width: 220px;
  margin: 0 auto;
}

/* ─── CONTATO ─────────────────────────────────────── */
#contato {
  background: var(--black-soft);
  text-align: center;
}

.contact-buttons {
  display: flex; justify-content: center; gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.contact-btn {
  display: inline-flex; align-items: center; gap: .85rem;
  font-family: var(--font-display);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 1.1rem 2.2rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .25s, box-shadow .25s, opacity .25s;
  min-width: 200px;
  justify-content: center;
  cursor: none;
}
.contact-btn:hover { transform: translateY(-3px); opacity: .88; }
.contact-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact-btn.whatsapp  { background: #1a3326; color: #6fcf97; border-color: #2d5a42; }
.contact-btn.instagram { background: transparent; color: var(--gold-mid); border-color: var(--gold-dark); }
.contact-btn.email     { background: transparent; color: var(--cream); border-color: rgba(245,237,214,.25); }

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: #050403;
  border-top: 1px solid rgba(138,106,30,.22);
  padding: 4rem 5vw 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
  align-items: start;
}
.footer-logo {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold-mid);
}
.footer-slogan {
  font-family: var(--font-display);
  font-size: .6rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: .3rem;
}
.footer-bio {
  font-family: var(--font-body);
  font-size: .9rem;
  color: rgba(245,237,214,.38);
  line-height: 1.65;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 400;
  margin-bottom: 1.2rem;
}
.footer-nav, .footer-contact-col {
  display: flex; flex-direction: column; gap: .7rem;
}
.footer-nav a {
  font-family: var(--font-display);
  font-size: .68rem;
  letter-spacing: .1em;
  color: rgba(245,237,214,.45);
  text-decoration: none;
  transition: color .2s;
  cursor: none;
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-contact-link {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-display);
  font-size: .68rem;
  letter-spacing: .1em;
  color: rgba(245,237,214,.45);
  text-decoration: none;
  transition: color .2s;
  cursor: none;
}
.footer-contact-link:hover { color: var(--gold-light); }
.footer-contact-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.footer-copy {
  font-family: var(--font-body);
  font-size: .82rem;
  color: rgba(245,237,214,.22);
}
.footer-made {
  font-family: var(--font-display);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(138,106,30,.5);
  margin-top: .4rem;
}
.footer-dev {
  font-family: var(--font-display);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,237,214,.38);
  margin-top: 1rem;
  padding-top: .8rem;
  border-top: 1px solid rgba(138,106,30,.18);
  display: inline-block;
}
.footer-dev a {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: .1em;
  transition: color .2s;
}
.footer-dev a:hover { color: var(--gold-mid); }
.footer-logo-img {
  height: 80px; width: 80px;
  object-fit: cover; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.25);
  opacity: .85;
  margin-bottom: .6rem;
}

/* ─── WPP FLUTUANTE ───────────────────────────────── */
#wpp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #1a3326, #2d5a42);
  border: 1px solid #3a7a56;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(0,0,0,.55), 0 0 18px rgba(47,186,112,.15);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  cursor: none;
}
#wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(0,0,0,.6), 0 0 28px rgba(47,186,112,.25);
}
#wpp-float svg { width: 28px; height: 28px; }

/* ─── ANIMAÇÕES ───────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scrollPulse { 0%,100% { opacity: .5; } 50% { opacity: 1; } }
@keyframes heroLogoIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
@keyframes scrollIndicatorIn {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: .5; transform: translateX(-50%); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── MOBILE 768 ──────────────────────────────────── */
@media (max-width: 768px) {
  #main-nav {
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    flex-direction: column; background: rgba(10,8,6,.98);
    padding: 1.5rem 2rem; gap: .4rem; align-items: center;
    border-bottom: 1px solid rgba(201,168,76,.18); z-index: 99;
  }
  #main-nav.open { display: flex; }
  #main-nav a {
    padding: .9rem 1.8rem;
    width: 100%; text-align: center;
    min-height: 44px; display: flex; align-items: center; justify-content: center;
  }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .product-img { height: 230px; }
  .pillars { gap: 2.4rem; }
  .contact-buttons { flex-direction: column; align-items: center; }
  .contact-btn { width: 100%; max-width: 320px; }
  .sobre-mim-inner { grid-template-columns: 1fr; gap: 2rem; }
  .sobre-mim-portrait { gap: .9rem; }
  .sobre-mim-text { text-align: center; gap: 1rem; }
  .sobre-mim-text p { text-align: left; }
  .sobre-mim-text blockquote { text-align: left; }
  .sobre-mim-divider { margin-left: auto; margin-right: auto; }
  .sobre-mim-lead { letter-spacing: .14em; font-size: .7rem; }
  .sobre-mim-closing { text-align: left; }
  .steps-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-grid::before { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  section { padding: 5rem 5vw; }
}

/* ─── REDUCED MOTION ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal           { transition: none; opacity: 1; transform: none; }
  .hero-logo-img    { animation: none; opacity: 1; transform: none; }
  .scroll-line      { animation: none; }
  .scroll-indicator { animation: none; opacity: .5; }
  .marquee-track    { animation: none; }
  #cursor, #cursor-dot { transition: none; }
}

/* ─── MOBILE 400 (iPhone SE / pequenos) ──────────── */
@media (max-width: 400px) {
  .hero-inner { padding: 0 1rem; }
  .hero-cta { padding: .85rem 1.6rem; letter-spacing: .18em; }
  .contact-btn { min-width: 0; width: 100%; max-width: 300px; }
  .product-img { height: 190px; }
  .product-body { padding: 1.2rem 1.2rem 1.6rem; }
  .p-price { font-size: 1.05rem; }
  .sobre-quote { padding: 0 .5rem; }
  .sobre-quote::before { left: -.2rem; font-size: 3.5rem; }
  .section-title { font-size: clamp(1.7rem, 9vw, 2.5rem); }
  .portrait-frame { width: 170px; height: 170px; }
}

/* ─── SAFE AREA (iPhone notch / home bar) ─────────── */
@supports (padding: env(safe-area-inset-top)) {
  header {
    padding-left:  max(4vw, env(safe-area-inset-left));
    padding-right: max(4vw, env(safe-area-inset-right));
  }
  footer {
    padding-bottom: max(2rem, calc(env(safe-area-inset-bottom) + 1rem));
  }
  #wpp-float {
    bottom: max(2rem, calc(env(safe-area-inset-bottom) + 1rem));
    right:  max(2rem, env(safe-area-inset-right));
  }
}

/* ─── TOUCH DEVICES (iOS / Android) ──────────────── */
@media (hover: none), (pointer: coarse) {
  /* Remove cursor invisível — não existe em telas touch */
  body { cursor: auto; }
  #cursor, #cursor-dot { display: none; }
  a, button { cursor: pointer; }

  /* Sem efeitos hover "grudados" ao toque */
  .product-card:hover {
    border-color: rgba(138,106,30,.25);
    box-shadow: none;
  }
  .product-card:hover::after { border-top-color: rgba(201,168,76,.18); }
  .product-card:hover .product-img img { transform: none; }
  .hero-cta::before { transform: translateX(-101%) !important; }
  .hero-cta:hover { color: var(--gold-light); }
  .contact-btn:hover { transform: none; opacity: 1; }

  /* Garante tamanho mínimo de tap (44px) em botões compactos */
  .p-btn {
    padding: .8rem 1.2rem;
    min-height: 44px;
  }
  .footer-nav a, .footer-contact-link {
    padding: .5rem 0;
    min-height: 44px;
    display: flex; align-items: center;
  }
}
