@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ============================================
   DESIGN TOKENS (shared with main site)
   ============================================ */
:root {
  --color-surface: #fbf9f7;
  --color-surface-container-lowest: #ffffff;
  --color-surface-container-low: #f5f3f1;
  --color-surface-container: #efedec;
  --color-on-surface: #1b1c1b;
  --color-on-surface-variant: #51443e;
  --color-outline-variant: #d6c3ba;
  --color-primary: #7f5137;
  --color-primary-light: #a67357;
  --color-on-primary: #ffffff;
  --color-secondary: #f29339;
  --color-tertiary: #6b4e3d;
  --color-soft-clay: #d9c5b2;
  --color-earth-brown: #4a372d;
  --color-surface-warm: #faf9f8;

  /* Mentoria-specific accent */
  --color-accent: #c4793a;
  --color-accent-deep: #9b5427;
  --color-dark: #1c1510;

  --font-display: 'Epilogue', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --rounded-sm: 0.25rem;
  --rounded-md: 0.75rem;
  --rounded-lg: 1rem;
  --rounded-xl: 1.5rem;
  --rounded-full: 9999px;

  --section-gap: 7rem;
  --gutter: 1.5rem;

  --shadow-ambient: 0 20px 30px rgba(74, 55, 45, 0.05);
  --shadow-hover: 0 30px 50px rgba(74, 55, 45, 0.1);
  --shadow-card: 0 4px 24px rgba(74, 55, 45, 0.07);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  background-color: var(--color-surface);
  color: var(--color-on-surface);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-tertiary);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.015em; }
h3 { font-size: 1.3rem; }

p { font-size: 1.0625rem; color: var(--color-on-surface-variant); line-height: 1.75; }

a { color: var(--color-primary); text-decoration: none; transition: color 0.3s ease; }

section { padding: var(--section-gap) 0; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

/* ============================================
   SHARED HEADER (same as main site)
   ============================================ */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.25rem 0;
  background: rgba(251, 249, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(214, 195, 186, 0.25);
}

header.scrolled {
  padding: 0.85rem 0;
  box-shadow: 0 4px 30px rgba(74, 55, 45, 0.04);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { display: flex; align-items: center; transition: opacity 0.3s ease; }
.logo:hover { opacity: 0.85; }
.logo img { display: block; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.975rem;
  color: var(--color-on-surface-variant);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background-color: var(--color-primary-light);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover { color: var(--color-tertiary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--color-tertiary); font-weight: 600; }

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--rounded-full);
  background-color: var(--color-primary);
  color: #fff;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none; cursor: pointer;
}

.btn-header-cta:hover {
  background-color: var(--color-tertiary);
  transform: translateY(-2px);
  color: #fff;
}

.mobile-nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 0.5rem; z-index: 1010;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background-color: var(--color-tertiary);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION (FULLSCREEN LAYOUT)
   ============================================ */
.mentoria-hero-fullscreen {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-image: url('../assets/images/caminho-medico-banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.mentoria-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(28, 21, 16, 0.95) 0%, rgba(28, 21, 16, 0.7) 50%, rgba(28, 21, 16, 0.3) 100%);
  z-index: 1;
}

.mentoria-hero-fullscreen-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
}

.mentoria-hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

@media (max-width: 992px) {
  .mentoria-hero-fullscreen {
    background-position: 70% center; /* Adjust focus on mobile */
  }
  .mentoria-hero-overlay {
    background: linear-gradient(to bottom, rgba(28, 21, 16, 0.8) 0%, rgba(28, 21, 16, 0.95) 100%);
  }
}


.mentoria-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.75rem;
}

.label-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(242, 147, 57, 0.3);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(242, 147, 57, 0.3); }
  50% { box-shadow: 0 0 0 7px rgba(242, 147, 57, 0.1); }
}

