/* Custom Styles for Oratório de Nossa Senhora Aparecida */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
  --color-gold: #D4AF37;
  --color-gold-light: #F3E5AB;
  --color-gold-dark: #A37F16;
  --color-navy-dark: #0B162C;
  --color-navy: #15274A;
  --color-wood-dark: #2C160B;
  --color-wood: #4A2818;
  --color-wood-light: #7A452B;
  --color-cream: #FAF6F0;
  --color-cream-card: #FFFFFF;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--color-cream);
  color: #2D2D2D;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.font-serif-sacred {
  font-family: 'Cinzel', serif;
}

.font-serif-body {
  font-family: 'Playfair Display', serif;
}

/* Background Gradients & Glows */
.bg-sacred-gradient {
  background: linear-gradient(135deg, #0A1428 0%, #15274A 50%, #1F3663 100%);
}

.bg-wood-gradient {
  background: linear-gradient(135deg, #2C160B 0%, #4A2818 100%);
}

.bg-gold-gradient {
  background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
}

.text-gold-glow {
  color: var(--color-gold-light);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.text-gradient-gold {
  background: linear-gradient(135deg, #FFE89C 0%, #D4AF37 50%, #997416 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.border-gold-glow {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Custom CTA Pulse Animation */
@keyframes goldPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.btn-gold-pulse {
  animation: goldPulse 2s infinite;
}

/* Shimmer Button Effect */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transform: rotate(30deg);
  animation: shimmerMove 3.5s infinite;
}

@keyframes shimmerMove {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }
  100% {
    transform: translateX(100%) rotate(30deg);
  }
}

/* Glassmorphism Card */
.glass-card-dark {
  background: rgba(11, 22, 44, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Image Thumbnail Selector */
.thumb-active {
  border-color: #D4AF37 !important;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Toast Popup */
#toast-notification {
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.toast-hidden {
  opacity: 0;
  transform: translateY(100px) scale(0.9);
  pointer-events: none;
}

.toast-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Badge Ribbons */
.badge-gold {
  background: linear-gradient(90deg, #D4AF37 0%, #F5E5A3 50%, #D4AF37 100%);
  color: #1A1A1A;
  font-weight: 700;
}

/* Floating WhatsApp / CTA Button */
.floating-cta {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Custom Accordion Chevron rotate */
.accordion-header.active svg {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
