:root {
  --bg: #fffaf7;
  --bg-soft: #f7efe8;
  --card: #ffffff;
  --text: #241916;
  --muted: #6f5b54;
  --primary: #8b5e3c;
  --primary-dark: #6f472a;
  --accent: #d8b08c;
  --line: #ead9cc;
  --success: #1f8f5f;
  --shadow: 0 8px 28px rgba(36, 25, 22, 0.09);
  --shadow-md: 0 16px 48px rgba(36, 25, 22, 0.12);
  --shadow-lg: 0 24px 64px rgba(36, 25, 22, 0.15);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #fffaf7 0%, #fff 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
}

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

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

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

/* TOPBAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 247, 0.92);
  border-bottom: 1px solid rgba(234, 217, 204, 0.6);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
  font-size: 1.04rem;
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

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

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.96rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  border-radius: 999px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 14px 28px;
  font-size: 0.98rem;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 12px 32px rgba(111, 71, 42, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  box-shadow: 0 16px 48px rgba(111, 71, 42, 0.32);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: linear-gradient(135deg, #fff 0%, #fffbf7 100%);
  color: var(--primary-dark);
  border: 1.5px solid rgba(234, 217, 204, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(111, 71, 42, 0.12);
  background: linear-gradient(135deg, #fffbf7 0%, #fff 100%);
}

/* HERO */
.hero {
  position: relative;
  padding: 32px 0 44px;
  min-height: calc(100svh - 78px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fffaf7 0%, #fff9f5 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -80px auto auto -140px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(216, 176, 140, 0.2), transparent 65%);
  pointer-events: none;
  filter: blur(1px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -140px auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(216, 176, 140, 0.12), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 48px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 590px;
  padding: 14px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  text-wrap: balance;
  color: var(--text);
  font-weight: 700;
  line-height: 1.12;
}

.hero p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.38vw, 1.2rem);
  max-width: 58ch;
  margin-bottom: 24px;
  line-height: 1.68;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points span {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* HERO CARD / PLAYER */
.hero-stage {
  justify-self: end;
  width: min(100%, 420px);
  max-width: 420px;
}

.hero-card {
  background: linear-gradient(135deg, #fff 0%, #fefaf5 100%);
  border: 1px solid rgba(234, 217, 204, 0.8);
  border-radius: 36px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 72px rgba(36, 25, 22, 0.18);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(216,176,140,0.28), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 14px 14px auto auto;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.78), transparent 72%);
  pointer-events: none;
}

.player {
  background: linear-gradient(180deg, #fff 0%, #fffcf9 100%);
  border: 1px solid rgba(234, 217, 204, 0.7);
  border-radius: 28px;
  padding: 12px;
  margin-bottom: 0;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

#preview-media {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 16px;
  margin: 4px 0 6px;
  background: #000;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex: 1;
  min-height: 0;
}

#preview-media:hover {
  transform: scale(1.02);
}

.player-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.player-cover {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.player-title { font-weight: 800; font-size: 0.84rem; }
.player-sub   { font-size: 0.78rem; color: var(--muted); }

.wave {
  display: grid;
  grid-template-columns: repeat(20, minmax(0, 1fr));
  align-items: end;
  gap: 1.5px;
  height: 20px;
  margin-bottom: 4px;
  overflow: hidden;
}

.wave span {
  display: block;
  background: linear-gradient(180deg, var(--accent), var(--primary));
  border-radius: 999px;
  max-height: 100%;
  animation: pulse 1.6s infinite ease-in-out;
  animation-play-state: paused;
  opacity: 0.9;
}

.wave span:nth-child(odd)  { animation-duration: 1.2s; }
.wave span:nth-child(3n)   { animation-duration: 1.9s; }

@keyframes pulse {
  0%, 100% { transform: scaleY(0.55); }
  50%       { transform: scaleY(1); }
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  width: 100%;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(234, 217, 204, 0.8);
  position: relative;
  z-index: 2;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  flex-wrap: nowrap;
  gap: 4px;
}

/* SECTIONS */
section {
  padding: 76px 0;
}

section:nth-child(odd) {
  background: linear-gradient(180deg, transparent 0%, rgba(247, 239, 232, 0.4) 100%);
}

.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 46px;
}

.section-head h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--text);
}