.mentoria-seo-tag {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

.mentoria-hero-content h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(120deg, var(--color-secondary) 0%, #e8a96e 60%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.mentoria-hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 251, 247, 0.8);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.mentoria-hero-sub strong { color: rgba(255, 251, 247, 0.95); }

.mentoria-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn-primary-mentoria {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--rounded-full);
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(242, 147, 57, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none; cursor: pointer;
}

.btn-primary-mentoria:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(242, 147, 57, 0.45);
  color: #fff;
}

.btn-primary-mentoria .btn-arrow { font-size: 1.1rem; transition: transform 0.3s ease; }
.btn-primary-mentoria:hover .btn-arrow { transform: translateX(4px); }

.btn-outline-mentoria {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--rounded-full);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

.btn-outline-mentoria:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.mentoria-hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.trust-item { display: flex; flex-direction: column; gap: 0.2rem; }
.trust-item strong { font-size: 1.1rem; color: #fff; font-family: var(--font-display); }
.trust-item span { font-size: 0.8rem; color: rgba(255, 251, 247, 0.6); font-weight: 500; }

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 auto;
  animation: scroll-bounce 1.8s ease infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* ============================================
   SECTION HEADER (Mentoria style)
   ============================================ */
.section-header-mentoria { margin-bottom: 4rem; }
.section-header-mentoria.center { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-header-mentoria.center p { margin: 1rem auto 0; }

.section-tag-mentoria {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--color-primary-light);
  margin-bottom: 0.75rem;
}

.section-header-mentoria h2 { margin-bottom: 0.75rem; }
.section-header-mentoria p { color: var(--color-on-surface-variant); font-size: 1.0625rem; }

/* ============================================
   PAIN SECTION
   ============================================ */
.pain-section {
  background: var(--color-surface-warm);
  border-top: 1px solid rgba(214, 195, 186, 0.25);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.pain-card {
  background: var(--color-surface-container-lowest);
  border: 1px solid rgba(214, 195, 186, 0.2);
  border-radius: var(--rounded-xl);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(166, 115, 87, 0.3);
}

.pain-card:hover::before { opacity: 1; }

.pain-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(127, 81, 55, 0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.pain-card:hover .pain-icon {
  background: var(--color-primary);
  color: #fff;
}

.pain-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.pain-card p { font-size: 0.95rem; line-height: 1.65; }

/* ============================================
   MENTOR SECTION
   ============================================ */
.mentor-section {
  background: var(--color-surface);
}

.mentor-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.mentor-image-wrapper { position: relative; }

.mentor-image-matte {
  position: relative;
  max-width: 400px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.mentor-image-matte::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  background: linear-gradient(135deg, var(--color-soft-clay), var(--color-primary-light));
  border-radius: var(--rounded-xl);
  z-index: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mentor-image-wrapper:hover .mentor-image-matte::before {
  transform: translate(6px, 6px);
}

.mentor-image-inner {
  position: relative;
  z-index: 1;
  border-radius: var(--rounded-xl);
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow-ambient);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.mentor-image-wrapper:hover .mentor-image-inner {
  transform: translate(-6px, -6px);
  box-shadow: var(--shadow-hover);
}

.mentor-image-inner img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mentor-image-wrapper:hover .mentor-image-inner img { transform: scale(1.04); }

.mentor-badge {
  position: absolute;
  bottom: 1.5rem; right: -1rem;
  background: var(--color-tertiary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: var(--rounded-full);
  box-shadow: var(--shadow-ambient);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 5;
}

.mentor-content p { margin-bottom: 1.25rem; }

.mentor-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.credential-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(127, 81, 55, 0.07);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--rounded-full);
  border: 1px solid rgba(127, 81, 55, 0.15);
  transition: all 0.3s ease;
}

.credential-chip:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ============================================
   PROGRAM: INTERACTIVE ROADMAP
   ============================================ */
.program-section {
  background: var(--color-surface-warm);
  padding-top: 6rem;
  padding-bottom: 8rem;
}

.program-intro-stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 5rem;
}

.program-intro-text {
  max-width: 600px;
  margin-bottom: 3rem;
}

.program-intro-text h2 { margin-bottom: 1rem; color: var(--color-tertiary); }
.program-intro-text p { color: var(--color-on-surface-variant); }

.program-intro-image {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.stacked-card-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.stacked-card-back {
  position: absolute;
  top: 20px;
  right: -20px;
  width: calc(100% - 40px);
  height: calc(100% - 20px);
  background-color: #a67c5e; /* Terracota shadow card */
  border-radius: 1.5rem;
  z-index: 0;
}

.stacked-card-front {
  position: absolute;
  top: 0;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 20px);
  object-fit: cover;
  border-radius: 1.5rem;
  z-index: 1;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border: 4px solid #fff;
}

/* Roadmap Grid */
.interactive-roadmap-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.roadmap-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  padding: 2rem 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}
.roadmap-scroll-wrapper::-webkit-scrollbar {
  display: none; /* Chrome */
}

.roadmap-track {
  position: relative;
  min-width: 1000px; /* Force horizontal scroll on small screens */
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 240px;
  padding: 0 2rem;
}

.roadmap-connector {
  position: absolute;
  top: 0; left: 0;
  z-index: 0;
  pointer-events: none;
}

.r-node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100px;
}

.r-node.top {
  transform: translateY(-50px);
}
.r-node.bottom {
  transform: translateY(50px);
}

.r-node:hover {
  transform: translateY(calc(var(--offset) - 5px));
}
.r-node.top:hover { --offset: -50px; }
.r-node.bottom:hover { --offset: 50px; }

.r-node-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #fff;
  border: 5px solid var(--node-color, #ccc);
  box-shadow: 0 10px 0 var(--node-shadow, #999), 0 15px 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--node-color, #ccc);
  transition: all 0.3s ease;
}

.r-node.active .r-node-circle {
  transform: scale(1.1);
  box-shadow: 0 8px 0 var(--node-shadow, #999), 0 0 25px var(--node-color);
}

.r-node-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-tertiary);
  text-align: center;
  line-height: 1.2;
}

/* Detail Panel */
.roadmap-details-panel {
  background: var(--color-surface-container-lowest);
  border: 1px solid rgba(214, 195, 186, 0.3);
  border-radius: var(--rounded-xl);
  padding: 3rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  box-shadow: var(--shadow-ambient);
  animation: fadeUp 0.5s ease forwards;
}

@keyframes panelFadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.panel-animate {
  animation: panelFadeIn 0.4s ease forwards !important;
}

.panel-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(127, 81, 55, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.panel-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.panel-content p {
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .roadmap-details-panel {
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
  }
}

/* ============================================
   FOR WHOM SECTION
   ============================================ */
.forwhom-section {
  background: var(--color-earth-brown);
  color: #fff;
}

.forwhom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.forwhom-content .section-tag-mentoria { color: var(--color-secondary); }
.forwhom-content h2 { color: #fff; margin-bottom: 2.5rem; }

.forwhom-list { display: flex; flex-direction: column; gap: 1.25rem; }

.forwhom-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.forwhom-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.forwhom-item.yes .forwhom-icon {
  background: rgba(242, 147, 57, 0.2);
  color: var(--color-secondary);
}

.forwhom-item p {
  font-size: 1rem;
  color: rgba(255, 251, 247, 0.8);
  line-height: 1.65;
  margin: 0;
}

/* Quote card */
.quote-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rounded-xl);
  padding: 2.5rem 2rem;
  margin-bottom: 1.5rem;
}

.quote-icon {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--color-secondary);
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.quote-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0625rem;
  color: rgba(255, 251, 247, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.quote-author {
  display: flex; align-items: center; gap: 1rem;
}

.quote-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(242, 147, 57, 0.5);
}

.quote-author strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.15rem;
}

