/* ============================================
   FUNIL ANOTA AMIGA — CSS
   ============================================ */
:root {
  --pink: #FF609B;
  --pink-dark: #E84E85;
  --pink-light: #FFD6E7;
  --pink-bg: #FFF5F9;
  --pink-glow: rgba(255, 96, 155, 0.25);
  --dark: #1A1A2E;
  --body: #555;
  --border: #f0e4ec;
  --white: #fff;
  --off-white: #FDF8FA;
  --green-whatsapp: #25D366;
  --chat-bg: #ECE5DD;
  --chat-sent: #DCF8C6;
  --chat-received: #fff;
  --radius: 20px;
  --shadow: 0 8px 32px rgba(255, 96, 155, 0.12);
  --shadow-lg: 0 20px 60px rgba(255, 96, 155, 0.18);
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ========== FUNNEL CONTAINER ========== */
.funnel-wrap {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ========== STEPS ========== */
.step {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 100dvh;
  padding: 4.5rem 1rem 2rem;
  animation: fadeUp 0.5s ease both;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
}

.step.active {
  display: flex;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered card entrance animation */
@keyframes staggerSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.stagger-card {
  opacity: 0;
  animation: staggerSlideUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: calc(var(--i, 0) * 0.18s + 0.3s);
}

@media (min-width: 600px) {
  .step {
    padding: 2rem 1.25rem;
    justify-content: center;
  }
}

/* ========== LOGO ========== */
.funnel-logo {
  display: none !important;
}

.funnel-logo img {
  display: none;
}

/* ========== PROGRESS BAR ========== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--pink-dark));
  z-index: 200;
  transition: width 0.6s ease;
  border-radius: 0 2px 2px 0;
}

/* ========== STEP 1: PAIN SELECTION ========== */
.pain-step {
  background: linear-gradient(135deg, var(--pink-bg) 0%, var(--white) 100%);
}

.pain-step .step-inner {
  max-width: 600px;
  text-align: center;
}

.step-tag {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

/* Logo image replacing step-tag */
.step-logo {
  height: 2.4rem;
  margin: 0 auto 1.25rem;
  display: block;
}

@media (min-width: 600px) {
  .step-logo {
    height: 3rem;
  }
}

/* Info badge (replaces skip button) */
.chat-info-badge {
  position: absolute;
  bottom: 5.5rem;
  right: 1.25rem;
  background: rgba(255, 96, 155, 0.12);
  color: var(--pink-dark);
  border: none;
  border-radius: 99px;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  z-index: 10;
  pointer-events: none;
  user-select: none;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

@media (min-width: 600px) {
  .step-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }
}

.step-subtitle {
  font-size: 0.95rem;
  color: var(--body);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

@media (min-width: 600px) {
  .step-subtitle {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
  }
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  width: 100%;
}

@media (min-width: 540px) {
  .pain-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.pain-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1rem;
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .pain-card {
    padding: 1.5rem 1.25rem;
    flex-direction: column;
    gap: 0;
    border-radius: 16px;
  }
}

.pain-card:hover,
.pain-card:focus {
  border-color: var(--pink);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.pain-card .pain-emoji {
  font-size: 1.6rem;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .pain-card .pain-emoji {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
  }
}

.pain-card .pain-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.3;
}

@media (min-width: 480px) {
  .pain-card .pain-label {
    font-size: 1rem;
  }
}

/* ========== STEP 2: CHAT SIMULATION ========== */
.chat-step {
  background: var(--chat-bg);
  padding: 0 !important;
  justify-content: stretch !important;
}

.chat-phone {
  width: 100%;
  max-width: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--chat-bg);
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 600px) {
  .chat-phone {
    max-width: 420px;
    border-radius: 32px;
    height: 85dvh;
    max-height: 780px;
    box-shadow: var(--shadow-lg), 0 0 0 8px rgba(0, 0, 0, 0.08);
    margin: 1rem 0;
  }
}

/* Chat Header */
.chat-header {
  background: #075E54;
  color: white;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.chat-header-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.chat-header-info {
  flex: 1;
}

.chat-header-name {
  font-weight: 700;
  font-size: 1rem;
}

.chat-header-status {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Chat Messages Area */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

/* Bubbles */
.bubble {
  max-width: 82%;
  padding: 0.6rem 0.85rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  position: relative;
  animation: bubblePop 0.35s ease both;
  word-wrap: break-word;
  white-space: pre-line;
}

@keyframes bubblePop {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.bubble-sent {
  background: var(--chat-sent);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.bubble-received {
  background: var(--chat-received);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.bubble b,
.bubble strong {
  font-weight: 700;
}

.bubble-time {
  font-size: 0.65rem;
  color: rgba(0, 0, 0, 0.4);
  text-align: right;
  margin-top: 0.25rem;
}

/* Typing indicator */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 0.75rem 1rem;
  align-self: flex-start;
  background: var(--chat-received);
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  animation: bubblePop 0.3s ease both;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: #999;
  border-radius: 50%;
  animation: typingBounce 1.2s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes typingBounce {

  0%,
  60%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-6px);
  }
}

/* Chat Input Bar */
.chat-input-bar {
  background: #F0F0F0;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.chat-input-field {
  flex: 1;
  border: none;
  background: var(--white);
  border-radius: 24px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
}

.chat-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-whatsapp);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.chat-send-btn:hover {
  transform: scale(1.08);
}

.chat-send-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}

/* Skip button over chat */
.chat-skip {
  position: absolute;
  bottom: 5.5rem;
  right: 1.25rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 99px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}

.chat-skip:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* ========== RICH CHAT VISUALS ========== */

/* Mini bar chart in summary */
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  margin: 0.75rem 0 0.25rem;
}

.mini-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  min-width: 28px;
  animation: barGrow 0.6s ease both;
  position: relative;
}

.mini-bar-label {
  font-size: 0.55rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  color: #666;
}

.mini-bar-value {
  font-size: 0.55rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  color: #333;
}

@keyframes barGrow {
  from {
    height: 0;
  }

  to {
    height: var(--h);
  }
}

/* Goal progress bar */
.goal-progress-wrap {
  margin: 0.5rem 0;
}

.goal-progress-bar {
  height: 10px;
  border-radius: 99px;
  background: #eee;
  overflow: hidden;
  margin-top: 0.35rem;
}

.goal-progress-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #25D366, #128C7E);
  animation: progressFill 1s ease both;
}

@keyframes progressFill {
  from {
    width: 0;
  }
}

.goal-progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #666;
  margin-top: 0.2rem;
}

/* Audio waveform visual */
.audio-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 24px;
  margin: 0.5rem 0;
  padding: 0.4rem 0.75rem;
  background: #E8F5E9;
  border-radius: 20px;
}

