:root {
  --bg: #fbfaf8;
  --surface: #ffffff;
  --surface-soft: #f6f1eb;
  --ink: #141414;
  --muted: #736b63;
  --line: #e7ddd3;
  --soft-line: rgba(231, 221, 211, 0.72);
  --accent: #b7834e;
  --accent-dark: #8b5a2e;
  --shadow: 0 18px 60px rgba(20, 20, 20, 0.06);
  --shadow-strong: 0 30px 80px rgba(20, 20, 20, 0.1);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  -webkit-user-select: none;
  user-select: none;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(183, 131, 78, 0.12), transparent 22%),
    radial-gradient(circle at 88% 8%, rgba(183, 131, 78, 0.08), transparent 28%),
    linear-gradient(180deg, #fffdfb 0%, #fbfaf8 36%, #fbfaf8 100%);
  line-height: 1.55;
}

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

input,
textarea,
select {
  -webkit-user-select: text;
  user-select: text;
}
h1, h2, h3, p { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 250, 248, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--soft-line);
}

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  z-index: 2;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.brand-wordmark {
  pointer-events: none;
  font-family: "Allura", cursive;
  font-size: clamp(2.9rem, 4vw, 4.1rem);
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: 0.01em;
  color: #111;
  display: inline-block;
  transform: translateY(4px);
}

.nav-links {
  -webkit-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 0.92rem;
  color: var(--muted);
  flex: 1;
}

.nav-links a { position: relative; transition: color 180ms ease; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a:focus-visible::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(20,20,20,0.24);
  background: #fff;
}

.icon-btn svg,
.mobile-menu-label svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-menu {
  position: relative;
}

.language-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 16px 40px rgba(20,20,20,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.language-menu.open .language-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 8px 11px;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.78rem;
}

.lang-btn.active {
  background: var(--ink);
  color: white;
}

.cart-link {
  position: relative;
  text-decoration: none;
}

.cart-link strong {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  line-height: 1;
  border: 2px solid var(--bg);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  padding: 0;
  cursor: pointer;
  place-items: center;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 3.5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu-footer {
  display: none;
}

.section-pad {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 22px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 600;
}

.hero {
  padding-top: 48px;
  padding-bottom: 72px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid rgba(231, 221, 211, 0.85);
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(247,242,236,0.86));
  box-shadow: var(--shadow-strong);
  padding: 42px;
  isolation: isolate;
}

.hero-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.9;
  z-index: -1;
}
.hero-ambient-one {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(183, 131, 78, 0.16) 0%, rgba(183, 131, 78, 0) 70%);
  top: -140px;
  left: -80px;
}
.hero-ambient-two {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
  bottom: -160px;
  right: -80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(350px, 1.08fr);
  align-items: center;
  gap: 70px;
}

.hero-content { max-width: 540px; }

h1 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 5.3vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  margin-bottom: 22px;
  max-width: 9ch;
  font-weight: 700;
}

h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  margin-bottom: 0;
}

.hero-copy {
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 470px;
  margin-bottom: 30px;
}

.hero-actions, .builder-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  -webkit-user-select: none;
  user-select: none;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 13px 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease, box-shadow 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--ink); color: #fff; box-shadow: 0 12px 28px rgba(20,20,20,0.12); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.small { padding: 9px 14px; font-size: 0.9rem; }
.btn.full { width: 100%; }

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.88rem;
}
.hero-highlights span {
  box-shadow: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 9px 12px;
}

.hero-media-card {
  position: relative;
  min-height: 540px;
  border-radius: 34px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.56), rgba(255,255,255,0.34));
  border: 1px solid rgba(255,255,255,0.58);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.media-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.86rem;
}
.media-topline strong {
  font-family: "Allura", cursive;
  font-size: 2rem;
  line-height: 0.8;
  color: var(--ink);
  font-weight: 400;
}

.hero-video-frame {
  position: relative;
  min-height: 440px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 20%, rgba(183, 131, 78, 0.4), transparent 36%),
    linear-gradient(145deg, #1d1a18, #2c241f 46%, #191614);
  box-shadow: var(--shadow-strong);
}
.hero-video,
.hero-video-overlay,
.hero-video-fallback {
  position: absolute;
  inset: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-overlay {
  background: linear-gradient(180deg, rgba(20,20,20,0.14), rgba(20,20,20,0.34));
  pointer-events: none;
}
.hero-video-fallback {
  display: grid;
  place-items: center;
  padding: 26px;
}
.hero-video:not([src]):not(:has(source[src])) + .hero-video-overlay + .hero-video-fallback {
  display: grid;
}
.fallback-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.9);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}

.hero-square-showcase {
  position: relative;
  width: min(360px, 78vw);
  height: min(360px, 78vw);
}

.showcase-card {
  position: absolute;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.72);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  box-shadow: 0 22px 48px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.24);
  backdrop-filter: blur(10px);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,0.34);
}

.showcase-card-main {
  width: 210px;
  height: 210px;
  left: 68px;
  top: 74px;
}

.showcase-card-medium {
  width: 118px;
  height: 118px;
  right: 6px;
  bottom: 40px;
}

.showcase-card-small {
  width: 96px;
  height: 96px;
  left: 10px;
  bottom: 54px;
}

.showcase-card-tiny {
  width: 72px;
  height: 72px;
  right: 30px;
  top: 28px;
  border-radius: 22px;
}

.showcase-card-tiny::after {
  inset: 13px;
  border-radius: 14px;
}

.pin-orbit { position: relative; width: 310px; height: 310px; }
.pin-orbit-hero { transform: scale(1.04); }
.pin {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(231, 221, 211, 0.86);
  box-shadow: inset 0 -10px 22px rgba(20,20,20,0.04), 0 16px 36px rgba(20,20,20,0.1);
}
.pin::after {
  content: "";
  position: absolute;
  inset: 19%;
  border: 1px dashed rgba(183, 131, 78, 0.4);
  border-radius: 14px;
}
.pin.large { width: 180px; height: 180px; left: 64px; top: 58px; }
.pin.medium { width: 108px; height: 108px; right: 8px; bottom: 34px; }
.pin.small { width: 84px; height: 84px; left: 16px; bottom: 54px; }
.pin.tiny { width: 62px; height: 62px; right: 24px; top: 34px; }
.hero-video-fallback p {
  position: absolute;
  bottom: 26px;
  left: 24px;
  right: 24px;
  text-align: center;
  color: rgba(255,255,255,0.86);
  margin: 0;
}

.hero-floating-note {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(231, 221, 211, 0.88);
  box-shadow: 0 12px 32px rgba(20,20,20,0.05);
}
.hero-floating-note span {
  display: block;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  margin-bottom: 6px;
}
.hero-floating-note strong {
  font-size: 0.98rem;
  line-height: 1.45;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 8px;
}
.intro-grid article {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  min-height: 210px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.intro-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(20,20,20,0.05);
}
.number {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
}
.intro-grid h2 {
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  margin: 20px 0 10px;
}
.intro-grid p,
.section-title p,
.brazil-copy p:not(.eyebrow),
.business-section p:not(.eyebrow),
.cart-item p,
.empty,
.hint,
#phrasePreview { color: var(--muted); }


.how-section {
  padding-top: 54px;
}

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

.how-grid article {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.9), rgba(248,244,239,0.72));
  box-shadow: 0 18px 46px rgba(20,20,20,0.045);
}

.how-grid article::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(183,131,78,0.12), rgba(20,20,20,0.04));
  transform: rotate(14deg);
}

