/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.6);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

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

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

:root {
  /* Dark Premium Colors */
  --background: hsl(220, 13%, 8%);
  --foreground: hsl(0, 0%, 98%);
  --card: hsl(220, 13%, 12%);
  --card-foreground: hsl(0, 0%, 98%);
  --popover: hsl(220, 13%, 12%);
  --popover-foreground: hsl(0, 0%, 98%);
  --primary: hsl(210, 100%, 60%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-hover: hsl(210, 100%, 50%);
  --secondary: hsl(220, 13%, 15%);
  --secondary-foreground: hsl(0, 0%, 90%);
  --muted: hsl(220, 13%, 15%);
  --muted-foreground: hsl(0, 0%, 60%);
  --accent: hsl(45, 100%, 60%);
  --accent-foreground: hsl(220, 13%, 8%);
  --accent-hover: hsl(45, 100%, 50%);
  --success: hsl(142, 76%, 50%);
  --success-foreground: hsl(0, 0%, 100%);
  --warning: hsl(43, 96%, 60%);
  --warning-foreground: hsl(220, 13%, 8%);
  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(0, 0%, 100%);
  --border: hsl(220, 13%, 20%);
  --input: hsl(220, 13%, 15%);
  --ring: hsl(210, 100%, 60%);
  --radius: 8px;
  
  /* Premium Gold Accents */
  --gold: hsl(45, 100%, 60%);
  --gold-light: hsl(45, 100%, 70%);
  --gold-dark: hsl(45, 100%, 40%);
  
  /* Luxury Gradients */
  --gradient-premium: linear-gradient(135deg, hsl(45, 100%, 60%), hsl(30, 100%, 60%), hsl(45, 100%, 60%));
  --gradient-dark: linear-gradient(135deg, hsl(220, 13%, 8%), hsl(220, 13%, 12%), hsl(220, 13%, 8%));
  --gradient-card: linear-gradient(135deg, hsl(220, 13%, 12%), hsl(220, 13%, 15%), hsl(220, 13%, 12%));

  /* Premium Dark Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 40px -5px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
  --shadow-gold-hover: 0 0 30px rgba(255, 215, 0, 0.5);
  
  /* Transitions */
  --transition-smooth: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-balance {
  text-wrap: balance;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-success {
  background: linear-gradient(135deg, var(--success), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-destructive {
  color: var(--destructive);
}

.text-accent {
  color: var(--accent);
}

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

/* Icon Styles */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

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

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

/* Badge Styles */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsl(var(--accent) / 0.1);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.badge.success {
  background-color: hsl(var(--success) / 0.1);
  color: var(--success);
}

.badge.accent {
  background-color: hsl(var(--accent) / 0.1);
  color: var(--accent);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: inherit;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-premium);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: glow 2s ease-in-out infinite;
  border: 1px solid rgba(255, 215, 0, 0.3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover {
  background: var(--gradient-premium);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-gold-hover);
  animation: pulse 1s ease-in-out infinite;
  border-color: rgba(255, 215, 0, 0.6);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
  animation: shake 0.5s ease-in-out;
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background-color: var(--muted);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
  min-width: 300px;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-dark);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(210, 100, 60, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(142, 76, 50, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.05;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

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

.stat-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.stat-dot.success {
  background-color: var(--success);
}

.stat-dot.primary {
  background-color: var(--primary);
}

.stat-dot.accent {
  background-color: var(--accent);
}

.stat span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.hero-right {
  position: relative;
}

.hero-image-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  filter: brightness(0.9) contrast(1.1);
}

.floating-card {
  position: absolute;
  background-color: hsl(var(--card) / 0.9);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  padding: 0.75rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.floating-card.top-right {
  top: 1.5rem;
  right: 1.5rem;
}

.floating-card.bottom-left {
  bottom: 1.5rem;
  left: 1.5rem;
}

.floating-card span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Problem Section */
.problem-section {
  padding: 5rem 0;
  background-color: hsl(var(--muted) / 0.3);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.problem-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-premium);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon.destructive {
  background-color: hsl(var(--destructive) / 0.1);
}

.problem-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.problem-card p {
  color: var(--muted-foreground);
}

.reality-check {
  background-color: var(--card);
  border-left: 4px solid var(--warning);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.reality-check h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.reality-check p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.warning-text {
  color: var(--warning) !important;
  font-weight: 500;
}

/* Solution Section */
.solution-section {
  padding: 5rem 0;
  background-color: var(--background);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pillar-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-premium);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 4rem;
  height: 4rem;
  background-color: hsl(var(--primary) / 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.pillar-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pillar-card p {
  color: var(--muted-foreground);
}

.benefits-container {
  background: linear-gradient(135deg, hsl(var(--muted) / 0.5), var(--background));
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .benefits-container {
    padding: 3rem;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.benefits-left h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  padding: 0.5rem 0;
}

.testimonials-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

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

.testimonial-number {
  font-size: 1.5rem;
  font-weight: 700;
}

.testimonial-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.testimonial-item {
  background-color: hsl(var(--success) / 0.1);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.testimonial-item.primary {
  background-color: hsl(var(--primary) / 0.1);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.testimonial-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

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

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, hsl(var(--muted) / 0.2), var(--background));
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.testimonial-slide {
  display: none;
  padding: 0 1rem;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 1024px) {
  .testimonial-card {
    padding: 3rem;
  }
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--warning);
}

.testimonial-card blockquote {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .testimonial-card blockquote {
    font-size: 1.25rem;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  background-color: hsl(var(--primary) / 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 600;
  font-size: 1.125rem;
}

.author-details {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  border: none;
  background-color: hsl(var(--muted-foreground) / 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.indicator:hover {
  background-color: hsl(var(--muted-foreground) / 0.5);
}

.indicator.active {
  background-color: var(--primary);
  transform: scale(1.25);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
}

.stat-number.primary {
  color: var(--primary);
}

.stat-number.success {
  color: var(--success);
}

.stat-number.accent {
  color: var(--accent);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Offer Section */
.offer-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--background), hsl(var(--muted) / 0.3));
}

.offer-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .offer-card {
    padding: 3rem;
  }
}

.offer-included {
  margin-bottom: 2.5rem;
}

.offer-included h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
}

.offer-bonuses {
  margin-bottom: 2.5rem;
}

.offer-bonuses h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.bonuses-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bonus-item {
  background-color: hsl(var(--accent) / 0.05);
  border: 1px solid hsl(var(--accent) / 0.2);
  border-radius: 0.5rem;
  padding: 1rem;
}

.bonus-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.bonus-header h4 {
  font-weight: 600;
}

.bonus-value {
  color: var(--accent);
  font-weight: 700;
}

.bonus-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing {
  background: linear-gradient(90deg, hsl(var(--accent) / 0.1), hsl(var(--primary) / 0.1));
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.price-info {
  margin-bottom: 1rem;
}

.price-old {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.price-new {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gradient-premium);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  animation: gradientShift 3s ease infinite, pulse 2s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  letter-spacing: 1px;
}

.price-installments {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.urgency-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--success);
  font-weight: 500;
}

.guarantees {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.guarantee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.urgency-notice {
  background: linear-gradient(135deg, hsl(var(--warning) / 0.1), hsl(var(--destructive) / 0.05));
  border: 2px solid hsl(var(--warning) / 0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: pulse 2s ease-in-out infinite;
}

.urgency-notice::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--warning), var(--destructive), var(--warning));
  animation: gradientShift 3s ease infinite;
}

.urgency-notice h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--destructive);
  animation: bounce 2s ease-in-out infinite;
}

.urgency-notice h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.urgency-notice p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Social Proof Minimalista */
.social-proof-minimal {
  padding: 2rem 0;
  background: linear-gradient(135deg, hsl(var(--muted) / 0.2), hsl(var(--muted) / 0.1));
  border-top: 1px solid var(--border);
}

.social-proof-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.social-proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.social-proof-item:hover {
  opacity: 1;
}

.social-proof-icon {
  font-size: 1rem;
}

.social-proof-text {
  font-weight: 500;
}

/* Footer */
.footer {
  padding: 3rem 0;
  background-color: hsl(var(--muted) / 0.3);
  border-top: 1px solid var(--border);
}

.footer-content {
  text-align: center;
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: var(--muted-foreground);
}

.footer-heart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.heart-icon {
  width: 1rem;
  height: 1rem;
  color: #ef4444;
}

.footer-copyright {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-copyright p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Animation Classes */
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

.animate-shake {
  animation: shake 0.5s ease-in-out;
}

/* Hover Effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* Special Effects */
.gradient-text-animated {
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--success));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

.shadow-glow {
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
  transition: box-shadow 0.3s ease;
}

.shadow-glow:hover {
  box-shadow: 0 0 30px rgba(255, 165, 0, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-large {
    min-width: auto;
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .guarantees {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .hero-description,
  .section-description {
    font-size: 1rem;
  }
  
  .floating-card {
    display: none;
  }
  
  .social-proof-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .social-proof-item {
    font-size: 0.8rem;
  }
}
