/* CSS Variables - Tema Mamãe Clara */
:root {
  --primary-color: #ff85a1; /* Rosa Vibrante para botões */
  --primary-hover: #ff6b8b;
  --secondary-color: #fca3b7; /* Rosa suave */
  --bg-color: #fff9fa; /* Fundo principal */
  --text-dark: #3a2e31; /* Texto principal */
  --text-light: #7a6e71; /* Texto secundário */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --shadow-sm: 0 4px 6px rgba(255, 133, 161, 0.08);
  --shadow-md: 0 10px 20px rgba(255, 133, 161, 0.12);
  --shadow-lg: 0 20px 40px rgba(255, 133, 161, 0.15);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

/* Background Decorations (Blobs) */
.background-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.6;
}
.background-decor:first-child {
  width: 400px;
  height: 400px;
  background: #ffd1dc;
  top: -10%;
  left: -5%;
}
.background-decor.c2 {
  width: 500px;
  height: 500px;
  background: #fdf5e6;
  top: 40%;
  right: -10%;
}
.background-decor.c3 {
  width: 600px;
  height: 600px;
  background: #ffe4e8;
  bottom: -5%;
  left: 20%;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

h1 { font-size: 3rem; margin-bottom: 24px; }
h1 span { color: var(--primary-color); }
h2 { font-size: 2.5rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }

p { margin-bottom: 16px; font-size: 1.125rem; color: var(--text-light); }
strong { color: var(--text-dark); font-weight: 600; }

/* Header */
header {
  padding: 24px 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 10;
}
.header-inner {
  display: flex;
  justify-content: center;
}
.logo {
  max-height: 80px;
  width: auto;
}

/* Buttons */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  line-height: 1.3;
}
.cta-btn i { font-size: 1.4rem; flex-shrink: 0; }

.primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  color: white;
  box-shadow: var(--shadow-md);
}
.primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.secondary:hover {
  background: var(--bg-color);
  transform: translateY(-3px);
}
.secondary.outline {
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}
.secondary.outline:hover {
  background: var(--secondary-color);
  color: white;
}

.pulse-animation {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 133, 161, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(255, 133, 161, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 133, 161, 0); }
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  gap: 60px;
}
.hero-content {
  flex: 1;
}
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}
.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 133, 161, 0.15);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.device-mockup {
  border-radius: 40px;
  border: 12px solid #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 320px;
  width: 100%;
  aspect-ratio: 9/19;
  background: #f5f5f5;
  position: relative;
}
.bot-video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pain Points */
.pain-points {
  padding: 80px 0;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5));
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pain-card {
  background: white;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s;
}
.pain-card:hover {
  transform: translateY(-10px);
}
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff0f3;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 24px;
}

/* Solution Section */
.solution {
  padding: 80px 0;
}
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 60px;
  display: flex;
  gap: 60px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.solution-visual {
  flex: 4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 8px solid white;
}
.clara-video {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.solution-content {
  flex: 6;
}
.highlight-text {
  font-size: 1.25rem;
  margin-bottom: 32px;
}
.benefits {
  list-style: none;
  margin-bottom: 40px;
}
.benefits li {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
.benefits i {
  color: var(--primary-color);
  font-size: 1.5rem;
  background: #fff0f3;
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.benefits strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.benefits span {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* How It Works */
.how-it-works {
  padding: 80px 0;
  text-align: center;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 60px 0;
}
.step-card {
  position: relative;
  background: white;
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}
.step-number {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  border: 4px solid var(--bg-color);
}
.central-btn {
  margin-top: 20px;
}

/* Social Proof */
.social-proof {
  padding: 80px 0;
  background: white;
  border-radius: 40px;
  box-shadow: var(--shadow-sm);
  margin: 60px auto;
  max-width: 1000px;
  width: 90%;
}
.section-heading {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 24px;
}
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}
.telegram-msg {
  display: flex;
  gap: 16px;
}
.msg-avatar {
  min-width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #fce0e5, #f5c4cd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-heading);
}
.msg-content {
  flex: 1;
}
.msg-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.msg-bubble {
  background: #f7f7f8;
  padding: 16px 20px;
  border-radius: 4px 20px 20px 20px;
  font-size: 0.95rem;
  color: #1a1a1a;
  display: inline-block;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.msg-time {
  font-size: 0.75rem;
  color: #adb5bd;
  margin-top: 4px;
  text-align: right;
  max-width: 80%;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
}
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}
.pricing-card {
  background: white;
  border-radius: 32px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  flex: 1;
  position: relative;
  transition: transform 0.3s;
}
.pricing-card:hover {
  transform: translateY(-10px);
}
.pricing-card.highlight {
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow-lg);
  padding: 60px 40px;
}
.best-value {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.plan-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.plan-price {
  font-family: var(--font-heading);
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 8px;
}
.currency { font-size: 1.5rem; margin-top: 8px; font-weight: 600; }
.amount { font-size: 3.5rem; font-weight: 800; line-height: 1; }
.cents { font-size: 1.5rem; margin-top: 8px; font-weight: 600; }
.period { font-size: 1rem; color: var(--text-light); margin-top: 24px; font-weight: 400; }
.plan-total {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 32px;
}
.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
}
.plan-features li {
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.95rem;
}
.plan-features i { color: #52c41a; }
.pricing-card .cta-btn {
  width: 100%;
}

/* Footer */
footer {
  background: white;
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.grayscale {
  filter: grayscale(100%) opacity(0.5);
  max-height: 60px;
  margin-bottom: 24px;
}
.disclaimer {
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 0.8rem;
  color: #adb5bd;
}

/* Scroll Animation classes */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    padding-top: 100px;
    padding-bottom: 20px;
    text-align: center;
  }
  h1 { font-size: 2.5rem; }
  .glass-panel {
    flex-direction: column-reverse;
    padding: 40px;
  }
  .pain-grid, .steps {
    grid-template-columns: 1fr;
  }
  .pricing-cards {
    flex-direction: column;
  }
  .pricing-card.highlight {
    padding: 48px 40px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  .pain-points, .solution, .how-it-works, .social-proof, .pricing { padding: 40px 0; }
  .glass-panel { padding: 24px; }
  .pain-card { padding: 24px 20px; }
  .cta-btn { padding: 16px 24px; font-size: 1rem; }
}
