:root {
  --rose: #d49b8a;
  --rose-light: #e8c4b8;
  --rose-dark: #c28573;
  --gold: #b3956c;
  --gold-light: #d4bc98;
  --cream: #fdf8f4;
  --warm-white: #fdf8f4;
  --text: #4a2e2a;
  --text-mid: #6b4d46;
  --text-soft: #9e7d78;
  --border: rgba(212, 155, 138, 0.18);
  --glass: rgba(253, 248, 244, 0.78);
  --wine: #9b2335;
  --wine-dark: #7a1a29;
  --wine-light: #c44a5e;
  --top-bar-height: 0px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.45;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  animation: blobDrift 18s ease-in-out infinite alternate;
}
.blob-1 { width: 600px; height: 600px; background: #d49b8a; top: -200px; right: -150px; animation-delay: 0s; }
.blob-2 { width: 500px; height: 500px; background: #b3956c; bottom: 10%; left: -100px; animation-delay: -6s; }
.blob-3 { width: 350px; height: 350px; background: #e8c4b8; top: 40%; left: 30%; animation-delay: -12s; }

@keyframes blobDrift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, 30px) scale(1.08); }
}

header {
  position: fixed;
  top: var(--top-bar-height); left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 4vw, 60px);
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: top 0.3s ease, background 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
header.scrolled {
  background: rgba(253, 249, 246, 0.92);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: #5e3a30;
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.logo-star {
  color: var(--rose);
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1;
  animation: starPulse 4s ease-in-out infinite;
}
@keyframes starPulse {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.75; transform: scale(1.15) rotate(20deg); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: left;
}
.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { transform: scaleX(1); }

.btn-nav {
  background: var(--text);
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1) !important;
}
.btn-nav::after { display: none !important; }
.btn-nav:hover {
  background: var(--rose) !important;
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(201, 133, 122, 0.3);
}

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border: none; background: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  border-radius: 12px;
  transition: background 0.2s;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: calc(120px + var(--top-bar-height)) clamp(20px, 5vw, 80px) 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-text { animation: heroIn 1s cubic-bezier(0.23, 1, 0.32, 1) both; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(201, 133, 122, 0.1);
  border-radius: 100px;
  border: 1px solid rgba(201, 133, 122, 0.2);
  animation: heroIn 1s 0.15s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--rose);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 24px;
  animation: heroIn 1s 0.25s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.hero h1 em {
  font-style: italic;
  color: var(--rose);
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineIn 0.6s 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes underlineIn { to { transform: scaleX(1); } }

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 430px;
  margin-bottom: 40px;
  font-weight: 300;
  animation: heroIn 1s 0.35s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: heroIn 1s 0.45s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.btn-fill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-fill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn-fill:hover::before { transform: translateX(0); }
.btn-fill:hover { transform: translateY(-2px); }
.btn-fill:active { transform: scale(0.97); }

.btn-primary-fill {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: white;
  box-shadow: 0 12px 32px rgba(201, 133, 122, 0.35);
}
.btn-primary-fill:hover { box-shadow: 0 18px 40px rgba(201, 133, 122, 0.45); }

.btn-ghost-fill {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.btn-ghost-fill:hover { border-color: rgba(201, 133, 122, 0.3); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  animation: heroIn 1s 0.55s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--text-soft); margin-top: 4px; letter-spacing: 0.5px; }

.hero-visual {
  position: relative;
  animation: heroIn 1s 0.3s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.carousel-wrap {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #f5e4de, #edd8cf);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.12),
    0 0 0 1px rgba(201, 133, 122, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.carousel-slide { min-width: 100%; height: 100%; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.9);
}

.c-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201, 133, 122, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 0;
}
.c-dot.active {
  width: 22px;
  border-radius: 4px;
  background: var(--rose);
}

.c-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  color: var(--rose);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}
.c-btn:hover { background: var(--rose); color: white; border-color: var(--rose); }

.hero-badge {
  position: absolute;
  top: 24px;
  left: -20px;
  background: white;
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(-2deg); }
}
.badge-icon { font-size: 1.4rem; }
.badge-text { font-size: 0.75rem; }
.badge-text strong { display: block; font-weight: 600; color: var(--text); font-size: 0.85rem; }
.badge-text span { color: var(--text-soft); }

.hero-badge-2 {
  position: absolute;
  bottom: 90px;
  right: -24px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: white;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 16px 40px rgba(201, 133, 122, 0.35);
  animation: floatBadge 4s 2s ease-in-out infinite;
  text-align: center;
  min-width: 120px;
}
.badge-2-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.badge-2-label { font-size: 0.7rem; opacity: 0.85; margin-top: 2px; }

.marquee-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: white;
  margin: 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
}
.marquee-gem {
  width: 8px; height: 8px;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
}

