/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --off-white: #fdf2f8;
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-300: #f9a8d4;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --pink-700: #be185d;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --green-500: #10b981;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gradient-pink: linear-gradient(135deg, #ec4899 0%, #db2777 50%, #be185d 100%);
  --gradient-subtle: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #ffffff 100%);
  --gradient-hero: linear-gradient(180deg, #fff1f5 0%, #ffffff 60%, #fdf2f8 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(236, 72, 153, 0.1);
  --shadow-lg: 0 8px 32px rgba(236, 72, 153, 0.15);
  --shadow-xl: 0 16px 48px rgba(236, 72, 153, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* ===========================
   TOP BAR
   =========================== */
.top-bar {
  background: var(--gradient-pink);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 100;
  animation: pulse-bg 3s ease-in-out infinite;
}

@keyframes pulse-bg {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.92; }
}

/* ===========================
   SECTION COMMON
   =========================== */
.section-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pink-600);
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.highlight {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.15em;
}

/* ===========================
   HERO SECTION — Animated App Style
   =========================== */
.hero {
  font-family: 'Nunito', sans-serif;
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 0 0 40px;
  text-align: left;
}

/* BG DECORATIVO */
.hero .bg-blobs {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero .blob {
  position: absolute;
  border-radius: 50%;
  background: #fce4ee;
}
.hero .blob-1 { width: 340px; height: 340px; top: -120px; right: -80px; opacity: .55; animation: floatBlob 7s ease-in-out infinite; }
.hero .blob-2 { width: 220px; height: 220px; top: 300px; left: -90px; opacity: .4; animation: floatBlob 9s ease-in-out infinite reverse; }
.hero .blob-3 { width: 150px; height: 150px; bottom: 80px; right: -40px; opacity: .35; animation: floatBlob 6s ease-in-out infinite 2s; }
.hero .blob-4 { width: 80px; height: 80px; bottom: 220px; left: 30px; opacity: .3; animation: floatBlob 5s ease-in-out infinite 1s; }

.hero .dots-grid {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(circle, #f9a8cb 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .18;
}

.hero .wave-top {
  position: absolute; top: 0; left: 0; width: 100%;
}

@keyframes floatBlob {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.04); }
}

/* BADGE */
.hero .top-section {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  padding: 44px 24px 0;
  text-align: center;
}

.hero .hero-badge-new {
  display: inline-flex; align-items: center; gap: 7px;
  background: #e91e8c; color: #fff;
  border-radius: 100px; padding: 7px 20px;
  font-size: 11px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase;
  margin-bottom: 24px;
  animation: badgePop .6s cubic-bezier(.34,1.56,.64,1) both;
  box-shadow: 0 4px 20px #e91e8c44;
}

.hero .badge-star { animation: spin 3s linear infinite; display: inline-block; }

@keyframes badgePop {
  from { transform: scale(.5); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}

/* TÍTULO */
.hero .main-title {
  font-size: 36px; font-weight: 900; color: #1a1a2e;
  line-height: 1.1; margin-bottom: 8px;
  animation: slideUpHero .7s .2s both;
}
.hero .main-title .pink { color: #e91e8c; display: block; font-size: 42px; }

.hero .subtitle-text {
  font-size: 14px; color: #aaa; font-weight: 700;
  margin-bottom: 28px;
  animation: slideUpHero .7s .35s both;
}

@keyframes slideUpHero {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* HERO ICON CENTRAL */
.hero .hero-icon-wrap {
  position: relative; width: 160px; height: 160px;
  margin: 0 auto 32px;
  animation: slideUpHero .7s .4s both;
}

.hero .hero-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2.5px dashed #f9a8cb;
  animation: rotateSlow 12s linear infinite;
}
.hero .hero-ring-2 {
  position: absolute; inset: 12px; border-radius: 50%;
  border: 2px solid #fce4ee;
  animation: rotateSlow 8s linear infinite reverse;
}

.hero .hero-center {
  position: absolute; inset: 24px;
  background: linear-gradient(135deg, #fff0f6, #fce4ee);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px #e91e8c22;
}

.hero .orbit-dot {
  position: absolute; width: 14px; height: 14px;
  background: #e91e8c; border-radius: 50%;
  box-shadow: 0 2px 8px #e91e8c66;
}
.hero .orbit-dot:nth-child(1) { top: 4px; left: 50%; transform: translateX(-50%); }
.hero .orbit-dot:nth-child(2) { bottom: 4px; left: 50%; transform: translateX(-50%); }
.hero .orbit-dot:nth-child(3) { left: 4px; top: 50%; transform: translateY(-50%); background: #f9a8cb; width: 10px; height: 10px; }
.hero .orbit-dot:nth-child(4) { right: 4px; top: 50%; transform: translateY(-50%); background: #f9a8cb; width: 10px; height: 10px; }

@keyframes rotateSlow { to { transform: rotate(360deg); } }

/* DIVISOR */
.hero .divider-wrap {
  position: relative; z-index: 2;
  padding: 0 24px;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  animation: slideUpHero .7s .5s both;
}
.hero .div-line { flex: 1; height: 1.5px; background: linear-gradient(90deg, transparent, #f9a8cb, transparent); }
.hero .div-label {
  font-size: 10px; font-weight: 800; letter-spacing: 2px;
  color: #e91e8c; text-transform: uppercase;
}

/* CATEGORIAS */
.hero .cats {
  position: relative; z-index: 2;
  padding: 0 20px;
  display: flex; flex-direction: column; gap: 14px;
}

.hero .cat-item {
  display: flex; align-items: center; gap: 18px;
  padding: 0 4px;
  animation: slideUpHero .6s both;
  cursor: pointer;
}
.hero .cat-item:nth-child(1) { animation-delay: .55s; }
.hero .cat-item:nth-child(2) { animation-delay: .65s; }
.hero .cat-item:nth-child(3) { animation-delay: .75s; }
.hero .cat-item:nth-child(4) { animation-delay: .85s; }
.hero .cat-item:nth-child(5) { animation-delay: .95s; }

.hero .cat-icon-wrap {
  position: relative; flex-shrink: 0;
  width: 72px; height: 72px;
}
.hero .cat-icon-bg {
  width: 72px; height: 72px;
  background: #fff0f6;
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fce4ee;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.hero .cat-item:hover .cat-icon-bg {
  transform: scale(1.08) rotate(-3deg);
  border-color: #e91e8c;
  box-shadow: 0 8px 24px #e91e8c22;
}

.hero .icon-pulse {
  position: absolute; inset: 0; border-radius: 22px;
  background: #e91e8c;
  opacity: 0;
  animation: iconPulse 2.4s ease-in-out infinite;
}
.hero .cat-item:nth-child(2) .icon-pulse { animation-delay: .4s; }
.hero .cat-item:nth-child(3) .icon-pulse { animation-delay: .8s; }
.hero .cat-item:nth-child(4) .icon-pulse { animation-delay: 1.2s; }
.hero .cat-item:nth-child(5) .icon-pulse { animation-delay: 1.6s; }
@keyframes iconPulse {
  0%,100% { transform: scale(1);    opacity: 0; }
  50%      { transform: scale(1.22); opacity: .12; }
}

.hero .cat-text { flex: 1; }
.hero .cat-name {
  font-size: 18px; font-weight: 900; color: #1a1a2e;
  line-height: 1.2; margin-bottom: 3px;
}
.hero .cat-desc {
  font-size: 12.5px; color: #bbb; font-weight: 700;
}
.hero .cat-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff0f6; border: 1.5px solid #fce4ee;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, transform .2s;
}
.hero .cat-item:hover .cat-arrow {
  background: #e91e8c; border-color: #e91e8c; transform: translateX(4px);
}
.hero .cat-item:hover .arrow-svg { stroke: #fff; }

.hero .cat-sep {
  height: 1px; background: #fce4ee; margin: 2px 0 2px 90px;
}

/* CTA */
.hero .cta-wrap {
  position: relative; z-index: 2;
  padding: 32px 20px 0;
  animation: slideUpHero .7s 1.1s both;
}
.hero .cta-btn {
  width: 100%; padding: 18px;
  background: #e91e8c;
  border: none; border-radius: 18px;
  color: #fff; font-family: 'Nunito', sans-serif;
  font-size: 16px; font-weight: 900; letter-spacing: .5px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 8px 28px #e91e8c44;
  transition: transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
  text-decoration: none;
}
.hero .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px #e91e8c55; }
.hero .cta-btn::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  animation: shimmerHero 2.5s ease-in-out infinite;
}
@keyframes shimmerHero { to { left: 160%; } }

.hero .cta-sub {
  text-align: center; margin-top: 14px;
  font-size: 12px; font-weight: 700; color: #ccc;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.hero .cta-dot { width: 6px; height: 6px; background: #f9a8cb; border-radius: 50%; }

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--pink-100);
  color: var(--pink-700);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: fadeInDown 0.6s ease;
}

/* ===========================
   FUTURISTIC REDESIGN (Hero)
   =========================== */
.futuristic-badge {
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(236, 72, 153, 0.4);
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.2);
  color: var(--pink-600);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease;
}
.pulse-dot {
  width: 10px; height: 10px;
  background: var(--pink-500);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--pink-500);
  animation: pulse-dot-anim 1.5s infinite;
}
@keyframes pulse-dot-anim {
  0% { transform: scale(0.9); opacity: 0.8; box-shadow: 0 0 0 0 rgba(236,72,153,0.5); }
  70% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 10px rgba(236,72,153,0); }
  100% { transform: scale(0.9); opacity: 0.8; box-shadow: 0 0 0 0 rgba(236,72,153,0); }
}

.futuristic-title {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(3rem, 9vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 30px;
  line-height: 1;
  animation: fadeInUp 0.6s ease 0.1s both;
  position: relative;
  z-index: 2;
}

.text-glow {
  background: linear-gradient(to right, #db2777, #8b5cf6, #ec4899, #db2777);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine 4s linear infinite;
  display: inline-block;
  text-shadow: 0px 4px 15px rgba(236, 72, 153, 0.25);
  font-weight: 900;
}

@keyframes shine {
  to { background-position: 200% center; }
}

.futuristic-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.6s ease 0.15s both;
}

.futuristic-pill {
  display: flex !important;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1.5px solid rgba(236, 72, 153, 0.25);
  border-radius: 14px !important;
  padding: 8px 20px 8px 10px !important;
  color: var(--gray-800) !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05), inset 0 2px 5px rgba(255,255,255,0.8) !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  position: relative;
  overflow: hidden;
  animation: float 5s ease-in-out infinite;
}

.futuristic-pill:nth-child(even) {
  animation-delay: 1.5s;
}

.futuristic-pill:nth-child(odd) {
  animation-delay: 0.5s;
}

.futuristic-pill::before {
  content: '';
  position: absolute;
  top: 0; left: -150%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(236, 72, 153, 0.3), transparent);
  transform: skewX(-20deg);
  animation: sweep 3s infinite;
}

@keyframes sweep {
  0% { left: -150%; }
  30% { left: 200%; }
  100% { left: 200%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.futuristic-pill:hover {
  transform: translateY(-5px) scale(1.03) !important;
  border-color: rgba(236, 72, 153, 0.8);
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.25) !important;
  background: #fff !important;
}

.pill-icon {
  background: var(--gradient-pink);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.15rem;
  box-shadow: 0 4px 10px rgba(236,72,153,0.4);
  flex-shrink: 0;
  z-index: 1;
}

.futuristic-pill span:not(.pill-icon) {
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  z-index: 1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--gray-600);
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.2s both;
}

/* HERO MOCKUP */
.hero-mockup {
  max-width: 380px; /* Reduced to fit vertical nicely on desktop without jumping huge */
  width: 100%;
  margin: 0 auto 36px;
  animation: fadeInUp 0.7s ease 0.25s both, floatY 4s ease-in-out 1s infinite;
  position: relative;
}

.hero-mockup::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius-xl) + 8px);
  background: var(--gradient-pink);
  opacity: 0.12;
  filter: blur(20px);
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}