.section-head p {
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  font-weight: 500;
}

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

.card {
  background: linear-gradient(135deg, #fff 0%, #fffbf7 100%);
  border: 1px solid rgba(234, 217, 204, 0.7);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f1dfd1, #fff3ea);
  color: var(--primary-dark);
  font-size: 22px;
  margin-bottom: 18px;
}

.card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card p  { color: var(--muted); }

/* USE CASES */
.use-cases {
  background: linear-gradient(180deg, #fff 0%, #fbf4ef 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.chip {
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff 0%, #fffbf7 100%);
  border: 1.5px solid rgba(234, 217, 204, 0.8);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.96rem;
  transition: all 0.3s ease;
  cursor: default;
  letter-spacing: -0.01em;
}

.chip:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, #fffbf7 0%, #fff 100%);
  box-shadow: 0 6px 18px rgba(111, 71, 42, 0.1);
}

/* ================================================================
   HERO — OCC-FRAME  (cards de ocasiões embutidos no hero)
   ================================================================ */
.hero-occ-frame {
  position: relative;
  margin-bottom: 24px;
  border-radius: 20px;
  border: 1px solid rgba(234, 217, 204, 0.6);
  background: linear-gradient(135deg, #fff 0%, #fefaf5 100%);
  box-shadow: var(--shadow);
  /* sem overflow:hidden aqui — bloquearia o scroll do filho */
}

/* fade-out na borda direita indicando scroll */
.hero-occ-frame::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 48px;
  background: linear-gradient(to right, transparent, rgba(254, 250, 245, 0.96));
  pointer-events: none;
  z-index: 2;
  border-radius: 0 20px 20px 0;
}

.hero-occ-scroll {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 14px;
  border-radius: 20px; /* faz o clip do border-radius no scroll container */
}
.hero-occ-scroll::-webkit-scrollbar { display: none; }

/* Flex nowrap = overflow scrollável garantido em todos os browsers */
.hero-occ-frame .occ-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

/* Cards fixos e compactos no hero */
.hero-occ-frame .occ-card {
  flex: 0 0 165px;
  width: 165px;
  padding: 12px 10px 10px;
  gap: 8px;
  border-radius: 14px;
  scroll-snap-align: start;
}
.hero-occ-frame .occ-card-icon   { font-size: 1.2rem; margin-bottom: 2px; }
.hero-occ-frame .occ-card-title  { font-size: 0.76rem; }
.hero-occ-frame .occ-card-desc   { font-size: 0.69rem; line-height: 1.4; }
.hero-occ-frame .occ-card-media  { border-radius: 10px; }
.hero-occ-frame .occ-card-mood   { padding: 6px 8px; border-radius: 8px; gap: 4px; }
.hero-occ-frame .occ-mood-note   { font-size: 0.85rem; }
.hero-occ-frame .occ-mood-tags   { font-size: 0.62rem; }

/* ── hero-copy-image legacy — mantido para não quebrar cache, mas escondido ── */
.hero-copy-visual-link { display: none; }

/* ================================================================
   OCCASIONS CARDS (section #ocasioes)
   ================================================================ */
.occ-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.occ-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 20px 16px 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(234, 217, 204, 0.7);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  /* suporte a <a> como card — remove decoração de link */
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

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

.occ-card-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.occ-card-icon {
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 4px;
}

.occ-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.occ-card-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.occ-card-media {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-soft);
  min-height: 0;
  position: relative;  /* ancora o overlay de áudio */
  cursor: pointer;
}

/* Overlay tap-to-unmute */
.occ-audio-hint {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  pointer-events: none;
  z-index: 3;
  transition: background 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}

.occ-audio-hint.playing {
  background: rgba(139, 94, 60, 0.88);
  transform: scale(1.06);
}