.quote-author span { font-size: 0.8rem; color: rgba(255, 251, 247, 0.6); }

.forwhom-stats {
  display: flex; gap: 1rem;
}

.stat-pill {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rounded-lg);
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-pill:hover { background: rgba(242, 147, 57, 0.15); border-color: rgba(242, 147, 57, 0.3); }

.stat-pill strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
}

.stat-pill span { font-size: 0.8rem; color: rgba(255, 251, 247, 0.6); }

/* ============================================
   HOW IT WORKS - TIMELINE
   ============================================ */
.howworks-section { background: var(--color-surface); }

.steps-timeline {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.step-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(127, 81, 55, 0.3);
  transition: all 0.3s ease;
}

.step-item:hover .step-number {
  background: var(--color-secondary);
  transform: scale(1.08);
}

.step-content { padding-bottom: 0.5rem; }
.step-content h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.step-content p { font-size: 0.975rem; }

.step-connector {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-soft-clay));
  margin-left: 25px;
  opacity: 0.35;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--color-surface-warm);
  border-top: 1px solid rgba(214, 195, 186, 0.2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.testimonial-card {
  background: var(--color-surface-container-lowest);
  border: 1px solid rgba(214, 195, 186, 0.2);
  border-radius: var(--rounded-xl);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.testimonial-card.featured {
  background: var(--color-tertiary);
  border-color: transparent;
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(74, 55, 45, 0.15);
}

.testimonial-card.featured:hover { transform: translateY(-14px); }

.testimonial-stars {
  font-size: 1rem;
  color: var(--color-secondary);
  margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
}

.testimonial-card blockquote {
  font-style: italic;
  font-size: 0.975rem;
  color: var(--color-on-surface-variant);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-card.featured blockquote { color: rgba(255, 251, 247, 0.85); }

.testimonial-author {
  display: flex; align-items: center; gap: 0.875rem;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(127, 81, 55, 0.1);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.testimonial-card.featured .testimonial-avatar {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-tertiary);
  margin-bottom: 0.15rem;
}

.testimonial-card.featured .testimonial-author strong { color: #fff; }

.testimonial-author span { font-size: 0.8rem; color: var(--color-on-surface-variant); }
.testimonial-card.featured .testimonial-author span { color: rgba(255, 251, 247, 0.6); }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta-section {
  background: linear-gradient(135deg, hsl(20, 35%, 13%) 0%, hsl(28, 42%, 20%) 100%);
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(242, 147, 57, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-container {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.final-cta-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  background: rgba(242, 147, 57, 0.15);
  border: 1px solid rgba(242, 147, 57, 0.3);
  border-radius: var(--rounded-full);
  padding: 0.4rem 1.25rem;
  margin-bottom: 1.75rem;
}

.final-cta-container h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.final-cta-container h2 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--color-secondary), #e8a96e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta-container > p {
  color: rgba(255, 251, 247, 0.75);
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
}

.btn-final-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--rounded-full);
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none; cursor: pointer;
  margin-bottom: 1.5rem;
}

.btn-final-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 42px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.final-cta-note {
  font-size: 0.85rem;
  color: rgba(255, 251, 247, 0.45);
  margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.mentoria-footer {
  background: var(--color-dark);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.footer-links-row a {
  font-size: 0.9rem;
  color: rgba(255, 251, 247, 0.55);
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links-row a:hover { color: var(--color-secondary); }

.footer-note {
  font-size: 0.8rem;
  color: rgba(255, 251, 247, 0.3);
  margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .mentor-grid { grid-template-columns: 1fr; gap: 3rem; }
  .mentor-image-wrapper { order: -1; }
  .mentor-image-matte { max-width: 320px; }
  .forwhom-grid { grid-template-columns: 1fr; gap: 3rem; }
  .program-pillars { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .testimonial-card.featured { transform: translateY(0); }
}

@media (max-width: 768px) {
  :root { --section-gap: 4.5rem; --gutter: 1.25rem; }

  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 300px;
    height: 100vh;
    background: var(--color-surface-container-lowest);
    box-shadow: -10px 0 30px rgba(74, 55, 45, 0.05);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1005;
  }

  .nav-menu.open { right: 0; }
  .mobile-nav-toggle { display: block; }

  .mobile-nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .mobile-nav-toggle.open span:nth-child(2) { opacity: 0; }
  .mobile-nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

  .mentoria-hero-content { max-width: 100%; }
  .mentoria-hero-ctas { flex-direction: column; }
  .btn-primary-mentoria, .btn-outline-mentoria { width: 100%; justify-content: center; }
  .mentoria-hero-trust { flex-wrap: wrap; gap: 1.25rem; }

  .pain-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .mentor-badge { right: 0; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .forwhom-stats { flex-direction: column; }

  .footer-links-row { gap: 1.25rem; }
}

@media (max-width: 480px) {
  :root { --section-gap: 3.5rem; --gutter: 1rem; }

  .mentoria-hero { padding-top: 5rem; }
  .mentoria-hero-content h1 { font-size: 2rem; }
  .mentoria-hero-sub { font-size: 1rem; }

  .pillar-card { padding: 1.75rem 1.25rem; }
  .pain-card { padding: 1.75rem 1.25rem; }
  .quote-card { padding: 1.75rem 1.25rem; }

  .step-item { gap: 1.25rem; }
}

/* --- FLOAT WHATSAPP BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3), 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45), 0 6px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-float:hover .whatsapp-float-icon {
  transform: rotate(10deg);
}

/* Tooltip / Bubble */
.whatsapp-float-tooltip {
  position: absolute;
  right: 76px;
  background-color: #fff;
  color: #1b1c1b;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(214, 195, 186, 0.3);
}

.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-right: 1px solid rgba(214, 195, 186, 0.3);
  border-top: 1px solid rgba(214, 195, 186, 0.3);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Pulse Animation Ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  opacity: 0.3;
  z-index: -1;
  animation: pulse-ring 2.5s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

/* Adjustments for Mobile Screens */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  
  .whatsapp-float-icon {
    width: 28px;
    height: 28px;
  }
  
  .whatsapp-float-tooltip {
    display: none; /* Hide tooltips on mobile to prevent overlapping */
  }
}

/* --- ADICIONAIS DE SEO, ROADMAP, BÔNUS E STICKY CTA --- */

/* Glow background blobs */
.glow-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 147, 57, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}

.glow-blob-secondary {
  background: radial-gradient(circle, rgba(127, 81, 55, 0.05) 0%, transparent 70%);
  width: 400px;
  height: 400px;
}

.pain-intro-text {
  font-size: 1.15rem;
  color: var(--color-on-surface-variant);
  max-width: 800px;
  margin: 1.5rem auto 0 auto;
  line-height: 1.75;
  opacity: 0.95;
  text-align: center;
}

/* O que é o Caminho Médico */
.whatis-section {
  background: var(--color-surface-container-low);
  border-top: 1px solid rgba(214, 195, 186, 0.2);
  border-bottom: 1px solid rgba(214, 195, 186, 0.2);
}

.whatis-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.whatis-image-wrapper {
  position: relative;
}

.whatis-image-matte {
  position: relative;
  max-width: 400px;
  aspect-ratio: 1.2 / 1;
  margin: 0 auto;
}

.whatis-image-matte::before {
  content: '';
  position: absolute;
  top: -14px;
  left: -14px;
  right: 14px;
  bottom: 14px;
  background-color: var(--color-soft-clay);
  border-radius: var(--rounded-xl);
  z-index: 1;
}

.whatis-image-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--rounded-xl);
  overflow: hidden;
  box-shadow: var(--shadow-ambient);
  z-index: 2;
  border: 4px solid var(--color-surface-container-lowest);
}

.whatis-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.whatis-benefits {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1.25rem;
  background: var(--color-surface-container-lowest);
  padding: 1.25rem 1.5rem;
  border-radius: var(--rounded-md);
  border: 1px solid rgba(214, 195, 186, 0.15);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary-light);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(242, 147, 57, 0.12);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-tertiary);
  margin-bottom: 0.25rem;
}

