/* CSS RESET & VARIABLES */
:root {
  /* Colors - Premium Purple & Pink Palette */
  --clr-bg: #0B0410;
  --clr-bg-secondary: #130720;

  --clr-primary: #A42DF5;
  /* Neon Purple */
  --clr-primary-dark: #6600AE;

  --clr-secondary: #FF107A;
  /* Neon Pink */

  --clr-surface: rgba(255, 255, 255, 0.03);
  --clr-surface-border: rgba(255, 255, 255, 0.08);
  --clr-surface-hover: rgba(255, 255, 255, 0.06);

  --clr-text: #FFFFFF;
  --clr-text-muted: #B3ADC2;
  --clr-text-accent: #FFD6EA;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-s: 1rem;
  --spacing-m: 2rem;
  --spacing-l: 4rem;
  --spacing-xl: 6rem;

  /* Shadows */
  --shadow-glow: 0 0 30px rgba(164, 45, 245, 0.3);
  --shadow-pink: 0 0 30px rgba(255, 16, 122, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* TYPOGRAPHY OVERRIDES */
h1,
h2,
h3,
h4,
.logo-text,
.chip {
  font-family: var(--font-heading);
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, var(--clr-secondary), var(--clr-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.text-center {
  text-align: center;
}

h2.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--clr-text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* LAYOUT & UTILS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pt-section {
  padding-top: var(--spacing-xl);
}

.pb-section {
  padding-bottom: var(--spacing-xl);
}

.mt-m {
  margin-top: var(--spacing-m);
}

.mt-l {
  margin-top: var(--spacing-l);
}

.mt-xl {
  margin-top: var(--spacing-xl);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* GLASSMORPHISM */
.glass {
  background: var(--clr-surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--clr-surface-border);
  border-radius: 16px;
}

/* BUTTONS */
a {
  text-decoration: none;
  color: inherit;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.glow-btn {
  box-shadow: 0 10px 30px -10px var(--clr-secondary);
}

.glow-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px -5px var(--clr-secondary);
}

.cta-button.large {
  font-size: 1.25rem;
  padding: 1.5rem 3rem;
  width: 100%;
}

.cta-button-small {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cta-button-small:hover {
  background: white;
  color: var(--clr-bg);
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(11, 4, 16, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  border-bottom: 1px solid var(--clr-surface-border);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.1rem;
}

/* HERO SECTION */
.hero {
  position: relative;
  padding-top: 140px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  background: radial-gradient(circle, rgba(164, 45, 245, 0.2) 0%, rgba(11, 4, 16, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chip {
  background: rgba(255, 16, 122, 0.1);
  border: 1px solid rgba(255, 16, 122, 0.3);
  color: var(--clr-text-accent);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-desc {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--clr-text-muted);
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.secure-text {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

/* NARRATIVE INTERACTIVE SECTION */
.narrative-section {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 4rem auto 0;
  border-radius: 20px;
  background: #0b0410;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.narrative-grid {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.narrative-card {
  flex: 0 0 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.narrative-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.narrative-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: transform 1.2s ease;
  will-change: transform;
  content-visibility: auto;
  /* Performance helper */
}

.active img {
  transform: scale(1.02);
  -webkit-transform: scale(1.02);
}

.narrative-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 800px;
  padding: 2rem;
  text-align: center;
}

.narrative-text {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  font-family: var(--font-heading);
}

.narrative-text strong {
  background: linear-gradient(to right, #A42DF5, #FF4B91);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.narrative-hook {
  display: block;
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #FFC0CB;
  font-weight: 500;
  opacity: 0.9;
}

.narrative-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.control-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-btn.active {
  background: var(--clr-primary);
  transform: scale(1.3);
  box-shadow: 0 0 15px var(--clr-primary);
}

@media (max-width: 768px) {
  .narrative-section {
    margin: 2rem auto;
    max-width: 90%;
    border-radius: 12px;
  }

  .narrative-card {
    aspect-ratio: 1 / 1;
    /* Formato quadrado no mobile para ser mais compacto */
    min-height: auto;
  }

  .narrative-visual img {
    filter: brightness(0.45);
  }

  .narrative-content {
    padding: 1rem;
  }

  .narrative-text {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .narrative-hook {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }

  .narrative-controls {
    bottom: 1rem;
  }
}


/* CARDS COMMON */
.card {
  padding: 2rem;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.hover-lift:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 16, 122, 0.4);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.red-glow {
  text-shadow: 0 0 20px rgba(255, 16, 122, 0.5);
}

.card-title {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.card-desc {
  color: var(--clr-text-muted);
  font-size: 1rem;
}

/* STORY SECTION */
.story-section {
  background: var(--clr-bg-secondary);
}

.image-wrapper {
  padding: 3rem;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.abstract-shape {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 180deg at 50% 50%, rgba(164, 45, 245, 0.1) 0deg, rgba(255, 16, 122, 0.1) 180deg, rgba(164, 45, 245, 0.1) 360deg);
  animation: rotate 20s linear infinite;
  z-index: 0;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.mockup-content {
  position: relative;
  z-index: 1;
}

.bad-list {
  list-style: none;
  margin-top: 1.5rem;
}

.bad-list li {
  margin-bottom: 1rem;
  color: var(--clr-text-accent);
  background: rgba(255, 16, 122, 0.1);
  padding: 1rem;
  border-radius: 8px;
}

.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  font-size: 1.1rem;
}

.check-icon {
  color: #10FF85;
  background: rgba(16, 255, 133, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.highlight-text {
  border-left: 4px solid var(--clr-primary);
  padding-left: 1rem;
  font-style: italic;
  color: var(--clr-text-muted);
}

/* SOLUTION GRID */
.solution-section {
  position: relative;
}

.background-mesh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(var(--clr-surface-border) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  z-index: 0;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.solution-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  align-items: flex-start;
}

.solution-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, rgba(164, 45, 245, 0.2), rgba(255, 16, 122, 0.2));
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  flex-shrink: 0;
}

/* SOCIAL PROOF */
.proof-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stars {
  color: #FFD700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.proof-card p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--clr-text);
}

.proof-author-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-primary);
}

.author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.author-name {
  font-weight: 700;
  color: var(--clr-text);
  font-family: var(--font-heading);
}

.author-role {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

/* FAQ SECTION */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 850px;
  margin: 0 auto;
}

/* FINAL URGENCY SECTION */
.final-urgency-section {
  text-align: center;
  padding: 3rem 0;
  background: var(--clr-surface);
  border-top: 1px solid rgba(164, 45, 245, 0.4);
  border-bottom: 1px solid rgba(164, 45, 245, 0.4);
  background-image: radial-gradient(circle at 50% 0%, rgba(164, 45, 245, 0.15) 0%, transparent 70%);
}

.urgency-title {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.urgency-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.urgency-options .option {
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--clr-text-muted);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--clr-surface);
  border: 1px solid var(--clr-surface-border);
  padding: 1.5rem;
  border-radius: 12px;
}

.urgency-options .option .arrow-icon {
  font-weight: bold;
  font-size: 1.2rem;
}

.urgency-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 2.5rem;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.urgency-bullets .dot {
  color: var(--clr-primary);
  font-size: 1.5rem;
  line-height: 1;
}

.urgency-btn {
  font-size: 1.1rem;
  padding: 1.5rem 2.5rem;
  box-shadow: 0 10px 40px -10px var(--clr-secondary);
  animation: pulse-glow 2s infinite;
  display: inline-block;
  /* Prevent max-width button expanding */
  width: auto;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 16, 122, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 16, 122, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 16, 122, 0);
  }
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--clr-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item.active {
  border-color: var(--clr-primary);
  box-shadow: 0 0 20px rgba(164, 45, 245, 0.2);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 1.8rem;
  background: transparent;
  border: none;
  color: var(--clr-text);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--clr-primary);
}

.faq-item.active .faq-question {
  color: var(--clr-primary);
  background: rgba(164, 45, 245, 0.05);
}

.faq-question span:first-child {
  padding-right: 1.5rem;
  line-height: 1.4;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: var(--clr-primary);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--clr-text-muted);
  background: rgba(0, 0, 0, 0.2);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 800px;
}

.faq-answer p {
  margin-top: 1rem;
}

.faq-answer p:first-child {
  margin-top: 0;
}

/* GUARANTEE SECTION */
.guarantee-box {
  display: flex;
  background: var(--clr-bg-secondary);
  border: 1px solid rgba(164, 45, 245, 0.3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.guarantee-visual {
  flex: 0 0 40%;
  background: radial-gradient(circle at center, rgba(164, 45, 245, 0.2) 0%, rgba(11, 4, 16, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.circle-badge {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rotating-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: rotate-text 20s linear infinite;
}

.rotating-text text {
  fill: var(--clr-text-muted);
  font-family: var(--font-heading);
  font-size: 13.5px;
  letter-spacing: 2.5px;
}

@keyframes rotate-text {
  to {
    transform: rotate(360deg);
  }
}

.circle-inner {
  width: 190px;
  height: 190px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(164, 45, 245, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.2);
  border: 4px solid var(--clr-bg);
  position: relative;
  z-index: 2;
  text-align: center;
}

.circle-inner .number {
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-heading);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.circle-inner .text {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--clr-bg);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-top: -5px;
  letter-spacing: 1px;
}

.guarantee-content {
  flex: 1;
  padding: 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.guarantee-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.guarantee-list,
.guarantee-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 0.5rem 0;
}

.guarantee-list li,
.guarantee-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--clr-text-muted);
  font-size: 1.05rem;
}

.guarantee-list .check-icon {
  color: #10FF85;
  font-weight: bold;
}

.guarantee-steps .arrow-icon {
  color: var(--clr-secondary);
  font-weight: bold;
}

.guarantee-btn {
  margin-top: 1rem;
  align-self: flex-start;
}

/* CTA BOX */
.cta-box {
  padding: 4rem;
  text-align: center;
  border-color: rgba(164, 45, 245, 0.3);
  background: linear-gradient(180deg, rgba(164, 45, 245, 0.05) 0%, rgba(255, 16, 122, 0.05) 100%);
}

.cta-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.price-block {
  margin: 3rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.original-price {
  text-decoration: line-through;
  color: var(--clr-text-muted);
  font-size: 1.2rem;
}

.current-price {
  font-size: 2rem;
  font-family: var(--font-heading);
}

.current-price strong {
  font-size: 3.5rem;
  color: var(--clr-secondary);
  text-shadow: 0 0 20px rgba(255, 16, 122, 0.3);
}

.cash-price {
  color: var(--clr-text-accent);
}

.guarantee {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--clr-text-muted);
}

/* FOOTER */
.cta-final-container {
  background: black;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--clr-surface-border);
}

.footer {
  background: black;
  padding: 0 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--clr-text-muted);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--clr-primary);
}

.copyright,
.disclaimer {
  color: #666;
  font-size: 0.85rem;
}

.disclaimer {
  font-size: 0.75rem;
  max-width: 600px;
}


/* ANIMATIONS ENTRY */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* WARNING / SCENARIOS SECTION */
.warning-title {
  color: #FFF6DB;
  font-size: clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.warning-icon {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.scenarios-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.scenario-card {
  flex: 1;
  border-radius: 16px;
  border: 4px solid #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  box-shadow: -8px 8px 0px #FDF3E1;
}

.scenario-card:hover {
  transform: translateY(-5px);
}

.scenario-a {
  background: linear-gradient(135deg, rgba(164, 45, 245, 0.15) 0%, var(--clr-bg) 100%);
  border-color: var(--clr-primary);
  box-shadow: -8px 8px 0px rgba(164, 45, 245, 0.2);
}

.scenario-b {
  background: linear-gradient(135deg, rgba(164, 45, 245, 0.25) 0%, var(--clr-bg) 100%);
  border-color: var(--clr-primary);
  box-shadow: -8px 8px 0px rgba(164, 45, 245, 0.4);
}

.scenario-visual {
  background-color: #ffffff;
  background-image: radial-gradient(#e0e0e0 2px, transparent 2px);
  background-size: 24px 24px;
  background-position: center;
  border: 1px solid var(--clr-surface-border);
  border-radius: 12px;
  margin: 12px;
  height: 220px;
  position: relative;
  /* overflow removido para os emojis não serem cortados */
}

.scenario-content {
  padding: 1rem 1.5rem 2rem;
  color: white;
}

.scenario-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.scenario-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

/* Animations & Details inside Visual */
.visual-content {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Dominoes */
.dominoes {
  position: absolute;
  left: 15%;
  top: 40%;
  display: flex;
  gap: 2px;
  transform: rotate(-10deg);
}

.domino {
  width: 25px;
  height: 60px;
  background: #111;
  border-radius: 4px;
  box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.3);
  transform-origin: bottom right;
}

.scenario-card:hover .domino:nth-child(n) {
  animation: fall 1s forwards ease-in-out;
}

.scenario-card:hover .domino:nth-child(1) {
  animation-delay: 0s;
}

.scenario-card:hover .domino:nth-child(2) {
  animation-delay: 0.1s;
}

.scenario-card:hover .domino:nth-child(3) {
  animation-delay: 0.2s;
}

.scenario-card:hover .domino:nth-child(4) {
  animation-delay: 0.3s;
}

.scenario-card:hover .domino:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes fall {
  to {
    transform: rotate(60deg);
  }
}

.emoji-explode {
  position: absolute;
  right: 40%;
  top: 40%;
  font-size: 4.5rem;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.scenario-card:hover .emoji-explode {
  animation: shake 0.5s infinite;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px) rotate(-5deg);
  }

  75% {
    transform: translateX(5px) rotate(5deg);
  }
}

.arrow {
  position: absolute;
  right: 15%;
  top: 35%;
  font-size: 4rem;
  font-weight: bold;
}

.red-arrow {
  color: #CC1111;
}

.scenario-card:hover .red-arrow {
  animation: downMove 1s infinite alternate ease-in-out;
}

@keyframes downMove {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(15px);
  }
}

.black-arrow {
  color: #111;
  right: 15%;
}

/* Animated Chart / Scenario B details */
.chart-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.chart-polyline {
  fill: none;
  stroke: url(#lineGrad);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: 0.8;
  filter: drop-shadow(0 5px 10px rgba(164, 45, 245, 0.4));
}

.scenario-card:hover .chart-polyline {
  animation: drawLine 2s ease-out forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.views-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.bubble {
  position: absolute;
  background: #111;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  opacity: 1;
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.scenario-card:hover .bubble:hover {
  transform: scale(1.2) !important;
  background: var(--clr-primary);
  z-index: 10;
}

/* Fixed Chart Bubble Positions */
.chart-b.b1 {
  left: 2%;
  top: 75%;
  opacity: 1;
}

.chart-b.b2 {
  left: 25%;
  top: 55%;
  opacity: 1;
}

.chart-b.b3 {
  left: 50%;
  top: 38%;
  opacity: 1;
}

.chart-b.b4 {
  left: 77%;
  top: 10%;
  opacity: 1;
}

.scenario-card:hover .bubble {
  animation: popIn 0.5s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scenario-card:hover .b1 {
  animation-delay: 0s;
}

.scenario-card:hover .b2 {
  animation-delay: 0.1s;
}

.scenario-card:hover .b3 {
  animation-delay: 0.2s;
}

.scenario-card:hover .b4 {
  animation-delay: 0.3s;
}

@keyframes popIn {
  from {
    opacity: 0.5;
    transform: scale(0.8) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1.1) translateY(0);
  }
}

.bounce-arrow {
  color: #00FF66 !important;
  font-size: 4rem;
  right: 15%;
  top: 35%;
  transform: rotate(0deg);
}

.scenario-card:hover .bounce-arrow {
  animation: bounceDiagonal 1s infinite alternate ease-in-out;
}

@keyframes bounceDiagonal {
  from {
    transform: rotate(0deg) translate(0, 0);
  }

  to {
    transform: rotate(0deg) translate(0, -15px);
  }
}

@keyframes shakeTarget {

  0%,
  100% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(10deg);
  }

  75% {
    transform: rotate(-10deg);
  }
}

/* DECISION BOX */
.decision-box {
  background: var(--clr-surface);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  box-shadow: 6px 6px 0px rgba(164, 45, 245, 0.2);
  margin: 3.5rem auto 1rem;
  max-width: 500px;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}

.decision-icon {
  background: var(--clr-secondary);
  color: white;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.decision-text {
  color: var(--clr-text);
  font-size: 1.05rem;
  line-height: 1.4;
  margin: 0;
}

/* RESPONSIVE DESIGN */
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .solution-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-s: 0.875rem;
    --spacing-m: 1.5rem;
    --spacing-l: 2.5rem;
    --spacing-xl: 3.5rem;
  }

  .header {
    height: 60px;
    padding: 0 1rem;
  }

  .nav-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  /* Warning Section Mobile */
  .scenarios-container {
    flex-direction: column;
    padding: 0 1rem;
  }

  .pt-section {
    padding-top: 3rem;
  }

  .pb-section {
    padding-bottom: 3rem;
  }

  .scenario-card {
    box-shadow: -4px 4px 0px #FDF3E1;
  }

  /* Scenario A Overlap Fix */
  .scenario-a .visual-content {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

  .scenario-a .dominoes {
    position: static;
    transform: none;
    margin-bottom: 50px;
  }

  .scenario-a .emoji-explode {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3.5rem;
  }

  .decision-box {
    margin: 3rem 1rem 1rem;
    padding: 1.25rem;
    gap: 1rem;
  }

  .decision-text {
    font-size: 0.95rem;
  }

  /* Guarantee Section Mobile */
  .guarantee-box {
    flex-direction: column;
  }

  .guarantee-visual {
    padding: 3rem 1.5rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .guarantee-content {
    padding: 2.5rem 1.5rem;
  }

  .guarantee-title {
    font-size: 1.8rem;
  }

  .circle-badge {
    width: 200px;
    height: 200px;
  }

  .circle-inner {
    width: 140px;
    height: 140px;
  }

  .circle-inner .number {
    font-size: 4rem;
  }

  .rotating-text text {
    font-size: 15px;
  }

  .guarantee-btn {
    width: 100%;
  }

  /* Urgency Section Mobile */
  .final-urgency-section {
    padding: 3rem 0;
  }

  .urgency-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .urgency-options .option {
    font-size: 1.05rem;
    padding: 1.2rem;
  }

  .urgency-btn {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }

  .urgency-bullets {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 0 1rem;
  }

  .bullet-item {
    width: 100%;
    justify-content: center;
  }

  .logo-text {
    display: none;
  }

  .cta-box {
    padding: 2.5rem 1.5rem;
  }

  h2.section-title {
    font-size: 1.8rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero {
    padding-top: 80px;
    /* Reduz espaço superior no mobile */
    min-height: auto;
    padding-bottom: 2rem;
  }

  .hero-glow {
    width: 90vw;
    height: 90vw;
  }

  .solution-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .faq-question {
    padding: 1.25rem 1rem;
    font-size: 1.1rem;
  }

  .faq-icon {
    font-size: 1.2rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
  }

  .cta-button.large {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
  }

  .current-price strong {
    font-size: 2.8rem;
  }

  .image-wrapper {
    padding: 1.5rem;
    min-height: 250px;
  }
}

@media (max-width: 480px) {
  .cta-button-small {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .current-price strong {
    font-size: 2.4rem;
  }
}