/* ════════════════════════════════════════════════════
   encontraqui — Para Negócios
   ════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────── */
.biz-hero {
  padding: 60px 0 80px;
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a2e 50%, #0d2a25 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.biz-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(43, 184, 166, 0.12);
  color: var(--teal-light);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}
.biz-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.biz-hero-sub {
  font-size: 18px;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ── Stats bar ────────────────────────────────── */
.biz-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 60px;
}
.biz-stat {
  text-align: center;
}
.biz-stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.biz-stat-label {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}

/* ── Benefits (enhanced) ──────────────────────── */
.biz-benefits {
  padding: 100px 0;
  background: var(--white);
}
.biz-benefits-header {
  text-align: center;
  margin-bottom: 64px;
}
.biz-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.biz-benefit {
  padding: 40px 28px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.biz-benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.biz-benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.biz-benefit:hover::before {
  transform: scaleX(1);
}
.biz-benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
}
.biz-benefit-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.biz-benefit-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── Plans ────────────────────────────────────── */
.biz-plans {
  padding: 100px 0;
  background: var(--gray-50);
}
.biz-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.biz-plan {
  padding: 40px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.biz-plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.biz-plan.featured {
  border-color: var(--teal);
  position: relative;
}
.biz-plan.featured::after {
  content: 'Mais popular';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.biz-plan-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}
.biz-plan-price {
  font-size: 40px;
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.biz-plan-price span {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-500);
}
.biz-plan-desc {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.biz-plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.biz-plan-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
}
.biz-plan-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 800;
}

/* ── Contact Form ─────────────────────────────── */
.biz-contact {
  padding: 100px 0;
  background: var(--white);
}
.biz-contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.biz-contact-form input,
.biz-contact-form textarea,
.biz-contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--charcoal);
}
.biz-contact-form input:focus,
.biz-contact-form textarea:focus,
.biz-contact-form select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43, 184, 166, 0.1);
}
.biz-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.biz-contact-form .btn {
  align-self: flex-start;
}

/* ── FAQ ───────────────────────────────────────── */
.biz-faq {
  padding: 100px 0;
  background: var(--gray-50);
}
.biz-faq-grid {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.biz-faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.biz-faq-item:hover {
  border-color: var(--teal);
}
.biz-faq-q {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  color: var(--charcoal);
}
.biz-faq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--teal);
  transition: transform var(--transition);
}
.biz-faq-q.open::after {
  content: '−';
}
.biz-faq-a {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  display: none;
}
.biz-faq-item.open .biz-faq-a {
  display: block;
}

/* ── Scroll-Triggered Animations ──────────────── */
/* Elements start hidden and animate when .animate is added by Intersection Observer */

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.biz-hero-content.animate { animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.biz-stats.animate { animation: fadeUp 0.5s 0.3s both cubic-bezier(0.16, 1, 0.3, 1); }
.biz-stat.animate { animation: fadeUp 0.4s both cubic-bezier(0.16, 1, 0.3, 1); }
.biz-stat:nth-child(1).animate { animation-delay: 0.4s; }
.biz-stat:nth-child(2).animate { animation-delay: 0.5s; }
.biz-stat:nth-child(3).animate { animation-delay: 0.6s; }

.biz-benefits-header.animate .section-label,
.biz-benefits-header.animate .section-title,
.biz-benefits-header.animate .section-desc {
  animation: fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.biz-benefits-header.animate .section-label { animation-delay: 0s; }
.biz-benefits-header.animate .section-title { animation-delay: 0.1s; }
.biz-benefits-header.animate .section-desc { animation-delay: 0.2s; }

/* Direct animate class on section children (propagated by JS) */
.section-label.animate { animation: fadeUp 0.4s 0s both cubic-bezier(0.16, 1, 0.3, 1); }
.section-title.animate { animation: fadeUp 0.5s 0.1s both cubic-bezier(0.16, 1, 0.3, 1); }
.section-desc.animate { animation: fadeUp 0.5s 0.2s both cubic-bezier(0.16, 1, 0.3, 1); }

.biz-benefit {
  opacity: 1;
  transform: none;
}
.biz-benefit.animate { animation: fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both; }
.biz-benefit:nth-child(1).animate { animation-delay: 0.05s; }
.biz-benefit:nth-child(2).animate { animation-delay: 0.1s; }
.biz-benefit:nth-child(3).animate { animation-delay: 0.15s; }
.biz-benefit:nth-child(4).animate { animation-delay: 0.2s; }
.biz-benefit:nth-child(5).animate { animation-delay: 0.25s; }
.biz-benefit:nth-child(6).animate { animation-delay: 0.3s; }

.biz-plan {
  opacity: 1;
  transform: none;
}
.biz-plan.animate { animation: scaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both; }
.biz-plan:nth-child(1).animate { animation-delay: 0.05s; }
.biz-plan:nth-child(2).animate { animation-delay: 0.1s; }
.biz-plan:nth-child(3).animate { animation-delay: 0.15s; }

.biz-faq-item {
  opacity: 1;
  transform: none;
}
.biz-faq-item.animate {
  animation: fadeUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.biz-faq-item:nth-child(1).animate { animation-delay: 0.05s; }
.biz-faq-item:nth-child(2).animate { animation-delay: 0.1s; }
.biz-faq-item:nth-child(3).animate { animation-delay: 0.15s; }
.biz-faq-item:nth-child(4).animate { animation-delay: 0.2s; }

.biz-contact.animate .biz-contact-form {
  animation: fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ── Reduced motion ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .biz-hero-content,
  .biz-benefit,
  .biz-plan,
  .biz-faq-item,
  .biz-contact,
  .biz-contact-form,
  .biz-stat {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Mobile ────────────────────────────────────── */
@media (max-width: 768px) {
  .biz-stats { flex-direction: column; gap: 24px; }
  .biz-benefits-grid { grid-template-columns: 1fr; }
  .biz-plans-grid { grid-template-columns: 1fr; max-width: 400px; }
  .biz-contact-form .btn { align-self: stretch; }
}
@media (max-width: 480px) {
  .biz-hero { padding: 60px 0 40px; }
  .biz-benefits, .biz-plans, .biz-contact, .biz-faq { padding: 60px 0; }
}
