/* Pricing page styles (migrated from inline) */

.binds-rebrand .binds-pricing-page {
  --primary-color: var(--binds-primary);
  --primary-light: rgba(var(--binds-primary-rgb), 0.7);
  --primary-dark: var(--binds-primary-700);
  --success-color: var(--binds-success);
  --warning-color: var(--binds-warning);
  --danger-color: var(--binds-danger);
  --text-primary: var(--binds-text);
  --text-secondary: var(--binds-text-2);
  --text-muted: var(--binds-text-3);
  --bg-card: #ffffff;
  --bg-subtle: #f9fafb;
  --bg-featured: linear-gradient(135deg, var(--binds-primary) 0%, var(--binds-primary-700) 100%);
  --border-color: rgba(15, 23, 42, 0.14);
  --border-light: rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 24px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 24px 56px rgba(15, 23, 42, 0.16);
  --shadow-xl: 0 28px 72px rgba(15, 23, 42, 0.22);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
}

.binds-rebrand .binds-pricing-page .section-heading h2 {
  font-size: 2.2rem;
  font-weight: 850;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.binds-rebrand .binds-pricing-page .section-heading p {
  font-size: 1.05rem;
  font-weight: 450;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto;
}

/* Cards */
.binds-rebrand .binds-pricing-page .pricing-card-wrapper {
  position: relative;
  height: 100%;
  padding: 0.5rem;
}

.binds-rebrand .binds-pricing-page .pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.binds-rebrand .binds-pricing-page .pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(var(--binds-primary-rgb), 0.35);
}

.binds-rebrand .binds-pricing-page .pricing-card-featured {
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 0 1px var(--primary-color), var(--shadow-lg);
  transform: scale(1.02);
}

.binds-rebrand .binds-pricing-page .pricing-card-featured:hover {
  transform: scale(1.02) translateY(-8px);
  box-shadow: 0 0 0 1px var(--primary-color), var(--shadow-xl);
}

/* Badge popular */
.binds-rebrand .binds-pricing-page .pricing-popular-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.binds-rebrand .binds-pricing-page .badge-popular {
  background: linear-gradient(135deg, #f472b6 0%, #a78bfa 100%);
  color: white !important;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-lg);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Header do card */
.binds-rebrand .binds-pricing-page .pricing-header {
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-light);
  padding: 2.25rem 1.75rem 1.75rem;
  text-align: center;
  flex-shrink: 0;
  position: relative;
}

.binds-rebrand .binds-pricing-page .pricing-header-featured {
  background: var(--bg-featured);
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.binds-rebrand .binds-pricing-page .pricing-title {
  font-size: 1.9rem;
  font-weight: 850;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.binds-rebrand .binds-pricing-page .pricing-header-featured .pricing-title {
  color: white;
}

/* Preços */
.binds-rebrand .binds-pricing-page .pricing-value {
  margin: 1.25rem 0;
}

.binds-rebrand .binds-pricing-page .pricing-original,
.binds-rebrand .binds-pricing-page .pricing-originalw {
  font-size: 0.95rem;
  text-decoration: line-through;
  margin-bottom: 0.5rem;
  font-weight: 650;
  opacity: 0.9;
}

.binds-rebrand .binds-pricing-page .pricing-original { color: rgba(11, 18, 32, 0.78) !important; }
.binds-rebrand .binds-pricing-page .pricing-originalw { color: rgba(255, 255, 255, 0.85) !important; }

.binds-rebrand .binds-pricing-page .pricing-current {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin: 0.75rem 0;
}

.binds-rebrand .binds-pricing-page .currency {
  font-size: 1.3rem;
  font-weight: 650;
  color: var(--text-secondary);
  align-self: flex-start;
  margin-top: 0.25rem;
}

.binds-rebrand .binds-pricing-page .amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.05em;
}

.binds-rebrand .binds-pricing-page .decimals {
  font-size: 1.3rem;
  font-weight: 650;
  color: var(--text-secondary);
  align-self: flex-end;
  margin-bottom: 0.25rem;
}

.binds-rebrand .binds-pricing-page .pricing-header-featured .currency,
.binds-rebrand .binds-pricing-page .pricing-header-featured .amount,
.binds-rebrand .binds-pricing-page .pricing-header-featured .decimals {
  color: white;
}

.binds-rebrand .binds-pricing-page .pricing-consultation {
  font-size: 2.2rem;
  font-weight: 850;
  color: var(--primary-color);
  line-height: 1;
  margin: 0.75rem 0;
  letter-spacing: -0.03em;
}

.binds-rebrand .binds-pricing-page .pricing-period {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 550;
  margin-top: 0.5rem;
}

.binds-rebrand .binds-pricing-page .pricing-header-featured .pricing-period {
  color: rgba(255, 255, 255, 0.82);
}

/* Bonus */
.binds-rebrand .binds-pricing-page .pricing-bonus {
  margin-top: 1.25rem;
  text-align: center;
  padding: 0 0.5rem;
}

.binds-rebrand .binds-pricing-page .badge-bonus {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.12) 0%, rgba(22, 163, 74, 0.18) 100%);
  color: var(--success-color);
  border: 1px solid rgba(22, 163, 74, 0.25);
  font-size: 0.75rem;
  font-weight: 650;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
  line-height: 1.1;
  flex-shrink: 0;
}

