/* ── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Custom Properties ─────────────────────────────────────────────── */
:root {
  --c-title:      #6B2E55;
  --c-text:       #4a2a3b;
  --c-label:      #8A4B6F;
  --c-accent:     #e285c4;
  --c-border:     #d45c8c;
  --c-card:       #ffffff;
  --c-hover:      #f2b5d4;
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    28px;
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ── Base ───────────────────────────────────────────────────────────── */
body {
  min-height: 100vh;
  background: linear-gradient(180deg, #fff6fa 0%, #fde8f1 50%, #f7d6e6 100%);
  font-family: var(--font-body);
  color: var(--c-text);
  overflow-x: hidden;
}

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.5s var(--ease-out);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(145deg, #e285c4, #d45c8c);
  color: #fff;
  box-shadow: 0 4px 20px rgba(212, 92, 140, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 92, 140, 0.45);
}
.btn--outline {
  background: transparent;
  border: 1.5px solid #d45c8c;
  color: var(--c-title);
}
.btn--outline:hover { background: #f9d3e6; }
.btn--ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--c-title);
  border: 1.5px solid rgba(212, 92, 140, 0.3);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.8); }
.btn--sm  { font-size: 13px; padding: 8px 20px; }
.btn--lg  { font-size: 15px; padding: 14px 32px; }
.btn--xl  { font-size: 16px; padding: 18px 44px; }

/* ── Section Shared ─────────────────────────────────────────────────── */
.section__header {
  text-align: center;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.section__header.is-visible {
  opacity: 1;
  transform: none;
}
.section__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d45c8c;
  background: rgba(212, 92, 140, 0.1);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  color: var(--c-title);
  margin: 0 0 16px;
  line-height: 1.15;
}
.section__desc {
  font-size: 16px;
  color: var(--c-label);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Navbar ─────────────────────────────────────────────────────────── */
.hero__nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 48px;
  transition: background 0.7s, backdrop-filter 0.7s, box-shadow 0.7s;
}
.hero__nav.scrolled {
  background: rgba(255, 246, 250, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(212, 92, 140, 0.12);
}
.hero__logo {
  height: 50px;
  object-fit: contain;
  margin-right: auto;
}
.nav__link {
  font-size: 14px;
  color: var(--c-title);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.5s;
}
.nav__link:hover { opacity: 1; }

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }

.hero__petal {
  position: absolute;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  opacity: 0.18;
  animation: float 8s ease-in-out infinite;
}
.hero__petal--1 { width: 340px; height: 340px; background: #e285c4; top: -80px;    left: -80px;   animation-duration: 10s; }
.hero__petal--2 { width: 220px; height: 220px; background: #d45c8c; top: 15%;     right: -60px;  animation-delay: 2s;   animation-duration: 8s; }
.hero__petal--3 { width: 180px; height: 180px; background: #f9d3e6; bottom: 10%;  left: 5%;      animation-delay: 1.5s; animation-duration: 12s; }
.hero__petal--4 { width: 260px; height: 260px; background: #e285c4; bottom: -60px; right: 8%;    animation-delay: 3s;   animation-duration: 9s; }
.hero__petal--5 { width: 140px; height: 140px; background: #d45c8c; top: 40%;     left: 40%;     animation-delay: 0.8s; animation-duration: 11s; opacity: 0.1; }

@keyframes float {
  0%, 100% { transform: translateY(0)     rotate(0deg); }
  33%       { transform: translateY(-18px) rotate(5deg); }
  66%       { transform: translateY(10px)  rotate(-3deg); }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.hero__content.is-visible { opacity: 1; transform: none; }

.hero__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d45c8c;
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 80px);
  font-weight: 300;
  color: var(--c-title);
  line-height: 1.1;
  margin: 0 0 24px;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #d45c8c, #e285c4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 17px;
  color: var(--c-label);
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 1.7s 1.9s var(--ease-out);
}
.hero__scroll-hint.is-visible { opacity: 1; }
.scroll-dot {
  display: block;
  width: 6px;
  height: 32px;
  border-radius: 3px;
  background: linear-gradient(180deg, #d45c8c, transparent);
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: scaleY(1);   opacity: 0.6; }
  50%       { transform: scaleY(0.6); opacity: 1; }
}

/* ── Features ───────────────────────────────────────────────────────── */
.features {
  padding: 120px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1px solid rgba(212, 92, 140, 0.12);
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 1.0s var(--ease-out),
    transform 1.0s var(--ease-out),
    box-shadow 0.5s,
    border-color 0.5s;
}
.feature-card.is-visible { opacity: 1; transform: none; }
.feature-card:hover {
  box-shadow: 0 12px 40px rgba(212, 92, 140, 0.13);
  border-color: rgba(212, 92, 140, 0.3);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  color: #d45c8c;
  margin-bottom: 24px;
}
.feature-card__icon svg { width: 100%; height: 100%; }
.feature-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--c-title);
  margin: 0 0 12px;
}
.feature-card__desc {
  font-size: 14px;
  color: var(--c-label);
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
}

/* ── WhatsApp ───────────────────────────────────────────────────────── */
.wpp {
  padding: 120px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.wpp__inner {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.wpp__inner.is-visible { opacity: 1; transform: none; }
.wpp__inner .section__header { margin-bottom: 64px; }

.wpp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.wpp__visual {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 92, 140, 0.12);
  padding: 32px;
  box-shadow: 0 12px 40px rgba(212, 92, 140, 0.08);
}
.wpp__chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212, 92, 140, 0.1);
  margin-bottom: 20px;
}
.wpp__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #e285c4, #d45c8c);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.wpp__name { font-size: 14px; font-weight: 500; color: var(--c-title); }
.wpp__status { font-size: 11px; color: #25D366; }

.wpp__bubble {
  background: #f0fdf4;
  border-radius: 0 12px 12px 12px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--c-text);
  line-height: 1.6;
  margin-bottom: 8px;
  border: 1px solid rgba(37, 211, 102, 0.15);
}
.wpp__bubble strong { color: var(--c-title); }
.wpp__bubble--reply {
  background: #fff0f7;
  border-radius: 12px 0 12px 12px;
  margin-left: auto;
  max-width: 80%;
  border-color: rgba(212, 92, 140, 0.12);
}
.wpp__time { font-size: 10px; color: #8A4B6F; text-align: right; margin-top: 4px; }

.wpp__title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 400;
  color: var(--c-title); margin-bottom: 16px; line-height: 1.2;
}
.wpp__desc {
  font-size: 15px; color: var(--c-label);
  line-height: 1.75; font-weight: 300; margin-bottom: 24px;
}
.wpp__features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.wpp__feature { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--c-label); }
.wpp__dot { width: 8px; height: 8px; border-radius: 50%; background: #25D366; flex-shrink: 0; }

/* ── Pix ────────────────────────────────────────────────────────────── */
.pix {
  padding: 120px 24px;
  background: linear-gradient(180deg,
    rgba(255, 246, 250, 0) 0%,
    #fde8f1 50%,
    rgba(255, 246, 250, 0) 100%
  );
}
.pix__inner {
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.pix__inner.is-visible { opacity: 1; transform: none; }
.pix__inner .section__header { margin-bottom: 64px; }

.pix__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.pix__title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 400;
  color: var(--c-title); margin-bottom: 16px; line-height: 1.2;
}
.pix__desc { font-size: 15px; color: var(--c-label); line-height: 1.75; font-weight: 300; margin-bottom: 28px; }

.pix__flow { display: flex; flex-direction: column; }
.pix__flow-item { display: flex; align-items: flex-start; gap: 16px; padding-bottom: 20px; }
.pix__flow-item:last-child { padding-bottom: 0; }
.pix__flow-left { display: flex; flex-direction: column; align-items: center; }
.pix__num {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #e285c4, #d45c8c);
  color: white; font-size: 13px; font-weight: 500;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pix__line {
  width: 1.5px; flex: 1; min-height: 20px;
  background: linear-gradient(180deg, rgba(212,92,140,0.3), rgba(212,92,140,0.05));
  margin-top: 4px;
}
.pix__flow-item:last-child .pix__line { display: none; }
.pix__flow-text { font-size: 14px; color: var(--c-label); line-height: 1.6; padding-top: 6px; }
.pix__flow-text strong { color: var(--c-title); font-weight: 500; }

.pix__visual {
  background: white; border-radius: var(--radius-md);
  border: 1px solid rgba(212,92,140,0.12); padding: 28px;
  box-shadow: 0 12px 40px rgba(212,92,140,0.08);
}
.pix__key-box {
  background: #f9f0f9; border: 1px dashed #d45c8c;
  border-radius: 12px; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.pix__key-label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: #8A4B6F; margin-bottom: 4px; }
.pix__key-value { font-size: 15px; font-weight: 500; color: #6B2E55; font-family: monospace; }
.pix__copy-btn {
  background: #6B2E55; border-radius: 8px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 16px; cursor: pointer;
}

.pix__gifts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pix__gift-card { background: #fff6fa; border-radius: 12px; border: 1px solid rgba(212,92,140,0.12); overflow: hidden; }
.pix__gift-card--reserved { background: #f5f5f5; border-color: rgba(0,0,0,0.06); }
.pix__gift-img { width: 100%; height: 80px; display: flex; align-items: center; justify-content: center; font-size: 32px; }
.pix__gift-img--gray { background: #f0f0f0; }
.pix__gift-body { padding: 10px 12px 12px; }
.pix__gift-name { font-size: 12px; font-weight: 500; color: #999; margin-bottom: 2px; }
.pix__gift-cat { font-size: 10px; color: var(--c-label); margin-bottom: 8px; display: block; }
.pix__gift-bottom { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pix__gift-price { display: flex; align-items: center; gap: 3px; }
.pix__currency { font-size: 10px; color: var(--c-label); background: rgba(212,92,140,0.08); border-radius: 20px; padding: 2px 6px; }
.pix__amount { font-size: 13px; font-weight: 500; color: #bbb; }
.pix__badge { display: inline-flex; align-items: center; gap: 3px; border-radius: 20px; padding: 2px 7px; font-size: 10px; font-weight: 500; }
.pix__badge--paid { background: #e8f5e9; color: #2e7d32; }
.pix__badge--pending { background: #fff3e0; color: #e65100; }
.pix__reserved-by { font-size: 10px; color: #999; margin-top: 4px; display: block; }

@media (max-width: 768px) {
  .wpp__grid, .pix__grid { grid-template-columns: 1fr; }
  .wpp, .pix { padding: 80px 24px; }
}

/* ── How It Works ───────────────────────────────────────────────────── */
.how {
  padding: 120px 24px;
  background: linear-gradient(180deg,
    rgba(255, 246, 250, 0) 0%,
    #fde8f1 50%,
    rgba(255, 246, 250, 0) 100%
  );
}
.how__inner {
  max-width: 880px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.how__inner.is-visible { opacity: 1; transform: none; }
.how__inner .section__header { opacity: 1; transform: none; }

.steps { display: flex; flex-direction: column; margin-top: 48px; }

.step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.step.is-visible { opacity: 1; transform: none; }

.step__number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 92, 140, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: #d45c8c;
  font-weight: 400;
  background: #fff;
  position: relative;
  z-index: 1;
}
.step__body { flex: 1; padding: 12px 0 48px; }
.step__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--c-title);
  margin: 0 0 10px;
}
.step__desc {
  font-size: 15px;
  color: var(--c-label);
  line-height: 1.75;
  margin: 0;
  font-weight: 300;
}
.step__connector {
  position: absolute;
  left: 29px;
  top: 62px;
  bottom: 0;
  width: 1.5px;
  background: linear-gradient(180deg,
    rgba(212, 92, 140, 0.35) 0%,
    rgba(212, 92, 140, 0.05) 100%
  );
}

/* ── CTA ────────────────────────────────────────────────────────────── */
.cta {
  padding: 140px 24px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(226, 133, 196, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.cta__inner.is-visible { opacity: 1; transform: none; }

.cta__heart {
  display: block;
  font-size: 40px;
  color: #e285c4;
  margin-bottom: 24px;
  animation: heartbeat 2.4s ease-in-out infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.13); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.08); }
  70%       { transform: scale(1); }
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  color: var(--c-title);
  line-height: 1.15;
  margin: 0 0 20px;
}
.cta__sub {
  font-size: 15px;
  color: var(--c-label);
  margin-bottom: 40px;
  font-weight: 300;
}

.cta__buttons {
  display: flex;
  flex-direction: row; 
  justify-content: center; 
  gap: 5px;
}

.cta__note { margin-top: 20px; font-size: 13px; color: var(--c-label); }
.cta__link { color: #d45c8c; text-decoration: none; font-weight: 500; }
.cta__link:hover { text-decoration: underline; }

/* ── Footer ─────────────────────────────────────────────────────────── */
.footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid rgba(212, 92, 140, 0.12);
}
.footer__logo { height: 50px; margin-bottom: 12px; opacity: 0.65; }
.footer__copy { font-size: 13px; color: var(--c-label); font-weight: 300; }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero__nav { padding: 16px 24px; gap: 20px; }
  .hero__nav .nav__link { display: none; }
  .features { padding: 80px 24px; }
  .how { padding: 80px 24px; }
  .step { gap: 20px; }
  .step__body { padding-bottom: 36px; }
}
@media (max-width: 480px) {
  .cta__buttons {flex-direction: column;}
  .hero__actions { flex-direction: column; }
  .btn--lg, .btn--xl { width: 100%; justify-content: center; }
}