.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  max-width: 820px;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.step:first-child {
  padding-top: 0;
}
.step:last-child {
  border-bottom: none;
}
.step__num {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 40px;
  color: var(--brand);
  line-height: 1;
  padding-top: 4px;
}
.step__body h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.step__body p {
  color: var(--ink-2);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 0;
}
.step__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  margin-top: 14px;
}
.step__link:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .step {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .step .step__num {
    font-size: 28px;
  }
}

.docs-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 820px;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  overflow: hidden;
  color: #fff;
}
.docs-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg-img, linear-gradient(135deg, #2a2218, #4a3a26));
  background-size: cover;
  background-position: center;
}
.docs-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(20, 16, 12, 0.8) 0%, rgba(20, 16, 12, 0.45) 100%);
}
.docs-cta__text,
.docs-cta > .btn {
  position: relative;
  z-index: 2;
}
.docs-cta__text h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.docs-cta__text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 600px) {
  .docs-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.garantias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .garantias-grid {
    grid-template-columns: 1fr;
  }
}

.garantia-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.garantia-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--brand);
}
.garantia-card h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.garantia-card p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.faq {
  max-width: 820px;
  margin-top: 40px;
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
}
.faq__item.is-open .faq__a {
  display: block;
}
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  line-height: 1.4;
}
.faq__chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--ink-3);
  transition: transform 0.2s;
}
.faq__a {
  display: none;
  padding-bottom: 20px;
}
.faq__a p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
