@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
  --bg-color: #06050b; /* Deep black with a hint of purple/blue */
  --bg-secondary: #0d0b17;
  --bg-card: rgba(255, 255, 255, 0.02);
  --border-light: rgba(255, 255, 255, 0.05);
  
  --text-main: #a3a3a3; /* Soft gray */
  --text-light: #f3f4f6; /* Off-white */
  
  --accent-blue: #00e5ff; /* Neon cyan/blue */
  --accent-blue-glow: rgba(0, 229, 255, 0.3);
  --accent-blue-dark: rgba(0, 229, 255, 0.1);
  
  --accent-red: #ff2a5f; /* Vibrant neon red */
  --accent-red-glow: rgba(255, 42, 95, 0.3);
  
  --shadow-glow-blue: 0 0 40px var(--accent-blue-glow);
  --shadow-glow-red: 0 0 40px var(--accent-red-glow);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
  
  --radius-box: 16px;
  --radius-btn: 50px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(circle at 0% 0%, var(--accent-blue-dark) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(255, 42, 95, 0.05) 0%, transparent 40%);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-light);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Utilities */
.text-blue { color: var(--accent-blue); text-shadow: 0 0 20px var(--accent-blue-glow); }
.text-red { color: var(--accent-red); text-shadow: 0 0 20px var(--accent-red-glow); }

.title-heavy {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 30px;
  max-width: 600px;
}

/* Glass/Card Boxes */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-box);
  padding: 40px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  opacity: 0.5;
}

/* Timeline specific (from reference image) */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent-blue), transparent);
}

.timeline-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-color);
  border: 2px solid var(--accent-blue);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 0 15px var(--accent-blue-glow);
  z-index: 2;
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.timeline-content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  text-transform: uppercase;
  padding: 20px 40px;
  border-radius: var(--radius-btn);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
  letter-spacing: 0.05em;
  text-align: center;
}

.btn-blue {
  background: var(--accent-blue);
  color: #000000; /* High contrast on neon cyan */
  box-shadow: var(--shadow-glow-blue);
}

.btn-blue:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--accent-blue-glow);
}

.btn-red {
  background: var(--accent-red);
  color: #ffffff;
  box-shadow: var(--shadow-glow-red);
}

.btn-red:hover {
  background: #ff4d79;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--accent-red-glow);
}

.pulse {
  animation: pulse-animation 2s infinite;
}

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

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Sections */
section {
  padding: 100px 0;
  position: relative;
}

.hero {
  padding: 80px 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-mentor-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 500px;
}

/* Efeito de bordas escuras esfumaçadas para mesclar a foto retangular com o fundo */
.hero-mentor-wrapper::after {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  background: 
    linear-gradient(to bottom, var(--bg-color) 0%, transparent 20%, transparent 80%, var(--bg-color) 100%),
    linear-gradient(to right, var(--bg-color) 0%, transparent 20%, transparent 80%, var(--bg-color) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-mentor-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--accent-blue-glow) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
}

.hero-mentor-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  display: block;
  border-radius: 20px; /* Bordas arredondadas para ajudar no fade */
  mask-image: radial-gradient(ellipse at center, black 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 50%, transparent 100%);
}

/* FAQ Minimalist (from reference) */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 0;
}

.faq-question {
  padding: 24px 0;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-blue);
}

.faq-answer {
  padding: 0 0 24px 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.4s ease;
  color: var(--text-main);
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  .hero {
    min-height: auto;
    padding: 60px 0 20px 0;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-mentor-wrapper {
    display: none;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    padding-left: 60px;
  }
  .timeline-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

footer {
  border-top: 1px solid var(--border-light);
  color: var(--text-main);
  text-align: center;
  padding: 40px 20px;
  font-size: 0.875rem;
}

/* Collage de Resultados */
.collage {
  column-count: 3;
  column-gap: 20px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.collage img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  display: block;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.collage img:hover {
  transform: scale(1.02);
  border-color: var(--accent-blue);
}

@media (max-width: 768px) {
  .collage {
    column-count: 2;
    column-gap: 12px;
  }
  .collage img {
    border-radius: 8px;
    margin-bottom: 12px;
  }
}