.audio-wave-bar {
  width: 3px;
  background: #25D366;
  border-radius: 2px;
  animation: waveAnim 0.8s ease-in-out infinite alternate;
}

.audio-wave-bar:nth-child(2) {
  animation-delay: 0.1s;
}

.audio-wave-bar:nth-child(3) {
  animation-delay: 0.2s;
}

.audio-wave-bar:nth-child(4) {
  animation-delay: 0.3s;
}

.audio-wave-bar:nth-child(5) {
  animation-delay: 0.4s;
}

.audio-wave-bar:nth-child(6) {
  animation-delay: 0.5s;
}

.audio-wave-bar:nth-child(7) {
  animation-delay: 0.3s;
}

.audio-wave-bar:nth-child(8) {
  animation-delay: 0.2s;
}

@keyframes waveAnim {
  from {
    height: 4px;
  }

  to {
    height: 20px;
  }
}

/* Real receipt image — looks like photo shared in WhatsApp */
.receipt-img-wrap {
  margin: 0.4rem 0 0.25rem;
  border-radius: 8px;
  overflow: hidden;
  max-width: 200px;
  position: relative;
}

.receipt-img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.receipt-img-caption {
  font-size: 0.6rem;
  color: #888;
  margin-top: 0.2rem;
  padding-left: 2px;
}

