/* =====================
   FÓRMULA TRIAGA
===================== */

.formula-section {
  padding: 10rem 2rem 8rem;
  max-width: 900px;
  position: relative;
}

.formula-section h2 {
  font-size: 3rem;
  color: #a38bff;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
  position: relative;
}

.formula-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.6rem;
  width: 35%;
  height: 3px;
  background: linear-gradient(90deg, #48dacb, transparent);
  border-radius: 999px;
}

.formula-section > p:first-of-type {
  margin-top: 2.5rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
}

.formula-section p {
  margin-top: 1.8rem;
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
}

.formula-section h3 {
  margin-top: 4rem;
  font-size: 2rem;
  color: #48dacb;
  letter-spacing: -0.5px;
}

/* Lista de pilares */

.formula-section ul {
  margin-top: 2.2rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.formula-section li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.formula-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6659b0, #48dacb);
}

/* =====================
   NOSSAS CAUSAS
===================== */

.causes-section {
  padding: 8rem 2rem 10rem;
}

.causes-section h2 {
  font-size: 3rem;
  margin-bottom: 5rem;
  color: #a38bff;
  letter-spacing: -1px;
  position: relative;
}

.causes-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.6rem;
  width: 30%;
  height: 3px;
  background: linear-gradient(90deg, #48dacb, transparent);
  border-radius: 999px;
}

/* Item de causa */

.cause-item {
  position: relative;
  padding: 3.2rem 3rem;
  border-radius: 22px;
  margin-bottom: 4rem;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* Overlay sutil */

.cause-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(102, 89, 176, 0.12),
    rgba(72, 218, 203, 0.1)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cause-item:hover::after {
  opacity: 1;
}

.cause-item:hover {
  transform: translateY(-6px);
}

.cause-item h4 {
  font-size: 1.45rem;
  margin-bottom: 1.6rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.cause-item p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 1;
}

/* Destaque em hashtags */

.cause-item strong {
  color: #48dacb;
}

/* =====================
   DESKTOP SCALE MODE
===================== */

@media (min-width: 1200px) {

  .formula-section {
    padding-top: 14rem;
    padding-bottom: 12rem;
  }

  .formula-section h2,
  .causes-section h2 {
    font-size: 3.8rem;
    letter-spacing: -1.8px;
  }

  .formula-section > p:first-of-type {
    font-size: 1.7rem;
  }

  .formula-section p {
    font-size: 1.25rem;
  }

  .formula-section h3 {
    font-size: 2.4rem;
  }

  .cause-item h4 {
    font-size: 1.7rem;
  }

  .cause-item p {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .formula-section {
    padding: 3rem 2rem;
  }

  .causes-section {
    padding: 1rem 2rem;
  }

  .causes-section h2 {
    margin-bottom: 3rem;
  }

  .cause-item {
    padding: 1.5rem 3rem;
    margin-bottom: 1rem;
  }
}