.section {
  position: relative;
  z-index: 1;
  padding: 100px clamp(20px, 5vw, 80px);
  max-width: 1300px;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-soft);
  font-weight: 300;
  max-width: 500px;
}
.section-header { margin-bottom: 56px; }

/* Category tabs */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  padding: 8px;
  background: white;
  border-radius: 100px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.03);
  width: fit-content;
  max-width: 100%;
  overflow: visible;
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar { display: none; }

.cat-tab {
  padding: 12px 24px;
  border: none;
  background: transparent;
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.cat-tab:hover { color: var(--rose); background: rgba(201, 133, 122, 0.06); }
.cat-tab.active {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: white;
  box-shadow: 0 8px 20px rgba(201, 133, 122, 0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  min-height: 200px;
}

.products-loading,
.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.products-loading::before {
  content: '';
  display: inline-block;
  width: 24px; height: 24px;
  border: 2px solid var(--border);
  border-top-color: var(--rose);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 12px;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Estado de erro com botão de tentar novamente */
.products-error { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.products-error p { margin: 0; }

/* Skeleton de carregamento (shimmer) */
.product-card.skeleton { pointer-events: none; }
.skeleton-img {
  aspect-ratio: 1;
  background: linear-gradient(110deg, #f3ddd6 25%, #faeee9 50%, #f3ddd6 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}
.skeleton-line {
  height: 14px;
  margin: 12px 0;
  border-radius: 6px;
  background: linear-gradient(110deg, #f3ddd6 25%, #faeee9 50%, #f3ddd6 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}
.skeleton-line.lg { width: 70%; height: 18px; }
.skeleton-line.sm { width: 40%; }
@keyframes skeleton-shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .skeleton-img, .skeleton-line { animation: none; }
}

.product-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.03);
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.product-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 28px 60px rgba(201, 133, 122, 0.15), 0 0 0 1px rgba(201, 133, 122, 0.12);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(145deg, #f9eae6, #f3ddd6);
  cursor: pointer;
}
.product-img-wrap:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: -3px;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

/* Produtos gratuitos (poster promocional em retrato): mostra a imagem inteira sem cortar */
.product-img-wrap.is-free {
  aspect-ratio: 4/5;
  background: #fff;
}
.product-img-wrap.is-free img { object-fit: contain; }

.product-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: white;
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.5px;
  border: 1px solid rgba(201, 133, 122, 0.2);
}

.product-info { padding: 22px 22px 26px; }
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.product-desc {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 18px;
  line-height: 1.5;
  white-space: pre-line;
  word-wrap: break-word;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
}
.product-install { font-size: 0.72rem; color: var(--text-soft); margin-top: 1px; }

.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--text);
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  flex-shrink: 0;
}
.btn-buy:hover {
  background: var(--rose);
  transform: scale(1.12) rotate(5deg);
  box-shadow: 0 8px 20px rgba(201, 133, 122, 0.35);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  animation: fadeIn 0.3s ease;
}
.lightbox.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 20px;
  box-shadow: 0 30px 50px rgba(0,0,0,0.4);
  transform: scale(0.95);
  transition: transform 0.3s;
}
.lightbox.active img { transform: scale(1); }

.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap { position: relative; width: 100%; }
.about-img-frame {
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 3/4;
  width: 100%;
  background: linear-gradient(145deg, #f5ddd8, #eacec6);
  box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}
.about-img-frame img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-decor {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px; height: 140px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(201, 169, 110, 0.3);
  color: white;
}
.about-decor-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.about-decor-txt { font-size: 0.75rem; font-weight: 500; opacity: 0.9; text-align: center; padding: 0 10px; }

.about-text-content .section-subtitle { max-width: 100%; margin-bottom: 28px; }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.about-feature:hover { border-color: rgba(201, 133, 122, 0.25); box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.feature-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,133,122,0.15), rgba(201,133,122,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-text strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.feature-text span { font-size: 0.8rem; color: var(--text-soft); }

.cta-section {
  position: relative;
  z-index: 1;
  margin: 0 clamp(20px, 4vw, 60px) 100px;
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5e6df 0%, #fdf0ea 50%, #f9ede4 100%);
  border: 1px solid rgba(212, 155, 138, 0.25);
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 50%, rgba(212, 155, 138, 0.18) 0%, transparent 65%);
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(179, 149, 108, 0.1);
}

.cta-text { position: relative; z-index: 1; }
.cta-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.cta-subtitle { font-size: 1rem; color: var(--text-mid); font-weight: 300; }
.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--rose);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(212, 155, 138, 0.35);
}
.btn-cta-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(212, 155, 138, 0.45);
}
.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border: 1px solid rgba(212, 155, 138, 0.4);
  color: var(--text-mid);
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  background: rgba(255,255,255,0.5);
}
.btn-cta-ghost:hover { border-color: var(--rose); color: var(--rose); background: rgba(255,255,255,0.8); }

