    :root {
      color-scheme: dark;
      --surface: #101010;
      --surface-soft: #141414;
      --surface-raised: #1a1a1a;
      --surface-deep: #0d0d0d;
      --text: #fff;
      --text-92: rgb(255 255 255 / 92%);
      --text-78: rgb(255 255 255 / 78%);
      --text-72: rgb(255 255 255 / 72%);
      --text-62: rgb(255 255 255 / 62%);
      --text-48: rgb(255 255 255 / 48%);
      --line: rgb(255 255 255 / 9%);
      --line-strong: rgb(255 255 255 / 18%);
      --line-focus: rgb(255 255 255 / 34%);
      --card-radius: 10px;
      --control-radius: 16px;
      --page-gutter: clamp(20px, 4vw, 62px);
      --content-width: 1240px;
      --shadow: 0 22px 60px rgb(0 0 0 / 38%);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; background: var(--surface); }
    body {
      margin: 0;
      overflow-x: hidden;
      background: var(--surface);
      color: var(--text);
      font-family: "Quicksand", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    a { color: inherit; text-decoration: none; }
    button, a { -webkit-tap-highlight-color: transparent; }

    .container {
      width: min(100% - (var(--page-gutter) * 2), var(--content-width));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid transparent;
      background: rgb(16 16 16 / 90%);
      backdrop-filter: blur(14px);
      transition: border-color 160ms ease, background-color 160ms ease;
    }
    .site-header.is-scrolled {
      border-bottom-color: var(--line);
      background: rgb(16 16 16 / 97%);
    }
    .header-inner {
      min-height: 74px;
      display: flex;
      align-items: center;
      gap: 34px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
      height: 36px;
    }
    .brand img {
      display: block;
      width: 180px;
      max-width: 100%;
      height: auto;
    }
    .nav {
      display: flex;
      align-items: center;
      gap: 26px;
      margin-left: 10px;
      color: var(--text-72);
      font-size: 14px;
      font-weight: 600;
    }
    .nav a { transition: color 130ms ease; }
    .nav a:hover, .nav a:focus-visible { color: #fff; }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: auto;
    }

    .button {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0 20px;
      border: 1px solid transparent;
      border-radius: var(--control-radius);
      font: inherit;
      font-size: 15px;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
    }
    .button-primary {
      background: rgb(255 255 255 / 90%);
      color: #111;
    }
    .button-primary:hover, .button-primary:focus-visible {
      background: #fff;
      box-shadow: 0 6px 18px rgb(255 255 255 / 16%);
      transform: translateY(-1px);
    }
    .button-secondary {
      border-color: var(--line-strong);
      background: #1a1a1a;
      color: #fff;
    }
    .button-secondary:hover, .button-secondary:focus-visible {
      border-color: var(--line-focus);
      background: #1d1d1d;
      transform: translateY(-1px);
    }
    .button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
    .button:active { transform: translateY(0); }

    .hero {
      position: relative;
      min-height: calc(100vh - 74px);
      display: grid;
      align-items: center;
      padding: clamp(68px, 8vw, 110px) 0 clamp(64px, 7vw, 96px);
      isolation: isolate;
    }
    .hero::before {
      content: "";
      position: absolute;
      z-index: -2;
      inset: -74px -8vw auto;
      height: min(76vw, 880px);
      background:
        radial-gradient(circle at 75% 28%, rgb(255 255 255 / 8%), transparent 27%),
        radial-gradient(circle at 62% 34%, rgb(255 255 255 / 4%), transparent 42%);
      pointer-events: none;
    }
    .hero::after {
      content: "";
      position: absolute;
      z-index: -1;
      right: -10vw;
      top: 11%;
      width: min(50vw, 720px);
      aspect-ratio: 1.3;
      border: 1px solid rgb(255 255 255 / 5%);
      border-radius: 50%;
      filter: blur(.1px);
      opacity: .8;
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(430px, .85fr);
      gap: clamp(46px, 7vw, 100px);
      align-items: center;
    }
    .eyebrow {
      margin: 0 0 18px;
      color: var(--text-62);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .hero h1 {
      max-width: 790px;
      margin: 0;
      color: #fff;
      font-size: clamp(48px, 6.4vw, 88px);
      font-weight: 500;
      line-height: .98;
      letter-spacing: -.055em;
    }
    .hero-copy {
      max-width: 680px;
      margin: 28px 0 0;
      color: var(--text-72);
      font-size: clamp(17px, 1.5vw, 20px);
      line-height: 1.62;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }
    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 9px 22px;
      margin-top: 26px;
      color: var(--text-48);
      font-size: 13px;
      font-weight: 600;
    }
    .hero-meta span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .hero-meta span::before {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgb(255 255 255 / 44%);
    }

    .product-window {
      position: relative;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: linear-gradient(100deg, #141414 0%, #0d0d0d 100%);
      box-shadow: var(--shadow);
    }
    .product-window::before {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: 15px;
      box-shadow: inset 0 1px rgb(255 255 255 / 5%);
      pointer-events: none;
    }
    .product-topbar {
      height: 44px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 8px 10px;
      color: var(--text-48);
      font-size: 12px;
    }
    .dot { width: 7px; height: 7px; border-radius: 50%; background: rgb(255 255 255 / 18%); }
    .product-brand { margin-left: 8px; color: var(--text-78); font-weight: 700; letter-spacing: -.03em; }
    .screen {
      position: relative;
      min-height: 385px;
      overflow: hidden;
      border-radius: 10px;
      background:
        linear-gradient(90deg, rgb(9 9 9 / 98%) 0%, rgb(14 14 14 / 76%) 42%, rgb(14 14 14 / 20%) 72%, rgb(14 14 14 / 74%) 100%),
        radial-gradient(circle at 75% 38%, rgb(255 255 255 / 17%), transparent 12%),
        radial-gradient(circle at 70% 52%, rgb(255 255 255 / 8%), transparent 26%),
        linear-gradient(135deg, #252525, #0d0d0d 70%);
      isolation: isolate;
    }
    .screen::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      opacity: .36;
      background-image:
        linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
        linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(to right, transparent, #000 46%, #000);
    }
    .screen-copy {
      position: absolute;
      left: clamp(24px, 5vw, 46px);
      bottom: clamp(26px, 5vw, 42px);
      width: min(76%, 390px);
    }
    .screen-kicker {
      color: var(--text-62);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
    }
    .screen-title {
      margin: 9px 0 10px;
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 500;
      line-height: 1.08;
      letter-spacing: -.035em;
    }
    .screen-copy p {
      margin: 0;
      color: var(--text-62);
      font-size: 13px;
      line-height: 1.5;
    }
    .screen-pills {
      position: absolute;
      top: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 8px;
    }
    .screen-pill {
      padding: 8px 11px;
      border: 1px solid rgb(255 255 255 / 10%);
      border-radius: 999px;
      background: rgb(17 17 17 / 78%);
      color: var(--text-72);
      font-size: 11px;
      font-weight: 700;
      backdrop-filter: blur(10px);
    }

    .section {
      padding: clamp(76px, 9vw, 126px) 0;
      border-top: 1px solid var(--line);
    }
    .section-heading {
      max-width: 760px;
      margin-bottom: clamp(34px, 5vw, 58px);
    }
    .section-heading.centered { margin-inline: auto; text-align: center; }
    .section h2 {
      margin: 0;
      font-size: clamp(34px, 4.8vw, 58px);
      font-weight: 500;
      line-height: 1.05;
      letter-spacing: -.045em;
    }
    .section-intro {
      margin: 17px 0 0;
      color: var(--text-62);
      font-size: 17px;
      line-height: 1.65;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .feature-card,
    .plan-card,
    .faq-item,
    .pix-card,
    .story-card {
      border: 1px solid var(--line);
      border-radius: var(--card-radius);
      background: linear-gradient(100deg, #141414 0%, #0d0d0d 100%);
    }
    .feature-card {
      min-height: 252px;
      padding: 28px;
      transition: border-color 160ms ease, transform 160ms ease, background-color 160ms ease;
    }
    .feature-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
    .feature-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      margin-bottom: 38px;
      border: 1px solid var(--line-strong);
      border-radius: 12px;
      color: var(--text-78);
      background: rgb(255 255 255 / 3%);
    }
    .feature-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
    .feature-card h3 {
      margin: 0 0 11px;
      font-size: 20px;
      font-weight: 600;
      letter-spacing: -.025em;
    }
    .feature-card p {
      margin: 0;
      color: var(--text-62);
      font-size: 14px;
      line-height: 1.65;
    }

    .plans-section { background: #0f0f0f; }
    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      align-items: stretch;
    }
    .plan-card {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 30px;
      min-height: 430px;
      transition: border-color 160ms ease, transform 160ms ease;
    }
    .plan-card:hover { border-color: rgb(255 255 255 / 22%); transform: translateY(-2px); }
    .plan-name {
      margin: 0 0 30px;
      color: var(--text-78);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
    }
    .plan-price {
      display: flex;
      align-items: flex-start;
      gap: 4px;
      margin-bottom: 8px;
      white-space: nowrap;
    }
    .currency { margin-top: 8px; color: var(--text-62); font-size: 15px; font-weight: 700; }
    .amount { font-size: clamp(44px, 5vw, 62px); font-weight: 500; line-height: 1; letter-spacing: -.055em; }
    .period { align-self: flex-end; margin: 0 0 7px 3px; color: var(--text-48); font-size: 14px; }
    .plan-copy { margin: 0 0 26px; color: var(--text-48); font-size: 13px; }
    .benefits {
      display: grid;
      gap: 13px;
      margin: 4px 0 30px;
      padding: 0;
      list-style: none;
      color: var(--text-72);
      font-size: 14px;
      line-height: 1.5;
    }
    .benefits li { position: relative; padding-left: 22px; }
    .benefits li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: .05em;
      color: var(--text-78);
      font-weight: 700;
    }
    .plan-card .button { width: 100%; margin-top: auto; }

    .pix-card {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      margin-top: 14px;
      padding: 26px 30px;
      background: #151515;
    }
    .pix-copy h3 { margin: 0 0 6px; font-size: 19px; font-weight: 600; }
    .pix-copy p { margin: 0; color: var(--text-62); font-size: 14px; line-height: 1.55; }

    .story-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 14px;
    }
    .story-card { padding: clamp(28px, 4vw, 46px); }
    .story-card h3 {
      margin: 0 0 18px;
      font-size: clamp(25px, 3vw, 34px);
      font-weight: 500;
      letter-spacing: -.035em;
    }
    .story-card p {
      margin: 0;
      color: var(--text-62);
      font-size: 15px;
      line-height: 1.72;
    }
    .stats-card {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      overflow: hidden;
      padding: 0;
      background: var(--line);
    }
    .stat {
      min-height: 180px;
      padding: 30px;
      background: #121212;
    }
    .stat strong {
      display: block;
      margin-bottom: 10px;
      font-size: clamp(32px, 4vw, 46px);
      font-weight: 500;
      letter-spacing: -.045em;
    }
    .stat span { color: var(--text-62); font-size: 13px; line-height: 1.5; }

    .faq-list { display: grid; gap: 10px; max-width: 900px; margin-inline: auto; }
    .faq-item { overflow: hidden; }
    .faq-question {
      width: 100%;
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 20px 22px;
      border: 0;
      background: transparent;
      color: #fff;
      font: inherit;
      font-size: 16px;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
    }
    .faq-question:hover { background: rgb(255 255 255 / 3%); }
    .faq-question:focus-visible { outline: 2px solid #fff; outline-offset: -3px; }
    .faq-plus { flex: 0 0 auto; color: var(--text-48); font-size: 25px; font-weight: 400; transition: transform 160ms ease; }
    .faq-item.open .faq-plus { transform: rotate(45deg); }
    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 180ms ease;
    }
    .faq-item.open .faq-answer { grid-template-rows: 1fr; }
    .faq-answer-inner { overflow: hidden; }
    .faq-answer p {
      margin: 0;
      padding: 0 22px 23px;
      color: var(--text-62);
      font-size: 14px;
      line-height: 1.72;
    }
    .faq-answer a { color: var(--text-92); font-weight: 700; text-decoration: underline; text-decoration-color: var(--text-48); text-underline-offset: 3px; }

    .closing {
      padding: clamp(76px, 10vw, 140px) 0;
      text-align: center;
      border-top: 1px solid var(--line);
      background: radial-gradient(circle at 50% 0%, rgb(255 255 255 / 5%), transparent 38%);
    }
    .closing h2 { max-width: 780px; margin: 0 auto; font-size: clamp(36px, 5vw, 64px); font-weight: 500; line-height: 1.04; letter-spacing: -.05em; }
    .closing p { max-width: 620px; margin: 20px auto 0; color: var(--text-62); font-size: 16px; line-height: 1.65; }
    .closing .hero-actions { justify-content: center; }

    .site-footer { border-top: 1px solid var(--line); padding: 52px 0 30px; }
    .footer-top {
      display: grid;
      grid-template-columns: minmax(230px, 1.3fr) repeat(3, minmax(150px, .7fr));
      gap: 42px;
      padding-bottom: 46px;
    }
    .footer-brand p { max-width: 370px; margin: 18px 0 0; color: var(--text-48); font-size: 12px; line-height: 1.7; }
    .footer-column h3 { margin: 1px 0 15px; color: var(--text-72); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
    .footer-column a { display: block; width: fit-content; margin: 9px 0; color: var(--text-48); font-size: 13px; transition: color 130ms ease; }
    .footer-column a:hover { color: #fff; }
    .footer-bottom {
      padding-top: 24px;
      border-top: 1px solid var(--line);
      color: rgb(255 255 255 / 34%);
      font-size: 11px;
      line-height: 1.7;
    }

    @media (max-width: 980px) {
      .nav { display: none; }
      .hero-grid { grid-template-columns: 1fr; gap: 54px; }
      .hero { min-height: auto; }
      .product-window { width: min(100%, 720px); }
      .feature-grid { grid-template-columns: repeat(2, 1fr); }
      .plans-grid { grid-template-columns: 1fr; }
      .plan-card { min-height: 0; }
      .story-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
      .footer-column:last-child { grid-column: 2 / 4; }
    }

    @media (max-width: 640px) {
      :root { --page-gutter: 18px; }
      .header-inner { min-height: 64px; gap: 12px; }
      .brand { height: 30px; }
      .brand img { width: 145px; }
      .header-actions { gap: 8px; }
      .header-actions .button { min-height: 42px; padding: 0 14px; font-size: 13px; }
      .header-actions .button-secondary { background: transparent; border-color: transparent; padding-inline: 8px; }
      .hero { padding-top: 58px; }
      .hero h1 { font-size: clamp(46px, 15vw, 65px); }
      .hero-copy { font-size: 16px; }
      .hero-actions .button { flex: 1 1 160px; }
      .product-window { padding: 10px; border-radius: 13px; }
      .screen { min-height: 310px; }
      .screen-pills { top: 14px; right: 14px; }
      .feature-grid { grid-template-columns: 1fr; }
      .feature-card { min-height: 0; }
      .feature-icon { margin-bottom: 26px; }
      .pix-card { grid-template-columns: 1fr; }
      .pix-card .button { width: 100%; }
      .stats-card { grid-template-columns: 1fr; }
      .stat { min-height: 140px; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-column:last-child { grid-column: auto; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition: none !important; animation: none !important; }
    }
/* ================================================================
   TV COIOTE PLAY — HOME V2 / AQUISIÇÃO
   Estrutura enxuta inspirada na densidade das landing pages de streaming.
   Conteúdo e layout continuam separados para futura migração a tema WordPress.
   ================================================================ */

.site-header {
  position: absolute;
  width: 100%;
  background: linear-gradient(to bottom, rgb(0 0 0 / 48%), transparent) !important;
  border: 0 !important;
  backdrop-filter: none !important;
}
.site-header.is-scrolled { background: linear-gradient(to bottom, rgb(0 0 0 / 48%), transparent) !important; }
.header-inner { min-height: 82px; }
.header-actions { margin-left: auto; }
.header-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 14px;
  background: rgb(17 17 17 / 54%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  transition: background-color 140ms ease, border-color 140ms ease;
}
.header-login:hover,
.header-login:focus-visible { background: rgb(255 255 255 / 10%); border-color: rgb(255 255 255 / 38%); }
.header-login:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.hero {
  min-height: 620px;
  padding: 150px 0 92px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 28%, rgb(255 255 255 / 7%), transparent 31%),
    linear-gradient(to bottom, #101010 0%, #101010 74%, #0f0f0f 100%);
}
.hero::before,
.hero::after { display: none; }
.hero-grid {
  display: block;
  max-width: 960px;
  margin-inline: auto;
}
.hero h1 {
  max-width: 930px;
  margin-inline: auto;
  font-size: clamp(48px, 6.1vw, 82px);
  line-height: 1.01;
  letter-spacing: -.052em;
}
.hero-copy {
  max-width: 710px;
  margin: 24px auto 0;
  font-size: clamp(17px, 1.45vw, 19px);
  line-height: 1.62;
}
.hero-actions { justify-content: center; margin-top: 30px; }
.hero-actions .button-primary { min-width: 190px; }
.hero-meta {
  justify-content: center;
  gap: 0;
  margin-top: 22px;
  color: rgb(255 255 255 / 46%);
  font-size: 12px;
}
.hero-meta span { gap: 0; padding: 0 13px; }
.hero-meta span::before { display: none; }
.hero-meta span + span { border-left: 1px solid rgb(255 255 255 / 14%); }

.catalog-glimpse {
  padding: 28px 0 64px;
  background: #0f0f0f;
  border-top: 1px solid rgb(255 255 255 / 7%);
}
.catalog-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  overflow-x: auto;
  padding: 4px 0 20px;
  color: rgb(255 255 255 / 45%);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  scrollbar-width: none;
}
.catalog-tabs::-webkit-scrollbar { display: none; }
.catalog-tabs span { position: relative; padding: 8px 0; }
.catalog-tabs .is-active { color: #fff; }
.catalog-tabs .is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgb(255 255 255 / 78%);
}
.catalog-scale {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 18px auto 0;
  color: rgb(255 255 255 / 42%);
  font-size: 11px;
  font-weight: 550;
}
.catalog-scale span { padding: 0 12px; }
.catalog-scale span + span { border-left: 1px solid rgb(255 255 255 / 11%); }
.catalog-scale strong { color: rgb(255 255 255 / 72%); font-weight: 700; }

.plans-section {
  padding: clamp(76px, 7vw, 104px) 0;
  background: #101010;
}
.plans-section .section-heading { margin-bottom: 20px; }
.plans-section .section-heading h2 {
  font-size: clamp(34px, 4.2vw, 52px);
  letter-spacing: -.042em;
}
.plans-section .section-intro { max-width: 680px; margin: 14px auto 0; font-size: 15px; }
.billing-switch {
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto 28px;
  padding: 4px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 14px;
  background: #151515;
  color: rgb(255 255 255 / 52%);
  font-size: 13px;
  font-weight: 650;
}
.billing-switch > * {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 10px;
}
.billing-switch .is-active { background: rgb(255 255 255 / 90%); color: #111; }
.billing-switch a:hover { color: #fff; }
.plans-grid {
  max-width: 1040px;
  margin-inline: auto;
  gap: 10px;
}
.plan-card {
  min-height: 330px;
  padding: 24px;
  border-radius: 10px;
  background: linear-gradient(110deg, #151515 0%, #0f0f0f 100%);
  box-shadow: none;
}
.plan-card:hover { transform: translateY(-1px); }
.plan-name {
  margin: 0 0 18px;
  color: rgb(255 255 255 / 86%);
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -.015em;
  text-transform: none;
}
.plan-price { margin-bottom: 6px; }
.amount { font-size: clamp(40px, 4vw, 50px); font-weight: 520; }
.currency { margin-top: 6px; font-size: 13px; }
.period { margin-bottom: 5px; font-size: 12px; }
.plan-copy { margin: 0 0 18px; color: rgb(255 255 255 / 48%); font-size: 12px; }
.benefits { gap: 9px; margin: 0 0 22px; font-size: 12.5px; line-height: 1.45; }
.benefits li { padding-left: 18px; }
.plan-card .button { min-height: 48px; margin-top: auto; border-radius: 14px; font-size: 14px; }
.annual-note {
  max-width: 1040px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 12px auto 0;
  padding: 12px 4px 0;
  border: 0;
  background: transparent;
  color: rgb(255 255 255 / 45%);
  font-size: 12px;
}
.annual-note p { margin: 0; }
.annual-note strong { color: rgb(255 255 255 / 70%); font-weight: 650; }
.annual-note a { color: rgb(255 255 255 / 82%); font-weight: 700; }
.annual-note a:hover { color: #fff; }

#conteudos {
  background: #0f0f0f;
}
#conteudos .section-heading {
  max-width: 720px;
}
#conteudos .section-heading .eyebrow { color: rgb(255 255 255 / 46%); }
#conteudos .section-heading h2 { font-size: clamp(32px, 4.2vw, 50px); }

.closing .hero-actions { justify-content: center; }

@media (max-width: 980px) {
  .title-rail { grid-template-columns: repeat(5, minmax(150px, 1fr)); overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x mandatory; }
  .title-card { scroll-snap-align: start; }
  .plans-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .plan-card { min-height: 320px; }
}

@media (max-width: 760px) {
  .hero { min-height: 560px; padding: 126px 0 72px; }
  .hero h1 { font-size: clamp(44px, 13.5vw, 64px); }
  .hero-meta { row-gap: 8px; }
  .hero-meta span { padding: 0 9px; }
  .catalog-glimpse { padding: 18px 0 48px; }
  .catalog-tabs { justify-content: flex-start; margin-inline: calc(var(--page-gutter) * -1); padding-inline: var(--page-gutter); }
  .title-rail { margin-right: calc(var(--page-gutter) * -1); grid-template-columns: repeat(5, minmax(170px, 1fr)); }
  .catalog-scale { justify-content: flex-start; gap: 7px 12px; }
  .catalog-scale span { padding: 0; }
  .catalog-scale span + span { border-left: 0; }
  .plans-grid { grid-template-columns: 1fr; max-width: 520px; }
  .plan-card { min-height: 0; padding: 22px; }
  .annual-note { max-width: 520px; padding-top: 8px; }
}

@media (max-width: 640px) {
  .header-inner { min-height: 70px; }
  .header-login { min-height: 38px; padding: 0 14px; font-size: 13px; }
  .brand img { width: 155px; }
  .hero-actions .button-primary { width: min(100%, 310px); }
  .hero-meta span + span { border-left: 0; }
  .hero-meta { max-width: 360px; margin-inline: auto; gap: 6px 0; }
  .hero-meta span { width: 100%; justify-content: center; }
  .billing-switch { width: 100%; max-width: 390px; }
  .billing-switch > * { flex: 1 1 50%; padding-inline: 10px; }
  .annual-note { align-items: flex-start; flex-direction: column; gap: 7px; }
}


/* ================================================================
   REFINO V3 — HERO, TIPOGRAFIA, CONTADORES E PLANOS
   ================================================================ */

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  padding: 146px 0 94px;
  background: #101010;
  isolation: isolate;
}
.hero-backdrop {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-backdrop::before,
.hero-backdrop::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.hero-backdrop::before {
  background:
    radial-gradient(circle at 50% 44%, rgb(16 16 16 / 28%) 0 20%, rgb(16 16 16 / 72%) 54%, #101010 88%),
    linear-gradient(to bottom, rgb(16 16 16 / 24%) 0%, rgb(16 16 16 / 38%) 55%, #101010 100%);
}
.hero-backdrop::after {
  background: linear-gradient(to right, #101010 0%, transparent 15%, transparent 85%, #101010 100%);
}
.hero-backdrop-grid {
  position: absolute;
  top: 47%;
  left: 50%;
  display: grid;
  width: min(1380px, 112vw);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  transform: translate(-50%, -50%) rotate(-1.2deg) scale(1.035);
  opacity: .34;
  filter: grayscale(1) saturate(.22) brightness(.66) contrast(1.08);
}
.hero-backdrop-grid img {
  display: block;
  width: 100%;
  height: clamp(280px, 30vw, 390px);
  object-fit: cover;
  object-position: center 28%;
  border-radius: 10px;
}
.hero-backdrop-grid img:nth-child(2),
.hero-backdrop-grid img:nth-child(4) { transform: translateY(24px); }
.hero-grid {
  position: relative;
  z-index: 3;
  max-width: 1180px;
}
.hero h1 {
  max-width: none;
  font-size: clamp(46px, 5.15vw, 72px);
  line-height: 1.02;
  letter-spacing: -.05em;
  text-wrap: balance;
  text-shadow: 0 3px 24px rgb(0 0 0 / 48%);
}
.hero-copy {
  max-width: 690px;
  color: rgb(255 255 255 / 76%);
  text-shadow: 0 2px 18px rgb(0 0 0 / 60%);
}
.hero-actions { margin-top: 32px; }

.catalog-tabs {
  font-family: inherit;
  color: rgb(255 255 255 / 48%);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.012em;
}
.catalog-tabs .is-active { font-weight: 600; }
.catalog-tabs .is-active::after { opacity: .72; }
.catalog-scale {
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
}

.plans-section .section-heading { margin-bottom: 28px; }
.plans-grid { margin-top: 0; }
.plan-card .button { font-family: inherit; }
.annual-note {
  font-family: inherit;
  margin-top: 16px;
}
.annual-note p { color: rgb(255 255 255 / 50%); }

#conteudos .section-heading .eyebrow {
  margin-bottom: 12px;
  color: rgb(255 255 255 / 70%);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.015em;
  text-transform: none;
}
#conteudos .section-heading h2 {
  font-weight: 500;
  letter-spacing: -.04em;
}

@media (min-width: 1000px) {
  .hero h1 { white-space: nowrap; }
}

@media (max-width: 760px) {
  .hero {
    min-height: 570px;
    padding: 124px 0 76px;
  }
  .hero-backdrop-grid {
    width: 150vw;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    gap: 8px;
    opacity: .26;
  }
  .hero-backdrop-grid img { height: 330px; }
  .hero h1 {
    font-size: clamp(42px, 12.7vw, 61px);
    white-space: normal;
  }
  .catalog-tabs { font-size: 13.5px; }
  .annual-note { align-items: flex-start; }
}



/* ================================================================
   REFINO V4 — PLANOS, FAQ E HERO CINEMA + JORNALISMO
   ================================================================ */

.hero-backdrop-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.hero-backdrop-grid > * {
  min-width: 0;
}
.hero-news-image {
  object-position: center center !important;
}
.hero-news-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: clamp(280px, 30vw, 390px);
  padding: clamp(18px, 2.5vw, 30px);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 10px;
  background:
    linear-gradient(to top, rgb(0 0 0 / 70%), transparent 58%),
    repeating-linear-gradient(0deg, rgb(255 255 255 / 4%) 0 1px, transparent 1px 34px),
    linear-gradient(135deg, #3b3b3b, #121212 68%);
  color: #fff;
  font-family: inherit;
  text-align: left;
}
.hero-news-tile span {
  color: rgb(255 255 255 / 68%);
  font-size: clamp(10px, .8vw, 12px);
  font-weight: 700;
  letter-spacing: .12em;
}
.hero-news-tile strong {
  margin-top: 4px;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.035em;
}
.hero-news-tile small {
  margin-top: 9px;
  color: rgb(255 255 255 / 52%);
  font-size: clamp(9px, .75vw, 11px);
  font-weight: 500;
}
.hero-backdrop-grid .hero-news-tile:nth-child(5) { transform: translateY(0); }

.plans-section {
  font-family: inherit;
}
.plans-section .section-heading h2 {
  font-family: "Quicksand", ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
}
.plans-section .section-intro {
  color: rgb(255 255 255 / 58%);
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
}
.plan-card {
  min-height: 348px;
  padding: 25px 25px 23px;
}
.plan-name {
  margin-bottom: 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.plan-price {
  margin-bottom: 22px;
  align-items: baseline;
}
.plan-price .currency {
  margin: 0 1px 0 0;
  color: rgb(255 255 255 / 60%);
  font-size: 13px;
  font-weight: 600;
}
.plan-price .amount {
  font-family: inherit;
  font-size: clamp(39px, 3.8vw, 48px);
  font-weight: 600;
  letter-spacing: -.05em;
}
.plan-price .period {
  margin: 0 0 3px 4px;
  color: rgb(255 255 255 / 46%);
  font-size: 12px;
  font-weight: 500;
}
.benefits {
  gap: 11px;
  margin-bottom: 24px;
  color: rgb(255 255 255 / 70%);
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}
.benefits li { padding-left: 20px; }
.benefits li::before {
  top: .02em;
  color: rgb(255 255 255 / 76%);
  font-weight: 600;
}
.plan-card .button {
  font-size: 14px;
  font-weight: 650;
}
.annual-note {
  font-size: 12px;
  font-weight: 400;
}

#conteudos .section-heading h2 {
  color: #fff;
  font-family: inherit;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.04em;
}
#conteudos .section-intro {
  max-width: 700px;
  font-size: 16px;
}

#duvidas .section-heading { margin-bottom: 34px; }
#duvidas .section-heading h2 {
  font-size: clamp(34px, 4.2vw, 50px);
}
#duvidas .section-intro {
  max-width: 690px;
  margin-inline: auto;
  font-size: 15px;
}

@media (max-width: 760px) {
  .hero-backdrop-grid {
    grid-template-columns: repeat(5, minmax(170px, 1fr));
  }
  .hero-news-tile { height: 330px; }
  .plan-card { min-height: 0; }
}


/* ================================================================
   REFINO V5 — IDENTIDADE TIPOGRÁFICA E HERO LIMPO
   Quicksand em toda a experiência pública, alinhada a cadastro e Jellyfin.
   ================================================================ */

/* Hero de aquisição: marca somente no cabeçalho. Sem montagem de imagens. */
.hero {
  min-height: 600px;
  padding: 152px 0 92px;
  background:
    radial-gradient(ellipse at 50% 36%, rgb(255 255 255 / 3.5%) 0%, transparent 42%),
    linear-gradient(180deg, #101010 0%, #101010 72%, #0f0f0f 100%);
}
.hero-backdrop { display: none !important; }
.hero-grid { max-width: 980px; }
.hero h1 {
  max-width: 900px;
  margin-inline: auto;
  font-family: inherit;
  font-size: clamp(48px, 5.25vw, 74px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.04em;
  text-shadow: none;
}
.hero h1 span { display: block; }
.hero-copy {
  max-width: 690px;
  color: rgb(255 255 255 / 70%);
  font-family: inherit;
  font-size: 17px;
  line-height: 1.62;
  text-shadow: none;
}

/* Faixa editorial discreta: mesma voz tipográfica do produto. */
.catalog-tabs,
.catalog-scale {
  font-family: inherit;
}
.catalog-tabs {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}
.catalog-tabs .is-active { font-weight: 600; }
.catalog-scale {
  font-size: 11.5px;
  font-weight: 500;
}

/* O título da seção de planos permanece exatamente com a hierarquia já aprovada. */
.plans-section,
.plans-section .section-intro,
.plan-card,
.plan-card .button,
.annual-note {
  font-family: inherit;
}
.plan-name {
  margin-bottom: 18px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.plan-price {
  margin-bottom: 18px;
  align-items: baseline;
  font-family: inherit;
}
.plan-price .currency {
  margin-right: 2px;
  color: rgb(255 255 255 / 62%);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
}
.plan-price .amount {
  font-family: inherit;
  font-size: clamp(42px, 4vw, 50px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}
.plan-price .period {
  margin-left: 5px;
  color: rgb(255 255 255 / 50%);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
}
.benefits {
  color: rgb(255 255 255 / 72%);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}
.plan-card .button {
  font-size: 15px;
  font-weight: 700;
}
.annual-note { font-size: 13px; }

/* Grade aprovada: apenas corrige a tipografia do cabeçalho, sem redesenhar a grade. */
#conteudos .section-heading h2 {
  font-family: inherit;
  font-weight: 600;
  letter-spacing: -0.025em;
}
#conteudos .section-heading .eyebrow,
#conteudos .section-intro {
  font-family: inherit;
}

@media (min-width: 1000px) {
  .hero h1 { white-space: normal; }
}
@media (max-width: 760px) {
  .hero { min-height: 560px; padding: 126px 0 74px; }
  .hero h1 { font-size: clamp(42px, 12.3vw, 60px); }
  .hero-copy { font-size: 15.5px; }
}

/* ================================================================
   TVCP PLUGIN — ADIÇÕES DE CONVERSÃO
   Prova social, selo "mais popular", promoções por plano e aviso de confiança.
   ================================================================ */

.social-proof-bar {
  padding: 14px 0;
  border-top: 1px solid rgb(255 255 255 / 7%);
  border-bottom: 1px solid rgb(255 255 255 / 7%);
  background: #0f0f0f;
  color: rgb(255 255 255 / 62%);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  text-align: center;
}
.social-proof-bar p { margin: 0; }
.social-proof-bar strong { color: #fff; }

.plan-card { position: relative; overflow: visible; }
.plan-card.is-featured {
  border: 1px solid rgb(255 255 255 / 32%);
  background: linear-gradient(160deg, #1c1c1c 0%, #101010 100%);
}
.plan-badge-featured {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  z-index: 2;
}
.plan-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.plan-name-row .plan-name { margin-bottom: 0; }
.plan-promo-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border-radius: 999px;
  background: rgb(255 255 255 / 14%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .01em;
}
.plan-price .price-original {
  margin-right: 8px;
  color: rgb(255 255 255 / 40%);
  font-size: 16px;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-color: rgb(255 255 255 / 40%);
}
.promo-context {
  margin: -10px 0 16px;
  color: rgb(255 255 255 / 55%);
  font-size: 12px;
  line-height: 1.5;
}
.plans-trust-note {
  max-width: 1040px;
  margin: 18px auto 0;
  color: rgb(255 255 255 / 50%);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 760px) {
  .plan-badge-featured { top: -11px; font-size: 10.5px; }
  .social-proof-bar { font-size: 12.5px; padding: 12px 0; }
}

/* ================================================================
   TVCP PLUGIN — PÁGINAS INTERNAS
   Hero simples, conteúdo legal, formulário e central de ajuda.
   ================================================================ */

.tvcp-page main { padding-top: 0; }

.page-hero {
  padding: 148px 0 56px;
  text-align: center;
  border-bottom: 1px solid rgb(255 255 255 / 7%);
}
.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}
.page-hero-subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-72);
  font-size: 16px;
  line-height: 1.6;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-78);
  font-size: 15px;
  line-height: 1.75;
}
.legal-content h4 {
  margin: 40px 0 12px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.legal-content h4:first-child { margin-top: 0; }
.legal-content h5 {
  margin: 22px 0 8px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-92);
}
.legal-content p { margin: 0 0 14px; }
.legal-content ul { margin: 0 0 14px; padding-left: 20px; }
.legal-content li { margin-bottom: 10px; }
.legal-content a { color: var(--text); text-decoration: underline; }
.legal-content strong { color: var(--text-92); }

.tvcp-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tvcp-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-78);
}
.tvcp-form input,
.tvcp-form select,
.tvcp-form textarea {
  font: inherit;
  font-size: 14.5px;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgb(255 255 255 / 14%);
  background: var(--surface-soft);
  color: var(--text);
}
.tvcp-form input:focus,
.tvcp-form select:focus,
.tvcp-form textarea:focus {
  outline: none;
  border-color: rgb(255 255 255 / 40%);
}
.tvcp-form textarea { resize: vertical; min-height: 90px; }
.tvcp-form button { margin-top: 4px; align-self: flex-start; }

.tvcp-form-notice {
  max-width: 560px;
  margin: 0 auto 20px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
}
.tvcp-form-success { background: rgb(90 220 140 / 12%); border: 1px solid rgb(90 220 140 / 30%); color: #8ef0b5; }
.tvcp-form-error { background: rgb(255 90 90 / 10%); border: 1px solid rgb(255 90 90 / 30%); color: #ff9d9d; }

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.help-category h3 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.help-category ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.help-category a {
  color: var(--text-72);
  text-decoration: none;
  font-size: 14.5px;
  transition: color .15s ease;
}
.help-category a:hover { color: var(--text); text-decoration: underline; }

@media (max-width: 760px) {
  .page-hero { padding: 122px 0 40px; }
  .legal-content { font-size: 14.5px; }
}

/* ================================================================
   TVCP PLUGIN — CARROSSEL REDESENHADO (inspirado em grandes streamings)
   Abas clicáveis + fileiras por categoria + cards com hover de play.
   ================================================================ */

.catalog-tabs { display: flex; gap: 22px; overflow-x: auto; }
.catalog-tabs button {
  all: unset;
  cursor: pointer;
  position: relative;
  padding: 8px 0;
  font: inherit;
  font-size: 14.5px;
  color: var(--text-62, rgb(255 255 255 / 62%));
  white-space: nowrap;
  transition: color .15s ease;
}
.catalog-tabs button:hover { color: var(--text-92, rgb(255 255 255 / 92%)); }
.catalog-tabs button.is-active { color: #fff; font-weight: 600; }
.catalog-tabs button.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.title-rail-wrap { display: none; }
.title-rail-wrap.is-active { display: block; }

.title-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 14px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.title-rail::-webkit-scrollbar { height: 6px; }
.title-rail::-webkit-scrollbar-thumb { background: rgb(255 255 255 / 15%); border-radius: 999px; }
.title-rail::-webkit-scrollbar-track { background: transparent; }

.title-card {
  flex: 0 0 auto;
  width: 156px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.title-card-poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-soft);
  box-shadow: 0 8px 20px rgb(0 0 0 / 30%);
  transition: transform .22s ease, box-shadow .22s ease;
}
.title-card:hover .title-card-poster,
.title-card:focus-visible .title-card-poster {
  transform: translateY(-4px) scale(1.035);
  box-shadow: 0 16px 34px rgb(0 0 0 / 45%);
}
.title-card-poster img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.title-card-name {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-72);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 760px) {
  .title-card { width: 128px; }
  .catalog-tabs { gap: 18px; }
}

/* ================================================================
   TVCP PLUGIN — CENTRAL DE AJUDA (inspirada em centrais de ajuda de streaming)
   ================================================================ */

.help-hero {
  padding: 148px 0 40px;
  text-align: center;
  border-bottom: 1px solid rgb(255 255 255 / 7%);
}
.help-hero h1 {
  margin: 0 0 6px;
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}
.help-hero-subtitle {
  margin: 0 0 26px;
  color: var(--text-62, rgb(255 255 255 / 62%));
  font-size: 15px;
}
.help-search {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}
.help-search svg {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 17px; height: 17px;
  fill: none;
  stroke: rgb(255 255 255 / 45%);
  stroke-width: 2;
  pointer-events: none;
}
.help-search input {
  width: 100%;
  font: inherit;
  font-size: 15px;
  padding: 13px 16px 13px 44px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 14%);
  background: var(--surface-soft);
  color: var(--text);
}
.help-search input:focus { outline: none; border-color: rgb(255 255 255 / 40%); }
.help-search input::placeholder { color: rgb(255 255 255 / 38%); }

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}
.help-category-card {
  background: var(--surface-soft);
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 16px;
  padding: 26px 24px;
}
.help-category-icon {
  width: 38px; height: 38px;
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgb(255 255 255 / 8%);
}
.help-category-icon svg {
  width: 19px; height: 19px;
  fill: none;
  stroke: var(--text-92, rgb(255 255 255 / 92%));
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.help-category-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.help-category-card ul { list-style: none; margin: 6px 0 0; padding: 0; }
.help-category-card li + li { border-top: 1px solid rgb(255 255 255 / 6%); }
.help-category-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 2px;
  color: var(--text-72);
  text-decoration: none;
  font-size: 14.5px;
  transition: color .15s ease;
}
.help-category-card a:hover { color: var(--text); }
.help-chevron { color: rgb(255 255 255 / 30%); font-size: 17px; }
.help-category-card a:hover .help-chevron { color: rgb(255 255 255 / 55%); }

.help-contact-card {
  background: linear-gradient(160deg, #1c1c1c 0%, #101010 100%);
  border-color: rgb(255 255 255 / 16%);
  display: flex;
  flex-direction: column;
}
.help-contact-card p { margin: 0 0 18px; color: var(--text-62, rgb(255 255 255 / 62%)); font-size: 14px; }
.help-contact-card .button { align-self: flex-start; }

.help-no-results {
  max-width: 480px;
  margin: 32px auto 0;
  text-align: center;
  color: var(--text-62, rgb(255 255 255 / 62%));
  font-size: 14.5px;
}
.help-no-results a { color: var(--text); text-decoration: underline; }

@media (max-width: 760px) {
  .help-hero { padding: 122px 0 32px; }
}

/* ================================================================
   TVCP PLUGIN — CENTRAL DE AJUDA v1.5: atalhos, destaque de busca, polish
   ================================================================ */

.help-search-kbd {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  padding: 2px 7px;
  border-radius: 5px;
  border: 1px solid rgb(255 255 255 / 16%);
  background: rgb(255 255 255 / 6%);
  color: rgb(255 255 255 / 45%);
  font-size: 11px;
  font-family: inherit;
  pointer-events: none;
}
.help-search input:focus ~ .help-search-kbd { display: none; }

.help-popular {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}
.help-popular-label {
  color: rgb(255 255 255 / 42%);
  font-size: 13px;
  margin-right: 2px;
}
.help-chip {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 14%);
  color: var(--text-72);
  font-size: 13px;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.help-chip:hover {
  background: rgb(255 255 255 / 8%);
  border-color: rgb(255 255 255 / 26%);
  color: #fff;
}

.help-category-card mark,
.help-item-text mark {
  background: rgb(255 220 100 / 85%);
  color: #111;
  border-radius: 3px;
  padding: 0 2px;
}

[data-help-item].is-hidden,
.help-category-card.is-hidden { display: none; }

@keyframes tvcpFadeIn { from { opacity: 0; transform: translateY(3px); } to { opacity: 1; transform: none; } }
.help-category-card:not(.is-hidden) { animation: tvcpFadeIn .18s ease; }

/* ================================================================
   TVCP PLUGIN — PÁGINAS JURÍDICAS: índice lateral + acordeão
   (mesmo padrão de interação do FAQ da home)
   ================================================================ */

.legal-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 48px;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.legal-toc-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgb(255 255 255 / 35%);
  margin-bottom: 8px;
}
.legal-toc a {
  padding: 7px 0;
  color: var(--text-62);
  font-size: 13.5px;
  text-decoration: none;
  border-left: 2px solid transparent;
  padding-left: 12px;
  margin-left: -12px;
  transition: color .15s ease, border-color .15s ease;
}
.legal-toc a:hover { color: var(--text); border-left-color: rgb(255 255 255 / 25%); }

.legal-accordion { max-width: none; margin: 0; }
.legal-accordion .faq-question span:first-child { font-weight: 600; }
.legal-accordion .legal-content { max-width: none; padding-top: 2px; }
.legal-accordion .legal-content h5:first-child { margin-top: 0; }

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; gap: 20px; }
  .legal-toc {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .legal-toc a {
    border: 1px solid rgb(255 255 255 / 14%);
    border-radius: 999px;
    padding: 6px 14px;
    margin-left: 0;
  }
  .legal-toc a:hover { border-color: rgb(255 255 255 / 30%); }
  .legal-toc-label { display: none; }
}