.benefit-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Roadmap 9 Passos */
.roadmap-image-container {
  max-width: 850px;
  margin: 0 auto 4rem auto;
  border-radius: var(--rounded-xl);
  overflow: hidden;
  border: 4px solid var(--color-surface-container-lowest);
  box-shadow: var(--shadow-ambient);
}

.roadmap-image {
  width: 100%;
  height: auto;
  display: block;
}

.nine-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Bônus Section */
.bonus-section {
  padding: var(--section-gap) 0;
  border-top: 1px solid rgba(214, 195, 186, 0.25);
  border-bottom: 1px solid rgba(214, 195, 186, 0.25);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.bonus-card {
  background: #1c1510;
  border: 1px solid rgba(214, 195, 186, 0.1);
  border-radius: var(--rounded-xl);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  color: #fff;
}

.bonus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(242, 147, 57, 0.1);
  border-color: var(--color-secondary);
}

.bonus-card.bonus-featured-card {
  background: linear-gradient(145deg, #241a14 0%, #17100b 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 20px 45px rgba(242, 147, 57, 0.15);
}

/* Gradient border anim */
.bonus-card.bonus-featured-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -1;
  margin: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent), var(--color-primary-light));
  animation: border-rotate 4s linear infinite;
}

@keyframes border-rotate {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(15deg); }
}

