.button,
.nav-cta,
.cart-cta,
.cart-clear,
.modal-close,
.product-button,
.stepper-btn,
.qty-btn {
  border: 0;
  border-radius: 999px;
}

.button,
.nav-cta,
.cart-cta,
.product-button,
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.button:hover,
.nav-cta:hover,
.cart-cta:hover,
.cart-clear:hover,
.modal-close:hover,
.product-button:hover,
.stepper-btn:hover,
.qty-btn:hover {
  transform: translateY(-2px);
}

.button::before,
.nav-cta::before,
.cart-cta::before,
.product-button::before {
  content: "";
  position: absolute;
  inset: -120% auto auto -20%;
  width: 60%;
  height: 320%;
  transform: rotate(24deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition:
    transform 0.8s ease,
    opacity 0.35s ease;
  pointer-events: none;
}

.button:hover::before,
.nav-cta:hover::before,
.cart-cta:hover::before,
.product-button:hover::before,
.product-card:hover .product-button::before {
  opacity: 1;
  transform: translateX(220%) rotate(24deg);
}

.button-primary,
.nav-cta,
.cart-cta,
.contact-button {
  color: var(--text-inverse);
  background: linear-gradient(135deg, #4d6e4f, var(--green));
  box-shadow: 0 16px 30px rgba(51, 71, 52, 0.32);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(139, 90, 60, 0.22);
  box-shadow: 0 12px 24px rgba(20, 35, 20, 0.08);
}

/* ── Music button ──────────────────────────────────── */
.hero-music {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  padding-left: 40px;
}

.button-music {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px 0 8px;
  min-height: 52px;
  background: linear-gradient(135deg, #6b3a22, var(--bronze));
  border: 1px solid rgba(196, 132, 74, 0.35);
  box-shadow:
    0 8px 24px rgba(139, 90, 60, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.button-music:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #7a4228, #a0673a);
  box-shadow:
    0 16px 36px rgba(139, 90, 60, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.music-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.music-icon svg {
  width: 36px;
  height: 36px;
  display: block;
}

.music-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.music-bars span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.85);
  animation: none;
}

.music-bars span:nth-child(1) { height: 10px; }
.music-bars span:nth-child(2) { height: 16px; }
.music-bars span:nth-child(3) { height: 7px; }

.button-music.is-playing .music-bars {
  opacity: 1;
}

.button-music.is-playing .music-bars span {
  animation: musicBar 0.9s ease-in-out infinite alternate;
}

.button-music.is-playing .music-bars span:nth-child(2) {
  animation-delay: 0.2s;
}

.button-music.is-playing .music-bars span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes musicBar {
  from { transform: scaleY(0.4); }
  to   { transform: scaleY(1); }
}

/* ── Hero proof ──────────────────────────────────────────── */
.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  grid-column: 1 / -1;
  grid-row: 2;
}

.hero-proof article,
.value-card,
.step,
.service-card,
.story-bio-card,
.contact-card,
.product-card {
  border-radius: var(--radius-lg);
  background: var(--card-soft);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-md);
}

.hero-proof article {
  padding: 24px 22px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-proof strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 3.2vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.hero-proof span {
  font-size: 0.94rem;
  line-height: 1.58;
  color: rgba(51, 37, 28, 0.68);
}

.hero-proof-note {
  padding: 24px 22px;
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  background: var(--card-soft);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-proof-note small {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  display: block;
}

.hero-proof-note p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  line-height: 1.24;
  color: var(--text);
  letter-spacing: -0.01em;
  flex: 1;
}

.value-stack {
  display: grid;
  gap: 18px;
}

.value-card,
.step,
.service-card,
.story-bio-card,
.contact-card {
  padding: 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.value-card:hover,
.step:hover,
.service-card:hover,
.story-bio-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(24, 16, 12, 0.16);
}

.value-card::before,
.step::before,
.service-card::before,
.story-bio-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.12), transparent 34%);
  pointer-events: none;
}

.value-card small,
.story-bio-card small,
.service-card small,
.product-card small,
.modal-summary small,
.contact-card small {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
}

.value-card h3,
.step h3,
.service-card h3,
.product-card h3,
.contact-card h3,
.modal h2,
.modal-item-name {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.04em;
}

.value-card h3,
.step h3 {
  font-size: 2rem;
  line-height: 0.95;
  margin-bottom: 10px;
}

.editorial-list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.editorial-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(51, 71, 52, 0.08);
}

.editorial-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bronze-soft), var(--bronze));
  box-shadow: 0 0 0 6px rgba(51, 71, 52, 0.12);
  flex-shrink: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: grid;
  gap: 18px;
  min-height: 100%;
}