/* ================================================================
   TVCP PLUGIN — BLINDAGEM CONTRA CSS DO TEMA
   Alguns temas/page builders aplicam resets genéricos (ex.: "todo <div>
   dentro do conteúdo perde borda a partir do 4º filho") que conflitam com
   os cards do plugin. Este bloco reforça o visual dos cards com !important,
   escopado só dentro de .tvcp-home, sem afetar o resto do site.
   ================================================================ */

.tvcp-home .feature-card,
.tvcp-home .plan-card,
.tvcp-home .faq-item,
.tvcp-home .help-category-card,
.tvcp-home .tvcp-form-notice {
  border: 1px solid var(--line) !important;
  border-radius: var(--card-radius) !important;
  background: linear-gradient(100deg, #141414 0%, #0d0d0d 100%) !important;
  box-sizing: border-box !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}
.tvcp-home .feature-grid,
.tvcp-home .plans-grid,
.tvcp-home .help-grid {
  height: auto !important;
}
.tvcp-home .title-card-poster {
  border: none !important;
  background: var(--surface-soft) !important;
  overflow: hidden !important;
}

/* ================================================================
   TVCP PLUGIN — TIPOGRAFIA DO PREÇO
   Quicksand é redonda e amigável — ótima pra títulos e textos, mas exagera
   no lado "descontraído" bem na hora que o valor em dinheiro pede mais
   seriedade. Aqui só os números de preço trocam pra uma fonte neutra,
   mantendo Quicksand no resto do site.
   ================================================================ */

.tvcp-home .plan-price .amount,
.tvcp-home .plan-price .currency,
.tvcp-home .plan-price .price-original {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
}

/* ================================================================
   TVCPE — reforço: garante que botões nunca fiquem sublinhados,
   mesmo dentro do editor do Elementor ou de temas com reset de link diferente.
   ================================================================ */
.button,
.button:hover,
.button:visited,
.button-primary,
a.button {
  text-decoration: none !important;
}

/* ================================================================
   TVCPE — BLINDAGEM CONTRA TEMA ATIVO (Astra, Hello Elementor, etc.)
   Como os widgets podem ser usados com QUALQUER tema, não dá pra depender de
   herdar font-family/color do <body> — o tema ativo também estiliza h1, p,
   a, etc., e "brigava" com o nosso visual. Aqui forçamos explicitamente,
   com !important, a fonte e as cores em todos os textos dos nossos widgets.
   ================================================================ */

.hero, .catalog-glimpse, .plans-section, .section, .page-hero,
.site-header, .site-footer, .tvcp-form-notice,
.hero *, .catalog-glimpse *, .plans-section *, .section *, .page-hero *,
.site-header *, .site-footer * {
  font-family: "Quicksand", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.hero h1, .hero h1 span,
.section-heading h2,
.page-hero h1,
.plan-name,
.feature-card h3,
.faq-question span:first-child,
.help-category-card h3,
.legal-content h4, .legal-content h5,
.legal-toc-label,
.plan-price .amount, .plan-price .currency,
.footer-column h3,
.help-contact-card h3 {
  color: #fff !important;
  font-family: "Quicksand", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
.plan-price .amount, .plan-price .currency, .plan-price .price-original {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif !important;
}

.hero-copy,
.section-intro,
.page-hero-subtitle,
.feature-card p,
.faq-answer-inner p,
.help-category-card p,
.help-item-text,
.legal-content p, .legal-content li,
.benefits li,
.plan-price .period,
.footer-brand p,
.footer-bottom,
.catalog-scale span {
  color: rgb(255 255 255 / 72%) !important;
}

.catalog-tabs button { color: rgb(255 255 255 / 62%) !important; }
.catalog-tabs button.is-active { color: #fff !important; }

a.button.button-primary, a.button.button-primary:visited {
  color: #111 !important;
}
.header-login, .footer-column a, .legal-toc a, .legal-content a {
  font-family: "Quicksand", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

/* ================================================================
   TVCPE — BLINDAGEM DO BOTÃO
   ".button" é um nome de classe genérico que muitos temas (Astra incluso)
   também usam para seus próprios botões padrão. Aqui redeclaramos TODAS as
   propriedades visuais com !important, pra garantir que o nosso visual
   vença qualquer estilo de botão do tema ativo.
   ================================================================ */
.hero .button, .plan-card .button, .help-contact-card .button,
.tvcp-form .button, a.button, button.button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  min-height: 48px !important;
  padding: 0 20px !important;
  border-width: 1px !important;
  border-style: solid !important;
  border-color: transparent !important;
  border-radius: 16px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
}
a.button.button-primary, button.button.button-primary {
  background: rgb(255 255 255 / 90%) !important;
  color: #111 !important;
}
a.button.button-primary:hover, button.button.button-primary:hover {
  background: #fff !important;
  color: #111 !important;
}
a.button.button-secondary, button.button.button-secondary {
  background: #1a1a1a !important;
  color: #fff !important;
  border-color: rgb(255 255 255 / 18%) !important;
}

/* ================================================================
   TVCPE — reforço extra no título das seções (planos, conteúdos, etc.)
   ================================================================ */
.plans-section .section-heading h2,
.plans-section .section-heading,
section .section-heading h2 {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #fff !important;
  font-size: clamp(28px, 4vw, 42px) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

/* ================================================================
   TVCPE — BLINDAGEM DO ACORDEÃO (Dúvidas Frequentes / acordeão jurídico)
   ".faq-question" é um <button>, e temas como o Astra estilizam elementos
   <button> genericamente (padding, fundo, borda) — o mesmo problema que já
   resolvemos com ".button". Reforçando tudo aqui com !important.
   ================================================================ */
.faq-list { display: grid !important; gap: 10px !important; max-width: 900px !important; margin-inline: auto !important; }
.faq-item {
  overflow: hidden !important;
  border: 1px solid rgb(255 255 255 / 9%) !important;
  border-radius: 10px !important;
  background: linear-gradient(100deg, #141414 0%, #0d0d0d 100%) !important;
}
button.faq-question {
  all: unset !important;
  box-sizing: border-box !important;
  width: 100% !important;
  min-height: 72px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  padding: 20px 22px !important;
  color: #fff !important;
  font-family: "Quicksand", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-align: left !important;
  cursor: pointer !important;
}
button.faq-question:hover { background: rgb(255 255 255 / 3%) !important; }
.faq-plus {
  flex: 0 0 auto !important;
  color: rgb(255 255 255 / 48%) !important;
  font-size: 25px !important;
  font-weight: 400 !important;
  transition: transform 160ms ease !important;
}
.faq-item.open .faq-plus { transform: rotate(45deg) !important; }
.faq-answer {
  display: grid !important;
  grid-template-rows: 0fr !important;
  transition: grid-template-rows 180ms ease !important;
}
.faq-item.open .faq-answer { grid-template-rows: 1fr !important; }
.faq-answer-inner { overflow: hidden !important; }
.faq-answer-inner p {
  margin: 0 !important;
  padding: 0 22px 22px !important;
  color: rgb(255 255 255 / 72%) !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

/* ================================================================
   TVCPE — BLINDAGEM COMPLETA DA GRADE DE PLANOS
   ================================================================ */
.plans-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
  align-items: stretch !important;
}
@media (max-width: 900px) { .plans-grid { grid-template-columns: 1fr !important; } }

.plan-card {
  position: relative !important;
  overflow: visible !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 30px !important;
  min-height: 430px !important;
  border: 1px solid rgb(255 255 255 / 9%) !important;
  border-radius: 10px !important;
  background: linear-gradient(100deg, #141414 0%, #0d0d0d 100%) !important;
  list-style: none !important;
}
.plan-card.is-featured {
  border: 1px solid rgb(255 255 255 / 32%) !important;
  background: linear-gradient(160deg, #1c1c1c 0%, #101010 100%) !important;
}
.plan-badge-featured {
  position: absolute !important; top: -13px !important; left: 50% !important; transform: translateX(-50%) !important;
  padding: 5px 14px !important; border-radius: 999px !important; background: #fff !important; color: #111 !important;
  font-size: 11px !important; font-weight: 700 !important; white-space: nowrap !important; z-index: 2 !important;
}
.plan-name-row { display: flex !important; align-items: center !important; gap: 8px !important; margin-bottom: 18px !important; }
.plan-name {
  margin: 0 !important; color: rgb(255 255 255 / 78%) !important; font-size: 15px !important; font-weight: 700 !important;
  letter-spacing: .04em !important; text-transform: uppercase !important;
}
.plan-promo-badge {
  display: inline-flex !important; padding: 2px 9px !important; border-radius: 999px !important;
  background: rgb(255 255 255 / 14%) !important; color: #fff !important; font-size: 11px !important; font-weight: 700 !important;
}
.plan-price { display: flex !important; align-items: flex-start !important; gap: 4px !important; margin-bottom: 8px !important; white-space: nowrap !important; }
.plan-price .currency { margin-top: 8px !important; color: rgb(255 255 255 / 62%) !important; font-size: 15px !important; font-weight: 700 !important; }
.plan-price .amount { font-size: clamp(44px, 5vw, 62px) !important; font-weight: 500 !important; line-height: 1 !important; letter-spacing: -.055em !important; color: #fff !important; }
.plan-price .period { align-self: flex-end !important; margin: 0 0 7px 3px !important; color: rgb(255 255 255 / 48%) !important; font-size: 14px !important; }
.plan-price .price-original { margin-right: 8px !important; color: rgb(255 255 255 / 40%) !important; font-size: 16px !important; font-weight: 600 !important; text-decoration: line-through !important; }
.promo-context { margin: -10px 0 16px !important; color: rgb(255 255 255 / 55%) !important; font-size: 12px !important; line-height: 1.5 !important; }
.plans-trust-note { max-width: 1040px !important; margin: 18px auto 0 !important; color: rgb(255 255 255 / 50%) !important; font-size: 13px !important; text-align: center !important; }

.plan-card .benefits {
  display: grid !important; gap: 13px !important; margin: 4px 0 30px !important; padding: 0 !important;
  list-style: none !important; color: rgb(255 255 255 / 72%) !important; font-size: 14px !important; line-height: 1.5 !important;
}
.plan-card .benefits li { position: relative !important; padding-left: 22px !important; margin: 0 !important; list-style: none !important; }
.plan-card .benefits li::before {
  content: "✓" !important; position: absolute !important; left: 0 !important; top: .05em !important;
  color: rgb(255 255 255 / 78%) !important; font-weight: 700 !important;
}
.plan-card .button { width: 100% !important; margin-top: auto !important; }

/* ================================================================
   TVCPE — BLINDAGEM FINAL COMPLETA (auditoria cuidadosa, v1.1.0)
   Cobre tudo que ainda não tinha reforço: título de seção genérico,
   carrossel/capas, título de página interna, formulário, e grade/cards
   de ajuda. Mesmo motivo de sempre: garantir que nosso visual vença
   qualquer CSS do tema ativo (Astra, Hello Elementor, etc.), sem
   depender da ordem de carregamento dos arquivos.
   ================================================================ */

/* --- Título e texto de apoio de qualquer seção (usado por Planos, Conteúdos, FAQ) --- */
.section-heading {
  text-align: center !important;
  margin: 0 auto 40px !important;
}
.section-intro {
  color: rgb(255 255 255 / 62%) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  margin: 10px 0 0 !important;
  font-family: "Quicksand", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

/* --- Título de página interna (TVCP: Título de página) --- */
.page-hero { padding: 60px 0 40px !important; text-align: center !important; }
.page-hero h1 {
  margin: 0 0 12px !important;
  font-size: clamp(32px, 5vw, 48px) !important;
  font-weight: 600 !important;
  color: #fff !important;
}
.page-hero-subtitle {
  max-width: 640px !important;
  margin: 0 auto !important;
  color: rgb(255 255 255 / 72%) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
}

/* --- Carrossel de capas --- */
.catalog-glimpse { padding: 20px 0 !important; }
.title-rail { display: flex !important; gap: 14px !important; overflow-x: auto !important; padding: 4px 2px 14px !important; }
.title-card {
  flex: 0 0 auto !important; width: 156px !important; display: flex !important;
  flex-direction: column !important; gap: 8px !important; text-decoration: none !important; color: inherit !important;
}
.title-card-poster {
  position: relative !important; display: block !important; width: 100% !important; aspect-ratio: 2/3 !important;
  border-radius: 12px !important; overflow: hidden !important; background: #141414 !important;
  box-shadow: 0 8px 20px rgb(0 0 0 / 30%) !important;
}
.title-card-poster img { position: absolute !important; inset: 0 !important; width: 100% !important; height: 100% !important; object-fit: cover !important; }
.title-card-name { font-size: 12.5px !important; font-weight: 500 !important; color: rgb(255 255 255 / 72%) !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; }
.catalog-scale { display: flex !important; justify-content: center !important; flex-wrap: wrap !important; gap: 0 !important; margin: 18px auto 0 !important; }
.catalog-scale span { padding: 0 12px !important; color: rgb(255 255 255 / 42%) !important; font-size: 11px !important; font-weight: 550 !important; }
.catalog-scale strong { color: rgb(255 255 255 / 72%) !important; font-weight: 700 !important; }

/* --- Ajuda: grade de categorias e card de contato --- */
.help-grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important; gap: 20px !important; max-width: 980px !important; margin: 0 auto !important; }
.help-category-card { background: #141414 !important; border: 1px solid rgb(255 255 255 / 8%) !important; border-radius: 16px !important; padding: 26px 24px !important; }
.help-category-icon { width: 38px !important; height: 38px !important; margin-bottom: 14px !important; display: flex !important; align-items: center !important; justify-content: center !important; border-radius: 10px !important; background: rgb(255 255 255 / 8%) !important; }
.help-category-icon svg { width: 19px !important; height: 19px !important; fill: none !important; stroke: #fff !important; stroke-width: 1.7 !important; }
.help-category-card h3 { margin: 0 0 4px !important; font-size: 16px !important; font-weight: 600 !important; color: #fff !important; }
.help-category-card ul { list-style: none !important; margin: 6px 0 0 !important; padding: 0 !important; }
.help-category-card li { list-style: none !important; }
.help-category-card li + li { border-top: 1px solid rgb(255 255 255 / 6%) !important; }
.help-category-card a { display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 8px !important; padding: 11px 2px !important; color: rgb(255 255 255 / 72%) !important; text-decoration: none !important; font-size: 14.5px !important; }
.help-chevron { color: rgb(255 255 255 / 30%) !important; font-size: 17px !important; }
.help-contact-card { background: linear-gradient(160deg, #1c1c1c 0%, #101010 100%) !important; border-color: rgb(255 255 255 / 16%) !important; display: flex !important; flex-direction: column !important; }
.help-contact-card p { margin: 0 0 18px !important; color: rgb(255 255 255 / 62%) !important; font-size: 14px !important; }

/* --- Formulário simples --- */
.tvcp-form { max-width: 560px !important; margin: 0 auto !important; display: flex !important; flex-direction: column !important; gap: 16px !important; }
.tvcp-form label { display: flex !important; flex-direction: column !important; gap: 6px !important; font-size: 13.5px !important; font-weight: 600 !important; color: rgb(255 255 255 / 78%) !important; }
.tvcp-form input, .tvcp-form select, .tvcp-form textarea {
  all: revert !important;
  box-sizing: border-box !important;
  font-family: "Quicksand", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 14.5px !important;
  padding: 11px 14px !important;
  border-radius: 10px !important;
  border: 1px solid rgb(255 255 255 / 14%) !important;
  background: #141414 !important;
  color: #fff !important;
  width: 100% !important;
}
.tvcp-form textarea { resize: vertical !important; min-height: 90px !important; }
.tvcp-form button { margin-top: 4px !important; align-self: flex-start !important; }
.tvcp-form-notice { max-width: 560px !important; margin: 0 auto 20px !important; padding: 12px 16px !important; border-radius: 10px !important; font-size: 14px !important; text-align: center !important; }
.tvcp-form-success { background: rgb(90 220 140 / 12%) !important; border: 1px solid rgb(90 220 140 / 30%) !important; color: #8ef0b5 !important; }
.tvcp-form-error { background: rgb(255 90 90 / 10%) !important; border: 1px solid rgb(255 90 90 / 30%) !important; color: #ff9d9d !important; }

/* --- Acordeão jurídico: índice lateral --- */
.legal-layout { display: grid !important; grid-template-columns: 200px minmax(0,1fr) !important; gap: 48px !important; max-width: 980px !important; margin: 0 auto !important; }
@media (max-width: 900px) { .legal-layout { grid-template-columns: 1fr !important; } }
.legal-toc { position: sticky !important; top: 100px !important; display: flex !important; flex-direction: column !important; gap: 2px !important; }
.legal-toc-label { font-size: 11px !important; font-weight: 700 !important; text-transform: uppercase !important; color: rgb(255 255 255 / 35%) !important; margin-bottom: 8px !important; }
.legal-toc a { padding: 7px 0 !important; color: rgb(255 255 255 / 62%) !important; font-size: 13.5px !important; text-decoration: none !important; }
.legal-content { color: rgb(255 255 255 / 78%) !important; font-size: 15px !important; line-height: 1.75 !important; }
.legal-content h5 { margin: 22px 0 8px !important; font-size: 15.5px !important; font-weight: 600 !important; color: rgb(255 255 255 / 92%) !important; }
.legal-content p { margin: 0 0 14px !important; }

/* ================================================================
   TVCP — Chamada final (fim da home)
   ================================================================ */
.closing {
  padding: clamp(76px, 10vw, 140px) 0 !important;
  text-align: center !important;
  border-top: 1px solid rgb(255 255 255 / 9%) !important;
  background: radial-gradient(circle at 50% 0%, rgb(255 255 255 / 5%), transparent 38%) !important;
}
.closing h2 {
  max-width: 780px !important; margin: 0 auto !important;
  font-size: clamp(36px, 5vw, 64px) !important; font-weight: 500 !important;
  line-height: 1.04 !important; letter-spacing: -.05em !important; color: #fff !important;
}
.closing p {
  max-width: 620px !important; margin: 20px auto 0 !important;
  color: rgb(255 255 255 / 62%) !important; font-size: 16px !important; line-height: 1.65 !important;
}
.closing .hero-actions { justify-content: center !important; margin-top: 30px !important; }

/* ================================================================
   TVCPE — Seção de imagem e Separador
   ================================================================ */
.tvcp-image-section-frame {
  display: block !important;
  position: relative !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  text-decoration: none !important;
}
.tvcp-image-section--card .tvcp-image-section-frame {
  max-width: 900px !important; margin: 0 auto !important;
  border: 1px solid rgb(255 255 255 / 9%) !important;
}
.tvcp-image-section-frame img { display: block !important; width: 100% !important; height: auto !important; }
.tvcp-image-section-caption { max-width: 900px !important; margin: 16px auto 0 !important; text-align: center !important; }
.tvcp-image-section-caption h3 { margin: 0 0 6px !important; font-size: 18px !important; font-weight: 600 !important; color: #fff !important; }
.tvcp-image-section-caption p { margin: 0 !important; color: rgb(255 255 255 / 62%) !important; font-size: 14px !important; }

.tvcp-image-section--banner .tvcp-image-section-frame { min-height: 320px !important; }
.tvcp-image-section--banner .tvcp-image-section-frame img { position: absolute !important; inset: 0 !important; width: 100% !important; height: 100% !important; object-fit: cover !important; }
.tvcp-image-section-overlay {
  position: relative !important; z-index: 1 !important;
  min-height: 320px !important; display: flex !important; flex-direction: column !important;
  align-items: center !important; justify-content: center !important; text-align: center !important;
  padding: 40px !important;
  background: linear-gradient(180deg, rgb(0 0 0 / 20%) 0%, rgb(0 0 0 / 70%) 100%) !important;
}
.tvcp-image-section-overlay h2 { margin: 0 0 10px !important; font-size: clamp(28px, 4vw, 42px) !important; font-weight: 600 !important; color: #fff !important; }
.tvcp-image-section-overlay p { margin: 0 !important; max-width: 560px !important; color: rgb(255 255 255 / 82%) !important; font-size: 16px !important; }

.tvcp-separator-wrap { padding: 8px 0 !important; }
.tvcp-separator-wrap--contained .tvcp-separator { max-width: var(--content-width, 1240px) !important; margin: 0 auto !important; padding-inline: var(--page-gutter, 20px) !important; }
.tvcp-separator {
  position: relative !important;
  border-top: 1px solid rgb(255 255 255 / 9%) !important;
  text-align: center !important;
}
.tvcp-separator span {
  position: relative !important; top: -11px !important;
  display: inline-block !important; padding: 0 16px !important;
  background: #101010 !important; color: rgb(255 255 255 / 42%) !important; font-size: 12px !important;
  font-family: "Quicksand", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

/* ================================================================
   TVCP — capas em formato "miniatura" (16:9) pra abas de vídeo/notícia
   ================================================================ */
.title-card--wide { width: 240px !important; }
.title-card-poster--wide { aspect-ratio: 16/9 !important; }
@media (max-width: 760px) { .title-card--wide { width: 200px !important; } }

/* ================================================================
   TVCP — Menu principal do cabeçalho (Aparência → Menus)
   ================================================================ */
.header-nav { margin-left: 32px !important; }
.header-nav-list {
  display: flex !important;
  align-items: center !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.header-nav-list li { list-style: none !important; margin: 0 !important; }
.header-nav-list a {
  color: rgb(255 255 255 / 72%) !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  font-family: "Quicksand", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  transition: color .15s ease !important;
}
.header-nav-list a:hover { color: #fff !important; }
.header-nav-list .current-menu-item > a { color: #fff !important; }
@media (max-width: 900px) { .header-nav { display: none !important; } }
