/* ============================================================
   BOOK & CONVERSATION CLUB — STYLES
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; }

/* ---------- ROOT VARIABLES ---------- */
:root {
  --parchment:   #F5E1C4;
  --cream:       #FBF2E0;
  --wine:        #8C3A5C;
  --wine-light:  #9F4F73;
  --rose:        #E6ADC0;
  --mauve:       #A9767B;
  --terracotta:  #BE6B42;
  --ink:         #280A16;
  --ink-light:   #63333F;

  --font-display: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-hand: 'Fuzzy Bubbles', cursive;

  --container: 1280px;
  --radius-organic: 255px 15px 225px 15px / 15px 225px 15px 255px;
}

html, body { background: var(--parchment); color: var(--ink); }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; }

.eyebrow {
  font-family: var(--font-hand);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: var(--wine);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-style: italic;
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

section { position: relative; overflow: hidden; }

.how,
.books-section,
.about-section { overflow: visible; }

.lace-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 96px;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(251, 242, 224, 0) 0%, rgba(140, 58, 92, 0.08) 48%, rgba(251, 242, 224, 0.96) 100%),
    url('../Assets/renda.png') center bottom / auto 185% repeat-x;
  filter: drop-shadow(0 -8px 18px rgba(40, 10, 22, 0.06));
}

/* ---------- DECORATIVE STICKERS ---------- */
.deco-ticket,
.deco-note,
.deco-postage,
.deco-tape,
.deco-sparkle,
.deco-seal-img,
.seal-sticker {
  pointer-events: none;
  user-select: none;
}

.books-section > .container,
.schedule-section > .container,
.pricing-section > .container,
.testimonials-section > .container,
.final-cta-content {
  position: relative;
  z-index: 1;
}

.seal-sticker {
  position: absolute;
  display: block;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(40, 10, 22, 0.16));
  z-index: 0;
}

.hero-seal-chat {
  --sticker-rotate: 8deg;
  top: 18%;
  right: 12%;
  width: clamp(108px, 10vw, 144px);
  transform: rotate(8deg);
  animation: sticker-float 8.8s ease-in-out infinite;
}

.books-seal-love {
  --sticker-rotate: -7deg;
  top: 1.4rem;
  right: clamp(0.8rem, 3vw, 2.2rem);
  width: clamp(180px, 20vw, 260px);
  opacity: 0.78;
  transform: rotate(-7deg);
  animation: sticker-float 10.2s ease-in-out infinite;
}

.schedule-seal-wax {
  --sticker-rotate: 10deg;
  left: clamp(1rem, 3vw, 2rem);
  bottom: 2rem;
  width: clamp(78px, 7vw, 96px);
  transform: rotate(10deg);
  animation: sticker-float 7.9s ease-in-out infinite;
}

.pricing-seal-mail {
  --sticker-rotate: -9deg;
  top: 2.2rem;
  left: clamp(1rem, 3vw, 2.4rem);
  width: clamp(104px, 10vw, 132px);
  transform: rotate(-9deg);
  animation: sticker-float 9.6s ease-in-out infinite;
}

.testimonials-seal-cupid {
  --sticker-rotate: 10deg;
  top: 1.5rem;
  right: clamp(1rem, 4vw, 2.8rem);
  width: clamp(118px, 12vw, 156px);
  opacity: 0.72;
  transform: rotate(10deg);
  animation: sticker-float 10.8s ease-in-out infinite;
}

.cta-seal-made {
  --sticker-rotate: -6deg;
  right: clamp(1rem, 4vw, 3rem);
  top: 20%;
  width: clamp(150px, 16vw, 220px);
  opacity: 0.9;
  transform: rotate(-6deg);
  animation: sticker-float 9.2s ease-in-out infinite;
}

.deco-ticket,
.deco-note,
.deco-postage {
  position: absolute;
  background: rgba(251, 242, 224, 0.94);
  border: 1px solid rgba(140, 58, 92, 0.16);
  box-shadow: 0 20px 50px rgba(40, 10, 22, 0.12);
}

.deco-ticket {
  padding: 1rem 1.15rem 1.05rem;
  border-radius: 22px 12px 20px 10px;
}

.deco-ticket-kicker,
.deco-note-kicker,
.deco-postage-top {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.45rem;
}

.deco-ticket strong,
.deco-note strong,
.deco-postage strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  color: var(--wine);
}

.deco-note {
  position: relative;
  max-width: 320px;
  padding: 1.2rem 1.25rem 1rem;
  border-radius: 24px;
}

.deco-note::before {
  content: none;
}

.deco-note span:last-child {
  display: block;
  margin-top: 0.55rem;
  color: var(--ink-light);
  font-size: 0.92rem;
  line-height: 1.45;
}

.deco-postage {
  padding: 1rem 1rem 1.05rem;
  border-radius: 16px;
  border-style: dashed;
  border-width: 1.5px;
}

.deco-postage::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(140, 58, 92, 0.14);
  border-radius: 10px;
}

.deco-postage strong {
  position: relative;
  font-size: 1.6rem;
}

.deco-seal-img {
  position: absolute;
  width: 112px;
  height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 16px 34px rgba(140, 58, 92, 0.28));
}

.deco-tape {
  position: absolute;
  height: 34px;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(230, 173, 192, 0.92), rgba(245, 225, 196, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 24px rgba(40, 10, 22, 0.1);
  opacity: 0.95;
}

.deco-sparkle {
  position: absolute;
  width: 86px;
  height: 86px;
  color: rgba(190, 107, 66, 0.72);
  filter: drop-shadow(0 10px 24px rgba(190, 107, 66, 0.18));
}

@keyframes sticker-float {
  0%, 100% { transform: translateY(0px) rotate(var(--sticker-rotate, 0deg)); }
  50% { transform: translateY(-10px) rotate(calc(var(--sticker-rotate, 0deg) + 2deg)); }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  /* transform fica por conta do GSAP (intro + efeito magnético) */
  transition: box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--wine);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(140, 58, 92, 0.28);
}
.btn-primary:hover { background: var(--wine-light); box-shadow: 0 12px 32px rgba(140, 58, 92, 0.38); }

