/* ========================================
   LIDERANÇA CRIATIVA — LANDING PAGE
   Design: Minimalist, Space Mono
   ======================================== */

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

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

body {
  font-family: 'Space Mono', monospace;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

p {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #333;
}

strong {
  font-weight: 700;
  color: #1a1a1a;
}

/* --- HIGHLIGHT (yellow marker) --- */
.highlight {
  background: linear-gradient(180deg, transparent 55%, #ffe14d 55%);
  padding: 0 4px;
  display: inline;
}

/* --- LAYOUT --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 780px;
}

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: -0.03em;
}

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

.nav-links a {
  font-size: 0.8rem;
  color: #555;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #1a1a1a;
}

.nav-cta {
  background: #1a1a1a !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border: 1px solid #1a1a1a;
  transition: background 0.2s ease, color 0.2s ease !important;
}

.nav-cta:hover {
  background: #fff !important;
  color: #1a1a1a !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px);
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 36px;
  border: 2px solid #1a1a1a;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: #1a1a1a;
  color: #fff;
}

.btn-primary:hover {
  background: #fff;
  color: #1a1a1a;
}

.btn-large {
  font-size: 0.95rem;
  padding: 20px 48px;
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 2rem;
}

.hero-title {
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem) !important;
  max-width: 680px;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.hero-detail {
  max-width: 680px;
  margin-bottom: 3rem;
  font-style: italic;
  color: #555 !important;
}

.hero-cta {
  margin-top: 1rem;
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.78rem !important;
  color: #999 !important;
  max-width: 480px;
}

/* --- SECTIONS --- */
.section {
  padding: 100px 0;
}

.section-dark {
  background: #fafafa;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.section-title {
  margin-bottom: 2.5rem;
  color: #1a1a1a;
}

.section-text {
  margin-bottom: 1.5rem;
  line-height: 1.85;
}

.section-text:last-child {
  margin-bottom: 0;
}

.section-text-bold {
  font-weight: 700;
  color: #1a1a1a;
}

.section-cta {
  margin-top: 3rem;
}

/* --- CHECKLIST (Para quem é) --- */
.checklist {
  list-style: none;
}

.checklist li {
  padding: 1.25rem 0;
  border-bottom: 1px solid #e4e4e4;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.75;
  display: flex;
  gap: 1rem;
  color: #333;
}

.checklist li:first-child {
  border-top: 1px solid #e4e4e4;
}

.check-icon {
  font-weight: 700;
  color: #1a1a1a;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- MODULES GRID (Trilha) --- */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.module-card {
  border: 1px solid #ddd;
  padding: 2.5rem 2rem;
  background: #fff;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.module-card:hover {
  border-color: #1a1a1a;
  transform: translateY(-3px);
}

.module-number {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.module-title {
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.module-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #555;
}

/* --- DIFFERENTIALS (Diferenciação) --- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.diff-title {
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.diff-text {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
}

/* --- FORMAT LIST (Formato) --- */
.format-list {
  margin-top: 2rem;
}

.format-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e4e4e4;
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  line-height: 1.75;
  color: #333;
}

.format-item:first-child {
  border-top: 1px solid #e4e4e4;
}

.format-icon {
  flex-shrink: 0;
  font-size: 0.6rem;
  margin-top: 6px;
  color: #1a1a1a;
}

/* --- PRICING (Investimento) --- */
.pricing-title {
  text-align: center;
}

.pricing-shared {
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
}

.pricing-shared-title {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}

.pricing-shared-text {
  font-size: clamp(0.88rem, 1.5vw, 0.95rem);
  color: #555;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.pricing-shared-text:last-child {
  margin-bottom: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 880px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  border: 1px solid #ddd;
  background: #fff;
  padding: 0;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  border-color: #1a1a1a;
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.pricing-card-featured {
  border: 2px solid #1a1a1a;
}

.pricing-card-featured:hover {
  border-color: #1a1a1a;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 0;
  text-align: center;
}

.pricing-card-header {
  padding: 2.5rem 2rem 1.5rem;
  border-bottom: 1px solid #eee;
}

.pricing-card-featured .pricing-card-header {
  padding-top: 4rem;
}

.pricing-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  display: block;
  margin-bottom: 0.75rem;
}

.pricing-price {
  font-size: 1rem;
  color: #555;
  font-weight: 400;
}

.pricing-amount {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.03em;
}

.pricing-installment {
  font-size: 0.78rem;
  color: #888;
  margin-top: 0.5rem;
  font-style: italic;
}

.pricing-card-body {
  padding: 2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-check {
  font-weight: 700;
  color: #1a1a1a;
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-outline-pricing {
  display: block;
  width: 100%;
  text-align: center;
  background: #fff;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  font-family: 'Space Mono', monospace;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 24px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-outline-pricing:hover {
  background: #1a1a1a;
  color: #fff;
}

.btn-pricing {
  display: block;
  width: 100%;
  text-align: center;
}


/* --- FAQ (Objeções) --- */
.faq-list {
  margin-top: 1rem;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-item:first-child {
  border-top: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  font-weight: 700;
  color: #1a1a1a;
  text-align: left;
  gap: 1rem;
}

.faq-toggle {
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #555;
}

/* --- CTA FINAL --- */
.section-cta-final {
  padding: 120px 0;
  text-align: center;
  background: #1a1a1a;
  color: #fff;
}

.section-cta-final .section-title {
  color: #fff;
}

.section-cta-final .section-text {
  color: rgba(255, 255, 255, 0.75);
}

.section-cta-final .section-text-bold {
  color: #fff;
}

.section-cta-final .highlight {
  background: linear-gradient(180deg, transparent 55%, rgba(255, 225, 77, 0.5) 55%);
}

.final-cta {
  margin-top: 3rem;
}

.final-cta .btn-primary {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
}

.final-cta .btn-primary:hover {
  background: transparent;
  color: #fff;
}

.final-cta .cta-note {
  color: rgba(255, 255, 255, 0.5) !important;
  margin: 1.5rem auto 0;
}

/* --- GOOGLE FORM EMBED --- */
.google-form-wrapper {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.google-form-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 600px;
  border: none;
}

/* --- ABOUT AUTHOR (Quem) --- */
.about-author {
  margin-top: 1rem;
}

.author-photos {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.author-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.author-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.author-photo-2 {
  margin-left: -24px;
}

.author-link {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid #ffe14d;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.author-link:hover {
  border-bottom-color: #1a1a1a;
}

.author-content .section-text {
  margin-bottom: 1.25rem;
}

.author-details {
  font-style: italic;
  color: #888 !important;
  margin-top: 2rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid #e4e4e4;
}

/* --- FOOTER --- */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid #eee;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.78rem !important;
  color: #999 !important;
  margin-top: 0.25rem;
}

.footer-contact a {
  font-size: 0.82rem;
  color: #555;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  transition: border-color 0.2s ease;
}

.footer-contact a:hover {
  border-color: #1a1a1a;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #bbb;
}

/* --- ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.45s;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 2rem 2rem;
    gap: 0;
    border-left: 1px solid #eee;
    transition: right 0.35s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.06);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-cta {
    margin-top: 1rem !important;
    text-align: center !important;
    display: block !important;
    padding: 14px 18px !important;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .section {
    padding: 60px 0;
  }

  .section-cta-final {
    padding: 80px 0;
  }

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

  .diff-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.8rem;
  }

  .btn-large {
    padding: 16px 32px;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.4rem;
  }
}

/* --- MOBILE MENU OVERLAY --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 999;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- SELECTION --- */
::selection {
  background: #ffe14d;
  color: #1a1a1a;
}