.hero-mockup img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 48px rgba(219, 39, 119, 0.28), 0 2px 8px rgba(0,0,0,0.08);
  border: 4px solid var(--white);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
}

.hero-mockup img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(219, 39, 119, 0.38);
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.12; }
  50% { opacity: 0.22; }
}

.hero-delivery {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1.5px solid var(--pink-100);
  padding: 8px 18px 8px 8px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  text-align: left;
}

.delivery-badge:hover {
  border-color: var(--pink-300);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.15);
  transform: translateY(-3px);
}

.badge-icon-bg {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 -2px 5px rgba(0,0,0,0.1);
}

.badge-whatsapp .badge-icon-bg {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.badge-email .badge-icon-bg {
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-text span {
  font-size: 0.72rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  line-height: 1.2;
}

.badge-text strong {
  font-size: 1rem;
  color: var(--gray-900);
  font-weight: 800;
  line-height: 1.2;
}

.hero-cta {
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-micro {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 12px;
  animation: fadeInUp 0.6s ease 0.5s both;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-pink);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.45);
}

.btn-cta:active {
  transform: translateY(-1px);
}

/* ===========================
   PRODUCT DEMO
   =========================== */
.product-demo {
  padding: 80px 0 60px;
  background: var(--white);
}

/* ===========================
   INFINITE CAROUSELS (MARQUEE)
   =========================== */
.carousel-wrapper {
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.carousel-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
}

.carousel-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--white) 0%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.track-left {
  animation: scrollLeft 8s linear infinite;
}

.track-right {
  animation: scrollRight 8s linear infinite;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-slide {
  flex-shrink: 0;
}

.carousel-img-placeholder {
  width: 200px;
  height: 260px;
  border-radius: var(--radius-lg);
  background: var(--gradient-subtle);
  border: 2px dashed var(--pink-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow: hidden;
}

.carousel-photo {
  width: 200px;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(219, 39, 119, 0.12);
  display: block;
  border: 2px solid var(--pink-100);
}

.carousel-img-placeholder:hover {
  border-color: var(--pink-400);
  background: var(--pink-50);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}

.carousel-img-placeholder span {
  font-size: 3.5rem;
}

/* ===========================
   CATEGORIES
   =========================== */
.categories-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 40px 0 36px;
}

.category-tag {
  background: var(--white);
  border: 2px solid var(--pink-200);
  color: var(--pink-700);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: default;
}

.category-tag:hover {
  background: var(--pink-50);
  border-color: var(--pink-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===========================
   PRODUCT DETAILS (Compact)
   =========================== */
.product-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.product-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--pink-100);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: all 0.3s ease;
}

.product-detail-item:hover {
  border-color: var(--pink-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.detail-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.product-detail-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--gray-800);
  margin-bottom: 1px;
}

.product-detail-item p {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin: 0;
}

/* ===========================
   BENEFITS (Compact Checklist)
   =========================== */
.benefits {
  padding: 60px 0;
  background: var(--gradient-subtle);
  position: relative;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-200), transparent);
}