.how-grid span {
  color: var(--accent);
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.how-grid h3 {
  margin: 52px 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.35rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.how-grid p {
  color: var(--muted);
  margin: 0;
}


.section-title { max-width: 760px; margin-bottom: 34px; }
.section-title.narrow {
  max-width: 680px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.collection-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.collection-tab {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  color: var(--muted);
  transition: border 160ms ease, color 160ms ease, background 160ms ease;
}
.collection-tab.active {
  border-color: var(--ink);
  color: var(--ink);
  background: #fff;
}

.builder-card, .cart-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 30px;
}
.builder-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}
.kit-options {
  display: flex;
  background: var(--surface-soft);
  border-radius: 999px;
  padding: 6px;
  gap: 4px;
}
.kit-options label {
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 999px;
}
.kit-options input { accent-color: var(--ink); }
.selection-status {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
}
.selection-status #selectionCounter { color: var(--ink); font-weight: 700; }
.pin-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.pin-option {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8f4ef);
  border-radius: 22px;
  display: grid;
  place-items: center;
  position: relative;
  cursor: pointer;
  transition: transform 160ms ease, border 160ms ease, box-shadow 160ms ease;
}
.pin-option:hover { transform: translateY(-2px); }
.pin-option.selected {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(183, 131, 78, 0.14);
}
.pin-option span {
  color: #aa9c91;
  font-size: 0.78rem;
  text-align: center;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pin-option small {
  display: block;
  font-size: 0.62rem;
  margin-top: 2px;
  color: #c2b6ad;
  letter-spacing: 0.1em;
}
.pin-option::after {
  content: "";
  position: absolute;
  inset: 15%;
  border: 1px dashed rgba(20,20,20,0.1);
  border-radius: 14px;
}


.pin-option.pin-pop {
  animation: pinSelectPop 300ms cubic-bezier(.2,.8,.2,1);
}

@keyframes pinSelectPop {
  0% { transform: scale(1); }
  45% { transform: scale(0.96); }
  100% { transform: scale(1.02); }
}

.cart-link strong.cart-bump {
  animation: cartBump 360ms cubic-bezier(.2,.8,.2,1);
}

@keyframes cartBump {
  0% { transform: scale(1); }
  42% { transform: scale(1.28); }
  100% { transform: scale(1); }
}

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

.whatsapp-btn {
  border-color: rgba(37, 211, 102, 0.44);
  color: #165d32;
  background: rgba(37, 211, 102, 0.08);
}

.whatsapp-btn:hover {
  background: #25d366;
  border-color: #25d366;
  color: #102016;
}

.brazil-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: center;
}
.brazil-copy {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(140deg, rgba(255,255,255,0.08), rgba(255,255,255,0) 36%),
    linear-gradient(135deg, #06150e 0%, #0f3522 45%, #071b2d 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 34px 90px rgba(8, 28, 20, 0.22);
}

.brazil-copy::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.10);
  pointer-events: none;
}

.brazil-copy::after {
  content: "BR";
  position: absolute;
  right: -18px;
  bottom: -54px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(8rem, 17vw, 14rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
  color: rgba(255,255,255,0.055);
  pointer-events: none;
}

.brazil-copy .brazil-glow {
  display: none;
}

.brazil-copy > * {
  position: relative;
  z-index: 1;
  max-width: 390px;
}

.brazil-copy .eyebrow {
  width: fit-content;
  color: #f7df72;
  letter-spacing: 0.22em;
  margin-bottom: 20px;
}

.brazil-copy .eyebrow::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 14px;
  background: linear-gradient(90deg, #f7df72, rgba(247,223,114,0));
}

.brazil-copy h2 {
  color: #fff;
  font-size: clamp(3.4rem, 6vw, 5.4rem);
  line-height: 0.86;
  letter-spacing: -0.055em;
  margin-bottom: 22px;
}

.brazil-copy p:not(.eyebrow) {
  color: rgba(255,255,255,0.76);
  font-size: 1.02rem;
  max-width: 360px;
}

.brazil-copy .btn {
  width: fit-content;
  border-color: rgba(247, 223, 114, 0.46);
  color: #fff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.brazil-copy .btn::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: #f7df72;
  box-shadow: 0 0 18px rgba(247, 223, 114, 0.72);
}

.brazil-copy .btn:hover {
  background: #f7df72;
  border-color: #f7df72;
  color: #102016;
}
.brazil-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.brazil-preview div {
  aspect-ratio: 1;
  border: 1px solid rgba(231, 221, 211, 0.9);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(247,243,238,0.92));
  border-radius: 24px;
  box-shadow: inset 0 -10px 22px rgba(20,20,20,0.035), 0 14px 34px rgba(20,20,20,0.045);
}

.custom-grid,
.business-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.custom-form,
.business-form,
.shipping-form {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  gap: 16px;
}
label span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.86rem;
  color: var(--muted);
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--accent); }
.custom-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff, #f5f0e9);
  min-height: 420px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 32px;
  text-align: center;
}
.preview-pin {
  width: min(260px, 78vw);
  aspect-ratio: 1;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--muted);
  background-size: cover;
  background-position: center;
}

.business-section {
  background: var(--surface-soft);
  max-width: none;
  padding-left: max(22px, calc((100vw - 1180px) / 2 + 22px));
  padding-right: max(22px, calc((100vw - 1180px) / 2 + 22px));
}
.business-section > div:first-child { align-self: center; max-width: 560px; }
.quote-box {
  border: 1px dashed rgba(183, 131, 78, 0.62);
  background: #fff8f1;
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--accent-dark);
}

.shipping-form {
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
}
.shipping-result {
  margin-top: 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  padding: 20px;
  display: none;
}
.shipping-result.show { display: block; }

.cart-panel { padding-top: 30px; }
.cart-card { max-width: 820px; margin: 0 auto; }
.cart-header, .cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cart-items { display: grid; gap: 12px; margin: 20px 0; }
.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
}
.cart-total {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-bottom: 18px;
}
.cart-total strong { font-size: 1.4rem; }


.checkout-card {
  max-width: 1080px;
  margin: 0 auto;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(247,243,238,0.78));
  border: 1px solid var(--line);
  border-radius: 36px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.checkout-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.checkout-heading p:not(.eyebrow) {
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 22px;
  align-items: start;
}

.cart-card-inner {
  box-shadow: none;
  border-radius: 26px;
  padding: 20px;
  background: rgba(255,255,255,0.72);
}

.checkout-form {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,0.82);
  padding: 22px;
  display: grid;
  gap: 14px;
}

.checkout-summary {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: grid;
  gap: 12px;
}

.checkout-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.checkout-summary strong {
  color: var(--ink);
}

.checkout-grand-total {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.checkout-grand-total strong {
  font-size: 1.45rem;
}

.social-section {
  max-width: none;
  margin: 36px 0 0;
  padding: 0 22px 82px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(20,20,20,0.03) 100%);
}

.social-divider {
  max-width: 1180px;
  height: 1px;
  margin: 0 auto 56px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.95), transparent);
  box-shadow: 0 1px 0 rgba(231, 221, 211, 0.72);
}

.social-content {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 360px;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at 85% 15%, rgba(255,255,255,0.14), transparent 24%),
    radial-gradient(circle at 18% 88%, rgba(183, 131, 78, 0.18), transparent 28%),
    linear-gradient(135deg, #15110f 0%, #211a16 46%, #0f0f10 100%);
  color: #fff;
  padding: clamp(34px, 6vw, 70px);
  display: grid;
  align-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(20,20,20,0.16);
}

.social-content::after {
  content: "";
  position: absolute;
  right: clamp(24px, 6vw, 72px);
  top: 50%;
  width: clamp(120px, 18vw, 220px);
  height: clamp(120px, 18vw, 220px);
  transform: translateY(-50%);
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02));
  pointer-events: none;
}

.social-content .eyebrow {
  color: #e7c7a7;
}

.social-content h2 {
  max-width: 560px;
  color: #fff;
}

.social-content p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
}

.instagram-cta {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 13px 18px;
  position: relative;
  z-index: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.instagram-cta:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.36);
}

.instagram-cta svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}


.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 22px 60px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer .brand-wordmark { color: var(--ink); font-size: 3rem; }
.footer p { margin-bottom: 0; }
.footer a { color: var(--ink); }

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-content,
  .section-title,
  .section-title.narrow { max-width: 100%; }
  h1 { max-width: 10ch; }}

