/* =====================
   MANIFESTO SECTION
===================== */

.manifesto-section {
  padding: 10rem 2rem 8rem;
  position: relative;
  overflow: hidden;
}

.manifesto-content {
  max-width: 820px;
  margin: 0 auto;
}

/* Título específico do manifesto */
.manifesto-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #a38bff;
  position: relative;
  display: inline-block;
}

.manifesto-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin-top: 1rem;
  background: linear-gradient(90deg, #48dacb, transparent);
  border-radius: 999px;
}

/* Kicker */
.manifesto-kicker {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #48dacb;
  margin-bottom: 3.5rem;
  font-weight: 600;
}

/* Texto do Manifesto */
.manifesto-text {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.manifesto-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
}

/* Primeira frase (impacto) */
.manifesto-text p:first-child {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
}

/* Destaque central */
.manifesto-highlight {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 600;
  color: #ffffff;
  position: relative;
  padding-left: 1.8rem;
  margin: 1rem 0;
}

.manifesto-highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 4px;
  height: 80%;
  background: linear-gradient(180deg, #6659b0, #48dacb);
  border-radius: 4px;
}

.manifesto-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(72,218,203,0.12), transparent 70%);
  filter: blur(100px);
  z-index: 0;
}

.manifesto-bg-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(102,89,176,0.12), transparent 70%);
  filter: blur(100px);
  z-index: 0;
}

.manifesto-content {
  position: relative;
  z-index: 1;
}

/* =====================
   PURPOSE SECTION
===================== */
.purpose-section {
  padding: 10rem 2rem;
  position: relative;
  overflow: hidden;
}

.purpose-content {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.purpose-kicker {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #48dacb;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.purpose-title {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.1;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.purpose-text {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.purpose-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}

.purpose-highlight {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  color: #ffffff;
  margin-top: 2rem;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 768px) {
  .manifesto-section {
    padding: 4rem 1.5rem 3rem;
  }

  .manifesto-title {
    font-size: 2.2rem;
  }

  .manifesto-kicker {
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
  }

  .manifesto-text {
    gap: 1.8rem;
  }

  .manifesto-text p {
    font-size: 1.05rem;
  }

  .manifesto-text p:first-child {
    font-size: 1.3rem;
  }

  .manifesto-highlight {
    font-size: 1.35rem;
    padding-left: 1.5rem;
  }

  .purpose-section {
    padding: 4rem 1.5rem;
  }

  .purpose-title {
    font-size: 2rem;
  }

  .purpose-text {
    font-size: 1.05rem;
  }
}

@media (min-width: 1200px) {
  .manifesto-section {
    padding: 14rem 2rem 12rem;
  }

  .manifesto-title {
    font-size: 4rem;
    letter-spacing: -1.5px;
  }

  .manifesto-kicker {
    font-size: 1.1rem;
  }

  .manifesto-text p {
    font-size: 1.35rem;
    max-width: 800px;
  }

  .manifesto-text p:first-child {
    font-size: 1.9rem;
  }

  .manifesto-highlight {
    font-size: 2rem;
  }

  .purpose-section {
    padding: 10rem 2rem;
  }

  .purpose-title {
    font-size: 3.6rem;
    letter-spacing: -1.5px;
  }

  .purpose-text {
    font-size: 1.3rem;
    max-width: 900px;
  }
}