.binds-rebrand .binds-pricing-page .pricing-header-featured .badge-bonus {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

/* Corpo */
.binds-rebrand .binds-pricing-page .pricing-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.binds-rebrand .binds-pricing-page .pricing-features {
  flex: 1;
  padding: 1.75rem;
  background: var(--bg-card);
}

.binds-rebrand .binds-pricing-page .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.binds-rebrand .binds-pricing-page .feature-item {
  display: flex;
  align-items: flex-start;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-light);
  gap: 0.9rem;
}

.binds-rebrand .binds-pricing-page .feature-item:last-child {
  border-bottom: none;
}

.binds-rebrand .binds-pricing-page .feature-icon {
  font-size: 1.2rem;
  color: var(--success-color);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.binds-rebrand .binds-pricing-page .feature-text {
  font-size: 0.98rem;
  font-weight: 550;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

/* Footer do card */
.binds-rebrand .binds-pricing-page .pricing-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  padding: 1.6rem 1.75rem;
  text-align: center;
  flex-shrink: 0;
}

.binds-rebrand .binds-pricing-page .btn-pricing {
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  width: 100%;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.16);
}

.binds-rebrand .binds-pricing-page .pricing-card-featured .btn-pricing.btn-primary {
  background: rgba(255, 255, 255, 0.0) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.75) !important;
}

.binds-rebrand .binds-pricing-page .pricing-card .btn-pricing.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
  color: #ffffff !important;
  border-color: transparent !important;
}

.binds-rebrand .binds-pricing-page .pricing-card .btn-pricing.btn-outline {
  background: rgba(var(--binds-primary-rgb), 0.06) !important;
  color: var(--primary-color) !important;
  border-color: rgba(var(--binds-primary-rgb), 0.25) !important;
}

.binds-rebrand .binds-pricing-page .pricing-disclaimer {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 550;
  margin: 0;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Focus & top gradient */
.binds-rebrand .binds-pricing-page .pricing-card:focus-within {
  outline: 2px solid rgba(var(--binds-primary-rgb), 0.40);
  outline-offset: 2px;
}

.binds-rebrand .binds-pricing-page .pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--success-color), var(--warning-color));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.binds-rebrand .binds-pricing-page .pricing-card:hover::before {
  opacity: 1;
}

.binds-rebrand .binds-pricing-page .pricing-card-featured::before {
  opacity: 1;
}

/* Responsividade */
@media (max-width: 1200px) {
  .binds-rebrand .binds-pricing-page .pricing-card-featured {
    transform: none;
  }
  .binds-rebrand .binds-pricing-page .pricing-card-featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .binds-rebrand .binds-pricing-page .pricing-card { margin-bottom: 2rem; }
  .binds-rebrand .binds-pricing-page .pricing-header { padding: 2rem 1.25rem 1.4rem; }
  .binds-rebrand .binds-pricing-page .pricing-features { padding: 1.25rem; }
  .binds-rebrand .binds-pricing-page .pricing-footer { padding: 1.25rem; }
  .binds-rebrand .binds-pricing-page .amount { font-size: 2.5rem; }
  .binds-rebrand .binds-pricing-page .pricing-title { font-size: 1.7rem; }
}

@media (max-width: 576px) {
  .binds-rebrand .binds-pricing-page .pricing-card-wrapper { padding: 0.25rem; }
  .binds-rebrand .binds-pricing-page .amount { font-size: 2.2rem; }
  .binds-rebrand .binds-pricing-page .btn-pricing { font-size: 1rem; padding: 0.85rem 1.2rem; }
  .binds-rebrand .binds-pricing-page .feature-item { padding: 0.75rem 0; }
  .binds-rebrand .binds-pricing-page .feature-text { font-size: 0.95rem; }
}