@media (max-width: 920px) {
  .menu-toggle {
    display: grid;
    order: 3;
  }

  .navbar {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-actions .language-menu {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(20,20,20,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

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

  .nav-links a {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    line-height: 1;
    color: var(--ink);
    padding: 14px 4px;
    opacity: 0;
    transform: translateX(-10px);
  }

  .nav-links.open a,
  .nav-links.open .mobile-menu-footer {
    animation: menuTextSlide 360ms ease forwards;
  }

  .nav-links.open a:nth-child(1) { animation-delay: 40ms; }
  .nav-links.open a:nth-child(2) { animation-delay: 80ms; }
  .nav-links.open a:nth-child(3) { animation-delay: 120ms; }
  .nav-links.open a:nth-child(4) { animation-delay: 160ms; }
  .nav-links.open a:nth-child(5) { animation-delay: 200ms; }
  .nav-links.open a:nth-child(6) { animation-delay: 240ms; }
  .nav-links.open .mobile-menu-footer { animation-delay: 280ms; }

  .nav-links a::after {
    display: none;
  }

  .mobile-menu-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    opacity: 0;
    transform: translateX(-10px);
  }

  .mobile-menu-label {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    color: var(--ink);
    background: rgba(255,255,255,0.78);
  }

  .mobile-language-options {
    display: flex;
    gap: 4px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(251,250,248,0.8);
  }

  .intro-grid,
  .how-grid,
  .brazil-section,
  .custom-grid,
  .business-section,
  .checkout-grid { grid-template-columns: 1fr; }
  .pin-grid { grid-template-columns: repeat(3, 1fr); }
  .shipping-form { grid-template-columns: 1fr 1fr; }
  .hero-media-card { min-height: auto; }
  .hero-video-frame { min-height: 400px; }
}

@keyframes menuTextSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 600px) {
  .section-pad { padding: 68px 16px; }
  .navbar { padding: 14px 16px; }
  .brand-wordmark { font-size: 2.65rem; }
  .brand {
    min-height: 42px;
    padding-right: 6px;
  }  .hero-shell { padding: 22px; border-radius: 28px; }
  .hero-actions,
  .builder-footer { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .builder-head { flex-direction: column; }
  .pin-grid { grid-template-columns: repeat(2, 1fr); }
  .brazil-preview { grid-template-columns: repeat(2, 1fr); }
  .shipping-form { grid-template-columns: 1fr; }
  h1 { font-size: clamp(3rem, 12vw, 4rem); }
  .media-topline,
  .hero-card-label { flex-direction: column; align-items: flex-start; }
  .hero-video-frame { min-height: 360px; }}


/* v14 — acabamento mais editorial e menos “gerado por IA” */
:root {
  --bg: #faf8f5;
  --surface-soft: #f2ede6;
  --shadow: 0 14px 34px rgba(20, 20, 20, 0.045);
  --shadow-strong: 0 22px 52px rgba(20, 20, 20, 0.08);
}

body {
  background: #faf8f5;
}

.site-header {
  background: rgba(250, 248, 245, 0.9);
}

.section-pad {
  padding-top: 82px;
  padding-bottom: 82px;
}

.hero {
  padding-top: 34px;
}

.hero-shell {
  background: #fbfaf8;
  border-radius: 28px;
  box-shadow: none;
  border-color: rgba(231, 221, 211, 0.82);
  padding: clamp(26px, 5vw, 54px);
}

.hero-ambient {
  display: none;
}

.hero-grid {
  gap: clamp(34px, 6vw, 72px);
}

h1 {
  max-width: 8.6ch;
}

.hero-copy {
  max-width: 420px;
}

.hero-media-card {
  min-height: 500px;
  border-radius: 26px;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.media-topline {
  padding: 0 2px;
}

.hero-video-frame {
  min-height: 420px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(33, 29, 25, 0.96), rgba(18, 16, 14, 0.98));
  box-shadow: 0 18px 42px rgba(20,20,20,0.14);
}

.hero-floating-note {
  display: none;
}

.showcase-card {
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035));
  box-shadow: 0 16px 34px rgba(0,0,0,0.16);
}

.showcase-card::after {
  border-radius: 14px;
  opacity: 0.7;
}

.intro-grid,
.how-grid {
  gap: 14px;
}

.intro-grid article,
.how-grid article,
.builder-card,
.custom-form,
.business-form,
.shipping-form,
.checkout-card,
.cart-card,
.cart-card-inner,
.checkout-form {
  box-shadow: none;
  background: rgba(255,255,255,0.56);
}

.intro-grid article,
.how-grid article {
  border-radius: 18px;
  min-height: unset;
  padding: 28px;
}

.how-grid article::after {
  opacity: 0.32;
}

.collection-tab,
.icon-btn,
.cart-link,
.lang-btn,
.btn {
  box-shadow: none;
}

.pin-option {
  border-radius: 16px;
  background: #fff;
  box-shadow: none;
}

.pin-option::after {
  border-radius: 10px;
}

.pin-option.selected {
  box-shadow: 0 0 0 3px rgba(183,131,78,0.12);
}

.brazil-copy {
  min-height: 300px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, #171611, #0f241b 58%, #111a25);
  box-shadow: 0 18px 44px rgba(8, 28, 20, 0.16);
}

.brazil-copy::before {
  inset: 18px;
  border-radius: 18px;
}

.brazil-copy::after {
  opacity: 0.65;
}

.brazil-preview div,
.preview-pin {
  border-radius: 18px;
}

.social-content {
  min-height: 310px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, #181513, #0f0f10);
  box-shadow: 0 18px 48px rgba(20,20,20,0.12);
}

.social-content::after {
  display: none;
}

.footer {
  padding-top: 36px;
}


/* v15 — IDs fixos de produto, comanda e e-mail */
.pin-option {
  align-content: center;
  gap: 8px;
}

.pin-id {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  border: 1px solid rgba(20,20,20,0.08);
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(255,255,255,0.78);
  color: #6f6259;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.pin-option.selected .pin-id {
  color: var(--ink);
  border-color: rgba(20,20,20,0.22);
}

.cart-item-ids {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.cart-item-ids span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
  color: #6f6259;
  background: rgba(255,255,255,0.64);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

#orderIdPreview {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.admin-panel {
  display: none;
}

.admin-panel.show {
  display: block;
}

.admin-card {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,0.62);
  padding: 30px;
}

.admin-card p:not(.eyebrow) {
  color: var(--muted);
}

.admin-search {
  display: grid;
  gap: 14px;
}

.admin-result {
  min-height: 110px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  padding: 18px;
}

.admin-result p {
  color: var(--muted);
  margin: 0;
}

.admin-result strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.admin-result code {
  display: inline-flex;
  margin: 4px 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 9px;
  background: #fbfaf8;
  color: var(--ink);
}

@media (max-width: 920px) {
  .admin-card {
    grid-template-columns: 1fr;
  }
}


.payment-state {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 34px 22px;
}

.payment-state > section {
  max-width: 620px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,0.72);
  padding: clamp(30px, 6vw, 58px);
  text-align: center;
}

.payment-state .brand {
  position: fixed;
  top: 24px;
  left: 24px;
}


/* v18 — checkout manual SEPA/IBAN */
.checkout-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bank-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  padding: 22px;
  align-items: center;
  justify-content: center;
}

.bank-modal.open {
  display: flex;
}

.bank-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 14, 12, 0.52);
  backdrop-filter: blur(10px);
}

.bank-modal-card {
  position: relative;
  width: min(760px, 100%);
  max-height: min(92vh, 850px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(248,244,238,0.96));
  box-shadow: 0 34px 90px rgba(0,0,0,0.28);
  padding: clamp(26px, 5vw, 46px);
  animation: bankModalIn 220ms ease forwards;
}

@keyframes bankModalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.bank-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.bank-intro { max-width: 620px; color: var(--muted); }

.bank-total {
  margin: 28px 0 20px;
  border-radius: 24px;
  border: 1px solid rgba(20,20,20,0.08);
  background: linear-gradient(145deg, #181513, #0f0f10);
  color: #fff;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.bank-total span { color: rgba(255,255,255,0.68); }
.bank-total strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 7vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.bank-fields { display: grid; gap: 10px; }

.bank-fields > div {
  display: grid;
  grid-template-columns: 145px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.68);
}

.bank-fields span { color: var(--muted); font-size: 0.86rem; }
.bank-fields strong { font-size: 0.94rem; word-break: break-word; }

.bank-fields button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--ink);
}

.bank-reference-field { border-color: rgba(183,131,78,0.35) !important; }
.bank-reference-field strong { letter-spacing: 0.08em; }

.bank-warning {
  margin-top: 18px;
  border-radius: 20px;
  background: rgba(183,131,78,0.1);
  border: 1px solid rgba(183,131,78,0.22);
  padding: 16px;
}

.bank-warning p { margin: 6px 0 0; color: var(--muted); }
.bank-modal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

@media (max-width: 640px) {
  .checkout-row,
  .bank-fields > div { grid-template-columns: 1fr; }
  .bank-total { align-items: flex-start; flex-direction: column; }
  .bank-fields button { width: fit-content; }
  .bank-modal-card { border-radius: 24px; }
}


/* v20 — frete integrado ao checkout */
.checkout-shipping-note {
  border: 1px solid rgba(183,131,78,0.22);
  border-radius: 20px;
  background: rgba(183,131,78,0.08);
  padding: 16px;
  display: grid;
  gap: 5px;
}

