/* =========================
   MÉTODO SECTION
========================= */

#metodo {
  position: relative;
  width: 100%;
  padding: 120px 0;
  background:
    radial-gradient(
      circle at top,
      rgba(0,191,98,0.05),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      var(--bg-main) 0%,
      var(--bg-section) 100%
    );
}

/* =========================
   CONTAINER
========================= */

.metodo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
   HEADER
========================= */

.sc-metodo-header {
  text-align: center;
  margin-bottom: 90px;
}

.sc-metodo-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.4px;
  position: relative;
  display: inline-block;
}

.sc-metodo-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 2px;
  background: linear-gradient(
    135deg,
    #00BF62,
    #7CFFB6
  );
}

.sc-metodo-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* =========================
   TIMELINE
========================= */

.sc-metodo-timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.sc-metodo-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,191,98,0.6),
    rgba(0,191,98,0.1)
  );
}

/* =========================
   STEP
========================= */

.sc-metodo-step {
  display: flex;
  align-items: center;
  margin-bottom: 70px;
  position: relative;
}

.sc-metodo-step:nth-child(odd) {
  flex-direction: row;
}

.sc-metodo-step:nth-child(even) {
  flex-direction: row-reverse;
}

/* =========================
   CONTENT CARD
========================= */

.sc-metodo-content {
  flex: 1;
  padding: 34px 36px;
  border-radius: 18px;

  background: rgba(17, 24, 39, 0.85);
  border: 1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 20px 45px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.04);

  transition: all 0.35s ease;
}

.sc-metodo-content:hover {
  box-shadow:
    0 30px 65px rgba(0,0,0,0.45),
    0 0 0 1px rgba(0,191,98,0.15);
}

/* =========================
   NUMBER
========================= */

.sc-metodo-number {
  width: 56px;
  height: 56px;
  margin: 0 34px;
  flex-shrink: 0;
  z-index: 1;

  border-radius: 50%;
  background: linear-gradient(
    135deg,
    #00BF62,
    #22C55E
  );

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 800;
  font-size: 1.35rem;
  color: #04120A;

  box-shadow:
    0 10px 25px rgba(0,191,98,0.35);
}

/* =========================
   TEXT
========================= */

.sc-metodo-content h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #00BF62;
}

.sc-metodo-content p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 900px) {
  .sc-metodo-step,
  .sc-metodo-step:nth-child(odd),
  .sc-metodo-step:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }

  .sc-metodo-number {
    margin: 0 0 20px;
  }

  .sc-metodo-timeline::before {
    left: 28px;
    transform: none;
  }
}

@media (max-width: 768px) {
  .sc-metodo-header {
    margin-bottom: 70px;
  }

  .sc-metodo-title {
    font-size: 2rem;
  }

  .sc-metodo-content {
    padding: 28px;
  }
}
 /* =========================
   MÉTODO 10X FECHAMENTO
========================= */

.metodo-10x-fechamento {

  position: relative;

  text-align: center;
  max-width: 820px;
  margin: 100px auto 0;

  padding: 46px 50px;

  border-radius: 18px;

  background: rgba(17, 24, 39, 0.85);
  border: 1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 20px 45px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.04);

  transition: all 0.35s ease;
}

/* efeito suave igual aos cards */

.metodo-10x-fechamento::before {

  content: '';
  position: absolute;
  inset: 0;

  border-radius: 18px;

  background: linear-gradient(
    180deg,
    rgba(0,191,98,0.12),
    transparent 50%
  );

  opacity: 0;
  transition: opacity 0.35s ease;
}

.metodo-10x-fechamento:hover {

  transform: translateY(-4px);

  box-shadow:
    0 30px 65px rgba(0,0,0,0.45),
    0 0 0 1px rgba(0,191,98,0.15);

}

.metodo-10x-fechamento:hover::before {
  opacity: 1;
}

/* =========================
   TEXTOS
========================= */

.metodo-10x-title {

  font-size: 1.45rem;
  font-weight: 700;

  margin-bottom: 14px;

  letter-spacing: -0.2px;

  color: #00BF62;

}

.metodo-10x-text {

  font-size: 1rem;
  line-height: 1.7;

  color: var(--text-muted);

}

.metodo-10x-highlight {

  margin-top: 20px;

  font-size: 1.05rem;
  line-height: 1.75;

  font-weight: 500;

  color: #E6EDF3;

}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 768px) {

  .metodo-10x-fechamento {
    padding: 34px 30px;
  }

  .metodo-10x-title {
    font-size: 1.3rem;
  }

}