.benefits-list {
  max-width: 640px;
  margin: 36px auto 0;
  background: var(--white);
  border: 2px solid var(--pink-200); position: relative;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(236, 72, 153, 0.15), inset 0 0 10px rgba(255, 255, 255, 0.5); padding: 32px; background: rgba(255,255,255,0.85); backdrop-filter: blur(10px);
  overflow: hidden;
}

.benefit-row {
  margin-bottom: 16px;
  background: rgba(253, 242, 248, 0.5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(252, 165, 165, 0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  transition: background 0.2s ease;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.5;
  /* border removed */
}

.benefit-row:last-child { margin-bottom: 0; }

.benefit-row:hover {
  background: var(--pink-50);
}

.benefit-check {
  font-size: 1.05rem;
  flex-shrink: 0;
  line-height: 1;
}

.benefit-row strong {
  color: var(--gray-900);
}

/* ===========================
   QUANTITY HIGHLIGHT
   =========================== */
.quantity-highlight {
  padding: 60px 0;
  background: var(--white);
}

.quantity-content {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--gradient-pink);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.quantity-content::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.quantity-number {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.quantity-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.quantity-text p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 16px;
}

.quantity-delivery {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.quantity-delivery span {
  background: rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

/* ===========================
   O QUE VOCÊ VAI RECEBER (Animated Section)
   =========================== */
.receives-section {
  padding: 80px 0;
  background: var(--pink-50);
  position: relative;
  overflow: hidden;
}

.receives-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-200), transparent);
}

.receives-grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 48px;
}

/* Each card: mockup left, info right (alternating) */
.receive-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  box-shadow: 0 4px 32px rgba(236, 72, 153, 0.08);
  border: 1.5px solid var(--pink-100);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  /* overflow: hidden removed */
}

.receive-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  background: var(--gradient-pink);
}

.receive-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(236, 72, 153, 0.18);
}

/* Alternate: even cards flip layout */
.receive-card:nth-child(even) {
  direction: rtl;
}
.receive-card:nth-child(even) > * {
  direction: ltr;
}

/* ---- RECEIVE MOCKUP CONTAINER ---- */
.receive-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

/* Floating spider */
.floating-spider {
  position: absolute;
  top: -8px;
  right: 20px;
  font-size: 2rem;
  animation: floatSpider 3s ease-in-out infinite;
  z-index: 10;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.floating-spider.sp2 {
  right: auto;
  left: 20px;
  top: -14px;
  animation-delay: -1.2s;
}

@keyframes floatSpider {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-12px) rotate(8deg); }
}

.floating-star {
  position: absolute;
  font-size: 1.4rem;
  animation: floatStars 4s ease-in-out infinite;
  z-index: 10;
}
.star-1 { bottom: 20px; left: 10px; animation-delay: 0s; }
.star-2 { bottom: 60px; right: 10px; font-size: 1rem; animation-delay: -1.5s; }
.star-3 { bottom: 10px; right: 14px; animation-delay: -0.7s; }
.star-4 { top: 10px; left: 10px; animation-delay: -2s; }

@keyframes floatStars {
  0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
  50% { transform: translateY(-8px) scale(1.2); opacity: 0.8; }
}

/* ===========================
   PHONE FRAME (Cards 1 & 2)
   =========================== */
.phone-frame {
  width: 220px;
  background: #fff;
  border-radius: 28px;
  padding: 12px;
  box-shadow:
    0 0 0 2px var(--pink-200),
    0 12px 40px rgba(236, 72, 153, 0.2),
    0 4px 12px rgba(0,0,0,0.08);
  animation: floatPhone 5s ease-in-out infinite;
  position: relative;
}

.dark-frame {
  background: #1a1a2e;
  box-shadow:
    0 0 0 2px #ec4899,
    0 12px 40px rgba(236, 72, 153, 0.3),
    0 4px 12px rgba(0,0,0,0.25);
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.phone-screen {
  background: var(--pink-50);
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.dark-screen {
  background: #16213e;
}

/* ===========================
   PDF MOCKUP STYLES (Card 1)
   =========================== */
.pdf-topbar {
  background: var(--white);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  /* border removed */
}

.pdf-dots {
  display: flex;
  gap: 4px;
}
.pdf-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink-300);
  display: block;
}
.pdf-dots span:first-child { background: #ff5f57; }
.pdf-dots span:nth-child(2) { background: #febc2e; }
.pdf-dots span:last-child { background: #28c840; }

.pdf-title-bar {
  font-size: 0.52rem;
  color: var(--gray-500);
  flex: 1;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pdf-badge {
  background: var(--gradient-pink);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.4); }
  50% { box-shadow: 0 0 0 4px rgba(236, 72, 153, 0); }
}

.pdf-body {
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pdf-page-num {
  font-size: 0.5rem;
  color: var(--gray-400);
  text-align: right;
}

.pdf-content-img {
  height: 100px;
  background: #fff;
  border-radius: 8px;
  border: 1.5px solid var(--pink-200);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- PEÇAS DE MOLDE DE FANTASIA (PDF) ---- */
/* Torso: trapézio — peça principal da fantasia */
.pdf-piece-torso {
  position: absolute;
  left: 14px;
  top: 12px;
  width: 42px;
  height: 50px;
  background: transparent;
  border: 2px dashed var(--pink-500);
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
  animation: pieceFloat 4s ease-in-out infinite;
}
.pdf-piece-torso::after {
  content: 'frente';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.28rem;
  color: var(--pink-500);
  font-weight: 700;
  white-space: nowrap;
}

/* Manga: paralelogramo inclinado */
.pdf-piece-sleeve {
  position: absolute;
  left: 68px;
  top: 8px;
  width: 28px;
  height: 42px;
  background: transparent;
  border: 2px dashed #f472b6;
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  animation: pieceFloat 5s ease-in-out infinite;
  animation-delay: -1s;
}
.pdf-piece-sleeve::after {
  content: 'manga';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.26rem;
  color: #f472b6;
  font-weight: 700;
  white-space: nowrap;
}

/* Máscara: oval com recortes */
.pdf-piece-mask {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 34px;
  height: 38px;
  background: transparent;
  border: 2px dashed var(--pink-400);
  border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;
  animation: pieceFloat 3.5s ease-in-out infinite;
  animation-delay: -2s;
}
.pdf-piece-mask::before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 4px;
  width: 10px;
  height: 7px;
  border: 1.5px dashed var(--pink-400);
  border-radius: 50%;
}
.pdf-piece-mask::after {
  content: 'máscara';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.26rem;
  color: var(--pink-400);
  font-weight: 700;
  white-space: nowrap;
}

/* Linhas de margem de costura */
.pdf-seam-line {
  position: absolute;
  background: rgba(236, 72, 153, 0.15);
  border-radius: 1px;
}
.pdf-seam-line.sl1 {
  left: 10px; bottom: 12px;
  width: 55px; height: 1px;
  border-top: 1px dotted rgba(236,72,153,0.4);
  background: transparent;
}
.pdf-seam-line.sl2 {
  right: 8px; bottom: 12px;
  width: 36px; height: 1px;
  border-top: 1px dotted rgba(236,72,153,0.4);
  background: transparent;
}

/* Cruz de alinhamento */
.pdf-seam-cross {
  position: absolute;
  font-size: 0.45rem;
  color: rgba(236,72,153,0.6);
  font-weight: 900;
  line-height: 1;
}
.pdf-seam-cross.sc1 { left: 18px; top: 6px; }
.pdf-seam-cross.sc2 { right: 18px; bottom: 8px; }

@keyframes pieceFloat {
  0%, 100% { transform: translateY(0px); opacity: 1; }
  50% { transform: translateY(-4px); opacity: 0.85; }
}

/* Tags de tamanho */
.pdf-size-tags {
  display: flex;
  gap: 4px;
  justify-content: center;
}
.sz-tag {
  font-size: 0.45rem;
  font-weight: 800;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--gray-200);
}
.sz-tag.active-sz {
  color: var(--pink-600);
  background: var(--pink-100);
  border-color: var(--pink-300);
  animation: badgePulse 2s ease-in-out infinite;
}

.pdf-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pdf-line {
  height: 6px;
  background: var(--pink-100);
  border-radius: 4px;
  animation: lineGrow 2.5s ease-in-out infinite;
}
.pdf-line.line-full { width: 100%; animation-delay: 0s; }
.pdf-line.line-half { width: 60%; animation-delay: 0.3s; }
.pdf-line.line-3q { width: 80%; animation-delay: 0.6s; }

@keyframes lineGrow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.pdf-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--gradient-pink);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 20px;
  margin-top: 2px;
  cursor: pointer;
  animation: downloadPop 3s ease-in-out infinite;
}