.btn-outline {
  background: transparent;
  color: var(--wine);
  border: 1.5px solid var(--wine);
}
.btn-outline:hover { background: var(--wine); color: var(--cream); }

.btn-outline.on-dark { color: var(--cream); border-color: var(--mauve); }
.btn-outline.on-dark:hover { background: var(--cream); color: var(--wine); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { background: #1ebe5a; }

.btn-lg { padding: 1.3rem 2.6rem; font-size: 1.05rem; }

/* ---------- CUSTOM CURSOR ---------- */
.cursor-dot, .cursor-follower {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.3s ease;
}
body.cursor-active .cursor-dot, body.cursor-active .cursor-follower { opacity: 1; }
.cursor-dot { width: 8px; height: 8px; background: var(--terracotta); }
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--cream);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, opacity 0.3s ease;
}
.cursor-follower.cursor-hover { width: 60px; height: 60px; border-color: var(--mauve); background: rgba(169,118,123,0.15); }
body.has-custom-cursor, body.has-custom-cursor a, body.has-custom-cursor button { cursor: none; }

/* ---------- NAV PROGRESS (barra de leitura) ---------- */
.nav-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--terracotta), var(--wine));
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 1200;
  pointer-events: none;
  transition: transform 0.08s linear;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1100;
  padding: 0.9rem 0;
  transition: transform 0.55s cubic-bezier(0.65, 0.05, 0, 1);
}
.navbar.nav-hidden { transform: translateY(-120%); }
body.menu-open .navbar { transform: none; }

.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: 0.55rem 1.3rem;
  margin: 0 -1.3rem;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease, backdrop-filter 0.45s ease;
}
.navbar.scrolled .navbar-inner {
  background: rgba(251, 242, 224, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  backdrop-filter: blur(18px) saturate(1.5);
  border-color: rgba(140, 58, 92, 0.12);
  box-shadow: 0 12px 40px rgba(40, 10, 22, 0.1);
}
body.menu-open .navbar-inner {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

/* logo oficial (imagem) */
.nav-logo { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, padding 0.3s ease;
  border-radius: 8px;
}
.nav-logo:hover .nav-logo-img { transform: scale(1.05); }
.nav-seal {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(140, 58, 92, 0.18));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-logo:hover .nav-seal { transform: rotate(10deg) scale(1.06); }
/* fundo claro atrás da marca quando o menu mobile (vinho) fica visível por trás da navbar transparente */
body.menu-open .nav-logo-img { background: rgba(251, 242, 224, 0.92); padding: 0.35rem 0.6rem; }

/* links com roll-over */
.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-link {
  position: relative;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  padding: 0.4rem 0;
}
.nav-link-label {
  display: block;
  overflow: hidden;
  height: 1.28em;
  line-height: 1.28;
  padding: 0.08em 0 0.14em;
  margin: -0.08em 0 -0.14em;
}
.nav-link-label span {
  display: block;
  line-height: inherit;
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}
.nav-link-label span:last-child { color: var(--wine); }
.nav-link:hover .nav-link-label span { transform: translateY(-100%); }
.nav-link::after {
  content: '';
  position: absolute; left: 50%; bottom: -2px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--terracotta);
  transform: translate(-50%, 8px) scale(0);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-link:hover::after, .nav-link.active::after { transform: translate(-50%, 0) scale(1); }
.nav-link.active { color: var(--wine); }

/* ações */
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-cta {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--wine); color: var(--cream);
  padding: 0.68rem 1.35rem;
  border-radius: 100px;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em;
  overflow: hidden;
  white-space: nowrap;
  /* sem transition de opacity/transform: GSAP anima essas props na intro */
  transition: color 0.35s ease;
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--terracotta);
  border-radius: inherit;
  transform: translateY(102%);
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}
.nav-cta:hover { color: var(--ink); }
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta > span { position: relative; z-index: 1; }
.nav-cta-arrow { transition: transform 0.35s ease; }
.nav-cta:hover .nav-cta-arrow { transform: translateX(4px); }
body.menu-open .nav-cta { opacity: 0; pointer-events: none; }

/* hamburger (2 traços que viram X) */
.nav-hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(140, 58, 92, 0.35);
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  transition: border-color 0.3s ease;
}
.nav-hamburger span {
  display: block;
  width: 16px; height: 2px;
  background: var(--wine);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1), background 0.3s ease;
}
.nav-hamburger.open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-hamburger.open span:last-child { transform: translateY(-4px) rotate(-45deg); }
body.menu-open .nav-hamburger { border-color: rgba(247, 241, 232, 0.45); }
body.menu-open .nav-hamburger span { background: var(--cream); }

/* menu mobile */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--wine);
  z-index: 1050;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.2rem;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
}
.mobile-menu::before {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: var(--wine-light);
  opacity: 0.35;
  filter: blur(100px);
  top: 12%; right: -10%;
  pointer-events: none;
}
.mobile-menu.open { visibility: visible; }
.mobile-menu-eyebrow { font-family: var(--font-hand); font-size: 1.4rem; color: var(--rose); position: relative; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 1rem; text-align: center; position: relative; }
.mobile-menu ul a {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2.1rem, 9vw, 3.2rem);
  color: var(--cream);
  display: inline-flex; align-items: baseline; gap: 0.8rem;
  transition: color 0.3s ease;
}
.mobile-menu ul a em { font-family: var(--font-hand); font-style: normal; font-size: 1.1rem; color: var(--rose); }
.mobile-menu ul a:hover { color: var(--rose); }
.mobile-menu-footer { display: flex; gap: 1.8rem; font-family: var(--font-hand); font-size: 1.25rem; color: var(--rose); position: relative; }
.mobile-menu-footer a:hover { color: var(--cream); }