.checkout-shipping-note span {
  color: var(--muted);
  font-size: 0.82rem;
}

.checkout-shipping-note strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.checkout-shipping-note p {
  color: var(--muted);
  margin: 0;
  font-size: 0.88rem;
}


/* v23 — CEP/código postal automático */
.zip-status {
  margin: -4px 0 2px;
  color: var(--muted);
  font-size: 0.86rem;
}

.zip-status.success {
  color: #245839;
}

.zip-status.warning {
  color: #8a5a1f;
}


/* v25 — pós-pedido, carrinho limpo e dados para etiqueta */
.cart-link strong.is-empty {
  display: none;
}

.purchase-success-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  padding: 22px;
  align-items: center;
  justify-content: center;
}

.purchase-success-modal.open {
  display: flex;
}

.purchase-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 14, 12, 0.48);
  backdrop-filter: blur(10px);
}

.purchase-success-card {
  position: relative;
  width: min(560px, 100%);
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(248,244,238,0.98));
  box-shadow: 0 34px 90px rgba(0,0,0,0.24);
  padding: clamp(28px, 6vw, 52px);
  text-align: center;
  animation: bankModalIn 220ms ease forwards;
}

.success-mark {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(36, 88, 57, 0.1);
  color: #245839;
  border: 1px solid rgba(36, 88, 57, 0.2);
  font-size: 2rem;
  font-weight: 700;
}

.success-reference {
  margin: 24px auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 14px;
  display: grid;
  gap: 4px;
}

.success-reference span {
  color: var(--muted);
  font-size: 0.82rem;
}

.success-reference strong {
  letter-spacing: 0.08em;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .success-actions .btn {
    width: 100%;
    justify-content: center;
  }
}


/* v29 — correção mobile do hero + cores por coleção */
.hero-video-fallback {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.hero-video-fallback p {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  max-width: 260px;
  padding: 0 8px;
  line-height: 1.45;
  z-index: 3;
}

.hero-square-showcase {
  flex: 0 0 auto;
}

.collection-tab {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(20,20,20,0.08);
  font-weight: 700;
}

.collection-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.14;
  transition: opacity 180ms ease;
}

.collection-tab:hover::before,
.collection-tab.active::before {
  opacity: 1;
}

.collection-tab[data-collection="brasil"]::before {
  background: linear-gradient(135deg, #009c3b 0%, #009c3b 38%, #ffdf00 38%, #ffdf00 62%, #002776 62%, #002776 100%);
}

.collection-tab[data-collection="paris"]::before {
  background: linear-gradient(135deg, #1f3f7a 0%, #ffffff 47%, #d94848 100%);
}

.collection-tab[data-collection="vintage"]::before {
  background: linear-gradient(135deg, #6b4423 0%, #c49358 45%, #ead8b7 100%);
}

.collection-tab[data-collection="memorias"]::before {
  background: linear-gradient(135deg, #c9a6ff 0%, #f6c1d7 48%, #f6e7bf 100%);
}

.collection-tab.active {
  color: #111;
  border-color: rgba(20,20,20,0.22);
}

.active-collection-label {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid rgba(20,20,20,0.08);
  color: #111;
  background: #fff;
}

.active-collection-label.collection-brasil {
  background: linear-gradient(135deg, rgba(0,156,59,0.16), rgba(255,223,0,0.25), rgba(0,39,118,0.14));
}

.active-collection-label.collection-paris {
  background: linear-gradient(135deg, rgba(31,63,122,0.16), rgba(255,255,255,0.9), rgba(217,72,72,0.14));
}

.active-collection-label.collection-vintage {
  background: linear-gradient(135deg, rgba(107,68,35,0.14), rgba(196,147,88,0.22), rgba(234,216,183,0.58));
}

.active-collection-label.collection-memorias {
  background: linear-gradient(135deg, rgba(201,166,255,0.25), rgba(246,193,215,0.22), rgba(246,231,191,0.52));
}

.pin-option {
  overflow: hidden;
}

.pin-option::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.78;
  transition: opacity 180ms ease, transform 180ms ease;
}

.pin-option:hover::before,
.pin-option.selected::before {
  opacity: 1;
  transform: scale(1.02);
}

.pin-option.collection-brasil::before {
  background:
    radial-gradient(circle at 75% 20%, rgba(0,39,118,0.18) 0 18%, transparent 19%),
    linear-gradient(135deg, rgba(0,156,59,0.18), rgba(255,223,0,0.22), rgba(0,39,118,0.14));
}

.pin-option.collection-paris::before {
  background:
    linear-gradient(135deg, rgba(31,63,122,0.17), rgba(255,255,255,0.95) 48%, rgba(217,72,72,0.16));
}

.pin-option.collection-vintage::before {
  background:
    linear-gradient(135deg, rgba(92,57,28,0.16), rgba(196,147,88,0.22), rgba(238,219,185,0.48));
}

.pin-option.collection-memorias::before {
  background:
    radial-gradient(circle at 78% 22%, rgba(201,166,255,0.22), transparent 28%),
    linear-gradient(135deg, rgba(246,193,215,0.22), rgba(246,231,191,0.46), rgba(180,210,205,0.2));
}

.pin-option span,
.pin-option .pin-id,
.pin-option::after {
  z-index: 2;
}

.pin-option.collection-brasil .pin-id {
  color: #0a6530;
  background: rgba(255,255,255,0.82);
}

.pin-option.collection-paris .pin-id {
  color: #1f3f7a;
  background: rgba(255,255,255,0.86);
}

.pin-option.collection-vintage .pin-id {
  color: #6b4423;
  background: rgba(255,250,242,0.88);
}

.pin-option.collection-memorias .pin-id {
  color: #8059b7;
  background: rgba(255,250,255,0.88);
}

.how-grid article:nth-child(1)::after {
  background: linear-gradient(135deg, rgba(0,156,59,0.13), rgba(255,223,0,0.16));
}

.how-grid article:nth-child(2)::after {
  background: linear-gradient(135deg, rgba(31,63,122,0.12), rgba(217,72,72,0.12));
}

.how-grid article:nth-child(3)::after {
  background: linear-gradient(135deg, rgba(107,68,35,0.12), rgba(201,166,255,0.14));
}

@media (max-width: 600px) {
  .hero-video-frame {
    min-height: 410px;
    overflow: hidden;
  }

  .hero-video-fallback {
    padding: 22px 18px 28px;
    justify-content: space-between;
  }

  .fallback-badge {
    position: relative;
    top: auto;
    left: auto;
    align-self: flex-start;
    max-width: calc(100% - 8px);
    white-space: nowrap;
  }

  .hero-square-showcase {
    width: min(255px, 68vw);
    height: min(255px, 68vw);
    transform: translateY(-4px);
  }

  .showcase-card-main {
    width: 150px;
    height: 150px;
    left: 52px;
    top: 54px;
  }

  .showcase-card-medium {
    width: 86px;
    height: 86px;
    right: 8px;
    bottom: 30px;
  }

  .showcase-card-small {
    width: 74px;
    height: 74px;
    left: 8px;
    bottom: 38px;
  }

  .showcase-card-tiny {
    width: 58px;
    height: 58px;
    right: 24px;
    top: 22px;
  }

  .hero-video-fallback p {
    max-width: 230px;
    font-size: 0.92rem;
    margin-bottom: 0;
  }

  .pin-id {
    top: 8px;
    left: 8px;
    font-size: 0.56rem;
    padding: 3px 7px;
  }
}


/* v30 — preço dos ímãs: 3€ cada */
.kit-options label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.kit-options label small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.kit-options label:has(input:checked) small {
  color: var(--ink);
}


/* v31 — langue FR par défaut, hero vidéo + produits, ajustements mobile */
.lang-quick-toggle {
  width: auto;
  min-width: 58px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.lang-quick-toggle .lang-short {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-video-frame {
  min-height: 500px;
}

.hero-video-overlay {
  background: linear-gradient(180deg, rgba(14,14,18,0.16), rgba(14,14,18,0.42));
}

.hero-video-fallback {
  display: block;
  padding: 22px;
  pointer-events: none;
}

.hero-product-card {
  position: absolute;
  bottom: 28px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 42px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
}

.hero-product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f6efe4;
}

.hero-product-left {
  left: 24px;
  width: clamp(118px, 24%, 156px);
  transform: rotate(-2deg);
}

.hero-product-right {
  right: 24px;
  width: clamp(138px, 28%, 182px);
  transform: rotate(1.5deg);
}

.hero-video-fallback p {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(320px, calc(100% - 180px));
  max-width: none;
  margin: 0;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(10,10,12,0.40);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.96);
  text-align: center;
  line-height: 1.45;
  backdrop-filter: blur(10px);
}

.brazil-section--compact {
  grid-template-columns: 1fr;
}

.brazil-section--compact .brazil-copy {
  max-width: 760px;
  min-height: 280px;
  margin: 0 auto;
}

.collection-tab[data-collection="brasil"]::before {
  background: linear-gradient(135deg, #d6ecd8 0%, #ebf3dd 34%, #f7efb6 61%, #d8e1f3 100%);
}

@media (max-width: 920px) {
  .nav-actions .language-menu {
    display: none;
  }

  .hero-video-frame {
    min-height: 470px;
  }
}

@media (max-width: 600px) {
  .lang-quick-toggle {
    min-width: 54px;
    padding: 0 10px;
    gap: 5px;
  }

  .lang-quick-toggle .lang-short {
    font-size: 0.66rem;
  }

  .hero-video-frame {
    min-height: 430px;
  }

  .fallback-badge {
    top: 18px;
    left: 18px;
  }

  .hero-product-left {
    left: 14px;
    bottom: 68px;
    width: 94px;
  }

  .hero-product-right {
    right: 14px;
    bottom: 68px;
    width: 114px;
  }

  .hero-video-fallback p {
    width: min(270px, calc(100% - 28px));
    bottom: 16px;
    font-size: 0.88rem;
    padding: 10px 12px;
  }

  .brazil-section--compact .brazil-copy {
    padding: 34px 24px;
    min-height: 0;
  }
}


/* v32 — hero corrigido: vídeo dentro do quadrado grande, produtos nos quadrados pequenos */
.hero-showcase-layout {
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 46px);
}

.hero-showcase-layout .hero-square-showcase {
  width: min(360px, 78vw);
  height: min(360px, 78vw);
  position: relative;
}

.hero-showcase-layout .showcase-card {
  overflow: hidden;
}

.showcase-video-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04)),
    #161513;
}

