/* =========================================================
   O NOVO ELEMENTO — estilos gerais
   Paleta: branco / linho / dourado
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;1,500&family=Poppins:wght@300;400;500;600&family=Alex+Brush&display=swap");

:root {
  --color-white: #ffffff;
  --color-linen: #f5efe3;
  --color-linen-dark: #e9dfc9;
  --color-gold: #c6a15b;
  --color-gold-dark: #a9853f;
  --color-text: #2c2721;
  --color-text-light: #766c5c;
  --color-border: #e3d8c2;

  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;

  --container: 1180px;
  --radius: 4px;
  --shadow: 0 10px 30px rgba(44, 39, 33, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 1em;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section--linen {
  background: var(--color-linen);
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  max-width: 560px;
  margin: 0 auto 40px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-transform: uppercase;
}

/* =========== Brilho dourado (botões e logo) =========== */
.btn::before,
.logo-shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.75) 45%,
    rgba(230, 194, 122, 0.95) 50%,
    rgba(255, 255, 255, 0.75) 55%,
    transparent 100%
  );
  transform: skewX(-22deg);
  transition: left 0.85s ease;
  pointer-events: none;
  z-index: 2;
}

.btn:hover::before,
.nav-logo:hover .logo-shine::before {
  left: 130%;
}

.btn--gold {
  background: var(--color-gold);
  color: var(--color-white);
}

.btn--gold:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--outline {
  background: transparent;
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
}

.btn--outline:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #3fae5b;
  color: var(--color-white);
}

.btn--whatsapp:hover {
  background: #34954d;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--block {
  width: 100%;
}

/* =========== Reveal on scroll =========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* =========================================================
   HEADER / NAVBAR
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}

.site-header--scrolled {
  border-color: var(--color-border);
  box-shadow: 0 4px 20px rgba(44, 39, 33, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: var(--container);
  margin: 0 auto;
  transition: padding 0.3s ease;
}

.site-header--scrolled .nav {
  padding: 12px 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  position: relative;
}

.logo-shine {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  transition: height 0.3s ease;
}

.logo-img {
  height: 72px;
  transition: height 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.site-header--scrolled .logo-img {
  height: 54px;
}

.nav-logo:hover .logo-img {
  transform: scale(1.06) rotate(-1.5deg);
}

.logo-fallback {
  display: none;
  flex-direction: column;
  line-height: 1;
  cursor: default;
}

.logo-fallback strong {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: var(--color-text);
  transition: letter-spacing 0.4s ease, color 0.3s ease;
}

.nav-logo:hover .logo-fallback strong {
  letter-spacing: 0.09em;
  color: var(--color-gold-dark);
}

.logo-fallback span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold-dark);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background 0.25s ease, transform 0.2s ease;
}

.nav-cart:hover {
  background: var(--color-linen);
  transform: translateY(-1px);
}

.nav-cart svg {
  width: 20px;
  height: 20px;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 0.65rem;
  align-items: center;
  justify-content: center;
  display: none;
  padding: 0 4px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  height: 1.5px;
  width: 100%;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle--open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle--open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle--open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(78vw, 320px);
  height: 100vh;
  background: var(--color-white);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 200;
  padding: 100px 32px 32px;
}

.nav-mobile--open {
  transform: translateX(0);
}

.nav-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

/* =========================================================
   HERO CAROUSEL (fotos da coleção — crossfade automático em CSS puro)
   ========================================================= */

.hero-carousel {
  position: relative;
  width: 100%;
  height: min(72vh, 620px);
  min-height: 380px;
  overflow: hidden;
  background: var(--color-text);
}

.hero-carousel__track {
  position: absolute;
  inset: 0;
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  opacity: 0;
  animation: hero-carousel-fade 31.5s infinite;
}

.hero-carousel__slide:nth-child(1) { animation-delay: 0s; }
.hero-carousel__slide:nth-child(2) { animation-delay: 4.5s; }
.hero-carousel__slide:nth-child(3) { animation-delay: 9s; }
.hero-carousel__slide:nth-child(4) { animation-delay: 13.5s; }
.hero-carousel__slide:nth-child(5) { animation-delay: 18s; }
.hero-carousel__slide:nth-child(6) { animation-delay: 22.5s; object-position: center 8%; }
.hero-carousel__slide:nth-child(7) { animation-delay: 27s; object-position: center 4%; }

@keyframes hero-carousel-fade {
  0%,
  100% {
    opacity: 0;
  }
  1.5% {
    opacity: 1;
  }
  12.8% {
    opacity: 1;
  }
  14.3% {
    opacity: 0;
  }
}

.hero-carousel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 12, 0.18) 0%, rgba(20, 16, 12, 0.5) 100%);
}

.hero-carousel__caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  color: var(--color-white);
  padding: 0 24px;
  animation: hero-caption-in 1.1s ease both;
}

.hero-carousel__caption h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero-carousel__line {
  width: 56px;
  height: 1px;
  background: var(--color-gold);
  transform-origin: center;
  animation: hero-line-grow 4.5s ease-in-out infinite;
}

