/* ============================================================
   MoveClub — Mentoria para Mulheres
   Ultra-Elegant Dark Red & Black Theme
   ============================================================ */

:root {
  --bg: #050505;
  --bg2: #0a0a0a;
  --bg3: #0f0f0f;
  --accent: #720e1c;
  --accent-light: #991b1b;
  --accent-dim: rgba(114, 14, 28, 0.15);
  --accent-glow: rgba(114, 14, 28, 0.3);
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --card: rgba(255, 255, 255, 0.02);
  --card-border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Bodoni Moda', 'Playfair Display', serif;
  --font-body: 'Jost', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Texture overlay for that 'fancy' feel */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1000;
}

/* Ambient light orbs */
.ambient-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
}
.orb-1 { top: -100px; right: -200px; }
.orb-2 { bottom: 20%; left: -200px; background: radial-gradient(circle, rgba(0,0,0,0.5) 0%, transparent 70%); }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; color: var(--accent-light); font-weight: inherit; }
strong { color: var(--text); font-weight: 600; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.overline {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 16px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 18px 42px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: 0.5s;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 50px var(--accent-glow);
}
.btn-primary:hover::after { left: 100%; }

.btn-nav {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 24px;
  font-size: 0.7rem;
}
.btn-full { width: 100%; }

/* ---- Navigation ---- */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s ease;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px; /* Increased from 80px */
}
.nav-logo img { height: 42px; width: auto; transition: transform 0.3s ease; } /* Increased from 28px */
.nav-logo:hover img { transform: scale(1.05); }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: all 0.3s;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a:focus { color: var(--text); text-shadow: 0 0 10px rgba(255,255,255,0.3); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; position: relative; z-index: 110; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  margin: 7px 0;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 32px 100px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 100px;
  position: relative;
}
.hero-content { flex: 1; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 40px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 56px;
  max-width: 540px;
  font-weight: 300;
}
.hero-image {
  flex: 0 0 440px;
  position: relative;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: -30px;
  border: 1px solid rgba(114, 14, 28, 0.2);
  z-index: -1;
  pointer-events: none;
  border-radius: 2px;
}
.hero-image img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  filter: sepia(0.1) contrast(1.1) brightness(0.9);
  border-radius: 2px;
}

/* ---- Sections ---- */
.section { padding: 140px 0; position: relative; }
.section-dark { background: var(--bg2); }
.section-accent {
  background: linear-gradient(180deg, #050505 0%, #0f0a0b 100%);
  border-top: 1px solid rgba(255,255,255,0.03);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 72px;
  letter-spacing: -0.01em;
}
.section-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 2;
  max-width: 760px;
  margin: 0 auto 60px;
  font-weight: 300;
}

/* ---- Pain Points ---- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 100px;
}
.pain-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(15px);
  padding: 56px 48px;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 4px;
}
.pain-card:hover { 
  transform: translateY(-12px); 
  border-color: rgba(114, 14, 28, 0.4);
  background: rgba(114, 14, 28, 0.03);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.pain-icon { font-size: 2.2rem; display: block; margin-bottom: 24px; filter: grayscale(1) brightness(1.8) opacity(0.7); }
.pain-card p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; font-weight: 300; }

.desire-block { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 80px; }
.desire-text {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 16px;
}

/* ---- Mentors ---- */
.mentors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 80px;
}
.mentor-photo {
  width: 100%;
  aspect-ratio: 0.85;
  margin-bottom: 40px;
  overflow: hidden;
  filter: sepia(0.2) contrast(1.1) brightness(0.8);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.mentor-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
}
.mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mentor-card:hover .mentor-photo img { transform: scale(1.08); }
.mentor-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 24px;
}

/* ---- Method ---- */
.method-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  border: 1px solid var(--card-border);
  padding: 56px;
  border-radius: 4px;
}
.method-letter {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(114, 14, 28, 0.3);
  font-size: 1.4rem;
  margin-bottom: 32px;
}

/* ---- CTA / Form ---- */
.cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}
.cta-form {
  background: #0a0a0a;
  padding: 64px;
  border: 1px solid rgba(255,255,255,0.03);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  position: relative;
}
.cta-form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--accent);
}

/* ---- Footer ---- */
footer {
  background: #000;
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.03);
}
footer img { height: 36px; } /* Increased from 24px */

/* ---- Animations ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
[data-reveal].active {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav-inner { height: 80px; }
  .nav-logo img { height: 32px; }
  .hero { padding-top: 120px; }
  .section { padding: 100px 0; }
  .cta-form { padding: 40px 32px; }
}