@keyframes downloadPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4); }
}

/* ===========================
   PASSO A PASSO MOCKUP (Card 2)
   =========================== */
.step-topbar {
  padding: 10px 12px;
  background: var(--gradient-pink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.step-icon { font-size: 1rem; }

.step-list {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 0.62rem;
  font-weight: 600;
  color: #ccc;
  background: rgba(255,255,255,0.05);
  animation: stepAppear 0.5s ease var(--delay, 0s) both;
}

@keyframes stepAppear {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

.step-item.step-done { color: #34d399; background: rgba(52, 211, 153, 0.08); }
.step-item.step-active {
  color: #fff;
  background: var(--gradient-pink);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.5);
  animation: stepAppear 0.5s ease var(--delay, 0s) both, stepPulse 2s ease-in-out 1s infinite;
}
.step-item.step-pending { color: #555; }

@keyframes stepPulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4); }
  50% { box-shadow: 0 6px 20px rgba(236, 72, 153, 0.7); }
}

.step-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}
.step-check.done {
  background: #34d399;
  color: #fff;
  font-weight: 900;
  animation: checkBounce 0.4s ease var(--delay, 0s) both;
}
@keyframes checkBounce {
  0% { transform: scale(0); }
  60% { transform: scale(1.3); }
  100% { transform: scale(1); }
}
.step-check.active {
  background: rgba(255,255,255,0.3);
  border: 2px solid #fff;
  animation: activePing 1.5s ease-in-out infinite;
}
@keyframes activePing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  50% { box-shadow: 0 0 0 4px rgba(255,255,255,0); }
}
.step-check.pending {
  border: 2px solid #444;
  background: transparent;
}

.step-progress-bar {
  margin: 0 10px 10px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.step-progress-fill {
  height: 100%;
  width: 72%;
  background: var(--gradient-pink);
  border-radius: 4px;
  animation: progressGrow 3s ease-in-out infinite alternate;
}
@keyframes progressGrow {
  from { width: 65%; }
  to { width: 78%; }
}

/* ===========================
   VIDEO PLAYER MOCKUP (Card 3)
   =========================== */
.video-player-frame {
  width: 280px;
  background: #1a1a2e;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 2.5px #ec4899,
    0 16px 48px rgba(236, 72, 153, 0.3),
    0 4px 16px rgba(0,0,0,0.3);
  animation: floatPhone 5s ease-in-out infinite;
  animation-delay: -2s;
}

.video-screen {
  background: linear-gradient(160deg, #0f0f23 0%, #1a0a2e 100%);
  position: relative;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-hd-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #3b82f6;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: 1px;
  z-index: 5;
}

/* ---- PEÇAS DE MOLDE FLUTUANDO NO BG DO VÍDEO ---- */
.video-pattern-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Cada vp-piece é uma peça de molde de fantasia flutuando */
.vp-piece {
  position: absolute;
  border: 2px dashed rgba(236, 72, 153, 0.5);
  opacity: 0;
  animation: vpFloat 6s ease-in-out infinite;
}

/* Torso da fantasia — trapézio */
.vp-torso {
  width: 44px;
  height: 52px;
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
  left: 12px; top: 14px;
  border-color: rgba(236, 72, 153, 0.6);
  animation-delay: 0s;
  animation-duration: 2s;
  background: rgba(236, 72, 153, 0.08);
}

/* Capa — triângulo arredondado */
.vp-cape {
  width: 38px;
  height: 50px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  right: 14px; top: 8px;
  border-color: rgba(244, 114, 182, 0.6);
  animation-delay: -2s;
  animation-duration: 3s;
  background: rgba(244, 114, 182, 0.07);
}

/* Máscara — oval */
.vp-mask {
  width: 30px;
  height: 34px;
  border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%;
  right: 30px; bottom: 32px;
  border-color: rgba(190, 24, 93, 0.55);
  animation-delay: -1s;
  animation-duration: 6.5s;
  background: rgba(190, 24, 93, 0.06);
}

/* Manga — paralelogramo */
.vp-sleeve {
  width: 22px;
  height: 36px;
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  left: 36px; bottom: 30px;
  border-color: rgba(249, 168, 212, 0.7);
  animation-delay: -3s;
  animation-duration: 5.5s;
  background: rgba(249, 168, 212, 0.08);
}

@keyframes vpFloat {
  0% { opacity: 0; transform: translateY(8px) rotate(-5deg); }
  20% { opacity: 1; }
  80% { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-8px) rotate(5deg); }
}

.play-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 3px solid rgba(236, 72, 153, 0.4);
  border-radius: 50%;
  animation: ringPulse 2s ease-in-out infinite;
  z-index: 3;
}

@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

.play-btn-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: rgba(236, 72, 153, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  z-index: 5;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.6);
  animation: playBtnGlow 2s ease-in-out infinite;
  padding-left: 4px;
}

@keyframes playBtnGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(236, 72, 153, 0.5), 0 0 40px rgba(236, 72, 153, 0.2); }
  50% { box-shadow: 0 0 30px rgba(236, 72, 153, 0.8), 0 0 60px rgba(236, 72, 153, 0.4); }
}

.play-btn-center:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-time-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 4px 8px 6px;
}

.time-progress {
  position: relative;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  margin-bottom: 4px;
}
.time-fill {
  height: 100%;
  width: 40%;
  background: var(--gradient-pink);
  border-radius: 3px;
  animation: videoProgress 8s linear infinite;
}
@keyframes videoProgress {
  0% { width: 30%; }
  100% { width: 55%; }
}
.time-dot {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  background: var(--pink-400);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--pink-500);
  animation: videoProgress 8s linear infinite;
}

.time-stamps {
  display: flex;
  justify-content: space-between;
  font-size: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.video-playlist {
  background: #fff;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.playlist-active {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: var(--pink-50);
  border-radius: 8px;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--pink-700);
  border-left: 3px solid var(--pink-500);
}

.playlist-play-icon {
  color: var(--pink-500);
  font-size: 0.65rem;
}