/* ---------- HERO ---------- */
/* ============ TAGLINE ============ */
.tagline-section {
  background: var(--wine);
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(4.2rem, 7vw, 6.2rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 10px 22px rgba(40, 10, 22, 0.08),
    inset 0 -18px 34px rgba(40, 10, 22, 0.12);
}
.tagline-section::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(180deg, rgba(230, 173, 192, 0.1), transparent);
  pointer-events: none;
}
.tagline-section::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1080px, calc(100% - 2.5rem));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}
.tagline-card {
  width: min(100%, 780px);
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1.2rem, 4vw, 3rem);
  display: grid;
  gap: 0.55rem;
  justify-items: center;
  background: rgba(245, 225, 196, 0.08);
  border: 1px solid rgba(251, 242, 224, 0.22);
  border-radius: 20px 12px 22px 14px;
  box-shadow: 0 18px 46px rgba(40, 10, 22, 0.16);
}
.tagline-kicker {
  font-family: var(--font-hand);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--rose);
}
.tagline-text {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.85rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.16;
  margin: 0;
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero {
  position: relative;
  min-height: max(620px, 100svh);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(7.8rem, 13vh, 10rem) 0 clamp(5.4rem, 9vh, 7.2rem);
  background: var(--parchment);
  overflow: hidden;
}
.hero-noise {
  position: absolute; inset: 0;
  opacity: 0.35;
  pointer-events: none;
  mix-blend-mode: multiply;
}
#hero-canvas {
  position: absolute; inset: 0;
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  max-width: 1060px;
  padding: 0 1.5rem clamp(8rem, 13vh, 9.8rem);
  margin-top: clamp(1.4rem, 3vh, 2.4rem);
}
.hero-collage {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-eyebrow { position: relative; display: inline-block; }
.eyebrow-underline {
  position: absolute; left: 50%; bottom: -4px;
  transform: translateX(-50%);
  width: 105%; height: 10px;
  color: var(--terracotta);
  overflow: visible;
}
.eyebrow-underline path { stroke-dasharray: 170; stroke-dashoffset: 170; }

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: var(--ink);
  margin: 0.8rem 0 1.5rem;
}
.hero-title em, .hero-line-em { color: var(--wine); }
.hero-line { display: inline-block; }
.hero-line-em {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}

/* máscaras por letra (SplitText) */
.char-mask { display: inline-block; overflow: hidden; padding: 0.12em 0 0.16em; margin: -0.12em 0 -0.16em; }
.char-mask .char { display: inline-block; will-change: transform; }

/* palavra rotativa */
.hero-rotator {
  display: inline-block;
  overflow: hidden;
  margin: 0;
  vertical-align: baseline;
  color: var(--terracotta);
  height: 1.15em; /* mostra só o primeiro item antes do GSAP iniciar */
}
.hero-rotator-track { display: block; will-change: transform; }
.hero-rotator-track > span {
  display: block;
  width: max-content;
  line-height: 1;
  padding: 0.05em 0 0.11em;
}

