:root {
  --sf-dark:    #4f1926;
  --sf-primary: #702c3d;
  --sf-accent:  #a35065;
  --sf-gray:    #666;
  --sf-light:   #f7f7f7;
}

/* HERO */
.sf-hero {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
  background-image: url('../img/bg-sf-hero.jpg');
  background-size: cover;
  background-position: center;
}
.sf-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}
.sf-pill {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 30px;
}
.sf-hero h1 {
  font-size: 36px;
  font-weight: 300;
  color: rgba(255,255,255,.9);
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto 40px;
}
.sf-hero h1 strong { font-weight: 700; }
.sf-checkpoints {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 40px;
}
.sf-checkpoint {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--sf-light);
  padding: 11px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  color: var(--sf-primary);
  text-align: left;
}
.sf-checkpoint svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--sf-primary);
  border-radius: 50%;
  padding: 5px;
  color: #fff;
}

/* BUTTONS */
.sf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  border-radius: 800px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  cursor: pointer;
  border: none;
  transition: background .2s;
}
.sf-btn:hover { text-decoration: none !important; }
.sf-btn-primary { background: var(--sf-accent); color: #fff !important; }
.sf-btn-primary:hover { background: var(--sf-primary); color: #fff !important; }
.sf-btn-whatsapp { background: #128c7e; color: #fff !important; }
.sf-btn-whatsapp:hover { background: #0e7066; color: #fff !important; }

/* SECTIONS */
.sf-section { padding: 100px 20px; }
.sf-section-dark {
  background: linear-gradient(148deg, var(--sf-primary) 0%, var(--sf-dark) 100%);
}
.sf-container { max-width: 1140px; margin: 0 auto; }

/* 2-COL */
.sf-2col { display: flex; align-items: center; gap: 77px; }
.sf-2col__img {
  flex-shrink: 0;
  width: 500px;
  height: 625px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--sf-light);
}
.sf-2col__img--tall { height: 780px; }
.sf-2col__img--bolsas { width: 463px; height: 580px; }
.sf-2col__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sf-2col__text { flex: 1; display: flex; flex-direction: column; gap: 20px; }

/* TYPOGRAPHY */
.sf-heading { font-size: 48px; font-weight: 700; color: var(--sf-dark); line-height: 1.2; margin: 0; }
.sf-heading span { color: var(--sf-primary); }
.sf-heading-white { color: #fff !important; }
.sf-heading-center { text-align: center; width: 100%; }
.sf-subtext { font-size: 20px; color: var(--sf-gray); line-height: 1.5; margin: 0; }
.sf-subtext strong { color: var(--sf-dark); }
.sf-body { font-size: 16px; color: var(--sf-gray); line-height: 1.5; margin: 0; }
.sf-body strong { color: var(--sf-dark); }
.sf-label { font-size: 15px; color: var(--sf-gray); margin: 0; }

/* PILL LIST */
.sf-pill-list { display: flex; flex-direction: column; gap: 10px; }
.sf-pill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sf-light);
  padding: 13px 15px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  color: var(--sf-primary);
}
.sf-pill-item__dot { width: 8px; height: 8px; background: var(--sf-dark); border-radius: 50%; flex-shrink: 0; }

/* BOLSAS */
.sf-bolsas .sf-2col { align-items: flex-start; }
.sf-bolsas .sf-subtext strong { color: var(--sf-dark); font-weight: 700; }
.sf-bolsas .sf-pill-list { margin-top: 4px; }
.sf-bolsas__cta { align-self: flex-start; margin-top: 8px; }

/* DIFERENCIAIS CARDS */
.sf-cards-row { display: flex; gap: 10px; }
.sf-cards-row--diferenciais { margin-bottom: 160px; }
.sf-card {
  background: #fff;
  border-radius: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 30px 15px;
  text-align: center;
}
.sf-card__icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sf-primary), var(--sf-dark));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff;
}
.sf-card__icon svg,
.sf-card__icon img { width: 32px; height: 32px; display: block; object-fit: contain; }
.sf-card__icon svg { fill: currentColor; }
.sf-card__title { font-size: 17px; font-weight: 700; color: var(--sf-primary); line-height: 1.3; margin: 0; }
.sf-card__desc { font-size: 13px; color: var(--sf-gray); line-height: 1.5; margin: 0; }