footer {
  position: relative;
  z-index: 1;
  background: #3d2318;
  border-top: 1px solid rgba(212, 155, 138, 0.15);
  color: rgba(253, 248, 244, 0.7);
  padding: 60px clamp(20px, 5vw, 80px) 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1300px;
  margin: 0 auto 48px;
}
.footer-brand .logo { color: #fdf8f4; margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 260px; color: rgba(253, 248, 244, 0.6); }
.footer-col h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fdf8f4;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: rgba(253, 248, 244, 0.55);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--rose-light); }
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(253, 248, 244, 0.1);
  font-size: 0.8rem;
  color: rgba(253, 248, 244, 0.4);
}
.footer-bottom a { color: var(--rose-light); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  color: white; font-size: 1.6rem;
  text-decoration: none;
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  animation: waPulse 2.8s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 8px 50px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}
.wa-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5); }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(300px, 80vw);
    background: var(--warm-white);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    padding: 40px 32px;
    box-shadow: -20px 0 60px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; margin-top: 16px; }
  .nav-links a { padding: 18px 0; font-size: 1rem; }
  .btn-nav { padding: 14px 0; text-align: center; background: var(--rose) !important; color: white !important; border-radius: 12px; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .nav-overlay.open { opacity: 1; pointer-events: all; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: calc(100px + var(--top-bar-height));
    padding-bottom: 60px;
    text-align: center;
    gap: 40px;
  }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badge { display: none; }
  .hero-badge-2 { right: 10px; }

  .products-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  /* Em telas menores os botões quebram em várias linhas: trocamos o formato
     "cápsula" (raio 100px, que corta os botões dos cantos) por um card de cantos
     suaves, com as linhas centralizadas — mantém tudo visível e organizado. */
  .category-tabs {
    margin: 0 auto 32px;
    width: 100%;
    max-width: 400px;
    border-radius: 26px;
    padding: 10px 12px;
    gap: 8px;
  }

  .about-wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-width: 360px; margin: 0 auto; width: 100%; }
  .about-img-frame { aspect-ratio: 3/4; min-height: 380px; }
  .about-decor { right: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .cta-section { padding: 50px 30px; text-align: center; justify-content: center; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-section { margin: 0 16px 60px; border-radius: 28px; }
  .cat-tab { padding: 10px 18px; font-size: 0.8rem; }
}

/* ============================================
   Campanha Dia dos Namorados (12/06)
   Ativada via body.season-active pelo main.js
   ============================================ */

/* Faixa de urgência no topo */
.topbar-countdown {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: linear-gradient(90deg, var(--wine-dark) 0%, var(--wine) 50%, var(--wine-dark) 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 18px rgba(155, 35, 53, 0.25);
  overflow: hidden;
}
body.season-active {
  --top-bar-height: 44px;
}
body.season-active .topbar-countdown {
  display: block;
}
.topbar-countdown::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}
.topbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 44px;
  padding: 6px 16px;
  max-width: 1300px;
  margin: 0 auto;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.topbar-text-mini { display: none; }
.topbar-icon {
  display: inline-flex;
  align-items: center;
  animation: heartBeat 1.4s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(255, 200, 210, 0.5));
}
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  20% { transform: scale(1.15); }
  40% { transform: scale(0.95); }
  60% { transform: scale(1.1); }
}
.topbar-text {
  white-space: nowrap;
}
.topbar-text strong {
  font-weight: 700;
  letter-spacing: 0.5px;
}
.topbar-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.time-block {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  padding: 3px 9px;
  background: rgba(255,255,255,0.12);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  font-variant-numeric: tabular-nums;
}
.time-block strong {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
}
.time-block span {
  font-size: 0.65rem;
  opacity: 0.85;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #fff;
  color: var(--wine-dark);
  text-decoration: none;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.topbar-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

/* Variantes do hero quando season ativa: badge no h1 com a data destacada */
.hero-date-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: #fff;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(155, 35, 53, 0.3);
  vertical-align: middle;
}
body.season-active .hero-eyebrow {
  color: var(--wine);
  background: rgba(155, 35, 53, 0.08);
  border-color: rgba(155, 35, 53, 0.22);
}
body.season-active .hero-eyebrow::before { background: var(--wine); }
body.season-active .hero h1 em {
  color: var(--wine);
}
body.season-active .hero h1 em::after {
  background: linear-gradient(90deg, var(--wine), var(--gold));
}