.hero-body {
  max-width: 560px;
  margin: 0 auto 1rem;
  color: var(--ink-light);
  font-weight: 300;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn .btn-arrow { display: inline-block; transition: transform 0.3s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* legendas verticais nas bordas */
.hero-edge {
  position: absolute; top: 50%;
  z-index: 2;
  writing-mode: vertical-rl;
  font-family: var(--font-hand);
  font-size: 1.05rem;
  color: var(--ink-light);
  opacity: 0.7;
  letter-spacing: 0.08em;
  pointer-events: none;
}
.hero-edge-left { left: 1.6rem; transform: translateY(-50%) rotate(180deg); }
.hero-edge-right { right: 1.6rem; transform: translateY(-50%); }

.hero-ticket {
  --sticker-rotate: -8deg;
  top: 18%;
  left: 8%;
  min-width: 170px;
  transform: rotate(-8deg);
  animation: sticker-float 7.5s ease-in-out infinite;
}

.hero-ticket strong { font-size: 1.9rem; }

.hero-seal {
  --sticker-rotate: 10deg;
  top: 20%;
  right: 11%;
  transform: rotate(10deg);
  animation: sticker-float 8.5s ease-in-out infinite;
}

.hero-tape {
  top: 16%;
  right: 23%;
  width: 124px;
  transform: rotate(18deg);
}

.hero-sparkle {
  left: 15%;
  bottom: 18%;
  animation: sticker-float 9s ease-in-out infinite;
}

.hero-scroll-indicator {
  position: absolute; bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--wine);
}
.hero-scroll-indicator svg { animation: bob 1.8s ease-in-out infinite; }
.hero-scroll-indicator span { font-family: var(--font-hand); font-size: 1rem; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

/* ---------- HOW IT WORKS ---------- */
.how {
  background: var(--cream);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}
.how-step { position: relative; text-align: left; }
.how-step-number {
  position: absolute;
  top: -4.5rem; left: -1rem;
  font-family: var(--font-hand);
  font-size: 11rem;
  color: var(--mauve);
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
  line-height: 1;
}
.how-step-icon { width: 56px; height: 56px; margin-bottom: 1.4rem; color: var(--wine); position: relative; }
.how-step-icon svg path, .how-step-icon svg circle { stroke-dasharray: 300; stroke-dashoffset: 300; }
.how-step-label { font-family: var(--font-hand); color: var(--wine); font-size: 1.4rem; display: block; margin-bottom: 0.3rem; position: relative; }
.how-step h3 { font-size: 1.7rem; margin-bottom: 0.7rem; position: relative; }
.how-step p { color: var(--ink-light); position: relative; }

/* ---------- BOOKS SECTION ---------- */
.books-section {
  background: var(--wine);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  color: var(--cream);
}
.books-section .section-title { color: var(--cream); }
.books-section .eyebrow { color: var(--rose); }
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 2.4rem;
}
.book-card {
  position: relative;
  perspective: 1200px;
  cursor: pointer;
}
.book-card-inner {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 4px 10px 10px 4px;
  overflow: hidden;
  box-shadow:
    -6px 0 0 -3px rgba(0,0,0,0.15),
    0 20px 40px rgba(40,10,22,0.45);
  transition: transform 0.45s cubic-bezier(.2,.9,.3,1.3), box-shadow 0.45s ease;
  background: var(--ink-light);
}
.book-card:hover .book-card-inner {
  transform: translateY(-14px) rotateZ(-1deg);
  box-shadow: -6px 0 0 -3px rgba(0,0,0,0.2), 0 34px 60px rgba(40,10,22,0.55);
}
.book-card-inner img { width: 100%; height: 100%; object-fit: cover; }
.book-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(40,10,22,0.94) 0%, rgba(40,10,22,0.35) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.book-card:hover .book-card-overlay { opacity: 1; }
.book-card-badge {
  position: absolute; top: 0.8rem; left: 0.8rem;
  background: var(--mauve);
  color: var(--ink);
  font-family: var(--font-hand);
  font-size: 0.95rem;
  padding: 0.2rem 0.8rem;
  border-radius: 100px;
}
.book-card-badge.current { background: var(--terracotta); }
.book-card-title { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; }
.book-card-author { font-size: 0.85rem; opacity: 0.85; margin-top: 0.2rem; }
.book-card-date { font-family: var(--font-hand); font-size: 1.15rem; color: var(--mauve); margin-top: 0.6rem; }
.books-empty { text-align: center; padding: 3rem 0; color: var(--rose); }
.books-cta { margin-top: 3rem; text-align: center; }
.books-cta a { font-family: var(--font-hand); font-size: 1.4rem; color: var(--rose); }
/* botões dentro de .books-cta mantêm a própria tipografia/cor */
.books-cta a.btn { font-family: var(--font-body); font-size: 0.95rem; }
.books-cta a.btn-whatsapp { color: #fff; }

.skeleton {
  aspect-ratio: 2/3;
  border-radius: 4px 10px 10px 4px;
  background: linear-gradient(100deg, rgba(255,255,255,0.06) 30%, rgba(255,255,255,0.14) 50%, rgba(255,255,255,0.06) 70%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ---------- SCHEDULE ---------- */
.schedule-section {
  background: var(--parchment);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  position: relative;
}
.schedule-deco {
  position: absolute; top: -40px; right: 4%;
  width: 200px; height: 200px;
  color: var(--mauve);
  opacity: 0.5;
  pointer-events: none;
  animation: schedule-deco-spin 60s linear infinite;
}
@keyframes schedule-deco-spin { to { transform: rotate(360deg); } }

.schedule-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.schedule-top .section-head { margin-bottom: 0; }
.schedule-countdown {
  font-family: var(--font-hand);
  color: var(--terracotta);
  font-size: 1.4rem;
  margin-top: 0.9rem;
}

/* ---------- TABS ---------- */
.schedule-tabs {
  position: relative;
  display: inline-flex;
  gap: 0.2rem;
  padding: 0.3rem;
  background: var(--cream);
  border-radius: 100px;
  box-shadow: inset 0 0 0 1px rgba(40,10,22,0.08);
  margin-bottom: 2.2rem;
  flex-shrink: 0;
}
.schedule-tab {
  position: relative;
  z-index: 1;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.3rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink-light);
  transition: color 0.35s ease;
  white-space: nowrap;
}
.schedule-tab iconify-icon { font-size: 1.15rem; }
.schedule-tab.active { color: var(--cream); }
.schedule-tab-glide {
  position: absolute; top: 0.3rem; left: 0.3rem;
  height: calc(100% - 0.6rem);
  border-radius: 100px;
  background: var(--wine);
  box-shadow: 0 6px 16px rgba(140,58,92,0.35);
  transition: transform 0.4s cubic-bezier(0.65, 0.05, 0, 1), width 0.4s cubic-bezier(0.65, 0.05, 0, 1);
}

/* ---------- VIEWS ---------- */
.schedule-view[hidden] { display: none; }

/* ---------- LIST (cards estilo ingresso) ---------- */
.schedule-list { display: flex; flex-direction: column; gap: 1.1rem; }
.schedule-month-sep {
  font-family: var(--font-hand);
  color: var(--wine);
  font-size: 1.3rem;
  padding: 1rem 0.4rem 0.2rem;
}
.schedule-month-sep:first-child { padding-top: 0; }

.schedule-row {
  display: grid;
  grid-template-columns: 96px 1px 68px 1fr auto;
  align-items: center;
  gap: 1.4rem;
  padding: 1.3rem 1.6rem;
  background: var(--cream);
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(40,10,22,0.05);
  transition: transform 0.4s cubic-bezier(.2,.9,.3,1.2), box-shadow 0.4s ease;
}
.schedule-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(40,10,22,0.14);
}
.schedule-date {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--cream);
}
.schedule-date-num { font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.schedule-date-day { font-family: var(--font-hand); font-size: 1.05rem; color: var(--rose); margin-top: 0.15rem; text-transform: capitalize; }
.schedule-ticket-tear {
  width: 1px; height: 72%;
  background: repeating-linear-gradient(to bottom, rgba(40,10,22,0.18) 0 6px, transparent 6px 12px);
}
.schedule-thumb { width: 58px; height: 87px; object-fit: cover; border-radius: 5px; box-shadow: 0 8px 18px rgba(40,10,22,0.25); transition: transform 0.4s ease; }
.schedule-row:hover .schedule-thumb { transform: rotate(-2deg) scale(1.04); }
.schedule-info { display: flex; align-items: center; gap: 1.1rem; min-width: 0; }
.schedule-info h4 { font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; color: var(--ink); }
.schedule-info .schedule-author { color: var(--ink-light); font-size: 1rem; margin-top: 0.15rem; }
.schedule-time-wrap { text-align: right; }
.schedule-time { font-family: var(--font-hand); font-size: 1.5rem; color: var(--wine); }
.schedule-badge {
  background: var(--mauve); color: var(--ink);
  font-family: var(--font-hand); font-size: 1rem;
  padding: 0.2rem 0.8rem; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 0.35rem;
}
.schedule-badge iconify-icon { font-size: 0.95rem; }
.schedule-empty { text-align: center; padding: 3rem 0; color: var(--ink-light); font-size: 1.1rem; }

/* ---------- CALENDAR ---------- */
.schedule-calendar {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.cal-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 1.6rem 1.7rem 1.9rem;
  box-shadow: 0 20px 50px rgba(40,10,22,0.1);
}
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.cal-month-label { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--ink); }
.cal-month-label em { color: var(--wine); font-style: normal; }
.cal-nav {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(140,58,92,0.25);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--wine);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.cal-nav:hover:not(:disabled) { background: var(--wine); color: var(--cream); border-color: var(--wine); }
.cal-nav:disabled { opacity: 0.3; cursor: default; }
.cal-nav iconify-icon { font-size: 1.2rem; }
.cal-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.4rem;
}
.cal-weekdays span {
  text-align: center; font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-light); opacity: 0.7;
}
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.3rem; }
.cal-day {
  position: relative;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}
