/* =====================
   MANIFESTO – BASE
===================== */

.manifesto-section {
  padding: 10rem 2rem 8rem;
  display: flex;
  align-items: center;
}

.manifesto-content {
  max-width: 820px;
}

/* =====================
   TÍTULO
===================== */

.manifesto-section .section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

/* =====================
   KICKER
===================== */

.manifesto-kicker {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #48dacb;
  margin-bottom: 3.5rem;
}

/* =====================
   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;
}

/* Frases de impacto */
.manifesto-text p:first-child {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}

/* Destaque central */
.manifesto-highlight {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  padding-left: 1.8rem;
}

.manifesto-highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 4px;
  height: 80%;
  background: linear-gradient(
    180deg,
    #6659b0,
    #48dacb
  );
  border-radius: 4px;
}

/* =====================
   PURPOSE
===================== */

.purpose-section {
  padding: 8rem 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.purpose-section h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: #a38bff;
  position: relative;
  display: inline-block;
  padding-bottom: 0.6rem;
}

.purpose-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
  height: 3px;
  background: linear-gradient(
    90deg,
    #48dacb,
    transparent
  );
  border-radius: 999px;
}

.purpose-section p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
  max-width: 760px;
}

/* =====================
   DESKTOP SCALE MODE
===================== */

@media (min-width: 1200px) {

  .manifesto-section {
    padding-top: 14rem;
    padding-bottom: 12rem;
  }

  .manifesto-section .section-title {
    font-size: 4rem;
    letter-spacing: -1.8px;
  }

  .manifesto-kicker {
    font-size: 1.05rem;
  }

  .manifesto-text p {
    font-size: 1.35rem;
    max-width: 760px;
  }

  .manifesto-text p:first-child {
    font-size: 1.9rem;
  }

  .manifesto-highlight {
    font-size: 2rem;
  }

  .purpose-section h2 {
    font-size: 3.4rem;
  }

  .purpose-section p {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .manifesto-section {
    padding: 3rem 2rem 1rem 2rem; 
  }
}
