/* ==========================================================================
   SEÇÃO 07: SETUP SIMPLIFICADO E PASSO A PASSO (Figma Node 596:403 / 1-1418)
   ========================================================================== */

.section-setup {
  padding: 80px 0 100px;
  background-color: var(--color-bg-primary, #ffffff);
}

.setup-header {
  margin-bottom: 50px;
}

.setup-header .eyebrow {
  margin-bottom: 24px;
}

.setup-header-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.setup-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px;
  line-height: 1.18;
  font-weight: 400;
  color: #4e4e4e;
  margin: 0;
  max-width: 500px;
}

.setup-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  color: #4e4e4e;
  margin: 0;
  max-width: 360px;
}

/* Container de Passos */
.setup-steps-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  position: relative;
  gap: 50px;
}

.setup-step-card {
  background: rgba(110, 221, 212, 0.025);
  border: 1px solid rgba(110, 221, 212, 0.28);
  border-radius: 30px;
  padding: 40px 36px 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.setup-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 221, 212, 0.55);
  box-shadow: 0 14px 30px rgba(110, 221, 212, 0.12);
}

.setup-step-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #21948b;
  line-height: 1.2;
}

.setup-step-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-img {
  width: 54px;
  height: 54px;
  display: block;
}

.setup-step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  color: #4e4e4e;
  margin: 0;
}

.setup-step-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  color: #4e4e4e;
  margin: 0;
}

/* Conector de Seta entre os Cards */
.setup-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #6eddd4;
  margin: 0 -26px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(110, 221, 212, 0.3);
}

/* Responsividade */
@media (max-width: 1024px) {
  .setup-steps-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .setup-connector {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .setup-header-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .section-setup {
    padding: 60px 0;
  }

  .setup-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .setup-header .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .setup-header-grid {
    align-items: center;
    text-align: center;
  }

  .setup-title {
    font-size: 32px;
    text-align: center;
    max-width: 346px;
  }

  .setup-subtitle {
    font-size: 16px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .setup-step-card {
    padding: 32px 24px 40px;
  }
}