.playlist-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.58rem;
  color: var(--gray-500);
  transition: background 0.2s ease;
}

.playlist-item:hover { background: var(--pink-50); color: var(--gray-700); }
.playlist-num { font-size: 0.65rem; }
.pl-num { font-weight: 700; color: var(--gray-400); min-width: 14px; }

/* ===========================
   RECEIVE INFO (Text Side)
   =========================== */
.receive-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.receive-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-100);
  color: var(--pink-700);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  width: fit-content;
}

.receive-info h3 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
}

.receive-info p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.receive-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.receive-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-700);
  font-weight: 500;
}

.rcheck { font-size: 1rem; flex-shrink: 0; }

/* ===========================
   RESPONSIVE - RECEIVES
   =========================== */
@media (max-width: 768px) {
  .receive-card {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 32px;
  }
  .receive-card:nth-child(even) {
    direction: ltr;
  }
  .receive-mockup {
    min-height: 260px;
  }
  .phone-frame { width: 190px; }
  .video-player-frame { width: 240px; }
}

/* ===========================
   GALLERY / SHOWCASE SECTION
   =========================== */
.gallery-section {
  padding: 80px 0 60px;
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-200), transparent);
}

/* ---- MARQUEE ROWS ---- */
.gallery-marquee-wrap {
  overflow: hidden;
  padding: 8px 0;
  position: relative;
  margin: 6px 0;
}

.gallery-marquee-wrap::before,
.gallery-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.gallery-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
}
.gallery-marquee-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--white) 0%, transparent 100%);
}

.gallery-marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
}

.gmt-left  { animation: scrollLeft 8s linear infinite; }
.gmt-right { animation: scrollRight 8s linear infinite; }

.gallery-marquee-track:hover { animation-play-state: paused; }

.gm-item { flex-shrink: 0; }

.gm-img-slot {
  width: 180px;
  height: 220px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--pink-100);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gm-img-slot:hover {
  border-color: var(--pink-400);
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 12px 36px rgba(236, 72, 153, 0.2);
}

.gm-img-slot span {
  font-size: 3.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.gm-img-slot:hover span {
  transform: scale(1.15);
}

/* When you add a real image, use: <img src="…" class="gm-real-img"> */
.gm-real-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.gm-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--pink-700);
  background: rgba(255,255,255,0.85);
  padding: 3px 10px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 2;
}

/* ---- BENTO GRID ---- */
.gallery-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 200px;
  gap: 12px;
  margin-top: 48px;
}

.bento-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 2px solid var(--pink-100);
  transition: all 0.35s ease;
}

.bento-item:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(236, 72, 153, 0.2);
  border-color: var(--pink-300);
  z-index: 2;
}

.bento-large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.bento-tall {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-wide {
  grid-column: 3 / 5;
  grid-row: 2;
}

.bento-sq {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-img {
  width: 100%;
  height: 100%;
  background: var(--gradient-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform 0.4s ease;
}

.bento-item:hover .bento-img {
  transform: scale(1.06);
}

/* Real image inside bento — add <img> inside .bento-item directly */
.bento-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.bento-item:hover > img {
  transform: scale(1.06);
}

.bento-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(190, 24, 93, 0.7));
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-item:hover .bento-overlay {
  opacity: 1;
}

.bento-cat {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.85;
}

.bento-overlay p {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
}

/* Gallery note */
.gallery-note {
  margin-top: 20px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--gray-400);
  background: var(--pink-50);
  border: 1.5px dashed var(--pink-200);
  border-radius: var(--radius-md);
  padding: 12px 24px;
}

.gallery-note strong { color: var(--pink-600); }

/* ---- GALLERY RESPONSIVE ---- */
@media (max-width: 900px) {
  .gallery-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 200px);
  }
  .bento-large,
  .bento-tall,
  .bento-wide,
  .bento-sq {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .gm-img-slot {
    width: 150px;
    height: 185px;
  }
  .gm-img-slot span { font-size: 2.8rem; }
}

@media (max-width: 480px) {
  .gm-img-slot {
    width: 126px;
    height: 158px;
  }
  .gm-img-slot span { font-size: 2.2rem; }

  .gallery-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 160px);
  }
  .bento-large,
  .bento-tall,
  .bento-wide,
  .bento-sq {
    grid-column: auto;
    grid-row: auto;
  }
}

/* ===========================
   MID CTA
   =========================== */

.mid-cta {
  padding: 60px 0;
  background: var(--white);
  text-align: center;
}

.mid-cta h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.mid-cta p {
  font-size: 1.05rem;
  color: var(--gray-500);
  margin-bottom: 28px;
}

/* ===========================
   BONUSES
   =========================== */
.bonuses {
  padding: 80px 0;
  background: var(--gradient-subtle);
  overflow: hidden;
  position: relative;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.bonus-card {
  background: var(--white);
  border: 2px solid var(--pink-100);
  border-radius: var(--radius-lg);
  padding: 24px 20px 20px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;

}



@keyframes bonusFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.bonus-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(236, 72, 153, 0.22);
  border-color: var(--pink-400);
  animation-play-state: paused;
}

/* Featured middle bonus */
.bonus-card--featured {
  border-color: var(--pink-300);
  box-shadow: 0 8px 32px rgba(236, 72, 153, 0.15);
}
.bonus-card--featured::before {
  content: '⭐ MAIS POPULAR';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-pink);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 4px 20px;
  border-radius: 0 0 12px 12px;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

/* Glow orb behind image */
.bonus-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(236,72,153,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite;
}

.bonus-number {
  display: inline-block;
  background: var(--gradient-pink);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

/* Value badge */
.bonus-value-badge {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.bonus-value-badge strong {
  color: var(--pink-600);
  font-size: 1rem;
  font-weight: 800;
}

.bonus-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 auto 15px auto;
  max-width: 200px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--pink-100);
  transition: box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.bonus-card:hover .bonus-img-wrap {
  box-shadow: 0 12px 40px rgba(236, 72, 153, 0.25);
}

.bonus-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.bonus-card:hover .bonus-img-wrap img {
  transform: scale(1.08);
}

.bonus-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 8px;
  line-height: 1.35;
}

.bonus-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 12px;
}

/* Tag pills below description */
.bonus-tag-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4px;
}
.bonus-tag-item {
  background: var(--pink-50);
  color: var(--pink-700);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--pink-200);
}

/* === BONUS TOTAL VALUE BAR === */
.bonus-total-bar {
  margin-top: 48px;
  background: var(--white);
  border: 2px solid var(--pink-300);
  border-radius: var(--radius-xl);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 8px 32px rgba(236, 72, 153, 0.12);
  position: relative;
  overflow: hidden;
}
.bonus-total-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(253,242,248,0.6) 0%, transparent 60%);
  pointer-events: none;
}
.bonus-total-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.bonus-total-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-700);
}
.bonus-total-strikethrough {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gray-300);
  text-decoration: line-through;
}
.bonus-total-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.bonus-total-free {
  font-size: 1rem;
  font-weight: 800;
  color: var(--pink-600);
  background: var(--pink-50);
  border: 1.5px solid var(--pink-200);
  padding: 8px 20px;
  border-radius: 50px;
  white-space: nowrap;
}
.bonus-cta {
  font-size: 0.9rem;
  padding: 14px 28px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .bonus-total-bar {
    flex-direction: column;
    padding: 24px 20px;
    text-align: center;
  }
  .bonus-total-left { align-items: center; }
  .bonus-total-right {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
  .bonus-cta { width: 100%; justify-content: center; }
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  padding: 80px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--pink-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}

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

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card > p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--gray-800);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ===========================
   PRICING
   =========================== */