/* PAYMENT */
.sf-payment-box {
  background: #fff;
  border-radius: 30px;
  padding: 30px;
  display: flex;
  gap: 15px;
}
.sf-payment-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.sf-payment-item__icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sf-primary), var(--sf-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
/* .sf-payment-item__icon--plain { background: transparent; } */
.sf-payment-item__icon svg,
.sf-payment-item__icon img { width: 26px; height: 26px; display: block; object-fit: contain; }
.sf-payment-item__icon svg { fill: currentColor; }

/* DEPOIMENTOS */
.sf-depo { background: var(--sf-light); padding: 100px 20px; }
.sf-depo__title { font-size: 48px; font-weight: 700; color: var(--sf-dark); text-align: center; margin: 0 0 40px; line-height: 1.2; }
.sf-depo__title span { color: var(--sf-primary); }
.sf-depo__card {
  background: #fff;
  border-radius: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sf-depo__quote { font-size: 20px; color: var(--sf-gray); line-height: 1.7; margin: 0; }
.sf-depo__author { display: flex; align-items: center; gap: 20px; }
.sf-depo__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--sf-primary), var(--sf-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
}
.sf-depo__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sf-depo__meta { display: flex; flex-direction: column; gap: 10px; }
.sf-depo__name {
  display: inline-flex;
  align-items: center;
  padding: 5px 20px;
  border-radius: 500px;
  background: linear-gradient(169deg, var(--sf-primary), var(--sf-dark));
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  align-self: flex-start;
}
.sf-depo__role { font-size: 15px; color: var(--sf-primary); line-height: 1.5; margin: 0; }
.sf-depo__card { display: flex !important; }
.sf-depo__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-top: 40px;
}
.sf-depo__nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sf-primary), var(--sf-dark));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: opacity .2s;
}
.sf-depo__nav-btn:hover { opacity: .8; }
.sf-depo__nav-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* PASSOS DE INSCRIÇÃO */
.sf-steps { padding: 80px 20px; background: #fff; }
.sf-encerrado-card { padding: 40px; }
.sf-encerrado-card .formLead label input,
.sf-encerrado-card .formLead label select,
.sf-encerrado-card .formLead label textarea {
  border: 1px solid #999999;
  background-color: #edecec;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
}
.sf-steps__title { font-size: 48px; font-weight: 700; color: var(--sf-dark); text-align: center; margin: 0 0 40px; line-height: 1.2; }
.sf-steps__title span { color: var(--sf-primary); }
.sf-steps__list { display: flex; flex-direction: column; gap: 20px; }
.sf-step {
  background: linear-gradient(166deg, var(--sf-primary) 0%, var(--sf-dark) 100%);
  border-radius: 30px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(255,255,255,.12);
}
.sf-step__header { display: flex; align-items: center; gap: 15px; }
.sf-step__badge {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(144deg, var(--sf-primary), var(--sf-dark));
  -webkit-background-clip: text;
  background-clip: text;
}
.sf-step__badge-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sf-step__badge-num {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(144deg, var(--sf-primary), var(--sf-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.sf-step__title { font-size: 20px; font-weight: 700; color: #fff; line-height: 1.4; margin: 0; }
.sf-step__value { font-size: 20px; font-weight: 700; color: #fff; margin: 0; }
.sf-step__footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.sf-step__methods { display: flex; flex-direction: column; gap: 8px; }
.sf-step__methods-label { font-size: 16px; color: rgba(255,255,255,.85); margin: 0; }
.sf-step__method { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 700; color: #fff; }
.sf-step__method-dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; flex-shrink: 0; }
.sf-step__note { font-size: 16px; color: rgba(255,255,255,.85); line-height: 1.6; margin: 0; }

/* FAQ ACCORDION */
.sf-faq { background: #fff; }
.sf-faq__item { width: 100%; }
.sf-faq__item:nth-child(odd)  { background: var(--sf-light); }
.sf-faq__item:nth-child(even) { background: #fff; }
.sf-faq__container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.sf-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 60px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.sf-faq__item--open .sf-faq__trigger { padding-bottom: 0; }
.sf-faq__question { font-size: 36px; font-weight: 700; color: var(--sf-dark); line-height: 1.3; margin: 0; }
.sf-faq__question span { color: var(--sf-primary); }
.sf-faq__icon { flex-shrink: 0; width: 32px; height: 32px; transition: transform .3s; color: var(--sf-primary); }
.sf-faq__item--open .sf-faq__icon { transform: rotate(0); }
.sf-faq__body { display: none; padding-top: 60px; padding-bottom: 60px; font-size: 16px; color: var(--sf-gray); line-height: 1.7; }
.sf-faq__item--open .sf-faq__body { display: block; }
.sf-faq__item--open .sf-faq__body--investimento { display: flex; }
.sf-faq__item--open .sf-faq__icon-v { display: none; }
.sf-faq__body ul { margin: 12px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sf-faq__body li {
  display: flex; align-items: center; gap: 10px;
  background: #fff; padding: 12px 16px; border-radius: 30px;
  font-size: 15px; font-weight: 600; color: var(--sf-primary);
}
.sf-faq__body li::before { content: ''; width: 8px; height: 8px; background: var(--sf-dark); border-radius: 50%; flex-shrink: 0; }

/* FAQ — layout "Para quem é essa capacitação?" */
.sf-faq__body--para-quem { }
.sf-faq-pq__intro { font-size: 16px; line-height: 24px; color: var(--sf-dark); margin-bottom: 50px; }
.sf-faq-pq__intro strong { font-weight: 700; }

.sf-faq-pq__cards { display: flex; gap: 10px; margin-bottom: 30px; }
.sf-faq-pq__card {
  flex: 1 0 0; min-width: 130px;
  background: #fff; border-radius: 30px;
  padding: 30px 10px;
  display: flex; flex-direction: column; align-items: center; gap: 15px;
  text-align: center;
}
.sf-faq-pq__card-icon {
  width: 68px; height: 68px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #702c3d 0%, #4f1926 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 18px; box-sizing: border-box;
}
.sf-faq-pq__card-icon img { width: auto; height: auto; max-width: 32px; max-height: 32px; object-fit: contain; display: block; }
.sf-faq-pq__card p { font-size: 16px; color: #666; line-height: 24px; margin: 0; }

.sf-faq-pq__ideal {
  border-radius: 30px;
  background: linear-gradient(167.58deg, #702c3d 0%, #4f1926 100%);
  padding: 30px 10px 40px;
  display: flex; flex-direction: column; align-items: center; gap: 30px;
}
.sf-faq-pq__ideal-titulo { font-size: 32px; font-weight: 700; color: #fff; text-align: center; margin: 0; }
.sf-faq-pq__ideal-items { display: flex; gap: 40px; width: 100%; justify-content: center; }
.sf-faq-pq__ideal-item {
  flex: 1 0 0;
  max-width: 280px;
  display: flex; flex-direction: column; align-items: center; gap: 15px; text-align: center;
}
.sf-faq-pq__ideal-check {
  width: 50px; height: 50px; flex-shrink: 0;
  border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.sf-faq-pq__ideal-check img { width: 18px; height: 19px; display: block; object-fit: contain; }
.sf-faq-pq__ideal-item p { font-size: 16px; color: #fff; line-height: 24px; margin: 0; }

/* FAQ — layout "Corpo Docente" */
.sf-faq__question--plain span { color: inherit; }
.sf-faq-cd__viewport {
  max-height: 480px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-right: 8px;
  margin-right: -8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(112, 44, 61, 0.35) transparent;
}
.sf-faq-cd__viewport::-webkit-scrollbar { width: 6px; }
.sf-faq-cd__viewport::-webkit-scrollbar-track { background: transparent; }
.sf-faq-cd__viewport::-webkit-scrollbar-thumb {
  background: rgba(112, 44, 61, 0.35);
  border-radius: 999px;
}
.sf-faq-cd__viewport:focus-visible {
  outline: 2px solid var(--sf-primary);
  outline-offset: 4px;
  border-radius: 8px;
}
.sf-faq-cd__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.sf-faq-cd__card {
  background: var(--sf-light);
  border-radius: 30px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 0;
}
.sf-faq-cd__avatar {
  width: 100px;
  height: 100px;
  flex: 0 0 100px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 1 / 1;
}
.sf-faq-cd__avatar-img,
.sf-faq-cd__avatar img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
}
.sf-faq-cd__info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  gap: 8px;
  padding-top: 0;
}
.sf-faq-cd__name { font-size: 16px; font-weight: 700; color: var(--sf-dark); line-height: 1.3; margin: 0; }
.sf-faq-cd__role { font-size: 14px; font-weight: 400; color: var(--sf-gray); line-height: 1.4; margin: 0; }
.sf-faq-cd__lattes {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: 0;
  padding: 8px 16px;
  border: 1px solid var(--sf-primary);
  border-radius: 800px;
  background: transparent;
  color: var(--sf-primary) !important;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s;
}
.sf-faq-cd__lattes-text { white-space: nowrap; }
.sf-faq-cd__lattes-icon { flex-shrink: 0; width: 13px; height: 13px; }
.sf-faq-cd__lattes:hover { background: var(--sf-primary); color: #fff !important; border-color: var(--sf-primary); }

/* FAQ — layout "Como funciona o curso" */
.sf-faq-cf__intro { font-size: 16px; line-height: 24px; color: var(--sf-dark); margin-bottom: 10px; }
.sf-faq-cf__intro strong { font-weight: 700; }

.sf-faq-cf__cards {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.sf-faq-cf__card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 220px;
  background: #fff;
  border-radius: 30px;
  padding: 20px;
  display: flex; align-items: center; gap: 20px;
}
.sf-faq-cf__card-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #702c3d 0%, #4f1926 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 18px; box-sizing: border-box;
}
.sf-faq-cf__card-icon img { width: auto; height: auto; max-width: 28px; max-height: 28px; object-fit: contain; display: block; }
.sf-faq-cf__card-text { display: flex; flex-direction: column; gap: 10px; }
.sf-faq-cf__card-label {
  font-size: 16px; font-weight: 400; color: var(--sf-gray);
  text-transform: uppercase; letter-spacing: 3px; margin: 0; line-height: 1.2;
}
.sf-faq-cf__card-valor {
  font-size: 20px; font-weight: 700; color: var(--sf-primary); margin: 0; line-height: 1.2;
}

/* FAQ — layout "O que você vai estudar?" */
.sf-faq-oe__items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.sf-faq-oe__item {
  background: var(--sf-light); border-radius: 30px; padding: 20px;
  display: flex; align-items: center; gap: 20px;
}
.sf-faq-oe__check {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #702c3d 0%, #4f1926 100%);
  display: flex; align-items: center; justify-content: center;
}
.sf-faq-oe__check img { width: 18px; height: 19px; display: block; object-fit: contain; }
.sf-faq-oe__item p { font-size: 16px; color: var(--sf-gray); line-height: 24px; margin: 0; }
.sf-faq-oe__btn { align-self: flex-start; }

/* FAQ — layout "Investimento" */
.sf-faq__body--investimento { flex-direction: column; gap: 50px; }
.sf-faq-inv__block { display: flex; flex-direction: column; gap: 20px; align-items: center; width: 100%; }
.sf-faq-inv__intro { font-size: 16px; line-height: 28px; color: var(--sf-dark); text-align: center; margin: 0; }
.sf-faq-inv__pill-dark {
  /* width: 100%;  */
  border-radius: 50px; padding: 20px 40px;
  background: linear-gradient(172deg, #702c3d, #4f1926);
  color: #fff; font-size: 20px; font-weight: 700;
  text-align: center; box-sizing: border-box;
}

.sf-faq-inv__opcoes { display: flex; gap: 30px; padding-top: 20px; width: 100%; }
.sf-faq-inv__opc {
  flex: 1 0 0; min-width: 0; min-height: 200px;
  background: #fff; border-radius: 30px; padding: 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center; position: relative;
  box-shadow: 0 2px 12px rgba(79, 25, 38, 0.06);
}
.sf-faq-inv__opc--destaque { background: linear-gradient(115deg, #fff 1%, #ffedf2 100%); }
.sf-faq-inv__opc-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #a35065; color: #fff; font-size: 13px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase; white-space: nowrap;
  padding: 4px 10px; border-radius: 500px;
}
.sf-faq-inv__opc-titulo { font-size: 20px; font-weight: 700; color: var(--sf-primary); margin: 0; }
.sf-faq-inv__opc-riscado { font-size: 16px; color: #999; text-decoration: line-through; margin: 0; }
.sf-faq-inv__opc-valor { font-size: 32px; font-weight: 700; color: var(--sf-primary); line-height: 42px; margin: 0; }
.sf-faq-inv__opc-subtexto { font-size: 16px; color: var(--sf-gray); margin: 0; }

.sf-faq-inv__avulso {
  width: 100%; background: #fff; border-radius: 30px; padding: 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center;
  box-shadow: 0 2px 12px rgba(79, 25, 38, 0.06);
}

.sf-faq-inv__assoc {
  width: 100%; border-radius: 30px; padding: 40px 60px; box-sizing: border-box;
  background: linear-gradient(155deg, #702c3d, #4f1926);
  display: flex; flex-direction: column; align-items: center; gap: 30px;
}
.sf-faq-inv__assoc-titulo { font-size: 32px; font-weight: 700; color: #fff; text-align: center; margin: 0; }
.sf-faq-inv__assoc-subtexto { font-size: 16px; line-height: 28px; color: #fff; text-align: center; margin: 0; }
.sf-faq-inv__assoc-planos { display: flex; gap: 30px; width: 100%; }
.sf-faq-inv__assoc-plano {
  flex: 1 0 0; background: #fff; border-radius: 30px;
  padding: 20px; display: flex; flex-direction: column; gap: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.sf-faq-inv__assoc-plano-top { display: flex; flex-direction: column; gap: 10px; }
.sf-faq-inv__assoc-badge {
  display: inline-block; align-self: flex-start;
  background: linear-gradient(168deg, #702c3d, #4f1926);
  color: #fff; font-size: 20px; font-weight: 700;
  padding: 5px 10px; border-radius: 500px;
}
.sf-faq-inv__assoc-plano-valor { font-size: 32px; font-weight: 700; color: var(--sf-primary); line-height: 42px; margin: 0; }
.sf-faq-inv__assoc-plano-nota { font-size: 16px; color: var(--sf-gray);  margin: 0; }
.sf-faq-inv__assoc-bens {
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid rgba(102,102,102,.2); padding-top: 20px;
}
.sf-faq-inv__assoc-ben { display: flex; gap: 15px; align-items: center; }
.sf-faq-inv__assoc-ben-check {
  width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%;
  background: linear-gradient(135deg, #702c3d, #4f1926);
  display: flex; align-items: center; justify-content: center;
}
.sf-faq-inv__assoc-ben p { font-size: 16px; font-weight: 700; color: var(--sf-gray); margin: 0; }
.sf-faq-inv__assoc-nota { font-size: 16px; line-height: 28px; color: #fff; text-align: center; margin: 0; }

.sf-faq-inv__importantes { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.sf-faq-inv__importantes-titulo { font-size: 20px; font-weight: 700; color: var(--sf-primary); margin: 0 0 5px; text-align: center; }
.sf-faq-inv__importante {
  width: fit-content; max-width: 100%; background: #fff; border-radius: 800px;
  padding: 15px 25px; font-size: 16px; font-weight: 700;
  color: var(--sf-primary); text-align: center; box-sizing: border-box;
}

/* INSCRICAO */
.sf-inscricao { padding: 80px 20px; background: #fff; }
.sf-form-header { text-align: center; margin-bottom: 40px; }
.sf-form-header h2 { font-size: 36px; font-weight: 700; color: var(--sf-dark); margin-bottom: 10px; }
.sf-form-header p { font-size: 16px; color: var(--sf-gray); }
.sf-step__form-inner {
  background: #fff;
  border-radius: 30px;
  padding: 30px 40px;
}
.sf-step__inner-cards { display: flex; flex-direction: column; gap: 30px; width: 100%; }
.sf-step__inner-card {
  background: #fff;
  border-radius: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sf-step__inner-card-header { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sf-step__public-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 500px;
  background: linear-gradient(163deg, var(--sf-primary), var(--sf-dark));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.sf-step__public-title { font-size: 20px; font-weight: 700; color: var(--sf-primary); line-height: 1.3; margin: 0; }
.sf-step__inner-card p { font-size: 16px; color: var(--sf-gray); line-height: 1.6; margin: 0; }

/* CTA FIXO */
#cta-fixo-inscricao {
  display: block;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--sf-accent);
  color: #fff;
  padding: 12px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  text-decoration: none !important;
  transition: background .2s;
  white-space: nowrap;
}
#cta-fixo-inscricao:hover { background: var(--sf-primary); text-decoration: none !important; }

/* CF7 FORM */
.sf-step__form-inner .wpcf7-form p { margin: 0 0 16px; }
.sf-step__form-inner .wpcf7-form br { display: none; }
.sf-step__form-inner .wpcf7-form label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.3;
}
.sf-step__form-inner .wpcf7-form input[type="text"],
.sf-step__form-inner .wpcf7-form input[type="email"],
.sf-step__form-inner .wpcf7-form input[type="tel"],
.sf-step__form-inner .wpcf7-form input[type="number"],
.sf-step__form-inner .wpcf7-form input[type="url"],
.sf-step__form-inner .wpcf7-form input[type="date"] {
  width: 100%;
  height: 50px;
  background: #edecec;
  border: none;
  border-radius: 800px;
  padding: 10px 20px;
  font-size: 16px;
  color: #333;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.sf-step__form-inner .wpcf7-form select {
  width: 100%;
  height: 50px;
  background: #edecec url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'%3E%3Cpath d='M1 1l7 7 7-7' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 20px center;
  border: none;
  border-radius: 800px;
  padding: 10px 45px 10px 20px;
  font-size: 16px;
  color: #333;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.sf-step__form-inner .wpcf7-form textarea {
  width: 100%;
  min-height: 100px;
  background: #edecec;
  border: none;
  border-radius: 15px;
  padding: 15px 20px;
  font-size: 16px;
  color: #333;
  outline: none;
  resize: vertical;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}
.sf-step__form-inner .wpcf7-form input[type="text"]::placeholder,
.sf-step__form-inner .wpcf7-form input[type="email"]::placeholder,
.sf-step__form-inner .wpcf7-form input[type="tel"]::placeholder,
.sf-step__form-inner .wpcf7-form textarea::placeholder { color: #666; }
.sf-step__form-inner .wpcf7-form input[type="checkbox"],
.sf-step__form-inner .wpcf7-form input[type="radio"] {
  width: 20px !important;
  height: 20px !important;
  background: #edecec;
  border: none;
  border-radius: 4px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  vertical-align: middle;
  position: relative;
}
.sf-step__form-inner .wpcf7-form input[type="checkbox"]:checked,
.sf-step__form-inner .wpcf7-form input[type="radio"]:checked { background: var(--sf-primary); }
.sf-step__form-inner .wpcf7-form input[type="checkbox"]:checked::after,
.sf-step__form-inner .wpcf7-form input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  left: 6px; top: 3px;
  width: 5px; height: 9px;
  border: 2px solid #fff;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.sf-step__form-inner .wpcf7-form .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
}
.sf-step__form-inner .wpcf7-form .wpcf7-list-item label {
  font-weight: 400;
  color: #666;
  margin: 0;
  cursor: pointer;
}
.sf-step__form-inner .wpcf7-form input[type="submit"] {
  width: initial;
  height: 50px;
  background: var(--sf-accent);
  color: #fff;
  border: none;
  border-radius: 800px;
  padding: 10px 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  font-family: inherit;
}
.sf-step__form-inner .wpcf7-form input[type="submit"]:hover { background: var(--sf-primary); }
.sf-step__form-inner .wpcf7-form .wpcf7-not-valid-tip { font-size: 13px; color: #c0392b; margin-top: 4px; display: block; padding-left: 16px; }
.sf-step__form-inner .wpcf7-form .wpcf7-response-output { border-radius: 10px; padding: 12px 20px; font-size: 14px; margin-top: 16px; }

/* Box pós-inscrição */
.sf-pos-inscricao {
  background: #fff; border-radius: 30px; padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.sf-pos-inscricao[hidden] { display: none !important; }
.sf-pos-inscricao__titulo {
  font-size: 18px; font-weight: 700; line-height: 24px; margin: 0;
  background: linear-gradient(161deg, var(--sf-primary) 0%, var(--sf-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sf-pos-inscricao__subtexto {
  font-size: 16px; color: var(--sf-gray); line-height: 24px; margin: 0;
}

/* CF7 — layout estruturado do formulário de inscrição */
.cf7-inscricao { display: flex; flex-direction: column; gap: 20px; }

.cf7-stitle {
  font-size: 20px; font-weight: 700; margin: 0;
  background: linear-gradient(179deg, var(--sf-primary), var(--sf-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cf7-hr { border: none; border-top: 1px solid rgba(102,102,102,.2); margin: 0; }

.cf7-row { display: flex; gap: 30px; }
.cf7-field { flex: 1 0 0; display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.cf7-field--full { flex: none; width: 100%; }
.cf7-field > label { font-size: 16px; font-weight: 700; color: #000; margin: 0; line-height: 1.3; }

/* garante que o span wrap do CF7 não quebre o flex */
.cf7-inscricao .wpcf7-form-control-wrap { display: block; width: 100%; }

/* checkbox list dentro do campo — estrutura padrão CF7 (input + label como irmãos) */
.cf7-inscricao .wpcf7-checkbox { display: block; }
.cf7-inscricao .wpcf7-list-item {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px !important;
}
.cf7-inscricao .wpcf7-list-item input[type="checkbox"] { flex-shrink: 0; }
.cf7-inscricao .wpcf7-list-item label {
  display: block !important;
  font-weight: 400 !important;
  color: #666 !important;
  margin: 0 !important;
  cursor: pointer;
  line-height: 1.4;
}

/* acceptance */
.cf7-aceite .wpcf7-acceptance { display: block; }
.cf7-aceite .wpcf7-acceptance .wpcf7-list-item { display: flex !important; align-items: flex-start; gap: 10px; margin: 0 !important; }
.cf7-aceite .wpcf7-acceptance .wpcf7-list-item label { display: flex !important; align-items: flex-start; gap: 10px; cursor: pointer; margin: 0 !important; font-weight: 400 !important; color: #666 !important; }
.cf7-aceite a { color: #a7012a; text-decoration: underline; }

/* nota */
.cf7-nota { font-size: 14px; color: var(--sf-gray); font-style: italic; margin: 0; line-height: 1.5; }

/* breakpoint */

/* PAYMENT TEXTOS */
.texto-forma-pagamento { display: none; }
.texto-forma-pagamento table { width: 100% !important; border-collapse: collapse; margin: 20px 0; font-size: 14px; border-radius: 8px; overflow: hidden; }
.texto-forma-pagamento table thead { background: #1f2937; color: #fff; }
.texto-forma-pagamento table th,
.texto-forma-pagamento table td { padding: 12px 16px; text-align: left; }
.texto-forma-pagamento table th { font-weight: 600; letter-spacing: .5px; }
.texto-forma-pagamento table tbody tr { border-bottom: 1px solid #e5e7eb; }
.texto-forma-pagamento table tbody tr:nth-child(even) { background: #f9fafb; }
.texto-forma-pagamento table tbody tr:hover { background: #f1f5f9; }
.texto-forma-pagamento table td { color: #374151; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .sf-2col { flex-direction: column !important; gap: 40px; }
  .sf-2col__img { width: 100%; height: 320px; }
  .sf-2col__img--bolsas { width: 100%; height: 420px; }
  .sf-2col__img--tall { height: 320px; }
  .sf-cards-row { flex-wrap: wrap; }
  .sf-card { min-width: calc(50% - 10px); flex: none; }
  .sf-payment-box { flex-direction: column; align-items: center; }
  .sf-faq-cd__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  /* hero */
  .sf-hero { min-height: auto; }
  .sf-hero__inner { padding: 60px 20px; }
  .sf-hero h1 { font-size: 22px; margin-bottom: 28px; }
  .sf-checkpoints { align-items: stretch; }
  .sf-checkpoint { font-size: 16px; }
  .sf-pill { font-size: 10px; line-height: 15px; letter-spacing: 2px; }

  /* typography */
  .sf-heading { font-size: 26px; }
  .sf-subtext { font-size: 16px; }
  .sf-body { font-size: 15px; }

  /* sections */
  .sf-section { padding: 60px 20px; }
  .sf-2col__img { height: auto; order: -1; }
  .sf-bolsas .sf-2col__img { order: 0; }
  .sf-2col__img--tall { height: auto; }
  .sf-2col__img img { height: auto; }
  .sf-2col { gap: 28px; }

  /* diferenciais cards */
  .sf-card { min-width: 100%; }
  .sf-cards-row { gap: 12px; }
  .sf-cards-row--diferenciais { margin-bottom: 80px !important; }

  /* depoimentos */
  .sf-depo { padding: 60px 20px; }
  .sf-depo__title { font-size: 26px; }
  .sf-depo__quote { font-size: 16px; }
  .sf-depo__author { flex-direction: row; align-items: flex-start; flex-wrap: nowrap; }
  .sf-depo__avatar { width: 70px; height: 70px; font-size: 20px; }
  .sf-depo__nav { gap: 40px; margin-top: 24px; }
  .sf-depo__name { font-size: 16px; white-space: normal; }

  /* depoimentos */
  .sf-depo { padding: 60px 15px; }
  .sf-depo__title { font-size: 32px; margin-bottom: 30px; }
  .sf-depo__quote { font-size: 18px; }
  .sf-depo__nav { gap: 100px; margin-top: 30px; }
  .sf-depo__nav-btn { width: 36px; height: 36px; }

  /* steps */
  .sf-steps { padding: 60px 20px; }
  .sf-steps__title { font-size: 24px; }
  .sf-step { padding: 24px 20px; }
  .sf-step__title { font-size: 18px; }
  .sf-step__value { font-size: 18px; }
  .sf-step__footer { flex-direction: column; align-items: flex-start; }
  .sf-step__public-title { font-size: 17px; }
  .sf-step__inner-card-header { flex-direction: column; align-items: flex-start; }
  .sf-step__note { font-size: 15px; }

  /* faq */
  .sf-faq__question { font-size: 20px; }
  .sf-faq__trigger { padding: 30px 0; }
  .sf-faq__body { font-size: 15px; padding-top: 30px; padding-bottom: 36px; }
  .sf-faq-pq__cards { flex-direction: column; gap: 15px; }
  .sf-faq__body--corpo-docente { overflow-x: clip; }
  .sf-faq-cd__viewport { max-height: min(400px, 52vh); padding-right: 4px; margin-right: -4px; }
  .sf-faq-cd__grid { grid-template-columns: 1fr; gap: 16px; width: 100%; min-width: 0; }
  .sf-faq-cd__card {
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    width: 100%;
    min-width: 0;
    min-height: 0;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 30px;
  }
  .sf-faq-cd__avatar {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
  }
  .sf-faq-cd__info {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    gap: 8px;
    padding-top: 0;
    justify-content: flex-start;
  }
  .sf-faq-cd__name { font-size: 16px; line-height: 1.25; }
  .sf-faq-cd__role { font-size: 14px; line-height: 1.35; margin-bottom: 0; }
  .sf-faq-cd__lattes {
    align-self: flex-start;
    justify-content: center;
    margin-top: 0;
    max-width: 100%;
    font-size: 12px;
    padding: 8px 16px;
    white-space: nowrap;
    box-sizing: border-box;
    background: transparent;
  }
  .sf-faq-cd__lattes-text { white-space: nowrap; }
  .sf-faq-cd__lattes-icon { width: 13px; height: 13px; flex-shrink: 0; }
  .sf-faq-pq__card { flex: none; width: 100%; padding: 15px; }
  .sf-faq-pq__ideal { padding: 30px 10px 40px; }
  .sf-faq-pq__ideal-items { flex-direction: column; align-items: center; gap: 20px; }
  .sf-faq-pq__ideal-item { flex: none; width: 100%; max-width: none; }
  .sf-faq-pq__ideal-titulo { font-size: 24px; }
  .sf-faq-cf__cards { flex-direction: column; gap: 10px; }
  .sf-faq-cf__card { flex: none; width: 100%; }
  .sf-faq-oe__items { gap: 10px; }
  .sf-faq-oe__btn { align-self: stretch; text-align: center; justify-content: center; }
  .sf-faq__body--investimento { padding-bottom: 40px; gap: 30px; }
  .sf-faq-inv__pill-dark { width: 100%; }
  .sf-faq-inv__opcoes { flex-direction: column; gap: 20px; padding-top: 0; }
  .sf-faq-inv__opc { flex: none; width: 100%; }
  .sf-faq-inv__assoc { padding: 20px; }
  .sf-faq-inv__assoc-planos { flex-direction: column; gap: 20px; }
  .sf-faq-inv__assoc-titulo { font-size: 28px; }
  .sf-faq-inv__importante { border-radius: 800px; width: 100%; }
  .sf-faq__body--investimento .sf-btn { align-self: stretch; justify-content: center; }
  .sf-btn { padding-left: 30px; padding-right: 30px; }

  /* form */
  .sf-inscricao { padding: 60px 20px; }
  .form-formacao .flt-left { float: none; }
  .sf-step__form-inner { padding: 20px; }
  .cf7-row { flex-direction: column; gap: 20px; }
  .cf7-field--half { flex: none; width: 100%; }
  .sf-step__form-inner .wpcf7-form input[type="submit"] { width: 100%; }
  .sf-encerrado-card { padding: 24px; }
  .sf-encerrado-card .formLead input[type="submit"] { float: none; width: 100%; }
}

html { scroll-behavior: smooth; }
.slick-track {
  align-items: initial !important;
}

/* MODAL PAGAMENTO */
.sf-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.sf-modal[hidden] { display: none; }
.sf-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
}
.sf-modal__box {
  position: relative; z-index: 1;
  background: #ebebeb; border-radius: 20px; padding: 20px;
  width: 100%; max-width: 937px;
  box-shadow: 0 2px 25px rgba(0,0,0,.1);
}
.sf-modal__fechar {
  position: absolute; top: -40px; right: 0;
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: none; cursor: pointer;
  border-radius: 50px; padding: 10px 22px;
  font-size: 13px; font-weight: 400; letter-spacing: 1px;
  background: linear-gradient(90deg, var(--sf-primary), var(--sf-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.sf-modal__fechar::before {
  content: ''; position: absolute; inset: 0;
  background: #fff; border-radius: 50px; z-index: -1;
}
.sf-modal__fechar svg { -webkit-text-fill-color: initial; color: var(--sf-primary); }
.sf-modal__content {
  display: flex; gap: 20px; flex-wrap: wrap; margin-top: 10px;
}
.sf-modal__col { flex: 1 1 200px; display: flex; flex-direction: column; gap: 12px; }
.sf-modal__col-header {
  height: 50px; border-radius: 30px;
  background: linear-gradient(135deg, var(--sf-primary), var(--sf-dark));
  color: #fff; font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 20px;
}
.sf-modal__card {
  background: #fff; border-radius: 20px;
  padding: 24px 20px; flex: 1;
  display: flex; flex-direction: column; gap: 14px;
  align-items: center; justify-content: center;
}
.sf-modal__card-body { width: 100%; text-align: center; }
.sf-modal__card-body p { margin: 0 0 10px; font-size: 17px; color: #666; line-height: 1.5; }
.sf-modal__card-body p:last-child { margin-bottom: 0; }
.sf-modal__card-body strong { color: #666; }