/* Dashboard preview mini */
.dash-preview {
  background: linear-gradient(135deg, #1A1A2E, #2D1B4E);
  border-radius: 12px;
  padding: 0.75rem;
  margin: 0.5rem 0;
  color: white;
  font-size: 0.7rem;
}

.dash-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.dash-preview-title {
  font-weight: 700;
  font-size: 0.75rem;
}

.dash-preview-badge {
  background: #FF609B;
  border-radius: 6px;
  padding: 0.15rem 0.4rem;
  font-size: 0.55rem;
  font-weight: 700;
}

.dash-mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 35px;
}

.dash-mini-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  min-width: 12px;
  animation: barGrow 0.8s ease both;
}

/* Reminder card */
.reminder-card {
  background: linear-gradient(135deg, #FFF8E1, #FFF3E0);
  border: 1px solid #FFE082;
  border-radius: 10px;
  padding: 0.6rem;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reminder-card .reminder-icon {
  font-size: 1.2rem;
}

.reminder-card .reminder-details {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.4;
}

.reminder-card .reminder-date {
  font-weight: 700;
  color: #E65100;
}

/* Continue button inside chat */
.chat-continue-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: center;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #FF609B, #FF2E7A);
  color: white;
  border: none;
  border-radius: 99px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  animation: fadeUp 0.5s ease both, solo-pulse 1.5s ease-in-out infinite;
  text-decoration: none;
}

/* ========== STEP 3: FEATURES ========== */
.features-step {
  background: var(--white);
}

.features-step .step-inner {
  max-width: 800px;
  text-align: center;
}

.feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
  width: 100%;
}

@media (min-width: 580px) {
  .feat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
  }
}

.feat-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  text-align: left;
  transition: all var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .feat-card {
    padding: 1.5rem;
    border-radius: 16px;
    flex-direction: column;
    gap: 0;
  }
}

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

.feat-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .feat-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
}

.feat-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

@media (min-width: 480px) {
  .feat-name {
    font-size: 1rem;
    margin-bottom: 0.35rem;
  }
}

.feat-desc {
  font-size: 0.82rem;
  color: var(--body);
  line-height: 1.4;
}

@media (min-width: 480px) {
  .feat-desc {
    font-size: 0.88rem;
    line-height: 1.5;
  }
}