.pricing {
  padding: 80px 0 100px;
  background: var(--gradient-subtle);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.basic {
  background: var(--white);
  border: 2px solid var(--gray-200);
}

.pricing-card.basic:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-md);
}

.pricing-card.complete {
  background: var(--white);
  border: 3px solid var(--pink-400);
  box-shadow: var(--shadow-xl);
  transform: scale(1.03);
}

.pricing-card.complete:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(236, 72, 153, 0.25);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-pink);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 24px;
  border-radius: 50px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.plan-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}

.plan-price .currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-600);
}

.plan-price .amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1;
}

.plan-price .period {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-600);
}

.complete .plan-price .amount {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-savings {
  font-size: 0.85rem;
  color: var(--pink-600);
  font-weight: 600;
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  margin: 20px 0 28px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--gray-100);
}



.plan-features li svg {
  flex-shrink: 0;
}

.plan-features li.included {
  color: var(--gray-700);
  font-weight: 500;
}

.plan-features li.not-included {
  color: var(--gray-400);
}

.plan-features li.not-included s {
  text-decoration: line-through;
}

.plan-features li.bonus-item {
  font-weight: 600;
  color: var(--pink-700);
}

.btn-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.basic-btn {
  background: var(--white);
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
}

.basic-btn:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
}

.complete-btn {
  background: var(--gradient-pink);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.35);
}

.complete-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.45);
}

.plan-micro {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 12px;
}

/* ===========================
   FINAL CTA
   =========================== */
