/*
Theme Name: Numeravida
Theme URI: https://numeravida.com
Description: Tema místico para astrologia e numerologia com design premium
Version: 1.0.0
Author: Numeravida
Author URI: https://numeravida.com
Text Domain: numeravida
*/

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Cosmic color palette */
  --background: hsl(240, 30%, 8%);
  --foreground: hsl(0, 0%, 98%);
  --card: hsl(240, 25%, 12%);
  --card-foreground: hsl(0, 0%, 98%);
  --primary: hsl(280, 65%, 70%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(240, 30%, 15%);
  --secondary-foreground: hsl(0, 0%, 98%);
  --muted: hsl(240, 20%, 20%);
  --muted-foreground: hsl(240, 10%, 60%);
  --accent: hsl(330, 85%, 65%);
  --border: hsl(240, 20%, 25%);
  --input: hsl(240, 20%, 18%);
  
  /* Gradients */
  --gradient-cosmic: linear-gradient(135deg, hsl(280, 65%, 70%) 0%, hsl(330, 85%, 65%) 100%);
  --gradient-overlay: linear-gradient(180deg, hsla(240, 30%, 8%, 0) 0%, hsl(240, 30%, 8%) 100%);
  
  /* Shadows */
  --shadow-mystic: 0 10px 40px -10px hsla(280, 65%, 70%, 0.3);
  --shadow-card: 0 8px 30px -8px hsla(240, 30%, 0%, 0.5);
  --glow-primary: 0 0 30px hsla(280, 65%, 70%, 0.4);
  
  /* Typography */
  --font-cinzel: 'Cinzel', serif;
  --font-montserrat: 'Montserrat', sans-serif;
  
  --radius: 0.75rem;
}

body {
  font-family: var(--font-montserrat);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-cinzel);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-montserrat);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-cosmic);
  color: white;
  box-shadow: var(--shadow-mystic);
}

.btn-primary:hover {
  box-shadow: var(--glow-primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--secondary);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: var(--background);
}

.hero-stars {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.hero-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--foreground);
  border-radius: 50%;
  animation: glow 3s ease-in-out infinite;
}

.hero-mandala {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
}

.hero-mandala img {
  width: 800px;
  height: 800px;
  object-fit: contain;
  filter: blur(2px);
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 5rem 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  animation: fade-in 0.6s ease-out;
}

.hero-title {
  margin-bottom: 1.5rem;
  animation: fade-in 0.6s ease-out 0.1s backwards;
}

.hero-title .gradient-text {
  background: var(--gradient-cosmic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto 3rem;
  animation: fade-in 0.6s ease-out 0.2s backwards;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
  animation: fade-in 0.6s ease-out 0.3s backwards;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 42rem;
  margin: 0 auto;
  animation: fade-in 0.6s ease-out 0.4s backwards;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-cinzel);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: var(--gradient-overlay);
  pointer-events: none;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

/* ============================================
   FEATURES
   ============================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-cosmic);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  box-shadow: var(--glow-primary);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ============================================
   FORM
   ============================================ */

.form-section {
  background: var(--secondary);
  opacity: 0.2;
}

.form-badge {
  display: inline-block;
  background: var(--gradient-cosmic);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.form-container {
  max-width: 42rem;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--input);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  font-family: var(--font-montserrat);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(280, 65%, 70%, 0.1);
}

.form-input::placeholder {
  color: var(--muted-foreground);
}

.form-help {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

/* ============================================
   INSIGHTS PREVIEW
   ============================================ */

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

.insight-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.insight-card:hover {
  box-shadow: var(--shadow-mystic);
}

.insight-card.locked {
  opacity: 0.7;
}

.insight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.insight-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
}

.insight-description {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.insight-card.locked .insight-description {
  filter: blur(4px);
  user-select: none;
}

.insight-lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
  opacity: 0.95;
  border-radius: var(--radius);
}

.insight-lock-content {
  text-align: center;
  padding: 1.5rem;
}

/* ============================================
   PRICING
   ============================================ */

.pricing-container {
  max-width: 64rem;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: var(--shadow-card);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-features ul {
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--muted-foreground);
}

.pricing-box {
  background: var(--gradient-cosmic);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--glow-primary);
}

.pricing-amount {
  font-family: var(--font-cinzel);
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin: 0.5rem 0;
}

.pricing-installments {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.pricing-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--secondary);
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  color: var(--accent);
  font-size: 1.25rem;
}

.testimonial-text {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  font-family: var(--font-cinzel);
  font-weight: 600;
  color: var(--accent);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-text {
  color: var(--muted-foreground);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes glow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