.cal-day.is-empty { pointer-events: none; }
.cal-day.has-event { color: var(--wine); font-weight: 600; cursor: pointer; }
.cal-day.has-event:hover { background: rgba(140,58,92,0.12); transform: scale(1.08); }
.cal-day.has-event::after {
  content: ''; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--terracotta);
}
.cal-day.is-selected { background: var(--wine); color: var(--cream); }
.cal-day.is-selected::after { background: var(--rose); }
.cal-day.is-today:not(.is-selected) { box-shadow: inset 0 0 0 1.5px var(--terracotta); }

.cal-detail-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 0.8rem;
  height: 100%; min-height: 260px;
  color: var(--ink-light);
  padding: 2rem;
}
.cal-detail-empty iconify-icon { font-size: 2.4rem; color: var(--mauve); }
.cal-detail-empty .cal-jump {
  font-family: var(--font-hand); color: var(--wine); font-size: 1.2rem; margin-top: 0.3rem;
}

.cal-detail-card {
  background: var(--wine);
  color: var(--cream);
  border-radius: 24px;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  display: flex; gap: 1.8rem; align-items: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.cal-detail-card::before {
  content: '';
  position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: var(--mauve); opacity: 0.3; filter: blur(70px);
  top: -80px; right: -60px; pointer-events: none;
}
.cal-detail-thumb { width: 110px; height: 165px; object-fit: cover; border-radius: 8px; box-shadow: 0 16px 32px rgba(0,0,0,0.35); position: relative; flex-shrink: 0; }
.cal-detail-body { position: relative; min-width: 0; }
.cal-detail-date { font-family: var(--font-hand); color: var(--rose); font-size: 1.15rem; margin-bottom: 0.4rem; }
.cal-detail-title { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; margin-bottom: 0.3rem; }
.cal-detail-author { color: var(--mauve); font-size: 1rem; margin-bottom: 0.8rem; }
.cal-detail-time { font-family: var(--font-hand); font-size: 1.3rem; color: var(--cream); }
.cal-detail-badge {
  background: var(--terracotta); color: var(--ink);
  font-family: var(--font-hand); font-size: 0.95rem;
  padding: 0.2rem 0.75rem; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 0.6rem;
}

/* ---------- PRICING ---------- */
.pricing-section { background: var(--cream); padding: clamp(5rem, 10vw, 9rem) 0; }
.pricing-section .eyebrow { color: var(--terracotta); }
.pricing-note {
  max-width: 620px;
  margin: 1rem auto 0;
  color: var(--ink-light);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--parchment);
  border-radius: 28px;
  padding: 2.6rem 2.2rem;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.9,.3,1.2), box-shadow 0.4s ease;
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(40,10,22,0.14); }
.price-card.featured {
  background: var(--wine);
  color: var(--cream);
  transform: scale(1.05);
}
.price-card.featured:hover { transform: scale(1.05) translateY(-10px); }
.price-card.featured .btn-primary {
  background: var(--terracotta);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.price-card.featured .btn-primary:hover { background: #CE8760; }
.price-badge {
  font-family: var(--font-hand);
  background: var(--terracotta); color: var(--ink);
  padding: 0.3rem 1rem; border-radius: 100px;
  font-size: 1rem;
  display: inline-block;
  position: absolute; top: 1.6rem; right: 1.6rem;
}
.price-card h3 { font-size: 1.7rem; margin-bottom: 0.4rem; position: relative; }
.price-value { font-family: var(--font-display); font-size: 2.4rem; margin-bottom: 1.6rem; position: relative; }
.price-value span { font-family: var(--font-body); font-size: 0.9rem; font-weight: 300; opacity: 0.7; }
.price-saving {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  margin: -0.55rem 0 1.35rem;
  padding: 0.46rem 0.9rem;
  border-radius: 999px;
  background: rgba(140, 58, 92, 0.1);
  color: var(--wine);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.price-saving::before {
  content: '✦';
  font-size: 0.8rem;
  color: var(--terracotta);
}
.featured-saving {
  background: rgba(245, 225, 196, 0.16);
  color: var(--cream);
}
.featured-saving::before { color: var(--rose); }
.price-desc {
  position: relative;
  margin: -0.15rem 0 1.25rem;
  color: var(--ink-light);
  font-size: 0.95rem;
  line-height: 1.5;
}
.featured-desc { color: rgba(251, 242, 224, 0.86); }
.price-features { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; position: relative; flex: 1; }
.price-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; }
.price-features li.no { opacity: 0.45; }
.price-check { width: 20px; height: 20px; flex-shrink: 0; }
.price-card .btn { position: relative; align-self: flex-start; }

/* ---------- ABOUT ---------- */
.about-section { background: var(--parchment); padding: clamp(5rem, 10vw, 9rem) 0; }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.about-photo-wrap {
  position: relative;
  aspect-ratio: 320/400;
  padding: 1rem 1rem 4rem;
  background: #fffaf3;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(40, 10, 22, 0.16);
  transform: rotate(-2.4deg);
}
.about-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(40, 10, 22, 0.08);
  pointer-events: none;
}
.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  border-radius: 3px;
}
.about-title { font-style: italic; font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 1.4rem; }
.about-text p { color: var(--ink-light); margin-bottom: 1.1rem; }
.about-signature { width: 200px; height: 60px; margin: 1.4rem 0; color: var(--wine); }
.about-signature path { stroke-dasharray: 500; stroke-dashoffset: 500; }
.about-stats { display: flex; gap: 2.6rem; margin-top: 1.6rem; }
.about-stat-num { font-family: var(--font-display); font-size: 2.4rem; color: var(--wine); }
.about-stat-label { font-family: var(--font-hand); font-size: 1.05rem; color: var(--ink-light); }