.final-cta {
  padding: 80px 0;
  background: var(--gradient-pink);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.final-cta h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.final-cta > .container > p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 550px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

.final-delivery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.final-delivery span {
  background: rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.final-cta .btn-cta {
  background: var(--white);
  color: var(--pink-700);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}

.final-cta .btn-cta:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 32px 0;
  background: var(--gray-900);
  color: var(--gray-400);
  text-align: center;
  font-size: 0.85rem;
}

.footer-small {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 8px;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE - RECEIVES (already declared inline)
   =========================== */

/* ===========================
   GLOBAL MOBILE OVERFLOW GUARD
   =========================== */
/* Prevent any element from causing horizontal overflow */
img, video, iframe, embed, object, section, article, div, p, h1, h2, h3, h4, h5, h6 {
  max-width: 100%;
}

/* ===========================
   RESPONSIVE — 768px (Tablets & large phones)
   =========================== */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  .container {
    padding: 0 16px;
  }

  /* HERO */
  .hero {
    padding: 36px 0 30px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 2.8rem);
    line-height: 1.1;
  }

  .hero-title .highlight {
    font-size: clamp(1rem, 4vw, 1.3rem);
    margin-top: 4px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-mockup {
    max-width: 88%;
  }

  .hero-delivery {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .delivery-badge {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

  /* QUANTITY */
  .quantity-content {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
    gap: 16px;
  }

  .quantity-number {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .quantity-delivery {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* CAROUSELS */
  .carousel-img-placeholder {
    width: 140px;
    height: 185px;
  }

  /* CATEGORIES */
  .categories-row {
    gap: 8px;
  }

  .category-tag {
    font-size: 0.78rem;
    padding: 7px 14px;
  }

  /* PRODUCT DETAILS */
  .product-details-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* BENEFITS */
  .benefits-list {
    margin-top: 24px;
  }

  .benefit-row {
    padding: 11px 14px;
    font-size: 0.86rem;
    gap: 10px;
  }

  /* RECEIVE CARDS */
  .receive-card {
    grid-template-columns: 1fr;
    padding: 24px 18px;
    gap: 28px;
  }

  .receive-card:nth-child(even) {
    direction: ltr;
  }

  .receive-mockup {
    min-height: 220px;
    width: 100%;
    /* overflow: hidden; removed to show floating icons */
  }

  /* Scale down phone/video frames so they don't overflow */
  .phone-frame {
    width: min(180px, 70vw);
  }

  .video-player-frame {
    width: min(240px, 80vw);
  }

  .phone-screen {
    min-height: 230px;
  }

  /* BONUSES */
  .bonuses-grid {
    grid-template-columns: 1fr;
  }

  .bonus-card {
    animation: none; /* disable float on mobile to avoid jitter */
  }

  .bonus-total-bar {
    flex-direction: column;
    padding: 22px 18px;
    text-align: center;
    gap: 16px;
  }

  .bonus-total-left { align-items: center; }
  .bonus-total-right {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
  .bonus-cta { width: 100%; justify-content: center; }

  /* TESTIMONIALS */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* PRICING */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card.complete {
    transform: scale(1);
    order: -1;
  }

  .pricing-card.complete:hover {
    transform: scale(1.01);
  }

  /* BUTTONS */
  .btn-cta {
    padding: 14px 24px;
    font-size: 0.88rem;
    width: 100%;
    justify-content: center;
  }

  /* FINAL CTA */
  .final-delivery {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* SECTIONS */
  .section-title {
    font-size: clamp(1.35rem, 5vw, 1.9rem);
  }

  .section-subtitle {
    font-size: 0.92rem;
  }
}

/* ===========================
   RESPONSIVE — 480px (Small phones)
   =========================== */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  /* HERO */
  .hero-title {
    font-size: clamp(2rem, 9vw, 2.4rem);
    line-height: 1.1;
  }

  .hero-title .highlight {
    font-size: 1.15rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  /* SECTION TITLES */
  .section-title {
    font-size: clamp(1.2rem, 6vw, 1.7rem);
  }

  /* QUANTITY */
  .quantity-number {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .quantity-content {
    padding: 28px 14px;
  }

  /* PRICING */
  .plan-price .amount {
    font-size: 2.6rem;
  }

  /* PRODUCT DETAILS */
  .product-details-grid {
    grid-template-columns: 1fr;
  }

  /* CAROUSELS */
  .carousel-img-placeholder {
    width: 120px;
    height: 158px;
  }

  /* PHONE/VIDEO frames */
  .phone-frame {
    width: min(160px, 65vw);
  }

  .video-player-frame {
    width: min(210px, 78vw);
  }

  .receive-card {
    padding: 20px 14px;
  }

  /* RECEIVE MOCKUP */
  .receive-mockup {
    min-height: 200px;
  }

  /* BUTTONs */
  .btn-cta {
    padding: 13px 20px;
    font-size: 0.85rem;
  }

  /* BENEFITS */
  .benefit-row {
    font-size: 0.82rem;
    padding: 10px 12px;
  }

  /* BONUS */
  .bonus-total-bar {
    padding: 18px 14px;
  }

  .bonus-total-strikethrough {
    font-size: 1.2rem;
  }
}

/* ===========================
   RESPONSIVE — 360px (Very small phones)
   =========================== */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-title .highlight {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.1rem;
  }

  .quantity-number {
    font-size: 2.5rem;
  }

  .phone-frame {
    width: 140px;
  }

  .video-player-frame {
    width: 190px;
  }

  .container {
    padding: 0 12px;
  }
}

/* ===========================
   TESTIMONIALS IMAGE GRID
   =========================== */
.testimonials-image-grid {
  column-count: 4;
  column-gap: 16px;
  width: 100%;
  margin-top: 40px;
}

.testimonials-image-grid img {
  width: 100%;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 4px solid var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  break-inside: avoid;
}

.testimonials-image-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.2);
  position: relative;
  z-index: 2;
}

@media (max-width: 1100px) {
  .testimonials-image-grid { column-count: 3; }
}
@media (max-width: 768px) {
  .testimonials-image-grid { column-count: 2; }
}
@media (max-width: 480px) {
  .testimonials-image-grid { column-count: 1; }
}

.benefit-icon-wrapper {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-50);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(236, 72, 153, 0.15);
  margin-right: 12px;
}
.benefit-icon-wrapper svg {
  width: 18px;
  height: 18px;
}


/* ===========================
   DOWNSELL MODAL
   =========================== */
.downsell-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  z-index: 99999; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s; padding: 16px;
}
.downsell-overlay.active { opacity: 1; pointer-events: auto; }

.downsell-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 440px; width: 100%;
  padding: 30px; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: translateY(20px) scale(0.95); transition: all 0.3s ease;
  max-height: 95vh; overflow-y: auto;
}
.downsell-overlay.active .downsell-modal { transform: translateY(0) scale(1); }

.downsell-close {
  position: absolute; right: 16px; top: 16px;
  background: #f1f5f9; border: none; font-size: 1.5rem;
  width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: #64748b; transition: 0.2s; z-index: 10;
}
.downsell-close:hover { background: #e2e8f0; color: #0f172a; }

.downsell-badge {
  background: var(--pink-600); color: white;
  text-align: center; font-size: 0.65rem; font-weight: 800;
  padding: 8px 16px; border-radius: 30px;
  display: inline-block; margin: 0 auto 20px;
  text-transform: uppercase; letter-spacing: 1px;
}
.downsell-header { text-align: center; }
.downsell-title { font-size: 1.5rem; font-weight: 900; line-height: 1.2; margin-bottom: 12px; color: #0f172a; }
.downsell-subtitle { font-size: 0.9rem; color: #475569; margin-bottom: 24px; }

.downsell-price-box {
  background: var(--pink-50); border: 1.5px solid var(--pink-200);
  border-radius: var(--radius-lg); padding: 16px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; text-align: center; position: relative;
}
.price-normal span, .price-exclusive span { display: block; font-size: 0.65rem; font-weight: 800; color: #64748b; text-transform: uppercase; margin-bottom: 4px; }
.price-normal s { font-size: 1.4rem; font-weight: 700; color: #94a3b8; }
.price-arrow { color: var(--pink-400); font-size: 1.5rem; margin: 0 10px; }
.new-price { font-size: 2.2rem; color: var(--pink-600); line-height: 1; display: block; }
.new-price span { font-size: 1.2rem; }
.price-saving { background: #10b981; color: white; font-size: 0.65rem; font-weight: 800; padding: 4px 10px; border-radius: 20px; display: inline-block; margin-top: 6px; box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3); }

.downsell-features { margin-bottom: 24px; }
.df-title { font-weight: 800; font-size: 0.9rem; color: #1e293b; margin-bottom: 12px; text-align: center;}
.downsell-features ul { list-style: none; padding: 0; margin: 0; }
.downsell-features li { font-size: 0.82rem; color: #334155; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #f1f5f9; padding-bottom: 8px; }
.downsell-features li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.df-bonus { color: var(--pink-700) !important; font-weight: 700; background: var(--pink-50); padding: 8px !important; border-radius: 6px; border: 1px solid var(--pink-100) !important; display:block !important; text-align:center;}

.downsell-warning {
  background: #fef3c7; border: 1.5px solid #fde68a;
  color: #92400e; padding: 12px; border-radius: 8px;
  font-size: 0.85rem; text-align: center; margin-bottom: 20px; font-weight: 600;
}

.downsell-btn-yes {
  width: 100%; display: flex; justify-content: center;
  font-size: 0.95rem; padding: 18px; box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
  margin-bottom: 16px;
}
.downsell-btn-no {
  display: block; text-align: center; font-size: 0.75rem;
  color: #94a3b8; text-decoration: underline; margin-bottom: 24px; cursor: pointer; transition: 0.2s;
}
.downsell-btn-no:hover { color: #64748b; }
.downsell-guarantee { text-align: center; font-size: 0.75rem; color: #64748b; font-weight: 600; }
/* =======================================
   PURE PRINT DESIGN SYSTEM
   ======================================= */
:root {
  --dark-plum: #210F1A;
  --dark-plum-border: #3A1F2F;
  --pink: #EC4899;
  --pink-light: #FBCFE8;
  --white: #FFFFFF;
  --yellow: #FACC15;
  --green: #10B981;
  --gray-bg: #F3F4F6;
  --gray-text: #4B5563;
  --dark-text: #1F2937;
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--white);
  color: var(--dark-text);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Backgrounds */
.print-dark-bg { background: linear-gradient(135deg, #421a32 0%, #210f1a 100%); color: var(--white); }
.print-white-bg { background-color: var(--white); color: var(--dark-text); }
.print-light-pink-bg { background-color: var(--pink-light); color: var(--dark-text); }
.print-green-bg { background-color: var(--green); color: var(--white); }
.print-gray-bg { background-color: var(--gray-bg); color: var(--dark-text); }

/* Typography */
.print-title {
  text-align: center;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
}

.print-subtitle {
  text-align: center;
  font-weight: 500;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: inherit;
  opacity: 0.9;
}

/* Buttons */
.print-btn-green {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background-color: var(--green);
  color: var(--white);
  text-align: center;
  padding: 18px 24px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  transition: transform 0.2s;
}
.print-btn-green:hover { transform: translateY(-3px); }

.pulse-btn {
  animation: pulse-green 1.4s infinite;
}

@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.8); transform: scale(1); }
  50%  { box-shadow: 0 0 0 18px rgba(16, 185, 129, 0); transform: scale(1.03); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); transform: scale(1); }
}

.print-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.2s;
}
.print-btn-whatsapp:hover { transform: translateY(-2px); }

/* TOP BAR */
.print-topbar {
  background-color: #DC2626;
  color: var(--white);
  text-align: center;
  padding: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.print-topbar p { margin: 0; }

/* HERO */
.print-hero {
  background-color: #FFFFFF;
  color: #1a0f14;
  padding: 60px 0 80px;
  text-align: center;
}
.print-hero-image-wrap {
  background-color: var(--pink);
  padding: 6px;
  border-radius: 12px;
  max-width: 400px;
  margin: 0 auto 30px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.print-hero-image-wrap img {
  border-radius: 8px;
  display: block;
  width: 100%;
}
.print-main-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.print-main-sub {
  font-size: 1.1rem;
  color: #D1D5DB;
  max-width: 700px;
  margin: 0 auto 30px;
}
.print-hero-pills {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.print-pill {
  border: 1px solid var(--pink);
  color: var(--pink);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
}
.print-pill:hover {
  background-color: var(--pink);
  color: var(--white);
}
.print-secure {
  font-size: 0.85rem;
  color: #9CA3AF;
  margin-top: 15px;
}

/* 4 CARDS */
.print-4cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.print-card-pink {
  background-color: var(--pink);
  color: var(--white);
  padding: 40px 20px 20px;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.print-card-pink h3 {
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  margin-top: 0;
}
.print-card-pink p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}
.print-card-icon {
  width: 50px;
  height: 50px;
  background-color: var(--white);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* PRACTICE GRID */
.print-practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}






/* Highlighted card like the reference */


@media (max-width: 768px) {
  .print-practice-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* WHY NOW */
.print-why-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}
.print-why-img-wrap {
  flex: 1;
  background-color: var(--pink);
  padding: 6px;
  border-radius: 12px;
}
.print-why-img-wrap img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.print-why-list {
  flex: 1.2;
}
.print-why-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.print-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.5;
}
.why-check { flex-shrink: 0; font-size: 1.2rem; }
@media (max-width: 768px) {
  .print-why-grid { flex-direction: column; }
}

/* TESTIMONIALS MOCK */
.print-test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.print-test-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* OFFER */
.print-offer-wrap {
  display: flex;
  max-width: 900px;
  margin: 0 auto 40px;
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.print-offer-left {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.print-offer-left img {
  max-width: 250px;
  margin: 0 auto 20px;
  display: block;
  border-radius: 12px;
}
.print-offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.print-offer-list li {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark-text);
}
.print-offer-right {
  flex: 1.2;
  background-color: var(--dark-plum);
  color: var(--white);
  padding: 50px 40px;
  text-align: center;
  position: relative;
}
.print-offer-badge {
  background-color: var(--yellow);
  color: var(--dark-plum);
  font-weight: 900;
  padding: 8px 24px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
}
.print-offer-old {
  color: #9CA3AF;
  font-size: 1rem;
  margin-bottom: 5px;
}
.print-offer-price {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
}
.print-offer-desc {
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .print-offer-wrap { flex-direction: column; }
  .print-offer-right { padding: 40px 20px; }
}

/* GUARANTEE */
.print-guarantee {
  background-color: var(--white);
  border: 2px solid var(--pink);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}
.pg-icon { font-size: 3rem; }
.pg-text h4 { margin: 0 0 5px; font-size: 1.2rem; font-weight: 800; color: var(--dark-text); }
.pg-text p { margin: 0; color: var(--gray-text); font-size: 0.95rem; }

/* DOUBTS */
.print-doubts {
  background-color: var(--white);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 40px auto 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.pd-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pd-left img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.pd-text h4 { margin: 0 0 10px; font-size: 1.3rem; font-weight: 800; }
.pd-text p { margin: 0; color: var(--gray-text); max-width: 400px; }
@media (max-width: 768px) {
  .print-doubts { flex-direction: column; text-align: center; gap: 30px; }
  .pd-left { flex-direction: column; }
}

/* HOW IT WORKS */
.print-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.print-how-card {
  background-color: rgba(255,255,255,0.1);
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
}
.ph-step {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 15px;
}
.ph-icon { font-size: 2.5rem; margin-bottom: 15px; }
.print-how-card h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; }
.print-how-card p { font-size: 0.95rem; opacity: 0.9; }
@media (max-width: 768px) {
  .print-how-grid { grid-template-columns: 1fr; }
}

/* TARGET */
.print-target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}




/* FAQ */
.print-faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.print-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 10px;
}
.print-faq-q {
  padding: 20px 0;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.print-faq-q span { color: var(--pink); font-size: 1.5rem; }
.print-faq-a {
  padding: 0 0 20px;
  color: #D1D5DB;
  line-height: 1.6;
  display: none;
}
.print-faq-item.active .print-faq-a { display: block; }

.print-prac-item {
  background-color: var(--white);
  border: 1px solid var(--green);
  border-radius: 6px;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.print-prac-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.1);
}
.print-prac-item .pp-icon-svg {
  color: var(--green);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.print-prac-item .pp-icon-svg svg {
  width: 24px;
  height: 24px;
}
.print-prac-item h4 {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--dark-text);
  margin-bottom: 5px;
}
.print-prac-item p {
  color: var(--gray-text);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.3;
}

/* Highlighted card like the reference */
.print-prac-item.highlight {
  background-color: var(--white);
}
.print-prac-item.highlight .pp-icon-svg {
  color: var(--dark-text); /* Black/Dark green icon */
}
.print-prac-item.highlight h4, 
.print-prac-item.highlight p {
  color: var(--pink);
}

.print-target-card {
  background-color: var(--white);
  border: 2px solid var(--green);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.print-target-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.1);
}
.pt-icon-svg {
  color: var(--green);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.print-target-card h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark-text);
}

/* PRICING GRID (2 PLANS) */
.print-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .print-pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.print-pricing-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
}
.print-pricing-card.basic {
  border: 2px solid #E5E7EB;
  transform: scale(0.95);
}
.print-pricing-card.complete {
  background-color: var(--dark-plum);
  color: var(--white);
  border: 4px solid var(--pink);
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(236, 72, 153, 0.3);
  z-index: 2;
}
@media (max-width: 768px) {
  .print-pricing-card.basic, .print-pricing-card.complete { transform: scale(1); }
}
.ppc-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--yellow);
  color: var(--dark-plum);
  font-weight: 900;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.ppc-header h3 {
  margin: 0 0 5px;
  font-size: 1.5rem;
  font-weight: 900;
}
.ppc-header p {
  margin: 0 0 20px;
  font-size: 0.95rem;
  opacity: 0.8;
}
.ppc-price {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.ppc-price .currency { font-size: 1.5rem; margin-top: 10px; margin-right: 5px; }
.ppc-price .cents { font-size: 1.5rem; margin-top: 10px; }

.ppc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
}
.ppc-features li {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.print-pricing-card.complete .ppc-features li { color: #E5E7EB; }
.print-pricing-card.complete .bonus-highlight { color: var(--pink-light); font-weight: 800; }
.not-included { opacity: 0.5; text-decoration: line-through; }

.print-btn-basic {
  display: block;
  width: 100%;
  background-color: var(--gray-bg);
  color: var(--dark-text);
  padding: 16px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid #D1D5DB;
  transition: background 0.2s;
}
.print-btn-basic:hover { background-color: #E5E7EB; }


.basic-upsell-banner {
  background-color: #000;
  margin-top: 15px;
  padding: 12px 10px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #333;
}
.bub-top {
  color: #FF0000;
  font-weight: 900;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}
.bub-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.bub-text {
  color: #FFF;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}
.bub-green {
  color: #00FF00;
}
.bub-bottom svg {
  flex-shrink: 0;
  animation: bounceDown 1.5s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (min-width: 769px) {
  .basic-upsell-banner {
    /* On desktop, the better offer is to the right, so point arrows right */
  }
  .bub-bottom svg {
    transform: rotate(-90deg);
    animation: bounceRight 1.5s infinite;
  }
  @keyframes bounceRight {
    0%, 100% { transform: rotate(-90deg) translateX(0); }
    50% { transform: rotate(-90deg) translateX(-5px); } /* TranslateX negative because it's rotated */
  }
}

.print-hero {
  background-color: #FFFFFF !important;
  color: #1a1a1a !important;
  padding: 60px 0 80px;
  text-align: center;
}
.print-hero-image-wrap {
  padding: 10px;
  border-radius: 16px;
  max-width: 420px;
  margin: 0 auto 30px;
  display: inline-block;
  background: #FFF;
  box-shadow: 0 20px 40px rgba(236, 72, 153, 0.15);
  border: 4px solid #EC4899;
}
.print-main-title {
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1.1;
  color: #1a1a1a !important;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.print-main-sub {
  color: #4b5563 !important;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.6;
}
.print-hero-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.print-pill {
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid #210F1A;
  color: #210F1A;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
}
.print-pill:hover {
  background-color: #210F1A;
  color: #FFF;
}
.print-secure {
  color: #6b7280 !important;
  font-size: 0.9rem;
  margin-top: 15px;
  font-weight: 500;
}