.service-card-media {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: linear-gradient(145deg, rgba(45, 62, 45, 0.96), rgba(30, 40, 30, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card-copy {
  display: grid;
  gap: 10px;
}

.service-card h3 {
  font-size: 1.8rem;
  line-height: 0.96;
}

.service-card p,
.story-bio-card p,
.contact-card p {
  line-height: 1.75;
  color: var(--text-soft);
}

.story-bio-card {
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid rgba(139, 90, 60, 0.14);
  box-shadow: 0 8px 28px rgba(20, 35, 20, 0.08);
}

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

.product-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(160deg, rgba(49, 34, 26, 0.98), rgba(31, 22, 16, 0.98)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.45s ease,
    background 0.45s ease;
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.12), transparent 28%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.product-card:hover {
  transform: perspective(1200px) translateY(-8px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  box-shadow: 0 30px 54px rgba(15, 10, 8, 0.26);
  border-color: rgba(204, 174, 136, 0.28);
}

.product-card:hover::before,
.product-card.is-selected::before {
  opacity: 1;
}

.product-card.is-selected {
  border-color: rgba(222, 192, 150, 0.34);
  box-shadow: 0 34px 62px rgba(15, 10, 8, 0.28);
}

.product-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.product-category {
  color: rgba(248, 241, 231, 0.72);
  font-size: 0.84rem;
  line-height: 1.5;
}

.product-size {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--bronze-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  width: min(100%, 420px);
  margin: 0 auto;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(145deg, rgba(45, 62, 45, 0.96), rgba(30, 40, 30, 0.96));
  overflow: hidden;
}

.product-media::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}


.product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 18px;
  filter: drop-shadow(0 24px 34px rgba(9, 6, 4, 0.38));
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), filter 0.55s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.03) translateY(-1px);
  filter: drop-shadow(0 30px 38px rgba(9, 6, 4, 0.44));
}

.product-copy {
  display: grid;
  gap: 12px;
  align-content: start;
  flex: 1;
}

.product-card h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 0.96;
  color: var(--text-inverse);
  min-height: calc(2 * 1em * 0.96);
}

.product-card-copy {
  color: var(--text-muted);
  line-height: 1.72;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-copy.is-expanded {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.product-read-more {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  cursor: pointer;
  align-self: flex-start;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.product-read-more:hover {
  opacity: 1;
}

.product-card-subtitle {
  font-size: 0.84rem;
  color: rgba(248, 241, 231, 0.62);
  line-height: 1.62;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.product-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(248, 241, 231, 0.6);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  flex-shrink: 0;
}

.product-order-box {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.product-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 0.95;
  color: var(--bronze-soft);
}

.product-price-note {
  display: inline-block;
  margin-top: 6px;
  color: rgba(248, 241, 231, 0.52);
  font-size: 0.72rem;
  line-height: 1.5;
}

.product-stepper,
.modal-qty {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stepper-btn,
.qty-btn {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
}

.stepper-value {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
  color: var(--text-inverse);
}

.qty-num {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
  color: var(--text);
}

.product-note-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 241, 231, 0.56);
}

.product-note,
.modal-obs,
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(51, 71, 52, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  line-height: 1.65;
  resize: vertical;
  font: inherit;
}

.product-note {
  min-height: 96px;
  background: rgba(255, 250, 243, 0.92);
}

.product-button {
  width: 100%;
  border: 1px solid rgba(204, 174, 136, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--bronze-soft);
}

.product-card:hover .product-button,
.product-card.is-selected .product-button {
  background: linear-gradient(135deg, #4d6e4f, var(--green));
  color: var(--text-inverse);
  border-color: transparent;
}

.cart-float {
  position: sticky;
  bottom: 24px;
  margin-top: 30px;
  pointer-events: none;
}

.cart-bar {
  margin: 0 auto;
  width: min(860px, 100%);
  padding: 16px 18px;
  border-radius: 26px;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 14px;
  align-items: center;
  background: rgba(25, 18, 14, 0.92);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  pointer-events: all;
  transition: opacity 0.45s ease, transform 0.45s ease;
  position: relative;
  overflow: hidden;
}

.cart-bar::before,
.modal::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 30%);
}

.cart-bar.hidden {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  pointer-events: none;
}

.cart-bar.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cart-count {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #4d6e4f, var(--green));
  color: var(--text-inverse);
  font-weight: 800;
}

.cart-items-preview {
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-total {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--bronze-soft);
}

.cart-clear {
  min-width: 46px;
  min-height: 46px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(196, 155, 108, 0.08), transparent 28%),
    rgba(14, 10, 8, 0.68);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease, backdrop-filter 0.45s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  width: min(760px, 100%);
  max-height: min(86vh, 920px);
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(181, 138, 95, 0.35) transparent;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 245, 0.98)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-xl);
  transform: translateY(28px) scale(0.97);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.modal-overlay.is-open .modal {
  transform: translateY(0) scale(1);
}

