/* ===========================================================
   presente.chat — sistema visual
   Identidade: gradiente roxo → magenta, brilhos, "toque de magia"
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* Marca */
  --purple-900: #2a1640;
  --purple-800: #3d1d5c;
  --purple-700: #5b2a86;
  --purple-600: #7a39a8;
  --violet-500: #9243b0;
  --magenta-500: #b83f95;
  --magenta-400: #c84b8e;
  --pink-400: #d85fa8;
  --pink-300: #ec88c0;

  --grad: linear-gradient(120deg, #7a39a8 0%, #b23f95 52%, #c84b8e 100%);
  --grad-soft: linear-gradient(120deg, #8b3fb5 0%, #c0418c 100%);
  --grad-text: linear-gradient(100deg, #6f33a0 0%, #b83f95 60%, #d2548f 100%);

  /* Tinta / neutros (levemente quentes/lavanda) */
  --ink: #271438;
  --ink-soft: #6a5a7c;
  --ink-faint: #998aa8;
  --line: #ece4f2;
  --line-strong: #ddd0e8;

  /* Fundo */
  --bg: #fbf7fd;
  --bg-tint: #f5edf9;
  --card: #ffffff;

  /* WhatsApp */
  --wa-green: #25d366;
  --wa-green-d: #1ebe5a;
  --wa-bg: #e7ded4;

  /* Forma */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --shadow-sm: 0 2px 8px rgba(64, 24, 90, .06);
  --shadow-md: 0 14px 40px -12px rgba(89, 32, 120, .22);
  --shadow-lg: 0 40px 90px -30px rgba(89, 32, 120, .42);
  --shadow-glow: 0 24px 70px -18px rgba(184, 63, 149, .5);

  --maxw: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 800;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Eyebrow / pílulas ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--magenta-500);
  background: #fff;
  border: 1px solid var(--line-strong);
  padding: 8px 14px 8px 12px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.eyebrow .spk { width: 15px; height: 15px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 100px;
  padding: 15px 26px;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }

.btn-wa {
  background: #7a3eb7;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(122, 62, 183, .5);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -8px rgba(122, 62, 183, .65); background: #6b35a3; }

.btn-grad {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-grad:hover { transform: translateY(-3px); box-shadow: 0 30px 80px -18px rgba(184, 63, 149, .65); }

.btn-ghost {
  background: #fff;
  color: var(--purple-700);
  border: 1.5px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--pink-300); color: var(--magenta-500); }

.btn-lg { padding: 18px 32px; font-size: 17px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 253, .72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-color: var(--line); background: rgba(251, 247, 253, .9); }
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color .2s;
  position: relative;
}
.nav-links a:hover { color: var(--purple-700); }
.nav-cta { margin-left: 28px; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 72px 0 104px;
  overflow: hidden;
  perspective: 1400px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1.hero-tagline {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--magenta-500);
  margin: 0 0 14px;
  line-height: 1.4;
}
p.hero-title {
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 14px 0 0;
}
.hero .lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-soft);
  margin-top: 22px;
  max-width: 30ch;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-micro {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink-faint);
  font-weight: 500;
}
.hero-micro .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-faint); }

.proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}
.avatars { display: flex; }
.avatars span {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2.5px solid var(--bg);
  margin-left: -12px;
  background-size: cover;
  background-position: center;
}
.avatars span:first-child { margin-left: 0; }
.proof-txt { font-size: 14px; color: var(--ink-soft); line-height: 1.35; }
.proof-txt b { color: var(--ink); }
.stars { color: #f5a623; letter-spacing: 2px; font-size: 13px; }

/* Aurora de fundo animada */
.hero-aurora { position: absolute; inset: -10% -5% 0; z-index: 0; pointer-events: none; will-change: transform; }
.aur { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.aur-1 { width: 560px; height: 560px; top: -180px; right: -120px;
  background: radial-gradient(circle, #d49bef, transparent 70%);
  animation: drift1 16s var(--ease) infinite alternate; }
.aur-2 { width: 480px; height: 480px; bottom: -200px; left: -130px;
  background: radial-gradient(circle, #f5acd6, transparent 70%);
  animation: drift2 19s var(--ease) infinite alternate; }
.aur-3 { width: 360px; height: 360px; top: 30%; left: 44%;
  background: radial-gradient(circle, #b58af0, transparent 72%);
  opacity: .4; animation: drift3 22s var(--ease) infinite alternate; }
.aur-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(122,57,168,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,57,168,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 35%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 70% at 60% 35%, #000 0%, transparent 75%);
}
@keyframes drift1 { to { transform: translate(-46px, 38px) scale(1.12); } }
@keyframes drift2 { to { transform: translate(54px, -34px) scale(1.1); } }
@keyframes drift3 { to { transform: translate(-30px, -28px) scale(1.18); } }

.hero .wrap, .hero-grid { position: relative; z-index: 2; }

/* Brilhos flutuantes (parallax de mouse) */
.hero-sparks { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-sparks .spark { position: absolute; color: var(--pink-300); opacity: .85;
  will-change: transform; animation: twinkle 4.5s ease-in-out infinite; }
.hero-sparks .spark:nth-child(2) { animation-delay: 1.1s; color: var(--violet-500); }
.hero-sparks .spark:nth-child(3) { animation-delay: 2.2s; }
.hero-sparks .spark:nth-child(4) { animation-delay: .6s; color: var(--magenta-400); }
@keyframes twinkle {
  0%, 100% { opacity: .3; transform: scale(.7) rotate(0); }
  50% { opacity: .95; transform: scale(1.1) rotate(35deg); }
}

/* ---------- Cena 3D do telefone ---------- */
.hero-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 660px;
  transform-style: preserve-3d;
}
.stage-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform .25s var(--ease);
  will-change: transform;
}
.stage-glow {
  position: absolute; inset: 50% auto auto 50%;
  width: 380px; height: 380px; margin: -190px 0 0 -190px;
  background: radial-gradient(circle, rgba(184,63,149,.4), transparent 68%);
  filter: blur(20px); border-radius: 50%; z-index: 0;
}

/* Cartões flutuantes ao redor do telefone */
.float-card {
  position: absolute;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 20px 48px -16px rgba(89,32,120,.4);
  border-radius: 18px;
  z-index: 6;
  will-change: transform;
  animation: bob 7s ease-in-out infinite;
}
.float-card.fc-gift {
  top: 6%; left: -8%;
  width: 196px; padding: 12px;
  animation-duration: 8s;
}
.fc-gift .fc-thumb {
  height: 78px; border-radius: 11px; margin-bottom: 10px;
  background: repeating-linear-gradient(45deg, #f0e4f6 0 10px, #e9d8f1 10px 20px);
  display: grid; place-items: center;
}
.fc-gift .fc-thumb .tag { font-family: 'Space Mono', monospace; font-size: 9.5px; color: var(--violet-500); background: rgba(255,255,255,.75); padding: 3px 7px; border-radius: 6px; }
.fc-gift .fc-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.fc-gift .fc-meta b { font-size: 13.5px; color: var(--ink); }
.fc-gift .fc-price { font-weight: 800; font-size: 13px; color: var(--magenta-500); white-space: nowrap; }
.fc-gift .fc-pin {
  position: absolute; top: -12px; right: -10px;
  background: var(--grad); color: #fff;
  font-size: 11.5px; font-weight: 800;
  padding: 5px 11px; border-radius: 100px;
  box-shadow: var(--shadow-glow);
  white-space: nowrap;
}
.float-card.fc-rate {
  bottom: -4%; left: 5%;
  display: flex; align-items: center; gap: 9px;
  padding: 11px 16px 11px 13px;
  font-size: 13px; font-weight: 700; color: var(--ink);
  animation-duration: 6.5s; animation-delay: .8s;
}
.fc-rate .fc-stars { color: #f5a623; letter-spacing: 1px; font-size: 13px; }
.float-card.fc-react {
  top: 20%; right: -7%;
  width: 56px; height: 56px;
  display: grid; place-items: center; font-size: 24px;
  border-radius: 50%;
  animation-duration: 5.5s; animation-delay: .4s;
}
.float-card.fc-speed {
  top: -4%; right: 5%;
  display: flex; align-items: center; gap: 8px;
  padding: 11px 16px;
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
  animation-duration: 7.5s; animation-delay: 1.2s;
}
.fc-speed svg { width: 16px; height: 16px; color: var(--magenta-500); flex: none; }
.fc-speed b { color: var(--ink); font-weight: 800; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Reflexo no telefone */
.phone-glare {
  position: absolute; inset: 0; z-index: 6;
  border-radius: 46px; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.22) 0%, transparent 32%);
}
.phone {
  position: relative;
  width: 330px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 46px;
  padding: 12px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.25);
  z-index: 2;
}
.phone-screen {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  background: var(--wa-bg);
  height: 620px;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  display: none;
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 26px;
  background: transparent;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}
.wa-head {
  background: var(--grad);
  color: #fff;
  padding: 30px 16px 12px;
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none;
}
.wa-head .back { font-size: 20px; opacity: .9; }
.wa-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: transparent; padding: 0; overflow: hidden;
  display: grid; place-items: center;
  flex: none;
}
.wa-avatar img { width: 100%; height: 100%; object-fit: contain; }
.wa-name { font-weight: 700; font-size: 15px; line-height: 1.1; }
.wa-status { font-size: 11.5px; opacity: .85; }
.wa-head .ic { margin-left: auto; opacity: .9; display: flex; gap: 16px; }

.wa-body {
  flex: 1;
  padding: 16px 12px;
  overflow-y: scroll;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #f0e8f8;
  background-image:
    radial-gradient(rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 22px 22px;
  position: relative;
}
.bubble {
  max-width: 80%;
  padding: 9px 12px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.42;
  box-shadow: 0 1px 1px rgba(0,0,0,.06);
  position: relative;
  opacity: 0;
  transform: translateY(8px) scale(.96);
  animation: pop .4s var(--ease) forwards;
}
@keyframes pop { to { opacity: 1; transform: none; } }
.bubble.in { align-self: flex-start; background: #fff; border-top-left-radius: 4px; color: #20121c; }
.bubble.out { align-self: flex-end; background: #d9fdd3; border-top-right-radius: 4px; color: #15291a; }
.bubble .time { font-size: 9.5px; color: rgba(0,0,0,.35); float: right; margin: 4px 0 -2px 8px; }
.bubble .time.out::after { content: " ✓✓"; color: #34b7f1; }

.chips { display: flex; flex-wrap: wrap; gap: 7px; align-self: flex-end; max-width: 86%; justify-content: flex-end; }
.chip {
  background: #fff;
  border: 1.5px solid var(--pink-300);
  color: var(--magenta-500);
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 100px;
  opacity: 0;
  animation: pop .4s var(--ease) forwards;
}

.typing { display: inline-flex; gap: 4px; padding: 12px 14px !important; }
.typing span {
  width: 7px; height: 7px; border-radius: 50%; background: #b9a7c4;
  animation: blink 1.2s infinite;
}
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 60%, 100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

/* Cartões de presente revelados no chat */
.gift-card {
  background: #fff;
  border-radius: 14px;
  border-top-left-radius: 4px;
  align-self: flex-start;
  max-width: 86%;
  overflow: hidden;
  box-shadow: 0 1px 1px rgba(0,0,0,.06);
  opacity: 0;
  animation: pop .45s var(--ease) forwards;
}
.gift-card .ph {
  height: 92px;
  background:
    repeating-linear-gradient(45deg, #f0e4f6 0 10px, #e9d8f1 10px 20px);
  display: grid; place-items: center;
}
.gift-card .ph .tag { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--violet-500); background: rgba(255,255,255,.7); padding: 3px 7px; border-radius: 6px; }
.gift-card .meta { padding: 9px 12px 11px; }
.gift-card .meta b { font-size: 13.5px; display: block; }
.gift-card .meta small { color: var(--ink-soft); font-size: 11.5px; }
.gift-card .meta .price { color: var(--magenta-500); font-weight: 800; font-size: 13px; margin-top: 3px; display: block; }

.gift-carousel {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px 0 6px;
  align-self: flex-start;
  max-width: 100%;
  min-height: 130px;
  opacity: 0;
  animation: pop .45s var(--ease) forwards;
}
.gift-carousel::-webkit-scrollbar { display: none; }
.gift-carousel-card {
  flex: none;
  width: 120px;
  background: #fff;
  border-radius: 14px;
  border-top-left-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 1px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
}
.gift-carousel-card .ph-hidden {
  height: 72px;
  background: linear-gradient(135deg, #ddd4f0 0%, #c8b8e8 100%);
  display: grid;
  place-items: center;
  font-size: 26px;
}
.gift-carousel-card .card-body {
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gift-carousel-card .card-label {
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.3;
  filter: blur(5px);
  user-select: none;
}
.gift-carousel-card .btn-discover {
  background: var(--purple-600, #7a3eb7);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 5px 0;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  letter-spacing: .01em;
}

.wa-input {
  flex: none;
  background: #f0f0f0;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wa-input .box {
  flex: 1; background: #fff; border-radius: 100px;
  padding: 9px 14px; font-size: 13px; color: #9a8aa6;
}
.wa-input .send {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--wa-green); color: #fff;
  display: grid; place-items: center; flex: none;
}

/* Entradas do hero */
.hero-rise { opacity: 0; transform: translateY(22px); animation: heroRise .85s var(--ease) both; animation-delay: calc(var(--i, 0) * .09s + .08s); }
@keyframes heroRise { to { opacity: 1; transform: none; } }
.hero-stage { animation: stageIn 1.1s var(--ease) both; animation-delay: .18s; }
@keyframes stageIn { from { opacity: 0; transform: translateY(26px) scale(.95); } to { opacity: 1; transform: none; } }

/* ---------- Sections genéricas ---------- */
.section { padding: 96px 0; position: relative; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 46px); }
.section-head p { color: var(--ink-soft); font-size: 18px; margin-top: 16px; }
.kicker {
  font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--magenta-500); margin-bottom: 14px; display: block;
}

/* ---------- Como funciona ---------- */
#como-funciona .kicker { color: var(--pink-300); }
#como-funciona .section-head h2 { color: #fff; }
#como-funciona .section-head p { color: rgba(255,255,255,.65); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step .num {
  font-family: 'Space Mono', monospace;
  font-size: 13px; font-weight: 700;
  color: var(--pink-300);
  margin-bottom: 18px;
}
.step .ic {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--grad);
  display: grid; place-items: center; color: #fff;
  margin-bottom: 20px;
  box-shadow: var(--shadow-glow);
}
.step .ic svg { width: 28px; height: 28px; }
.step h3 { font-size: 21px; margin-bottom: 9px; color: #fff; }
.step p { color: rgba(255,255,255,.65); font-size: 15.5px; }
.step .glow { position: absolute; width: 140px; height: 140px; background: radial-gradient(circle, rgba(216,95,168,.16), transparent 70%); top: -40px; right: -40px; }

/* connecting line */
.steps-track { position: relative; }

/* ---------- Ocasiões ---------- */
.occasions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.occ {
  border-radius: var(--r-md);
  padding: 26px 22px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  cursor: pointer;
}
.occ:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--pink-300); }
.occ .emoji { font-size: 30px; margin-bottom: 14px; }
.occ b { font-size: 17px; display: block; }
.occ small { color: var(--ink-soft); font-size: 13.5px; }

/* ---------- Faixa / band ---------- */
.band {
  background: var(--grad);
  color: #fff;
  border-radius: 0;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.band h2 { font-size: clamp(30px, 3.6vw, 46px); color: #fff; }
.band p { color: rgba(255,255,255,.86); font-size: 18px; margin: 16px auto 32px; max-width: 50ch; }
.band .btn-wa { background: #fff; color: var(--purple-700); }
.band .btn-wa img { filter: brightness(0) saturate(100%) invert(22%) sepia(60%) saturate(800%) hue-rotate(255deg) brightness(80%) !important; }
.band .btn-wa:hover { background: #fff; color: var(--magenta-500); }
.band .spk-bg { position: absolute; opacity: .25; color: #fff; }

/* ---------- Depoimentos ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.tcard .stars { font-size: 14px; margin-bottom: 14px; }
.tcard p { font-size: 16px; color: var(--ink); }
.tcard .who { display: flex; align-items: center; gap: 11px; margin-top: 20px; }
.tcard .who .av { width: 42px; height: 42px; border-radius: 50%; background-size: cover; background-position: center; }
.tcard .who b { font-size: 14.5px; display: block; }
.tcard .who small { color: var(--ink-faint); font-size: 12.5px; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.qa {
  border-bottom: 1px solid var(--line);
}
.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 4px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 18px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary .plus {
  margin-left: auto; flex: none;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-tint); color: var(--magenta-500);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease), background .3s;
}
.qa summary .plus svg {
  width: 14px; height: 14px; display: block;
}
.qa[open] summary .plus { transform: rotate(45deg); background: var(--grad); color: #fff; }
.qa .a { padding: 0 4px 24px 0; color: var(--ink-soft); font-size: 16px; max-width: 64ch; }

/* ---------- Blog cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s;
  display: flex; flex-direction: column;
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post .cover {
  height: 190px;
  background-size: cover; background-position: center;
  position: relative;
}
.post .cover.ph {
  background: repeating-linear-gradient(45deg, #efe2f6 0 12px, #e7d6f0 12px 24px);
  display: grid; place-items: center;
}
.post .cover.ph .tag { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--violet-500); background: rgba(255,255,255,.75); padding: 4px 9px; border-radius: 7px; }
.post .body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.post .cat {
  font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  color: var(--magenta-500); margin-bottom: 12px;
}
.post h3 { font-size: 20px; line-height: 1.2; }
.post .excerpt { color: var(--ink-soft); font-size: 14.5px; margin-top: 10px; flex: 1; }
.post .meta { display: flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 13px; color: var(--ink-faint); }
.post .readmore { color: var(--magenta-500); font-weight: 700; font-size: 14.5px; margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; }
.post.feature { grid-column: span 2; }
.post.feature .cover { height: 100%; min-height: 280px; }
@media (min-width: 901px) {
  .post.feature { display: grid; grid-template-columns: 1.1fr 1fr; }
  .post.feature .cover { min-height: 100%; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--purple-900);
  color: #fff;
  padding: 70px 0 34px;
  margin-top: 30px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand .logo { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; }
.foot-brand .logo .ic { width: 38px; height: 38px; border-radius: 11px; overflow: hidden; }
.foot-brand p { color: rgba(255,255,255,.6); font-size: 14.5px; margin-top: 16px; max-width: 32ch; }
.foot-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--pink-300); margin-bottom: 16px; }
.foot-col a { display: block; color: rgba(255,255,255,.72); font-size: 14.5px; padding: 6px 0; transition: color .2s; }
.foot-col a:hover { color: #fff; }
.foot-bottom {
  margin-top: 50px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: rgba(255,255,255,.5); font-size: 13.5px;
}
.foot-wa { display: inline-flex !important; align-items: center; gap: 8px; color: var(--wa-green); font-weight: 700; }
.foot-wa img { display: block; flex: none; }

/* ---------- Reveal on scroll (progressive enhancement) ---------- */
/* Sem JS, ou se o observer falhar, o conteúdo aparece normalmente. */
.js-anim .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js-anim .reveal.show { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero .lede, .hero h1 { max-width: 100%; }
  .phone-wrap { order: -1; }
  .steps, .testimonials { grid-template-columns: 1fr; }
  .occasions { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .post.feature { grid-column: span 1; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: grid; }
  .section { padding: 70px 0; }
  .band { padding: 48px 26px; border-radius: var(--r-lg); }
  .occasions { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile nav drawer */
.nav-toggle {
  place-items: center; width: 44px; height: 44px;
  border-radius: 12px; border: 1.5px solid var(--line-strong);
  background: #fff; cursor: pointer; margin-left: auto;
}
.mobile-menu {
  display: none;
  position: fixed; inset: 76px 0 auto 0; z-index: 99;
  background: var(--bg); border-bottom: 1px solid var(--line);
  padding: 20px 24px 28px; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 4px; font-weight: 600; font-size: 17px; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 14px; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-spark, .bubble, .chip, .gift-card { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ===========================================================
   BLOG
   =========================================================== */
.blog-hero {
  position: relative;
  padding: 70px 0 56px;
  text-align: center;
  overflow: hidden;
}
.blog-hero .eyebrow { margin-bottom: 22px; background: none; border: none; padding: 0; box-shadow: none; }
.blog-hero h1 { font-size: clamp(38px, 5vw, 60px); max-width: 16ch; margin: 0 auto; }
.blog-hero p { color: var(--ink-soft); font-size: 19px; margin: 20px auto 0; max-width: 56ch; }

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 36px auto 0;
}
.filter {
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink-soft);
  background: #fff;
  border: 1.5px solid var(--line-strong);
  border-radius: 100px;
  padding: 10px 18px;
  cursor: pointer;
  transition: all .22s var(--ease);
}
.filter:hover { border-color: var(--pink-300); color: var(--magenta-500); transform: translateY(-2px); }
.filter.active { background: var(--grad); color: #fff; border-color: transparent; box-shadow: var(--shadow-glow); }

.blog-section { padding: 8px 0 90px; }

/* Newsletter band */
.news {
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.news h2 { font-size: clamp(26px, 3vw, 38px); }
.news p { color: var(--ink-soft); font-size: 17px; margin-top: 12px; }
.news-form { display: flex; gap: 10px; }
.news-form input {
  flex: 1; font-family: inherit; font-size: 15px;
  padding: 15px 18px; border-radius: 100px;
  border: 1.5px solid var(--line-strong); background: #fff;
  outline: none; transition: border-color .2s;
}
.news-form input:focus { border-color: var(--pink-300); }
@media (max-width: 820px) { .news { grid-template-columns: 1fr; padding: 40px 28px; } }

/* ===========================================================
   ARTIGO
   =========================================================== */
.article-hero {
  padding: 48px 0 36px;
}
.breadcrumb { font-size: 14px; color: var(--ink-faint); margin-bottom: 22px; display: flex; gap: 8px; }
.breadcrumb a:hover { color: var(--magenta-500); }
.article-hero .cat {
  font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--magenta-500);
}
.article-hero h1 { font-size: clamp(32px, 4.4vw, 52px); max-width: 20ch; margin: 16px 0 0; }
.article-meta { display: flex; align-items: center; gap: 12px; margin-top: 26px; font-size: 14.5px; color: var(--ink-soft); }
.article-meta .av { width: 44px; height: 44px; border-radius: 50%; background-size: cover; background-position: center; }
.article-meta b { color: var(--ink); }

.article-cover {
  height: 420px; border-radius: var(--r-lg);
  background-size: cover; background-position: center;
  margin: 36px 0 8px;
}
.article-cover.ph {
  background: repeating-linear-gradient(45deg, #efe2f6 0 14px, #e7d6f0 14px 28px);
  display: grid; place-items: center;
}
.article-cover.ph .tag { font-family: 'Space Mono', monospace; font-size: 13px; color: var(--violet-500); background: rgba(255,255,255,.8); padding: 6px 12px; border-radius: 8px; }

.article-body { max-width: 720px; margin: 0 auto; padding: 24px 0 40px; font-size: 18.5px; line-height: 1.75; color: #3a2c46; }
.article-body > p { margin: 0 0 26px; }
.article-body h2 { font-size: 30px; margin: 48px 0 18px; color: var(--ink); }
.article-body h3 { font-size: 22px; margin: 36px 0 12px; color: var(--ink); }
.article-body a.inline { color: var(--magenta-500); font-weight: 700; border-bottom: 2px solid var(--pink-300); }
.article-body ul { margin: 0 0 26px; padding-left: 0; list-style: none; }
.article-body ul li { position: relative; padding-left: 30px; margin-bottom: 14px; }
.article-body ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 12px; height: 12px;
  background: var(--grad); border-radius: 3px; transform: rotate(45deg);
}
.article-body .lead { font-size: 21px; color: var(--ink-soft); line-height: 1.6; }

.gift-idea {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px;
  margin: 0 0 18px;
  box-shadow: var(--shadow-sm);
  align-items: center;
}
.gift-idea .pic {
  height: 110px; border-radius: 12px;
  background: repeating-linear-gradient(45deg, #f0e4f6 0 11px, #e9d8f1 11px 22px);
  display: grid; place-items: center;
}
.gift-idea .pic .tag { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--violet-500); background: rgba(255,255,255,.8); padding: 3px 7px; border-radius: 6px; }
.gift-idea .num { font-family: 'Space Mono', monospace; color: var(--pink-300); font-weight: 700; font-size: 14px; }
.gift-idea h3 { margin: 4px 0 6px; font-size: 20px; }
h3.price-range { font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--magenta-500); margin: 40px 0 16px; }
.gift-idea p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.5; }
.gift-idea .price { color: var(--magenta-500); font-weight: 800; font-size: 14.5px; margin-top: 8px; display: inline-block; }
@media (max-width: 620px) { .gift-idea { grid-template-columns: 1fr; } .gift-idea .pic { height: 150px; } }

.inline-cta {
  background: var(--grad);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 40px 36px;
  text-align: center;
  margin: 44px 0;
}
.inline-cta h3 { color: #fff; font-size: 26px; }
.inline-cta p { color: rgba(255,255,255,.85); margin: 12px auto 24px; max-width: 44ch; }
.inline-cta .btn-wa { background: #fff; color: var(--purple-700); }

.share { display: flex; align-items: center; gap: 12px; margin: 40px 0; padding-top: 28px; border-top: 1px solid var(--line); font-size: 14px; color: var(--ink-soft); }
.share b { color: var(--ink); }
.share a { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-tint); display: grid; place-items: center; color: var(--purple-700); transition: all .2s; }
.share a:hover { background: var(--grad); color: #fff; }

.related { padding: 70px 0 90px; background: var(--bg-tint); }

/* ===== BODA CARDS ===== */
.boda-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin: 20px 0;
  background: #fff;
}
.boda-card.boda-destaque {
  border-color: var(--magenta-500);
  background: linear-gradient(135deg, #fff 80%, #fdf0ff);
}
.boda-header { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.boda-num { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--magenta-500); white-space: nowrap; }
.boda-header h3 { margin: 0; font-size: 22px; }
.boda-meaning { color: var(--ink-soft); font-style: italic; margin: 0 0 16px; font-size: 15px; }
.boda-card ul { margin: 0 0 16px; padding-left: 20px; color: var(--ink); }
.boda-card ul li { margin-bottom: 6px; }
@media (max-width: 600px) { .boda-card { padding: 20px; } }
