/* Biblical Activities Kit - Production Styles */

:root {
  --primary-red: hsl(355, 85%, 55%);
  --primary-blue: hsl(220, 100%, 60%);
  --electric-blue: hsl(210, 100%, 50%);
  --success-green: hsl(145, 85%, 45%);
  --neon-green: hsl(120, 100%, 50%);
  --warning-yellow: hsl(45, 100%, 55%);
  --orange-400: hsl(25, 100%, 55%);
  --purple-600: hsl(270, 85%, 55%);
  --cyan-400: hsl(180, 100%, 45%);
  --pink-500: hsl(320, 100%, 60%);
  --gold: hsl(45, 100%, 50%);
  --emerald: hsl(160, 100%, 40%);
}

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

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  line-height: 1.6;
  color: #333;
  padding-top: 60px;
  margin: 0 auto;
  max-width: 480px;
  background: #fff;
}

.font-sans, .max-w-4xl, .max-w-6xl, .max-w-2xl {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.vibrant-gradient {
  background: linear-gradient(135deg, 
    var(--pink-500) 0%,
    var(--purple-600) 25%,
    var(--electric-blue) 50%,
    var(--cyan-400) 75%,
    var(--neon-green) 100%
  );
}

.futuristic-blue-gradient {
  background: linear-gradient(135deg, 
    var(--electric-blue) 0%,
    var(--cyan-400) 50%,
    var(--purple-600) 100%
  );
}

.gold-gradient {
  background: linear-gradient(135deg, 
    var(--gold) 0%,
    var(--orange-400) 100%
  );
}

.rainbow-gradient {
  background: linear-gradient(90deg, 
    hsl(0, 100%, 60%) 0%,
    hsl(45, 100%, 60%) 16.66%,
    hsl(90, 100%, 60%) 33.33%,
    hsl(180, 100%, 60%) 50%,
    hsl(240, 100%, 60%) 66.66%,
    hsl(300, 100%, 60%) 83.33%,
    hsl(360, 100%, 60%) 100%
  );
}

.colorindo-gradient {
  background: linear-gradient(45deg, var(--purple-600), var(--neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.neon-glow {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.6), 0 0 40px rgba(59, 130, 246, 0.4), 0 0 60px rgba(59, 130, 246, 0.2);
}

.neon-green-glow {
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.6), 0 0 40px rgba(0, 255, 0, 0.4), 0 0 60px rgba(0, 255, 0, 0.2);
}

.neon-purple-glow {
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.6), 0 0 40px rgba(147, 51, 234, 0.4), 0 0 60px rgba(147, 51, 234, 0.2);
}

.glass-effect {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.dark-glass-effect {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.animated-gradient {
  background: linear-gradient(45deg, var(--pink-500), var(--purple-600), var(--electric-blue), var(--cyan-400));
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite;
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.button-hover-effect {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.button-hover-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.button-hover-effect:hover::before {
  left: 100%;
}

.button-hover-effect:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.animate-in {
  animation: fadeInUp 0.6s ease-out;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .text-7xl { font-size: 3rem; }
  .text-6xl { font-size: 2.5rem; }
  .text-5xl { font-size: 2rem; }
  .text-4xl { font-size: 1.8rem; }
  .text-3xl { font-size: 1.5rem; }
}

@media (max-width: 600px) {
  body {
    padding-top: 48px;
    max-width: 100vw;
    font-size: 15px;
  }
  .oferta-exclusiva-banner {
    font-size: 1.1rem;
    padding: 12px 0 8px 0;
  }
  .rounded-3xl, .rounded-2xl, .rounded-xl, .rounded-full {
    border-radius: 1rem !important;
  }
  .p-8, .p-12 {
    padding: 1.2rem !important;
  }
  .py-20 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .px-4, .px-8, .px-12 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .text-6xl {
    font-size: 2rem !important;
  }
  .text-5xl {
    font-size: 1.5rem !important;
  }
  .text-4xl {
    font-size: 1.2rem !important;
  }
  .text-3xl {
    font-size: 1rem !important;
  }
  .text-2xl {
    font-size: 0.95rem !important;
  }
  .text-xl {
    font-size: 0.9rem !important;
  }
  img, .w-full {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .max-w-4xl, .max-w-6xl, .max-w-2xl {
    max-width: 98vw !important;
  }
  .grid, .grid-cols-2, .md\:grid-cols-3 {
    display: block !important;
  }
  .space-x-4 > * {
    margin-right: 0.5rem !important;
  }
  .mb-8, .mb-12 {
    margin-bottom: 1.2rem !important;
  }
  .mt-2, .mt-6, .mt-8, .mt-12 {
    margin-top: 0.8rem !important;
  }
  .passo-num {
    font-size: 1.3rem;
    padding: 0.15em 0.7em;
  }
  .passo-txt {
    font-size: 1.05rem;
  }
}

.oferta-exclusiva-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ff0202;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  padding: 18px 0 12px 0;
  z-index: 99999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.oferta-exclusiva-banner.hide {
  opacity: 0;
  pointer-events: none;
}

.passo-num {
  display: inline-block;
  background: #ffe600;
  color: #1e40af;
  font-weight: 800;
  font-size: 2rem;
  border-radius: 1.5rem;
  padding: 0.2em 0.8em;
  margin-bottom: 0.5em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

.passo-txt {
  color: #1e40af;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  margin-bottom: 1.2em;
  text-align: left;
}