.modal::-webkit-scrollbar {
  width: 6px;
}

.modal::-webkit-scrollbar-track {
  background: transparent;
}

.modal::-webkit-scrollbar-thumb {
  background: rgba(181, 138, 95, 0.35);
  border-radius: 999px;
}

.modal::-webkit-scrollbar-thumb:hover {
  background: rgba(181, 138, 95, 0.6);
}

.modal-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  margin-bottom: 22px;
}

.modal-header small {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
}

.modal h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.92;
  margin-bottom: 8px;
}

.modal-header p {
  color: var(--text-soft);
  line-height: 1.8;
}

.modal-close {
  min-width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(51, 71, 52, 0.14);
  color: var(--text);
  cursor: pointer;
}

.modal-items {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.modal-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(51, 71, 52, 0.08);
  position: relative;
  overflow: hidden;
}

.modal-item-name {
  font-size: 1.7rem;
  line-height: 0.95;
  margin-bottom: 6px;
}

.modal-item-price,
.modal-item-note {
  font-size: 0.84rem;
  color: var(--bronze);
  line-height: 1.55;
}

.modal-item-total {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  color: var(--green);
}

.modal-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  margin-bottom: 18px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(51, 71, 52, 0.98), rgba(34, 49, 34, 0.98));
  color: var(--text-inverse);
}

.modal-summary span {
  color: var(--text-muted);
}

.modal-summary strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: var(--bronze-soft);
}

.modal-obs {
  min-height: 120px;
  margin-bottom: 18px;
}

.modal-obs:focus,
.product-note:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(181, 138, 95, 0.38);
  box-shadow: 0 0 0 5px rgba(181, 138, 95, 0.08);
}

.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-button {
  flex: 1;
  min-width: 220px;
}

/* ── PIX step ── */
.modal-pix-step {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 8px 0;
  position: relative;
}

.modal.is-pix-mode {
  background: linear-gradient(160deg, #1f160f 0%, #2e1e12 60%, #1a1a0e 100%);
}

.modal.is-pix-mode #modalStepCart {
  display: none;
}

.modal.is-pix-mode .modal-pix-step {
  display: flex;
}

.modal-pix-step .modal-close {
  position: absolute;
  top: 0;
  right: 0;
}

.pix-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(51, 71, 52, 0.55);
  border: 1px solid rgba(100, 150, 100, 0.4);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a3d9a5;
  margin-bottom: 22px;
}

.pix-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-inverse);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.pix-divider {
  width: 44px;
  height: 1px;
  background: rgba(200, 151, 58, 0.5);
  margin: 0 auto 18px;
}

.pix-instruction {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.55);
  margin-bottom: 8px;
}

.pix-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--bronze-soft);
  margin-bottom: 24px;
  line-height: 1;
}

.pix-key-block {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 18px;
}

.pix-key-label {
  display: block;
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.45);
  margin-bottom: 10px;
}

.pix-key-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.pix-key-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-inverse);
  letter-spacing: 0.06em;
}

.pix-copy-btn {
  background: rgba(200, 151, 58, 0.12);
  border: 1px solid rgba(200, 151, 58, 0.35);
  color: var(--bronze-soft);
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.pix-copy-btn:hover,
.pix-copy-btn.is-copied {
  background: rgba(200, 151, 58, 0.28);
  color: #e8c87a;
}

.pix-note {
  font-size: 0.8rem;
  color: rgba(245, 237, 216, 0.45);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pix-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  flex-wrap: wrap;
}

.pix-actions .button {
  flex: 1;
  min-width: 160px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
}

.contact-form textarea {
  min-height: 140px;
}

.lightbox-item {
  cursor: zoom-in;
}

/* ── WhatsApp floating button ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 15px rgba(16, 185, 129, 0.3), 0 0 30px rgba(16, 185, 129, 0.4);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.wa-float:hover {
  background: #34d399;
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.45), 0 0 40px rgba(16, 185, 129, 0.5);
}

/* ── Orçamento form ── */
.orcamento-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 8px 0 24px;
}

