@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&family=Open+Sans:wght@300;400;600;700&display=swap');

/* CSS Variables */
:root {
  --background: hsl(45, 55%, 96%);
  --foreground: hsl(25, 60%, 12%);
  --card: hsl(45, 50%, 98%);
  --card-foreground: hsl(25, 60%, 12%);
  --popover: hsl(45, 50%, 98%);
  --popover-foreground: hsl(25, 60%, 12%);
  --primary: hsl(25, 55%, 35%);
  --primary-foreground: hsl(45, 95%, 95%);
  --secondary: hsl(25, 70%, 45%);
  --secondary-foreground: hsl(45, 95%, 95%);
  --muted: hsl(45, 45%, 92%);
  --muted-foreground: hsl(25, 40%, 25%);
  --accent: hsl(28, 65%, 65%);
  --accent-foreground: hsl(25, 60%, 12%);
  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(0, 0%, 98%);
  --border: hsl(45, 35%, 85%);
  --input: hsl(45, 50%, 95%);
  --ring: hsl(25, 55%, 35%);
  --success: hsl(120, 61%, 34%);
  --chart-1: hsl(25, 55%, 35%);
  --chart-2: hsl(25, 70%, 45%);
  --chart-3: hsl(28, 65%, 65%);
  --chart-4: hsl(120, 61%, 34%);
  --chart-5: hsl(0, 84%, 60%);
  --sidebar: hsl(45, 50%, 98%);
  --sidebar-foreground: hsl(25, 60%, 12%);
  --sidebar-primary: hsl(25, 55%, 35%);
  --sidebar-primary-foreground: hsl(45, 95%, 95%);
  --sidebar-accent: hsl(45, 45%, 92%);
  --sidebar-accent-foreground: hsl(25, 60%, 12%);
  --sidebar-border: hsl(45, 35%, 85%);
  --sidebar-ring: hsl(25, 55%, 35%);
  --font-sans: 'Poppins', system-ui, sans-serif;
  --font-serif: 'Open Sans', Georgia, serif;
  --font-mono: Menlo, monospace;
  --radius: 1rem;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-serif);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
