/* ========================================
   FarolPets - Landing Page Futurista
   ======================================== */

:root {
  --bg-primary: #030712;
  --bg-secondary: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.8);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(52, 211, 153, 0.3);
  
  --accent: #10b981;
  --accent-light: #34d399;
  --accent-dark: #059669;
  --accent-glow: rgba(16, 185, 129, 0.4);
  
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --pink: #ec4899;
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --gradient-main: linear-gradient(135deg, #10b981, #3b82f6);
  --gradient-hero: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(59, 130, 246, 0.1));
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ========================================
   Navbar
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(3, 7, 18, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-icon {
  font-size: 1.8rem;
}

.logo-text {
  color: var(--text-primary);
}

.logo-highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
}

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

.nav-btn {
  background: var(--accent) !important;
  color: var(--bg-primary) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-weight: 600 !important;
}

.nav-btn:hover {
  background: var(--accent-light) !important;
}

.mobile-menu {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  min-height: 100vh;
  padding: 8rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(16, 185, 129, 0.25), transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(59, 130, 246, 0.15), transparent 40%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black, transparent);
}

.floating-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.float-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 20s ease-in-out infinite;
}

.float-circle.c1 {
  width: 400px;
  height: 400px;
  background: rgba(16, 185, 129, 0.15);
  top: -10%;
  left: -5%;
}

.float-circle.c2 {
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.12);
  top: 20%;
  right: -5%;
  animation-delay: -5s;
}

.float-circle.c3 {
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.1);
  bottom: 10%;
  left: 20%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -20px) rotate(5deg); }
  50% { transform: translate(-10px, 20px) rotate(-5deg); }
  75% { transform: translate(-20px, -10px) rotate(3deg); }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 600px;
}

.badge-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-blue {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--text-primary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.btn-glow {
  box-shadow: 0 0 40px var(--accent-glow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: transparent;
  color: var(--text-primary);
  font-weight: 500;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

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

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

/* Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: 320px;
  height: 640px;
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 
    0 50px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0f172a;
  border-radius: 32px;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 20px;
}

.chat-demo {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 3rem 1rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  border-bottom: 1px solid var(--border-color);
}

.chat-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.chat-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

.chat-status {
  font-size: 0.75rem;
  color: var(--accent);
  margin: 0;
}

.chat-messages {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
}

.msg {
  max-width: 85%;
  animation: fadeInUp 0.5s ease-out;
}

.msg p {
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

.msg-bot {
  align-self: flex-start;
}

.msg-bot p {
  background: rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 4px;
}

.msg-user {
  align-self: flex-end;
}

.msg-user p {
  background: var(--accent);
  color: var(--bg-primary);
  border-bottom-right-radius: 4px;
}

.msg.typing p {
  animation: typing 1s ease-in-out infinite;
}

@keyframes typing {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

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

.visual-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg-secondary);
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-visual {
    margin-top: 2rem;
  }
  
  .phone-mockup {
    width: 280px;
    height: 560px;
  }
}

/* ========================================
   Trust Bar
   ======================================== */
.trust-bar {
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(15, 23, 42, 0.5);
}

.trust-bar p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-logos span {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ========================================
   Problem & Solution
   ======================================== */
.problem-solution {
  padding: 6rem 1.5rem;
}

.problem-solution .container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.problem-card, .solution-card {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--border-color);
}

.problem-card {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.2);
}

.solution-card {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.2);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.problem-card h3, .solution-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.problem-list, .solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.problem-list li, .solution-list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.arrow-divider {
  display: flex;
  align-items: center;
  font-size: 3rem;
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 768px) {
  .arrow-divider {
    transform: rotate(90deg);
    margin: 1rem 0;
  }
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
  padding: 6rem 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.section-badge.success {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-light);
}

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card.feature-large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.05));
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-list li {
  font-size: 0.9rem;
  color: var(--accent);
}

/* Mini Calendar */
.calendar-mini {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
}