.showcase-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/hero-poster.jpg") center / cover no-repeat;
  filter: blur(14px) saturate(0.9);
  transform: scale(1.12);
  opacity: 0.44;
}

.showcase-video-card::after,
.showcase-product-card::after {
  display: none;
}

.showcase-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  opacity: 1;
  transition: opacity 260ms ease;
  z-index: 1;
  background: #171513;
}

.showcase-video.is-fading {
  opacity: 0.24;
}

.showcase-product-card {
  border: 0;
  background: transparent;
  box-shadow: 0 18px 36px rgba(0,0,0,0.22);
  backdrop-filter: none;
}

.showcase-product-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-product-left img {
  transform: scale(1.13) rotate(-1.5deg);
  object-position: center center;
}

.showcase-product-right img {
  transform: scale(1.08);
  object-position: center center;
}

.hero-showcase-layout .showcase-card-tiny,
.hero-video-fallback > .fallback-badge,
.hero-video-fallback > p {
  display: none !important;
}

/* remove o bloco de texto inferior que atrapalhava a visão dos produtos */
.hero-media-card .hero-floating-note {
  display: none;
}

@media (max-width: 600px) {
  .hero-showcase-layout {
    padding: 22px 14px 26px;
  }

  .hero-showcase-layout .hero-square-showcase {
    width: min(300px, 75vw);
    height: min(300px, 75vw);
  }

  .hero-showcase-layout .showcase-card-main {
    width: 176px;
    height: 176px;
    left: 62px;
    top: 52px;
  }

  .hero-showcase-layout .showcase-card-small {
    width: 92px;
    height: 92px;
    left: 7px;
    bottom: 42px;
  }

  .hero-showcase-layout .showcase-card-medium {
    width: 112px;
    height: 112px;
    right: 4px;
    bottom: 30px;
  }

  .hero-video-frame {
    min-height: 390px;
  }
}


/* v33 — ajustes empresa, WhatsApp e Brasil */
.collection-tab[data-collection="brasil"]::before {
  background: linear-gradient(135deg,
    #1fa85a 0%, #1fa85a 34%,
    #f2d84b 34%, #f2d84b 64%,
    #2354a4 64%, #2354a4 100%);
}

.business-file-label input[type="file"] {
  padding: 13px;
  background: #fff;
  cursor: pointer;
}

.business-file-label small {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 6px;
  display: block;
}

.business-file-name {
  margin: -8px 0 0;
  padding: 10px 12px;
  border: 1px dashed rgba(183, 131, 78, 0.34);
  border-radius: 14px;
  background: rgba(183, 131, 78, 0.06);
  color: var(--muted);
  font-size: 0.86rem;
}


/* v34 — fundo marrom, personalizado sem prévia e vídeo em card inteiro */
:root {
  --bg: #936b49;
  --surface: #f8efe4;
  --surface-soft: #ead8c3;
  --line: rgba(77, 49, 30, 0.22);
  --ink: #16110d;
  --muted: #6f5b4d;
  --brand-brown: #936b49;
  --brand-brown-deep: #5c3b25;
  --brand-brown-soft: #caa27a;
}

html {
  background: #7c5536;
}

body {
  background:
    radial-gradient(circle at top left, rgba(214, 179, 139, 0.42), transparent 34rem),
    linear-gradient(180deg, #9a704b 0%, #835a3a 45%, #6f492e 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.65;
  z-index: -1;
}

.site-header,
.navbar,
.hero-shell,
.intro-grid article,
.collection-builder,
.custom-form,
.business-form,
.checkout-card,
.admin-panel,
.social-section,
.purchase-success-card,
.bank-modal-card {
  background-color: rgba(248, 239, 228, 0.93);
}

.section-pad:not(.hero) {
  background: transparent;
}

.product-size-note {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(77, 49, 30, 0.18);
  border-radius: 999px;
  background: rgba(248, 239, 228, 0.72);
  color: #4d311e;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-video-frame-full {
  min-height: clamp(420px, 70vw, 650px);
  background: #2d241d;
}

.hero-video-frame-full .hero-video-full {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-frame-full .hero-video-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.10));
}

.hero-video-frame-full + .hero-floating-note,
.hero-video-frame-full .hero-video-fallback,
.hero-video-frame-full .hero-showcase-layout,
.hero-video-frame-full .hero-product-card {
  display: none !important;
}

.custom-grid-single {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.custom-grid-single .custom-form {
  width: 100%;
}

.custom-preview {
  display: none !important;
}

.custom-file-label input[type="file"],
.business-file-label input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-picker-btn {
  width: fit-content;
  margin-top: 10px;
  border: 1px solid rgba(77, 49, 30, 0.18);
  border-radius: 999px;
  background: #fffaf4;
  color: var(--ink);
  padding: 10px 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.file-picker-btn:hover {
  border-color: rgba(77, 49, 30, 0.34);
}

.file-list {
  list-style: none;
  padding: 0;
  margin: -6px 0 0;
  display: grid;
  gap: 8px;
}

.file-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(77, 49, 30, 0.12);
  border-radius: 14px;
  padding: 9px 10px;
  background: rgba(255, 250, 244, 0.8);
  color: var(--muted);
  font-size: 0.9rem;
}

.file-list button {
  border: 0;
  background: transparent;
  color: #7a4d2f;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.business-file-name.is-full {
  color: #245839;
  border-color: rgba(36, 88, 57, 0.24);
  background: rgba(36, 88, 57, 0.08);
}

input[readonly] {
  background: rgba(255, 250, 244, 0.84);
  color: var(--muted);
}

@media (max-width: 600px) {
  .hero-video-frame-full {
    min-height: 500px;
  }

  .product-size-note {
    font-size: 0.86rem;
  }
}


/* v35 — coleção Birrô, Vintage com imagens e abas neutras */
.collection-tab {
  background: rgba(255, 255, 255, 0.84) !important;
  color: var(--muted) !important;
  border-color: rgba(77, 49, 30, 0.16) !important;
}

.collection-tab::before,
.collection-tab[data-collection="brasil"]::before,
.collection-tab[data-collection="paris"]::before,
.collection-tab[data-collection="vintage"]::before,
.collection-tab[data-collection="memorias"]::before {
  display: none !important;
  background: none !important;
}

.collection-tab.active {
  background: #fffaf5 !important;
  color: var(--ink) !important;
  border-color: rgba(77, 49, 30, 0.34) !important;
  box-shadow: 0 10px 24px rgba(77, 49, 30, 0.08);
}

.active-collection-label,
.active-collection-label.collection-brasil,
.active-collection-label.collection-paris,
.active-collection-label.collection-vintage,
.active-collection-label.collection-memorias {
  background: #fffaf4 !important;
  border-color: rgba(77, 49, 30, 0.18) !important;
  color: var(--ink) !important;
}

.pin-option::before,
.pin-option.collection-brasil::before,
.pin-option.collection-paris::before,
.pin-option.collection-vintage::before,
.pin-option.collection-memorias::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,239,228,0.96)) !important;
  opacity: 1 !important;
}

