/* Phase 1 LP custom overrides — extends landing.css */

/* All custom styles for assine.syherfood.com.br go here */

/* =============================================
   PHASE 2: PLANS SECTION STYLING
   ============================================= */

/* Featured Plan Card (Pro) Styling */
.pricing-card-featured {
  border: 2px solid var(--sf-orange);
  box-shadow: var(--sf-shadow-orange);
  transform: scale(1.05);
  transition: var(--sf-transition);
}

/* Mobile Responsive: Disable scale transform on small screens to prevent layout shift */
@media (max-width: 767px) {
  .pricing-card-featured {
    transform: scale(1);
    /* Keep border and shadow on mobile for visual distinction */
  }
}