.orcamento-card {
  width: min(720px, 100%);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 253, 248, 0.98), rgba(240, 246, 238, 0.98));
  border: 1px solid rgba(51, 71, 52, 0.14);
  box-shadow: 0 16px 56px rgba(24, 16, 12, 0.1), 0 2px 8px rgba(24, 16, 12, 0.04);
  overflow: hidden;
  position: relative;
}

.orcamento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(196, 132, 74, 0.5), rgba(196, 132, 74, 1), rgba(196, 132, 74, 0.5), transparent);
}

.orcamento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.55), transparent 55%);
  pointer-events: none;
}

.orcamento-inner {
  position: relative;
  z-index: 1;
  padding: 44px 48px;
  display: grid;
  gap: 30px;
}

.orcamento-deco {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}

.orcamento-deco::before,
.orcamento-deco::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 132, 74, 0.35));
}

.orcamento-deco::after {
  background: linear-gradient(270deg, transparent, rgba(196, 132, 74, 0.35));
}

.orcamento-deco-icon {
  font-size: 1.1rem;
  color: var(--bronze-soft);
  opacity: 0.8;
}

.orcamento-header small {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}

.orcamento-header h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 600;
  line-height: 0.96;
  color: var(--text);
  margin-bottom: 12px;
}

.orcamento-header p {
  color: var(--text-soft);
  line-height: 1.78;
  max-width: 54ch;
}

.orcamento-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(196, 132, 74, 0.2), rgba(51, 71, 52, 0.15), transparent);
}

.orcamento-body {
  display: grid;
  gap: 16px;
}

.orcamento-body > label:not(.orcamento-upload) {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
}

.orcamento-body > label:not(.orcamento-upload)::before {
  content: "";
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(196, 132, 74, 0.5), rgba(196, 132, 74, 1));
}

.orcamento-body textarea {
  min-height: 150px;
  resize: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(246, 250, 244, 0.85));
  border: 1.5px solid rgba(51, 71, 52, 0.18);
  border-radius: 18px;
  padding: 18px 20px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: inset 0 2px 6px rgba(24, 16, 12, 0.04);
}

.orcamento-body textarea::placeholder {
  color: rgba(51, 71, 52, 0.38);
  font-style: italic;
}

.orcamento-body textarea:focus {
  border-color: rgba(51, 71, 52, 0.45);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 4px rgba(51, 71, 52, 0.07), inset 0 2px 6px rgba(24, 16, 12, 0.03);
  outline: none;
}

.orcamento-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 24px;
  border-radius: 20px;
  border: 1.5px dashed rgba(51, 71, 52, 0.28);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(240, 246, 238, 0.4));
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.5;
  margin-top: 4px;
}

.orcamento-upload-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(196, 132, 74, 0.25);
  background: linear-gradient(145deg, rgba(196, 132, 74, 0.1), rgba(196, 132, 74, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
}

.orcamento-upload svg {
  width: 22px;
  height: 22px;
  color: var(--bronze-soft);
  flex-shrink: 0;
}

.orcamento-upload em {
  font-style: normal;
  opacity: 0.55;
}

.orcamento-upload input[type="file"] {
  display: none;
}

.orcamento-upload:hover {
  border-color: rgba(51, 71, 52, 0.5);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(235, 244, 233, 0.6));
  box-shadow: 0 4px 18px rgba(51, 71, 52, 0.07);
}

.orcamento-upload.has-file {
  border-color: rgba(51, 71, 52, 0.5);
  background: linear-gradient(145deg, rgba(235, 248, 235, 0.7), rgba(220, 240, 220, 0.5));
}

.orcamento-preview {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.orcamento-preview.hidden {
  display: none;
}

.orcamento-preview img {
  width: 100%;
  max-width: 360px;
  border-radius: 18px;
  object-fit: cover;
  max-height: 260px;
  border: 1px solid rgba(51, 71, 52, 0.14);
  box-shadow: 0 8px 24px rgba(24, 16, 12, 0.1);
}

.orcamento-remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(140, 70, 50, 0.7);
  padding: 0;
  transition: color 0.2s ease;
}

.orcamento-remove:hover {
  color: rgba(180, 50, 30, 0.9);
}

.orcamento-submit {
  width: 100%;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(13, 9, 7, 0.82);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.image-lightbox-frame {
  width: min(92vw, 1100px);
  max-height: 84vh;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 28px;
  background: rgba(29, 20, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
}

.image-lightbox-frame img {
  width: auto;
  max-width: 100%;
  max-height: calc(84vh - 28px);
  display: block;
  border-radius: 20px;
}

.image-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
  cursor: pointer;
}