.pin-option {
  overflow: hidden;
}

.pin-option .pin-id {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.96) !important;
  color: #5c3b25 !important;
  border: 1px solid rgba(77, 49, 30, 0.10);
  box-shadow: 0 4px 10px rgba(77, 49, 30, 0.08);
}

.pin-thumb {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(180deg, #fffdfa, #f2e6d9);
}

.pin-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 240ms ease, filter 240ms ease;
}

.pin-thumb-placeholder {
  background:
    radial-gradient(circle at 50% 35%, rgba(183, 131, 78, 0.08), transparent 22%),
    linear-gradient(180deg, #fffdfa, #f2e6d9);
}

.pin-option.has-photo span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 250, 244, 0.94);
  color: #2f2118;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px rgba(26, 18, 12, 0.12);
}

.pin-option.has-photo small {
  color: #7e6655;
}

.pin-option.has-photo:hover img,
.pin-option.has-photo.selected img {
  transform: scale(1.08);
  filter: saturate(1.04) contrast(1.02);
}

.pin-option:not(.has-photo) span {
  position: relative;
  z-index: 2;
}

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

@media (max-width: 560px) {
  .pin-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pin-option.has-photo span {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 9px 10px;
  }
}


/* v36 — contraste melhor no fundo marrom e Birrô com 9 artes reais */
.section-title > p:not(.product-size-note),
.how-section .section-title > p,
.how-section .section-title .eyebrow,
.collections-panel .section-title > p,
#colecoes .section-title > p,
#colecoes .collection-summary,
.hero-copy,
.hero-highlights,
.hero-highlights span,
.purchase-note,
.footer-note,
.bank-intro,
.admin-card p:not(.eyebrow) {
  color: rgba(255, 248, 240, 0.92);
}

.how-section .section-title h2,
#colecoes .section-title h2,
#personalizado .section-title h2,
#empresas .section-title h2,
#checkout .checkout-heading h2,
#social .social-content h2 {
  color: #fff8f0;
}

.how-section .section-title .eyebrow,
#colecoes .section-title .eyebrow,
#personalizado .section-title .eyebrow,
#empresas .section-title .eyebrow,
#checkout .checkout-heading .eyebrow,
#social .social-content .eyebrow {
  color: rgba(255, 238, 219, 0.95);
}

.how-section .section-title,
#colecoes .section-title,
#personalizado .section-title,
#empresas .section-title,
#social .social-content,
#checkout .checkout-heading {
  text-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

/* textos cinza em cima do fundo marrom ficam claros */
.section-pad > .section-title > p,
.section-pad > .section-title.narrow > p {
  color: rgba(255, 248, 240, 0.92);
}

/* Birrô e Vintage usam imagem real */
.pin-option.has-photo {
  background: #fff9f3;
}

.pin-option.has-photo .pin-id {
  z-index: 3;
}

.pin-option.has-photo .pin-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(19,15,12,0.10) 100%);
  pointer-events: none;
}

.pin-option.has-photo:hover,
.pin-option.has-photo.selected {
  box-shadow: 0 18px 42px rgba(32, 19, 9, 0.14);
}

.pin-option.has-photo:hover img,
.pin-option.has-photo.selected img {
  transform: scale(1.09);
}


/* v37 — Bureau correto + IDs discretos nos produtos com foto */
.pin-option.has-photo span {
  display: none !important;
}

.pin-option.has-photo .pin-id {
  top: 8px !important;
  left: 8px !important;
  padding: 3px 7px !important;
  border-radius: 999px !important;
  font-size: 0.58rem !important;
  letter-spacing: 0.08em !important;
  opacity: 0.78 !important;
  background: rgba(255, 250, 244, 0.72) !important;
  color: rgba(65, 43, 29, 0.86) !important;
  border: 1px solid rgba(77, 49, 30, 0.10) !important;
  box-shadow: 0 4px 10px rgba(38, 22, 12, 0.08) !important;
  backdrop-filter: blur(8px);
}

.pin-option.has-photo:hover .pin-id,
.pin-option.has-photo.selected .pin-id {
  opacity: 0.94 !important;
}

.pin-option.has-photo .pin-thumb {
  border-radius: 24px;
}

.pin-option.has-photo {
  border-color: rgba(255, 250, 244, 0.75);
  box-shadow: 0 12px 26px rgba(32, 19, 9, 0.10);
}

@media (max-width: 560px) {
  .pin-option.has-photo .pin-id {
    top: 7px !important;
    left: 7px !important;
    font-size: 0.52rem !important;
    padding: 3px 6px !important;
  }
}


/* v38 — corrigir contraste do hero e remover bordas brancas das artes */
.hero .eyebrow,
.hero h1,
.hero .hero-copy,
.hero .hero-highlights {
  color: #3b281c !important;
}

.hero .hero-highlights span {
  color: #4a3426 !important;
  background: rgba(255, 250, 244, 0.94) !important;
  border-color: rgba(77, 49, 30, 0.12) !important;
  box-shadow: 0 8px 20px rgba(38, 22, 12, 0.06);
}

/* cards com foto ficam full-bleed, sem moldura branca */
.pin-option.has-photo {
  border: 0 !important;
  background: transparent !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 24px rgba(32, 19, 9, 0.10);
}

.pin-option.has-photo::before,
.pin-option.has-photo::after,
.pin-option.has-photo .pin-thumb::after {
  display: none !important;
  content: none !important;
}

.pin-option.has-photo .pin-thumb {
  position: absolute;
  inset: 0 !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  background: transparent !important;
}

.pin-option.has-photo .pin-thumb img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: transparent !important;
  transform: scale(1.04);
}

.pin-option.has-photo:hover img,
.pin-option.has-photo.selected img {
  transform: scale(1.08) !important;
  filter: saturate(1.03) contrast(1.01) !important;
}

.pin-option.has-photo .pin-id {
  z-index: 4 !important;
  background: rgba(255, 248, 240, 0.82) !important;
}

@media (max-width: 560px) {
  .hero .hero-copy {
    color: #473327 !important;
  }

  .pin-option.has-photo {
    border-radius: 20px !important;
  }

  .pin-option.has-photo .pin-thumb {
    border-radius: 20px !important;
  }
}


/* v39 — carrosséis de imagens e contraste final dos textos */
.brazil-gallery-section,
.inspiration-carousel-section {
  background: transparent;
}

.brazil-gallery-section {
  padding-top: clamp(52px, 8vw, 96px);
  padding-bottom: 20px;
}

.inspiration-carousel-section {
  padding-top: 18px;
}

.carousel-divider {
  width: min(760px, calc(100% - 40px));
  height: 1px;
  margin: 0 auto clamp(28px, 5vw, 44px);
  background: linear-gradient(90deg, transparent, rgba(255, 248, 240, 0.72), transparent);
}

.auto-carousel {
  position: relative;
  width: min(920px, calc(100% - 40px));
  aspect-ratio: 1200 / 1060;
  margin: 0 auto;
  overflow: hidden;
  border-radius: clamp(26px, 4vw, 42px);
  background: rgba(248, 239, 228, 0.22);
  box-shadow: 0 24px 70px rgba(36, 21, 12, 0.22);
  border: 1px solid rgba(255, 248, 240, 0.24);
}

.auto-carousel .carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.015);
  will-change: opacity, transform;
}

.primary-carousel .carousel-slide {
  animation: carouselFadeTwo 8s infinite ease-in-out;
}

.primary-carousel .carousel-slide:nth-child(2) {
  animation-delay: 4s;
}

.inspiration-carousel .carousel-slide {
  animation: carouselFadeFive 20s infinite ease-in-out;
}