/* ---------- TESTIMONIALS ---------- */
.testimonials-section { background: var(--wine); padding: clamp(5rem, 10vw, 9rem) 0; color: var(--cream); overflow: hidden; }
.testimonials-section .eyebrow { color: var(--rose); }
.testimonials-section .section-title { color: var(--cream); }
.marquee-wrap { overflow: hidden; margin-bottom: 3rem; border-top: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15); padding: 0.9rem 0; }
.marquee-track { white-space: nowrap; width: max-content; animation: marquee 26s linear infinite; }
.marquee-track span { display: inline; }
.marquee-track span { font-family: var(--font-hand); font-size: 1.6rem; color: var(--rose); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.testimonials-track { display: flex; gap: 1.8rem; overflow: visible; padding: 1rem 0.2rem 2rem; flex-wrap: wrap; }
.testimonial-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: 22px;
  padding: 2.2rem;
  flex: 1 1 280px;
  min-width: 260px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.testimonial-card:hover { transform: rotate(0deg) translateY(-6px) !important; box-shadow: 0 30px 60px rgba(0,0,0,0.28); }
.testimonial-quote { font-family: var(--font-display); font-size: 4.5rem; color: var(--mauve); opacity: 0.35; line-height: 0.5; height: 2rem; }
.testimonial-text { margin: 1rem 0 1.6rem; color: var(--ink-light); }
.testimonial-person { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background:
    linear-gradient(135deg, rgba(140, 58, 92, 0.14), rgba(230, 173, 192, 0.42)),
    var(--cream);
  border: 1px solid rgba(140, 58, 92, 0.22);
  color: var(--wine);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}
.testimonial-name { font-family: var(--font-display); color: var(--wine); font-size: 1.1rem; }
.testimonial-meta { color: var(--ink-light); font-size: 0.95rem; line-height: 1.35; }
.testimonial-proof {
  margin-top: 0.12rem;
  color: var(--mauve);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- MOMENTS ---------- */
.moments-section {
  background:
    radial-gradient(circle at top, rgba(230, 173, 192, 0.18), transparent 34%),
    linear-gradient(180deg, #f8edda 0%, var(--cream) 100%);
  padding: clamp(5rem, 10vw, 8rem) 0 calc(clamp(5rem, 10vw, 8rem) + 2rem);
  overflow: hidden;
}
.moments-marquee {
  border-top: 1px solid rgba(140, 58, 92, 0.16);
  border-bottom: 1px solid rgba(140, 58, 92, 0.16);
  background: rgba(251, 242, 224, 0.5);
}
.moments-marquee .marquee-track span { color: var(--wine); }
.moments-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.moments-copy-block { max-width: 420px; }
.moments-head { margin-bottom: 1.6rem; }
.moments-copy {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: var(--ink-light);
}
.moments-points {
  display: grid;
  gap: 1rem;
}
.moments-point {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(251, 242, 224, 0.68);
  border: 1px solid rgba(140, 58, 92, 0.12);
  box-shadow: 0 18px 36px rgba(40, 10, 22, 0.06);
}
.moments-point strong {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--wine);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
}
.moments-point span { color: var(--ink-light); font-size: 0.96rem; }

.macbook-showcase {
  position: relative;
  width: min(100%, 720px);
  margin-left: auto;
  padding: 0.4rem 0 0;
}
.macbook-display {
  position: relative;
  margin: 0 auto;
  width: min(100%, 660px);
  aspect-ratio: 16 / 10.2;
  padding: 1.82rem 0.72rem 0.66rem;
  overflow: hidden;
  border-radius: 18px 18px 8px 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 10%),
    linear-gradient(180deg, #101820 0%, #05080d 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.85),
    0 22px 38px rgba(40, 10, 22, 0.14);
}
.macbook-display::before {
  content: '';
  position: absolute;
  inset: 0.36rem;
  border-radius: 14px 14px 6px 6px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.macbook-camera {
  position: absolute;
  top: 0.62rem;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 58% 42%, #25566d 0 16%, #071019 19% 54%, #010306 58% 100%);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.9) inset;
  transform: translateX(-50%);
  z-index: 3;
}
.macbook-screen-glow {
  position: absolute;
  inset: 1.82rem 0.72rem 0.66rem;
  background:
    linear-gradient(132deg, rgba(255,255,255,0.16), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 18%);
  pointer-events: none;
  z-index: 2;
  border-radius: 9px 9px 5px 5px;
}
.macbook-screen {
  position: absolute;
  inset: 1.82rem 0.72rem 0.66rem;
  border-radius: 9px 9px 5px 5px;
  overflow: hidden;
  background: #0f1116;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 0 2px rgba(0, 0, 0, 0.72);
}
.meeting-carousel-track {
  display: flex;
  width: 700%;
  height: 100%;
  animation: meeting-carousel 35s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
}
.meeting-slide {
  position: relative;
  width: calc(100% / 7);
  height: 100%;
  overflow: hidden;
}
.meeting-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,17,22,0.06), rgba(15,17,22,0.22));
}
.meeting-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}
.macbook-hinge {
  width: min(94%, 620px);
  height: 5px;
  margin: -1px auto 0;
  border-radius: 0 0 5px 5px;
  background:
    linear-gradient(90deg, rgba(68, 74, 83, 0.18), rgba(68, 74, 83, 0.72) 18%, rgba(35, 40, 48, 0.86) 50%, rgba(68, 74, 83, 0.72) 82%, rgba(68, 74, 83, 0.18)),
    linear-gradient(180deg, #151a21, #080b10);
}
.macbook-base {
  position: relative;
  width: min(100%, 670px);
  height: 18px;
  margin: 0 auto;
  border-radius: 0 0 18px 18px;
  background:
    linear-gradient(90deg, #aab2bd 0%, #e8edf2 16%, #f3f6f8 50%, #d2d8df 84%, #9da6b1 100%),
    linear-gradient(180deg, #eef2f6 0%, #bac2cc 58%, #8f99a6 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 2px rgba(88, 94, 103, 0.75),
    0 10px 18px rgba(40, 10, 22, 0.1);
}
.macbook-base::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.68);
}
.macbook-trackpad {
  position: absolute;
  top: 0;
  left: 50%;
  width: 18%;
  min-width: 92px;
  height: 5px;
  border-radius: 0 0 7px 7px;
  background: linear-gradient(180deg, rgba(98, 106, 116, 0.44), rgba(176, 183, 192, 0.12));
  box-shadow:
    inset 0 -1px 1px rgba(255, 255, 255, 0.24),
    0 1px 4px rgba(52, 58, 66, 0.18);
  transform: translateX(-50%);
}
.macbook-shadow {
  width: min(92%, 610px);
  height: 18px;
  margin: -0.12rem auto 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 10, 22, 0.2) 0%, rgba(40, 10, 22, 0) 72%);
  filter: blur(12px);
}
.moments-faq-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 118px;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(251, 242, 224, 0) 0%, rgba(140, 58, 92, 0.08) 48%, rgba(251, 242, 224, 0.96) 100%),
    url('../Assets/renda.png') center bottom / auto 190% repeat-x;
  filter: drop-shadow(0 -8px 18px rgba(40, 10, 22, 0.06));
}
@keyframes meeting-carousel {
  0%, 10% { transform: translateX(0); }
  14%, 24% { transform: translateX(calc(-100% / 7)); }
  28%, 38% { transform: translateX(calc(-200% / 7)); }
  42%, 52% { transform: translateX(calc(-300% / 7)); }
  56%, 66% { transform: translateX(calc(-400% / 7)); }
  70%, 80% { transform: translateX(calc(-500% / 7)); }
  84%, 94% { transform: translateX(calc(-600% / 7)); }
  100% { transform: translateX(0); }
}