@keyframes hero-caption-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-line-grow {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  20% {
    transform: scaleX(1);
    opacity: 1;
  }
  85% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .hero-carousel {
    height: min(58vh, 480px);
  }
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  background: linear-gradient(180deg, var(--color-linen) 0%, var(--color-white) 100%);
  padding: 90px 24px 70px;
  text-align: center;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--color-gold-dark);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 760px;
  margin: 0 auto 18px;
}

.hero p {
  max-width: 520px;
  margin: 0 auto 32px;
  color: var(--color-text-light);
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .hero__notice {
  margin: 18px auto 0;
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-gold-dark);
}

/* =========================================================
   PRODUCT GRID / CARDS
   ========================================================= */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-pill {
  border: 1px solid var(--color-border);
  background: transparent;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-pill:hover {
  border-color: var(--color-gold);
}

.filter-pill--active {
  background: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-card__image {
  aspect-ratio: 3 / 4;
  background: var(--color-linen);
  position: relative;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__placeholder {
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-align: center;
  background: repeating-linear-gradient(
    135deg,
    var(--color-linen),
    var(--color-linen) 10px,
    var(--color-linen-dark) 10px,
    var(--color-linen-dark) 20px
  );
}

.product-card__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__category {
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--color-gold-dark);
  margin: 0 0 6px;
}

.product-card__name {
  font-size: 1.05rem;
  margin: 0 0 6px;
}

.product-card__desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-text-light);
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(0.85rem * 1.5 * 2);
}

.product-card__desc--expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.product-card__more {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  align-self: flex-start;
  margin: 0 0 14px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
}

.product-card__more:hover {
  color: var(--color-gold);
}

.product-card__more-arrow {
  font-size: 0.85rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.product-card__more--active .product-card__more-arrow {
  transform: rotate(180deg);
}

.product-card__prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.product-card__price--old {
  text-decoration: line-through;
  color: var(--color-text-light);
  font-size: 0.82rem;
}

.product-card__price--now {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
}

.product-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold-dark);
  transition: gap 0.25s ease;
}

.product-card__cta::after {
  content: "→";
  transition: transform 0.25s ease;
}

.product-card:hover .product-card__cta {
  gap: 10px;
}

.product-card:hover .product-card__cta::after {
  transform: translateX(2px);
}

.empty-state {
  text-align: center;
  color: var(--color-text-light);
  grid-column: 1 / -1;
  padding: 40px 0;
}

/* =========================================================
   PRODUCT DETAIL (produto.html)
   ========================================================= */

.product-detail__back {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: var(--color-text-light);
  transition: color 0.2s ease;
}

.product-detail__back:hover {
  color: var(--color-gold-dark);
}

.product-detail__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 860px) {
  .product-detail__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.product-gallery__main {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-linen);
}

.product-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.26s ease, transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Arrasto lateral: sai deslizando pra esquerda... */
.product-gallery__image.is-exiting {
  opacity: 0;
  transform: translateX(-36px);
}

/* ...e a próxima entra deslizando da direita (posição de partida, sem transição). */
.product-gallery__image.is-entering {
  opacity: 0;
  transform: translateX(36px);
  transition: none;
}

.product-gallery__placeholder {
  position: absolute;
  inset: 0;
}

.product-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.product-thumb {
  width: 64px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-linen);
  cursor: pointer;
  padding: 0;
  opacity: 0.65;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumb:hover {
  opacity: 0.9;
}

.product-thumb--active {
  opacity: 1;
  border-color: var(--color-gold);
}

.product-info h1 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 4px 0 6px;
}

.product-info__code {
  font-size: 0.78rem;
  color: var(--color-text-light);
  letter-spacing: 0.03em;
  margin: 0 0 14px;
}

.product-info__prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.product-info__stock {
  display: inline-block;
  color: #c0392b;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin: -6px 0 18px;
}

.product-info__desc {
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.product-info__notes {
  list-style: none;
  margin: 0 0 28px;
  padding: 18px 20px;
  background: var(--color-linen);
  border-radius: var(--radius);
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text);
}

.product-info__notes li {
  padding-left: 18px;
  position: relative;
}

.product-info__notes li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 0.7rem;
  top: 4px;
}

.product-info__block {
  margin-bottom: 26px;
}

.product-info__label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
  margin-bottom: 12px;
}

.product-info__label span {
  text-transform: none;
  letter-spacing: normal;
  color: var(--color-gold-dark);
  font-weight: 600;
}

.color-swatches {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.color-swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  outline: 1px solid var(--color-border);
  cursor: pointer;
  transition: transform 0.25s ease, outline-color 0.25s ease, box-shadow 0.25s ease;
}

.color-swatch:hover {
  transform: scale(1.1);
}

.color-swatch--active {
  outline-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.25);
  transform: scale(1.1);
}

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

.size-pill {
  min-width: 44px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-pill:hover {
  border-color: var(--color-gold);
}

.size-pill--active {
  background: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-white);
}

