/* ============================================================
   Página Sobre Nós — estilos (usa css/tokens.css)
   ============================================================ */
.about main {
  font-family: var(--ft-font);
}

.ft-section {
  padding: var(--s-7) 0;
}

.ft-section--cream {
  background: var(--ft-cream);
}

.ft-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-4);
}

.ft-lead {
  max-width: 720px;
  color: var(--ft-muted);
  line-height: var(--lh);
  margin-bottom: var(--s-3);
}

/* Cabeçalho de seção (centralizado, com accent) */
.ft-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-6);
}

.ft-head h2 {
  font-size: var(--fs-h2);
  color: var(--ft-ink);
  margin: 0;
  line-height: 1.25;
}

.ft-head h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  border-radius: 2px;
  background: var(--ft-orange);
  margin: var(--s-3) auto 0;
}

.ft-head .ft-lead {
  margin: var(--s-3) auto 0;
}

.ft-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ft-orange);
  background: var(--ft-orange-50);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-3);
}

/* Hero */
.ft-hero {
  background: linear-gradient(180deg, var(--ft-cream), #fff);
  padding: var(--s-8) 0 var(--s-7);
}

.ft-hero h1 {
  font-size: var(--fs-h1);
  color: var(--ft-ink);
  margin-bottom: var(--s-4);
  line-height: 1.2;
}

.ft-hero-cta {
  margin-top: var(--s-5);
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}

/* Card base */
.ft-card {
  background: var(--ft-white);
  border: 1px solid var(--ft-line);
  border-radius: var(--r);
  box-shadow: var(--sh-1);
  padding: var(--s-5);
}

/* links comuns dentro de card (NÃO afeta botões) */
.ft-card a:not(.ft-btn) {
  color: var(--ft-orange);
  font-weight: 600;
}

/* Grids */
.ft-grid {
  display: grid;
  gap: var(--s-4);
}

.ft-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.ft-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.ft-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Stats */
.ft-stat {
  text-align: center;
  padding: var(--s-5) var(--s-4);
}

.ft-stat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--ft-orange);
  line-height: 1.1;
}

.ft-stat span {
  font-size: 0.92rem;
  color: var(--ft-muted);
}

/* Vídeo (facade) */
.ft-video {
  position: relative;
  width: 100%;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  background: #000 center / cover no-repeat;
}

.ft-video--wide {
  aspect-ratio: 16 / 9;
  max-width: 760px;
  margin: 0 auto;
}

.ft-video--short {
  aspect-ratio: 9 / 16;
  max-width: 240px;
  margin: 0 auto;
}

.ft-video__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

.ft-video:hover .ft-video__play {
  transform: scale(1.08);
}

.ft-video__play svg {
  width: 62px;
  height: 44px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.ft-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Depoimentos texto (horizontal) */
.ft-review .stars {
  color: var(--ft-orange);
  letter-spacing: 2px;
  margin-bottom: var(--s-2);
}

.ft-review p {
  color: var(--ft-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.ft-review .author {
  font-weight: 700;
  color: var(--ft-ink);
  margin-top: var(--s-3);
}

.ft-subhead {
  text-align: center;
  font-size: 1.15rem;
  color: var(--ft-ink);
  margin: var(--s-7) 0 var(--s-5);
}

/* Depoimentos em vídeo */
.ft-vtest {
  text-align: center;
}

.ft-vtest .ft-video--short {
  margin-bottom: var(--s-3);
}

.ft-vtest-id {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  text-align: left;
}

.ft-vtest-id img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.ft-vtest-id .name {
  font-weight: 700;
  color: var(--ft-ink);
  display: block;
  line-height: 1.1;
}

.ft-vtest-id .handle {
  font-size: 0.85rem;
  color: var(--ft-muted);
}

/* Testes grátis */
.ft-free-card {
  text-align: center;
  border: 2px solid var(--ft-orange-50);
}

.ft-free-badge {
  display: inline-block;
  background: var(--ft-orange-50);
  color: var(--ft-ink);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-3);
}

.ft-free-card h3 {
  font-size: 1.35rem;
  color: var(--ft-ink);
  margin-bottom: var(--s-2);
}

.ft-free-card p {
  color: var(--ft-muted);
  margin-bottom: var(--s-4);
}

/* Formulário de avaliação */
.ft-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.ft-form .row {
  margin-bottom: var(--s-4);
}

.ft-form label {
  display: block;
  font-weight: 700;
  color: var(--ft-ink);
  margin-bottom: var(--s-2);
}

.ft-form input,
.ft-form textarea {
  width: 100%;
  border: 1px solid #e4e4e4;
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}

.ft-form input:focus,
.ft-form textarea:focus {
  outline: none;
  border-color: var(--ft-orange);
  box-shadow: 0 0 0 3px var(--ft-orange-50);
}

.ft-form textarea {
  min-height: 120px;
  resize: vertical;
}

.ft-stars-legend {
  display: block;
  font-weight: 700;
  color: var(--ft-ink);
  margin-bottom: var(--s-2);
}

/* Avaliação por estrelas = radio buttons nativos (acessíveis: teclado + leitor de tela).
   Ordem invertida no DOM + row-reverse para o preenchimento da esquerda funcionar. */
.ft-stars {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}

.ft-stars input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.ft-stars label {
  font-size: 1.9rem;
  line-height: 1;
  color: #d8d8d8;
  cursor: pointer;
  margin: 0;
  transition: color 0.12s ease;
}

.ft-stars label:hover,
.ft-stars label:hover ~ label,
.ft-stars input:checked ~ label {
  color: var(--ft-orange);
}

.ft-stars input:focus-visible + label {
  outline: 2px solid var(--ft-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.ft-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Botão com aparência de link (gatilho do chat) */
.ft-linkbtn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--ft-orange);
  font-weight: 600;
  cursor: pointer;
}

.ft-linkbtn:hover {
  text-decoration: underline;
}

.ft-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ft-ink);
  cursor: pointer;
}