.font-sans {
  font-family: var(--font-sans);
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-lg {
  font-size: 1.125rem;
}

/* Colors */
.text-primary {
  color: var(--primary);
}

.text-primary-foreground {
  color: var(--primary-foreground);
}

.text-secondary {
  color: var(--secondary);
}

.text-accent {
  color: var(--accent);
}

.text-success {
  color: var(--success);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.text-card-foreground {
  color: var(--card-foreground);
}

.text-foreground {
  color: var(--foreground);
}

.text-destructive {
  color: var(--destructive);
}

.text-center {
  text-align: center;
}

/* Spacing */
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

/* Layout */
.flex {
  display: flex;
}

.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

/* Sizing */
.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-16 {
  height: 4rem;
}

.h-32 {
  height: 8rem;
}

.h-40 {
  height: 10rem;
}

.h-48 {
  height: 12rem;
}

.h-auto {
  height: auto;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Background Colors */
.bg-muted {
  background-color: var(--muted);
}

.bg-card {
  background-color: var(--card);
}

.bg-primary {
  background-color: var(--primary);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-success {
  background-color: var(--success);
}

.bg-destructive {
  background-color: var(--destructive);
}

.bg-foreground {
  background-color: var(--foreground);
}

/* Gradients */
.gradient-bg {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.gradient-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
}

/* Border Radius */
.rounded-full {
  border-radius: 9999px;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

/* Shadows */
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.text-shadow {
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Position */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

/* Opacity */
.opacity-60 {
  opacity: 0.6;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

/* Effects */
.backdrop-blur {
  backdrop-filter: blur(8px);
}

.line-through {
  text-decoration: line-through;
}

/* Transitions */
.transition-all {
  transition: all 0.3s ease;
}

.transition-shadow {
  transition: box-shadow 0.3s ease;
}

.transition-transform {
  transition: transform 0.3s ease;
}

/* Hover Effects */
.hover-shadow-xl:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hover-scale-105:hover {
  transform: scale(1.05);
}

.hover-opacity-90:hover {
  opacity: 0.9;
}

/* Buttons - CORRIGIDO E SIMPLIFICADO */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  color: var(--foreground);
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  color: var(--foreground);
}

.btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Cards */
.card {
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.badge-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.badge-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.badge-destructive {
  background-color: var(--destructive);
  color: var(--destructive-foreground);
}

/* Icon */
.icon {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-xl {
  width: 2rem;
  height: 2rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse-slow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-in-right {
  animation: fadeInRight 0.6s ease-out;
}

.animate-pulse-slow {
  animation: pulse-slow 3s infinite;
}

/* Animation Delays */
.animation-delay-1 {
  animation-delay: 0.1s;
}

.animation-delay-2 {
  animation-delay: 0.2s;
}

.animation-delay-3 {
  animation-delay: 0.3s;
}

.animation-delay-4 {
  animation-delay: 0.4s;
}

.animation-delay-5 {
  animation-delay: 0.5s;
}

.animation-delay-8 {
  animation-delay: 0.8s;
}

.animation-delay-10 {
  animation-delay: 1s;
}

/* Accordion */
.accordion-item {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.accordion-trigger {
  width: 100%;
  padding: 1rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  transition: all 0.3s ease;
}

.accordion-trigger:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content.open {
  max-height: 500px;
}

.accordion-content-inner {
  padding: 0 1.5rem 1rem;
  color: var(--muted-foreground);
}

.accordion-chevron {
  transition: transform 0.3s ease;
}

.accordion-chevron.rotated {
  transform: rotate(180deg);
}

/* Custom Component Styles */
.hero-overlay {
  background-color: rgba(0, 0, 0, 0.1);
}

.hero-info-box {
  background-color: rgba(248, 248, 255, 0.9);
}

.price-old {
  color: var(--foreground);
}

.icon-container {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.icon-container-primary {
  background-color: rgba(139, 69, 19, 0.1);
}

.icon-container-secondary {
  background-color: rgba(160, 82, 45, 0.1);
}

.icon-container-accent {
  background-color: rgba(210, 180, 140, 0.1);
}

.icon-container-success {
  background-color: rgba(34, 139, 34, 0.1);
}

.icon-badge {
  height: 0.75rem;
  top: -4px;
  right: -4px;
}

.check-icon {
  color: white;
}

.check-icon-inner {
  color: white !important;
}

.check-icon-small {
  height: 0.75rem !important;
  width: 0.75rem !important;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
}

.review-stars {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.cta-card {
  color: white;
}

.pricing-box {
  background-color: rgba(255, 255, 255, 0.95);
}

.pricing-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.alert-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}

.disclaimer-text {
  font-size: 0.75rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.final-overlay {
  background-color: rgba(0, 0, 0, 0.2);
}

.cross-badge {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 1rem;
  padding: 0.5rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.final-cta-box {
  background-color: rgba(248, 248, 255, 0.1);
}

/* Background patterns */
.bg-primary-10 {
  background-color: rgba(139, 69, 19, 0.1);
}

.bg-secondary-10 {
  background-color: rgba(160, 82, 45, 0.1);
}

.bg-accent-10 {
  background-color: rgba(210, 180, 140, 0.1);
}

.bg-success-10 {
  background-color: rgba(34, 139, 34, 0.1);
}

.bg-primary-foreground-90 {
  background-color: rgba(248, 248, 255, 0.9);
}

.bg-primary-foreground-10 {
  background-color: rgba(248, 248, 255, 0.1);
}

.bg-white-95 {
  background-color: rgba(255, 255, 255, 0.95);
}

.bg-black-10 {
  background-color: rgba(0, 0, 0, 0.1);
}

.bg-black-20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.text-primary-foreground-80 {
  color: rgba(248, 248, 255, 0.8);
}

.text-primary-foreground-90 {
  color: rgba(248, 248, 255, 0.9);
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

.text-white-90 {
  color: rgba(255, 255, 255, 0.9);
}

.text-red-400 {
  color: rgb(248, 113, 113);
}

.text-red-500 {
  color: rgb(239, 68, 68);
}

.text-yellow-400 {
  color: rgb(251, 191, 36);
}

/* Bonus section gradient */
.bg-gradient-bonus {
  background: linear-gradient(135deg, rgba(210, 180, 140, 0.2) 0%, rgba(160, 82, 45, 0.2) 100%);
}

/* Border colors */
.border-primary-20 {
  border: 2px solid rgba(139, 69, 19, 0.2);
}

.border-secondary-20 {
  border: 2px solid rgba(160, 82, 45, 0.2);
}

.border-accent-20 {
  border: 2px solid rgba(210, 180, 140, 0.2);
}

.border-success-20 {
  border: 2px solid rgba(34, 139, 34, 0.2);
}

/* Min height */
.min-h-screen {
  min-height: 100vh;
}

.h-full {
  height: 100%;
}

/* Order classes for flexbox */
.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

/* Utility Classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline-flex {
  display: inline-flex;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.leading-relaxed {
  line-height: 1.625;
}

/* Solução definitiva para o botão de pricing */
.btn-pricing-fix {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    background: linear-gradient(135deg, hsl(28, 65%, 65%) 0%, hsl(25, 70%, 45%) 100%) !important;
    color: hsl(25, 60%, 12%) !important;
    border: none !important;
    border-radius: 9999px !important;
    padding: 1.5rem 3rem !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 100 !important;
}

.btn-pricing-fix:hover {
    opacity: 0.9 !important;
    transform: scale(1.05) !important;
}

/* ========== MOBILE FIRST APPROACH ========== */
/* Base mobile styles (0px - 480px) */

/* Botões otimizados para mobile */
@media (max-width: 480px) {
    .btn,
    .btn-primary {
      padding: 1rem 1.5rem !important;
      font-size: 1rem !important;
      min-height: 60px;
      background: linear-gradient(135deg, hsl(28, 65%, 65%) 0%, hsl(25, 70%, 45%) 100%) !important;
      color: hsl(25, 60%, 12%) !important;
      border: none !important;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    }
    
    .btn-pricing-fix,
        #pricing .btn,
        #pricing .btn-primary {
            padding: 1rem 1rem !important;
            font-size: 0.9rem !important;
            min-height: 50px !important;
            line-height: 1.2 !important;
        }
        
        .btn-pricing-fix span {
            line-height: 1.2 !important;
        }
    
    /* Garante que todos os botões de compra sejam consistentes */
    [data-testid="button-purchase-final"],
    [data-testid="button-hero-cta"] {
      background: linear-gradient(135deg, hsl(28, 65%, 65%) 0%, hsl(25, 70%, 45%) 100%) !important;
      color: hsl(25, 60%, 12%) !important;
      border: none !important;
    }
    
    /* Texto dos botões em mobile */
    .btn i {
      width: 18px !important;
      height: 18px !important;
      margin-right: 8px !important;
    }
    
    /* Cores consistentes para mobile */
    body {
      background-color: hsl(45, 55%, 96%) !important;
      color: hsl(25, 60%, 12%) !important;
    }
    
    .card {
      background-color: hsl(45, 50%, 98%) !important;
      color: hsl(25, 60%, 12%) !important;
    }
    
    .text-card-foreground,
    .text-foreground {
      color: hsl(25, 60%, 12%) !important;
    }
    
    .text-muted-foreground {
      color: hsl(25, 40%, 25%) !important;
    }
    
    .text-primary {
      color: hsl(25, 55%, 35%) !important;
    }
    
    .bg-muted {
      background-color: hsl(45, 45%, 92%) !important;
    }
    
    .gradient-bg {
      background: linear-gradient(135deg, hsl(25, 55%, 35%) 0%, hsl(25, 70%, 45%) 100%) !important;
    }
    
    .badge-primary {
      background-color: hsl(25, 55%, 35%) !important;
      color: hsl(45, 95%, 95%) !important;
    }
    
    .badge-accent {
      background-color: hsl(28, 65%, 65%) !important;
      color: hsl(25, 60%, 12%) !important;
    }
    
    .bg-foreground {
      background-color: hsl(25, 60%, 12%) !important;
    }
    
    footer {
      background-color: hsl(25, 60%, 12%) !important;
      color: hsl(45, 95%, 95%) !important;
    }
    
    /* Seções especiais com gradiente */
    #pricing .card.gradient-bg,
    .final-conversion {
      background: linear-gradient(135deg, hsl(25, 55%, 35%) 0%, hsl(25, 70%, 45%) 100%) !important;
    }
    
    .final-conversion .gradient-bg {
      background: linear-gradient(135deg, hsl(25, 55%, 35%) 0%, hsl(25, 70%, 45%) 100%) !important;
    }
    
    #pricing .pricing-box,
    .pricing-box {
      background-color: rgba(255, 255, 255, 0.95) !important;
    }
    
    .text-primary-foreground,
    .text-primary-foreground-80,
    .text-primary-foreground-90,
    .text-white-80,
    .text-white-90 {
      color: hsl(45, 95%, 95%) !important;
    }
    
    .alert-text {
      color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .disclaimer-text {
      color: rgba(255, 255, 255, 0.8) !important;
    }
}

/* ========== TABLET (481px - 768px) ========== */
@media (min-width: 481px) {
  .btn,
  .btn-primary {
    padding: 1.25rem 2rem !important;
    font-size: 1.125rem !important;
  }
  
  .btn-pricing-fix,
    #pricing .btn,
    #pricing .btn-primary {
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        min-height: 60px !important;
        background: linear-gradient(135deg, #d2b48c 0%, #a0522d 100%) !important;
        color: #2c1810 !important;
    }
  
  .md-text-xl {
    font-size: 1.25rem;
  }

  .md-text-2xl {
    font-size: 1.5rem;
  }

  .md-text-4xl {
    font-size: 2.25rem;
  }

  .md-text-5xl {
    font-size: 3rem;
  }

  .md-text-6xl {
    font-size: 3.75rem;
  }

  .md-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .md-h-40 {
    height: 10rem;
  }
}

/* ========== DESKTOP (769px+) ========== */
@media (min-width: 769px) {
  .btn,
  .btn-primary {
    padding: 1.5rem 3rem !important;
    font-size: 1.25rem !important;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%) !important;
    color: var(--foreground) !important;
  }

  .lg-text-5xl {
    font-size: 3rem;
  }

  .lg-text-6xl {
    font-size: 3.75rem;
  }

  .lg-py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .lg-py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .lg-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lg-grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .lg-h-48 {
    height: 12rem;
  }

  .lg-order-1 {
    order: 1;
  }

  .lg-order-2 {
    order: 2;
  }
}

/* ========== LARGE DESKTOP (1025px+) ========== */
@media (min-width: 1025px) {
  .container {
    padding: 0 2rem;
  }
}