.bonus-tag {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color-secondary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1.25rem;
  border-bottom-left-radius: var(--rounded-md);
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.bonus-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: rgba(127, 81, 55, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.bonus-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.bonus-card p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.bonus-price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.price-old {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.price-free {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-secondary);
}

/* Depoimentos Visuais (Screenshots) */
.visual-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.visual-testimonial-card {
  background: #140d0a;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 8px solid #281d18; /* phone bezel look */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Add a notch styling at the top of the card */
.visual-testimonial-card::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 12px;
  background-color: #281d18;
  border-radius: 6px;
  z-index: 10;
}

.visual-testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(242, 147, 57, 0.15);
  border-color: #3b2b23;
}

.visual-testimonial-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px 16px 0 0;
  padding-top: 15px; /* offset notch */
}

.visual-tag-pill {
  display: inline-block;
  align-self: center;
  background-color: rgba(242, 147, 57, 0.1);
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: var(--rounded-full);
  margin: 1rem 0;
  text-align: center;
  border: 1px solid rgba(242, 147, 57, 0.2);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 30px;
  right: 110px; /* Offset WhatsApp Float which is at right:24px */
  z-index: 999;
  transform: translateY(150px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  pointer-events: none;
}

.sticky-cta.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.btn-sticky-cta {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  color: #fff;
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: var(--rounded-full);
  box-shadow: 0 10px 30px rgba(242, 147, 57, 0.35);
  display: inline-flex;
  align-items: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-sticky-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(242, 147, 57, 0.45);
  color: #fff;
}

/* Responsividade de Novos Elementos */
@media (max-width: 992px) {
  .whatis-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .whatis-image-wrapper {
    order: -1;
  }
  
  .nine-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visual-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nine-steps-grid {
    grid-template-columns: 1fr;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .visual-testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .sticky-cta {
    right: 20px;
    bottom: 90px; /* Stack above WhatsApp on mobile */
    width: calc(100% - 40px);
    text-align: center;
  }
  
  .btn-sticky-cta {
    width: 100%;
    justify-content: center;
  }
}