.inspiration-carousel .carousel-slide:nth-child(2) { animation-delay: 4s; }
.inspiration-carousel .carousel-slide:nth-child(3) { animation-delay: 8s; }
.inspiration-carousel .carousel-slide:nth-child(4) { animation-delay: 12s; }
.inspiration-carousel .carousel-slide:nth-child(5) { animation-delay: 16s; }

@keyframes carouselFadeTwo {
  0% { opacity: 0; transform: scale(1.025); }
  7% { opacity: 1; transform: scale(1); }
  46% { opacity: 1; transform: scale(1); }
  53% { opacity: 0; transform: scale(1.018); }
  100% { opacity: 0; transform: scale(1.018); }
}

@keyframes carouselFadeFive {
  0% { opacity: 0; transform: scale(1.025); }
  4% { opacity: 1; transform: scale(1); }
  17% { opacity: 1; transform: scale(1); }
  21% { opacity: 0; transform: scale(1.018); }
  100% { opacity: 0; transform: scale(1.018); }
}

/* Força contraste claro nas áreas sobre o fundo marrom */
main > section:not(.hero):not(.intro-grid):not(.brazil-gallery-section):not(.inspiration-carousel-section) > .section-title .eyebrow,
main > section:not(.hero):not(.intro-grid):not(.brazil-gallery-section):not(.inspiration-carousel-section) > .section-title p,
main > section:not(.hero):not(.intro-grid):not(.brazil-gallery-section):not(.inspiration-carousel-section) > .section-title h2,
main > section:not(.hero):not(.intro-grid):not(.brazil-gallery-section):not(.inspiration-carousel-section) > .checkout-heading .eyebrow,
main > section:not(.hero):not(.intro-grid):not(.brazil-gallery-section):not(.inspiration-carousel-section) > .checkout-heading p,
main > section:not(.hero):not(.intro-grid):not(.brazil-gallery-section):not(.inspiration-carousel-section) > .checkout-heading h2 {
  color: #fff8f0 !important;
}

main > section:not(.hero):not(.intro-grid) .section-title p,
main > section:not(.hero):not(.intro-grid) .section-title .eyebrow {
  color: #fff8f0 !important;
}

.section-title.narrow p:not(.product-size-note),
.checkout-heading p,
.social-content p,
.how-section .section-title p,
.collections-panel .section-title p {
  color: #fff8f0 !important;
}

/* Mantém cards/formulários legíveis por dentro */
.custom-form .hint,
.business-form .hint,
.checkout-card p,
.checkout-card .hint,
.cart-panel p,
.cart-item p,
.bank-modal-card p,
.admin-panel p,
.purchase-success-card p {
  color: var(--muted) !important;
}

@media (prefers-reduced-motion: reduce) {
  .auto-carousel .carousel-slide {
    animation: none !important;
    opacity: 0;
  }
  .auto-carousel .carousel-slide:first-child {
    opacity: 1;
  }
}

@media (max-width: 700px) {
  .auto-carousel {
    width: calc(100% - 28px);
    border-radius: 28px;
  }

  .brazil-gallery-section {
    padding-top: 54px;
  }
}


/* v40 — carrosséis com efeito slide */
.auto-carousel {
  position: relative;
  overflow: hidden;
}

.auto-carousel .carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  will-change: transform;
}

.auto-carousel .carousel-item {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
}

.auto-carousel .carousel-slide {
  position: static !important;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.auto-carousel.is-ready .carousel-track {
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .auto-carousel.is-ready .carousel-track {
    transition: none !important;
  }
}


/* v41 — mobile mais estável + bolinhas dos carrosséis */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  min-width: 0;
  touch-action: pan-y;
}

body,
.site-header,
main,
section,
.navbar,
.hero,
.section-pad,
.collection-builder,
.brazil-gallery-section,
.inspiration-carousel-section,
.checkout-card,
.custom-form,
.business-form {
  max-width: 100%;
}

img,
video,
canvas,
svg {
  max-width: 100%;
}

.site-header {
  left: 0;
  right: 0;
  overflow-x: clip;
}

.navbar {
  width: min(1180px, calc(100% - 20px));
  overflow: hidden;
}

.mobile-panel,
.nav-links,
.bank-modal,
.purchase-success-modal {
  overscroll-behavior: contain;
}

.auto-carousel {
  max-width: calc(100vw - 28px);
  transform: translateZ(0);
  contain: layout paint;
}

.auto-carousel.is-ready .carousel-track {
  transition: transform 980ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.carousel-track {
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(22, 17, 13, 0.28);
  border: 1px solid rgba(255, 248, 240, 0.24);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 248, 240, 0.52);
  cursor: pointer;
  transition: width 240ms ease, background 240ms ease, opacity 240ms ease;
}

.carousel-dots button.active {
  width: 20px;
  background: #fff8f0;
}

@media (max-width: 700px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    position: relative;
  }

  .navbar {
    width: calc(100% - 16px);
  }

  .auto-carousel {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px);
  }

  .carousel-dots {
    bottom: 10px;
    gap: 6px;
    padding: 7px 9px;
  }

  .carousel-dots button {
    width: 6px;
    height: 6px;
  }

  .carousel-dots button.active {
    width: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .auto-carousel.is-ready .carousel-track {
    transition: none !important;
  }

  .carousel-dots button {
    transition: none !important;
  }
}