/* Seção Especial 12 de Junho */
.season-section {
  display: none;
  position: relative;
  z-index: 1;
  margin: 80px clamp(20px, 4vw, 60px);
  border-radius: 40px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, var(--wine-dark) 0%, var(--wine) 60%, #b32c40 100%);
  color: #fff;
  padding: 70px clamp(28px, 5vw, 60px);
  box-shadow: 0 30px 70px rgba(155, 35, 53, 0.25);
}
body.season-active .season-section {
  display: block;
}
.season-section::before {
  content: '♥';
  position: absolute;
  top: -40px;
  right: -10px;
  font-size: 240px;
  color: rgba(255, 255, 255, 0.05);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  pointer-events: none;
  transform: rotate(-12deg);
}
.season-section::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  pointer-events: none;
}
.season-wrap {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.season-header {
  text-align: center;
  margin-bottom: 48px;
}
.season-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.season-eyebrow::before {
  content: '♥';
  font-size: 0.9rem;
  letter-spacing: 0;
}
.season-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 14px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.season-title em {
  font-style: italic;
  color: #ffd9b8;
}
.season-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
.season-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}
.season-feature {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 22px 20px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s ease;
}
.season-feature:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.13);
}
.sf-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.season-feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0;
}
.season-feature p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  font-weight: 300;
}
.season-cta-wrap {
  text-align: center;
}
.season-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #fff;
  color: var(--wine-dark);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.season-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.season-cta svg path { fill: #25D366; }

/* Badge "Namorados" nos primeiros 3 produtos quando season ativa */
.product-tag.tag-love {
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(155, 35, 53, 0.35);
}

/* Selos de disponibilidade (controlados pela coluna "Status" da planilha) */
.status-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(74, 46, 42, 0.18);
}
.status-badge.status-soldout { background: rgba(74, 46, 42, 0.9); }
.status-badge.status-low     { background: linear-gradient(135deg, var(--gold), var(--rose-dark)); }

/* Card esgotado: imagem dessaturada e sem zoom no hover */
.product-card.is-soldout .product-img-wrap img { filter: grayscale(0.5) opacity(0.72); }
.product-card.is-soldout:hover .product-img-wrap img { transform: none; }

/* Botão "avise-me / reservar" para itens esgotados ou em breve */
.btn-buy.btn-buy-notify {
  background: transparent;
  color: var(--rose-dark);
  border: 1.5px solid var(--rose);
  font-size: 1rem;
}
.btn-buy.btn-buy-notify:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}

/* Preço promocional (preço antigo riscado) */
.product-price-block .price-old {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-soft);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  margin-bottom: 2px;
  line-height: 1;
}
.product-price-block.on-sale .product-price {
  color: var(--wine);
}
.product-price-block.on-sale .product-install {
  color: var(--wine-dark);
  font-weight: 500;
}

/* Preço GRÁTIS (cortesia) e preço em texto livre */
.product-price.is-free {
  color: var(--wine);
  letter-spacing: 1px;
  font-style: normal;
}
.product-price.is-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-mid);
}

/* Estado "Em breve" para categoria sem planilha */
.products-coming-soon {
  grid-column: 1 / -1;
  text-align: center;
  padding: 70px 24px;
  background: linear-gradient(135deg, rgba(212, 155, 138, 0.08), rgba(179, 149, 108, 0.05));
  border: 1px dashed rgba(212, 155, 138, 0.3);
  border-radius: 28px;
}
.products-coming-soon .cs-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}
.products-coming-soon h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.products-coming-soon p {
  font-size: 0.95rem;
  color: var(--text-soft);
  max-width: 420px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.products-coming-soon .cs-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--text);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.25s ease;
}
.products-coming-soon .cs-cta:hover {
  background: var(--rose);
  transform: translateY(-2px);
}

/* Responsivo da campanha */
@media (max-width: 900px) {
  .topbar-inner {
    gap: 8px 10px;
    padding: 6px 12px;
    font-size: 0.72rem;
  }
  .topbar-text { font-size: 0.72rem; }
  .topbar-cta { display: none; }
  .time-block { padding: 2px 7px; }
  .time-block strong { font-size: 0.85rem; }
  .time-block span { font-size: 0.6rem; }

  .season-features { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .season-section { margin: 60px 16px; padding: 50px 24px; border-radius: 28px; }
  .season-feature { padding: 18px 16px; }
}
@media (max-width: 560px) {
  .topbar-inner {
    flex-wrap: nowrap;
    gap: 6px;
    padding: 6px 10px;
  }
  .topbar-text { display: none; }
  .topbar-text-mini { display: inline; font-weight: 500; opacity: 0.92; white-space: nowrap; }
  .time-block { padding: 2px 6px; gap: 2px; }
  .time-block strong { font-size: 0.78rem; }
  .time-block span { font-size: 0.55rem; }
  .season-features { grid-template-columns: 1fr; }
}
