/* =============================
   P2 GROWTH — STYLES (LIGHT)
   Bege claro com acentos em magenta
   ============================= */

:root {
  --bg: #ffffff;          /* branco principal */
  --bg-2: #f6f5f2;        /* off-white quase imperceptível p/ alternar seções */
  --bg-3: #fafaf7;        /* ainda mais sutil p/ cards de destaque */
  --surface: #ffffff;     /* cards brancos */
  --text: #1a1a1f;        /* texto principal (quase preto) */
  --text-muted: #5e5e6a;  /* texto secundário (cinza médio) */
  --pink: #e8336d;
  --pink-soft: #ff5a8a;
  --pink-tint: rgba(232, 51, 109, 0.08);
  --line: rgba(26, 26, 31, 0.08);
  --line-strong: rgba(26, 26, 31, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.brand__dot {
  color: var(--pink);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.2px;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__cta {
  background: var(--pink);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.nav__cta:hover {
  background: var(--pink-soft);
  transform: translateY(-1px);
}

/* ===== EYEBROW ===== */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.eyebrow__line {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--pink);
}

/* ===== TITLES ===== */
.section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 24px;
}

.section__title em {
  color: var(--pink);
  font-style: italic;
  font-weight: 500;
}

.section__sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 64px;
  line-height: 1.6;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn--primary {
  background: var(--pink);
  color: #fff;
}

.btn--primary:hover {
  background: var(--pink-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(232, 51, 109, 0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}

.btn--ghost:hover {
  border-color: var(--text);
  background: rgba(42, 29, 32, 0.04);
}

.btn--large {
  padding: 18px 36px;
  font-size: 16px;
}

/* ===== HERO ===== */
.hero {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232, 51, 109, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 90%, rgba(232, 51, 109, 0.06), transparent 60%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 26, 31, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 31, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at center, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at center, black 30%, transparent 85%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 8px 20px;
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 48px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.hero__badge:hover {
  border-color: var(--pink);
  transform: translateY(-1px);
}

.hero__badge-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 12px;
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 9vw, 130px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 28px;
  color: var(--text);
  max-width: 900px;
}

.hero__title em {
  font-style: italic;
  color: var(--pink);
  font-weight: 500;
}

.hero__sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
  justify-content: center;
}

.hero__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
  justify-content: center;
}

.dot {
  opacity: 0.5;
}

/* ===== DIAGNÓSTICO ===== */
.diag {
  background: var(--bg-2);
  color: var(--text);
  padding: 140px 0;
  position: relative;
}

.diag .section__title {
  max-width: 900px;
  margin-bottom: 80px;
}

.diag__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card {
  padding: 48px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.card--accent {
  background: var(--bg-3);
}

.card__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.card__title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  color: var(--text);
}

.card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card__list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}

.card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 600;
}

.card__list--quotes li {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--text-muted);
  padding-left: 32px;
}

.card__list--quotes li::before {
  content: '"';
  font-size: 32px;
  line-height: 0.8;
  top: 6px;
  color: var(--pink);
}

/* ===== THESIS / MÉTODO ===== */
.thesis {
  background: var(--bg);
  padding: 140px 0;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.pillar {
  padding: 40px 32px;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--pink);
  box-shadow: 0 20px 50px -20px rgba(232, 51, 109, 0.25);
}

.pillar__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--pink);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.pillar p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== FRONTS ===== */
.fronts {
  background: var(--bg-2);
  color: var(--text);
  padding: 140px 0;
}

.fronts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.front {
  padding: 48px 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.front:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(232, 51, 109, 0.2);
}

.front--highlight {
  background: linear-gradient(180deg, rgba(232, 51, 109, 0.06), rgba(232, 51, 109, 0.01));
  border-color: rgba(232, 51, 109, 0.25);
}

.front__num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 56px;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 32px;
  font-weight: 500;
}

.front h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.front p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 32px;
}

.front__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--pink);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-transform: uppercase;
}

/* ===== PROCESS / TIMELINE ===== */
.process {
  background: var(--bg);
  padding: 140px 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 24px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--pink), transparent);
  opacity: 0.5;
}

.timeline__item {
  padding-top: 32px;
  position: relative;
}

.timeline__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(232, 51, 109, 0.15);
}

.timeline__week {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--pink);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.timeline__item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}

.timeline__item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.timeline__item ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.timeline__item ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--pink);
}

/* ===== SCOPE ===== */
.scope {
  background: var(--bg-2);
  color: var(--text);
  padding: 140px 0;
}

.scope__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 24px;
}

.scope__col-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-strong);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.check-list li {
  position: relative;
  padding-left: 36px;
  font-size: 17px;
  line-height: 1.5;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink);
  font-size: 18px;
  font-weight: 600;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== CTA ===== */
.cta {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(232, 51, 109, 0.18), transparent 70%);
  color: var(--text);
  padding: 160px 0;
  text-align: center;
}

.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta .eyebrow {
  justify-content: center;
}

.cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 32px;
}

.cta__title em {
  font-style: italic;
  color: var(--pink);
  font-weight: 500;
}

.cta__sub {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.55;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-2);
  color: var(--text-muted);
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.footer__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  font-size: 14px;
}

.footer__copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-top: 16px;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .fronts__grid {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .nav__inner {
    height: 64px;
  }
  .nav__links a:not(.nav__cta) {
    display: none;
  }
  .hero {
    padding: 120px 0 80px;
    min-height: auto;
  }
  .hero__title {
    letter-spacing: -2px;
  }
  .diag,
  .thesis,
  .fronts,
  .process,
  .scope {
    padding: 90px 0;
  }
  .cta {
    padding: 100px 0;
  }
  .diag__grid {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 32px 28px;
  }
  .card__title {
    font-size: 28px;
  }
  .pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pillar {
    min-height: auto;
    padding: 32px 28px;
  }
  .front {
    padding: 36px 28px;
    min-height: auto;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .scope__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .section__title {
    margin-bottom: 20px;
  }
  .section__sub {
    margin-bottom: 48px;
    font-size: 16px;
  }
  .hero__sub {
    font-size: 17px;
  }
  .btn {
    padding: 13px 22px;
    font-size: 14px;
  }
}
