/* ====================================
   SVG ICONS LIBRARY
   ==================================== */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
}

.icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
}

/* Icon color variants */
.icon-success {
  color: var(--color-accent);
}

.icon-error {
  color: #ef4444;
}

.icon-primary {
  color: var(--color-primary);
}

.icon-secondary {
  color: var(--text-secondary);
}

/* Icon spacing adjustments */
.hero-badge .icon {
  margin-right: 0.5rem;
}

.offer-badge .icon {
  margin-right: 0.5rem;
}

/* Bonus cards icon styling */
.bonus-icon.icon {
  width: 3rem;
  height: 3rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

/* Trust badges icon styling */
.badge-icon.icon {
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

/* Timeline icons styling */
.magic-wand .icon {
  color: var(--color-primary);
}

.success-stars .icon {
  color: var(--color-accent);
}

/* List items icon spacing */
li .icon.icon-success {
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* ====================================
   ELEGANT TEXT HIGHLIGHTS SYSTEM
   ==================================== */

/* Palavra com destaque dourado elegante */
.golden-highlight {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  position: relative;
}

/* Sublinhado elegante com gradiente */
.elegant-underline {
  position: relative;
  display: inline-block;
}

.elegant-underline::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  border-radius: 2px;
  animation: elegantGlow 3s ease-in-out infinite;
}

/* Palavra com glow sutil */
.subtle-glow {
  color: var(--color-accent);
  text-shadow: 0 0 12px rgba(248, 174, 58, 0.4);
  font-weight: var(--font-weight-medium);
}

/* Destaque com fundo premium */
.premium-highlight {
  background: linear-gradient(135deg, rgba(248, 174, 58, 0.15), rgba(16, 185, 129, 0.1));
  padding: 2px 12px;
  border-radius: 8px;
  border: 1px solid rgba(248, 174, 58, 0.25);
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  position: relative;
  overflow: hidden;
}

.premium-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.premium-highlight:hover::before {
  left: 100%;
}

/* Sublinhado ondulado elegante */
.wavy-underline {
  position: relative;
  display: inline-block;
}

.wavy-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 4'%3E%3Cpath d='M0,2 Q5,0 10,2 T20,2' stroke='%23F8AE3A' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 20px 4px;
  opacity: 0.8;
}

/* Texto com gradiente elegante */
.gradient-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: var(--font-weight-bold);
  position: relative;
}

/* Destaque com borda lateral */
.side-accent {
  position: relative;
  padding-left: 1rem;
  margin-left: 0.5rem;
}

.side-accent::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(248, 174, 58, 0.3);
}