/* ícone SVG dentro do hint */
.occ-audio-icon { flex-shrink: 0; }
.occ-audio-hint .occ-sound-wave { opacity: 0; transition: opacity 0.2s; }
.occ-audio-hint.playing .occ-sound-wave { opacity: 1; }
.occ-audio-hint.playing .occ-mute-x { display: none; }

.occ-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.occ-card-mood {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
}

.occ-mood-note {
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.occ-mood-tags {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Mood badge — cor por categoria */
.occ-card--mothers  .occ-card-mood { background: #fde8ec; color: #9b2335; }
.occ-card--birthday .occ-card-mood { background: #fff3d0; color: #92400e; }
.occ-card--wedding  .occ-card-mood { background: #f5ece5; color: #6f4534; }
.occ-card--baby     .occ-card-mood { background: #dbeafe; color: #1e40af; }
.occ-card--special  .occ-card-mood { background: #ede9fe; color: #5b21b6; }

/* Responsive */
@media (max-width: 1079px) {
  .occ-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .occ-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .occ-card {
    padding: 16px 12px 12px;
  }
  .occ-card-title { font-size: 0.92rem; }
  .occ-card-desc  { font-size: 0.75rem; }
}

@media (max-width: 400px) {
  .occ-cards {
    grid-template-columns: 1fr;
  }
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: linear-gradient(135deg, #fff 0%, #fffcf9 100%);
  border: 1px solid rgba(234, 217, 204, 0.8);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

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

.price-card.highlight {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, #fff 0%, #faf4ed 100%);
  box-shadow: var(--shadow-md);
  transform: translateY(-12px);
}

.price-card.highlight:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-16px);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.price-card h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.price-sub {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.99rem;
  font-weight: 500;
}

.price {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.price small {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 700;
}

.list {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.list li {
  list-style: none;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.6;
}

.list li::before {
  content: "\2713";
  color: var(--success);
  font-weight: 900;
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonials-grid .card {
  padding: 36px;
  border-left: 4px solid var(--primary);
}

.quote {
  font-size: clamp(1rem, 1.1vw, 1.16rem);
  margin-bottom: 22px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.72;
  font-style: italic;
}

.author {
  color: var(--primary-dark);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* CTA BOX */
.cta-box {
  background: linear-gradient(135deg, #fff6f0 0%, #fffaf7 100%);
  border: 1px solid rgba(234, 217, 204, 0.8);
  border-radius: 36px;
  padding: 54px 44px;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: -200px auto auto -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(216, 176, 140, 0.12), transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.cta-box p {
  color: var(--muted);
  max-width: 740px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.7;
}

/* FAQ */
.faq {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 24px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--primary-dark);
  font-size: 1.2rem;
  font-weight: 900;
}

.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--muted); margin-top: 12px; }

/* FOOTER */
.footer {
  padding: 48px 0 64px;
  color: var(--muted);
  text-align: center;
  font-size: 0.95rem;
  border-top: 1px solid rgba(234, 217, 204, 0.6);
  background: linear-gradient(180deg, transparent 0%, rgba(247, 239, 232, 0.3) 100%);

  .footer-trust {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .footer-trust-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    font-size: 0.82rem;
    color: var(--muted);
  }

  .footer-trust-sep { opacity: 0.4; }

  /* 🔒 Secure badge */
  .footer-secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    color: #2e7d32;
    letter-spacing: 0.01em;
  }

  /* Mercado Pago line */
  .footer-mp-line {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: var(--muted);
  }

  .footer-mp-badge {
    display: inline-flex;
    align-items: center;
    background: #009EE3;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    padding: 3px 9px;
    border-radius: 6px;
    line-height: 1.4;
    font-family: inherit;
  }
  .footer-mp-badge strong { font-weight: 800; margin-left: 1px; }

  /* Stripe line */
  .footer-stripe-line {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: var(--muted);
  }

  .footer-stripe-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #635BFF;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 3px 9px;
    border-radius: 6px;
    line-height: 1.4;
    font-family: inherit;
  }
  .footer-stripe-badge svg { flex-shrink: 0; }

  /* Payment method pills */
  .footer-payment-methods {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .pm-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    border: 1.5px solid transparent;
  }

  .pm-pix    { background: #32BCAD; color: #fff; }
  .pm-visa   { background: #1a1f71; color: #fff; }
  .pm-boleto { background: #f5f5f5; color: #555; border-color: #ddd; }
  .pm-amex   { background: #016FD0; color: #fff; }
  .pm-apple  { background: #000; color: #fff; }
  .pm-google { background: #fff; color: #555; border-color: #ddd; }

  /* Mastercard overlapping circles */
  .pm-mc {
    background: #fff;
    border-color: #ddd;
    gap: 0;
    padding: 0 8px;
  }
  .pm-mc-r { color: #EB001B; font-size: 1.1rem; line-height: 1; }
  .pm-mc-o { color: #F79E1B; font-size: 1.1rem; line-height: 1; margin-left: -6px; }
  font-weight: 500;
}

/* WHATSAPP FLOAT */
.sticky-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
}

.sticky-whatsapp a {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  background: #25D366;
  color: white;
  box-shadow: 0 16px 28px rgba(37, 211, 102, 0.28);
  transition: 0.25s ease;
}

.sticky-whatsapp a:hover { transform: scale(1.06); }

/* LANG SWITCHER */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-switcher select {
  appearance: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 32px 8px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-dark);
  cursor: pointer;
  font-family: inherit;
}

.lang-switcher::after {
  content: "▾";
  position: absolute;
  right: 12px;
  pointer-events: none;
  color: var(--primary-dark);
  font-size: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .pricing-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .price-card.highlight { transform: none; }
  .nav { display: none; }
  .hero {
    min-height: auto;
    padding: 18px 0 28px;
  }
  .hero-copy {
    max-width: none;
    padding: 0;
  }
  .hero-stage {
    order: -1;
    justify-self: center;   /* corrige o justify-self:end do desktop */
    width: 100%;
    max-width: 420px;
    /* sem margin:0 auto — justify-self:center já cuida disso */
  }
  .hero-card {
    padding: 14px;
    border-radius: 24px;
  }
  .player {
    padding: 10px;
    border-radius: 18px;
  }
  #preview-media {
    border-radius: 12px;
    margin: 6px 0;
  }
}

@media (max-width: 640px) {
  /* === TIPOGRAFIA === */
  h1 { font-size: 2rem; }

  /* === TOPBAR === */
  .topbar-inner { flex-wrap: wrap; gap: 12px; }

  /* ----------------------------------------------------------------
     HERO — flex column garante alinhamento perfeito entre as duas
     seções (player e copy) sem depender de justify-self do grid
     ---------------------------------------------------------------- */
  .hero { padding: 10px 0 18px; }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Vídeo player: primeiro visualmente (order mantido do 980px),
     largura total para alinhar com o hero-copy abaixo */
  .hero-stage {
    order: -1;
    width: 100%;
    max-width: none;       /* sem max-width: alinha com todo o container */
    align-self: stretch;   /* garante 100% da largura do flex pai */
    justify-self: auto;    /* reset do justify-self: center do 980px */
  }

  .hero-card  { padding: 12px; border-radius: 20px; }
  .player     { padding: 8px; border-radius: 16px; }
  .player-top { margin-bottom: 6px; }

  /* Vídeo compacto: aspect 16/9 em vez de 9/16 */
  #preview-media {
    aspect-ratio: 16 / 9;
    max-height: 200px;
    flex: none;
    border-radius: 10px;
  }

  .wave { height: 16px; margin-bottom: 6px; gap: 1px; }

  /* hero-copy: largura total, sem padding extra */
  .hero-copy { width: 100%; max-width: none; padding: 0; }

  /* Eyebrow: trunca com reticências em vez de estourar */
  .eyebrow {
    display: block;          /* max-width funciona melhor em block */
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  /* ----------------------------------------------------------------
     SCROLL DE CARDS — O PRÓPRIO .hero-occ-scroll É o flex row.
     Isso é o único padrão 100% confiável em mobile (Safari incluso):
     o container com overflow-x:auto precisa SER o flex container.
     ---------------------------------------------------------------- */
  .hero-occ-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 10px;
    padding: 14px;
    border-radius: 20px;
  }
  .hero-occ-scroll::-webkit-scrollbar { display: none; }

  /* .occ-cards some do layout: seus filhos viram flex items diretos
     do scroll container — sem quebrar o partial no #ocasioes */
  .hero-occ-frame .occ-cards { display: contents; }

  /* Cards: 1 por vez, com peek do próximo */
  .hero-occ-frame .occ-card {
    flex: 0 0 78vw;
    width: 78vw;
    min-width: 0;
    scroll-snap-align: start;
  }

  /* === CTA BUTTON === */
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }
  .btn { width: 100%; }

  /* === TAGS ABAIXO DO BOTÃO (hero-points) === */
  .hero-points { gap: 8px; }
  .hero-points span {
    font-size: 0.8rem;
    padding: 8px 12px;
    word-break: break-word;
    max-width: 100%;
  }

  /* === CHIPS / TAGS DE OCASIÃO === */
  .chips { justify-content: flex-start; }
  .chip {
    padding: 8px 14px;
    font-size: 0.85rem;
    word-break: break-word;
    max-width: 100%;
  }

  /* === SEÇÕES GERAIS === */
  section { padding: 34px 0; }
  .section-head { margin: 0 auto 28px; }
  .grid-3,
  .pricing-grid,
  .testimonials-grid { gap: 14px; }
  .card,
  .price-card,
  .testimonials-grid .card,
  .cta-box { padding: 18px; }
}

/* ================================================================
   FORMULÁRIO MULTI-STEP — #pedido
   ================================================================ */
.form-section { padding: 80px 0 100px; background: var(--bg-soft); }

.mf-wrap {
  background: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  max-width: 660px;
  margin: 0 auto;
  padding: 40px 44px 36px;
}

/* --- Barra de progresso --- */
.mf-steps-bar {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 10px;
}
.mf-steps-bar::before {
  content: '';
  position: absolute;
  top: 18px; left: 24px; right: 24px;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.mf-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 1;
  cursor: default;
}
.mf-step-dot span {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--line);
  color: var(--muted);
  font-weight: 800;
  font-size: .85rem;
  display: grid;
  place-items: center;
  transition: background .3s, color .3s;
}
.mf-step-dot label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  transition: color .3s;
}
.mf-step-dot.active span,
.mf-step-dot.done span {
  background: var(--primary);
  color: #fff;
}
.mf-step-dot.active label,
.mf-step-dot.done label { color: var(--primary); }
.mf-step-dot.done span::after { content: '✓'; }

.mf-progress-bar {
  height: 4px;
  background: var(--line);
  border-radius: 99px;
  margin: 8px 0 28px;
  overflow: hidden;
}
.mf-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 99px;
  transition: width .4s ease;
  width: 20%;
}

/* --- Step panels --- */
.mf-step { display: none; }
.mf-step.active { display: block; animation: mf-fade-in .25s ease; }
@keyframes mf-fade-in {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.mf-step-header { margin-bottom: 24px; }
.mf-step-header h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 6px;
}
.mf-step-header p { color: var(--muted); font-size: .95rem; }

/* --- Fields --- */
.mf-field { margin-bottom: 22px; }
.mf-field label {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.mf-field label span { color: var(--primary); }
.mf-field input[type="text"],
.mf-field input[type="email"],
.mf-field textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: .95rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.mf-field input:focus,
.mf-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,94,60,.12);
}
.mf-field input.mf-error,
.mf-field textarea.mf-error { border-color: #c0392b; }
.mf-hint {
  display: block;
  font-size: .8rem;
  color: #c0392b;
  margin-top: 5px;
  min-height: 1em;
}
.mf-counter {
  text-align: right;
  font-size: .78rem;
  color: var(--muted);
  margin-top: 4px;
}

/* --- Chips de seleção --- */
.mf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.mf-chip {
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.mf-chip:hover { border-color: var(--accent); color: var(--primary); }
.mf-chip.selected {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* --- Pacotes (step 5) --- */
.mf-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.mf-pkg { cursor: pointer; }
.mf-pkg input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.mf-pkg-inner {
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  transition: all .2s;
  background: var(--bg-soft);
  position: relative;
}
.mf-pkg.featured .mf-pkg-inner { border-color: var(--primary); }
.mf-pkg.selected .mf-pkg-inner,
.mf-pkg input:checked ~ .mf-pkg-inner {
  border-color: var(--primary);
  background: rgba(139,94,60,.07);
  box-shadow: 0 0 0 3px rgba(139,94,60,.12);
}
.mf-pkg-badge {
  background: var(--primary);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 8px;
}
.mf-pkg-name { font-weight: 800; font-size: .95rem; margin-bottom: 4px; color: var(--primary-dark); }
.mf-pkg-desc { font-size: .78rem; color: var(--muted); margin-bottom: 10px; }
.mf-pkg-price { font-size: 1.3rem; font-weight: 800; color: var(--primary); }

/* --- Stripe placeholder --- */
.mf-stripe-placeholder {
  background: var(--bg-soft);
  border: 2px dashed var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
}
.mf-stripe-note { color: var(--muted); font-size: .88rem; }

/* --- Banner após save: dados confirmados --- */
.mf-saved-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #edf7ed;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius-md);
  color: #2e7d32;
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 18px;
  margin-bottom: 20px;
}

/* --- Submit & nav --- */
.mf-submit-area { text-align: center; }
.mf-btn-submit { width: 100%; padding: 16px; font-size: 1rem; }
.mf-secure-note { font-size: .78rem; color: var(--muted); margin-top: 10px; }
.mf-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.mf-nav .btn { flex: 1; padding: 13px; }

/* --- Spinner --- */
.mf-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: mf-spin .7s linear infinite;
  display: inline-block;
}
@keyframes mf-spin { to { transform: rotate(360deg); } }

/* --- Success state --- */
.mf-success {
  text-align: center;
  padding: 40px 20px;
}
.mf-success-icon { font-size: 3rem; margin-bottom: 12px; }
.mf-success h3 { font-size: 1.4rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 8px; }
.mf-success p { color: var(--muted); }

/* --- Util --- */
.mf-hidden { display: none !important; }

/* --- Responsive --- */
@media (max-width: 640px) {
  .mf-wrap { padding: 28px 20px 24px; }
  .mf-packages { grid-template-columns: 1fr; }
  .mf-steps-bar label { display: none; }
  .mf-step-dot span { width: 30px; height: 30px; font-size: .8rem; }
  .mf-steps-bar::before { top: 15px; }
}

/* ============================================================
 * Order Status Tracker Widget
 * Flutuante bottom-right, expansível, responsivo.
 * ============================================================ */
.mf-tracker {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 300px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  border: 1.5px solid var(--line, #e8ddd4);
  overflow: hidden;
  font-family: inherit;
  transition: box-shadow .2s;
}
.mf-tracker:hover { box-shadow: 0 12px 40px rgba(0,0,0,.22); }

/* Pill (collapsed header) */
.mf-tr-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
  background: var(--primary, #8b5e3c);
  color: #fff;
  border-radius: 18px 18px 0 0;
}
.mf-tracker.mf-hidden + * { display: none; } /* safety */

.mf-tr-plan-icon { font-size: 1.3rem; flex-shrink: 0; }
.mf-tr-pill-text { flex: 1; min-width: 0; }
.mf-tr-title {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  opacity: .8;
}
.mf-tr-status-label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mf-tr-chevron {
  font-size: .8rem;
  opacity: .7;
  flex-shrink: 0;
  transition: transform .2s;
}

/* Close button */
.mf-tr-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255,255,255,.2);
  border: none;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: .85rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.mf-tr-close:hover { background: rgba(255,255,255,.4); }

/* Expanded body */
.mf-tr-body {
  padding: 16px;
  background: #fff;
  border-radius: 0 0 18px 18px;
}

/* Steps */
.mf-tr-steps { display: flex; flex-direction: column; gap: 0; }

.mf-tr-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  opacity: .45;
  transition: opacity .3s;
}
.mf-tr-step.active { opacity: 1; }
.mf-tr-step.done   { opacity: .7; }

.mf-tr-step-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  flex-shrink: 0;
  background: var(--bg-soft, #f7efe8);
  color: var(--muted, #9a8880);
  border: 2px solid var(--line, #e8ddd4);
  transition: background .3s, border-color .3s, color .3s;
}
.mf-tr-step.active .mf-tr-step-icon {
  background: var(--primary, #8b5e3c);
  border-color: var(--primary, #8b5e3c);
  color: #fff;
}
.mf-tr-step.done .mf-tr-step-icon {
  background: #2e7d32;
  border-color: #2e7d32;
  color: #fff;
}

.mf-tr-step-label {
  font-size: .83rem;
  font-weight: 600;
  color: var(--text, #2c1a12);
}
.mf-tr-step.active .mf-tr-step-label { color: var(--primary, #8b5e3c); }
.mf-tr-step.done   .mf-tr-step-label { color: #2e7d32; }

/* Connector line between steps */
.mf-tr-connector {
  width: 2px;
  height: 14px;
  background: var(--line, #e8ddd4);
  margin-left: 11px;
  transition: background .3s;
}
.mf-tr-connector.done { background: #2e7d32; }

/* Timer (video plan) */
.mf-tr-timer {
  margin-top: 12px;
  padding: 10px 12px;
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: #e65100;
  text-align: center;
}

.mf-tr-meta {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f7f3ef;
  border: 1px solid var(--line, #e8ddd4);
}

.mf-tr-meta-msg {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text, #2c1a12);
  line-height: 1.35;
}

.mf-tr-meta-time {
  margin-top: 6px;
  font-size: .74rem;
  color: var(--muted, #8c7c74);
}

.mf-tr-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}

.mf-tr-btn {
  flex: 1;
  border: 1px solid var(--line, #e8ddd4);
  border-radius: 10px;
  background: #fff;
  color: var(--text, #2c1a12);
  font-size: .78rem;
  font-weight: 700;
  padding: 9px 10px;
  cursor: pointer;
  transition: all .2s ease;
}

.mf-tr-btn:hover {
  background: #f8f4f0;
}

.mf-tr-btn:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.mf-tr-btn-primary {
  background: var(--primary, #8b5e3c);
  border-color: var(--primary, #8b5e3c);
  color: #fff;
}

.mf-tr-btn-primary:hover {
  background: #734b2f;
}

/* Pulse animation on status change */
@keyframes mf-tr-pulse-anim {
  0%   { box-shadow: 0 0 0 0 rgba(139,94,60,.5); }
  70%  { box-shadow: 0 0 0 10px rgba(139,94,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(139,94,60,0); }
}
.mf-tr-pulse { animation: mf-tr-pulse-anim .6s ease-out 2; }

/* Responsive: mobile full-width */
@media (max-width: 400px) {
  .mf-tracker {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 16px;
  }
}

/* ── Topbar actions wrapper ── */
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ── Hero copy – language-switched images ── */
.hero-copy-visual-link {
  display: block;
  margin: 0 auto 24px;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
}
.hero-copy-image {
  width: 100%;
  height: auto;
  display: block;
}
/* Show PT image only for PT locale */
.hero-copy-image--pt   { display: none; }
.hero-copy-image--intl { display: block; }
html[lang|="pt"] .hero-copy-image--pt   { display: block; }
html[lang|="pt"] .hero-copy-image--intl { display: none; }
