.hero-fv {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      padding: 100px 0 80px;
    }
    .hero-fv-bg {
      position: absolute;
      inset: 0;
      background-image: url('../images/fios-pdo/threads-macro.webp');
      background-size: cover;
      background-position: center;
    }
    .hero-fv-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(14,14,32,.97) 0%, rgba(14,14,32,.80) 50%, rgba(14,14,32,.50) 100%),
        linear-gradient(to bottom, rgba(14,14,32,.5) 0%, transparent 25%, transparent 70%, rgba(14,14,32,.7) 100%);
    }
    .hero-fv-content {
      position: relative;
      z-index: 1;
      max-width: 600px;
    }
    .hero-fv-badge {
      display: inline-block;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(184,149,106,.45);
      border-radius: 99px;
      padding: 6px 16px;
      margin-bottom: 24px;
    }
/* TECNOLOGIA */
    .fv-tech {
      padding: var(--section-py) 0;
      background: var(--bg-alt);
    }
    .fv-tech-inner {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 64px;
      align-items: center;
    }
    @media (max-width: 860px) { .fv-tech-inner { grid-template-columns: 1fr; gap: 36px; } }
    .fv-tech-img {
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 4/3;
      background: #1C1C2E;
    }
    .fv-tech-img img { width: 100%; height: 100%; object-fit: cover; }
    .fv-tech-texto .section-label {
      display: block;
      font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 14px;
    }
    .fv-tech-texto h2 {
      font-family: var(--font-serif);
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 500; color: var(--text); line-height: 1.15; margin-bottom: 20px;
    }
    .fv-tech-texto p {
      font-size: .93rem; color: var(--text-muted); line-height: 1.75;
    }
    .fv-tech-texto p + p { margin-top: 14px; }
    /* DIFERENCIAIS */
    .fv-difs { padding: var(--section-py) 0; background: var(--bg-dark); }
    .fv-difs-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 48px;
    }
    @media (max-width: 640px) { .fv-difs-grid { grid-template-columns: 1fr; } }
    .fv-dif-card {
      background: #12122A;
      border: 1px solid rgba(255,255,255,.07);
      border-radius: var(--radius);
      padding: 28px 24px;
      transition: border-color .25s;
    }
    .fv-dif-card:hover { border-color: rgba(184,149,106,.3); }
    .fv-dif-icon {
      width: 36px; height: 36px;
      background: rgba(184,149,106,.12);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px; color: var(--gold);
    }
    .fv-dif-icon svg { width: 18px; height: 18px; }
    .fv-dif-card h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
    .fv-dif-card p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.65; }
    /* FAIXA MODELO */
    .fv-modelo { position: relative; height: 500px; overflow: hidden; }
    .fv-modelo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
    .fv-modelo-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to left, rgba(14,14,32,.0) 0%, rgba(14,14,32,.0) 35%, rgba(14,14,32,.85) 62%, rgba(14,14,32,.97) 100%);
      display: flex; align-items: center;
    }
    .fv-modelo-texto { max-width: 380px; padding: 40px; }
    .fv-modelo-texto h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 500; color: var(--white); line-height: 1.15; margin-bottom: 16px; }
    .fv-modelo-texto p { font-size: .92rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 28px; }
    @media (max-width: 768px) {
      .fv-modelo-overlay { background: linear-gradient(to top, rgba(14,14,32,.97) 0%, rgba(14,14,32,.6) 50%, rgba(14,14,32,.15) 100%); align-items: flex-end; }
      .fv-modelo-texto { padding: 32px 24px; max-width: 100%; }
    }
    /* FICHA TÉCNICA */
    .fv-ficha { padding: var(--section-py) 0; background: var(--bg-dark); }
    .fv-ficha-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
    @media (max-width: 860px) { .fv-ficha-inner { grid-template-columns: 1fr; gap: 40px; } }
    .fv-specs-list { display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); overflow: hidden; }
    .fv-spec-row { display: grid; grid-template-columns: 160px 1fr; border-bottom: 1px solid rgba(255,255,255,.06); }
    .fv-spec-row:last-child { border-bottom: none; }
    .fv-spec-label { padding: 14px 18px; font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); background: rgba(184,149,106,.06); border-right: 1px solid rgba(255,255,255,.06); }
    .fv-spec-value { padding: 14px 18px; font-size: .88rem; color: rgba(255,255,255,.75); line-height: 1.5; }
    .fv-tabela { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
    .fv-tabela thead tr { background: rgba(184,149,106,.12); }
    .fv-tabela th { padding: 12px 16px; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); text-align: left; border-bottom: 1px solid rgba(255,255,255,.1); }
    .fv-tabela td { padding: 13px 16px; font-size: .85rem; color: rgba(255,255,255,.7); border-bottom: 1px solid rgba(255,255,255,.05); }
    .fv-tabela tbody tr:last-child td { border-bottom: none; }
    .fv-tabela tbody tr:hover td { background: rgba(255,255,255,.03); }
    .fv-tabela-label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
    /* FAMÍLIA FILLER */
    .fv-familia { padding: var(--section-py) 0; background: var(--bg-alt); }
    .fv-familia-grid {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 24px;
      margin-top: 48px;
    }
    @media (max-width: 700px) { .fv-familia-grid { grid-template-columns: 1fr; } }
    .fv-fam-card {
      background: #fff;
      border: 1px solid rgba(43,40,37,.08);
      border-radius: var(--radius);
      padding: 28px 26px;
      position: relative;
    }
    .fv-fam-card--star {
      border-color: rgba(184,149,106,.5);
      background: linear-gradient(160deg, #fff 70%, rgba(184,149,106,.07) 100%);
    }
    .fv-fam-destaque {
      position: absolute;
      top: -11px; left: 20px;
      font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
      color: #fff; background: var(--gold);
      border-radius: 99px; padding: 4px 12px;
    }
    .fv-fam-label {
      font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 10px; display: block;
    }
    .fv-fam-nome {
      font-family: var(--font-serif);
      font-size: 1.3rem; font-weight: 600; color: var(--text);
      margin-bottom: 10px; line-height: 1.2;
    }
    .fv-fam-desc {
      font-size: .86rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px;
    }
    .fv-fam-modelos {
      display: flex; flex-direction: column; gap: 0;
      border: 1px solid rgba(43,40,37,.07);
      border-radius: 8px; overflow: hidden;
    }
    .fv-fam-modelo-row {
      display: grid; grid-template-columns: 1fr 1fr 1fr;
      padding: 9px 14px;
      font-size: .78rem;
      border-bottom: 1px solid rgba(43,40,37,.06);
    }
    .fv-fam-modelo-row:last-child { border-bottom: none; }
    .fv-fam-modelo-row:first-child { background: rgba(43,40,37,.03); font-weight: 700; font-size: .7rem; letter-spacing: .06em; color: var(--gold); text-transform: uppercase; }
    .fv-fam-modelo-row span { color: var(--text-muted); }
    .fv-fam-modelo-row:first-child span { color: var(--gold); }
    /* CTA FINAL */
    .fv-cta { padding: 90px 0; background: var(--bg-alt); text-align: center; }
    .fv-cta h2 { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3rem); font-weight: 500; color: var(--text); margin-bottom: 14px; }
    .fv-cta p { font-size: 1rem; color: var(--text-muted); margin-bottom: 40px; }
    .fv-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