/* Caixa de destaque premium */
.luxury-box {
  background: var(--gradient-card);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(248, 174, 58, 0.3);
  box-shadow: 
    0 4px 20px rgba(248, 174, 58, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Animações elegantes */
@keyframes elegantGlow {
  0%, 100% { 
    opacity: 0.7; 
    transform: scaleX(1); 
  }
  50% { 
    opacity: 1; 
    transform: scaleX(1.05); 
  }
}

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

/* Responsividade para mobile */
@media (max-width: 768px) {
  .premium-highlight {
    padding: 1px 8px;
    border-radius: 6px;
  }
  
  .elegant-underline::after {
    height: 1px;
    bottom: -2px;
  }
  
  .side-accent {
    padding-left: 0.75rem;
    margin-left: 0.25rem;
  }
  
  .side-accent::before {
    width: 3px;
  }
}

/* ====================================
   MODERN TIMELINE ICONS
   ==================================== */
.modern-icon-container {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon-background {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 
    0 8px 32px rgba(248, 174, 58, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.icon-background:hover {
  transform: scale(1.1);
  box-shadow: 
    0 12px 48px rgba(248, 174, 58, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.timeline-icon {
  width: 36px;
  height: 36px;
  stroke: var(--bg-primary);
  stroke-width: 2;
  fill: none;
  z-index: 2;
}

/* Step 1 - User Registration */
.step-1 .glow-ring {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulseGlow 3s ease-in-out infinite;
}

.step-1 .pulse-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  top: -15px;
  right: 10px;
  animation: pulseDot 2s ease-in-out infinite;
}

/* Step 2 - Selection */
.step-2 .magic-sparkles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: twinkle 2s ease-in-out infinite;
}

.sparkle-1 {
  top: 10px;
  left: 15px;
  animation-delay: 0s;
}

.sparkle-2 {
  top: 20px;
  right: 10px;
  animation-delay: 0.7s;
}

.sparkle-3 {
  bottom: 15px;
  left: 20px;
  animation-delay: 1.4s;
}

.step-2 .selection-indicator {
  position: absolute;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  top: 50%;
  left: -30px;
  animation: slideIndicator 3s ease-in-out infinite;
}

/* Step 3 - Success */
.step-3 .celebration-burst {
  position: absolute;
  width: 100%;
  height: 100%;
}

.burst-ray {
  position: absolute;
  width: 3px;
  height: 20px;
  background: linear-gradient(to top, var(--color-primary), transparent);
  border-radius: 2px;
  transform-origin: bottom center;
  animation: burstRay 2s ease-in-out infinite;
}

.burst-1 {
  top: -25px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  animation-delay: 0s;
}

.burst-2 {
  top: -15px;
  right: -10px;
  transform-origin: bottom center;
  transform: rotate(45deg);
  animation-delay: 0.2s;
}

.burst-3 {
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  animation-delay: 0.4s;
}

.burst-4 {
  top: -15px;
  left: -10px;
  transform-origin: bottom center;
  transform: rotate(-45deg);
  animation-delay: 0.6s;
}

.step-3 .success-indicator {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--glow-amber);
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid var(--color-primary);
}

.wow-text {
  font-size: 10px;
  font-weight: bold;
  color: var(--color-primary);
  animation: bounce 1s ease-in-out infinite;
}

/* Modern Animations */
@keyframes pulseGlow {
  0%, 100% { 
    transform: scale(1); 
    opacity: 0.3; 
  }
  50% { 
    transform: scale(1.05); 
    opacity: 0.6; 
  }
}

@keyframes pulseDot {
  0%, 100% { 
    transform: scale(1); 
    opacity: 0.7; 
  }
  50% { 
    transform: scale(1.5); 
    opacity: 1; 
  }
}

@keyframes slideIndicator {
  0%, 100% { 
    left: -30px; 
    opacity: 0; 
  }
  50% { 
    left: 110px; 
    opacity: 1; 
  }
}

@keyframes burstRay {
  0%, 100% { 
    transform: translateX(-50%) scale(1) rotate(var(--rotation, 0deg)); 
    opacity: 0; 
  }
  50% { 
    transform: translateX(-50%) scale(1.3) rotate(var(--rotation, 0deg)); 
    opacity: 1; 
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .modern-icon-container {
    width: 80px;
    height: 80px;
  }
  
  .icon-background {
    width: 60px;
    height: 60px;
  }
  
  .timeline-icon {
    width: 28px;
    height: 28px;
  }
  
  .step-1 .glow-ring {
    width: 80px;
    height: 80px;
  }
}

/* ====================================
   LARNIER DESIGN SYSTEM - CSS VARIABLES
   ==================================== */
:root {
  /* Colors - Premium Palette */
  --bg-primary: #0F172A;           /* slate-950 */
  --bg-secondary: #1E293B;         /* slate-900 */
  --bg-card: rgba(15, 23, 42, 0.2); /* slate-950/20 with backdrop-blur */
  --text-primary: #FFFFFF;         /* white */
  --text-secondary: #CBD5E1;       /* slate-300 */
  --text-muted: #64748B;           /* slate-500 */
  --color-primary: #F59E0B;        /* amber-500 */
  --color-primary-hover: #F97316;  /* orange-500 */
  --color-accent: #FCD34D;         /* amber-300 */
  --border-color: rgba(100, 116, 139, 0.5); /* slate-500/50 */
  --glow-amber: rgba(245, 158, 11, 0.2); /* amber-500/20 */
  --glow-amber-strong: rgba(245, 158, 11, 0.4); /* amber-500/40 */
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  --gradient-bg: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, #0F172A 50%, rgba(30, 41, 59, 0.8) 100%);
  --gradient-card: linear-gradient(135deg, rgba(30, 41, 59, 0.1) 0%, rgba(15, 23, 42, 0.3) 100%);
  
  /* Typography */
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Font Sizes - Sistema Tipográfico Harmônico */
  --fs-hero: clamp(2.5rem, 5.5vw, 3.75rem);
  --fs-h1: clamp(2rem, 4.5vw, 3rem);
  --fs-h2: clamp(1.75rem, 4vw, 2.5rem);
  --fs-h3: clamp(1.5rem, 3.5vw, 2rem);
  --fs-h4: clamp(1.25rem, 3vw, 1.5rem);
  --fs-h5: clamp(1.125rem, 2.5vw, 1.25rem);
  --fs-body: clamp(1rem, 2.25vw, 1.125rem);
  --fs-small: clamp(0.875rem, 2vw, 1rem);
  --fs-xs: clamp(0.75rem, 1.5vw, 0.875rem);
  
  /* Spacing */
  --section-padding: clamp(80px, 10vw, 120px);
  --container-padding: clamp(20px, 5vw, 40px);
  --element-gap: clamp(1.5rem, 3vw, 3rem);
  
  /* Layout */
  --container-max-width: 1200px;
  --content-max-width: 800px;
  
  /* Animation */
  --transition-fast: 0.2s ease-out;
  --transition-normal: 0.3s ease-out;
  --transition-slow: 0.5s ease-out;
  
  /* Effects */
  --blur-glass: 16px;
  --blur-backdrop: 8px;
  --shadow-glow: 0 0 40px var(--glow-amber);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: var(--font-weight-light);
  overflow-x: hidden;
  position: relative;
  letter-spacing: 0.025em;
}

/* ====================================
   TYPOGRAPHY
   ==================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-light);
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--fs-h1);
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--fs-h2);
  font-weight: var(--font-weight-medium);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 0.875rem;
}

h3 {
  font-size: var(--fs-h3);
  font-weight: var(--font-weight-medium);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: var(--fs-h4);
  font-weight: var(--font-weight-medium);
  line-height: 1.35;
  margin-bottom: 0.625rem;
}

h5 {
  font-size: var(--fs-h5);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--fs-body);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
}

strong {
  color: var(--text-primary);
  font-weight: var(--font-weight-semibold);
}

.highlight {
  color: var(--color-accent);
  font-weight: var(--font-weight-medium);
}

.brand-name {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: var(--font-weight-semibold);
}

/* ====================================
   LAYOUT & CONTAINERS
   ==================================== */
.hero .container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 0 0 var(--container-padding);
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

/* ====================================
   FLOATING ELEMENTS BACKGROUND
   ==================================== */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.floating-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 8s infinite ease-in-out;
  box-shadow: 0 0 20px var(--glow-amber);
}

.floating-dot:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-dot:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-dot:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

.floating-dot:nth-child(4) {
  top: 40%;
  right: 30%;
  animation-delay: 6s;
}

.floating-dot:nth-child(5) {
  bottom: 20%;
  right: 10%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.6;
  }
}

/* ====================================
   BUTTONS & CTAs
   ==================================== */

/* CTA Pulse Animation */
@keyframes ctaPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  }
  70% {
    transform: scale(1.03);
    box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

@keyframes ctaGlow {
  0%, 100% {
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.3);
  }
  50% {
    box-shadow: 0 15px 50px rgba(245, 158, 11, 0.5);
  }
}
.cta-button-primary,
.cta-button-main,
.cta-button-final,
.cta-button-sticky {
  background: var(--gradient-primary);
  color: var(--text-primary);
  border: none;
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  letter-spacing: 0.025em;
  text-transform: uppercase;
  box-shadow: var(--shadow-card);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  /* CTA Pulse Animation */
  animation: ctaPulse 2s infinite, ctaGlow 3s ease-in-out infinite;
}

.cta-button-primary:hover,
.cta-button-main:hover,
.cta-button-final:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(245, 158, 11, 0.3);
  animation-play-state: paused; /* Pause animation on hover */
}

.cta-button-premium:hover {
  animation-play-state: paused; /* Pause animation on hover */
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
}

.cta-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-button-primary:hover .cta-shine,
.cta-button-main:hover .cta-shine,
.cta-button-final:hover .cta-shine {
  left: 100%;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
  min-height: 100vh;
  background: var(--gradient-bg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow-x: visible;
  overflow-y: hidden;
  padding: 2rem 0 2rem 2rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, var(--glow-amber) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, var(--glow-amber) 0%, transparent 50%);
  opacity: 0.1;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: var(--content-max-width);
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

/* New Hero Layout - SuperMago Style */
.hero-content-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 900px;
  min-height: 70vh;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 10;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  width: 100%;
  max-width: none;
  padding: 0;
}


.hero-title-new {
  font-size: var(--fs-hero);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.hero-subtitle-new {
  font-size: var(--fs-h4);
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 auto 2rem auto;
  text-align: center;
  max-width: 600px;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.5;
  justify-content: center;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.benefit-icon {
  font-size: 1.25rem;
  color: var(--color-accent);
  min-width: 24px;
  text-align: center;
}

.benefit-icon.icon {
  color: var(--color-accent);
}

.item-icon.icon {
  color: var(--text-muted);
}

.highlight-icon.icon {
  color: var(--color-primary);
}

.result-icon.icon {
  margin-right: 0.5rem;
}

.card-result.negative .result-icon.icon {
  color: #ef4444;
}

.card-result.positive .result-icon.icon {
  color: var(--color-primary);
}

.card-icon.icon {
  color: var(--text-muted);
}


.positive .icon.icon-success {
  margin-right: 0.5rem;
}

.negative .icon.icon-error {
  margin-right: 0.5rem;
  color: #ef4444;
}


/* CTA icons removed for cleaner design */

.guarantee-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 0.25rem;
  stroke: #10b981;
  vertical-align: middle;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.cta-guarantee {
  margin-top: 0.75rem;
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-weight: var(--font-weight-regular);
  text-align: center;
  opacity: 0.9;
}


/* Dashboard styles removidos - usando imagem real */

.stats {
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: var(--font-weight-medium);
}

.client-sites {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.site-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.client-name {
  color: var(--text-primary);
  font-weight: var(--font-weight-medium);
  font-size: 0.9rem;
}

.site-url {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.site-stats {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: right;
}

.views {
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: var(--font-weight-medium);
}

.status.active {
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
}

.quick-actions {
  display: flex;
  gap: 0.75rem;
}

.create-btn, .manage-btn {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.create-btn {
  background: var(--gradient-primary);
  color: var(--text-primary);
}

.manage-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.create-btn:hover, .manage-btn:hover {
  transform: translateY(-1px);
}

/* Dashboard note styles removidos */

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: var(--bg-card);
  backdrop-filter: blur(var(--blur-backdrop));
  border: 1px solid var(--border-color);
  border-radius: 50px;
  margin-bottom: 0.5rem;
  font-size: var(--fs-small);
  font-weight: var(--font-weight-medium);
  color: var(--color-accent);
}

.hero-title {
  margin-bottom: 2rem;
  text-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}

.hero-subtitle {
  margin-bottom: 2rem;
  font-weight: var(--font-weight-light);
  color: var(--text-secondary);
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 450px;
}

.cta-subtitle {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin: 0;
}

.hero-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.line {
  position: absolute;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.3;
}

.line-1 {
  top: 20%;
  left: 0;
  width: 200px;
  transform: rotate(45deg);
}

.line-2 {
  bottom: 30%;
  right: 0;
  width: 150px;
  transform: rotate(-45deg);
}

/* ====================================
   SECTION STYLING
   ==================================== */
.section-title {
  font-size: var(--fs-h1);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  text-align: center;
  line-height: 1.2;
  margin-bottom: clamp(3rem, 6vw, 4rem);
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.section-problem {
  background: var(--bg-secondary);
  background-image: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
}

.section-enemy {
  background: var(--bg-primary);
}

.section-gap {
  background: var(--bg-secondary);
  background-image: radial-gradient(circle at 30% 70%, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
}

.gap-diagram {
  margin: 3rem 0;
  text-align: center;
}

.gap-diagram h3 {
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: var(--font-weight-light);
}

.gap-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(var(--blur-backdrop));
}

.gap-mockup {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  /* Otimizações de performance */
  object-fit: cover;
  object-position: center;
  image-rendering: optimizeQuality;
}

.gap-mockup:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.reality-check {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 3rem;
  text-align: center;
  backdrop-filter: blur(var(--blur-backdrop));
}

.reality-check p:first-child {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

/* Responsive adjustments for gap section */
@media (max-width: 1024px) {
  .gap-image-container {
    max-width: 600px;
    padding: 1.25rem;
  }
}

@media (max-width: 768px) {
  .gap-image-container {
    max-width: 500px;
    padding: 1rem;
    margin: 0 1rem;
  }
  
  .gap-mockup {
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }
  
  .gap-mockup:hover {
    transform: none; /* Disable hover effect on mobile */
  }
}

@media (max-width: 480px) {
  .gap-image-container {
    max-width: 100%;
    padding: 0.75rem;
    margin: 0 0.5rem;
    border-radius: 16px;
  }
  
  .gap-mockup {
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }
  
  .gap-diagram h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.section-solution-intro {
  background: var(--bg-primary);
}

.section-feature-hero {
  background: var(--bg-secondary);
}

/* Section .section-benefits removed - tabela redundante */

.section-offer {
  background: var(--bg-secondary);
  background-image: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
}

.section-guarantee {
  background: var(--bg-primary);
}

.section-social-proof {
  background: var(--bg-secondary);
}

.section-final-cta {
  background: var(--bg-primary);
  background-image: radial-gradient(circle at 50% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
}

.section-ps {
  background: var(--bg-secondary);
  padding: 3rem 0;
}

/* ====================================
   STORY VISUAL STATS
   ==================================== */
.story-visual {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.story-stat {
  text-align: center;
  padding: 2rem;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  backdrop-filter: blur(var(--blur-backdrop));
  transition: all var(--transition-normal);
}

.story-stat:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.1);
}

.stat-number {
  display: block;
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px var(--glow-amber);
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
}

/* ====================================
   PROBLEM HIGHLIGHT
   ==================================== */
.problem-highlight {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 3rem;
  text-align: center;
  backdrop-filter: blur(var(--blur-backdrop));
}

.problem-text {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.problem-conclusion {
  font-size: 1.25rem;
  color: var(--text-primary);
  font-weight: var(--font-weight-semibold);
  margin: 0;
}

.problem-final {
  font-size: 1.5rem;
  color: var(--color-accent);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  margin-top: 2rem;
}

/* ====================================
   ELITE JOURNEY SECTION
   ==================================== */
.section-elite-journey {
  background: var(--bg-primary);
  background-image: radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 70% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.journey-subtitle {
  text-align: center;
  font-size: var(--fs-body);
  color: var(--text-secondary);
  margin-top: 1rem;
  margin-bottom: 4rem;
  opacity: 0.9;
}

.journey-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.journey-path {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100px;
  transform: translateX(-50%);
  z-index: 1;
}

.path-line {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.journey-steps {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 2rem 0;
}

.journey-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.journey-step.traditional .step-content {
  order: 1;
}

.journey-step.traditional .step-arrow {
  order: 2;
}

.journey-step.traditional .step-icon {
  order: 3;
}

.journey-step.elite .step-icon {
  order: 1;
}

.journey-step.elite .step-arrow {
  order: 2;
}

.journey-step.elite .step-content {
  order: 3;
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.traditional .step-icon {
  background: rgba(107, 114, 128, 0.1);
  border: 2px solid rgba(107, 114, 128, 0.3);
  color: #9ca3af;
}

.elite .step-icon {
  background: rgba(245, 158, 11, 0.1);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.step-icon svg {
  width: 32px;
  height: 32px;
}

.step-content {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.traditional .step-content {
  border: 1px solid rgba(107, 114, 128, 0.2);
  text-align: right;
}

.elite .step-content {
  border: 1px solid rgba(245, 158, 11, 0.3);
  text-align: left;
}

.step-content:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.step-content h4 {
  font-size: var(--fs-h4);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.traditional .step-content h4 {
  color: #9ca3af;
}

.elite .step-content h4 {
  color: var(--color-primary);
}

.step-content p {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.step-impact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  font-weight: var(--font-weight-medium);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.step-impact.negative {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #fca5a5;
}

.step-impact.positive {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--color-primary);
}

.step-impact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  opacity: 0.7;
}

.step-arrow svg {
  width: 24px;
  height: 24px;
  animation: slideRight 2s ease-in-out infinite;
}

.journey-result {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.result-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
  border: 2px solid var(--color-primary);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 600px;
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  animation: shimmer 3s infinite;
}

.result-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem auto;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
}

.result-icon svg {
  width: 28px;
  height: 28px;
}

.result-card h3 {
  font-size: var(--fs-h3);
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-weight: var(--font-weight-semibold);
}

.result-card p {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.result-stats {
  border-top: 1px solid rgba(245, 158, 11, 0.3);
  padding-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1;
}

.stat-label {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
}

/* Journey Animations */
@keyframes slideRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Journey Mobile Responsiveness */
@media (max-width: 768px) {
  .section-elite-journey {
    padding: clamp(3rem, 6vw, 4rem) 0;
  }
  
  .journey-subtitle {
  margin-bottom: 2rem;
    font-size: var(--fs-small);
  }
  
  .journey-container {
    max-width: 100%;
  }
  
  .journey-path {
    display: none;
  }
  
  .journey-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
  }
  
  .journey-step {
    display: block;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 0;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .journey-step.traditional {
    border: 1px solid rgba(107, 114, 128, 0.2);
  }
  
  .journey-step.elite {
    border: 1px solid rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.02);
  }
  
  .journey-step:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .traditional .step-icon {
    background: rgba(107, 114, 128, 0.1);
    border: 2px solid rgba(107, 114, 128, 0.2);
    color: #9ca3af;
  }
  
  .elite .step-icon {
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
  }
  
  .step-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .step-content {
    background: transparent;
    border: none;
    padding: 0;
  text-align: center;
    width: 100%;
    max-width: 100%;
  }
  
  .step-content h4 {
    font-size: var(--fs-h5);
    margin-bottom: 0.75rem;
    font-weight: var(--font-weight-semibold);
    line-height: 1.3;
    max-width: 100%;
    word-break: normal;
    overflow-wrap: normal;
  }
  
  .traditional .step-content h4 {
    color: #9ca3af;
  }
  
  .elite .step-content h4 {
    color: var(--color-primary);
  }
  
  .step-content p {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
    max-width: 100%;
    word-break: normal;
    overflow-wrap: normal;
  }
  
  .step-impact {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-medium);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    margin-top: 0.5rem;
    max-width: 100%;
    word-break: normal;
    text-align: center;
  }
  
  .step-impact.negative {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #fca5a5;
  }
  
  .step-impact.positive {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--color-primary);
  }
  
  .step-impact svg {
    width: 12px;
    height: 12px;
  }
  
  .step-arrow {
    display: none;
  }
  
  .result-card {
    padding: 2rem 1.5rem;
    margin: 2rem 0 0 0;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .section-elite-journey {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
  
  .journey-subtitle {
  margin-bottom: 1.5rem;
    font-size: var(--fs-xs);
  }
  
  .journey-steps {
    gap: 0.75rem;
    padding: 0;
  }
  
  .journey-step {
    padding: 1.25rem 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.75rem;
  }
  
  .step-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .step-content h4 {
    font-size: var(--fs-body);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    max-width: 100%;
    word-break: normal;
    overflow-wrap: normal;
  }
  
  .step-content p {
    font-size: var(--fs-xs);
    line-height: 1.4;
    margin-bottom: 0.75rem;
    max-width: 100%;
    word-break: normal;
    overflow-wrap: normal;
  }
  
  .step-impact {
    font-size: 0.7rem;
    padding: 0.4rem 0.6rem;
    gap: 0.3rem;
    max-width: 100%;
    word-break: normal;
    text-align: center;
  }
  
  .step-impact svg {
    width: 10px;
    height: 10px;
  }
  
  .result-card {
    padding: 1.5rem 1rem;
    margin: 1.5rem 0 0 0;
  }
  
  .result-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .result-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .result-card h3 {
    font-size: var(--fs-h5);
    margin-bottom: 0.75rem;
  }
  
  .result-card p {
    font-size: var(--fs-small);
    margin-bottom: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
}


/* ====================================
   SOLUTION SECTION
   ==================================== */
.solution-description {
  max-width: var(--content-max-width);
  margin: 0 auto;
  text-align: center;
}

.solution-main {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.solution-definition {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.solution-promise {
  font-size: 1.125rem;
  color: var(--color-accent);
  font-weight: var(--font-weight-medium);
  margin-bottom: 2rem;
}

.solution-highlight {
  background: var(--gradient-card);
  border: 1px solid var(--color-primary);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 2rem;
  backdrop-filter: blur(var(--blur-backdrop));
  box-shadow: 0 0 30px var(--glow-amber);
}

.solution-highlight p {
  font-size: 1.25rem;
  margin: 0;
  color: var(--text-primary);
  font-weight: var(--font-weight-medium);
}

/* ====================================
   FEATURE HERO SECTION
   ==================================== */
.feature-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-text {
  order: 1;
}

.feature-text p {
  font-size: var(--fs-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.feature-impact p {
  font-size: var(--fs-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.feature-mockup {
  order: 2;
}

.feature-impact {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 2rem;
  backdrop-filter: blur(var(--blur-backdrop));
}

.stat-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--color-primary);
}

.stat-number {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1;
}

.stat-text {
  flex: 1;
  font-size: var(--fs-body);
  color: var(--text-secondary);
}

/* ====================================
   MOCKUP STYLES
   ==================================== */
.mockup-frame {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1rem;
  backdrop-filter: blur(var(--blur-backdrop));
  box-shadow: var(--shadow-card);
}

.mockup-content {
  background: var(--bg-primary);
  border-radius: 12px;
  overflow: hidden;
}

.mockup-header {
  padding: 1rem;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
}

.mockup-dots {
  display: flex;
  gap: 0.5rem;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-muted);
}

.mockup-dots span:first-child {
  background: #ef4444;
}

.mockup-dots span:nth-child(2) {
  background: #f59e0b;
}

.mockup-dots span:last-child {
  background: #10b981;
}

.mockup-body {
  padding: 2rem;
}

.mockup-property {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Estilo de mockup-image duplicado removido - usando apenas o do hero */

.mockup-details h3 {
  margin: 0 0 0.5rem 0;
  color: var(--text-primary);
  font-size: 1rem;
}

.mockup-details p {
  margin: 0 0 0.5rem 0;
  color: var(--color-accent);
  font-weight: var(--font-weight-semibold);
}

.mockup-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.mockup-features span {
  padding: 0.25rem 0.5rem;
  background: var(--bg-card);
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
}


/* ====================================
   HOW IT WORKS TIMELINE
   ==================================== */
.section-how-it-works {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  position: relative;
}

.section-how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(234, 179, 8, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Timeline Clean Design */
.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.timeline-step:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
}

/* Step Numbers - Clean Design */
.step-number {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
  flex-shrink: 0;
}

/* Step Cards - Clean Design */
.step-card {
  flex: 1;
  padding: 0;
}

/* Hide visual elements - clean design */
.step-visual {
  display: none;
}

.step-content h3 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.step-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
}

.highlight-icon {
  width: 16px;
  height: 16px;
}

/* Timeline Connector - Hidden for clean design */
.timeline-connector {
  display: none;
}

/* OLD Illustrations - Disabled */
/* .step-illustration {
  width: 200px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
} */

/* OLD Step 1 - Laptop Illustration - Disabled */
/* .laptop {
  width: 120px;
  height: 80px;
  background: var(--text-primary);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
} 

-- Rest of old illustration styles commented out --

*/

/* OLD Illustration styles - All disabled
.laptop::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 6px;
  background: var(--text-primary);
  border-radius: 0 0 50px 50px;
}

.screen {
  width: 110px;
  height: 68px;
  background: var(--bg-primary);
  margin: 6px;
  border-radius: 4px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-setup .avatar {
  width: 24px;
  height: 24px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
  color: var(--text-primary);
}

.form-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-lines .line {
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  opacity: 0.7;
}

.form-lines .line.short {
  width: 60%;
}

.floating-checkmark {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  animation: bounce 1s infinite alternate;
}

/* Step 2 - Phone Illustration */
.phone {
  width: 80px;
  height: 140px;
  background: var(--text-primary);
  border-radius: 20px;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.phone::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 4px;
  background: var(--text-muted);
  border-radius: 2px;
}

.phone-screen {
  width: 68px;
  height: 120px;
  background: var(--bg-primary);
  margin: 6px;
  border-radius: 16px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.property-image {
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 6px;
}

.prop-title {
  height: 8px;
  width: 80%;
  background: var(--color-primary);
  border-radius: 2px;
}

.prop-price {
  height: 6px;
  width: 60%;
  background: var(--color-accent);
  border-radius: 2px;
  margin-top: 2px;
}

.prop-features {
  display: flex;
  gap: 2px;
  margin-top: 4px;
}

.prop-features span {
  height: 4px;
  width: 16px;
  background: var(--text-muted);
  border-radius: 2px;
}

.magic-wand {
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 1.5rem;
  animation: rotate 2s linear infinite;
}

/* Step 3 - Client Reaction */
.client-reaction {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.wow-bubble {
  width: 60px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--text-primary);
  font-size: 0.8rem;
  position: relative;
}

.wow-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--color-primary);
}

.client-device {
  width: 80px;
  height: 100px;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 8px;
  border: 1px solid var(--border-color);
}

.device-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.exclusive-badge {
  font-size: 0.6rem;
  color: var(--color-accent);
  font-weight: bold;
  text-align: center;
  padding: 2px;
}

.luxury-property {
  flex: 1;
  background: var(--gradient-primary);
  border-radius: 4px;
}

.cta-button {
  background: var(--color-primary);
  color: var(--text-primary);
  font-size: 0.5rem;
  padding: 4px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
}

.success-stars {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  animation: twinkle 1.5s infinite;
}
End of old illustration styles */

/* Bottom CTA */
.how-it-works-cta {
  background: var(--gradient-card);
  border-radius: 24px;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  margin: 4rem calc(-1 * var(--container-padding)) 0 calc(-1 * var(--container-padding));
  width: calc(100% + 2 * var(--container-padding));
  backdrop-filter: blur(var(--blur-backdrop));
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-it-works-cta h3 {
  font-size: var(--fs-h2);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 1.5rem;
  text-align: center;
}

.how-it-works-cta p {
  color: var(--text-secondary);
  font-size: var(--fs-body);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  text-align: center;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

/* Desktop: Garantir largura total */
@media (min-width: 769px) {
  .how-it-works-cta {
    margin: 4rem calc(-1 * var(--container-padding)) 0 calc(-1 * var(--container-padding)) !important;
    width: calc(100% + 2 * var(--container-padding)) !important;
  }
}

/* Stack Value - Novo Design */
.final-offer-summary {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
  border: 2px solid var(--color-primary);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.final-offer-summary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  animation: shimmer 3s infinite;
}

.offer-header {
  text-align: center;
  margin-bottom: 2rem;
}

.offer-header h4 {
  font-size: var(--fs-h3);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin: 0;
}

.offer-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.offer-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-2px);
}

.item-icon {
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.item-icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--bg-primary);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.item-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.item-title {
  font-size: var(--fs-body);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  line-height: 1.4;
}

.item-value {
  font-size: var(--fs-small);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
}

.total-value-section {
  background: rgba(245, 158, 11, 0.1);
  border: 2px dashed var(--color-primary);
  border-radius: 15px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}

.total-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.total-label {
  font-size: var(--fs-small);
  font-weight: var(--font-weight-semibold);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.total-amount {
  font-size: var(--fs-h2);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.final-price-section {
  text-align: center;
  margin: 2rem 0;
}

.final-price-text {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.final-price-highlight {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  padding: 1rem;
  background: var(--gradient-primary);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  margin-bottom: 1.5rem;
}

.final-price-highlight .currency {
  font-size: var(--fs-h3);
  font-weight: var(--font-weight-bold);
  color: var(--bg-primary);
}

.final-price-highlight .amount {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--bg-primary);
  line-height: 1;
}

.final-price-highlight .period {
  font-size: var(--fs-body);
  font-weight: var(--font-weight-medium);
  color: var(--bg-primary);
  opacity: 0.9;
}

.cta-section {
  text-align: center;
}

.cta-button-premium {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  padding: 1.5rem 2.5rem;
  border-radius: 15px;
  font-size: var(--fs-body);
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 1rem auto;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  /* CTA Pulse Animation */
  animation: ctaPulse 2s infinite, ctaGlow 3s ease-in-out infinite;
}

/* Hover do botão premium movido para seção anterior */

.cta-icon {
  font-size: 1.25rem;
}

.cta-guarantee {
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-weight: var(--font-weight-medium);
  margin: 0;
  opacity: 0.9;
}

/* FAQ Section - Elegant Design */
.section-faq {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  position: relative;
}

.section-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.faq-subtitle {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  margin-top: 1rem;
  font-weight: var(--font-weight-regular);
  opacity: 0.9;
}

.elegant-underline {
  position: relative;
  display: inline-block;
}

.elegant-underline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0.7;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.faq-item.active {
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.1);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-question h4 {
  font-size: var(--fs-h5);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  background: var(--color-primary);
  transform: rotate(180deg);
}

.faq-item.active .faq-toggle svg {
  stroke: var(--bg-primary);
}

.faq-answer {
  padding: 0 2rem 1.5rem 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  opacity: 1;
  padding-top: 0;
}

.faq-answer p {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: var(--font-weight-regular);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: var(--text-primary);
  font-weight: var(--font-weight-semibold);
}

/* FAQ Mobile Responsiveness */
@media (max-width: 768px) {
  .faq-header {
    margin-bottom: 3rem;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
  }
  
  .faq-question h4 {
    font-size: var(--fs-body);
  }
  
  .faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }
  
  .faq-answer p {
    font-size: var(--fs-small);
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .faq-toggle {
    align-self: flex-end;
    margin-top: -2rem;
  }
  
  .faq-answer {
    padding: 0 1.25rem 1rem 1.25rem;
  }
}

/* Animations */
@keyframes twinkle {
  0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.7; transform: translateX(-50%) scale(1.1); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-3px); }
}

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

/* Mobile Responsiveness - Clean Design */
@media (max-width: 768px) {
  .timeline-container {
    padding: 1rem 0;
  }
  
  .timeline-step {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin: 0 auto;
  }
  
  .step-content h3 {
    font-size: var(--fs-h4);
    text-align: center;
  }
  
  .step-content p {
    text-align: center;
    font-size: var(--fs-body);
  }
  
  .step-highlight {
    justify-content: center;
    margin: 0 auto;
  }
  
  .how-it-works-cta {
    padding: 2rem 1.5rem !important;
    margin: 3rem 0 0 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  
  .how-it-works-cta h3 {
    font-size: var(--fs-h3) !important;
  }
  
  .final-offer-summary {
    padding: 2rem 1.5rem !important;
  }
  
  .offer-item {
    padding: 1rem !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.75rem !important;
  }
  
  .final-price-highlight {
    flex-direction: column !important;
    gap: 0.5rem !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .final-price-highlight .amount {
    font-size: clamp(1.75rem, 4vw, 2.25rem) !important;
  }
  
  .final-price-highlight .currency {
    font-size: var(--fs-h4) !important;
  }
  
  .final-price-highlight .period {
    font-size: var(--fs-small) !important;
  }
  
  .cta-button-premium {
    padding: 1.25rem 2rem !important;
    font-size: var(--fs-small) !important;
  }
}

/* ====================================
   BENEFITS TABLE - REMOVED
   ==================================== */
/* Table styles removed - using enhanced comparison cards instead */

/* ====================================
   OFFER SECTION
   ==================================== */
.offer-intro {
  text-align: center;
  margin-bottom: 3rem;
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
}

.offer-badge {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  border-radius: 50px;
  font-weight: var(--font-weight-semibold);
  margin-top: 2rem;
  animation: pulse 2s infinite;
}

.offer-box {
  background: var(--gradient-card);
  border: 2px solid var(--color-primary);
  border-radius: 30px;
  padding: 3rem;
  backdrop-filter: blur(var(--blur-glass));
  box-shadow: 0 0 50px var(--glow-amber);
  position: relative;
  overflow: hidden;
}

.offer-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.offer-main {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.offer-main h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.offer-value {
  color: var(--color-accent);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
}

.bonuses-intro {
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
  border: 2px solid var(--color-primary);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}


.bonuses-intro h3 {
  color: var(--color-primary);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: var(--font-weight-bold);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.bonuses-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.bonus-card {
  background: linear-gradient(135deg, var(--bg-card), rgba(245, 158, 11, 0.05));
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(var(--blur-backdrop));
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.bonus-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
}

.bonus-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  display: inline-block;
}

.bonus-card h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
}

.bonus-value {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 1.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.bonus-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.value-stack {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.value-stack::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0.6;
}

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

.total-value {
  text-align: center;
  margin-bottom: 2rem;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
}


.total-value h3 {
  color: var(--text-primary);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.price-large {
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  text-shadow: none;
}

/* Price crossed out effect */
.price-crossed {
  text-decoration: line-through;
  text-decoration-color: #ff0000;
  text-decoration-thickness: 3px;
  position: relative;
}

.offer-price {
  text-align: center;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.offer-price h3 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  margin: 1.5rem 0;
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-color);
}

.price-currency {
  font-size: 2.5rem;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  margin-right: 0.25rem;
  line-height: 1;
}

.price-main {
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1;
  text-shadow: none;
}

.price-cents {
  font-size: 4rem;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.price-period {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  color: var(--text-muted);
  background: var(--bg-card);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--border-color);
}

.cta-container {
  text-align: center;
}

.cta-button-main {
  width: 100%;
  max-width: 500px;
  padding: 1.5rem 2.5rem;
  font-size: var(--fs-body);
  font-weight: var(--font-weight-semibold);
  margin: 0 auto;
  min-height: 70px;
}

.cta-button-final {
  width: 100%;
  max-width: 600px;
  padding: 1.75rem 2.5rem;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  min-height: 75px;
}

.cta-disclaimer {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}

/* ====================================
   GUARANTEE SECTION
   ==================================== */
.guarantee-content {
  max-width: var(--content-max-width);
  margin: 0 auto;
  text-align: center;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 3rem;
  background: var(--gradient-card);
  border: 2px solid var(--color-primary);
  border-radius: 20px;
  margin-bottom: 2rem;
  backdrop-filter: blur(var(--blur-backdrop));
  animation: pulse 3s infinite;
}

.guarantee-icon {
  font-size: 2rem;
}

.guarantee-icon.icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.guarantee-badge h3 {
  margin: 0;
  color: var(--color-primary);
}

.guarantee-promise {
  font-size: 1.25rem;
  color: var(--text-primary);
  font-weight: var(--font-weight-semibold);
}

/* ====================================
   TESTIMONIALS
   ==================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Testimonial Image Cards */
.testimonial-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--gradient-card);
  border: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.15);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.testimonial-image-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(252, 211, 77, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.testimonial-image-card:hover::before {
  opacity: 1;
}

.testimonial-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 80px rgba(245, 158, 11, 0.25);
  border-color: rgba(245, 158, 11, 0.3);
}

.testimonial-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.testimonial-image-card:hover .testimonial-image {
  transform: scale(1.02);
}

/* Responsive design for testimonial images */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .testimonial-image-card {
    border-radius: 16px;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .testimonial-image-card:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 480px) {
  .testimonials-grid {
    gap: 1rem;
  }
  
  .testimonial-image-card {
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(245, 158, 11, 0.12);
  }
  
  .testimonial-image-card:hover {
    transform: none; /* Disable hover effects on very small screens */
    box-shadow: 0 15px 50px rgba(245, 158, 11, 0.12);
  }
}

.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(var(--blur-backdrop));
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}

.testimonial-info h4 {
  margin: 0;
  color: var(--text-primary);
  font-size: 1rem;
}

.testimonial-info p {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--fs-small);
}

.testimonial-card > p {
  margin: 0;
  font-style: italic;
  color: var(--text-secondary);
}

/* ====================================
   FINAL CTA SECTION
   ==================================== */
.market-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 3rem;
  backdrop-filter: blur(var(--blur-backdrop));
}

.market-stat {
  text-align: center;
  flex: 1;
}

.big-number {
  display: block;
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px var(--glow-amber);
}

.stat-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
}

.growth-arrow {
  font-size: 2rem;
  color: var(--color-accent);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(10px);
  }
  60% {
    transform: translateX(5px);
  }
}

.bridge-statement {
  font-size: 1.5rem;
  color: var(--text-primary);
  text-align: center;
  margin: 2rem 0;
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
}

.urgency-message {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
  border: 1px solid var(--color-primary);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  margin: 3rem 0;
  backdrop-filter: blur(var(--blur-backdrop));
  animation: pulse 3s infinite;
}

.urgency-message h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.urgency-message p {
  margin: 0;
  color: var(--text-secondary);
  font-weight: var(--font-weight-medium);
}

.final-cta-button {
  text-align: center;
  margin-top: 3rem;
}

.final-cta-button .cta-button-final {
  background: var(--gradient-primary);
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.3);
  border: 2px solid transparent;
  background-clip: padding-box;
}

.final-cta-button .cta-button-final {
  width: 100%;
  max-width: 600px;
  padding: 2rem 3rem;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.final-offer-summary {
  max-width: 500px;
  margin: 0 auto;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(var(--blur-backdrop));
}

.final-offer-summary h4 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.final-offer-summary ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.final-offer-summary li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: var(--fs-small);
}

.final-value {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.final-price {
  text-align: center;
  font-size: 1.25rem;
}

.highlight-price {
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  font-size: 1.5rem;
}

/* ====================================
   PS SECTION
   ==================================== */
.section-ps {
  background: var(--bg-primary);
  text-align: center;
}

.ps-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ps-content h3 {
  font-size: var(--fs-h2);
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-weight: var(--font-weight-bold);
}

.ps-content p {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 2.5rem 0;
}

/* FAQ CTA Section */
.section-faq-cta {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), transparent);
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  text-align: center;
}

.faq-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.faq-cta-button {
  margin: 2rem 0;
}

.faq-cta-main {
  width: 100%;
  max-width: 450px;
  padding: 1rem 2rem;
  font-size: var(--fs-body);
  font-weight: var(--font-weight-semibold);
  border-radius: 12px;
  background: var(--gradient-primary);
  border: 2px solid var(--color-primary);
  color: var(--bg-primary);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.4);
  border-color: rgba(245, 158, 11, 0.8);
}

.faq-cta-guarantee {
  margin-top: 1.5rem;
}

.faq-cta-guarantee p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  opacity: 0.9;
  margin: 0;
  line-height: 1.5;
}

.ps-cta-button {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0;
}

.ps-cta-main {
  width: 100%;
  max-width: 450px;
  padding: 1rem 2rem;
  font-size: var(--fs-body);
  font-weight: var(--font-weight-semibold);
  border-radius: 12px;
  background: var(--gradient-primary);
  border: 2px solid var(--color-primary);
  color: var(--bg-primary);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ps-cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.4);
  border-color: rgba(245, 158, 11, 0.8);
}


.ps-guarantee {
  margin-top: 2rem;
}

.ps-guarantee p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  opacity: 0.8;
  margin: 0;
  line-height: 1.5;
}

/* FAQ CTA & PS Mobile Responsiveness */
@media (max-width: 768px) {
  .faq-cta-main,
  .ps-cta-main {
    padding: 0.875rem 1.5rem;
    font-size: var(--fs-small);
    max-width: 100%;
  }
  
  .faq-cta-guarantee p,
  .ps-guarantee p {
    font-size: var(--fs-xs);
  }
}

@media (max-width: 480px) {
  .ps-content p {
    margin-bottom: 2rem;
  }
  
  .ps-cta-button,
  .faq-cta-button {
    margin: 2rem 0;
  }
  
  .faq-cta-main,
  .ps-cta-main {
    padding: 0.75rem 1.25rem;
  }
}

/* ====================================
   TRUST BADGES
   ==================================== */
.trust-badges {
  padding: 2rem 0;
  background: var(--bg-primary);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  backdrop-filter: blur(var(--blur-backdrop));
  font-size: var(--fs-small);
  color: var(--text-secondary);
  transition: all var(--transition-normal);
}

.badge:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 1.25rem;
}

/* ====================================
   STICKY CTA MOBILE - REMOVED
   ==================================== */
.sticky-cta-mobile {
  display: none !important;
}

/* ====================================
   SOCIAL PROOF NOTIFICATIONS
   ==================================== */
#social-proof-container {
  position: fixed !important;
  bottom: 20px !important;
  left: 20px !important;
  z-index: 999999 !important;
  pointer-events: none;
  width: auto;
  height: auto;
  display: block !important;
  visibility: visible !important;
}

.social-proof-notification {
  background: var(--gradient-card);
  backdrop-filter: blur(var(--blur-backdrop));
  border: 1px solid var(--color-primary);
  border-radius: 14px;
  padding: 0;
  margin-bottom: 1rem;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
  overflow: hidden;
  position: relative;
  pointer-events: auto;
  will-change: transform, opacity;
}

.social-proof-notification::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
}

.social-proof-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1rem 1rem 1.5rem;
}

.social-proof-icon {
  font-size: 1.5rem;
  min-width: 30px;
  text-align: center;
  filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.social-proof-text {
  flex: 1;
}

.social-proof-text p {
  margin: 0 0 0.25rem 0;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: var(--font-weight-medium);
}

.social-proof-text strong {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

.social-proof-text em {
  color: var(--color-accent);
  font-style: normal;
  font-weight: var(--font-weight-medium);
}

.social-proof-text small {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: var(--font-weight-regular);
}

.social-proof-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
  opacity: 0.6;
  pointer-events: auto;
}

.social-proof-close:hover {
  background: rgba(245, 158, 11, 0.2);
  color: var(--color-primary);
  opacity: 1;
  transform: scale(1.1);
}

/* Mobile Responsiveness for Social Proof */
@media (max-width: 768px) {
  #social-proof-container {
    bottom: 15px;
    left: 15px;
    right: 15px;
  }
  
  .social-proof-notification {
    max-width: none;
    width: 100%;
    margin-bottom: 0.8rem;
  }
  
  .social-proof-content {
    padding: 0.8rem 0.8rem 0.8rem 1.2rem;
  }
  
  .social-proof-text p {
    font-size: 0.9rem;
  }
  
  .social-proof-text small {
    font-size: 0.8rem;
  }
  
  .social-proof-icon {
    font-size: 1.2rem;
  }
}

/* ====================================
   ANIMATIONS
   ==================================== */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px var(--glow-amber);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--glow-amber-strong);
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
  padding: 3rem 0 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  margin: 0;
  color: var(--color-primary);
}