.cal-header {
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.cal-grid {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.cal-day {
  flex: 1;
  padding: 0.75rem;
  text-align: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 500;
}

.cal-day.active {
  background: var(--accent);
  color: var(--bg-primary);
}

.cal-day.highlight {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.cal-appointments {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cal-apt {
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
}

.cal-apt.green { background: rgba(16, 185, 129, 0.2); color: var(--accent); }
.cal-apt.blue { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.cal-apt.purple { background: rgba(139, 92, 246, 0.2); color: #a78bfa; }

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card.feature-large {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
}

/* ========================================
   AI Section
   ======================================== */
.ai-section {
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.ai-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ai-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 60%);
  filter: blur(60px);
}

.ai-section .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ai-badge {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ai-pulse {
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.ai-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 1.5rem 0 1rem;
  line-height: 1.2;
}

.ai-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.ai-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ai-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ai-feature-icon {
  font-size: 1.5rem;
  padding: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
}

.ai-feature h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.ai-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.ai-stat {
  display: flex;
  flex-direction: column;
}

.ai-stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #60a5fa;
}

.ai-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* AI Demo Card */
.ai-demo-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-bottom: 1px solid var(--border-color);
}

.demo-header span:first-child {
  font-weight: 600;
}

.demo-live {
  font-size: 0.75rem;
  color: #ef4444;
  animation: pulse 2s ease-in-out infinite;
}

.demo-chat {
  padding: 1.5rem;
  max-height: 400px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-msg {
  display: flex;
  gap: 0.75rem;
  max-width: 90%;
}

.demo-msg.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.demo-avatar {
  width: 32px;
  height: 32px;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.demo-bubble {
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.demo-msg.bot .demo-bubble {
  background: rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 4px;
}

.demo-msg.user .demo-bubble {
  background: #3b82f6;
  border-bottom-right-radius: 4px;
}

.demo-input {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--border-color);
}

.demo-input input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.demo-input button {
  width: 40px;
  height: 40px;
  background: #3b82f6;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
}

@media (max-width: 900px) {
  .ai-section .container {
    grid-template-columns: 1fr;
  }
  
  .ai-features {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Automation Section
   ======================================== */
.automation-section {
  padding: 6rem 1.5rem;
  background: var(--bg-secondary);
}

.automation-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}

.flow-step {
  flex: 1;
  min-width: 150px;
  max-width: 180px;
  text-align: center;
  position: relative;
}

.step-number {
  position: absolute;
  top: -10px;
  right: 10px;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 20px;
}

.flow-step h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.flow-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.flow-arrow {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .flow-arrow {
    display: none;
  }
  
  .flow-step {
    min-width: 140px;
  }
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
  padding: 6rem 1.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.05));
  border-color: var(--accent);
}

.testimonial-stars {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-card > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}

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

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-section {
  padding: 6rem 1.5rem;
  background: var(--bg-secondary);
}

.section-badge.launch {
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: white;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.4); }
  50% { box-shadow: 0 0 40px rgba(239, 68, 68, 0.6); }
}

.urgency-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(249, 115, 22, 0.1));
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 600px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.urgency-icon {
  font-size: 1.3rem;
  animation: shake 1s infinite;
}

@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-grid.three-columns {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
  border-color: var(--accent);
  box-shadow: 0 0 60px var(--accent-glow);
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.pricing-card.premium {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.1));
  border-color: #8b5cf6;
  box-shadow: 0 0 60px rgba(139, 92, 246, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.5rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-badge.ai {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: white;
  animation: pulse-glow-ai 2s infinite;
}

@keyframes pulse-glow-ai {
  0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.4); }
  50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.6); }
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-top: 0.5rem;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card.premium .pricing-header h3 {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pricing-features {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.feature-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item.disabled {
  color: var(--text-muted);
  opacity: 0.5;
}

.feature-item.highlight {
  color: var(--text-primary);
}

.feature-item.special {
  color: #8b5cf6;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.05));
  padding: 0.6rem 0.75rem;
  margin: 0.25rem -0.75rem;
  border-radius: 8px;
  border-bottom: none;
}

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

.price-promo {
  margin-bottom: 0.75rem;
}

.promo-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.promo-badge.hot {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  animation: pulse-glow-ai 2s infinite;
}

.price-old {
  display: block;
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

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

.price-current.promo .currency,
.price-current.promo .amount,
.price-current.promo .cents {
  color: #ef4444;
}

.price-current.promo.hot .currency,
.price-current.promo.hot .amount,
.price-current.promo.hot .cents {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
}

.amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.cents {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
}

.period {
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.price-after {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-after strong {
  color: var(--text-secondary);
}

.price-save {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.4rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.price-save.mega {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.15));
  color: #c084fc;
}

.btn-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem;
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  text-align: center;
}

.btn-sublabel {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.btn-pricing:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-pricing.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
}

.btn-pricing.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

.btn-pricing.btn-ai {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  border-color: transparent;
  color: white;
  font-size: 1rem;
}

.btn-pricing.btn-ai:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.btn-pricing.btn-ai .btn-sublabel {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.payment-methods {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
}

/* Responsive para 3 colunas */
@media (max-width: 1024px) {
  .pricing-grid.three-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card.premium {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .pricing-grid,
  .pricing-grid.three-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card.premium {
    grid-column: span 1;
    max-width: none;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .urgency-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    font-size: 0.85rem;
  }
}

.pricing-guarantee strong {
  display: block;
  margin-bottom: 0.25rem;
}

.pricing-guarantee p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
  padding: 6rem 1.5rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
}

.faq-item h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(16, 185, 129, 0.2), transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content > p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-large {
  font-size: 1.1rem;
  padding: 1.25rem 2.5rem;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand .logo-icon {
  font-size: 1.5rem;
}

.footer-brand .logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ========================================
   Modal
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  overflow-y: auto;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--text-primary);
}

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

.modal-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.modal-header h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.plano-badge {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 1.5rem;
}

.btn-submit:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.msg-erro {
  display: none;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  color: #f87171;
  font-size: 0.9rem;
  text-align: center;
}

/* PIX Section */
.pix-qrcode-container {
  display: flex;
  justify-content: center;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

.pix-qrcode-container img {
  max-width: 200px;
  height: auto;
}

.pix-valor {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.pix-info {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.pix-code-section {
  margin-bottom: 1.5rem;
}

.pix-code-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.pix-code-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem;
  max-height: 60px;
  overflow-y: auto;
  word-break: break-all;
}

.pix-code-box code {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.btn-copy {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.75rem;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 8px;
  color: #818cf8;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-copy:hover {
  background: rgba(99, 102, 241, 0.3);
}

.status-box {
  padding: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  text-align: center;
  margin-bottom: 1rem;
}

.status-box p {
  color: #60a5fa;
  font-size: 0.95rem;
  margin: 0;
}

.btn-check {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  border: none;
  border-radius: 12px;
  color: var(--bg-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-check:hover {
  background: var(--accent-light);
}

.btn-check:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.msg-sucesso {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  color: var(--accent);
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.6;
}

.btn-back {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: underline;
}

.btn-back:hover {
  color: var(--text-secondary);
}

.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

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