/* ========== STEP 4: ANTES x DEPOIS ========== */
.bxa-step {
  background: linear-gradient(180deg, var(--pink-bg) 0%, var(--white) 100%);
}
.bxa-step .step-inner {
  text-align: center;
}
.bxa-block {
  width: 100%;
  margin-bottom: 0.5rem;
}
.bxa-label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.bxa-label-before { color: #c0392b; }
.bxa-label-after  { color: #27ae60; }

.bxa-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.bxa-item {
  background: var(--white);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  /* Animation: hidden by default */
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: opacity 0.7s cubic-bezier(0.23,1,0.32,1),
              transform 0.7s cubic-bezier(0.23,1,0.32,1);
  transition-delay: calc(var(--d, 0) * 0.18s + 0.15s);
}
.bxa-item-before {
  border-left: 4px solid #e74c3c;
  color: #7f1d1d;
}
.bxa-item-after {
  border-left: 4px solid #27ae60;
  color: #14532d;
}

/* Arrow between blocks */
.bxa-arrow {
  font-size: 2.2rem;
  color: var(--pink);
  margin: 1rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: calc(var(--d, 0) * 0.18s + 0.15s);
}

/* Trigger: when step becomes active, JS adds .bxa-visible */
.bxa-visible .bxa-item,
.bxa-visible .bxa-arrow,
.bxa-visible .bxa-label {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.bxa-label {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.bxa-label-before { transition-delay: 0s; }
.bxa-label-after  { transition-delay: calc(6 * 0.18s + 0.15s); }

/* ========== STEP 5: TESTIMONIALS (3-part) ========== */
.testi-step {
  background: linear-gradient(180deg, var(--pink-bg), var(--white));
}

.testi-step .step-inner {
  max-width: 600px;
  text-align: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  box-sizing: border-box;
  width: 100%;
}

.testi-step .step-title {
  font-size: 1.6rem;
  padding: 0 0.25rem;
}

.spread-title,
.spread-subtitle,
.video-social-proof p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/* --- PART 1: Video Phone Mockups --- */
.video-wall {
  position: relative;
  width: 100%;
  height: 360px;
  margin: 1.5rem auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 480px) {
  .video-wall {
    height: 420px;
  }
}

.phone-mockup {
  position: absolute;
  width: 150px;
  aspect-ratio: 9/16;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  border: 3px solid #222;
  transition: all 0.65s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

@media (min-width: 480px) {
  .phone-mockup {
    width: 180px;
    border-radius: 26px;
  }
}

.phone-mockup video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone-front {
  z-index: 5;
  transform: rotate(-4deg) translateX(-25%);
}

.phone-back {
  z-index: 3;
  transform: rotate(6deg) translateX(25%);
}

.video-wall.swapped .phone-front {
  z-index: 3;
  transform: rotate(6deg) translateX(25%);
}

.video-wall.swapped .phone-back {
  z-index: 5;
  transform: rotate(-4deg) translateX(-25%);
}

.phone-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}

.phone-play-btn svg {
  width: 22px;
  height: 22px;
}

.phone-play-btn:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-social-proof {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--pink-bg);
  border-radius: 16px;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 4px 16px rgba(255, 96, 155, 0.1);
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

.video-avatars {
  display: flex;
}

.video-avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  margin-left: -8px;
}

.video-avatars img:first-child {
  margin-left: 0;
}

.video-social-proof p {
  font-size: 0.72rem;
  color: var(--dark);
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

.video-social-proof strong {
  color: var(--pink-dark);
}

/* --- PART 2 & 3: Spread Carousel (stories + videos) --- */
.spread-section {
  margin-top: 2.5rem;
  width: 100%;
}

.spread-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
  text-align: center;
}

.spread-subtitle {
  font-size: 0.85rem;
  color: var(--body);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.spread-carousel {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

@media (min-width: 480px) {
  .spread-carousel {
    height: 360px;
  }
}

.spread-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spread-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160px;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 228, 239, 0.3);
  filter: grayscale(1) blur(1px);
  opacity: 0.7;
  z-index: 0;
}

@media (min-width: 480px) {
  .spread-card {
    width: 180px;
    height: 290px;
    border-radius: 22px;
  }
}

.spread-card img,
.spread-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.spread-card:hover {
  opacity: 0.9;
  filter: grayscale(0.5) blur(0px);
}

.spread-card.spread-active {
  filter: grayscale(0) blur(0px);
  opacity: 1;
  z-index: 10;
  border: 2px solid rgba(255, 96, 155, 0.35);
  box-shadow: 0 12px 40px rgba(255, 96, 155, 0.15);
  transform: translate(-50%, -50%) translateX(0) translateY(-16px) rotate(0deg) scale(1.08) !important;
}

.spread-card.spread-hidden {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Video play button inside spread cards */
.spread-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 5;
}

.spread-active .spread-play-btn {
  width: 44px;
  height: 44px;
}

.spread-play-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* Spread nav arrows */
.spread-nav {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  z-index: 20;
}

.spread-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  color: var(--dark);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.spread-nav-btn:hover {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 96, 155, 0.25);
}

/* Testimonials CTA button — pulsing fast */
.testi-cta {
  margin-top: 2rem;
  width: 100%;
  max-width: 380px;
  animation: fadeUp 0.5s ease both, testi-pulse 0.8s ease-in-out infinite;
}
@keyframes testi-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(255,96,155,0.25); }
  50% { transform: scale(1.05); box-shadow: 0 8px 32px rgba(255,96,155,0.45); }
}

/* ========== STEP 5: PRICING ========== */
.pricing-step {
  background: linear-gradient(180deg, var(--white) 0%, var(--pink-bg) 100%);
}

.pricing-step .step-inner {
  max-width: 560px;
  text-align: center;
}

