/* ── COMO FUNCIONA PAGE ── */

/* Textos justificados */
.step-desc,
.step-desc-note,
.faq-a,
.cta-sub {
  text-align: justify;
}

/* ── PAGE HERO ── */
.cf-hero {
  background: #fff;
  padding: 72px 64px 56px;
  border-bottom: 1px solid #F0F0EE;
}
.cf-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.cf-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #FFF8E1;
  border: 1px solid #F8B000;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  color: #7a5800;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.cf-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: #111;
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.cf-hero h1 em {
  color: #F8B000;
  font-style: italic;
}
.cf-hero-sub {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  text-align: justify;
}

/* ── STEPS ── */
.cf-steps {
  background: #F9F9F7;
  padding: 80px 0;
}
.cf-steps-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.cf-section-tag {
  display: inline-block;
  background: #FFF8E1;
  color: #7A5800;
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.cf-section-title {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}
.cf-section-lead {
  color: #777;
  font-size: 15px;
  margin-bottom: 56px;
}

/* Step cards */
.step-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #EEEEEC;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.step-card.reverse {
  direction: rtl;
}
.step-card.reverse > * {
  direction: ltr;
}
.step-img {
  overflow: hidden;
  height: 380px;
}
.step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.step-card:hover .step-img img {
  transform: scale(1.03);
}
.step-body {
  padding: 40px 48px 40px 0;
}
.step-card.reverse .step-body {
  padding: 40px 0 40px 48px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F8B000;
  color: #111;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(248,176,0,0.35);
}
.step-title {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.2;
}
.step-desc {
  font-size: 14.5px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}
.step-desc-note {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  border-left: 3px solid #F8B000;
  padding-left: 14px;
  margin-top: 16px;
}

/* ── FAQ ── */
.cf-faq {
  background: #fff;
  padding: 80px 0;
}
.cf-faq-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}
.faq-item {
  border-bottom: 1px solid #EEEEEC;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.faq-q span.icon {
  font-size: 20px;
  color: #F8B000;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-q span.icon {
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  padding-bottom: 22px;
}
.faq-item.open .faq-a {
  display: block;
}

/* ── CTA ── */
.cf-cta {
  background: #111;
  padding: 80px 32px;
  text-align: center;
}
.cf-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.cf-cta h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}
.cf-cta h2 em {
  color: #F8B000;
  font-style: italic;
}
.cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cf-cta-btn {
  display: inline-block;
  background: #F8B000;
  color: #111;
  font-weight: 800;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.cf-cta-btn:hover {
  background: #e0a000;
  transform: translateY(-2px);
}
.cta-note {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cf-hero { padding: 56px 32px 40px; }
  .cf-hero h1 { font-size: 34px; }
  .cf-steps-inner { padding: 0 24px; }
  .step-card, .step-card.reverse { grid-template-columns: 1fr; direction: ltr; }
  .step-img { height: 240px; }
  .step-body, .step-card.reverse .step-body { padding: 32px 24px; }
}
@media (max-width: 540px) {
  .cf-hero { padding: 40px 20px 32px; }
  .cf-hero h1 { font-size: 28px; }
  .cf-cta h2 { font-size: 26px; }
}