.footer-brand p {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--fs-small);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: var(--fs-small);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--fs-small);
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
/* Base mobile styles */
@media (max-width: 768px) {
  
  .hero {
    min-height: 100vh;
    padding: 1rem 0 2rem 0;
    overflow: hidden;
  }
  
  .hero-content {
    padding: 2rem 0;
  }
  
  /* New Hero Layout Mobile - SEM MOCKUP */
  .hero-content-new {
    padding: 3rem 1rem;
    min-height: 70vh;
  }
  
  .hero-left {
    gap: 2rem;
  }
  
  .hero-title-new {
    font-size: clamp(2rem, 6vw, 2.75rem) !important;
    line-height: 1.2;
  }
  
  .hero-subtitle-new {
    font-size: var(--fs-h5) !important;
  }
  
  
  .hero .container {
    max-width: 100% !important;
    padding: 0 0.5rem !important;
    margin: 0 auto;
  }
  
  /* Garantir que o layout grid funcione */
  .hero-content-new * {
    box-sizing: border-box;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
  
  .hero-subtitle {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }
  
  .feature-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature-text {
    order: 2;
  }
  
  .feature-mockup {
    order: 1;
  }
  
  /* .benefits-table styles removed - section eliminated */
  
  .table-header {
    display: none;
  }
  
  .table-body .table-row {
    display: flex;
    flex-direction: column;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 2rem;
    padding: 0;
    overflow: visible;
    min-height: auto;
  }
  
  .table-cell {
    padding: 1.75rem 1.25rem;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    word-wrap: break-word;
    line-height: 1.4;
  }
  
  .table-cell:last-child {
    border-bottom: none;
  }
  
  .table-cell.feature-col {
    background: var(--bg-secondary);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    padding: 1.5rem 1.25rem;
    border-bottom: 2px solid var(--border-color);
    font-size: 1.2rem;
    min-height: 70px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
  
  .table-cell.traditional-col {
    background: rgba(239, 68, 68, 0.08);
    border-bottom: 1px solid rgba(239, 68, 68, 0.15);
    padding: 2rem 1.25rem;
    min-height: 80px;
  }
  
  .table-cell.larnier-col {
    background: rgba(248, 174, 58, 0.08);
    border-bottom: none;
    padding: 2rem 1.25rem;
    min-height: 80px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
  
  /* Melhor espaçamento entre as linhas de comparação */
  .table-body .table-row {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
  }
  
  .feature-col {
    background: transparent;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .traditional-col {
    background: transparent;
    margin-bottom: 0.5rem;
  }
  
  .traditional-col::before {
    content: "❌ Método Tradicional";
    font-weight: var(--font-weight-bold);
    color: #ef4444;
    display: block;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
  }
  
  .larnier-col {
    background: transparent;
  }
  
  .larnier-col::before {
    content: "✅ Sistema Larnier";
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    display: block;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(248, 174, 58, 0.3);
  }
  
  /* Melhorar display dos ícones no mobile */
  .table-cell .icon {
    margin-right: 0.5rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .table-cell .negative,
  .table-cell .positive {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  /* Garantir que textos longos não sejam cortados */
  .table-cell span {
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
  }
  
  /* Responsividade extra para telas muito pequenas */
  @media (max-width: 320px) {
    .table-body .table-row {
      margin-bottom: 1.5rem;
    }
    
    .table-cell {
      padding: 1.5rem 1rem;
      font-size: 0.9rem;
      min-height: 70px;
    }
    
    .table-cell.feature-col {
      font-size: 1.1rem;
      padding: 1.25rem 1rem;
      min-height: 60px;
    }
    
    .table-cell.traditional-col {
      padding: 1.75rem 1rem;
      min-height: 75px;
    }
    
    .table-cell.larnier-col {
      padding: 1.75rem 1rem;
      min-height: 75px;
    }
    
    .traditional-col::before,
    .larnier-col::before {
      font-size: 0.9rem;
      margin-bottom: 0.75rem;
    }
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .market-highlight {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .big-number {
    font-size: 2rem;
  }
  
  .growth-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }
  
  .urgency-message {
    padding: 1.5rem;
  }
  
  
  .vs-separator {
    min-height: auto;
    padding: 0.5rem 0;
    order: -1;
  }
  
  .vs-circle {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  .stat-highlight {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .offer-box {
    padding: 2rem 1rem;
  }
  
  .price-main {
    font-size: 3rem;
  }
  
  .offer-price {
    padding: 2rem 1rem;
  }
  
  .price-container {
    padding: 1.5rem;
    gap: 0.05rem;
  }
  
  .price-currency {
    font-size: 1.8rem;
    margin-right: 0.15rem;
  }
  
  .price-cents {
    font-size: 3rem;
  }
  
  .price-period {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
  
  .badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  section {
    padding: clamp(60px, 8vw, 80px) 0;
  }
  
  .story-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .story-icon {
    align-self: center;
  }
  
  /* Responsive containers */
  .container {
    padding: 0 2rem;
  }
  
  .section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    padding: 0 1rem;
  }
}

/* Responsividade para mobile pequeno */
@media (max-width: 480px) {
  .hero-content-new {
    padding: 2rem 1rem !important;
    min-height: 60vh;
  }
  
  .hero-left {
    gap: 1.5rem !important;
  }
  
  .hero-title-new {
    font-size: clamp(1.5rem, 5vw, 2rem) !important;
  }
  
  .hero-subtitle-new {
    font-size: var(--fs-body) !important;
  }
  
  .benefit-item {
    font-size: var(--fs-small) !important;
    gap: 0.75rem !important;
  }
  
  .how-it-works-cta {
    padding: 1.5rem 1rem !important;
    margin: 2rem 0 0 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  
  .how-it-works-cta h3 {
    font-size: var(--fs-h4) !important;
  }
  
  .final-offer-summary {
    padding: 1.5rem 1rem !important;
  }
  
  .offer-item {
    padding: 0.75rem !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.5rem !important;
  }
  
  .item-title {
    font-size: var(--fs-small) !important;
  }
  
  .final-price-highlight {
    flex-direction: column !important;
    gap: 0.25rem !important;
    padding: 0.75rem !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .final-price-highlight .amount {
    font-size: clamp(1.5rem, 3.5vw, 1.875rem) !important;
  }
  
  .final-price-highlight .currency {
    font-size: var(--fs-h5) !important;
  }
  
  .final-price-highlight .period {
    font-size: var(--fs-xs) !important;
  }
  
  .cta-button-premium {
    padding: 1rem 1.5rem !important;
    font-size: var(--fs-xs) !important;
    gap: 0.5rem !important;
  }
}

/* Responsividade para mobile grande - DESABILITADA para evitar conflitos */

/* Landscape mobile - texto apenas */
@media (max-width: 768px) and (orientation: landscape) and (max-height: 500px) {
  .hero-content-new {
    min-height: 90vh;
    padding: 1rem;
  }
  
  .hero-left {
    gap: 1rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  
  /* .benefits-table font styles removed - section eliminated */
  
  .table-cell {
    padding: 1.25rem;
  }
  
  .story-visual {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .market-highlight {
    gap: 1.5rem;
  }
  
  .big-number {
    font-size: 2.5rem;
  }
}

@media (min-width: 1025px) {
  /* Desktop specific optimizations */
  .cta-button-primary,
  .cta-button-main,
  .cta-button-final {
    padding: 1.5rem 3rem;
    font-size: 1.125rem;
    min-height: 70px;
    border-radius: 14px;
    font-weight: 600;
  }
  
  .cta-button-final {
    padding: 2rem 3rem;
    font-size: 1.25rem;
    min-height: 80px;
    max-width: 700px;
  }
  
  .hero-cta .cta-button-primary {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    max-width: 450px;
  }
  
  /* Better spacing for desktop */
  .hero-content {
    max-width: 900px;
  }
  
  .section-title {
    font-size: clamp(2rem, 3vw, 2.75rem);
  }
  
  .hero-title {
    font-size: clamp(3rem, 4vw, 4rem);
  }
  
  .hero-subtitle {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
  }
}

/* Responsividade para telas muito pequenas */
@media (max-width: 360px) {
  .hero-content-new {
    padding: 1rem 0.25rem !important;
    min-height: 60vh;
  }
  
  .hero-left {
    gap: 1rem !important;
  }
  
  .hero-title-new {
    font-size: clamp(1.2rem, 4.5vw, 1.7rem) !important;
    line-height: 1.2 !important;
  }
  
  .benefit-item {
    font-size: var(--fs-small) !important;
    line-height: 1.5 !important;
    max-width: 100% !important;
  }
  
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .hero-badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .cta-button-primary,
  .cta-button-main,
  .cta-button-final {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    max-width: 100%;
    min-height: 55px;
  }
  
  .final-cta-button .cta-button-final {
    padding: 1.25rem 2rem;
    font-size: 1rem;
    min-height: 60px;
  }
  
  .hero-cta .cta-button-primary {
    max-width: 100%;
    padding: 1rem 2rem;
  }
  
  /* Hero image mobile */
  .hero-image {
    margin: 1rem 0;
  }
  
  .image-placeholder {
    padding: 1.5rem;
    max-width: 100%;
  }
  
  .placeholder-icon {
    font-size: 3rem;
  }
  
  .image-note h4 {
    font-size: 1rem;
  }
  
  .image-note li {
    font-size: 0.8rem;
    padding: 0.4rem 0;
  }
  
  .image-note p {
    font-size: 0.8rem;
    padding: 0.75rem;
  }
  
  /* Mockup mobile optimizations */
  .placeholder-property {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .placeholder-image {
    width: 100%;
    height: 150px;
  }
  
  .placeholder-features {
    gap: 0.25rem;
  }
  
  .placeholder-features span {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }
  
  .offer-box {
    padding: 1.5rem 1rem;
  }
  
  .bonuses-grid {
    gap: 1rem;
  }
  
  .bonus-card {
    padding: 1.5rem;
  }
  
  .badges-grid {
    grid-template-columns: 1fr;
  }
  
  
  .price-container {
    flex-direction: row;
    gap: 0.05rem;
    align-items: baseline;
  }
  
  .price-main {
    font-size: 2.5rem;
  }
  
  .price-currency {
    font-size: 1.5rem;
  }
  
  .price-cents {
    font-size: 2.5rem;
  }
  
  /* Story visual stats mobile */
  .story-visual {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
  }
  
  .story-stat {
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  
  .vs-circle {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  /* Market highlight mobile */
  .market-highlight {
    padding: 1rem;
  }
  
  .big-number {
    font-size: 1.75rem;
  }
  
  .stat-desc {
    font-size: 0.8rem;
  }
  
  /* Benefits table mobile fixes */
  .table-body .table-row {
    padding: 0.75rem;
  }
  
  .feature-col {
    font-size: 1rem;
  }
  
  /* Urgency message mobile */
  .urgency-message {
    padding: 1rem;
  }
  
  .urgency-message h3 {
    font-size: 1rem;
  }
}

/* ====================================
   PERFORMANCE OPTIMIZATIONS
   ==================================== */
* {
  will-change: auto;
}

.hero,
.floating-elements,
.sticky-cta-mobile {
  will-change: transform;
}

.cta-button-primary,
.cta-button-main,
.cta-button-final,
.benefit-card,
.testimonial-card {
  will-change: transform, box-shadow;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  /* Disable CTA animations for accessibility */
  .cta-button-primary,
  .cta-button-main,
  .cta-button-final,
  .cta-button-premium {
    animation: none !important;
  }
  
  .floating-dot {
    animation: none;
  }
  
  .offer-badge,
  .guarantee-badge {
    animation: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --border-color: rgba(255, 255, 255, 0.8);
    --text-secondary: #E2E8F0;
  }
  
  .story-item,
  .benefit-card,
  .testimonial-card {
    border-width: 2px;
  }
}

/* ====================================
   TESTIMONIALS WITH IMAGES  
   ==================================== */
.section-testimonials {
  background: var(--bg-secondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.testimonials-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  background: var(--bg-primary);
}

.testimonial-image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(245, 158, 11, 0.15);
}

.testimonial-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.testimonial-image-wrapper:hover .testimonial-img {
  transform: scale(1.02);
}

/* Mobile Responsiveness for Testimonials Images */
@media (max-width: 768px) {
  .testimonials-images-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .testimonial-image-wrapper {
    border-radius: 12px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .testimonials-images-grid {
    gap: 1rem;
    max-width: 380px;
    padding: 0 1rem;
  }
  
  .testimonial-image-wrapper {
    border-radius: 10px;
  }
}

/* Print styles */
@media print {
  .floating-elements,
  .sticky-cta-mobile,
  #social-proof-container,
  .hero-lines {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero {
    background: white;
    color: black;
  }
}
