/* ============================================
   Mentoria Movimento de Carreira
   styles.css — Custom Styles
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #0C0C0C; color: #e0e0d5; font-family: 'DM Sans', sans-serif; overflow-x: hidden; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #141414; }
::-webkit-scrollbar-thumb { background: #6f323c; border-radius: 3px; }

/* Gold gradient text */
.gold-text { background: linear-gradient(135deg, #3d1a21 0%, #6f323c 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Gold gradient bg */
.gold-bg { background: linear-gradient(135deg, #3d1a21 0%, #6f323c 100%); }

/* Animated border */
.gold-border-card { position: relative; border: 1px solid #2A2A2A; transition: border-color 0.3s ease; }
.gold-border-card:hover { border-color: #6f323c; box-shadow: 0 0 30px rgba(111, 50, 60, 0.12); }

/* Glow effect */
.glow { box-shadow: 0 0 40px rgba(111, 50, 60, 0.25); }
.glow-sm { box-shadow: 0 0 20px rgba(111, 50, 60, 0.15); }

/* Grain texture — CSS based noise */
.grain-texture {
  position: relative;
  overflow: hidden;
}
.grain-texture::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02) 0px,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 2px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.01) 0px,
      rgba(255, 255, 255, 0.01) 1px,
      transparent 1px,
      transparent 2px
    );
  pointer-events: none;
  opacity: 0.4;
}

/* Divider */
.gold-divider { width: 60px; height: 2px; background: linear-gradient(90deg, transparent, #6f323c, transparent); }

/* Fade in animations */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.7s ease; }
.fade-in.visible { opacity: 1; }

/* Nav */
.nav-scrolled { background: rgba(12, 12, 12, 0.95) !important; backdrop-filter: blur(20px); border-bottom: 1px solid #2A2A2A; }

/* Hero gradient */
.hero-bg { background: radial-gradient(ellipse at 20% 50%, rgba(61, 26, 33, 0.08) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(111, 50, 60, 0.06) 0%, transparent 50%), #0C0C0C; }

/* CTA Button */
.btn-gold { background: linear-gradient(135deg, #3d1a21, #6f323c); color: #e0e0d5; font-weight: 700; letter-spacing: 0.05em; transition: all 0.3s ease; position: relative; overflow: hidden; }
.btn-gold::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #3d1a21, #6f323c); opacity: 0; transition: opacity 0.3s ease; }
.btn-gold:hover::before { opacity: 1; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(111, 50, 60, 0.35); }
.btn-gold span { position: relative; z-index: 1; }

/* Pill badge */
.badge { border: 1px solid rgba(111, 50, 60, 0.4); background: rgba(111, 50, 60, 0.08); color: #6f323c; }

/* Pain card */
.pain-card { background: #141414; border: 1px solid #222; border-left: 3px solid #6f323c; transition: all 0.3s ease; }
.pain-card:hover { background: #1A1A1A; border-left-color: #6f323c; transform: translateX(6px); }

/* Pillar card */
.pillar-num { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, rgba(61,26,33,0.2), rgba(111,50,60,0.05)); border: 1px solid rgba(111,50,60,0.3); display: flex; align-items: center; justify-content: center; font-family: 'DM Sans', serif; font-size: 1.25rem; color: #6f323c; }

/* FAQ */
.faq-item { border-bottom: 1px solid #222; }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 !important; margin: 0 !important; }
.faq-content.open { max-height: 500px; padding: 0 2rem 1rem 0 !important; }
.faq-icon { transition: transform 0.3s ease; }
.faq-icon.open { transform: rotate(45deg); }

/* Counter animation */
.counter { font-variant-numeric: tabular-nums; }

/* Floating elements */
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
.float-anim { animation: float 6s ease-in-out infinite; }
@keyframes pulse-gold { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
.pulse-gold { animation: pulse-gold 3s ease-in-out infinite; }

/* Stats */
.stat-card { background: linear-gradient(135deg, #1A1A1A, #141414); border: 1px solid #2A2A2A; }

/* Progress dots */
.dot-active { background: #6f323c; transform: scale(1.3); }

/* Guarantee badge */
.guarantee-badge { background: radial-gradient(ellipse at center, rgba(61,26,33,0.15), transparent 70%); border: 2px solid rgba(111,50,60,0.3); }

/* Tag urgency */
.urgency-tag { background: rgba(111, 50, 60, 0.1); border: 1px solid rgba(111, 50, 60, 0.3); animation: pulse-gold 2.5s ease-in-out infinite; }

/* Sticky bar */
#sticky-bar { transform: translateY(-100%); transition: transform 0.5s ease; }
#sticky-bar.show { transform: translateY(0); }

/* Result check */
.result-check { color: #6f323c; flex-shrink: 0; }

/* Mobile menu */
#mobile-menu { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
#mobile-menu.open { max-height: 400px; }

@media (max-width: 768px) {
.hero-headline { font-size: 2.2rem !important; }
}