.ft-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--ft-orange);
}

.ft-video-field {
  display: none;
  margin-top: var(--s-3);
}

.ft-video-field.show {
  display: block;
}

.ft-help-text {
  font-size: 0.82rem;
  color: #888;
  margin-top: 6px;
}

#ft-thanks {
  display: none;
  color: var(--ft-success);
  font-weight: 700;
  margin-top: var(--s-3);
}

/* Autoridade (Victoria) */
.ft-author {
  display: flex;
  gap: var(--s-6);
  align-items: center;
  flex-wrap: wrap;
}

.ft-author img.avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--ft-orange-50);
  flex-shrink: 0;
}

.ft-author .info {
  flex: 1;
  min-width: 240px;
}

.ft-author .role {
  color: var(--ft-orange);
  font-weight: 700;
  margin: 4px 0 var(--s-3);
}

.ft-author p {
  color: var(--ft-muted);
  line-height: var(--lh);
  margin: 0;
}

/* Precisa de ajuda? (contato + vídeos) */
.ft-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-4);
}

.ft-contact-list li {
  padding: 8px 0;
  color: var(--ft-muted);
}

.ft-contact-card {
  text-align: center;
}

.ft-help-video figcaption {
  margin-top: var(--s-3);
  color: var(--ft-muted);
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.45;
}

.ft-help-video figcaption strong {
  display: block;
  color: var(--ft-ink);
}

/* Blog cards */
.ft-blog-card {
  background: #fff;
  border: 1px solid var(--ft-line);
  border-radius: var(--r);
  box-shadow: var(--sh-1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ft-blog-card:hover {
  box-shadow: var(--sh-2);
  transform: translateY(-2px);
}

.ft-blog-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--ft-orange-50);
  display: block;
}

.ft-blog-body {
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  flex: 1;
}

.ft-blog-read {
  font-size: 0.8rem;
  color: #8a8d96;
  font-weight: 600;
}

.ft-blog-body h3 {
  font-size: 1.02rem;
  line-height: 1.35;
  margin: 0;
}

.ft-blog-body h3 a {
  color: var(--ft-ink);
  text-decoration: none;
}

.ft-blog-body h3 a:hover {
  color: var(--ft-orange);
}

.ft-blog-body p {
  font-size: 0.9rem;
  color: var(--ft-muted);
  margin: 0;
}

/* Redes sociais */
.ft-social-card {
  text-align: center;
}

.ft-social-card strong {
  display: block;
  color: var(--ft-ink);
}

.ft-social-card span {
  font-size: 0.9rem;
  color: #888;
}

.ft-social-card .ft-btn {
  margin-top: var(--s-3);
}

/* CTA final */
.ft-cta {
  text-align: center;
}

.ft-cta .ft-lead {
  margin: 0 auto var(--s-5);
}

/* ===== Núcleo institucional (história, missão/visão/valores, como funciona, confiança) ===== */

/* Nossa história — prosa */
.ft-prose {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ft-muted);
  line-height: var(--lh);
}

.ft-prose p {
  margin: 0 0 var(--s-4);
}

.ft-prose p:last-child {
  margin-bottom: 0;
}

.ft-prose strong {
  color: var(--ft-ink);
}

/* Linha do tempo */
.ft-tl-year {
  display: inline-block;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ft-orange);
  line-height: 1;
  margin-bottom: var(--s-2);
}

.ft-tl h3 {
  font-size: 1.02rem;
  color: var(--ft-ink);
  margin: 0 0 var(--s-2);
}

.ft-tl p {
  color: var(--ft-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

/* Missão / Visão */
.ft-mvv-card h3 {
  font-size: 1.2rem;
  color: var(--ft-ink);
  margin: 0 0 var(--s-2);
}

.ft-mvv-card p {
  color: var(--ft-muted);
  line-height: var(--lh);
  margin: 0;
}

/* Valores */
.ft-value h3 {
  font-size: 1.05rem;
  color: var(--ft-ink);
  margin: 0 0 var(--s-2);
}

.ft-value p {
  color: var(--ft-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* Como funciona — passos numerados */
.ft-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ft-orange-50);
  color: var(--ft-orange);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: var(--s-3);
}

.ft-step h3 {
  font-size: 1.08rem;
  color: var(--ft-ink);
  margin: 0 0 var(--s-2);
}

.ft-step p {
  color: var(--ft-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* Por que confiar — compromissos */
.ft-trust h3 {
  font-size: 1.02rem;
  color: var(--ft-ink);
  margin: 0 0 var(--s-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ft-trust h3::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ft-orange-50);
  color: var(--ft-orange);
  font-size: 0.8rem;
  font-weight: 900;
}

.ft-trust p {
  color: var(--ft-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

/* Responsivo */
@media (max-width: 991px) {
  .ft-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {

  .ft-grid--2,
  .ft-grid--3 {
    grid-template-columns: 1fr;
  }

  .ft-vtest-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .ft-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