/* ---------- FAQ ---------- */
.faq-section {
  background:
    linear-gradient(180deg, #fbf2e0 0%, var(--cream) 18%);
  padding: clamp(4.8rem, 8vw, 7rem) 0 clamp(5rem, 10vw, 9rem);
}
.faq-section .eyebrow { color: var(--terracotta); }
.faq-decor {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 940px;
  margin: 0.35rem auto 2rem;
  padding: 0 0.75rem;
}
.faq-note {
  --sticker-rotate: -4deg;
  transform: rotate(-4deg);
  animation: sticker-float 8.2s ease-in-out infinite;
}
.faq-note strong { font-size: 1.4rem; }
.faq-seal {
  --sticker-rotate: 7deg;
  position: relative;
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  transform: rotate(7deg);
  animation: sticker-float 7.8s ease-in-out infinite;
}
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(40,10,22,0.1); transition: background 0.3s ease; border-radius: 10px; }
.faq-item.open { background: var(--parchment); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1rem;
  text-align: left;
  font-family: var(--font-body); font-weight: 500; font-size: 1.05rem;
}
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--wine); }
.faq-answer { overflow: hidden; height: 0; }
.faq-answer-inner { padding: 0 1rem 1.6rem; color: var(--ink-light); }

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--parchment);
  padding: clamp(6rem, 12vw, 11rem) 0;
  text-align: center;
  position: relative;
}
.final-cta-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.final-cta-quote {
  position: absolute; top: -4rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(14rem, 30vw, 30rem);
  color: var(--wine);
  opacity: 0.04;
  pointer-events: none;
  line-height: 1;
}
.final-cta-blob {
  position: absolute; z-index: 0;
  width: 500px; height: 500px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: var(--mauve);
  opacity: 0.35;
  filter: blur(90px);
  border-radius: 50%;
}
.final-cta-content { position: relative; z-index: 1; }
.cta-postage {
  --sticker-rotate: -7deg;
  left: 12%;
  bottom: 14%;
  transform: rotate(-7deg);
  animation: sticker-float 9.2s ease-in-out infinite;
}
.cta-postage .deco-postage-top {
  font-size: 0.64rem;
  letter-spacing: 0.11em;
}
.cta-sparkle {
  top: 18%;
  right: 14%;
  animation: sticker-float 8.6s ease-in-out infinite;
}
.final-cta h2 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-style: italic; margin-bottom: 1.2rem; }
.final-cta h2 em { color: var(--wine); }
.final-cta p.sub { color: var(--ink-light); margin-bottom: 2.4rem; }

.btn iconify-icon { font-size: 1.35em; }

.final-cta-socials { margin-top: 2.8rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.social-pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(140, 58, 92, 0.25);
  border-radius: 100px;
  color: var(--wine);
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em;
  background: rgba(251, 242, 224, 0.5);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.social-pill iconify-icon { font-size: 1.3rem; }
.social-pill:hover {
  background: var(--wine);
  color: var(--cream);
  border-color: var(--wine);
  box-shadow: 0 14px 30px rgba(140, 58, 92, 0.3);
}

/* ---------- CHECKOUT ---------- */
.checkout-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(230, 173, 192, 0.3), transparent 30%),
    var(--parchment);
}

.checkout-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
}

.checkout-card {
  position: relative;
  width: min(100%, 620px);
  background: rgba(251, 242, 224, 0.92);
  border: 1px solid rgba(140, 58, 92, 0.14);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(40, 10, 22, 0.12);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.checkout-back {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--wine);
  font-size: 0.95rem;
}

.checkout-seal {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin: 0 auto 0.85rem;
  filter: drop-shadow(0 14px 28px rgba(140, 58, 92, 0.18));
}

.checkout-card h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-style: italic;
  margin-bottom: 0.9rem;
}

.checkout-copy {
  max-width: 430px;
  margin: 0 auto;
  color: var(--ink-light);
}

.checkout-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto 0;
  max-width: 380px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.checkout-benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--ink);
}

.checkout-benefits li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--wine);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin: 2rem 0 1.1rem;
}

.checkout-actions .btn {
  min-width: min(100%, 300px);
  justify-content: center;
}

.checkout-note {
  color: var(--ink-light);
  font-size: 0.95rem;
}

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: var(--cream); padding: 4rem 0 2rem; }
.footer-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2.5rem; margin-bottom: 3rem; }
.footer-logo { height: 44px; width: auto; display: block; }
.footer-nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-nav a { font-size: 0.85rem; color: var(--cream); opacity: 0.8; }
.footer-nav a:hover { opacity: 1; }
.footer-social { display: flex; gap: 1.2rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.6rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem; font-size: 0.8rem; color: var(--rose); }