.product-info__actions {
  display: grid;
  gap: 12px;
  max-width: 380px;
}

.product-not-found {
  text-align: center;
  padding: 80px 24px;
  color: var(--color-text-light);
}

/* =========================================================
   CART PAGE
   ========================================================= */

.cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.cart-row {
  display: grid;
  grid-template-columns: 76px 1fr auto auto auto;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-row__image {
  width: 76px;
  height: 96px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-linen);
  position: relative;
}

.cart-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-row__info h3 {
  font-size: 0.98rem;
  margin: 0 0 4px;
}

.cart-row__meta {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin: 0 0 4px;
}

.cart-row__price {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin: 0;
}

.cart-row__qty {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 4px 10px;
}

.cart-row__qty button {
  border: none;
  background: none;
  font-size: 1rem;
  cursor: pointer;
  width: 20px;
  color: var(--color-gold-dark);
}

.cart-row__subtotal {
  font-weight: 600;
  white-space: nowrap;
}

.cart-row__remove {
  border: none;
  background: none;
  cursor: pointer;
  color: var(--color-text-light);
  font-size: 1rem;
  transition: color 0.2s ease;
}

.cart-row__remove:hover {
  color: #c0392b;
}

.cart-summary {
  display: grid;
  gap: 18px;
  background: var(--color-linen);
  border-radius: var(--radius);
  padding: 28px;
  align-self: start;
  max-width: 380px;
}

.cart-summary__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 600;
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
}

.cart-summary__note {
  font-size: 0.78rem;
  color: var(--color-text-light);
}

.mp-error {
  font-size: 0.8rem;
  color: #c0392b;
  margin: -6px 0 0;
}

.mp-error:empty {
  display: none;
  margin: 0;
}

.cart-status-banner {
  background: #fdf3e0;
  border: 1px solid var(--color-gold);
  color: var(--color-text);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.cart-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--color-text-light);
}

@media (max-width: 640px) {
  .cart-row {
    grid-template-columns: 60px 1fr auto;
    row-gap: 8px;
  }
  .cart-row__qty {
    grid-column: 2 / 4;
  }
}

/* =========================================================
   SOBRE / FALE CONOSCO
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.about-text__lead {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.8em;
  color: var(--color-gold-dark);
  background: linear-gradient(
    100deg,
    var(--color-gold-dark) 30%,
    var(--color-gold-dark) 42%,
    #fff6de 50%,
    var(--color-gold-dark) 58%,
    var(--color-gold-dark) 70%
  );
  background-size: 250% auto;
  background-position: 200% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: about-lead-shine 3.5s linear infinite;
}

@keyframes about-lead-shine {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

.about-text__signature {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-text);
  text-align: center;
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
  margin-top: 1.4em;
}

.about-credit {
  font-family: "Alex Brush", cursive;
  font-size: 0.95rem;
  color: var(--color-gold-dark);
  opacity: 0.75;
  margin: 6px 0 0;
  letter-spacing: 0.02em;
  text-align: center;
}

.about-seal {
  display: block;
  width: 132px;
  height: 132px;
  margin: 0 auto 20px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-size: 1.3rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: grid;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.contact-list li strong {
  color: var(--color-text);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: var(--color-text);
  color: var(--color-linen);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand__mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  object-fit: contain;
}

.footer-brand strong {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-white);
  letter-spacing: 0.03em;
}

.footer-brand p {
  color: #cfc4ac;
  font-size: 0.85rem;
  margin-top: 6px;
  max-width: 320px;
}

.footer-heading {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: #cfc4ac;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-links a {
  color: var(--color-linen);
  opacity: 0.85;
  transition: opacity 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 4px;
  color: var(--color-gold);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(245, 239, 227, 0.25);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.footer-social a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 17px;
  height: 17px;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 239, 227, 0.15);
  padding-top: 22px;
  text-align: center;
  font-size: 0.78rem;
  color: #b7ac93;
}

/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #3fae5b;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 90;
  animation: float-bounce 2.6s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.whatsapp-float:hover {
  animation-play-state: paused;
  transform: scale(1.08);
}

@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* =========================================================
   TOAST
   ========================================================= */

.cart-toast {
  position: fixed;
  bottom: 96px;
  right: 24px;
  background: var(--color-text);
  color: var(--color-white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 95;
  max-width: 280px;
}

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

/* =========================================================
   PAGE HEADER (páginas internas)
   ========================================================= */

.page-header {
  background: var(--color-linen);
  padding: 60px 24px 50px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.page-header p {
  color: var(--color-text-light);
  max-width: 520px;
  margin: 10px auto 0;
}

/* =========================================================
   THANK YOU (obrigado.html)
   ========================================================= */

.thankyou {
  padding: 100px 24px;
}

.thankyou__box {
  max-width: 560px;
  text-align: center;
}

.thankyou__box .about-seal {
  margin: 0 auto 24px;
}

.thankyou__box p {
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.thankyou__ref {
  font-size: 0.8rem;
  color: var(--color-text-light);
  opacity: 0.8;
  margin-top: -12px;
}