/* Solo Pricing Card — exact replica from anotaamiga.com.br */
.solo-pricing-card {
  position: relative;
  background: linear-gradient(180deg, #FFF8FB 0%, #FFFFFF 100%);
  border-radius: 28px;
  padding: 3rem 2.5rem 2.5rem;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 2px solid #FF2E7A;
  box-shadow: 0 0 60px rgba(255, 46, 122, 0.12), 0 12px 40px rgba(0, 0, 0, 0.06);
  overflow: visible;
}

@media (max-width: 480px) {
  .solo-pricing-card {
    padding: 2.5rem 1.5rem 2rem;
    border-radius: 20px;
  }
}

.solo-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF609B, #FF2E7A);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  padding: 0.5rem 1.75rem;
  border-radius: 9999px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(255, 46, 122, 0.3);
  z-index: 5;
}

.solo-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.solo-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  text-transform: none;
  margin-top: 0.5rem;
  display: block;
  line-height: 1.3;
}

.solo-subtitle {
  font-size: 0.9rem;
  color: var(--body);
  font-weight: 500;
  margin-top: 0.4rem;
}

.solo-price-block {
  text-align: center;
  margin-bottom: 1.5rem;
}

.solo-price-old-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.solo-price-old {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #dc2626;
  text-decoration: line-through;
  letter-spacing: -0.02em;
}

.solo-discount-tag {
  background: linear-gradient(135deg, #FF609B, #FF2E7A);
  color: white;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.solo-price-current {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.solo-por {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--body);
}

.solo-value {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1;
}

@media (max-width: 480px) {
  .solo-value {
    font-size: 3.25rem;
  }
}

.solo-installment {
  font-size: 0.9rem;
  color: var(--body);
  font-weight: 500;
  font-family: var(--font-body);
  margin-top: 0.25rem;
}

.solo-divider {
  width: 100%;
  height: 1px;
  margin: 0.5rem 0 1.25rem;
  background: linear-gradient(90deg, transparent, #FF2E7A, transparent);
  opacity: 0.35;
}

.solo-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.solo-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  text-align: left;
}

.ci-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #FF2E7A;
  display: flex;
  align-items: center;
  justify-content: center;
  stroke: white;
  fill: none;
  padding: 4px;
}

/* Botão CTA pulsante — exact from site */
.solo-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(135deg, #FF609B, #FF2E7A);
  color: white;
  border-radius: 9999px;
  border: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.5s;
  box-shadow: 0 8px 30px rgba(255, 46, 122, 0.3);
  animation: solo-pulse 1.2s ease-in-out infinite;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.solo-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 46, 122, 0.45);
}

@keyframes solo-pulse {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(255, 46, 122, 0.3);
  }

  50% {
    box-shadow: 0 8px 50px rgba(255, 46, 122, 0.5), 0 0 0 12px rgba(255, 96, 155, 0.15);
  }
}

/* Ripple animation */
.ripple-animation {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  animation: ripple-effect 0.7s ease-out infinite;
}

.ripple-animation:nth-child(1) {
  animation-delay: 0s;
}

.ripple-animation:nth-child(2) {
  animation-delay: 0.35s;
}

@keyframes ripple-effect {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

/* Selo de segurança */
.solo-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #999;
  margin-top: 1rem;
}

/* ========== NAV BUTTONS ========== */
.nav-btn {
  margin-top: 2rem;
  padding: 0.85rem 2.5rem;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: white;
  border: none;
  border-radius: 99px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--pink-glow);
}

/* ========== GUARANTEE ========== */
.guarantee-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.25rem;
  background: #F0FFF4;
  border: 1px solid #C6F6D5;
  border-radius: 12px;
  font-size: 0.85rem;
  color: #276749;
  font-weight: 600;
}

/* ========== MOBILE FINE-TUNING ========== */
@media (max-width: 380px) {
  .step-title {
    font-size: 1.25rem;
  }

  .step-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.75rem;
    margin-bottom: 1rem;
  }

  .solo-pricing-card {
    padding: 2rem 1rem 1.5rem;
  }

  .solo-value {
    font-size: 2.8rem;
  }

  .solo-benefit {
    font-size: 0.85rem;
  }

  .solo-cta-btn {
    font-size: 0.95rem;
    padding: 1.1rem 1rem;
  }

  .nav-btn {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
  }

  .chat-header-name {
    font-size: 0.9rem;
  }
}