/* ---------- REVEAL IMAGE WRAPPER ---------- */
/* Overlay div is injected and animated via GSAP in animations.js */
.reveal-img { position: relative; overflow: hidden; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1279px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.featured { transform: scale(1); order: -1; }
  .price-card.featured:hover { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
  .how-steps { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 360px; margin: 0 auto; }
  .schedule-calendar { grid-template-columns: 1fr; }
  .cal-card { max-width: 420px; margin: 0 auto; width: 100%; }
  .hero-ticket { left: 4%; top: 16%; }
  .hero-seal { right: 5%; top: 18%; }
  .cta-postage { left: 6%; }
  .cta-sparkle { right: 6%; }
  .books-seal-love { width: 190px; }
  .testimonials-seal-cupid { width: 124px; }
  .cta-seal-made { width: 170px; }
  .moments-layout {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .moments-copy-block {
    max-width: 100%;
    text-align: center;
  }
  .moments-copy { margin-left: auto; margin-right: auto; }
  .macbook-showcase { margin: 0 auto; }
  .macbook-display { width: min(100%, 620px); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .navbar-inner { padding: 0.45rem 0.9rem; margin: 0 -0.9rem; }
  .hero-edge { display: none; }
}

@media (max-width: 640px) {
  .nav-cta { display: none; }
  .nav-logo-img { height: 36px; }
  .nav-seal {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 768px) {
  .cursor-dot, .cursor-follower { display: none; }

  .hero-seal-chat,
  .books-seal-love,
  .testimonials-seal-cupid,
  .cta-seal-made { display: none; }

  .pricing-seal-mail {
    width: 92px;
    top: 1.5rem;
    left: 0.6rem;
  }

  .schedule-seal-wax {
    width: 66px;
    bottom: 1.1rem;
    left: auto;
    right: 1rem;
  }

  .moments-section { padding: 4.4rem 0 7rem; }
  .moments-marquee { margin-bottom: 2.2rem; }
  .moments-head { margin-bottom: 1.2rem; }
  .moments-points { gap: 0.8rem; }
  .moments-point { text-align: left; }
  .macbook-showcase {
    width: min(100%, 560px);
    padding: 0 0.4rem;
  }
  .macbook-display {
    padding: 1.16rem 0.38rem 0.36rem;
    border-radius: 14px 14px 6px 6px;
  }
  .macbook-camera {
    width: 6px;
    height: 6px;
    min-width: 0;
    top: 0.36rem;
  }
  .macbook-screen,
  .macbook-screen-glow {
    inset: 1.16rem 0.38rem 0.36rem;
    border-radius: 5px 5px 3px 3px;
  }
  .macbook-hinge { height: 4px; width: min(94%, 520px); }
  .macbook-base { height: 12px; width: min(100%, 560px); }
  .macbook-trackpad { min-width: 64px; height: 4px; }
  .meeting-slide img { transform: scale(1.08); }
  .moments-faq-divider {
    height: 84px;
    background-size: auto 180%;
  }

  .lace-divider {
    bottom: -2px;
    height: 72px;
    background-size: auto 175%;
  }

  .hero-ticket {
    min-width: 136px;
    left: 1rem;
    top: 12%;
    padding: 0.8rem 0.9rem 0.85rem;
  }
  .hero-ticket strong { font-size: 1.45rem; }
  .hero-seal {
    width: 82px;
    height: 82px;
    right: 0.8rem;
    top: 14%;
  }
  /* Esconde toda a collage decorativa no mobile para não sobrepor o conteúdo */
  .hero-collage { display: none; }

  .hero-tape,
  .hero-sparkle { display: none; }

  .faq-decor {
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.6rem;
  }
  .faq-note {
    max-width: 100%;
    transform: rotate(-2deg);
  }
  .faq-seal {
    width: 82px;
    height: 82px;
    margin-top: -0.8rem;
    align-self: flex-end;
  }

  /* Esconde decorações do CTA no mobile para não sobrepor os botões */
  .final-cta-decor { display: none; }

  .schedule-top { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
  .schedule-tabs { align-self: stretch; }
  .schedule-tab { flex: 1; justify-content: center; }
  .schedule-deco { width: 130px; height: 130px; top: -20px; }

  .schedule-row {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 0.8rem 1rem;
    padding: 1.1rem 1.2rem;
  }
  .schedule-ticket-tear { display: none; }
  .schedule-date { width: 64px; height: 64px; flex-shrink: 0; }
  .schedule-date-num { font-size: 1.4rem; }
  .schedule-date-day { font-size: 0.85rem; }
  .schedule-thumb { width: 46px; height: 69px; }
  .schedule-info { flex: 1 1 auto; min-width: 0; gap: 0.7rem; }
  .schedule-info h4 { font-size: 1.15rem; }
  .schedule-time-wrap { flex-basis: 100%; text-align: left; padding-left: 80px; }

  .cal-day { font-size: 0.88rem; }
  .cal-detail-card { padding: 1.6rem; gap: 1.3rem; }
  .cal-detail-thumb { width: 88px; height: 132px; }
  .cal-detail-title { font-size: 1.35rem; }

  .books-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 480px) {
  .books-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { padding-bottom: 8.2rem; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cal-detail-card { flex-direction: column; text-align: center; }
  .cal-detail-thumb { margin: 0 auto; }
  .cal-detail-date, .cal-detail-author { text-align: center; }
  /* Rotator não ultrapassa a tela */
  .hero-rotator { max-width: calc(100vw - 3rem); }
  .hero-line-em { flex-wrap: wrap; justify-content: center; }
  /* Botão WhatsApp não corta no mobile */
  .btn-whatsapp.btn-lg { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   BOOK CARD — clicável como <a> + ação "Ver detalhes"
   ============================================================ */

a.book-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.book-card-action {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(245, 225, 196, .85);
  margin-top: .5rem;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .25s ease, transform .25s ease;
}

.book-card:hover .book-card-action,
.book-card:focus-visible .book-card-action {
  opacity: 1;
  transform: translateY(0);
}
