/* Variáveis CSS Customizadas */
:root {
  --radius: 1rem;
  --background: oklch(0.985 0.008 340);
  --foreground: oklch(0.22 0.06 350);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.22 0.06 350);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.22 0.06 350);
  --primary: oklch(0.62 0.24 350);
  --primary-foreground: oklch(0.99 0 0);
  --secondary: oklch(0.95 0.04 340);
  --secondary-foreground: oklch(0.3 0.1 350);
  --muted: oklch(0.96 0.02 340);
  --muted-foreground: oklch(0.5 0.05 340);
  --accent: oklch(0.85 0.15 350);
  --accent-foreground: oklch(0.22 0.06 350);
  --destructive: oklch(0.6 0.24 25);
  --destructive-foreground: oklch(0.99 0 0);
  --border: oklch(0.92 0.03 340);
  --input: oklch(0.92 0.03 340);
  --ring: oklch(0.62 0.24 350);
  --pink-soft: oklch(0.93 0.05 350);
  --pink-hot: oklch(0.62 0.26 350);
  --gold: oklch(0.82 0.14 85);
  --chrome: oklch(0.88 0.02 320);
  --font-display: "Playfair Display", "Georgia", serif;
  --font-sans: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --gradient-pink: linear-gradient(135deg, oklch(0.72 0.22 350), oklch(0.55 0.28 340));
  --gradient-chrome: linear-gradient(135deg, oklch(0.95 0.04 340) 0%, oklch(0.85 0.08 350) 50%, oklch(0.92 0.05 340) 100%);
  --gradient-gold: linear-gradient(135deg, oklch(0.88 0.13 90), oklch(0.72 0.16 70));
  --gradient-bg: radial-gradient(ellipse at top, oklch(0.95 0.06 340) 0%, oklch(0.99 0.01 340) 60%);
  --gradient-cta: linear-gradient(135deg, oklch(0.65 0.27 350) 0%, oklch(0.55 0.28 340) 50%, oklch(0.7 0.22 360) 100%);
  --shadow-glow: 0 20px 60px -15px oklch(0.62 0.26 350 / 0.45);
  --shadow-soft: 0 10px 40px -12px oklch(0.5 0.15 350 / 0.2);
  --shadow-chrome: 0 8px 32px -8px oklch(0.7 0.18 350 / 0.35), inset 0 1px 0 oklch(1 0 0 / 0.6);
}

/* Base Styles */
* { border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  background: var(--gradient-bg);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { 
  font-family: var(--font-display); 
  letter-spacing: -0.02em; 
}

/* Gradient Text */
.text-gradient-pink {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient-chrome {
  background: linear-gradient(180deg, oklch(0.55 0.28 340) 0%, oklch(0.75 0.18 350) 50%, oklch(0.45 0.3 340) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 4px oklch(0.5 0.15 350 / 0.15);
}

.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Backgrounds */
.bg-gradient-pink { background: var(--gradient-pink); }
.bg-gradient-chrome { background: var(--gradient-chrome); }
.bg-gradient-cta { background: var(--gradient-cta); }

/* Shadows */
.shadow-glow { box-shadow: var(--shadow-glow); }
.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-chrome { box-shadow: var(--shadow-chrome); }

/* Glass Effect */
.glass {
  background: oklch(1 0 0 / 0.65);
  backdrop-filter: blur(20px);
  border: 1px solid oklch(1 0 0 / 0.6);
}

/* Chrome Card */
.chrome-card {
  background: linear-gradient(135deg, oklch(1 0 0) 0%, oklch(0.97 0.03 340) 50%, oklch(1 0 0) 100%);
  border: 1px solid oklch(0.9 0.05 340);
  box-shadow: var(--shadow-chrome);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-slow { animation: float 8s ease-in-out infinite; }

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer {
  background: linear-gradient(90deg, transparent, oklch(1 0 0 / 0.4), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
.animate-sparkle { animation: sparkle 2s ease-in-out infinite; }

@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 0 30px oklch(0.62 0.26 350 / 0.4), 0 20px 60px -15px oklch(0.62 0.26 350 / 0.5); 
  }
  50% { 
    box-shadow: 0 0 50px oklch(0.62 0.26 350 / 0.7), 0 25px 70px -15px oklch(0.62 0.26 350 / 0.6); 
  }
}
.animate-pulse-glow { animation: pulse-glow 2.5s ease-in-out infinite; }

/* Responsive Utilities */
@media (min-width: 640px) {
  .sm\\:rounded-\\[2rem\\] { border-radius: 2rem; }
}

/* Hover Scale */
.hover\\:scale-\\[1\\.02\\]:hover {
  transform: scale(1.02);
}

.hover\\:scale-\\[1\\.03\\]:hover {
  transform: scale(1.03);
}

.active\\:scale-\\[0\\.98\\]:active {
  transform: scale(0.98);
}

/* Leading Tight */
.leading-tight {
  line-height: 1.25;
}

/* Large Text Sizes */
.lg\\:text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

@media (min-width: 1024px) {
  .lg\\:text-6xl {
    font-size: 3.75rem;
  }
}

/* Padding Bottom */
.pb-12 {
  padding-bottom: 3rem;
}

.pt-16 {
  padding-top: 4rem;
}

/* Margin Bottom */
.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

/* Width/Height */
.h-12 {
  height: 3rem;
}

.w-12 {
  width: 3rem;
}

/* Border */
.border-2 {
  border-width: 2px;
}

/* Max Width */
.max-w-5xl {
  max-width: 64rem;
}

.max-w-4xl {
  max-width: 56rem;
}

/* Text Sizes */
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}

@media (min-width: 640px) {
  .sm\\:text-4xl {
    font-size: 2.25rem;
  }
  .sm\\:text-7xl {
    font-size: 4.5rem;
  }
}

/* Background Gradient to R */
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-pink-hot {
  --tw-gradient-from: var(--pink-hot);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 105, 180, 0));
}

.to-pink-600 {
  --tw-gradient-to: #db2777;
}

/* Botão Flutuante Mobile */
.fixed-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(255, 105, 180, 0.3);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.fixed-bottom-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: var(--gradient-cta);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 9999px;
  box-shadow: var(--shadow-glow);
  text-decoration: none;
  transition: transform 0.2s;
}

.fixed-bottom-cta a:active {
  transform: scale(0.98);
}

/* Esconder em desktop */
@media (min-width: 768px) {
  .fixed-bottom-cta {
    display: none;
  }
}

.text-gray-800 {
  color: #1f2937;
}

.mb-4 {
  margin-bottom: 1rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.items-start {
  align-items: flex-start;
}

.mt-1 {
  margin-top: 0.25rem;
}

/* Fix para preços no mobile */
@media (max-width: 640px) {
  .flex.items-end.justify-center.gap-3,
  .flex.items-end.justify-center.gap-4 {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .flex.items-end.justify-center.gap-3 > div,
  .flex.items-end.justify-center.gap-4 > div {
    text-align: center;
  }
  
  .flex.items-end.justify-center.gap-3 .text-left,
  .flex.items-end.justify-center.gap-4 .text-left {
    text-align: center;
  }
  
  /* Ajustar tamanho do preço principal no mobile */
  .text-6xl {
    font-size: 3rem !important;
    line-height: 1 !important;
  }
  
  /* Ajustar preço riscado */
  .text-2xl.line-through,
  .text-3xl.line-through {
    font-size: 1.5rem !important;
  }
}