/* v42 — carrosséis rápidos, contínuos e com swipe */
.auto-carousel {
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.auto-carousel .carousel-track {
  cursor: grab;
}

.auto-carousel.is-dragging .carousel-track {
  cursor: grabbing;
}

.auto-carousel.is-ready .carousel-track {
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.carousel-dots {
  bottom: 12px;
  gap: 6px;
  padding: 7px 9px;
}

.carousel-dots button {
  width: 6px;
  height: 6px;
}

.carousel-dots button.active {
  width: 18px;
}

@media (max-width: 700px) {
  .auto-carousel {
    touch-action: pan-y;
    overscroll-behavior: contain;
  }

  .auto-carousel .carousel-track {
    will-change: transform;
  }
}


/* v43 — deixa o JavaScript controlar o loop, sem bug no último slide */
.auto-carousel .carousel-track {
  transition: none !important;
}

.auto-carousel.is-ready .carousel-track {
  transition: none !important;
}

.auto-carousel.is-dragging .carousel-track {
  transition: none !important;
}

.auto-carousel {
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.carousel-dots {
  bottom: 12px;
}


/* v44 — mobile, seleção numerada e carrinho mais claro */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

* {
  box-sizing: border-box;
}

.site-header {
  width: 100%;
  max-width: 100vw;
}

.navbar {
  width: min(1180px, 100%);
  max-width: 100%;
}

.cart-link {
  overflow: visible;
}

.cart-link.cart-highlight {
  animation: cartButtonPulse 720ms ease;
}

@keyframes cartButtonPulse {
  0%, 100% { transform: scale(1); }
  35% { transform: scale(1.12); box-shadow: 0 0 0 8px rgba(183, 131, 78, 0.18); }
}

.cart-feedback {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 120;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 248, 240, 0.24);
  border-radius: 999px;
  background: rgba(22, 17, 13, 0.92);
  color: #fff8f0;
  box-shadow: 0 18px 44px rgba(22, 17, 13, 0.22);
  padding: 12px 18px;
  font-weight: 800;
  transition: opacity 200ms ease, transform 200ms ease;
}

.cart-feedback.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.selection-order {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5;
  width: 27px;
  height: 27px;
  display: none;
  place-items: center;
  border-radius: 999px;
  background: #15110e;
  color: #fff8f0;
  border: 2px solid rgba(255, 248, 240, 0.95);
  box-shadow: 0 10px 24px rgba(20, 14, 10, 0.2);
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 900;
}

.pin-option.has-selection-order .selection-order,
.pin-option.selected .selection-order {
  display: grid;
}

.pin-option.selected {
  transform: translateY(-2px);
}

.pin-option.selected::before {
  opacity: 0.92;
}

.pin-option.has-photo.selected {
  box-shadow: 0 0 0 4px rgba(255, 248, 240, 0.88), 0 18px 42px rgba(32, 19, 9, 0.18) !important;
}

.kit-options {
  align-items: stretch;
}

.kit-options label {
  min-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  line-height: 1;
  text-align: center;
  font-weight: 800;
}

.kit-options small {
  display: block;
  margin: 0;
  line-height: 1;
  font-size: 0.72rem;
}

.footer,
.footer p,
.footer a,
.footer .brand-wordmark {
  color: #fff8f0 !important;
}

.footer {
  border-top-color: rgba(255, 248, 240, 0.28);
}

.section-pad:not(.hero) > .section-title p,
.section-pad:not(.hero) > .section-title .eyebrow,
.section-pad:not(.hero) > .section-title h2,
.social-content p,
.social-content .eyebrow,
.social-content h2 {
  color: #fff8f0 !important;
}

/* carrossel v44: sem branco vazio ao arrastar */
.auto-carousel .carousel-track {
  width: 100% !important;
  transition: none !important;
}

.auto-carousel .carousel-item {
  flex: 0 0 100% !important;
  min-width: 100% !important;
}

.auto-carousel {
  touch-action: pan-y;
  overscroll-behavior: contain;
}

@media (max-width: 920px) {
  .navbar {
    width: 100%;
    padding: 12px 10px;
    gap: 6px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }

  .brand-wordmark {
    max-width: 100%;
    font-size: clamp(2.1rem, 9.8vw, 2.85rem) !important;
    line-height: 0.82;
    white-space: nowrap;
  }

  .nav-actions {
    flex: 0 0 auto;
    margin-left: 0;
    gap: 6px;
  }

  .icon-btn,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .lang-quick-toggle {
    min-width: 62px;
    padding: 0 10px;
    gap: 5px;
  }

  .lang-quick-toggle svg {
    width: 18px;
    height: 18px;
  }

  .cart-link strong {
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    font-size: 0.62rem;
    border-width: 1.5px;
  }

  .nav-links {
    left: 10px;
    right: 10px;
    top: 68px;
  }
}

@media (max-width: 600px) {
  .section-pad {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-shell {
    padding: 22px 18px;
  }

  .builder-card,
  .cart-card,
  .custom-form,
  .business-form,
  .checkout-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .kit-options {
    width: 100%;
    justify-content: space-between;
    padding: 6px;
  }

  .kit-options label {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 6px;
  }

  .selection-status {
    font-size: clamp(1.3rem, 8vw, 2.1rem);
    align-items: baseline;
  }

  .selection-order {
    width: 25px;
    height: 25px;
    font-size: 0.78rem;
  }

  .cart-feedback {
    width: max-content;
    max-width: calc(100vw - 32px);
    text-align: center;
  }
}

@media (max-width: 380px) {
  .navbar {
    padding: 10px 7px;
    gap: 5px;
  }

  .brand-wordmark {
    font-size: clamp(1.9rem, 9.2vw, 2.25rem) !important;
  }

  .icon-btn,
  .menu-toggle {
    width: 37px;
    height: 37px;
  }

  .lang-quick-toggle {
    min-width: 56px;
    padding: 0 7px;
  }

  .lang-quick-toggle .lang-short {
    font-size: 0.62rem;
  }

  .kit-options label {
    font-size: 0.95rem;
  }
}


/* v45 — correção definitiva do carrossel vazio */
.auto-carousel {
  overflow: hidden !important;
  background: rgba(248, 239, 228, 0.16);
}

.auto-carousel .carousel-track {
  display: flex !important;
  align-items: stretch;
  height: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.auto-carousel .carousel-item {
  height: 100%;
  flex: 0 0 100%;
  min-width: 100%;
  overflow: hidden;
}

.auto-carousel .carousel-slide {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  position: static !important;
}

.auto-carousel.is-dragging .carousel-track {
  transition: none !important;
}

/* v46 — correção de contraste: seção Empresas no fundo marrom */
#empresas > div:first-child {
  position: relative;
  z-index: 1;
  padding: clamp(10px, 2vw, 18px) 0;
}

#empresas > div:first-child .eyebrow {
  color: #f6c89f !important;
  opacity: 1 !important;
  text-shadow: 0 2px 10px rgba(30, 18, 10, 0.28);
}

#empresas > div:first-child h2 {
  color: #fff8f0 !important;
  text-shadow: 0 3px 18px rgba(30, 18, 10, 0.32);
}

#empresas > div:first-child p:not(.eyebrow) {
  color: #f9e8d9 !important;
  opacity: 1 !important;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(30, 18, 10, 0.24);
}

/* Mantém os textos dentro do formulário escuros e legíveis */
#empresas .business-form,
#empresas .business-form label span,
#empresas .business-form .hint,
#empresas .business-form .business-file-name {
  color: var(--muted) !important;
  text-shadow: none !important;
}

#empresas .business-form input,
#empresas .business-form textarea,
#empresas .business-form select {
  color: var(--ink) !important;
}

/* Coleção Brasil: mostra a arte inteira, sem cortar frases ou desenhos */
.pin-option.collection-brasil.has-photo .pin-thumb {
  background: #fffaf4 !important;
}

.pin-option.collection-brasil.has-photo .pin-thumb img {
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

.pin-option.collection-brasil.has-photo:hover img,
.pin-option.collection-brasil.has-photo.selected img {
  transform: scale(1.025) !important;
}

@media (max-width: 700px) {
  #empresas {
    gap: 34px;
  }

  #empresas > div:first-child {
    padding: 0 2px;
  }

  #empresas > div:first-child h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  #empresas > div:first-child p:not(.eyebrow) {
    font-size: 1.03rem;
    line-height: 1.58;
  }
}


/* v47 — contraste final: textos sobre o fundo marrom ficam brancos */
/* Áreas externas aos cards/formulários */
.how-section .section-title .eyebrow,
.how-section .section-title h2,
.how-section .section-title p,
#colecoes > .section-title .eyebrow,
#colecoes > .section-title h2,
#colecoes > .section-title p:not(.product-size-note),
#crie > .section-title .eyebrow,
#crie > .section-title h2,
#crie > .section-title p,
#empresas > div:first-child .eyebrow,
#empresas > div:first-child h2,
#empresas > div:first-child p:not(.eyebrow),
#checkout .checkout-heading .eyebrow,
#checkout .checkout-heading h2,
#checkout .checkout-heading p,
#instagram .social-content .eyebrow,
#instagram .social-content h2,
#instagram .social-content p,
.footer,
.footer p,
.footer a,
.footer .brand-wordmark {
  color: #fff8f0 !important;
  opacity: 1 !important;
}

/* Evita que o subtítulo de empresas volte a ficar cinza no mobile */
#empresas > div:first-child .eyebrow,
#empresas > div:first-child h2,
#empresas > div:first-child p:not(.eyebrow) {
  text-shadow: 0 2px 14px rgba(28, 16, 8, 0.28);
}

/* Mantém todos os textos dentro de cards/formulários escuros e legíveis */
.builder-card,
.builder-card p,
.builder-card .hint,
.builder-card h3,
.cart-card,
.cart-card p,
.cart-card h2,
.cart-card h3,
.custom-form,
.custom-form label span,
.custom-form .hint,
.custom-form p,
.business-form,
.business-form label span,
.business-form .hint,
.business-form p,
.checkout-card,
.checkout-card p,
.checkout-card label span,
.checkout-card .hint,
.checkout-card h2,
.checkout-card h3,
.admin-card,
.admin-card p,
.admin-card h2,
.bank-modal-card,
.bank-modal-card p,
.purchase-success-card,
.purchase-success-card p {
  text-shadow: none !important;
}

/* Coleção Brasil: mantém a imagem inteira visível, inclusive artes com texto */
.pin-option.collection-brasil.has-photo .pin-thumb img {
  object-fit: contain !important;
  object-position: center center !important;
  background: #fffaf4 !important;
}

/* === Ajuste final de contraste: seção Empresas e textos sobre fundo escuro === */
.business-section {
  background: #8a5d39;
}

.business-section > div:first-child .eyebrow {
  color: rgba(255, 245, 235, 0.78);
}

.business-section > div:first-child h2,
.business-section > div:first-child h3,
.business-section > div:first-child p:not(.hint),
.business-section > div:first-child strong {
  color: #ffffff;
}

.business-section .hint {
  color: rgba(255, 245, 235, 0.88);
}

.business-section .quote-box {
  color: #7a4d28;
}


/* === Coleção Flork === */
.collection-tab[data-collection="flork"]::before {
  background: linear-gradient(135deg, #ffffff 0%, #f8d9ea 42%, #dff5f4 100%);
}

.pin-option.collection-flork.has-photo .pin-thumb img {
  object-fit: contain !important;
  object-position: center center !important;
  background: #fffaf4 !important;
}
