/*
Theme Name: Projeto Aurora
Theme URI: https://projetoaurora.com
Author: O Arquivista
Author URI: https://projetoaurora.com
Description: Tema customizado para o Projeto Aurora, baseado no pacote visual principal e adaptado para WordPress.
Version: 3.1
Text Domain: aurora
*/


/* ===== base/home ===== */


    :root {
      --aurora-black: #050403;
      --aurora-night: #0d0f12;
      --aurora-card: #16120d;
      --aurora-card-2: #201910;
      --aurora-paper: #f3ead8;
      --aurora-paper-soft: #d9c8aa;
      --aurora-muted: #a99675;
      --aurora-gold: #d99a2b;
      --aurora-gold-2: #f0c36a;
      --aurora-green: #0f6f4e;
      --aurora-green-2: #1eb77a;
      --aurora-red: #9e2f24;
      --aurora-line: rgba(243, 234, 216, .14);
      --shadow: 0 28px 90px rgba(0, 0, 0, .46);
      --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --serif: Georgia, "Times New Roman", serif;
      --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      background: var(--aurora-black);
      color: var(--aurora-paper);
      font-family: var(--font);
      line-height: 1.5;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }

    .page {
      min-height: 100vh;
      position: relative;
      background:
        radial-gradient(circle at 12% 8%, rgba(217,154,43,.18), transparent 28%),
        radial-gradient(circle at 84% 2%, rgba(15,111,78,.18), transparent 26%),
        radial-gradient(circle at 58% 82%, rgba(158,47,36,.12), transparent 30%),
        linear-gradient(180deg, #070503 0%, #0d0f12 44%, #050403 100%);
    }

    .page::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .22;
      background-image:
        linear-gradient(rgba(243,234,216,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(243,234,216,.055) 1px, transparent 1px);
      background-size: 58px 58px;
      mask-image: radial-gradient(circle at center, #000, transparent 72%);
    }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .top-alert {
      border-bottom: 1px solid rgba(217,154,43,.24);
      background: rgba(217,154,43,.08);
      color: var(--aurora-paper-soft);
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .top-alert-inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .top-alert strong { color: var(--aurora-gold-2); }

    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--aurora-line);
      background: rgba(5,4,3,.86);
      backdrop-filter: blur(18px);
    }

    .header-inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 292px;
    }

    .brand-seal {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 1px solid rgba(217,154,43,.58);
      background:
        radial-gradient(circle, rgba(240,195,106,.2), transparent 54%),
        conic-gradient(from 180deg, rgba(217,154,43,.7), rgba(15,111,78,.58), rgba(158,47,36,.5), rgba(217,154,43,.7));
      display: grid;
      place-items: center;
      box-shadow: 0 0 38px rgba(217,154,43,.16);
      flex: 0 0 auto;
    }

    .brand-seal::after {
      content: "A";
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #070503;
      color: var(--aurora-gold-2);
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 900;
    }

    .brand-kicker {
      margin: 0;
      color: var(--aurora-muted);
      font-size: 10px;
      letter-spacing: .24em;
      text-transform: uppercase;
      font-weight: 900;
    }

    .brand-title {
      margin: 2px 0 0;
      color: var(--aurora-paper);
      font-family: var(--serif);
      font-size: 20px;
      line-height: 1;
      letter-spacing: .02em;
      font-weight: 800;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      color: var(--aurora-paper-soft);
      font-size: 13px;
      font-weight: 800;
    }

    .nav a {
      position: relative;
      transition: color .2s ease;
      white-space: nowrap;
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -8px;
      height: 1px;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .2s ease;
      background: var(--aurora-gold);
    }

    .nav a:hover { color: var(--aurora-gold-2); }
    .nav a:hover::after { transform: scaleX(1); }

    .btn {
      border: 0;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .04em;
      text-transform: uppercase;
      transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
      white-space: nowrap;
    }

    .btn:hover { transform: translateY(-1px); }

    .btn-primary {
      background: linear-gradient(135deg, var(--aurora-gold-2), var(--aurora-gold));
      color: #130d05;
      box-shadow: 0 16px 36px rgba(217,154,43,.2);
    }

    .btn-primary:hover { background: linear-gradient(135deg, #ffe09b, var(--aurora-gold-2)); }

    .btn-secondary {
      border: 1px solid rgba(243,234,216,.16);
      background: rgba(243,234,216,.045);
      color: var(--aurora-paper);
    }

    .btn-secondary:hover {
      border-color: rgba(217,154,43,.45);
      color: var(--aurora-gold-2);
      background: rgba(217,154,43,.08);
    }

    .hero {
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--aurora-line);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .2;
      background:
        linear-gradient(115deg, transparent 0%, rgba(217,154,43,.08) 42%, transparent 62%),
        repeating-linear-gradient(0deg, rgba(243,234,216,.05) 0 1px, transparent 1px 7px);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 44px;
      align-items: center;
      padding: 92px 0 78px;
    }

    .eyebrow-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 22px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border-radius: 999px;
      padding: 7px 11px;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
      border: 1px solid rgba(217,154,43,.34);
      background: rgba(217,154,43,.09);
      color: #ffe1a1;
    }

    .badge.green {
      border-color: rgba(30,183,122,.34);
      background: rgba(30,183,122,.1);
      color: #adffd7;
    }

    .badge.red {
      border-color: rgba(158,47,36,.5);
      background: rgba(158,47,36,.16);
      color: #ffc4bc;
    }

    .badge.paper {
      border-color: rgba(243,234,216,.22);
      background: rgba(243,234,216,.07);
      color: var(--aurora-paper);
    }

    h1, h2, h3 { text-wrap: balance; }

    .hero h1 {
      margin: 0;
      max-width: 880px;
      font-family: var(--serif);
      font-size: clamp(44px, 7.3vw, 92px);
      line-height: .92;
      letter-spacing: -.055em;
      font-weight: 900;
    }

    .hero h1 span {
      color: var(--aurora-gold-2);
      text-shadow: 0 0 34px rgba(217,154,43,.18);
    }

    .hero-copy {
      max-width: 700px;
      margin: 26px 0 0;
      font-size: 18px;
      line-height: 1.82;
      color: var(--aurora-paper-soft);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    .hero-signature {
      margin-top: 28px;
      display: grid;
      gap: 8px;
      color: var(--aurora-muted);
      font-size: 13px;
    }

    .hero-signature strong { color: var(--aurora-paper); }

    .featured-panel {
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      border: 1px solid rgba(217,154,43,.28);
      background:
        linear-gradient(180deg, rgba(32,25,16,.88), rgba(9,8,6,.96)),
        radial-gradient(circle at 22% 20%, rgba(217,154,43,.18), transparent 32%);
      box-shadow: var(--shadow);
      padding: 18px;
    }

    .featured-panel::before {
      content: "AURORA";
      position: absolute;
      right: -26px;
      top: 28px;
      color: rgba(243,234,216,.045);
      font-family: var(--serif);
      font-size: 88px;
      font-weight: 900;
      letter-spacing: -.06em;
      writing-mode: vertical-rl;
      transform: rotate(180deg);
    }

    .featured-inner {
      position: relative;
      z-index: 2;
      border-radius: 24px;
      border: 1px solid rgba(243,234,216,.12);
      background: rgba(5,4,3,.52);
      padding: 24px;
    }

    .classified-stamp {
      width: max-content;
      border: 1px solid rgba(158,47,36,.6);
      color: #ffc5be;
      border-radius: 8px;
      padding: 7px 10px;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      transform: rotate(-2deg);
      background: rgba(158,47,36,.12);
    }

    .featured-title {
      margin: 24px 0 12px;
      font-family: var(--serif);
      font-size: 36px;
      line-height: 1.05;
      letter-spacing: -.035em;
    }

    .featured-copy {
      margin: 0;
      color: var(--aurora-paper-soft);
      line-height: 1.8;
    }

    .signal-box {
      margin-top: 24px;
      border-radius: 20px;
      border: 1px solid rgba(217,154,43,.16);
      background: rgba(217,154,43,.06);
      padding: 17px;
      font-family: var(--mono);
      color: #e9d6ad;
      font-size: 13px;
      display: grid;
      gap: 10px;
    }

    .signal-line {
      height: 1px;
      overflow: hidden;
      background: rgba(217,154,43,.18);
      position: relative;
    }

    .signal-line::after {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 34%;
      background: linear-gradient(90deg, transparent, var(--aurora-gold-2), transparent);
      animation: signalMove 3.8s linear infinite;
    }

    @keyframes signalMove {
      from { transform: translateX(-120%); }
      to { transform: translateX(330%); }
    }

    section {
      padding: 58px 0;
      position: relative;
    }

    .search-module {
      margin-top: -30px;
      z-index: 6;
      padding-top: 0;
    }

    .search-card {
      border-radius: 30px;
      border: 1px solid rgba(217,154,43,.24);
      background: rgba(15,13,9,.88);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
      padding: 18px;
    }

    .search-row {
      display: flex;
      gap: 12px;
    }

    .input-wrap {
      flex: 1;
      min-width: 0;
      border-radius: 999px;
      border: 1px solid rgba(243,234,216,.13);
      background: rgba(5,4,3,.7);
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 18px;
      color: var(--aurora-gold-2);
    }

    .input-wrap input {
      width: 100%;
      min-height: 52px;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--aurora-paper);
    }

    .input-wrap input::placeholder { color: rgba(217,200,170,.62); }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .chip {
      border: 1px solid rgba(243,234,216,.13);
      background: rgba(243,234,216,.04);
      color: var(--aurora-paper-soft);
      border-radius: 999px;
      padding: 8px 11px;
      font-size: 12px;
      cursor: pointer;
      transition: .2s ease;
    }

    .chip:hover {
      border-color: rgba(217,154,43,.42);
      color: var(--aurora-gold-2);
      background: rgba(217,154,43,.08);
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 22px;
      margin-bottom: 28px;
    }

    .section-head h2 {
      margin: 14px 0 0;
      font-family: var(--serif);
      font-size: clamp(34px, 4vw, 52px);
      line-height: 1;
      letter-spacing: -.05em;
      font-weight: 900;
    }

    .section-head p {
      max-width: 680px;
      margin: 12px 0 0;
      color: var(--aurora-muted);
      line-height: 1.7;
    }

    .category-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .category-card,
    .article-card,
    .mini-panel {
      border-radius: 26px;
      border: 1px solid rgba(243,234,216,.1);
      background:
        radial-gradient(circle at 20% 0%, rgba(217,154,43,.16), transparent 38%),
        rgba(243,234,216,.04);
      transition: transform .2s ease, border-color .2s ease;
    }

    .category-card {
      min-height: 152px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 20px;
    }

    .category-card:hover,
    .article-card:hover,
    .mini-panel:hover {
      transform: translateY(-4px);
      border-color: rgba(217,154,43,.36);
    }

    .category-card strong {
      display: block;
      font-family: var(--serif);
      font-size: 24px;
      line-height: 1.05;
    }

    .category-card span {
      color: var(--aurora-muted);
      font-size: 13px;
    }

    .article-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
    }

    .article-stack {
      display: grid;
      gap: 18px;
    }

    .article-card {
      overflow: hidden;
      background: rgba(22,18,13,.86);
      box-shadow: var(--shadow);
    }

    .article-visual {
      position: relative;
      min-height: 210px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(5,4,3,.16), rgba(5,4,3,.92)),
        radial-gradient(circle at 34% 32%, rgba(217,154,43,.35), transparent 25%),
        radial-gradient(circle at 78% 15%, rgba(15,111,78,.26), transparent 25%),
        #19130c;
    }

    .article-card.featured .article-visual { min-height: 390px; }

    .article-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .23;
      background-image:
        linear-gradient(rgba(243,234,216,.13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(243,234,216,.13) 1px, transparent 1px);
      background-size: 34px 34px;
    }

    .article-visual::after {
      content: "";
      position: absolute;
      width: 160px;
      height: 160px;
      right: -45px;
      bottom: -54px;
      border-radius: 50%;
      border: 1px solid rgba(217,154,43,.28);
      box-shadow: inset 0 0 0 16px rgba(217,154,43,.035);
    }

    .article-icon {
      position: absolute;
      top: 18px;
      left: 18px;
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid rgba(217,154,43,.34);
      background: rgba(5,4,3,.62);
      backdrop-filter: blur(14px);
      color: var(--aurora-gold-2);
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 900;
    }

    .article-visual .badge {
      position: absolute;
      left: 18px;
      bottom: 18px;
    }

    .article-content { padding: 23px; }

    .article-meta {
      margin: 0;
      color: var(--aurora-muted);
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      font-weight: 900;
    }

    .article-content h3 {
      margin: 12px 0 0;
      font-family: var(--serif);
      font-size: 26px;
      line-height: 1.12;
      letter-spacing: -.025em;
    }

    .article-card.featured h3 {
      font-size: clamp(32px, 4vw, 48px);
    }

    .article-content p:not(.article-meta) {
      color: var(--aurora-paper-soft);
      line-height: 1.72;
    }

    .article-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-top: 20px;
      color: var(--aurora-gold-2);
      font-weight: 900;
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .three-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .mini-panel {
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .mini-panel h3 {
      margin: 0;
      font-family: var(--serif);
      font-size: 30px;
      line-height: 1.06;
      letter-spacing: -.04em;
    }

    .mini-panel p {
      color: var(--aurora-paper-soft);
      line-height: 1.75;
    }

    .home-cta {
      overflow: hidden;
      position: relative;
      border-radius: 34px;
      border: 1px solid rgba(30,183,122,.28);
      background:
        radial-gradient(circle at 82% 18%, rgba(30,183,122,.17), transparent 34%),
        radial-gradient(circle at 18% 88%, rgba(217,154,43,.14), transparent 30%),
        linear-gradient(135deg, rgba(22,18,13,.98), rgba(5,4,3,.98));
      box-shadow: var(--shadow);
      padding: 44px;
    }

    .home-cta::after {
      content: "";
      position: absolute;
      width: 290px;
      height: 290px;
      border: 1px solid rgba(217,154,43,.18);
      border-radius: 50%;
      right: -110px;
      top: -82px;
    }

    .home-cta-content {
      position: relative;
      z-index: 2;
      max-width: 820px;
    }

    .home-cta h2 {
      margin: 16px 0 0;
      font-family: var(--serif);
      font-size: clamp(36px, 5vw, 62px);
      line-height: .98;
      letter-spacing: -.052em;
    }

    .home-cta p {
      max-width: 700px;
      color: var(--aurora-paper-soft);
      line-height: 1.78;
    }

    .footer {
      border-top: 1px solid var(--aurora-line);
      padding: 38px 0;
      color: var(--aurora-muted);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .footer strong { color: var(--aurora-paper); }

    @media (max-width: 1040px) {
      .nav { display: none; }
      .hero-inner, .article-grid { grid-template-columns: 1fr; }
      .category-strip, .three-grid { grid-template-columns: repeat(2, 1fr); }
      .section-head { align-items: start; flex-direction: column; }
    }

    @media (max-width: 640px) {
      .container { width: min(100% - 28px, 1180px); }
      .top-alert-inner { align-items: start; flex-direction: column; justify-content: center; padding: 10px 0; }
      .brand { min-width: unset; }
      .brand-title { font-size: 17px; }
      .header .btn-secondary { display: none; }
      .hero-inner { padding: 62px 0; }
      .hero-copy { font-size: 16px; }
      .search-row { flex-direction: column; }
      .category-strip, .three-grid { grid-template-columns: 1fr; }
      .footer-inner { align-items: start; flex-direction: column; }
      .home-cta { padding: 28px; }
    }
  


/* ===== blog.html scoped ===== */


    body.page-template-page-blog{
      --aurora-black: #050403;
      --aurora-night: #0d0f12;
      --aurora-card: #16120d;
      --aurora-card-2: #201910;
      --aurora-paper: #f3ead8;
      --aurora-paper-soft: #d9c8aa;
      --aurora-muted: #a99675;
      --aurora-gold: #d99a2b;
      --aurora-gold-2: #f0c36a;
      --aurora-green: #0f6f4e;
      --aurora-green-2: #1eb77a;
      --aurora-red: #9e2f24;
      --aurora-line: rgba(243, 234, 216, .14);
      --shadow: 0 28px 90px rgba(0, 0, 0, .46);
      --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --serif: Georgia, "Times New Roman", serif;
      --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    }

    body.page-template-page-blog *{ box-sizing: border-box; }
    html{ scroll-behavior: smooth; }

    body.page-template-page-blog{
      margin: 0;
      background: var(--aurora-black);
      color: var(--aurora-paper);
      font-family: var(--font);
      line-height: 1.5;
      overflow-x: hidden;
    }

    body.page-template-page-blog a{ color: inherit; text-decoration: none; }
    body.page-template-page-blog button, body.page-template-page-blog input, body.page-template-page-blog select{ font: inherit; }

    body.page-template-page-blog .page{
      min-height: 100vh;
      position: relative;
      background:
        radial-gradient(circle at 12% 8%, rgba(217,154,43,.18), transparent 28%),
        radial-gradient(circle at 84% 2%, rgba(15,111,78,.18), transparent 26%),
        radial-gradient(circle at 58% 82%, rgba(158,47,36,.12), transparent 30%),
        linear-gradient(180deg, #070503 0%, #0d0f12 44%, #050403 100%);
    }

    body.page-template-page-blog .page::before{
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .22;
      background-image:
        linear-gradient(rgba(243,234,216,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(243,234,216,.055) 1px, transparent 1px);
      background-size: 58px 58px;
      mask-image: radial-gradient(circle at center, #000, transparent 72%);
    }

    body.page-template-page-blog .container{
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    body.page-template-page-blog .top-alert{
      border-bottom: 1px solid rgba(217,154,43,.24);
      background: rgba(217,154,43,.08);
      color: var(--aurora-paper-soft);
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    body.page-template-page-blog .top-alert-inner{
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    body.page-template-page-blog .top-alert strong{ color: var(--aurora-gold-2); }

    body.page-template-page-blog .header{
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--aurora-line);
      background: rgba(5,4,3,.86);
      backdrop-filter: blur(18px);
    }

    body.page-template-page-blog .header-inner{
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    body.page-template-page-blog .brand{
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 292px;
    }

    body.page-template-page-blog .brand-seal{
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 1px solid rgba(217,154,43,.58);
      background:
        radial-gradient(circle, rgba(240,195,106,.2), transparent 54%),
        conic-gradient(from 180deg, rgba(217,154,43,.7), rgba(15,111,78,.58), rgba(158,47,36,.5), rgba(217,154,43,.7));
      display: grid;
      place-items: center;
      box-shadow: 0 0 38px rgba(217,154,43,.16);
      flex: 0 0 auto;
    }

    body.page-template-page-blog .brand-seal::after{
      content: "A";
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #070503;
      color: var(--aurora-gold-2);
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 900;
    }

    body.page-template-page-blog .brand-kicker{
      margin: 0;
      color: var(--aurora-muted);
      font-size: 10px;
      letter-spacing: .24em;
      text-transform: uppercase;
      font-weight: 900;
    }

    body.page-template-page-blog .brand-title{
      margin: 2px 0 0;
      color: var(--aurora-paper);
      font-family: var(--serif);
      font-size: 20px;
      line-height: 1;
      letter-spacing: .02em;
      font-weight: 800;
    }

    body.page-template-page-blog .nav{
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      color: var(--aurora-paper-soft);
      font-size: 13px;
      font-weight: 800;
    }

    body.page-template-page-blog .nav a{
      position: relative;
      transition: color .2s ease;
      white-space: nowrap;
    }

    body.page-template-page-blog .nav a::after{
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -8px;
      height: 1px;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .2s ease;
      background: var(--aurora-gold);
    }

    body.page-template-page-blog .nav a:hover, body.page-template-page-blog .nav a.active{ color: var(--aurora-gold-2); }
    body.page-template-page-blog .nav a:hover::after, body.page-template-page-blog .nav a.active::after{ transform: scaleX(1); }

    body.page-template-page-blog .btn{
      border: 0;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .04em;
      text-transform: uppercase;
      transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
      white-space: nowrap;
    }

    body.page-template-page-blog .btn:hover{ transform: translateY(-1px); }

    body.page-template-page-blog .btn-primary{
      background: linear-gradient(135deg, var(--aurora-gold-2), var(--aurora-gold));
      color: #130d05;
      box-shadow: 0 16px 36px rgba(217,154,43,.2);
    }

    body.page-template-page-blog .btn-primary:hover{ background: linear-gradient(135deg, #ffe09b, var(--aurora-gold-2)); }

    body.page-template-page-blog .btn-secondary{
      border: 1px solid rgba(243,234,216,.16);
      background: rgba(243,234,216,.045);
      color: var(--aurora-paper);
    }

    body.page-template-page-blog .btn-secondary:hover{
      border-color: rgba(217,154,43,.45);
      color: var(--aurora-gold-2);
      background: rgba(217,154,43,.08);
    }

    body.page-template-page-blog .blog-hero{
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--aurora-line);
      padding: 74px 0 96px;
    }

    body.page-template-page-blog .blog-hero::before{
      content: "";
      position: absolute;
      inset: 0;
      opacity: .2;
      background:
        linear-gradient(115deg, transparent 0%, rgba(217,154,43,.08) 42%, transparent 62%),
        repeating-linear-gradient(0deg, rgba(243,234,216,.05) 0 1px, transparent 1px 7px);
      pointer-events: none;
    }

    body.page-template-page-blog .blog-hero-grid{
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 34px;
      align-items: end;
    }

    body.page-template-page-blog .eyebrow-row{
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 22px;
    }

    body.page-template-page-blog .badge{
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border-radius: 999px;
      padding: 7px 11px;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
      border: 1px solid rgba(217,154,43,.34);
      background: rgba(217,154,43,.09);
      color: #ffe1a1;
    }

    body.page-template-page-blog .badge.green{
      border-color: rgba(30,183,122,.34);
      background: rgba(30,183,122,.1);
      color: #adffd7;
    }

    body.page-template-page-blog .badge.red{
      border-color: rgba(158,47,36,.5);
      background: rgba(158,47,36,.16);
      color: #ffc4bc;
    }

    body.page-template-page-blog .badge.paper{
      border-color: rgba(243,234,216,.22);
      background: rgba(243,234,216,.07);
      color: var(--aurora-paper);
    }

    body.page-template-page-blog h1, body.page-template-page-blog h2, body.page-template-page-blog h3{ text-wrap: balance; }

    body.page-template-page-blog .blog-title{
      margin: 0;
      max-width: 860px;
      font-family: var(--serif);
      font-size: clamp(44px, 7vw, 88px);
      line-height: .92;
      letter-spacing: -.055em;
      font-weight: 900;
    }

    body.page-template-page-blog .blog-title span{
      color: var(--aurora-gold-2);
      text-shadow: 0 0 34px rgba(217,154,43,.18);
    }

    body.page-template-page-blog .blog-copy{
      max-width: 720px;
      margin: 26px 0 0;
      font-size: 18px;
      line-height: 1.82;
      color: var(--aurora-paper-soft);
    }

    body.page-template-page-blog .blog-stats{
      border-radius: 30px;
      border: 1px solid rgba(217,154,43,.24);
      background:
        radial-gradient(circle at 20% 0%, rgba(217,154,43,.16), transparent 38%),
        rgba(15,13,9,.72);
      box-shadow: var(--shadow);
      padding: 22px;
    }

    body.page-template-page-blog .blog-stats-title{
      margin: 0 0 16px;
      color: var(--aurora-gold-2);
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      font-weight: 950;
    }

    body.page-template-page-blog .stat-list{
      display: grid;
      gap: 12px;
    }

    body.page-template-page-blog .stat-item{
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(243,234,216,.1);
    }

    body.page-template-page-blog .stat-item:last-child{ border-bottom: 0; }
    body.page-template-page-blog .stat-item span{ color: var(--aurora-muted); font-size: 13px; }
    body.page-template-page-blog .stat-item strong{ color: var(--aurora-paper); }

    body.page-template-page-blog .search-module{
      margin-top: -34px;
      padding: 0 0 50px;
      position: relative;
      z-index: 6;
    }

    body.page-template-page-blog .search-card{
      border-radius: 30px;
      border: 1px solid rgba(217,154,43,.24);
      background: rgba(15,13,9,.9);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
      padding: 18px;
    }

    body.page-template-page-blog .search-row{
      display: grid;
      grid-template-columns: 1fr 190px 150px;
      gap: 12px;
    }

    body.page-template-page-blog .input-wrap, body.page-template-page-blog .select-wrap{
      min-width: 0;
      border-radius: 999px;
      border: 1px solid rgba(243,234,216,.13);
      background: rgba(5,4,3,.7);
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 18px;
      color: var(--aurora-gold-2);
    }

    body.page-template-page-blog .input-wrap input, body.page-template-page-blog .select-wrap select{
      width: 100%;
      min-height: 52px;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--aurora-paper);
    }

    body.page-template-page-blog .select-wrap select option{
      background: #100d09;
      color: var(--aurora-paper);
    }

    body.page-template-page-blog .input-wrap input::placeholder{ color: rgba(217,200,170,.62); }

    body.page-template-page-blog .chips{
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    body.page-template-page-blog .chip{
      border: 1px solid rgba(243,234,216,.13);
      background: rgba(243,234,216,.04);
      color: var(--aurora-paper-soft);
      border-radius: 999px;
      padding: 8px 11px;
      font-size: 12px;
      cursor: pointer;
      transition: .2s ease;
    }

    body.page-template-page-blog .chip:hover, body.page-template-page-blog .chip.active{
      border-color: rgba(217,154,43,.42);
      color: var(--aurora-gold-2);
      background: rgba(217,154,43,.08);
    }

    body.page-template-page-blog section{ padding: 58px 0; position: relative; }

    body.page-template-page-blog .section-head{
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 22px;
      margin-bottom: 28px;
    }

    body.page-template-page-blog .section-head h2{
      margin: 14px 0 0;
      font-family: var(--serif);
      font-size: clamp(34px, 4vw, 52px);
      line-height: 1;
      letter-spacing: -.05em;
      font-weight: 900;
    }

    body.page-template-page-blog .section-head p{
      max-width: 680px;
      margin: 12px 0 0;
      color: var(--aurora-muted);
      line-height: 1.7;
    }

    body.page-template-page-blog .featured-layout{
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
    }

    body.page-template-page-blog .article-stack{
      display: grid;
      gap: 18px;
    }

    body.page-template-page-blog .article-card, body.page-template-page-blog .panel, body.page-template-page-blog .category-card, body.page-template-page-blog .newsletter-card{
      border-radius: 30px;
      border: 1px solid rgba(243,234,216,.1);
      background: rgba(22,18,13,.86);
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: transform .22s ease, border-color .22s ease;
    }

    body.page-template-page-blog .article-card:hover, body.page-template-page-blog .category-card:hover{
      transform: translateY(-5px);
      border-color: rgba(217,154,43,.36);
    }

    body.page-template-page-blog .article-visual{
      position: relative;
      min-height: 210px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(5,4,3,.16), rgba(5,4,3,.92)),
        radial-gradient(circle at 34% 32%, rgba(217,154,43,.35), transparent 25%),
        radial-gradient(circle at 78% 15%, rgba(15,111,78,.26), transparent 25%),
        #19130c;
    }

    body.page-template-page-blog .article-card.featured .article-visual{ min-height: 390px; }

    body.page-template-page-blog .article-visual::before{
      content: "";
      position: absolute;
      inset: 0;
      opacity: .23;
      background-image:
        linear-gradient(rgba(243,234,216,.13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(243,234,216,.13) 1px, transparent 1px);
      background-size: 34px 34px;
    }

    body.page-template-page-blog .article-visual::after{
      content: "";
      position: absolute;
      width: 160px;
      height: 160px;
      right: -45px;
      bottom: -54px;
      border-radius: 50%;
      border: 1px solid rgba(217,154,43,.28);
      box-shadow: inset 0 0 0 16px rgba(217,154,43,.035);
    }

    body.page-template-page-blog .article-icon{
      position: absolute;
      top: 18px;
      left: 18px;
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid rgba(217,154,43,.34);
      background: rgba(5,4,3,.62);
      backdrop-filter: blur(14px);
      color: var(--aurora-gold-2);
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 900;
    }

    body.page-template-page-blog .article-visual .badge{
      position: absolute;
      left: 18px;
      bottom: 18px;
    }

    body.page-template-page-blog .article-content{ padding: 24px; }

    body.page-template-page-blog .article-meta{
      margin: 0;
      color: var(--aurora-muted);
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      font-weight: 900;
    }

    body.page-template-page-blog .article-content h3{
      margin: 12px 0 0;
      font-family: var(--serif);
      font-size: 26px;
      line-height: 1.12;
      letter-spacing: -.025em;
    }

    body.page-template-page-blog .article-card.featured h3{
      font-size: clamp(32px, 4vw, 50px);
    }

    body.page-template-page-blog .article-content p:not(.article-meta){
      color: var(--aurora-paper-soft);
      line-height: 1.72;
    }

    body.page-template-page-blog .article-link{
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-top: 20px;
      color: var(--aurora-gold-2);
      font-weight: 900;
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    body.page-template-page-blog .blog-grid-layout{
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 24px;
      align-items: start;
    }

    body.page-template-page-blog .post-grid{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    body.page-template-page-blog .sidebar{
      position: sticky;
      top: 112px;
      display: grid;
      gap: 16px;
    }

    body.page-template-page-blog .panel{
      padding: 24px;
      overflow: visible;
      background:
        radial-gradient(circle at 20% 0%, rgba(217,154,43,.13), transparent 38%),
        rgba(243,234,216,.04);
    }

    body.page-template-page-blog .panel.green{
      border-color: rgba(30,183,122,.3);
      background:
        radial-gradient(circle at 24% 14%, rgba(30,183,122,.17), transparent 34%),
        rgba(30,183,122,.045);
    }

    body.page-template-page-blog .component-title{
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      color: var(--aurora-gold-2);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    body.page-template-page-blog .panel h3{
      margin: 0;
      font-family: var(--serif);
      font-size: 30px;
      line-height: 1.06;
      letter-spacing: -.04em;
      font-weight: 900;
    }

    body.page-template-page-blog .panel p{
      color: var(--aurora-paper-soft);
      line-height: 1.75;
    }

    body.page-template-page-blog .side-list{
      display: grid;
      gap: 10px;
      margin-top: 18px;
    }

    body.page-template-page-blog .side-link{
      display: flex;
      justify-content: space-between;
      gap: 14px;
      padding: 13px 0;
      border-bottom: 1px solid rgba(243,234,216,.1);
      color: var(--aurora-paper-soft);
      font-size: 14px;
    }

    body.page-template-page-blog .side-link:hover{ color: var(--aurora-gold-2); }
    body.page-template-page-blog .side-link span{ color: var(--aurora-muted); }

    body.page-template-page-blog .category-grid{
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    body.page-template-page-blog .category-card{
      padding: 20px;
      min-height: 148px;
      background:
        radial-gradient(circle at 20% 0%, rgba(217,154,43,.16), transparent 38%),
        rgba(243,234,216,.04);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    body.page-template-page-blog .category-card span{
      color: var(--aurora-muted);
      font-size: 13px;
    }

    body.page-template-page-blog .category-card strong{
      display: block;
      font-family: var(--serif);
      font-size: 24px;
      line-height: 1.05;
    }

    body.page-template-page-blog .pagination{
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 32px;
    }

    body.page-template-page-blog .page-btn{
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(243,234,216,.14);
      background: rgba(243,234,216,.045);
      color: var(--aurora-paper-soft);
      cursor: pointer;
      font-weight: 900;
    }

    body.page-template-page-blog .page-btn.active, body.page-template-page-blog .page-btn:hover{
      background: rgba(217,154,43,.12);
      border-color: rgba(217,154,43,.42);
      color: var(--aurora-gold-2);
    }

    body.page-template-page-blog .newsletter-card{
      padding: 34px;
      background:
        radial-gradient(circle at 82% 18%, rgba(30,183,122,.17), transparent 34%),
        radial-gradient(circle at 18% 88%, rgba(217,154,43,.14), transparent 30%),
        linear-gradient(135deg, rgba(22,18,13,.98), rgba(5,4,3,.98));
    }

    body.page-template-page-blog .newsletter-card h2{
      margin: 14px 0 0;
      font-family: var(--serif);
      font-size: clamp(34px, 4vw, 56px);
      line-height: 1;
      letter-spacing: -.05em;
    }

    body.page-template-page-blog .newsletter-card p{
      color: var(--aurora-paper-soft);
      line-height: 1.75;
      max-width: 760px;
    }

    body.page-template-page-blog .newsletter-row{
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      margin-top: 22px;
      max-width: 720px;
    }

    body.page-template-page-blog .footer{
      border-top: 1px solid var(--aurora-line);
      padding: 38px 0;
      color: var(--aurora-muted);
    }

    body.page-template-page-blog .footer-inner{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    body.page-template-page-blog .footer strong{ color: var(--aurora-paper); }

    @media (max-width: 1040px){
      body.page-template-page-blog .nav{ display: none; }
      body.page-template-page-blog .blog-hero-grid, body.page-template-page-blog .featured-layout, body.page-template-page-blog .blog-grid-layout{
        grid-template-columns: 1fr;
      }
      body.page-template-page-blog .sidebar{ position: static; }
      body.page-template-page-blog .search-row{ grid-template-columns: 1fr; }
      body.page-template-page-blog .category-grid{ grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 760px){
      body.page-template-page-blog .container{ width: min(100% - 28px, 1180px); }
      body.page-template-page-blog .top-alert-inner{
        align-items: start;
        flex-direction: column;
        justify-content: center;
        padding: 10px 0;
      }
      body.page-template-page-blog .brand{ min-width: unset; }
      body.page-template-page-blog .brand-title{ font-size: 17px; }
      body.page-template-page-blog .header .btn-secondary{ display: none; }
      body.page-template-page-blog .blog-hero{ padding: 58px 0 82px; }
      body.page-template-page-blog .blog-copy{ font-size: 16px; }
      body.page-template-page-blog .post-grid, body.page-template-page-blog .category-grid, body.page-template-page-blog .newsletter-row{ grid-template-columns: 1fr; }
      body.page-template-page-blog .footer-inner{ align-items: start; flex-direction: column; }
    }
  


/* ===== biblioteca.html scoped ===== */


    body.page-template-page-biblioteca{
      --black: #050403;
      --night: #0d0f12;
      --card: #16120d;
      --paper: #f3ead8;
      --soft: #d9c8aa;
      --muted: #a99675;
      --gold: #d99a2b;
      --gold2: #f0c36a;
      --green: #1eb77a;
      --red: #9e2f24;
      --line: rgba(243,234,216,.14);
      --shadow: 0 28px 90px rgba(0,0,0,.46);
      --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --serif: Georgia, "Times New Roman", serif;
      --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    }

    body.page-template-page-biblioteca *{ box-sizing: border-box; }
    html{ scroll-behavior: smooth; }
    body.page-template-page-biblioteca{
      margin: 0;
      background: var(--black);
      color: var(--paper);
      font-family: var(--font);
      line-height: 1.5;
      overflow-x: hidden;
    }
    body.page-template-page-biblioteca a{ color: inherit; text-decoration: none; }
    body.page-template-page-biblioteca button, body.page-template-page-biblioteca input, body.page-template-page-biblioteca select{ font: inherit; }

    body.page-template-page-biblioteca .page{
      min-height: 100vh;
      position: relative;
      background:
        radial-gradient(circle at 12% 8%, rgba(217,154,43,.18), transparent 28%),
        radial-gradient(circle at 84% 2%, rgba(15,111,78,.18), transparent 26%),
        radial-gradient(circle at 58% 82%, rgba(158,47,36,.12), transparent 30%),
        linear-gradient(180deg, #070503 0%, #0d0f12 44%, #050403 100%);
    }

    body.page-template-page-biblioteca .page::before{
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .22;
      background-image:
        linear-gradient(rgba(243,234,216,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(243,234,216,.055) 1px, transparent 1px);
      background-size: 58px 58px;
      mask-image: radial-gradient(circle at center, #000, transparent 72%);
    }

    body.page-template-page-biblioteca .container{
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    body.page-template-page-biblioteca .top-alert{
      border-bottom: 1px solid rgba(217,154,43,.24);
      background: rgba(217,154,43,.08);
      color: var(--soft);
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    body.page-template-page-biblioteca .top-alert-inner{
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    body.page-template-page-biblioteca .top-alert strong{ color: var(--gold2); }

    body.page-template-page-biblioteca .header{
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--line);
      background: rgba(5,4,3,.86);
      backdrop-filter: blur(18px);
    }

    body.page-template-page-biblioteca .header-inner{
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    body.page-template-page-biblioteca .brand{
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 292px;
    }

    body.page-template-page-biblioteca .brand-seal{
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 1px solid rgba(217,154,43,.58);
      background:
        radial-gradient(circle, rgba(240,195,106,.2), transparent 54%),
        conic-gradient(from 180deg, rgba(217,154,43,.7), rgba(15,111,78,.58), rgba(158,47,36,.5), rgba(217,154,43,.7));
      display: grid;
      place-items: center;
      box-shadow: 0 0 38px rgba(217,154,43,.16);
      flex: 0 0 auto;
    }

    body.page-template-page-biblioteca .brand-seal::after{
      content: "A";
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #070503;
      color: var(--gold2);
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 900;
    }

    body.page-template-page-biblioteca .brand-kicker{
      margin: 0;
      color: var(--muted);
      font-size: 10px;
      letter-spacing: .24em;
      text-transform: uppercase;
      font-weight: 900;
    }

    body.page-template-page-biblioteca .brand-title{
      margin: 2px 0 0;
      color: var(--paper);
      font-family: var(--serif);
      font-size: 20px;
      line-height: 1;
      font-weight: 800;
    }

    body.page-template-page-biblioteca .nav{
      display: flex;
      align-items: center;
      gap: 22px;
      color: var(--soft);
      font-size: 13px;
      font-weight: 800;
    }

    body.page-template-page-biblioteca .nav a{
      position: relative;
      white-space: nowrap;
      transition: color .2s ease;
    }

    body.page-template-page-biblioteca .nav a::after{
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -8px;
      height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .2s ease;
    }

    body.page-template-page-biblioteca .nav a:hover, body.page-template-page-biblioteca .nav a.active{ color: var(--gold2); }
    body.page-template-page-biblioteca .nav a:hover::after, body.page-template-page-biblioteca .nav a.active::after{ transform: scaleX(1); }

    body.page-template-page-biblioteca .btn{
      border: 0;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .04em;
      text-transform: uppercase;
      white-space: nowrap;
      transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
    }

    body.page-template-page-biblioteca .btn:hover{ transform: translateY(-1px); }
    body.page-template-page-biblioteca .btn-primary{
      background: linear-gradient(135deg, var(--gold2), var(--gold));
      color: #130d05;
      box-shadow: 0 16px 36px rgba(217,154,43,.2);
    }
    body.page-template-page-biblioteca .btn-secondary{
      border: 1px solid rgba(243,234,216,.16);
      background: rgba(243,234,216,.045);
      color: var(--paper);
    }
    body.page-template-page-biblioteca .btn-secondary:hover{
      border-color: rgba(217,154,43,.45);
      color: var(--gold2);
      background: rgba(217,154,43,.08);
    }

    body.page-template-page-biblioteca .hero{
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
      padding: 76px 0 92px;
    }

    body.page-template-page-biblioteca .hero::before{
      content: "";
      position: absolute;
      inset: 0;
      opacity: .2;
      background:
        linear-gradient(115deg, transparent 0%, rgba(217,154,43,.08) 42%, transparent 62%),
        repeating-linear-gradient(0deg, rgba(243,234,216,.05) 0 1px, transparent 1px 7px);
      pointer-events: none;
    }

    body.page-template-page-biblioteca .hero-grid{
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 34px;
      align-items: end;
    }

    body.page-template-page-biblioteca .eyebrow-row{
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 22px;
    }

    body.page-template-page-biblioteca .badge{
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 7px 11px;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
      border: 1px solid rgba(217,154,43,.34);
      background: rgba(217,154,43,.09);
      color: #ffe1a1;
    }
    body.page-template-page-biblioteca .badge.green{ border-color: rgba(30,183,122,.34); background: rgba(30,183,122,.1); color: #adffd7; }
    body.page-template-page-biblioteca .badge.red{ border-color: rgba(158,47,36,.5); background: rgba(158,47,36,.16); color: #ffc4bc; }
    body.page-template-page-biblioteca .badge.paper{ border-color: rgba(243,234,216,.22); background: rgba(243,234,216,.07); color: var(--paper); }

    body.page-template-page-biblioteca h1, body.page-template-page-biblioteca h2, body.page-template-page-biblioteca h3{ text-wrap: balance; }

    body.page-template-page-biblioteca .hero-title{
      margin: 0;
      max-width: 900px;
      font-family: var(--serif);
      font-size: clamp(44px, 7vw, 88px);
      line-height: .92;
      letter-spacing: -.055em;
      font-weight: 900;
    }

    body.page-template-page-biblioteca .hero-title span{ color: var(--gold2); text-shadow: 0 0 34px rgba(217,154,43,.18); }

    body.page-template-page-biblioteca .hero-copy{
      max-width: 760px;
      margin: 26px 0 0;
      font-size: 18px;
      line-height: 1.82;
      color: var(--soft);
    }

    body.page-template-page-biblioteca .hero-actions{
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    body.page-template-page-biblioteca .archive-index{
      border-radius: 30px;
      border: 1px solid rgba(217,154,43,.24);
      background:
        radial-gradient(circle at 20% 0%, rgba(217,154,43,.16), transparent 38%),
        rgba(15,13,9,.72);
      box-shadow: var(--shadow);
      padding: 22px;
    }

    body.page-template-page-biblioteca .archive-index-title{
      margin: 0 0 16px;
      color: var(--gold2);
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      font-weight: 950;
    }

    body.page-template-page-biblioteca .index-list{ display: grid; gap: 12px; }

    body.page-template-page-biblioteca .index-item{
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(243,234,216,.1);
    }
    body.page-template-page-biblioteca .index-item:last-child{ border-bottom: 0; }
    body.page-template-page-biblioteca .index-item span{ color: var(--muted); font-size: 13px; }
    body.page-template-page-biblioteca .index-item strong{ color: var(--paper); }

    body.page-template-page-biblioteca .filter-section{
      margin-top: -34px;
      padding: 0 0 50px;
      z-index: 6;
    }

    body.page-template-page-biblioteca .filter-card{
      border-radius: 30px;
      border: 1px solid rgba(217,154,43,.24);
      background: rgba(15,13,9,.9);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
      padding: 18px;
    }

    body.page-template-page-biblioteca .filter-row{
      display: grid;
      grid-template-columns: 1fr 190px 150px;
      gap: 12px;
    }

    body.page-template-page-biblioteca .input-wrap, body.page-template-page-biblioteca .select-wrap{
      min-width: 0;
      border-radius: 999px;
      border: 1px solid rgba(243,234,216,.13);
      background: rgba(5,4,3,.7);
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 18px;
      color: var(--gold2);
    }

    body.page-template-page-biblioteca .input-wrap input, body.page-template-page-biblioteca .select-wrap select{
      width: 100%;
      min-height: 52px;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--paper);
    }

    body.page-template-page-biblioteca .select-wrap select option{ background: #100d09; color: var(--paper); }
    body.page-template-page-biblioteca .input-wrap input::placeholder{ color: rgba(217,200,170,.62); }

    body.page-template-page-biblioteca .chips{
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    body.page-template-page-biblioteca .chip{
      border: 1px solid rgba(243,234,216,.13);
      background: rgba(243,234,216,.04);
      color: var(--soft);
      border-radius: 999px;
      padding: 8px 11px;
      font-size: 12px;
      cursor: pointer;
      transition: .2s ease;
    }

    body.page-template-page-biblioteca .chip:hover, body.page-template-page-biblioteca .chip.active{
      border-color: rgba(217,154,43,.42);
      color: var(--gold2);
      background: rgba(217,154,43,.08);
    }

    body.page-template-page-biblioteca section{ padding: 58px 0; position: relative; }

    body.page-template-page-biblioteca .section-head{
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 22px;
      margin-bottom: 28px;
    }

    body.page-template-page-biblioteca .section-head h2{
      margin: 14px 0 0;
      font-family: var(--serif);
      font-size: clamp(34px, 4vw, 52px);
      line-height: 1;
      letter-spacing: -.05em;
      font-weight: 900;
    }

    body.page-template-page-biblioteca .section-head p{
      max-width: 680px;
      margin: 12px 0 0;
      color: var(--muted);
      line-height: 1.7;
    }

    body.page-template-page-biblioteca .shelf-grid{
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    body.page-template-page-biblioteca .shelf-card, body.page-template-page-biblioteca .file-card, body.page-template-page-biblioteca .panel, body.page-template-page-biblioteca .timeline-card, body.page-template-page-biblioteca .featured-file, body.page-template-page-biblioteca .cta-card{
      border-radius: 30px;
      border: 1px solid rgba(243,234,216,.1);
      background: rgba(22,18,13,.86);
      box-shadow: var(--shadow);
      transition: transform .22s ease, border-color .22s ease;
    }

    body.page-template-page-biblioteca .shelf-card:hover, body.page-template-page-biblioteca .file-card:hover, body.page-template-page-biblioteca .timeline-card:hover{
      transform: translateY(-5px);
      border-color: rgba(217,154,43,.36);
    }

    body.page-template-page-biblioteca .shelf-card{
      min-height: 210px;
      padding: 22px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background:
        radial-gradient(circle at 20% 0%, rgba(217,154,43,.16), transparent 38%),
        rgba(243,234,216,.04);
    }

    body.page-template-page-biblioteca .shelf-number{
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(217,154,43,.3);
      background: rgba(217,154,43,.1);
      color: var(--gold2);
      font-family: var(--serif);
      font-weight: 900;
    }

    body.page-template-page-biblioteca .shelf-card h3, body.page-template-page-biblioteca .panel h3, body.page-template-page-biblioteca .timeline-card h3, body.page-template-page-biblioteca .featured-file h3, body.page-template-page-biblioteca .cta-card h2{
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(28px, 3vw, 42px);
      line-height: 1.06;
      letter-spacing: -.04em;
      font-weight: 900;
    }

    body.page-template-page-biblioteca .shelf-card p, body.page-template-page-biblioteca .panel p, body.page-template-page-biblioteca .timeline-card p, body.page-template-page-biblioteca .featured-file p, body.page-template-page-biblioteca .cta-card p{
      color: var(--soft);
      line-height: 1.75;
    }

    body.page-template-page-biblioteca .main-layout{
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 24px;
      align-items: start;
    }

    body.page-template-page-biblioteca .file-grid{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    body.page-template-page-biblioteca .file-card{ overflow: hidden; }

    body.page-template-page-biblioteca .file-visual{
      position: relative;
      min-height: 190px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(5,4,3,.16), rgba(5,4,3,.92)),
        radial-gradient(circle at 34% 32%, rgba(217,154,43,.35), transparent 25%),
        radial-gradient(circle at 78% 15%, rgba(15,111,78,.26), transparent 25%),
        #19130c;
    }

    body.page-template-page-biblioteca .file-visual::before{
      content: "";
      position: absolute;
      inset: 0;
      opacity: .23;
      background-image:
        linear-gradient(rgba(243,234,216,.13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(243,234,216,.13) 1px, transparent 1px);
      background-size: 34px 34px;
    }

    body.page-template-page-biblioteca .file-visual::after{
      content: "ARQUIVO";
      position: absolute;
      right: 18px;
      top: 18px;
      color: rgba(243,234,216,.18);
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .18em;
    }

    body.page-template-page-biblioteca .file-icon{
      position: absolute;
      left: 18px;
      top: 18px;
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid rgba(217,154,43,.34);
      background: rgba(5,4,3,.62);
      color: var(--gold2);
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 900;
      z-index: 2;
    }

    body.page-template-page-biblioteca .file-visual .badge{ position: absolute; left: 18px; bottom: 18px; z-index: 2; }
    body.page-template-page-biblioteca .file-content{ padding: 22px; }

    body.page-template-page-biblioteca .file-meta{
      margin: 0;
      color: var(--muted);
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      font-weight: 900;
    }

    body.page-template-page-biblioteca .file-content h3{
      margin: 12px 0 0;
      font-family: var(--serif);
      font-size: 27px;
      line-height: 1.1;
      letter-spacing: -.03em;
    }

    body.page-template-page-biblioteca .file-content p{ color: var(--soft); line-height: 1.72; }

    body.page-template-page-biblioteca .article-link{
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-top: 20px;
      color: var(--gold2);
      font-weight: 900;
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    body.page-template-page-biblioteca .sidebar{
      position: sticky;
      top: 112px;
      display: grid;
      gap: 16px;
    }

    body.page-template-page-biblioteca .panel{
      padding: 24px;
      overflow: visible;
      background:
        radial-gradient(circle at 20% 0%, rgba(217,154,43,.13), transparent 38%),
        rgba(243,234,216,.04);
    }

    body.page-template-page-biblioteca .panel.green{
      border-color: rgba(30,183,122,.3);
      background:
        radial-gradient(circle at 24% 14%, rgba(30,183,122,.17), transparent 34%),
        rgba(30,183,122,.045);
    }

    body.page-template-page-biblioteca .component-title{
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      color: var(--gold2);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    body.page-template-page-biblioteca .side-list{ display: grid; gap: 10px; margin-top: 18px; }

    body.page-template-page-biblioteca .side-link{
      display: flex;
      justify-content: space-between;
      gap: 14px;
      padding: 13px 0;
      border-bottom: 1px solid rgba(243,234,216,.1);
      color: var(--soft);
      font-size: 14px;
    }

    body.page-template-page-biblioteca .side-link:hover{ color: var(--gold2); }
    body.page-template-page-biblioteca .side-link span{ color: var(--muted); }

    body.page-template-page-biblioteca .featured-file{
      padding: 30px;
      overflow: hidden;
      position: relative;
      background:
        radial-gradient(circle at 82% 18%, rgba(30,183,122,.15), transparent 34%),
        radial-gradient(circle at 18% 88%, rgba(217,154,43,.14), transparent 30%),
        rgba(22,18,13,.96);
    }

    body.page-template-page-biblioteca .featured-file::after{
      content: "AURORA";
      position: absolute;
      right: -20px;
      top: 20px;
      color: rgba(243,234,216,.045);
      font-family: var(--serif);
      font-size: 86px;
      font-weight: 900;
      writing-mode: vertical-rl;
      transform: rotate(180deg);
    }

    body.page-template-page-biblioteca .featured-inner{ position: relative; z-index: 2; }

    body.page-template-page-biblioteca .timeline-grid{
      display: grid;
      gap: 14px;
    }

    body.page-template-page-biblioteca .timeline-card{
      display: grid;
      grid-template-columns: 120px 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 20px;
      background: rgba(5,4,3,.44);
    }

    body.page-template-page-biblioteca .timeline-year{
      color: var(--gold2);
      font-family: var(--serif);
      font-size: 32px;
      line-height: 1;
      font-weight: 900;
    }

    body.page-template-page-biblioteca .timeline-text strong{ display: block; color: var(--paper); margin-bottom: 4px; }
    body.page-template-page-biblioteca .timeline-text span{ color: var(--muted); font-size: 14px; line-height: 1.6; }

    body.page-template-page-biblioteca .cta-card{
      overflow: hidden;
      position: relative;
      border-radius: 34px;
      border: 1px solid rgba(30,183,122,.28);
      background:
        radial-gradient(circle at 82% 18%, rgba(30,183,122,.17), transparent 34%),
        radial-gradient(circle at 18% 88%, rgba(217,154,43,.14), transparent 30%),
        linear-gradient(135deg, rgba(22,18,13,.98), rgba(5,4,3,.98));
      box-shadow: var(--shadow);
      padding: 44px;
    }

    body.page-template-page-biblioteca .cta-card::after{
      content: "";
      position: absolute;
      width: 290px;
      height: 290px;
      border: 1px solid rgba(217,154,43,.18);
      border-radius: 50%;
      right: -110px;
      top: -82px;
    }

    body.page-template-page-biblioteca .cta-content{ position: relative; z-index: 2; max-width: 820px; }
    body.page-template-page-biblioteca .cta-card h2{ font-size: clamp(36px, 5vw, 62px); margin: 16px 0 0; }
    body.page-template-page-biblioteca .cta-card p{ max-width: 700px; }

    body.page-template-page-biblioteca .footer{
      border-top: 1px solid var(--line);
      padding: 38px 0;
      color: var(--muted);
    }

    body.page-template-page-biblioteca .footer-inner{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    body.page-template-page-biblioteca .footer strong{ color: var(--paper); }

    @media (max-width: 1040px){
      body.page-template-page-biblioteca .nav{ display: none; }
      body.page-template-page-biblioteca .hero-grid, body.page-template-page-biblioteca .main-layout{ grid-template-columns: 1fr; }
      body.page-template-page-biblioteca .sidebar{ position: static; }
      body.page-template-page-biblioteca .filter-row{ grid-template-columns: 1fr; }
      body.page-template-page-biblioteca .shelf-grid{ grid-template-columns: repeat(2, 1fr); }
      body.page-template-page-biblioteca .timeline-card{ grid-template-columns: 1fr; }
    }

    @media (max-width: 760px){
      body.page-template-page-biblioteca .container{ width: min(100% - 28px, 1180px); }
      body.page-template-page-biblioteca .top-alert-inner{ align-items: start; flex-direction: column; justify-content: center; padding: 10px 0; }
      body.page-template-page-biblioteca .brand{ min-width: unset; }
      body.page-template-page-biblioteca .brand-title{ font-size: 17px; }
      body.page-template-page-biblioteca .header .btn-secondary{ display: none; }
      body.page-template-page-biblioteca .hero{ padding: 58px 0 82px; }
      body.page-template-page-biblioteca .hero-copy{ font-size: 16px; }
      body.page-template-page-biblioteca .shelf-grid, body.page-template-page-biblioteca .file-grid{ grid-template-columns: 1fr; }
      body.page-template-page-biblioteca .section-head{ align-items: start; flex-direction: column; }
      body.page-template-page-biblioteca .footer-inner{ align-items: start; flex-direction: column; }
      body.page-template-page-biblioteca .cta-card{ padding: 28px; }
    }
  


/* ===== apoio.html scoped ===== */


    body.page-template-page-apoio{
      --black:#050403;
      --night:#0d0f12;
      --card:#16120d;
      --paper:#f3ead8;
      --soft:#d9c8aa;
      --muted:#a99675;
      --gold:#d99a2b;
      --gold2:#f0c36a;
      --green:#1eb77a;
      --green-dark:#0f6f4e;
      --red:#9e2f24;
      --line:rgba(243,234,216,.14);
      --shadow:0 28px 90px rgba(0,0,0,.46);
      --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      --serif:Georgia,"Times New Roman",serif;
      --mono:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
    }

    body.page-template-page-apoio *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body.page-template-page-apoio{margin:0;background:var(--black);color:var(--paper);font-family:var(--font);line-height:1.5;overflow-x:hidden}
    body.page-template-page-apoio a{color:inherit;text-decoration:none}
    body.page-template-page-apoio button, body.page-template-page-apoio input{font:inherit}

    body.page-template-page-apoio .page{
      min-height:100vh;
      position:relative;
      background:
        radial-gradient(circle at 12% 8%,rgba(217,154,43,.18),transparent 28%),
        radial-gradient(circle at 84% 2%,rgba(15,111,78,.20),transparent 26%),
        radial-gradient(circle at 58% 82%,rgba(158,47,36,.12),transparent 30%),
        linear-gradient(180deg,#070503 0%,#0d0f12 44%,#050403 100%);
    }

    body.page-template-page-apoio .page::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.22;
      background-image:linear-gradient(rgba(243,234,216,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(243,234,216,.055) 1px,transparent 1px);
      background-size:58px 58px;
      mask-image:radial-gradient(circle at center,#000,transparent 72%);
    }

    body.page-template-page-apoio .container{width:min(1180px,calc(100% - 40px));margin:0 auto;position:relative;z-index:2}

    body.page-template-page-apoio .top-alert{border-bottom:1px solid rgba(217,154,43,.24);background:rgba(217,154,43,.08);color:var(--soft);font-size:12px;letter-spacing:.12em;text-transform:uppercase}
    body.page-template-page-apoio .top-alert-inner{min-height:38px;display:flex;align-items:center;justify-content:space-between;gap:16px}
    body.page-template-page-apoio .top-alert strong{color:var(--gold2)}

    body.page-template-page-apoio .header{position:sticky;top:0;z-index:50;border-bottom:1px solid var(--line);background:rgba(5,4,3,.86);backdrop-filter:blur(18px)}
    body.page-template-page-apoio .header-inner{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:24px}
    body.page-template-page-apoio .brand{display:flex;align-items:center;gap:14px;min-width:292px}
    body.page-template-page-apoio .brand-seal{width:50px;height:50px;border-radius:50%;border:1px solid rgba(217,154,43,.58);background:radial-gradient(circle,rgba(240,195,106,.2),transparent 54%),conic-gradient(from 180deg,rgba(217,154,43,.7),rgba(15,111,78,.58),rgba(158,47,36,.5),rgba(217,154,43,.7));display:grid;place-items:center;box-shadow:0 0 38px rgba(217,154,43,.16);flex:0 0 auto}
    body.page-template-page-apoio .brand-seal::after{content:"A";width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:#070503;color:var(--gold2);font-family:var(--serif);font-size:22px;font-weight:900}
    body.page-template-page-apoio .brand-kicker{margin:0;color:var(--muted);font-size:10px;letter-spacing:.24em;text-transform:uppercase;font-weight:900}
    body.page-template-page-apoio .brand-title{margin:2px 0 0;color:var(--paper);font-family:var(--serif);font-size:20px;line-height:1;font-weight:800}

    body.page-template-page-apoio .nav{display:flex;align-items:center;gap:22px;color:var(--soft);font-size:13px;font-weight:800}
    body.page-template-page-apoio .nav a{position:relative;white-space:nowrap;transition:color .2s ease}
    body.page-template-page-apoio .nav a::after{content:"";position:absolute;left:0;right:0;bottom:-8px;height:1px;background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform .2s ease}
    body.page-template-page-apoio .nav a:hover, body.page-template-page-apoio .nav a.active{color:var(--gold2)}
    body.page-template-page-apoio .nav a:hover::after, body.page-template-page-apoio .nav a.active::after{transform:scaleX(1)}

    body.page-template-page-apoio .btn{border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0 18px;border-radius:999px;font-size:13px;font-weight:900;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;transition:transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease}
    body.page-template-page-apoio .btn:hover{transform:translateY(-1px)}
    body.page-template-page-apoio .btn-primary{background:linear-gradient(135deg,var(--gold2),var(--gold));color:#130d05;box-shadow:0 16px 36px rgba(217,154,43,.2)}
    body.page-template-page-apoio .btn-green{background:linear-gradient(135deg,#36e29b,var(--green));color:#04120c;box-shadow:0 16px 36px rgba(30,183,122,.16)}
    body.page-template-page-apoio .btn-secondary{border:1px solid rgba(243,234,216,.16);background:rgba(243,234,216,.045);color:var(--paper)}
    body.page-template-page-apoio .btn-secondary:hover{border-color:rgba(217,154,43,.45);color:var(--gold2);background:rgba(217,154,43,.08)}

    body.page-template-page-apoio .hero{position:relative;overflow:hidden;border-bottom:1px solid var(--line);padding:76px 0 92px}
    body.page-template-page-apoio .hero::before{content:"";position:absolute;inset:0;opacity:.2;background:linear-gradient(115deg,transparent 0%,rgba(217,154,43,.08) 42%,transparent 62%),repeating-linear-gradient(0deg,rgba(243,234,216,.05) 0 1px,transparent 1px 7px);pointer-events:none}
    body.page-template-page-apoio .hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:34px;align-items:center}

    body.page-template-page-apoio .eyebrow-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:22px}
    body.page-template-page-apoio .badge{display:inline-flex;align-items:center;border-radius:999px;padding:7px 11px;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;border:1px solid rgba(217,154,43,.34);background:rgba(217,154,43,.09);color:#ffe1a1}
    body.page-template-page-apoio .badge.green{border-color:rgba(30,183,122,.34);background:rgba(30,183,122,.1);color:#adffd7}
    body.page-template-page-apoio .badge.red{border-color:rgba(158,47,36,.5);background:rgba(158,47,36,.16);color:#ffc4bc}
    body.page-template-page-apoio .badge.paper{border-color:rgba(243,234,216,.22);background:rgba(243,234,216,.07);color:var(--paper)}

    body.page-template-page-apoio h1, body.page-template-page-apoio h2, body.page-template-page-apoio h3{text-wrap:balance}
    body.page-template-page-apoio .hero-title{margin:0;max-width:900px;font-family:var(--serif);font-size:clamp(44px,7vw,88px);line-height:.92;letter-spacing:-.055em;font-weight:900}
    body.page-template-page-apoio .hero-title span{color:var(--gold2);text-shadow:0 0 34px rgba(217,154,43,.18)}
    body.page-template-page-apoio .hero-copy{max-width:760px;margin:26px 0 0;font-size:18px;line-height:1.82;color:var(--soft)}
    body.page-template-page-apoio .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:34px}

    body.page-template-page-apoio .operation-card, body.page-template-page-apoio .panel, body.page-template-page-apoio .tier-card, body.page-template-page-apoio .impact-card, body.page-template-page-apoio .faq-card, body.page-template-page-apoio .proof-card, body.page-template-page-apoio .cta-card{border-radius:30px;border:1px solid rgba(243,234,216,.1);background:rgba(22,18,13,.86);box-shadow:var(--shadow)}
    body.page-template-page-apoio .operation-card{position:relative;overflow:hidden;padding:28px;border-color:rgba(217,154,43,.26);background:radial-gradient(circle at 82% 18%,rgba(217,154,43,.16),transparent 34%),radial-gradient(circle at 18% 88%,rgba(30,183,122,.12),transparent 30%),rgba(22,18,13,.92)}
    body.page-template-page-apoio .operation-card::after{content:"FUNDO";position:absolute;right:-18px;top:18px;color:rgba(243,234,216,.045);font-family:var(--serif);font-size:86px;font-weight:900;writing-mode:vertical-rl;transform:rotate(180deg)}
    body.page-template-page-apoio .operation-inner{position:relative;z-index:2}
    body.page-template-page-apoio .operation-card h2{margin:18px 0 0;font-family:var(--serif);font-size:clamp(34px,4vw,54px);line-height:1;letter-spacing:-.05em}
    body.page-template-page-apoio .operation-card p{color:var(--soft);line-height:1.75;max-width:560px}

    body.page-template-page-apoio .money{font-family:var(--serif);font-size:clamp(28px,3.2vw,40px);line-height:1;color:var(--gold2);margin:14px 0 4px;white-space:nowrap}
    body.page-template-page-apoio .money-row{display:flex;align-items:baseline;gap:8px;flex-wrap:nowrap;margin:14px 0 4px;font-family:var(--serif);line-height:1;white-space:nowrap}
    body.page-template-page-apoio .money-current{font-size:clamp(30px,3.6vw,44px);color:var(--gold2);font-weight:900}
    body.page-template-page-apoio .money-divider{font-size:clamp(22px,2.4vw,30px);color:rgba(243,234,216,.36);font-weight:700}
    body.page-template-page-apoio .money-target{font-size:clamp(20px,2.2vw,28px);color:rgba(217,200,170,.58);font-weight:800}
    body.page-template-page-apoio .cost-details{margin-top:18px;border-radius:18px;border:1px solid rgba(243,234,216,.1);background:rgba(5,4,3,.36);overflow:hidden}
    body.page-template-page-apoio .cost-details summary{cursor:pointer;list-style:none;padding:14px 16px;color:var(--gold2);font-size:12px;font-weight:950;letter-spacing:.14em;text-transform:uppercase;display:flex;align-items:center;justify-content:space-between;gap:12px}
    body.page-template-page-apoio .cost-details summary::-webkit-details-marker{display:none}
    body.page-template-page-apoio .cost-details summary::after{content:"+";width:24px;height:24px;display:grid;place-items:center;border-radius:50%;border:1px solid rgba(217,154,43,.28);color:var(--gold2)}
    body.page-template-page-apoio .cost-details[open] summary::after{content:"–"}
    body.page-template-page-apoio .cost-list{display:grid;gap:0;border-top:1px solid rgba(243,234,216,.1)}
    body.page-template-page-apoio .cost-item{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 16px;border-bottom:1px solid rgba(243,234,216,.08);font-size:14px}
    body.page-template-page-apoio .cost-item:last-child{border-bottom:0}
    body.page-template-page-apoio .cost-item span{color:var(--muted)}
    body.page-template-page-apoio .cost-item strong{color:var(--paper);font-family:var(--mono);font-size:13px}
    body.page-template-page-apoio .progress-label{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-top:24px;color:var(--muted);font-size:13px}
    body.page-template-page-apoio .progress-label strong{color:var(--paper)}
    body.page-template-page-apoio .progress-wrap{margin-top:10px;border-radius:999px;height:16px;border:1px solid rgba(243,234,216,.12);overflow:hidden;background:rgba(5,4,3,.55)}
    body.page-template-page-apoio .progress-bar{width:42.5%;height:100%;background:linear-gradient(90deg,var(--red),var(--gold2))}

    body.page-template-page-apoio section{padding:58px 0;position:relative}
    body.page-template-page-apoio .section-head{display:flex;align-items:end;justify-content:space-between;gap:22px;margin-bottom:28px}
    body.page-template-page-apoio .section-head h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,4vw,52px);line-height:1;letter-spacing:-.05em;font-weight:900}
    body.page-template-page-apoio .section-head p{max-width:720px;margin:12px 0 0;color:var(--muted);line-height:1.7}

    body.page-template-page-apoio .two-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
    body.page-template-page-apoio .three-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
    body.page-template-page-apoio .support-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
    body.page-template-page-apoio .split-grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:18px;align-items:stretch}

    body.page-template-page-apoio .panel, body.page-template-page-apoio .proof-card, body.page-template-page-apoio .impact-card, body.page-template-page-apoio .faq-card{padding:28px}
    body.page-template-page-apoio .panel.green, body.page-template-page-apoio .impact-card.green{border-color:rgba(30,183,122,.3);background:radial-gradient(circle at 24% 14%,rgba(30,183,122,.17),transparent 34%),rgba(30,183,122,.045)}
    body.page-template-page-apoio .panel.red{border-color:rgba(158,47,36,.42);background:radial-gradient(circle at 24% 14%,rgba(158,47,36,.2),transparent 32%),rgba(158,47,36,.065)}

    body.page-template-page-apoio .component-title{display:flex;align-items:center;gap:10px;margin:0 0 18px;color:var(--gold2);font-size:12px;font-weight:950;letter-spacing:.18em;text-transform:uppercase}
    body.page-template-page-apoio .panel h3, body.page-template-page-apoio .tier-card h3, body.page-template-page-apoio .impact-card h3, body.page-template-page-apoio .proof-card h3, body.page-template-page-apoio .faq-card h3{margin:0;font-family:var(--serif);font-size:clamp(28px,3vw,42px);line-height:1.06;letter-spacing:-.04em;font-weight:900}
    body.page-template-page-apoio .panel p, body.page-template-page-apoio .tier-card p, body.page-template-page-apoio .impact-card p, body.page-template-page-apoio .proof-card p, body.page-template-page-apoio .faq-card p{color:var(--soft);line-height:1.75}

    body.page-template-page-apoio .tier-card{min-height:285px;padding:24px;display:flex;flex-direction:column;justify-content:space-between;transition:transform .2s ease,border-color .2s ease;background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.16),transparent 38%),rgba(243,234,216,.04)}
    body.page-template-page-apoio .tier-card:hover, body.page-template-page-apoio .impact-card:hover, body.page-template-page-apoio .proof-card:hover{transform:translateY(-5px);border-color:rgba(217,154,43,.36)}
    body.page-template-page-apoio .tier-card.featured{border-color:rgba(30,183,122,.34);background:radial-gradient(circle at 24% 12%,rgba(30,183,122,.17),transparent 36%),radial-gradient(circle at 80% 0%,rgba(217,154,43,.12),transparent 28%),rgba(22,18,13,.9)}
    body.page-template-page-apoio .price{font-family:var(--serif);color:var(--gold2);font-size:48px;line-height:1;margin:18px 0 10px}
    body.page-template-page-apoio .tier-note{display:block;margin-top:12px;color:var(--muted);font-size:13px;line-height:1.6}

    body.page-template-page-apoio .use-list, body.page-template-page-apoio .faq-list, body.page-template-page-apoio .proof-list{display:grid;gap:10px;margin-top:22px}
    body.page-template-page-apoio .use-item, body.page-template-page-apoio .faq-item, body.page-template-page-apoio .proof-item{border-radius:20px;border:1px solid rgba(243,234,216,.1);background:rgba(5,4,3,.44);padding:16px}
    body.page-template-page-apoio .use-item strong, body.page-template-page-apoio .faq-item strong, body.page-template-page-apoio .proof-item strong{display:block;margin-bottom:4px;color:var(--paper)}
    body.page-template-page-apoio .use-item span, body.page-template-page-apoio .faq-item span, body.page-template-page-apoio .proof-item span{color:var(--muted);font-size:14px;line-height:1.6}

    body.page-template-page-apoio .pix-box{border-radius:26px;border:1px dashed rgba(217,154,43,.42);background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.12),transparent 38%),rgba(5,4,3,.5);padding:24px;margin-top:22px}
    body.page-template-page-apoio .pix-full{padding:30px}
    body.page-template-page-apoio .pix-full .pix-box{margin-top:20px}
    body.page-template-page-apoio .secondary-missions{margin-top:18px}
    body.page-template-page-apoio .secondary-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:18px}
    body.page-template-page-apoio .secondary-card{border-radius:999px;border:1px solid rgba(217,154,43,.48);background:linear-gradient(135deg,rgba(240,195,106,.96),rgba(217,154,43,.92));color:#160f05;padding:15px 18px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:4px;text-align:center;min-height:82px;font-weight:950;letter-spacing:.02em;box-shadow:0 16px 34px rgba(217,154,43,.18);transition:transform .2s ease,filter .2s ease,box-shadow .2s ease}
    body.page-template-page-apoio .secondary-card:hover{transform:translateY(-3px);filter:brightness(1.08);box-shadow:0 20px 42px rgba(217,154,43,.26)}
    body.page-template-page-apoio .secondary-card strong{display:block;color:#160f05;font-size:15px;margin:0;line-height:1.15}
    body.page-template-page-apoio .secondary-card span{display:block;color:rgba(22,15,5,.72);font-size:11.5px;line-height:1.25;margin-top:0;text-transform:none;letter-spacing:0;font-weight:800;max-width:190px}
    body.page-template-page-apoio .pix-key{margin:14px 0 0;padding:16px;border-radius:18px;background:rgba(243,234,216,.06);border:1px solid rgba(243,234,216,.12);font-family:var(--mono);color:var(--gold2);word-break:break-word}

    body.page-template-page-apoio .impact-number{width:44px;height:44px;display:grid;place-items:center;border-radius:50%;border:1px solid rgba(217,154,43,.3);background:rgba(217,154,43,.1);color:var(--gold2);font-family:var(--serif);font-weight:900;margin-bottom:18px}
    body.page-template-page-apoio .quote{margin:0;border-left:2px solid rgba(217,154,43,.62);padding-left:18px;font-family:var(--serif);font-size:24px;line-height:1.55;color:var(--paper)}

    body.page-template-page-apoio .terminal-soft{border-radius:30px;border:1px solid rgba(243,234,216,.1);background:rgba(243,234,216,.045);box-shadow:var(--shadow);padding:30px}
    body.page-template-page-apoio .terminal-soft h3{margin:0;font-family:var(--serif);font-size:clamp(28px,3vw,42px);line-height:1.06;letter-spacing:-.04em}
    body.page-template-page-apoio .terminal-soft p{color:var(--soft);line-height:1.75}

    body.page-template-page-apoio .cta-card{overflow:hidden;position:relative;border-radius:34px;border:1px solid rgba(30,183,122,.28);background:radial-gradient(circle at 82% 18%,rgba(30,183,122,.17),transparent 34%),radial-gradient(circle at 18% 88%,rgba(217,154,43,.14),transparent 30%),linear-gradient(135deg,rgba(22,18,13,.98),rgba(5,4,3,.98));box-shadow:var(--shadow);padding:46px}
    body.page-template-page-apoio .cta-card::after{content:"";position:absolute;width:290px;height:290px;border:1px solid rgba(217,154,43,.18);border-radius:50%;right:-110px;top:-82px}
    body.page-template-page-apoio .cta-content{position:relative;z-index:2;max-width:820px}
    body.page-template-page-apoio .cta-card h2{margin:16px 0 0;font-family:var(--serif);font-size:clamp(36px,5vw,62px);line-height:.98;letter-spacing:-.052em}
    body.page-template-page-apoio .cta-card p{max-width:700px;color:var(--soft);line-height:1.78}

    body.page-template-page-apoio .footer{border-top:1px solid var(--line);padding:38px 0;color:var(--muted)}
    body.page-template-page-apoio .footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}
    body.page-template-page-apoio .footer strong{color:var(--paper)}

    @media(max-width:1040px){body.page-template-page-apoio .nav{display:none}body.page-template-page-apoio .hero-grid, body.page-template-page-apoio .split-grid{grid-template-columns:1fr}body.page-template-page-apoio .three-grid, body.page-template-page-apoio .support-grid{grid-template-columns:repeat(2,1fr)}body.page-template-page-apoio .secondary-grid{grid-template-columns:repeat(2,1fr)}body.page-template-page-apoio .section-head{align-items:start;flex-direction:column}}
    @media(max-width:760px){body.page-template-page-apoio .container{width:min(100% - 28px,1180px)}body.page-template-page-apoio .top-alert-inner{align-items:start;flex-direction:column;justify-content:center;padding:10px 0}body.page-template-page-apoio .brand{min-width:unset}body.page-template-page-apoio .brand-title{font-size:17px}body.page-template-page-apoio .header .btn-primary{display:none}body.page-template-page-apoio .hero{padding:58px 0 82px}body.page-template-page-apoio .hero-copy{font-size:16px}body.page-template-page-apoio .three-grid, body.page-template-page-apoio .two-grid, body.page-template-page-apoio .support-grid, body.page-template-page-apoio .secondary-grid{grid-template-columns:1fr}body.page-template-page-apoio .money-row{white-space:normal;flex-wrap:wrap}body.page-template-page-apoio .footer-inner{align-items:start;flex-direction:column}body.page-template-page-apoio .cta-card, body.page-template-page-apoio .panel, body.page-template-page-apoio .terminal-soft{padding:24px}}
  


/* ===== lp fantasma operação prato.html scoped ===== */


    body.page-template-page-livro-prato{
      --black:#020403;
      --deep:#06100d;
      --jungle:#0b1f17;
      --fog:#10271e;
      --paper:#f2ead8;
      --soft:#d9c8aa;
      --muted:#97896b;
      --gold:#f2a900;
      --gold2:#ffcc47;
      --red:#9e2f24;
      --red2:#d44937;
      --green:#1b7a54;
      --line:rgba(242,234,216,.13);
      --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      --serif:Georgia,"Times New Roman",serif;
      --mono:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
      --shadow:0 36px 110px rgba(0,0,0,.68);
    }

    body.page-template-page-livro-prato *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body.page-template-page-livro-prato{margin:0;background:var(--black);color:var(--paper);font-family:var(--font);line-height:1.5;overflow-x:hidden}
    body.page-template-page-livro-prato a{color:inherit;text-decoration:none}

    body.page-template-page-livro-prato .page{
      min-height:100vh;
      background:
        radial-gradient(circle at 20% 6%,rgba(255,204,71,.11),transparent 28%),
        radial-gradient(circle at 84% 8%,rgba(27,122,84,.17),transparent 28%),
        radial-gradient(circle at 50% 65%,rgba(11,45,33,.42),transparent 48%),
        linear-gradient(180deg,#020403 0%,#06100d 42%,#020403 100%);
      position:relative;
    }

    body.page-template-page-livro-prato .page::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.14;
      background-image:
        linear-gradient(rgba(242,234,216,.045) 1px,transparent 1px),
        linear-gradient(90deg,rgba(242,234,216,.045) 1px,transparent 1px);
      background-size:68px 68px;
      mask-image:radial-gradient(circle at center,#000,transparent 78%);
    }

    body.page-template-page-livro-prato .container{width:min(1120px,calc(100% - 40px));margin:0 auto;position:relative;z-index:2}

    body.page-template-page-livro-prato .topbar{
      position:relative;
      z-index:20;
      border-bottom:1px solid rgba(255,204,71,.14);
      background:rgba(2,4,3,.68);
      backdrop-filter:blur(14px);
    }
    body.page-template-page-livro-prato .topbar-inner{min-height:72px;display:flex;align-items:center;justify-content:space-between;gap:20px}
    body.page-template-page-livro-prato .brand{display:flex;align-items:center;gap:12px;min-width:0}
    body.page-template-page-livro-prato .seal{width:44px;height:44px;border-radius:50%;border:1px solid rgba(255,204,71,.55);display:grid;place-items:center;background:radial-gradient(circle,rgba(255,204,71,.18),transparent 54%),conic-gradient(from 180deg,rgba(242,169,0,.75),rgba(27,122,84,.58),rgba(158,47,36,.46),rgba(242,169,0,.75));box-shadow:0 0 34px rgba(255,204,71,.12);flex:0 0 auto}
    body.page-template-page-livro-prato .seal::after{content:"014";width:34px;height:34px;border-radius:50%;display:grid;place-items:center;background:#020403;color:var(--gold2);font-family:var(--mono);font-size:11px;font-weight:900}
    body.page-template-page-livro-prato .brand small{display:block;color:var(--muted);font-size:10px;letter-spacing:.20em;text-transform:uppercase;font-weight:900}
    body.page-template-page-livro-prato .brand strong{display:block;color:var(--paper);font-family:var(--serif);font-size:18px;line-height:1.05}
    body.page-template-page-livro-prato .nav{display:flex;align-items:center;gap:18px;color:var(--soft);font-size:13px;font-weight:800}
    body.page-template-page-livro-prato .nav a:hover{color:var(--gold2)}

    body.page-template-page-livro-prato .btn{border:0;display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:48px;padding:0 21px;border-radius:999px;font-size:13px;font-weight:950;letter-spacing:.045em;text-transform:uppercase;white-space:nowrap;transition:transform .2s ease,filter .2s ease,border-color .2s ease;cursor:pointer}
    body.page-template-page-livro-prato .btn:hover{transform:translateY(-1px);filter:brightness(1.06)}
    body.page-template-page-livro-prato .btn-primary{background:linear-gradient(135deg,var(--gold2),var(--gold));color:#120c03;box-shadow:0 16px 36px rgba(242,169,0,.22)}
    body.page-template-page-livro-prato .btn-secondary{border:1px solid rgba(242,234,216,.18);background:rgba(242,234,216,.045);color:var(--paper)}
    body.page-template-page-livro-prato .btn-red{background:linear-gradient(135deg,var(--red2),var(--red));color:#fff0e7;box-shadow:0 16px 36px rgba(158,47,36,.22)}

    body.page-template-page-livro-prato .badge{display:inline-flex;align-items:center;border-radius:999px;padding:7px 11px;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;border:1px solid rgba(255,204,71,.30);background:rgba(255,204,71,.08);color:#ffe6ad}
    body.page-template-page-livro-prato .badge.red{border-color:rgba(158,47,36,.50);background:rgba(158,47,36,.16);color:#ffc4bc}
    body.page-template-page-livro-prato .badge.green{border-color:rgba(27,122,84,.46);background:rgba(27,122,84,.16);color:#bfffe5}
    body.page-template-page-livro-prato .badge.paper{border-color:rgba(242,234,216,.22);background:rgba(242,234,216,.07);color:var(--paper)}
    body.page-template-page-livro-prato .eyebrow-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:20px}

    body.page-template-page-livro-prato h1, body.page-template-page-livro-prato h2, body.page-template-page-livro-prato h3{text-wrap:balance}

    body.page-template-page-livro-prato .hero{
      min-height:calc(100vh - 72px);
      display:grid;
      align-items:center;
      position:relative;
      overflow:hidden;
      border-bottom:1px solid var(--line);
      padding:66px 0 78px;
    }
    body.page-template-page-livro-prato .hero::before{
      content:"";
      position:absolute;
      inset:0;
      opacity:.46;
      background:
        radial-gradient(circle at 17% 24%,rgba(255,204,71,.16),transparent 26%),
        radial-gradient(circle at 55% 32%,rgba(140,215,212,.08),transparent 38%),
        linear-gradient(115deg,transparent 0%,rgba(255,204,71,.04) 42%,transparent 64%),
        repeating-linear-gradient(0deg,rgba(242,234,216,.03) 0 1px,transparent 1px 7px);
      pointer-events:none;
    }
    body.page-template-page-livro-prato .hero::after{
      content:"COLARES 1977";
      position:absolute;
      right:-24px;
      bottom:38px;
      color:rgba(242,234,216,.038);
      font-family:var(--serif);
      font-size:clamp(72px,13vw,168px);
      line-height:.8;
      font-weight:900;
      letter-spacing:-.07em;
      pointer-events:none;
    }
    body.page-template-page-livro-prato .hero-layout{display:grid;grid-template-columns:minmax(0,1fr) 390px;gap:58px;align-items:center}
    body.page-template-page-livro-prato .hero-title{margin:0;max-width:850px;font-family:var(--serif);font-size:clamp(42px,6.25vw,76px);line-height:.92;letter-spacing:-.055em;font-weight:900}
    body.page-template-page-livro-prato .hero-title span{display:block;color:var(--gold2);text-shadow:0 0 34px rgba(255,204,71,.20)}
    body.page-template-page-livro-prato .hero-copy{max-width:700px;margin:26px 0 0;font-size:18px;line-height:1.78;color:var(--soft)}
    body.page-template-page-livro-prato .price-line{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-top:28px}
    body.page-template-page-livro-prato .price-pill{border-radius:999px;border:1px solid rgba(255,204,71,.25);background:rgba(255,204,71,.08);padding:9px 14px;color:var(--gold2);font-family:var(--serif);font-size:25px;font-weight:900;line-height:1}
    body.page-template-page-livro-prato .unlimited-pill{border-radius:999px;border:1px solid rgba(158,47,36,.48);background:rgba(158,47,36,.18);padding:9px 14px;color:#ffc4bc;font-size:12px;font-weight:950;letter-spacing:.08em;text-transform:uppercase}
    body.page-template-page-livro-prato .price-note{color:var(--muted);font-size:14px;max-width:630px;line-height:1.7;margin-top:10px}
    body.page-template-page-livro-prato .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:32px}

    body.page-template-page-livro-prato .cover-wrap{position:relative;perspective:1200px}
    body.page-template-page-livro-prato .cover-wrap::before{content:"";position:absolute;inset:6% -14% -8% 14%;background:radial-gradient(circle,rgba(255,204,71,.18),transparent 58%);filter:blur(16px)}
    body.page-template-page-livro-prato .cover-img{position:relative;width:100%;display:block;border-radius:6px;box-shadow:0 36px 110px rgba(0,0,0,.72);transform:rotateY(-7deg) rotateX(2deg);border:1px solid rgba(255,204,71,.22);background:#07100d}
    body.page-template-page-livro-prato .cover-fallback{position:relative;min-height:560px;border-radius:6px;border:1px solid rgba(255,204,71,.28);background:linear-gradient(180deg,rgba(5,4,3,.04),rgba(5,4,3,.94)),radial-gradient(circle at 50% 18%,rgba(255,204,71,.32),transparent 28%),radial-gradient(circle at 68% 82%,rgba(158,47,36,.30),transparent 28%),#09100d;display:flex;flex-direction:column;justify-content:space-between;padding:28px;overflow:hidden;box-shadow:0 36px 110px rgba(0,0,0,.72);transform:rotateY(-7deg) rotateX(2deg)}
    body.page-template-page-livro-prato .cover-fallback::before{content:"";position:absolute;inset:0;opacity:.22;background-image:linear-gradient(rgba(242,234,216,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(242,234,216,.12) 1px,transparent 1px);background-size:34px 34px}
    body.page-template-page-livro-prato .cover-fallback *{position:relative;z-index:2}
    body.page-template-page-livro-prato .cover-title{font-family:var(--serif);font-size:clamp(38px,4vw,56px);line-height:.9;letter-spacing:-.06em;color:var(--paper)}
    body.page-template-page-livro-prato .cover-kicker, body.page-template-page-livro-prato .cover-author{font-family:var(--mono);font-size:12px;letter-spacing:.18em;text-transform:uppercase;color:var(--gold2)}

    body.page-template-page-livro-prato section{padding:84px 0;position:relative}
    body.page-template-page-livro-prato .section-center{max-width:860px;margin:0 auto;text-align:center}
    body.page-template-page-livro-prato .section-left{max-width:790px}
    body.page-template-page-livro-prato .section-center h2, body.page-template-page-livro-prato .section-left h2{margin:16px 0 0;font-family:var(--serif);font-size:clamp(34px,5.2vw,64px);line-height:1;letter-spacing:-.052em}
    body.page-template-page-livro-prato .section-center p, body.page-template-page-livro-prato .section-left p{color:var(--soft);font-size:18px;line-height:1.84}

    body.page-template-page-livro-prato .amazon{border-top:1px solid rgba(255,204,71,.18);border-bottom:1px solid rgba(255,204,71,.18);background:linear-gradient(135deg,rgba(255,204,71,.09),rgba(20,62,48,.14),rgba(5,4,3,.46));padding:58px 0}
    body.page-template-page-livro-prato .amazon-layout{display:flex;align-items:center;justify-content:space-between;gap:28px}
    body.page-template-page-livro-prato .amazon-copy h2{margin:10px 0 0;font-family:var(--serif);font-size:clamp(32px,4.4vw,56px);line-height:1;letter-spacing:-.046em}
    body.page-template-page-livro-prato .amazon-copy p{max-width:720px;color:var(--soft);line-height:1.78}
    body.page-template-page-livro-prato .offers{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
    body.page-template-page-livro-prato .offer{border-radius:999px;border:1px solid rgba(242,234,216,.12);background:rgba(5,4,3,.36);padding:10px 14px;color:var(--soft);font-size:13px}body.page-template-page-livro-prato .offer strong{color:var(--gold2);font-family:var(--serif);font-size:20px;margin-right:6px}body.page-template-page-livro-prato .offer.red{border-color:rgba(158,47,36,.42);background:rgba(158,47,36,.16);color:#ffc4bc}body.page-template-page-livro-prato .offer.red strong{color:#ffc4bc}

    body.page-template-page-livro-prato .full-quote{padding:88px 0;background:radial-gradient(circle at 50% 0%,rgba(158,47,36,.15),transparent 42%)}
    body.page-template-page-livro-prato .full-quote blockquote{max-width:960px;margin:0 auto;text-align:center;font-family:var(--serif);font-size:clamp(30px,5vw,62px);line-height:1.1;letter-spacing:-.045em;color:var(--paper)}
    body.page-template-page-livro-prato .full-quote cite{display:block;margin-top:22px;color:var(--muted);font-family:var(--font);font-size:12px;font-style:normal;letter-spacing:.18em;text-transform:uppercase;font-weight:900}

    body.page-template-page-livro-prato .sinopse{padding-top:92px}
    body.page-template-page-livro-prato .sinopse-text{max-width:820px;margin:0 auto}
    body.page-template-page-livro-prato .sinopse-text h2{margin:0;font-family:var(--serif);font-size:clamp(36px,5vw,64px);line-height:1;letter-spacing:-.052em;color:var(--gold2)}
    body.page-template-page-livro-prato .sinopse-text p{font-size:19px;line-height:1.9;color:var(--soft)}
    body.page-template-page-livro-prato .sinopse-text p:first-of-type{font-family:var(--serif);font-size:clamp(24px,2.7vw,34px);line-height:1.48;color:var(--paper)}

    body.page-template-page-livro-prato .red-break{margin:18px 0;padding:76px 0;background:linear-gradient(135deg,rgba(158,47,36,.22),rgba(5,4,3,.72));border-top:1px solid rgba(158,47,36,.28);border-bottom:1px solid rgba(158,47,36,.28)}
    body.page-template-page-livro-prato .red-break h2{max-width:900px;margin:0 auto;text-align:center;font-family:var(--serif);font-size:clamp(34px,5vw,66px);line-height:1;letter-spacing:-.052em}body.page-template-page-livro-prato .red-break span{color:var(--gold2)}

    body.page-template-page-livro-prato .who{display:grid;grid-template-columns:1fr;gap:18px;max-width:940px;margin:0 auto}
    body.page-template-page-livro-prato .who-row{display:grid;grid-template-columns:180px 1fr;gap:28px;align-items:start;padding:26px 0;border-bottom:1px solid rgba(242,234,216,.12)}
    body.page-template-page-livro-prato .who-row:last-child{border-bottom:0}body.page-template-page-livro-prato .who-tag{color:var(--gold2);font-size:12px;letter-spacing:.18em;text-transform:uppercase;font-weight:950}body.page-template-page-livro-prato .who-row h3{margin:0;font-family:var(--serif);font-size:clamp(26px,3.4vw,42px);line-height:1.05;letter-spacing:-.04em}body.page-template-page-livro-prato .who-row p{color:var(--soft);line-height:1.8;margin:12px 0 0}

    body.page-template-page-livro-prato .sample{border-top:1px solid rgba(255,204,71,.16);border-bottom:1px solid rgba(255,204,71,.16);background:rgba(242,234,216,.035)}
    body.page-template-page-livro-prato .sample-layout{display:flex;align-items:center;justify-content:space-between;gap:30px}body.page-template-page-livro-prato .sample h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,5vw,64px);line-height:1;letter-spacing:-.05em}body.page-template-page-livro-prato .sample p{max-width:680px;color:var(--soft);font-size:18px;line-height:1.8}

    body.page-template-page-livro-prato .physical{border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:rgba(242,234,216,.032)}
    body.page-template-page-livro-prato .physical-layout{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}body.page-template-page-livro-prato .physical h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,5vw,64px);line-height:1;letter-spacing:-.052em}body.page-template-page-livro-prato .physical p{color:var(--soft);font-size:18px;line-height:1.8}body.page-template-page-livro-prato .mock-pages{min-height:400px;position:relative}body.page-template-page-livro-prato .page-mock{position:absolute;inset:40px 42px 20px 40px;border-radius:18px;border:1px solid rgba(255,204,71,.20);background:linear-gradient(180deg,rgba(242,234,216,.10),rgba(5,4,3,.70));box-shadow:0 28px 70px rgba(0,0,0,.38);transform:rotate(-3deg)}body.page-template-page-livro-prato .page-mock.two{inset:20px 20px 40px 82px;transform:rotate(4deg);background:linear-gradient(180deg,rgba(158,47,36,.12),rgba(5,4,3,.72))}body.page-template-page-livro-prato .page-mock::before{content:"";position:absolute;left:28px;right:28px;top:38px;height:1px;background:rgba(242,234,216,.24);box-shadow:0 34px 0 rgba(242,234,216,.14),0 68px 0 rgba(242,234,216,.14),0 102px 0 rgba(242,234,216,.14),0 136px 0 rgba(242,234,216,.14)}

    body.page-template-page-livro-prato .author{max-width:900px;margin:0 auto}body.page-template-page-livro-prato .author h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(36px,5vw,64px);line-height:1;letter-spacing:-.052em}body.page-template-page-livro-prato .author p{color:var(--soft);font-size:18px;line-height:1.86}body.page-template-page-livro-prato .author p strong{color:var(--paper)}

    body.page-template-page-livro-prato .aurora-note{border-top:1px solid rgba(27,122,84,.20);border-bottom:1px solid rgba(27,122,84,.20);background:linear-gradient(135deg,rgba(15,65,48,.28),rgba(5,4,3,.72));padding:76px 0}body.page-template-page-livro-prato .aurora-note h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,5vw,64px);line-height:1;letter-spacing:-.05em}body.page-template-page-livro-prato .aurora-note p{max-width:820px;color:var(--soft);font-size:18px;line-height:1.82}body.page-template-page-livro-prato .aurora-list{display:grid;gap:12px;margin-top:26px;max-width:620px}body.page-template-page-livro-prato .aurora-list span{display:block;border-left:2px solid rgba(255,204,71,.45);padding-left:14px;color:var(--paper)}

    body.page-template-page-livro-prato .faq{max-width:900px;margin:0 auto}body.page-template-page-livro-prato .faq-item{padding:24px 0;border-bottom:1px solid rgba(242,234,216,.12)}body.page-template-page-livro-prato .faq-item:last-child{border-bottom:0}body.page-template-page-livro-prato .faq-item strong{display:block;font-family:var(--serif);font-size:28px;line-height:1.12;color:var(--paper);margin-bottom:8px}body.page-template-page-livro-prato .faq-item span{color:var(--soft);line-height:1.78}

    body.page-template-page-livro-prato .cta{padding:96px 0;background:radial-gradient(circle at 50% 0%,rgba(255,204,71,.12),transparent 42%)}
    body.page-template-page-livro-prato .cta-card{position:relative;overflow:hidden;border-radius:30px;border:1px solid rgba(158,47,36,.40);background:radial-gradient(circle at 82% 18%,rgba(158,47,36,.24),transparent 34%),radial-gradient(circle at 18% 88%,rgba(255,204,71,.14),transparent 30%),linear-gradient(135deg,rgba(7,16,13,.98),rgba(3,5,4,.98));box-shadow:var(--shadow);padding:48px}body.page-template-page-livro-prato .cta-card::after{content:"014";position:absolute;right:-30px;top:-10px;color:rgba(242,234,216,.045);font-family:var(--serif);font-size:170px;font-weight:900}body.page-template-page-livro-prato .cta-content{position:relative;z-index:2;max-width:860px}body.page-template-page-livro-prato .cta-card h2{margin:16px 0 0;font-family:var(--serif);font-size:clamp(36px,5.2vw,68px);line-height:.94;letter-spacing:-.055em}body.page-template-page-livro-prato .cta-card p{max-width:760px;color:var(--soft);font-size:18px;line-height:1.78}

    body.page-template-page-livro-prato .footer{border-top:1px solid var(--line);padding:38px 0;color:var(--muted)}body.page-template-page-livro-prato .footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}body.page-template-page-livro-prato .footer strong{color:var(--paper)}

    @media(max-width:1040px){body.page-template-page-livro-prato .nav{display:none}body.page-template-page-livro-prato .hero-layout, body.page-template-page-livro-prato .physical-layout{grid-template-columns:1fr}body.page-template-page-livro-prato .cover-wrap{max-width:420px;margin:0 auto}body.page-template-page-livro-prato .cover-img, body.page-template-page-livro-prato .cover-fallback{transform:none}body.page-template-page-livro-prato .amazon-layout, body.page-template-page-livro-prato .sample-layout{align-items:flex-start;flex-direction:column}}
    @media(max-width:760px){body.page-template-page-livro-prato .container{width:min(100% - 28px,1120px)}body.page-template-page-livro-prato .topbar .btn{display:none}body.page-template-page-livro-prato .brand strong{font-size:16px}body.page-template-page-livro-prato .hero{min-height:auto;padding:54px 0 70px}body.page-template-page-livro-prato .hero-copy{font-size:16px}body.page-template-page-livro-prato .who-row{grid-template-columns:1fr;gap:10px}body.page-template-page-livro-prato .section-center{text-align:left}body.page-template-page-livro-prato .full-quote blockquote{text-align:left}body.page-template-page-livro-prato .physical{padding:64px 0}body.page-template-page-livro-prato .mock-pages{min-height:300px}body.page-template-page-livro-prato .cta-card{padding:28px}body.page-template-page-livro-prato .footer-inner{align-items:flex-start;flex-direction:column}}
  


/* ===== manifesto_sobre.html scoped ===== */


    body.page-template-page-sobre{
      --black:#050403;
      --night:#0d0f12;
      --card:#16120d;
      --paper:#f3ead8;
      --soft:#d9c8aa;
      --muted:#a99675;
      --gold:#d99a2b;
      --gold2:#f0c36a;
      --green:#1eb77a;
      --red:#9e2f24;
      --line:rgba(243,234,216,.14);
      --shadow:0 28px 90px rgba(0,0,0,.46);
      --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      --serif:Georgia,"Times New Roman",serif;
      --mono:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
    }

    body.page-template-page-sobre *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body.page-template-page-sobre{margin:0;background:var(--black);color:var(--paper);font-family:var(--font);line-height:1.5;overflow-x:hidden}
    body.page-template-page-sobre a{color:inherit;text-decoration:none}
    body.page-template-page-sobre button, body.page-template-page-sobre input{font:inherit}

    body.page-template-page-sobre .page{
      min-height:100vh;
      position:relative;
      background:
        radial-gradient(circle at 12% 8%,rgba(217,154,43,.18),transparent 28%),
        radial-gradient(circle at 84% 2%,rgba(15,111,78,.20),transparent 26%),
        radial-gradient(circle at 58% 82%,rgba(158,47,36,.12),transparent 30%),
        linear-gradient(180deg,#070503 0%,#0d0f12 44%,#050403 100%);
    }

    body.page-template-page-sobre .page::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.22;
      background-image:linear-gradient(rgba(243,234,216,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(243,234,216,.055) 1px,transparent 1px);
      background-size:58px 58px;
      mask-image:radial-gradient(circle at center,#000,transparent 72%);
    }

    body.page-template-page-sobre .container{width:min(1180px,calc(100% - 40px));margin:0 auto;position:relative;z-index:2}

    body.page-template-page-sobre .top-alert{border-bottom:1px solid rgba(217,154,43,.24);background:rgba(217,154,43,.08);color:var(--soft);font-size:12px;letter-spacing:.12em;text-transform:uppercase}
    body.page-template-page-sobre .top-alert-inner{min-height:38px;display:flex;align-items:center;justify-content:space-between;gap:16px}
    body.page-template-page-sobre .top-alert strong{color:var(--gold2)}

    body.page-template-page-sobre .header{position:sticky;top:0;z-index:50;border-bottom:1px solid var(--line);background:rgba(5,4,3,.86);backdrop-filter:blur(18px)}
    body.page-template-page-sobre .header-inner{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:24px}
    body.page-template-page-sobre .brand{display:flex;align-items:center;gap:14px;min-width:292px}
    body.page-template-page-sobre .brand-seal{width:50px;height:50px;border-radius:50%;border:1px solid rgba(217,154,43,.58);background:radial-gradient(circle,rgba(240,195,106,.2),transparent 54%),conic-gradient(from 180deg,rgba(217,154,43,.7),rgba(15,111,78,.58),rgba(158,47,36,.5),rgba(217,154,43,.7));display:grid;place-items:center;box-shadow:0 0 38px rgba(217,154,43,.16);flex:0 0 auto}
    body.page-template-page-sobre .brand-seal::after{content:"A";width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:#070503;color:var(--gold2);font-family:var(--serif);font-size:22px;font-weight:900}
    body.page-template-page-sobre .brand-kicker{margin:0;color:var(--muted);font-size:10px;letter-spacing:.24em;text-transform:uppercase;font-weight:900}
    body.page-template-page-sobre .brand-title{margin:2px 0 0;color:var(--paper);font-family:var(--serif);font-size:20px;line-height:1;font-weight:800}

    body.page-template-page-sobre .nav{display:flex;align-items:center;gap:22px;color:var(--soft);font-size:13px;font-weight:800}
    body.page-template-page-sobre .nav a{position:relative;white-space:nowrap;transition:color .2s ease}
    body.page-template-page-sobre .nav a::after{content:"";position:absolute;left:0;right:0;bottom:-8px;height:1px;background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform .2s ease}
    body.page-template-page-sobre .nav a:hover, body.page-template-page-sobre .nav a.active{color:var(--gold2)}
    body.page-template-page-sobre .nav a:hover::after, body.page-template-page-sobre .nav a.active::after{transform:scaleX(1)}

    body.page-template-page-sobre .btn{border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0 18px;border-radius:999px;font-size:13px;font-weight:900;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;transition:transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease}
    body.page-template-page-sobre .btn:hover{transform:translateY(-1px)}
    body.page-template-page-sobre .btn-primary{background:linear-gradient(135deg,var(--gold2),var(--gold));color:#130d05;box-shadow:0 16px 36px rgba(217,154,43,.2)}
    body.page-template-page-sobre .btn-green{background:linear-gradient(135deg,#36e29b,var(--green));color:#04120c;box-shadow:0 16px 36px rgba(30,183,122,.16)}
    body.page-template-page-sobre .btn-secondary{border:1px solid rgba(243,234,216,.16);background:rgba(243,234,216,.045);color:var(--paper)}
    body.page-template-page-sobre .btn-secondary:hover{border-color:rgba(217,154,43,.45);color:var(--gold2);background:rgba(217,154,43,.08)}

    body.page-template-page-sobre .hero{position:relative;overflow:hidden;border-bottom:1px solid var(--line);padding:76px 0 92px}
    body.page-template-page-sobre .hero::before{content:"";position:absolute;inset:0;opacity:.2;background:linear-gradient(115deg,transparent 0%,rgba(217,154,43,.08) 42%,transparent 62%),repeating-linear-gradient(0deg,rgba(243,234,216,.05) 0 1px,transparent 1px 7px);pointer-events:none}
    body.page-template-page-sobre .hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:34px;align-items:center}

    body.page-template-page-sobre .eyebrow-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:22px}
    body.page-template-page-sobre .badge{display:inline-flex;align-items:center;border-radius:999px;padding:7px 11px;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;border:1px solid rgba(217,154,43,.34);background:rgba(217,154,43,.09);color:#ffe1a1}
    body.page-template-page-sobre .badge.green{border-color:rgba(30,183,122,.34);background:rgba(30,183,122,.1);color:#adffd7}
    body.page-template-page-sobre .badge.red{border-color:rgba(158,47,36,.5);background:rgba(158,47,36,.16);color:#ffc4bc}
    body.page-template-page-sobre .badge.paper{border-color:rgba(243,234,216,.22);background:rgba(243,234,216,.07);color:var(--paper)}

    body.page-template-page-sobre h1, body.page-template-page-sobre h2, body.page-template-page-sobre h3{text-wrap:balance}
    body.page-template-page-sobre .hero-title{margin:0;max-width:900px;font-family:var(--serif);font-size:clamp(44px,7vw,88px);line-height:.92;letter-spacing:-.055em;font-weight:900}
    body.page-template-page-sobre .hero-title span{color:var(--gold2);text-shadow:0 0 34px rgba(217,154,43,.18)}
    body.page-template-page-sobre .hero-copy{max-width:760px;margin:26px 0 0;font-size:18px;line-height:1.82;color:var(--soft)}
    body.page-template-page-sobre .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:34px}

    body.page-template-page-sobre .manifesto-card, body.page-template-page-sobre .panel, body.page-template-page-sobre .principle-card, body.page-template-page-sobre .timeline-card, body.page-template-page-sobre .author-card, body.page-template-page-sobre .cta-card{border-radius:30px;border:1px solid rgba(243,234,216,.1);background:rgba(22,18,13,.86);box-shadow:var(--shadow)}

    body.page-template-page-sobre .manifesto-card{position:relative;overflow:hidden;padding:28px;border-color:rgba(217,154,43,.26);background:radial-gradient(circle at 82% 18%,rgba(217,154,43,.16),transparent 34%),radial-gradient(circle at 18% 88%,rgba(30,183,122,.12),transparent 30%),rgba(22,18,13,.92)}
    body.page-template-page-sobre .manifesto-card::after{content:"AURORA";position:absolute;right:-18px;top:18px;color:rgba(243,234,216,.045);font-family:var(--serif);font-size:86px;font-weight:900;writing-mode:vertical-rl;transform:rotate(180deg)}
    body.page-template-page-sobre .manifesto-inner{position:relative;z-index:2}
    body.page-template-page-sobre .manifesto-card h2{margin:18px 0 0;font-family:var(--serif);font-size:clamp(34px,4vw,54px);line-height:1;letter-spacing:-.05em}
    body.page-template-page-sobre .manifesto-card p{color:var(--soft);line-height:1.75;max-width:560px}

    body.page-template-page-sobre .signal-box{margin-top:24px;border-radius:20px;border:1px solid rgba(217,154,43,.16);background:rgba(217,154,43,.06);padding:17px;font-family:var(--mono);color:#e9d6ad;font-size:13px;display:grid;gap:10px}
    body.page-template-page-sobre .signal-line{height:1px;overflow:hidden;background:rgba(217,154,43,.18);position:relative}
    body.page-template-page-sobre .signal-line::after{content:"";position:absolute;inset:0 auto 0 0;width:34%;background:linear-gradient(90deg,transparent,var(--gold2),transparent);animation:signalMove 3.8s linear infinite}
    @keyframes signalMove{from{transform:translateX(-120%)}to{transform:translateX(330%)}}

    body.page-template-page-sobre section{padding:58px 0;position:relative}
    body.page-template-page-sobre .section-head{display:flex;align-items:end;justify-content:space-between;gap:22px;margin-bottom:28px}
    body.page-template-page-sobre .section-head h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,4vw,52px);line-height:1;letter-spacing:-.05em;font-weight:900}
    body.page-template-page-sobre .section-head p{max-width:720px;margin:12px 0 0;color:var(--muted);line-height:1.7}

    body.page-template-page-sobre .split-grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:18px;align-items:stretch}
    body.page-template-page-sobre .two-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
    body.page-template-page-sobre .three-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
    body.page-template-page-sobre .four-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}

    body.page-template-page-sobre .panel, body.page-template-page-sobre .principle-card, body.page-template-page-sobre .timeline-card, body.page-template-page-sobre .author-card{padding:28px}
    body.page-template-page-sobre .panel.green, body.page-template-page-sobre .principle-card.green{border-color:rgba(30,183,122,.3);background:radial-gradient(circle at 24% 14%,rgba(30,183,122,.17),transparent 34%),rgba(30,183,122,.045)}
    body.page-template-page-sobre .panel.red{border-color:rgba(158,47,36,.42);background:radial-gradient(circle at 24% 14%,rgba(158,47,36,.2),transparent 32%),rgba(158,47,36,.065)}
    body.page-template-page-sobre .panel.dark{background:radial-gradient(circle at 20% 10%,rgba(217,154,43,.13),transparent 34%),rgba(5,4,3,.48)}

    body.page-template-page-sobre .component-title{display:flex;align-items:center;gap:10px;margin:0 0 18px;color:var(--gold2);font-size:12px;font-weight:950;letter-spacing:.18em;text-transform:uppercase}
    body.page-template-page-sobre .panel h3, body.page-template-page-sobre .principle-card h3, body.page-template-page-sobre .timeline-card h3, body.page-template-page-sobre .author-card h3{margin:0;font-family:var(--serif);font-size:clamp(28px,3vw,42px);line-height:1.06;letter-spacing:-.04em;font-weight:900}
    body.page-template-page-sobre .panel p, body.page-template-page-sobre .principle-card p, body.page-template-page-sobre .timeline-card p, body.page-template-page-sobre .author-card p{color:var(--soft);line-height:1.75}

    body.page-template-page-sobre .quote{margin:0;border-left:2px solid rgba(217,154,43,.62);padding-left:18px;font-family:var(--serif);font-size:clamp(24px,3vw,34px);line-height:1.55;color:var(--paper)}

    body.page-template-page-sobre .principle-card{min-height:260px;display:flex;flex-direction:column;justify-content:space-between;background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.16),transparent 38%),rgba(243,234,216,.04);transition:transform .2s ease,border-color .2s ease}
    body.page-template-page-sobre .principle-card:hover, body.page-template-page-sobre .timeline-card:hover{transform:translateY(-5px);border-color:rgba(217,154,43,.36)}
    body.page-template-page-sobre .principle-number{width:44px;height:44px;display:grid;place-items:center;border-radius:50%;border:1px solid rgba(217,154,43,.3);background:rgba(217,154,43,.1);color:var(--gold2);font-family:var(--serif);font-weight:900;margin-bottom:18px}

    body.page-template-page-sobre .timeline-list{display:grid;gap:14px}
    body.page-template-page-sobre .timeline-card{display:grid;grid-template-columns:120px 1fr auto;gap:18px;align-items:center;background:rgba(5,4,3,.44)}
    body.page-template-page-sobre .timeline-year{color:var(--gold2);font-family:var(--serif);font-size:32px;line-height:1;font-weight:900}
    body.page-template-page-sobre .timeline-text strong{display:block;color:var(--paper);margin-bottom:4px}
    body.page-template-page-sobre .timeline-text span{color:var(--muted);font-size:14px;line-height:1.6}

    body.page-template-page-sobre .author-card{display:flex;gap:20px;align-items:flex-start;background:radial-gradient(circle at 20% 10%,rgba(217,154,43,.13),transparent 34%),rgba(5,4,3,.48)}
    body.page-template-page-sobre .avatar{width:76px;height:76px;border-radius:50%;border:1px solid rgba(217,154,43,.4);background:radial-gradient(circle,rgba(217,154,43,.22),transparent 56%),rgba(243,234,216,.06);display:grid;place-items:center;font-family:var(--serif);font-size:24px;font-weight:950;color:var(--gold2);box-shadow:0 0 30px rgba(217,154,43,.14);flex:0 0 auto}

    body.page-template-page-sobre .method-list, body.page-template-page-sobre .channel-list{display:grid;gap:10px;margin-top:22px}
    body.page-template-page-sobre .method-item, body.page-template-page-sobre .channel-item{border-radius:20px;border:1px solid rgba(243,234,216,.1);background:rgba(5,4,3,.44);padding:16px}
    body.page-template-page-sobre .method-item strong, body.page-template-page-sobre .channel-item strong{display:block;margin-bottom:4px;color:var(--paper)}
    body.page-template-page-sobre .method-item span, body.page-template-page-sobre .channel-item span{color:var(--muted);font-size:14px;line-height:1.6}

    body.page-template-page-sobre .youtube-feature{position:relative;overflow:hidden;border-radius:34px;border:1px solid rgba(217,154,43,.26);background:radial-gradient(circle at 78% 18%,rgba(158,47,36,.22),transparent 34%),radial-gradient(circle at 18% 88%,rgba(217,154,43,.14),transparent 30%),linear-gradient(135deg,rgba(22,18,13,.98),rgba(5,4,3,.98));box-shadow:var(--shadow);padding:34px}
    body.page-template-page-sobre .youtube-feature::after{content:"YOUTUBE";position:absolute;right:-18px;top:18px;color:rgba(243,234,216,.045);font-family:var(--serif);font-size:80px;font-weight:900;writing-mode:vertical-rl;transform:rotate(180deg)}
    body.page-template-page-sobre .youtube-inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr .9fr;gap:28px;align-items:center}
    body.page-template-page-sobre .youtube-feature h2{margin:16px 0 0;font-family:var(--serif);font-size:clamp(36px,5vw,62px);line-height:.98;letter-spacing:-.052em}
    body.page-template-page-sobre .youtube-feature p{max-width:700px;color:var(--soft);line-height:1.78}
    body.page-template-page-sobre .youtube-frame{min-height:300px;border-radius:26px;border:1px solid rgba(243,234,216,.13);background:linear-gradient(135deg,rgba(5,4,3,.22),rgba(5,4,3,.92)),radial-gradient(circle at 45% 35%,rgba(217,154,43,.22),transparent 28%),#130d09;position:relative;display:grid;place-items:center;overflow:hidden}
    body.page-template-page-sobre .youtube-frame::before{content:"";position:absolute;inset:0;opacity:.22;background-image:linear-gradient(rgba(243,234,216,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(243,234,216,.12) 1px,transparent 1px);background-size:34px 34px}
    body.page-template-page-sobre .play-mark{position:relative;z-index:2;width:86px;height:86px;border-radius:50%;display:grid;place-items:center;background:rgba(158,47,36,.72);border:1px solid rgba(243,234,216,.2);box-shadow:0 0 40px rgba(158,47,36,.3)}
    body.page-template-page-sobre .play-mark::after{content:"";width:0;height:0;border-top:16px solid transparent;border-bottom:16px solid transparent;border-left:25px solid var(--paper);margin-left:6px}
    body.page-template-page-sobre .youtube-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:24px}
    body.page-template-page-sobre .youtube-stat{border-radius:18px;border:1px solid rgba(243,234,216,.1);background:rgba(5,4,3,.38);padding:14px}
    body.page-template-page-sobre .youtube-stat strong{display:block;color:var(--gold2);font-family:var(--serif);font-size:24px;line-height:1}
    body.page-template-page-sobre .youtube-stat span{display:block;color:var(--muted);font-size:12px;margin-top:6px;line-height:1.4}

    body.page-template-page-sobre .cta-card{overflow:hidden;position:relative;border-radius:34px;border:1px solid rgba(30,183,122,.28);background:radial-gradient(circle at 82% 18%,rgba(30,183,122,.17),transparent 34%),radial-gradient(circle at 18% 88%,rgba(217,154,43,.14),transparent 30%),linear-gradient(135deg,rgba(22,18,13,.98),rgba(5,4,3,.98));box-shadow:var(--shadow);padding:46px}
    body.page-template-page-sobre .cta-card::after{content:"";position:absolute;width:290px;height:290px;border:1px solid rgba(217,154,43,.18);border-radius:50%;right:-110px;top:-82px}
    body.page-template-page-sobre .cta-content{position:relative;z-index:2;max-width:820px}
    body.page-template-page-sobre .cta-card h2{margin:16px 0 0;font-family:var(--serif);font-size:clamp(36px,5vw,62px);line-height:.98;letter-spacing:-.052em}
    body.page-template-page-sobre .cta-card p{max-width:700px;color:var(--soft);line-height:1.78}

    body.page-template-page-sobre .footer{border-top:1px solid var(--line);padding:38px 0;color:var(--muted)}
    body.page-template-page-sobre .footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}
    body.page-template-page-sobre .footer strong{color:var(--paper)}

    @media(max-width:1040px){body.page-template-page-sobre .nav{display:none}body.page-template-page-sobre .hero-grid, body.page-template-page-sobre .split-grid, body.page-template-page-sobre .youtube-inner{grid-template-columns:1fr}body.page-template-page-sobre .three-grid, body.page-template-page-sobre .four-grid{grid-template-columns:repeat(2,1fr)}body.page-template-page-sobre .timeline-card{grid-template-columns:1fr}body.page-template-page-sobre .section-head{align-items:start;flex-direction:column}}
    @media(max-width:760px){body.page-template-page-sobre .container{width:min(100% - 28px,1180px)}body.page-template-page-sobre .top-alert-inner{align-items:start;flex-direction:column;justify-content:center;padding:10px 0}body.page-template-page-sobre .brand{min-width:unset}body.page-template-page-sobre .brand-title{font-size:17px}body.page-template-page-sobre .header .btn-secondary{display:none}body.page-template-page-sobre .hero{padding:58px 0 82px}body.page-template-page-sobre .hero-copy{font-size:16px}body.page-template-page-sobre .three-grid, body.page-template-page-sobre .two-grid, body.page-template-page-sobre .four-grid, body.page-template-page-sobre .youtube-stats{grid-template-columns:1fr}body.page-template-page-sobre .author-card{flex-direction:column}body.page-template-page-sobre .footer-inner{align-items:start;flex-direction:column}body.page-template-page-sobre .cta-card, body.page-template-page-sobre .panel, body.page-template-page-sobre .youtube-feature{padding:24px}body.page-template-page-sobre .youtube-frame{min-height:220px}}
  


/* ===== aurora_termos_privacidade_disclaimer.html scoped ===== */


    body.page-template-page-termos-privacidade-disclaimer{
      --black:#050403;
      --night:#0d0f12;
      --card:#16120d;
      --paper:#f3ead8;
      --soft:#d9c8aa;
      --muted:#a99675;
      --gold:#d99a2b;
      --gold2:#f0c36a;
      --green:#1eb77a;
      --red:#9e2f24;
      --line:rgba(243,234,216,.14);
      --shadow:0 28px 90px rgba(0,0,0,.46);
      --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      --serif:Georgia,"Times New Roman",serif;
      --mono:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
    }

    body.page-template-page-termos-privacidade-disclaimer *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body.page-template-page-termos-privacidade-disclaimer{margin:0;background:var(--black);color:var(--paper);font-family:var(--font);line-height:1.5;overflow-x:hidden}
    body.page-template-page-termos-privacidade-disclaimer a{color:inherit;text-decoration:none}

    body.page-template-page-termos-privacidade-disclaimer .page{
      min-height:100vh;
      position:relative;
      background:
        radial-gradient(circle at 12% 8%,rgba(217,154,43,.18),transparent 28%),
        radial-gradient(circle at 84% 2%,rgba(15,111,78,.18),transparent 26%),
        radial-gradient(circle at 58% 82%,rgba(158,47,36,.12),transparent 30%),
        linear-gradient(180deg,#070503 0%,#0d0f12 44%,#050403 100%);
    }

    body.page-template-page-termos-privacidade-disclaimer .page::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.22;
      background-image:
        linear-gradient(rgba(243,234,216,.055) 1px,transparent 1px),
        linear-gradient(90deg,rgba(243,234,216,.055) 1px,transparent 1px);
      background-size:58px 58px;
      mask-image:radial-gradient(circle at center,#000,transparent 72%);
    }

    body.page-template-page-termos-privacidade-disclaimer .container{width:min(1180px,calc(100% - 40px));margin:0 auto;position:relative;z-index:2}

    body.page-template-page-termos-privacidade-disclaimer .top-alert{border-bottom:1px solid rgba(217,154,43,.24);background:rgba(217,154,43,.08);color:var(--soft);font-size:12px;letter-spacing:.12em;text-transform:uppercase}
    body.page-template-page-termos-privacidade-disclaimer .top-alert-inner{min-height:38px;display:flex;align-items:center;justify-content:space-between;gap:16px}
    body.page-template-page-termos-privacidade-disclaimer .top-alert strong{color:var(--gold2)}

    body.page-template-page-termos-privacidade-disclaimer .header{position:sticky;top:0;z-index:50;border-bottom:1px solid var(--line);background:rgba(5,4,3,.86);backdrop-filter:blur(18px)}
    body.page-template-page-termos-privacidade-disclaimer .header-inner{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:24px}
    body.page-template-page-termos-privacidade-disclaimer .brand{display:flex;align-items:center;gap:14px;min-width:292px}
    body.page-template-page-termos-privacidade-disclaimer .brand-seal{width:50px;height:50px;border-radius:50%;border:1px solid rgba(217,154,43,.58);background:radial-gradient(circle,rgba(240,195,106,.2),transparent 54%),conic-gradient(from 180deg,rgba(217,154,43,.7),rgba(15,111,78,.58),rgba(158,47,36,.5),rgba(217,154,43,.7));display:grid;place-items:center;box-shadow:0 0 38px rgba(217,154,43,.16);flex:0 0 auto}
    body.page-template-page-termos-privacidade-disclaimer .brand-seal::after{content:"A";width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:#070503;color:var(--gold2);font-family:var(--serif);font-size:22px;font-weight:900}
    body.page-template-page-termos-privacidade-disclaimer .brand-kicker{margin:0;color:var(--muted);font-size:10px;letter-spacing:.24em;text-transform:uppercase;font-weight:900}
    body.page-template-page-termos-privacidade-disclaimer .brand-title{margin:2px 0 0;color:var(--paper);font-family:var(--serif);font-size:20px;line-height:1;font-weight:800}

    body.page-template-page-termos-privacidade-disclaimer .nav{display:flex;align-items:center;gap:22px;color:var(--soft);font-size:13px;font-weight:800}
    body.page-template-page-termos-privacidade-disclaimer .nav a{position:relative;white-space:nowrap;transition:color .2s ease}
    body.page-template-page-termos-privacidade-disclaimer .nav a::after{content:"";position:absolute;left:0;right:0;bottom:-8px;height:1px;background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform .2s ease}
    body.page-template-page-termos-privacidade-disclaimer .nav a:hover, body.page-template-page-termos-privacidade-disclaimer .nav a.active{color:var(--gold2)}
    body.page-template-page-termos-privacidade-disclaimer .nav a:hover::after, body.page-template-page-termos-privacidade-disclaimer .nav a.active::after{transform:scaleX(1)}

    body.page-template-page-termos-privacidade-disclaimer .btn{border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0 18px;border-radius:999px;font-size:13px;font-weight:900;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;transition:transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease}
    body.page-template-page-termos-privacidade-disclaimer .btn:hover{transform:translateY(-1px)}
    body.page-template-page-termos-privacidade-disclaimer .btn-primary{background:linear-gradient(135deg,var(--gold2),var(--gold));color:#130d05;box-shadow:0 16px 36px rgba(217,154,43,.2)}
    body.page-template-page-termos-privacidade-disclaimer .btn-secondary{border:1px solid rgba(243,234,216,.16);background:rgba(243,234,216,.045);color:var(--paper)}
    body.page-template-page-termos-privacidade-disclaimer .btn-secondary:hover{border-color:rgba(217,154,43,.45);color:var(--gold2);background:rgba(217,154,43,.08)}

    body.page-template-page-termos-privacidade-disclaimer .hero{position:relative;overflow:hidden;border-bottom:1px solid var(--line);padding:76px 0 86px}
    body.page-template-page-termos-privacidade-disclaimer .hero::before{content:"";position:absolute;inset:0;opacity:.2;background:linear-gradient(115deg,transparent 0%,rgba(217,154,43,.08) 42%,transparent 62%),repeating-linear-gradient(0deg,rgba(243,234,216,.05) 0 1px,transparent 1px 7px);pointer-events:none}
    body.page-template-page-termos-privacidade-disclaimer .hero-grid{display:grid;grid-template-columns:1fr 360px;gap:34px;align-items:end}

    body.page-template-page-termos-privacidade-disclaimer .eyebrow-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:22px}
    body.page-template-page-termos-privacidade-disclaimer .badge{display:inline-flex;align-items:center;border-radius:999px;padding:7px 11px;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;border:1px solid rgba(217,154,43,.34);background:rgba(217,154,43,.09);color:#ffe1a1}
    body.page-template-page-termos-privacidade-disclaimer .badge.green{border-color:rgba(30,183,122,.34);background:rgba(30,183,122,.1);color:#adffd7}
    body.page-template-page-termos-privacidade-disclaimer .badge.red{border-color:rgba(158,47,36,.5);background:rgba(158,47,36,.16);color:#ffc4bc}
    body.page-template-page-termos-privacidade-disclaimer .badge.paper{border-color:rgba(243,234,216,.22);background:rgba(243,234,216,.07);color:var(--paper)}

    body.page-template-page-termos-privacidade-disclaimer h1, body.page-template-page-termos-privacidade-disclaimer h2, body.page-template-page-termos-privacidade-disclaimer h3{text-wrap:balance}
    body.page-template-page-termos-privacidade-disclaimer .hero-title{margin:0;max-width:900px;font-family:var(--serif);font-size:clamp(44px,7vw,88px);line-height:.92;letter-spacing:-.055em;font-weight:900}
    body.page-template-page-termos-privacidade-disclaimer .hero-title span{color:var(--gold2);text-shadow:0 0 34px rgba(217,154,43,.18)}
    body.page-template-page-termos-privacidade-disclaimer .hero-copy{max-width:760px;margin:26px 0 0;font-size:18px;line-height:1.82;color:var(--soft)}

    body.page-template-page-termos-privacidade-disclaimer .legal-index{border-radius:30px;border:1px solid rgba(217,154,43,.24);background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.16),transparent 38%),rgba(15,13,9,.72);box-shadow:var(--shadow);padding:22px}
    body.page-template-page-termos-privacidade-disclaimer .legal-index-title{margin:0 0 16px;color:var(--gold2);font-size:11px;letter-spacing:.18em;text-transform:uppercase;font-weight:950}
    body.page-template-page-termos-privacidade-disclaimer .index-list{display:grid;gap:12px}
    body.page-template-page-termos-privacidade-disclaimer .index-list a{display:flex;justify-content:space-between;gap:18px;padding:12px 0;border-bottom:1px solid rgba(243,234,216,.1);color:var(--soft);font-size:14px}
    body.page-template-page-termos-privacidade-disclaimer .index-list a:last-child{border-bottom:0}
    body.page-template-page-termos-privacidade-disclaimer .index-list a:hover{color:var(--gold2)}
    body.page-template-page-termos-privacidade-disclaimer .index-list span{color:var(--muted)}

    body.page-template-page-termos-privacidade-disclaimer section{padding:58px 0;position:relative}
    body.page-template-page-termos-privacidade-disclaimer .legal-layout{display:grid;grid-template-columns:minmax(0,1fr) 310px;gap:28px;align-items:start}
    body.page-template-page-termos-privacidade-disclaimer .legal-main{display:grid;gap:22px}
    body.page-template-page-termos-privacidade-disclaimer .legal-card{border-radius:30px;border:1px solid rgba(243,234,216,.11);background:rgba(243,234,216,.045);box-shadow:var(--shadow);padding:clamp(24px,4vw,38px)}
    body.page-template-page-termos-privacidade-disclaimer .legal-card.green{border-color:rgba(30,183,122,.3);background:radial-gradient(circle at 24% 14%,rgba(30,183,122,.14),transparent 34%),rgba(30,183,122,.045)}
    body.page-template-page-termos-privacidade-disclaimer .legal-card.red{border-color:rgba(158,47,36,.42);background:radial-gradient(circle at 24% 14%,rgba(158,47,36,.18),transparent 32%),rgba(158,47,36,.065)}
    body.page-template-page-termos-privacidade-disclaimer .legal-card.dark{background:radial-gradient(circle at 20% 10%,rgba(217,154,43,.13),transparent 34%),rgba(5,4,3,.48)}

    body.page-template-page-termos-privacidade-disclaimer .component-title{display:flex;align-items:center;gap:10px;margin:0 0 18px;color:var(--gold2);font-size:12px;font-weight:950;letter-spacing:.18em;text-transform:uppercase}
    body.page-template-page-termos-privacidade-disclaimer .legal-card h2{margin:0;font-family:var(--serif);font-size:clamp(30px,4vw,48px);line-height:1.04;letter-spacing:-.045em;font-weight:900}
    body.page-template-page-termos-privacidade-disclaimer .legal-card h3{margin:34px 0 8px;font-family:var(--serif);font-size:28px;line-height:1.08;letter-spacing:-.035em}
    body.page-template-page-termos-privacidade-disclaimer .legal-card p, body.page-template-page-termos-privacidade-disclaimer .legal-card li{color:var(--soft);font-size:16px;line-height:1.82}
    body.page-template-page-termos-privacidade-disclaimer .legal-card strong{color:var(--paper)}
    body.page-template-page-termos-privacidade-disclaimer .legal-card ul{padding-left:20px;margin:14px 0}
    body.page-template-page-termos-privacidade-disclaimer .legal-card a{color:var(--gold2);text-decoration:underline;text-decoration-color:rgba(217,154,43,.35);text-underline-offset:3px}

    body.page-template-page-termos-privacidade-disclaimer .notice-box{border-radius:22px;border:1px solid rgba(217,154,43,.18);background:rgba(217,154,43,.06);padding:18px;margin-top:22px;color:var(--soft);line-height:1.75}
    body.page-template-page-termos-privacidade-disclaimer .notice-box.red{border-color:rgba(158,47,36,.35);background:rgba(158,47,36,.10)}
    body.page-template-page-termos-privacidade-disclaimer .notice-box.green{border-color:rgba(30,183,122,.28);background:rgba(30,183,122,.08)}

    body.page-template-page-termos-privacidade-disclaimer .side-panel{position:sticky;top:112px;display:grid;gap:16px}
    body.page-template-page-termos-privacidade-disclaimer .side-card{border-radius:26px;border:1px solid rgba(243,234,216,.11);background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.13),transparent 38%),rgba(243,234,216,.04);box-shadow:var(--shadow);padding:22px}
    body.page-template-page-termos-privacidade-disclaimer .side-card h3{margin:0;font-family:var(--serif);font-size:28px;line-height:1.08;letter-spacing:-.035em}
    body.page-template-page-termos-privacidade-disclaimer .side-card p{color:var(--soft);line-height:1.7;font-size:15px}
    body.page-template-page-termos-privacidade-disclaimer .side-card a{display:block;padding:10px 0;border-bottom:1px solid rgba(243,234,216,.1);color:var(--soft);font-size:14px}
    body.page-template-page-termos-privacidade-disclaimer .side-card a:last-child{border-bottom:0}
    body.page-template-page-termos-privacidade-disclaimer .side-card a:hover{color:var(--gold2)}

    body.page-template-page-termos-privacidade-disclaimer .footer{border-top:1px solid var(--line);padding:38px 0;color:var(--muted)}
    body.page-template-page-termos-privacidade-disclaimer .footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}
    body.page-template-page-termos-privacidade-disclaimer .footer strong{color:var(--paper)}

    @media(max-width:1040px){body.page-template-page-termos-privacidade-disclaimer .nav{display:none}body.page-template-page-termos-privacidade-disclaimer .hero-grid, body.page-template-page-termos-privacidade-disclaimer .legal-layout{grid-template-columns:1fr}body.page-template-page-termos-privacidade-disclaimer .side-panel{position:static}body.page-template-page-termos-privacidade-disclaimer .hero{padding:58px 0 78px}}
    @media(max-width:760px){body.page-template-page-termos-privacidade-disclaimer .container{width:min(100% - 28px,1180px)}body.page-template-page-termos-privacidade-disclaimer .top-alert-inner{align-items:start;flex-direction:column;justify-content:center;padding:10px 0}body.page-template-page-termos-privacidade-disclaimer .brand{min-width:unset}body.page-template-page-termos-privacidade-disclaimer .brand-title{font-size:17px}body.page-template-page-termos-privacidade-disclaimer .header .btn-secondary{display:none}body.page-template-page-termos-privacidade-disclaimer .hero-copy{font-size:16px}body.page-template-page-termos-privacidade-disclaimer .footer-inner{align-items:start;flex-direction:column}body.page-template-page-termos-privacidade-disclaimer .legal-card{padding:24px}}
  


/* ===== recomendações_livros_categorias.html scoped ===== */


    body.page-template-page-recomendacoes-livros{
      --black:#050403;
      --night:#0d0f12;
      --card:#16120d;
      --paper:#f3ead8;
      --soft:#d9c8aa;
      --muted:#a99675;
      --gold:#d99a2b;
      --gold2:#f0c36a;
      --green:#1eb77a;
      --red:#9e2f24;
      --line:rgba(243,234,216,.14);
      --shadow:0 28px 90px rgba(0,0,0,.46);
      --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      --serif:Georgia,"Times New Roman",serif;
      --mono:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
    }

    body.page-template-page-recomendacoes-livros *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body.page-template-page-recomendacoes-livros{margin:0;background:var(--black);color:var(--paper);font-family:var(--font);line-height:1.5;overflow-x:hidden}
    body.page-template-page-recomendacoes-livros a{color:inherit;text-decoration:none}
    body.page-template-page-recomendacoes-livros button, body.page-template-page-recomendacoes-livros input{font:inherit}

    body.page-template-page-recomendacoes-livros .page{
      min-height:100vh;
      position:relative;
      background:
        radial-gradient(circle at 14% 8%,rgba(217,154,43,.18),transparent 28%),
        radial-gradient(circle at 84% 2%,rgba(15,111,78,.18),transparent 26%),
        radial-gradient(circle at 58% 82%,rgba(158,47,36,.12),transparent 30%),
        linear-gradient(180deg,#070503 0%,#0d0f12 48%,#050403 100%);
    }

    body.page-template-page-recomendacoes-livros .page::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.22;
      background-image:
        linear-gradient(rgba(243,234,216,.055) 1px,transparent 1px),
        linear-gradient(90deg,rgba(243,234,216,.055) 1px,transparent 1px);
      background-size:58px 58px;
      mask-image:radial-gradient(circle at center,#000,transparent 72%);
    }

    body.page-template-page-recomendacoes-livros .page::after{
      content:"LIVROS";
      position:absolute;
      right:-16px;
      bottom:5vh;
      color:rgba(243,234,216,.04);
      font-family:var(--serif);
      font-size:clamp(110px,20vw,280px);
      line-height:.8;
      font-weight:900;
      letter-spacing:-.08em;
      pointer-events:none;
      white-space:nowrap;
    }

    body.page-template-page-recomendacoes-livros .container{width:min(1080px,calc(100% - 40px));margin:0 auto;position:relative;z-index:2}

    body.page-template-page-recomendacoes-livros .topbar{
      position:relative;
      z-index:20;
      border-bottom:1px solid var(--line);
      background:rgba(5,4,3,.82);
      backdrop-filter:blur(18px);
    }

    body.page-template-page-recomendacoes-livros .topbar-inner{min-height:78px;display:flex;align-items:center;justify-content:space-between;gap:20px}
    body.page-template-page-recomendacoes-livros .brand{display:flex;align-items:center;gap:12px;min-width:0}
    body.page-template-page-recomendacoes-livros .seal{width:48px;height:48px;border-radius:50%;border:1px solid rgba(217,154,43,.58);background:radial-gradient(circle,rgba(240,195,106,.20),transparent 54%),conic-gradient(from 180deg,rgba(217,154,43,.72),rgba(15,111,78,.58),rgba(158,47,36,.50),rgba(217,154,43,.72));display:grid;place-items:center;box-shadow:0 0 38px rgba(217,154,43,.16);flex:0 0 auto}
    body.page-template-page-recomendacoes-livros .seal::after{content:"A";width:36px;height:36px;border-radius:50%;display:grid;place-items:center;background:#070503;color:var(--gold2);font-family:var(--serif);font-size:22px;font-weight:900}
    body.page-template-page-recomendacoes-livros .brand small{display:block;color:var(--muted);font-size:10px;letter-spacing:.22em;text-transform:uppercase;font-weight:900}
    body.page-template-page-recomendacoes-livros .brand strong{display:block;color:var(--paper);font-family:var(--serif);font-size:19px;line-height:1.05}
    body.page-template-page-recomendacoes-livros .nav{display:flex;align-items:center;gap:18px;color:var(--soft);font-size:13px;font-weight:800}
    body.page-template-page-recomendacoes-livros .nav a:hover{color:var(--gold2)}

    body.page-template-page-recomendacoes-livros .btn{border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:46px;padding:0 18px;border-radius:999px;font-size:12px;font-weight:950;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;transition:transform .2s ease,filter .2s ease,border-color .2s ease}
    body.page-template-page-recomendacoes-livros .btn:hover{transform:translateY(-1px);filter:brightness(1.06)}
    body.page-template-page-recomendacoes-livros .btn-primary{background:linear-gradient(135deg,var(--gold2),var(--gold));color:#130d05;box-shadow:0 16px 36px rgba(217,154,43,.20)}
    body.page-template-page-recomendacoes-livros .btn-secondary{border:1px solid rgba(243,234,216,.16);background:rgba(243,234,216,.045);color:var(--paper)}

    body.page-template-page-recomendacoes-livros .hero{position:relative;overflow:hidden;padding:74px 0 44px;border-bottom:1px solid var(--line)}
    body.page-template-page-recomendacoes-livros .hero::before{content:"";position:absolute;inset:0;opacity:.20;background:linear-gradient(115deg,transparent 0%,rgba(217,154,43,.08) 42%,transparent 62%),repeating-linear-gradient(0deg,rgba(243,234,216,.05) 0 1px,transparent 1px 7px);pointer-events:none}
    body.page-template-page-recomendacoes-livros .hero-grid{display:grid;grid-template-columns:1fr;gap:32px;align-items:end;max-width:850px;margin:0 auto;text-align:center;justify-items:center}

    body.page-template-page-recomendacoes-livros .badge{display:inline-flex;align-items:center;width:max-content;border-radius:999px;padding:7px 11px;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;border:1px solid rgba(217,154,43,.34);background:rgba(217,154,43,.09);color:#ffe1a1}
    body.page-template-page-recomendacoes-livros .badge.green{border-color:rgba(30,183,122,.34);background:rgba(30,183,122,.10);color:#adffd7}
    body.page-template-page-recomendacoes-livros .badge.red{border-color:rgba(158,47,36,.50);background:rgba(158,47,36,.16);color:#ffc4bc}
    body.page-template-page-recomendacoes-livros .eyebrow-row{display:flex;flex-wrap:wrap;justify-content:center;gap:8px;margin-bottom:22px}

    body.page-template-page-recomendacoes-livros h1, body.page-template-page-recomendacoes-livros h2, body.page-template-page-recomendacoes-livros h3{text-wrap:balance}
    body.page-template-page-recomendacoes-livros h1{margin:0;font-family:var(--serif);font-size:clamp(44px,7vw,86px);line-height:.92;letter-spacing:-.055em;font-weight:900}
    body.page-template-page-recomendacoes-livros h1 span{color:var(--gold2);text-shadow:0 0 34px rgba(217,154,43,.18)}
    body.page-template-page-recomendacoes-livros .copy{max-width:720px;margin:24px auto 0;color:var(--soft);font-size:18px;line-height:1.78}

    body.page-template-page-recomendacoes-livros .index-card{
      border-radius:28px;
      border:1px solid rgba(217,154,43,.24);
      background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.16),transparent 38%),rgba(15,13,9,.72);
      box-shadow:var(--shadow);
      padding:22px;
    }
    body.page-template-page-recomendacoes-livros .index-title{margin:0 0 16px;color:var(--gold2);font-size:11px;letter-spacing:.18em;text-transform:uppercase;font-weight:950}
    body.page-template-page-recomendacoes-livros .index-list{display:grid;gap:12px}
    body.page-template-page-recomendacoes-livros .index-item{display:flex;justify-content:space-between;gap:18px;padding:12px 0;border-bottom:1px solid rgba(243,234,216,.1)}
    body.page-template-page-recomendacoes-livros .index-item:last-child{border-bottom:0}
    body.page-template-page-recomendacoes-livros .index-item span{color:var(--muted);font-size:13px}
    body.page-template-page-recomendacoes-livros .index-item strong{color:var(--paper);font-size:14px}

    body.page-template-page-recomendacoes-livros .search-module{margin-top:-24px;padding:0 0 42px;position:relative;z-index:6}
    body.page-template-page-recomendacoes-livros .search-card{border-radius:30px;border:1px solid rgba(217,154,43,.24);background:rgba(15,13,9,.90);box-shadow:var(--shadow);backdrop-filter:blur(18px);padding:16px}
    body.page-template-page-recomendacoes-livros .search-row{display:flex;gap:12px}
    body.page-template-page-recomendacoes-livros .input-wrap{flex:1;min-width:0;border-radius:999px;border:1px solid rgba(243,234,216,.13);background:rgba(5,4,3,.70);display:flex;align-items:center;gap:10px;padding:0 16px;color:var(--gold2)}
    body.page-template-page-recomendacoes-livros .input-wrap input{width:100%;min-height:50px;border:0;outline:0;background:transparent;color:var(--paper)}
    body.page-template-page-recomendacoes-livros .input-wrap input::placeholder{color:rgba(217,200,170,.62)}
    body.page-template-page-recomendacoes-livros .chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}
    body.page-template-page-recomendacoes-livros .chip{border:1px solid rgba(243,234,216,.13);background:rgba(243,234,216,.04);color:var(--soft);border-radius:999px;padding:8px 11px;font-size:12px;cursor:pointer;transition:.2s ease}
    body.page-template-page-recomendacoes-livros .chip:hover, body.page-template-page-recomendacoes-livros .chip.active{border-color:rgba(217,154,43,.42);color:var(--gold2);background:rgba(217,154,43,.08)}

    body.page-template-page-recomendacoes-livros section{padding:56px 0;position:relative}
    body.page-template-page-recomendacoes-livros .section-head{display:flex;align-items:end;justify-content:space-between;gap:22px;margin-bottom:28px}
    body.page-template-page-recomendacoes-livros .section-head h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,4vw,52px);line-height:1;letter-spacing:-.05em;font-weight:900}
    body.page-template-page-recomendacoes-livros .section-head p{max-width:720px;margin:12px 0 0;color:var(--muted);line-height:1.7}

    body.page-template-page-recomendacoes-livros .category-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
    body.page-template-page-recomendacoes-livros .category-card{min-height:250px;border-radius:30px;border:1px solid rgba(243,234,216,.11);background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.14),transparent 38%),rgba(243,234,216,.04);box-shadow:0 20px 70px rgba(0,0,0,.34);padding:24px;display:flex;flex-direction:column;justify-content:space-between;transition:transform .2s ease,border-color .2s ease,background .2s ease}
    body.page-template-page-recomendacoes-livros .category-card:hover{transform:translateY(-5px);border-color:rgba(217,154,43,.38);background:rgba(217,154,43,.065)}
    body.page-template-page-recomendacoes-livros .category-card.green{border-color:rgba(30,183,122,.24);background:radial-gradient(circle at 24% 14%,rgba(30,183,122,.15),transparent 34%),rgba(243,234,216,.04)}
    body.page-template-page-recomendacoes-livros .category-card.red{border-color:rgba(158,47,36,.30);background:radial-gradient(circle at 24% 14%,rgba(158,47,36,.18),transparent 34%),rgba(243,234,216,.04)}
    body.page-template-page-recomendacoes-livros .icon{width:48px;height:48px;border-radius:50%;display:grid;place-items:center;border:1px solid rgba(217,154,43,.30);background:rgba(217,154,43,.10);color:var(--gold2);font-family:var(--serif);font-size:23px;font-weight:900;margin-bottom:18px}
    body.page-template-page-recomendacoes-livros .category-card small{color:var(--muted);font-size:11px;letter-spacing:.14em;text-transform:uppercase;font-weight:900}
    body.page-template-page-recomendacoes-livros .category-card strong{display:block;margin-top:12px;font-family:var(--serif);font-size:34px;line-height:1.02;color:var(--paper);letter-spacing:-.04em}
    body.page-template-page-recomendacoes-livros .category-card span{display:block;margin-top:12px;color:var(--soft);font-size:14px;line-height:1.6}
    body.page-template-page-recomendacoes-livros .article-link{display:inline-flex;align-items:center;gap:7px;margin-top:20px;color:var(--gold2);font-weight:900;font-size:13px;letter-spacing:.08em;text-transform:uppercase}

    body.page-template-page-recomendacoes-livros .featured-shelf{border-radius:34px;border:1px solid rgba(30,183,122,.28);background:radial-gradient(circle at 82% 18%,rgba(30,183,122,.17),transparent 34%),radial-gradient(circle at 18% 88%,rgba(217,154,43,.14),transparent 30%),linear-gradient(135deg,rgba(22,18,13,.98),rgba(5,4,3,.98));box-shadow:var(--shadow);padding:32px;overflow:hidden;position:relative}
    body.page-template-page-recomendacoes-livros .featured-shelf::after{content:"LIVROS";position:absolute;right:-18px;top:20px;color:rgba(243,234,216,.045);font-family:var(--serif);font-size:78px;font-weight:900;writing-mode:vertical-rl;transform:rotate(180deg)}
    body.page-template-page-recomendacoes-livros .featured-inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr 260px;gap:28px;align-items:center}
    body.page-template-page-recomendacoes-livros .featured-shelf h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,5vw,62px);line-height:.98;letter-spacing:-.052em}
    body.page-template-page-recomendacoes-livros .featured-shelf p{max-width:680px;color:var(--soft);line-height:1.78}
    body.page-template-page-recomendacoes-livros .book-preview{min-height:300px;border-radius:22px;border:1px solid rgba(217,154,43,.22);background:linear-gradient(180deg,rgba(243,234,216,.08),rgba(5,4,3,.72)),radial-gradient(circle at 50% 20%,rgba(217,154,43,.20),transparent 30%),#130d09;box-shadow:0 28px 70px rgba(0,0,0,.35);display:grid;place-items:center;text-align:center;padding:22px}body.page-template-page-recomendacoes-livros .book-preview strong{font-family:var(--serif);font-size:32px;line-height:1;color:var(--paper)}body.page-template-page-recomendacoes-livros .book-preview span{display:block;margin-top:12px;color:var(--muted);font-family:var(--mono);font-size:12px;letter-spacing:.12em;text-transform:uppercase}

    body.page-template-page-recomendacoes-livros .notice{border-radius:24px;border:1px solid rgba(243,234,216,.11);background:rgba(5,4,3,.44);padding:18px;color:var(--muted);font-size:14px;line-height:1.65;text-align:center}body.page-template-page-recomendacoes-livros .notice strong{color:var(--paper)}
    body.page-template-page-recomendacoes-livros .footer{border-top:1px solid var(--line);padding:38px 0;color:var(--muted)}body.page-template-page-recomendacoes-livros .footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}body.page-template-page-recomendacoes-livros .footer strong{color:var(--paper)}

    @media(max-width:960px){body.page-template-page-recomendacoes-livros .nav{display:none}body.page-template-page-recomendacoes-livros .hero-grid, body.page-template-page-recomendacoes-livros .featured-inner{grid-template-columns:1fr}body.page-template-page-recomendacoes-livros .category-grid{grid-template-columns:repeat(2,1fr)}}
    @media(max-width:680px){body.page-template-page-recomendacoes-livros .container{width:min(100% - 28px,1080px)}body.page-template-page-recomendacoes-livros .topbar .btn{display:none}body.page-template-page-recomendacoes-livros .brand strong{font-size:17px}body.page-template-page-recomendacoes-livros .hero{padding:52px 0 42px}body.page-template-page-recomendacoes-livros .copy{font-size:16px}body.page-template-page-recomendacoes-livros .search-row{flex-direction:column}body.page-template-page-recomendacoes-livros .search-row .btn{width:100%}body.page-template-page-recomendacoes-livros .category-grid{grid-template-columns:1fr}body.page-template-page-recomendacoes-livros .featured-shelf{padding:24px}body.page-template-page-recomendacoes-livros .footer-inner{align-items:flex-start;flex-direction:column}body.page-template-page-recomendacoes-livros .page::after{display:none}}
  


/* ===== terminal_pc.html scoped ===== */


    body.page-template-page-terminal-pc{
      --black:#050403;
      --night:#0d0f12;
      --card:#16120d;
      --paper:#f3ead8;
      --soft:#d9c8aa;
      --muted:#a99675;
      --gold:#d99a2b;
      --gold2:#f0c36a;
      --green:#1eb77a;
      --green-dark:#0f6f4e;
      --red:#9e2f24;
      --line:rgba(243,234,216,.14);
      --shadow:0 28px 90px rgba(0,0,0,.46);
      --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      --serif:Georgia,"Times New Roman",serif;
      --mono:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
    }

    body.page-template-page-terminal-pc *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body.page-template-page-terminal-pc{margin:0;background:var(--black);color:var(--paper);font-family:var(--font);line-height:1.5;overflow-x:hidden}
    body.page-template-page-terminal-pc a{color:inherit;text-decoration:none}
    body.page-template-page-terminal-pc button, body.page-template-page-terminal-pc input{font:inherit}

    body.page-template-page-terminal-pc .page{
      min-height:100vh;
      position:relative;
      background:
        radial-gradient(circle at 12% 8%,rgba(217,154,43,.18),transparent 28%),
        radial-gradient(circle at 84% 2%,rgba(15,111,78,.20),transparent 26%),
        radial-gradient(circle at 58% 82%,rgba(158,47,36,.12),transparent 30%),
        linear-gradient(180deg,#070503 0%,#0d0f12 44%,#050403 100%);
    }

    body.page-template-page-terminal-pc .page::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.22;
      background-image:linear-gradient(rgba(243,234,216,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(243,234,216,.055) 1px,transparent 1px);
      background-size:58px 58px;
      mask-image:radial-gradient(circle at center,#000,transparent 72%);
    }

    body.page-template-page-terminal-pc .container{width:min(1180px,calc(100% - 40px));margin:0 auto;position:relative;z-index:2}

    body.page-template-page-terminal-pc .top-alert{border-bottom:1px solid rgba(217,154,43,.24);background:rgba(217,154,43,.08);color:var(--soft);font-size:12px;letter-spacing:.12em;text-transform:uppercase}
    body.page-template-page-terminal-pc .top-alert-inner{min-height:38px;display:flex;align-items:center;justify-content:space-between;gap:16px}
    body.page-template-page-terminal-pc .top-alert strong{color:var(--gold2)}

    body.page-template-page-terminal-pc .header{position:sticky;top:0;z-index:50;border-bottom:1px solid var(--line);background:rgba(5,4,3,.86);backdrop-filter:blur(18px)}
    body.page-template-page-terminal-pc .header-inner{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:24px}
    body.page-template-page-terminal-pc .brand{display:flex;align-items:center;gap:14px;min-width:292px}
    body.page-template-page-terminal-pc .brand-seal{width:50px;height:50px;border-radius:50%;border:1px solid rgba(217,154,43,.58);background:radial-gradient(circle,rgba(240,195,106,.2),transparent 54%),conic-gradient(from 180deg,rgba(217,154,43,.7),rgba(15,111,78,.58),rgba(158,47,36,.5),rgba(217,154,43,.7));display:grid;place-items:center;box-shadow:0 0 38px rgba(217,154,43,.16);flex:0 0 auto}
    body.page-template-page-terminal-pc .brand-seal::after{content:"A";width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:#070503;color:var(--gold2);font-family:var(--serif);font-size:22px;font-weight:900}
    body.page-template-page-terminal-pc .brand-kicker{margin:0;color:var(--muted);font-size:10px;letter-spacing:.24em;text-transform:uppercase;font-weight:900}
    body.page-template-page-terminal-pc .brand-title{margin:2px 0 0;color:var(--paper);font-family:var(--serif);font-size:20px;line-height:1;font-weight:800}

    body.page-template-page-terminal-pc .nav{display:flex;align-items:center;gap:22px;color:var(--soft);font-size:13px;font-weight:800}
    body.page-template-page-terminal-pc .nav a{position:relative;white-space:nowrap;transition:color .2s ease}
    body.page-template-page-terminal-pc .nav a::after{content:"";position:absolute;left:0;right:0;bottom:-8px;height:1px;background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform .2s ease}
    body.page-template-page-terminal-pc .nav a:hover, body.page-template-page-terminal-pc .nav a.active{color:var(--gold2)}
    body.page-template-page-terminal-pc .nav a:hover::after, body.page-template-page-terminal-pc .nav a.active::after{transform:scaleX(1)}

    body.page-template-page-terminal-pc .btn{border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0 18px;border-radius:999px;font-size:13px;font-weight:900;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;transition:transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease}
    body.page-template-page-terminal-pc .btn:hover{transform:translateY(-1px)}
    body.page-template-page-terminal-pc .btn-primary{background:linear-gradient(135deg,var(--gold2),var(--gold));color:#130d05;box-shadow:0 16px 36px rgba(217,154,43,.2)}
    body.page-template-page-terminal-pc .btn-green{background:linear-gradient(135deg,#36e29b,var(--green));color:#04120c;box-shadow:0 16px 36px rgba(30,183,122,.16)}
    body.page-template-page-terminal-pc .btn-secondary{border:1px solid rgba(243,234,216,.16);background:rgba(243,234,216,.045);color:var(--paper)}
    body.page-template-page-terminal-pc .btn-secondary:hover{border-color:rgba(217,154,43,.45);color:var(--gold2);background:rgba(217,154,43,.08)}

    body.page-template-page-terminal-pc .hero{position:relative;overflow:hidden;border-bottom:1px solid var(--line);padding:76px 0 92px}
    body.page-template-page-terminal-pc .hero::before{content:"";position:absolute;inset:0;opacity:.2;background:linear-gradient(115deg,transparent 0%,rgba(217,154,43,.08) 42%,transparent 62%),repeating-linear-gradient(0deg,rgba(243,234,216,.05) 0 1px,transparent 1px 7px);pointer-events:none}
    body.page-template-page-terminal-pc .hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:34px;align-items:center}

    body.page-template-page-terminal-pc .eyebrow-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:22px}
    body.page-template-page-terminal-pc .badge{display:inline-flex;align-items:center;border-radius:999px;padding:7px 11px;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;border:1px solid rgba(217,154,43,.34);background:rgba(217,154,43,.09);color:#ffe1a1}
    body.page-template-page-terminal-pc .badge.green{border-color:rgba(30,183,122,.34);background:rgba(30,183,122,.1);color:#adffd7}
    body.page-template-page-terminal-pc .badge.red{border-color:rgba(158,47,36,.5);background:rgba(158,47,36,.16);color:#ffc4bc}
    body.page-template-page-terminal-pc .badge.paper{border-color:rgba(243,234,216,.22);background:rgba(243,234,216,.07);color:var(--paper)}

    body.page-template-page-terminal-pc h1, body.page-template-page-terminal-pc h2, body.page-template-page-terminal-pc h3{text-wrap:balance}
    body.page-template-page-terminal-pc .hero-title{margin:0;max-width:900px;font-family:var(--serif);font-size:clamp(44px,7vw,88px);line-height:.92;letter-spacing:-.055em;font-weight:900}
    body.page-template-page-terminal-pc .hero-title span{color:var(--gold2);text-shadow:0 0 34px rgba(217,154,43,.18)}
    body.page-template-page-terminal-pc .hero-copy{max-width:760px;margin:26px 0 0;font-size:18px;line-height:1.82;color:var(--soft)}
    body.page-template-page-terminal-pc .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:34px}

    body.page-template-page-terminal-pc .terminal-card, body.page-template-page-terminal-pc .panel, body.page-template-page-terminal-pc .spec-card, body.page-template-page-terminal-pc .impact-card, body.page-template-page-terminal-pc .tier-card, body.page-template-page-terminal-pc .faq-card, body.page-template-page-terminal-pc .cta-card{border-radius:30px;border:1px solid rgba(243,234,216,.1);background:rgba(22,18,13,.86);box-shadow:var(--shadow)}

    body.page-template-page-terminal-pc .terminal-card{position:relative;overflow:hidden;padding:28px;border-color:rgba(30,183,122,.3);background:radial-gradient(circle at 82% 18%,rgba(30,183,122,.17),transparent 34%),radial-gradient(circle at 18% 88%,rgba(217,154,43,.14),transparent 30%),rgba(22,18,13,.92)}
    body.page-template-page-terminal-pc .terminal-card::after{content:"TERMINAL";position:absolute;right:-20px;top:18px;color:rgba(243,234,216,.045);font-family:var(--serif);font-size:76px;font-weight:900;writing-mode:vertical-rl;transform:rotate(180deg)}
    body.page-template-page-terminal-pc .terminal-inner{position:relative;z-index:2}
    body.page-template-page-terminal-pc .terminal-card h2{margin:18px 0 0;font-family:var(--serif);font-size:clamp(34px,4vw,54px);line-height:1;letter-spacing:-.05em}
    body.page-template-page-terminal-pc .terminal-card p{color:var(--soft);line-height:1.75;max-width:560px}

    body.page-template-page-terminal-pc .money-row{display:flex;align-items:baseline;gap:8px;flex-wrap:nowrap;margin:18px 0 4px;font-family:var(--serif);line-height:1;white-space:nowrap}
    body.page-template-page-terminal-pc .money-current{font-size:clamp(34px,4vw,54px);color:var(--gold2);font-weight:900}
    body.page-template-page-terminal-pc .money-divider{font-size:clamp(24px,2.6vw,34px);color:rgba(243,234,216,.36);font-weight:700}
    body.page-template-page-terminal-pc .money-target{font-size:clamp(22px,2.4vw,32px);color:rgba(217,200,170,.58);font-weight:800}
    body.page-template-page-terminal-pc .progress-label{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-top:24px;color:var(--muted);font-size:13px}
    body.page-template-page-terminal-pc .progress-label strong{color:var(--paper)}
    body.page-template-page-terminal-pc .progress-wrap{margin-top:10px;border-radius:999px;height:16px;border:1px solid rgba(243,234,216,.12);overflow:hidden;background:rgba(5,4,3,.55)}
    body.page-template-page-terminal-pc .progress-bar{width:18%;height:100%;background:linear-gradient(90deg,var(--green),var(--gold2))}

    body.page-template-page-terminal-pc section{padding:58px 0;position:relative}
    body.page-template-page-terminal-pc .section-head{display:flex;align-items:end;justify-content:space-between;gap:22px;margin-bottom:28px}
    body.page-template-page-terminal-pc .section-head h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,4vw,52px);line-height:1;letter-spacing:-.05em;font-weight:900}
    body.page-template-page-terminal-pc .section-head p{max-width:720px;margin:12px 0 0;color:var(--muted);line-height:1.7}

    body.page-template-page-terminal-pc .split-grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:18px;align-items:stretch}
    body.page-template-page-terminal-pc .two-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
    body.page-template-page-terminal-pc .three-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
    body.page-template-page-terminal-pc .four-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}

    body.page-template-page-terminal-pc .panel, body.page-template-page-terminal-pc .impact-card, body.page-template-page-terminal-pc .tier-card, body.page-template-page-terminal-pc .faq-card{padding:28px}
    body.page-template-page-terminal-pc .panel.green, body.page-template-page-terminal-pc .impact-card.green{border-color:rgba(30,183,122,.3);background:radial-gradient(circle at 24% 14%,rgba(30,183,122,.17),transparent 34%),rgba(30,183,122,.045)}
    body.page-template-page-terminal-pc .panel.red{border-color:rgba(158,47,36,.42);background:radial-gradient(circle at 24% 14%,rgba(158,47,36,.2),transparent 32%),rgba(158,47,36,.065)}

    body.page-template-page-terminal-pc .component-title{display:flex;align-items:center;gap:10px;margin:0 0 18px;color:var(--gold2);font-size:12px;font-weight:950;letter-spacing:.18em;text-transform:uppercase}
    body.page-template-page-terminal-pc .panel h3, body.page-template-page-terminal-pc .spec-card h3, body.page-template-page-terminal-pc .impact-card h3, body.page-template-page-terminal-pc .tier-card h3, body.page-template-page-terminal-pc .faq-card h3{margin:0;font-family:var(--serif);font-size:clamp(28px,3vw,42px);line-height:1.06;letter-spacing:-.04em;font-weight:900}
    body.page-template-page-terminal-pc .panel p, body.page-template-page-terminal-pc .spec-card p, body.page-template-page-terminal-pc .impact-card p, body.page-template-page-terminal-pc .tier-card p, body.page-template-page-terminal-pc .faq-card p{color:var(--soft);line-height:1.75}

    body.page-template-page-terminal-pc .old-pc-list, body.page-template-page-terminal-pc .benefit-list{display:grid;gap:10px;margin-top:22px}
    body.page-template-page-terminal-pc .old-pc-item, body.page-template-page-terminal-pc .benefit-item{border-radius:20px;border:1px solid rgba(243,234,216,.1);background:rgba(5,4,3,.44);padding:16px}
    body.page-template-page-terminal-pc .old-pc-item strong, body.page-template-page-terminal-pc .benefit-item strong{display:block;margin-bottom:4px;color:var(--paper)}
    body.page-template-page-terminal-pc .old-pc-item span, body.page-template-page-terminal-pc .benefit-item span{color:var(--muted);font-size:14px;line-height:1.6}

    body.page-template-page-terminal-pc .spec-card{padding:22px;min-height:200px;background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.16),transparent 38%),rgba(243,234,216,.04);transition:transform .2s ease,border-color .2s ease}
    body.page-template-page-terminal-pc .spec-card:hover, body.page-template-page-terminal-pc .impact-card:hover, body.page-template-page-terminal-pc .tier-card:hover{transform:translateY(-5px);border-color:rgba(217,154,43,.36)}
    body.page-template-page-terminal-pc .spec-label{display:block;margin-bottom:14px;color:var(--muted);font-size:12px;letter-spacing:.14em;text-transform:uppercase;font-weight:900}
    body.page-template-page-terminal-pc .spec-value{font-family:var(--serif);font-size:30px;line-height:1.05;color:var(--paper);font-weight:900}
    body.page-template-page-terminal-pc .spec-card p{font-size:14px;margin-bottom:0}

    body.page-template-page-terminal-pc .pc-visual{min-height:430px;border-radius:34px;border:1px solid rgba(217,154,43,.24);background:linear-gradient(135deg,rgba(5,4,3,.18),rgba(5,4,3,.92)),radial-gradient(circle at 34% 32%,rgba(30,183,122,.24),transparent 26%),radial-gradient(circle at 78% 15%,rgba(217,154,43,.28),transparent 25%),#19130c;position:relative;overflow:hidden;box-shadow:var(--shadow);display:flex;align-items:end;padding:28px}
    body.page-template-page-terminal-pc .pc-visual::before{content:"";position:absolute;inset:0;opacity:.23;background-image:linear-gradient(rgba(243,234,216,.13) 1px,transparent 1px),linear-gradient(90deg,rgba(243,234,216,.13) 1px,transparent 1px);background-size:34px 34px}
    body.page-template-page-terminal-pc .pc-visual::after{content:"TERMINAL CENTRAL";position:absolute;right:22px;top:20px;color:rgba(243,234,216,.16);font-family:var(--mono);font-size:12px;letter-spacing:.2em}
    body.page-template-page-terminal-pc .pc-caption{position:relative;z-index:2;max-width:620px;color:var(--soft);line-height:1.7}

    body.page-template-page-terminal-pc .tier-card{min-height:260px;display:flex;flex-direction:column;justify-content:space-between;background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.16),transparent 38%),rgba(243,234,216,.04)}
    body.page-template-page-terminal-pc .tier-card.featured{border-color:rgba(30,183,122,.34);background:radial-gradient(circle at 24% 12%,rgba(30,183,122,.17),transparent 36%),radial-gradient(circle at 80% 0%,rgba(217,154,43,.12),transparent 28%),rgba(22,18,13,.9)}
    body.page-template-page-terminal-pc .price{font-family:var(--serif);color:var(--gold2);font-size:48px;line-height:1;margin:18px 0 10px}
    body.page-template-page-terminal-pc .tier-note{display:block;margin-top:12px;color:var(--muted);font-size:13px;line-height:1.6}

    body.page-template-page-terminal-pc .pix-box{border-radius:26px;border:1px dashed rgba(217,154,43,.42);background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.12),transparent 38%),rgba(5,4,3,.5);padding:24px;margin-top:22px}
    body.page-template-page-terminal-pc .pix-key{margin:14px 0 0;padding:16px;border-radius:18px;background:rgba(243,234,216,.06);border:1px solid rgba(243,234,216,.12);font-family:var(--mono);color:var(--gold2);word-break:break-word}

    body.page-template-page-terminal-pc .impact-number{width:44px;height:44px;display:grid;place-items:center;border-radius:50%;border:1px solid rgba(217,154,43,.3);background:rgba(217,154,43,.1);color:var(--gold2);font-family:var(--serif);font-weight:900;margin-bottom:18px}

    body.page-template-page-terminal-pc .quote{margin:0;border-left:2px solid rgba(217,154,43,.62);padding-left:18px;font-family:var(--serif);font-size:24px;line-height:1.55;color:var(--paper)}

    body.page-template-page-terminal-pc .cta-card{overflow:hidden;position:relative;border-radius:34px;border:1px solid rgba(30,183,122,.28);background:radial-gradient(circle at 82% 18%,rgba(30,183,122,.17),transparent 34%),radial-gradient(circle at 18% 88%,rgba(217,154,43,.14),transparent 30%),linear-gradient(135deg,rgba(22,18,13,.98),rgba(5,4,3,.98));box-shadow:var(--shadow);padding:46px}
    body.page-template-page-terminal-pc .cta-card::after{content:"";position:absolute;width:290px;height:290px;border:1px solid rgba(217,154,43,.18);border-radius:50%;right:-110px;top:-82px}
    body.page-template-page-terminal-pc .cta-content{position:relative;z-index:2;max-width:820px}
    body.page-template-page-terminal-pc .cta-card h2{margin:16px 0 0;font-family:var(--serif);font-size:clamp(36px,5vw,62px);line-height:.98;letter-spacing:-.052em}
    body.page-template-page-terminal-pc .cta-card p{max-width:700px;color:var(--soft);line-height:1.78}

    body.page-template-page-terminal-pc .footer{border-top:1px solid var(--line);padding:38px 0;color:var(--muted)}
    body.page-template-page-terminal-pc .footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}
    body.page-template-page-terminal-pc .footer strong{color:var(--paper)}

    @media(max-width:1040px){body.page-template-page-terminal-pc .nav{display:none}body.page-template-page-terminal-pc .hero-grid, body.page-template-page-terminal-pc .split-grid{grid-template-columns:1fr}body.page-template-page-terminal-pc .three-grid, body.page-template-page-terminal-pc .four-grid{grid-template-columns:repeat(2,1fr)}body.page-template-page-terminal-pc .section-head{align-items:start;flex-direction:column}}
    @media(max-width:760px){body.page-template-page-terminal-pc .container{width:min(100% - 28px,1180px)}body.page-template-page-terminal-pc .top-alert-inner{align-items:start;flex-direction:column;justify-content:center;padding:10px 0}body.page-template-page-terminal-pc .brand{min-width:unset}body.page-template-page-terminal-pc .brand-title{font-size:17px}body.page-template-page-terminal-pc .header .btn-primary{display:none}body.page-template-page-terminal-pc .hero{padding:58px 0 82px}body.page-template-page-terminal-pc .hero-copy{font-size:16px}body.page-template-page-terminal-pc .three-grid, body.page-template-page-terminal-pc .two-grid, body.page-template-page-terminal-pc .four-grid{grid-template-columns:1fr}body.page-template-page-terminal-pc .money-row{white-space:normal;flex-wrap:wrap}body.page-template-page-terminal-pc .footer-inner{align-items:start;flex-direction:column}body.page-template-page-terminal-pc .cta-card, body.page-template-page-terminal-pc .panel{padding:24px}}
  


/* ===== youtube.html scoped ===== */


    body.page-template-page-youtube{
      --black:#050403;
      --night:#0d0f12;
      --card:#16120d;
      --paper:#f3ead8;
      --soft:#d9c8aa;
      --muted:#a99675;
      --gold:#d99a2b;
      --gold2:#f0c36a;
      --green:#1eb77a;
      --red:#9e2f24;
      --line:rgba(243,234,216,.14);
      --shadow:0 28px 90px rgba(0,0,0,.46);
      --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      --serif:Georgia,"Times New Roman",serif;
      --mono:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
    }

    body.page-template-page-youtube *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body.page-template-page-youtube{margin:0;background:var(--black);color:var(--paper);font-family:var(--font);line-height:1.5;overflow-x:hidden}
    body.page-template-page-youtube a{color:inherit;text-decoration:none}
    body.page-template-page-youtube button, body.page-template-page-youtube input{font:inherit}

    body.page-template-page-youtube .page{
      min-height:100vh;
      position:relative;
      background:
        radial-gradient(circle at 12% 8%,rgba(217,154,43,.18),transparent 28%),
        radial-gradient(circle at 84% 2%,rgba(158,47,36,.20),transparent 26%),
        radial-gradient(circle at 58% 82%,rgba(15,111,78,.12),transparent 30%),
        linear-gradient(180deg,#070503 0%,#0d0f12 44%,#050403 100%);
    }

    body.page-template-page-youtube .page::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.22;
      background-image:linear-gradient(rgba(243,234,216,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(243,234,216,.055) 1px,transparent 1px);
      background-size:58px 58px;
      mask-image:radial-gradient(circle at center,#000,transparent 72%);
    }

    body.page-template-page-youtube .container{width:min(1180px,calc(100% - 40px));margin:0 auto;position:relative;z-index:2}

    body.page-template-page-youtube .top-alert{border-bottom:1px solid rgba(217,154,43,.24);background:rgba(217,154,43,.08);color:var(--soft);font-size:12px;letter-spacing:.12em;text-transform:uppercase}
    body.page-template-page-youtube .top-alert-inner{min-height:38px;display:flex;align-items:center;justify-content:space-between;gap:16px}
    body.page-template-page-youtube .top-alert strong{color:var(--gold2)}

    body.page-template-page-youtube .header{position:sticky;top:0;z-index:50;border-bottom:1px solid var(--line);background:rgba(5,4,3,.86);backdrop-filter:blur(18px)}
    body.page-template-page-youtube .header-inner{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:24px}
    body.page-template-page-youtube .brand{display:flex;align-items:center;gap:14px;min-width:292px}
    body.page-template-page-youtube .brand-seal{width:50px;height:50px;border-radius:50%;border:1px solid rgba(217,154,43,.58);background:radial-gradient(circle,rgba(240,195,106,.2),transparent 54%),conic-gradient(from 180deg,rgba(217,154,43,.7),rgba(15,111,78,.58),rgba(158,47,36,.5),rgba(217,154,43,.7));display:grid;place-items:center;box-shadow:0 0 38px rgba(217,154,43,.16);flex:0 0 auto}
    body.page-template-page-youtube .brand-seal::after{content:"A";width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:#070503;color:var(--gold2);font-family:var(--serif);font-size:22px;font-weight:900}
    body.page-template-page-youtube .brand-kicker{margin:0;color:var(--muted);font-size:10px;letter-spacing:.24em;text-transform:uppercase;font-weight:900}
    body.page-template-page-youtube .brand-title{margin:2px 0 0;color:var(--paper);font-family:var(--serif);font-size:20px;line-height:1;font-weight:800}

    body.page-template-page-youtube .nav{display:flex;align-items:center;gap:22px;color:var(--soft);font-size:13px;font-weight:800}
    body.page-template-page-youtube .nav a{position:relative;white-space:nowrap;transition:color .2s ease}
    body.page-template-page-youtube .nav a::after{content:"";position:absolute;left:0;right:0;bottom:-8px;height:1px;background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform .2s ease}
    body.page-template-page-youtube .nav a:hover, body.page-template-page-youtube .nav a.active{color:var(--gold2)}
    body.page-template-page-youtube .nav a:hover::after, body.page-template-page-youtube .nav a.active::after{transform:scaleX(1)}

    body.page-template-page-youtube .btn{border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0 18px;border-radius:999px;font-size:13px;font-weight:900;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;transition:transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease}
    body.page-template-page-youtube .btn:hover{transform:translateY(-1px)}
    body.page-template-page-youtube .btn-primary{background:linear-gradient(135deg,var(--gold2),var(--gold));color:#130d05;box-shadow:0 16px 36px rgba(217,154,43,.2)}
    body.page-template-page-youtube .btn-red{background:linear-gradient(135deg,#d34b3e,var(--red));color:#fff1e8;box-shadow:0 16px 36px rgba(158,47,36,.2)}
    body.page-template-page-youtube .btn-green{background:linear-gradient(135deg,#36e29b,var(--green));color:#04120c;box-shadow:0 16px 36px rgba(30,183,122,.16)}
    body.page-template-page-youtube .btn-secondary{border:1px solid rgba(243,234,216,.16);background:rgba(243,234,216,.045);color:var(--paper)}
    body.page-template-page-youtube .btn-secondary:hover{border-color:rgba(217,154,43,.45);color:var(--gold2);background:rgba(217,154,43,.08)}

    body.page-template-page-youtube .hero{position:relative;overflow:hidden;border-bottom:1px solid var(--line);padding:76px 0 92px}
    body.page-template-page-youtube .hero::before{content:"";position:absolute;inset:0;opacity:.2;background:linear-gradient(115deg,transparent 0%,rgba(217,154,43,.08) 42%,transparent 62%),repeating-linear-gradient(0deg,rgba(243,234,216,.05) 0 1px,transparent 1px 7px);pointer-events:none}
    body.page-template-page-youtube .hero-grid{display:grid;grid-template-columns:1.03fr .97fr;gap:34px;align-items:center}

    body.page-template-page-youtube .eyebrow-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:22px}
    body.page-template-page-youtube .badge{display:inline-flex;align-items:center;border-radius:999px;padding:7px 11px;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;border:1px solid rgba(217,154,43,.34);background:rgba(217,154,43,.09);color:#ffe1a1}
    body.page-template-page-youtube .badge.green{border-color:rgba(30,183,122,.34);background:rgba(30,183,122,.1);color:#adffd7}
    body.page-template-page-youtube .badge.red{border-color:rgba(158,47,36,.5);background:rgba(158,47,36,.16);color:#ffc4bc}
    body.page-template-page-youtube .badge.paper{border-color:rgba(243,234,216,.22);background:rgba(243,234,216,.07);color:var(--paper)}

    body.page-template-page-youtube h1, body.page-template-page-youtube h2, body.page-template-page-youtube h3{text-wrap:balance}
    body.page-template-page-youtube .hero-title{margin:0;max-width:900px;font-family:var(--serif);font-size:clamp(44px,7vw,88px);line-height:.92;letter-spacing:-.055em;font-weight:900}
    body.page-template-page-youtube .hero-title span{color:var(--gold2);text-shadow:0 0 34px rgba(217,154,43,.18)}
    body.page-template-page-youtube .hero-copy{max-width:760px;margin:26px 0 0;font-size:18px;line-height:1.82;color:var(--soft)}
    body.page-template-page-youtube .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:34px}

    body.page-template-page-youtube .video-feature, body.page-template-page-youtube .panel, body.page-template-page-youtube .video-card, body.page-template-page-youtube .playlist-card, body.page-template-page-youtube .short-card, body.page-template-page-youtube .metric-card, body.page-template-page-youtube .cta-card{border-radius:30px;border:1px solid rgba(243,234,216,.1);background:rgba(22,18,13,.86);box-shadow:var(--shadow)}

    body.page-template-page-youtube .video-feature{position:relative;overflow:hidden;padding:18px;border-color:rgba(158,47,36,.3);background:radial-gradient(circle at 76% 18%,rgba(158,47,36,.22),transparent 34%),radial-gradient(circle at 18% 88%,rgba(217,154,43,.14),transparent 30%),rgba(22,18,13,.92)}
    body.page-template-page-youtube .video-feature::after{content:"YOUTUBE";position:absolute;right:-20px;top:18px;color:rgba(243,234,216,.045);font-family:var(--serif);font-size:78px;font-weight:900;writing-mode:vertical-rl;transform:rotate(180deg)}
    body.page-template-page-youtube .video-inner{position:relative;z-index:2;border-radius:24px;border:1px solid rgba(243,234,216,.12);background:rgba(5,4,3,.52);overflow:hidden}
    body.page-template-page-youtube .video-frame{min-height:360px;display:grid;place-items:center;position:relative;background:linear-gradient(135deg,rgba(5,4,3,.18),rgba(5,4,3,.92)),radial-gradient(circle at 44% 34%,rgba(217,154,43,.26),transparent 28%),radial-gradient(circle at 70% 15%,rgba(158,47,36,.24),transparent 26%),#130d09}
    body.page-template-page-youtube .video-frame::before{content:"";position:absolute;inset:0;opacity:.23;background-image:linear-gradient(rgba(243,234,216,.13) 1px,transparent 1px),linear-gradient(90deg,rgba(243,234,216,.13) 1px,transparent 1px);background-size:34px 34px}
    body.page-template-page-youtube .play-mark{position:relative;z-index:2;width:94px;height:94px;border-radius:50%;display:grid;place-items:center;background:rgba(158,47,36,.76);border:1px solid rgba(243,234,216,.2);box-shadow:0 0 44px rgba(158,47,36,.34)}
    body.page-template-page-youtube .play-mark::after{content:"";width:0;height:0;border-top:17px solid transparent;border-bottom:17px solid transparent;border-left:27px solid var(--paper);margin-left:7px}
    body.page-template-page-youtube .video-caption{padding:22px}
    body.page-template-page-youtube .video-caption h2{margin:10px 0 0;font-family:var(--serif);font-size:clamp(30px,3.4vw,46px);line-height:1;letter-spacing:-.045em}
    body.page-template-page-youtube .video-caption p{color:var(--soft);line-height:1.72}

    body.page-template-page-youtube section{padding:58px 0;position:relative}
    body.page-template-page-youtube .section-head{display:flex;align-items:end;justify-content:space-between;gap:22px;margin-bottom:28px}
    body.page-template-page-youtube .section-head h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,4vw,52px);line-height:1;letter-spacing:-.05em;font-weight:900}
    body.page-template-page-youtube .section-head p{max-width:720px;margin:12px 0 0;color:var(--muted);line-height:1.7}

    body.page-template-page-youtube .split-grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:18px;align-items:stretch}
    body.page-template-page-youtube .two-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
    body.page-template-page-youtube .three-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
    body.page-template-page-youtube .four-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}

    body.page-template-page-youtube .panel, body.page-template-page-youtube .video-card, body.page-template-page-youtube .playlist-card, body.page-template-page-youtube .short-card, body.page-template-page-youtube .metric-card{padding:24px}
    body.page-template-page-youtube .panel.green, body.page-template-page-youtube .metric-card.green{border-color:rgba(30,183,122,.3);background:radial-gradient(circle at 24% 14%,rgba(30,183,122,.17),transparent 34%),rgba(30,183,122,.045)}
    body.page-template-page-youtube .panel.red{border-color:rgba(158,47,36,.52);background:radial-gradient(circle at 24% 14%,rgba(158,47,36,.26),transparent 32%),radial-gradient(circle at 88% 0%,rgba(217,154,43,.10),transparent 28%),rgba(158,47,36,.075)}
    body.page-template-page-youtube .panel.dark{background:radial-gradient(circle at 20% 10%,rgba(217,154,43,.13),transparent 34%),rgba(5,4,3,.48)}

    body.page-template-page-youtube .component-title{display:flex;align-items:center;gap:10px;margin:0 0 18px;color:var(--gold2);font-size:12px;font-weight:950;letter-spacing:.18em;text-transform:uppercase}
    body.page-template-page-youtube .panel h3, body.page-template-page-youtube .video-card h3, body.page-template-page-youtube .playlist-card h3, body.page-template-page-youtube .short-card h3, body.page-template-page-youtube .metric-card h3{margin:0;font-family:var(--serif);font-size:clamp(28px,3vw,42px);line-height:1.06;letter-spacing:-.04em;font-weight:900}
    body.page-template-page-youtube .panel p, body.page-template-page-youtube .video-card p, body.page-template-page-youtube .playlist-card p, body.page-template-page-youtube .short-card p, body.page-template-page-youtube .metric-card p{color:var(--soft);line-height:1.75}

    body.page-template-page-youtube .metric-card{position:relative;overflow:hidden;min-height:185px;border-color:rgba(158,47,36,.32);background:radial-gradient(circle at 78% 0%,rgba(158,47,36,.24),transparent 36%),radial-gradient(circle at 18% 100%,rgba(217,154,43,.10),transparent 34%),rgba(243,234,216,.04)}
    body.page-template-page-youtube .metric-card::after{content:"YOUTUBE";position:absolute;right:14px;top:14px;color:rgba(243,234,216,.07);font-family:var(--mono);font-size:11px;letter-spacing:.16em;font-weight:900}
    body.page-template-page-youtube .metric-number{font-family:var(--serif);font-size:42px;color:#ff6a5e;line-height:1;margin:12px 0 8px;font-weight:900;text-shadow:0 0 26px rgba(158,47,36,.28)}

    body.page-template-page-youtube .video-card, body.page-template-page-youtube .playlist-card, body.page-template-page-youtube .short-card{position:relative;overflow:hidden;transition:transform .2s ease,border-color .2s ease;background:radial-gradient(circle at 86% 0%,rgba(158,47,36,.20),transparent 34%),rgba(22,18,13,.86);border-color:rgba(158,47,36,.24)}
    body.page-template-page-youtube .video-card:hover, body.page-template-page-youtube .playlist-card:hover, body.page-template-page-youtube .short-card:hover, body.page-template-page-youtube .metric-card:hover{transform:translateY(-5px);border-color:rgba(217,154,43,.36)}
    body.page-template-page-youtube .thumb{height:190px;margin:-24px -24px 22px;border-bottom:1px solid rgba(158,47,36,.26);position:relative;background:linear-gradient(135deg,rgba(5,4,3,.10),rgba(5,4,3,.92)),radial-gradient(circle at 34% 32%,rgba(158,47,36,.42),transparent 28%),radial-gradient(circle at 78% 15%,rgba(217,154,43,.20),transparent 25%),#19130c;overflow:hidden}
    body.page-template-page-youtube .thumb::before{content:"";position:absolute;inset:0;opacity:.23;background-image:linear-gradient(rgba(243,234,216,.13) 1px,transparent 1px),linear-gradient(90deg,rgba(243,234,216,.13) 1px,transparent 1px);background-size:34px 34px}
    body.page-template-page-youtube .thumb .badge{position:absolute;left:16px;bottom:16px;z-index:2}
    body.page-template-page-youtube .mini-play{position:absolute;right:16px;top:16px;width:42px;height:42px;border-radius:50%;background:rgba(158,47,36,.72);border:1px solid rgba(243,234,216,.2);z-index:2}
    body.page-template-page-youtube .mini-play::after{content:"";position:absolute;left:17px;top:12px;width:0;height:0;border-top:9px solid transparent;border-bottom:9px solid transparent;border-left:14px solid var(--paper)}

    body.page-template-page-youtube .playlist-card{min-height:290px;display:flex;flex-direction:column;justify-content:space-between;background:radial-gradient(circle at 78% 0%,rgba(158,47,36,.26),transparent 36%),radial-gradient(circle at 18% 100%,rgba(217,154,43,.12),transparent 34%),rgba(243,234,216,.04)}
    body.page-template-page-youtube .playlist-card::after{content:"PLAYLIST";position:absolute;right:14px;top:14px;color:rgba(243,234,216,.07);font-family:var(--mono);font-size:11px;letter-spacing:.16em;font-weight:900}
    body.page-template-page-youtube .playlist-number{width:44px;height:44px;border-radius:50%;display:grid;place-items:center;border:1px solid rgba(158,47,36,.42);background:rgba(158,47,36,.22);color:#ffc5be;font-family:var(--serif);font-weight:900;margin-bottom:18px;box-shadow:0 0 24px rgba(158,47,36,.18)}

    body.page-template-page-youtube .short-card{min-height:360px;display:flex;flex-direction:column;justify-content:space-between;background:radial-gradient(circle at 50% 0%,rgba(158,47,36,.30),transparent 38%),radial-gradient(circle at 18% 100%,rgba(217,154,43,.10),transparent 34%),rgba(243,234,216,.04)}
    body.page-template-page-youtube .short-card::after{content:"SHORTS";position:absolute;right:14px;top:14px;color:rgba(243,234,216,.07);font-family:var(--mono);font-size:11px;letter-spacing:.16em;font-weight:900}
    body.page-template-page-youtube .short-frame{height:220px;border-radius:22px;border:1px solid rgba(158,47,36,.32);background:linear-gradient(180deg,rgba(5,4,3,.08),rgba(5,4,3,.9)),radial-gradient(circle at 50% 28%,rgba(158,47,36,.44),transparent 32%),radial-gradient(circle at 80% 0%,rgba(217,154,43,.14),transparent 26%),#130d09;display:grid;place-items:center;margin-bottom:18px;position:relative;overflow:hidden}
    body.page-template-page-youtube .short-frame::before{content:"9:16";position:absolute;top:14px;left:14px;color:rgba(243,234,216,.34);font-family:var(--mono);font-size:12px;letter-spacing:.14em}

    body.page-template-page-youtube .workflow-list{display:grid;gap:10px;margin-top:22px}
    body.page-template-page-youtube .workflow-item{border-radius:20px;border:1px solid rgba(243,234,216,.1);background:rgba(5,4,3,.44);padding:16px}
    body.page-template-page-youtube .workflow-item strong{display:block;margin-bottom:4px;color:var(--paper)}
    body.page-template-page-youtube .workflow-item span{color:var(--muted);font-size:14px;line-height:1.6}

    body.page-template-page-youtube .quote{margin:0;border-left:2px solid rgba(217,154,43,.62);padding-left:18px;font-family:var(--serif);font-size:clamp(24px,3vw,34px);line-height:1.55;color:var(--paper)}

    body.page-template-page-youtube .cta-card{overflow:hidden;position:relative;border-radius:34px;border:1px solid rgba(158,47,36,.42);background:radial-gradient(circle at 82% 18%,rgba(158,47,36,.26),transparent 34%),radial-gradient(circle at 18% 88%,rgba(217,154,43,.16),transparent 30%),linear-gradient(135deg,rgba(22,18,13,.98),rgba(5,4,3,.98));box-shadow:var(--shadow);padding:46px}
    body.page-template-page-youtube .cta-card::after{content:"";position:absolute;width:290px;height:290px;border:1px solid rgba(217,154,43,.18);border-radius:50%;right:-110px;top:-82px}
    body.page-template-page-youtube .cta-content{position:relative;z-index:2;max-width:820px}
    body.page-template-page-youtube .cta-card h2{margin:16px 0 0;font-family:var(--serif);font-size:clamp(36px,5vw,62px);line-height:.98;letter-spacing:-.052em}
    body.page-template-page-youtube .cta-card p{max-width:700px;color:var(--soft);line-height:1.78}

    body.page-template-page-youtube .footer{border-top:1px solid var(--line);padding:38px 0;color:var(--muted)}
    body.page-template-page-youtube .footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}
    body.page-template-page-youtube .footer strong{color:var(--paper)}

    @media(max-width:1040px){body.page-template-page-youtube .nav{display:none}body.page-template-page-youtube .hero-grid, body.page-template-page-youtube .split-grid{grid-template-columns:1fr}body.page-template-page-youtube .three-grid, body.page-template-page-youtube .four-grid{grid-template-columns:repeat(2,1fr)}body.page-template-page-youtube .section-head{align-items:start;flex-direction:column}}
    @media(max-width:760px){body.page-template-page-youtube .container{width:min(100% - 28px,1180px)}body.page-template-page-youtube .top-alert-inner{align-items:start;flex-direction:column;justify-content:center;padding:10px 0}body.page-template-page-youtube .brand{min-width:unset}body.page-template-page-youtube .brand-title{font-size:17px}body.page-template-page-youtube .header .btn-secondary{display:none}body.page-template-page-youtube .hero{padding:58px 0 82px}body.page-template-page-youtube .hero-copy{font-size:16px}body.page-template-page-youtube .three-grid, body.page-template-page-youtube .two-grid, body.page-template-page-youtube .four-grid{grid-template-columns:1fr}body.page-template-page-youtube .video-frame{min-height:240px}body.page-template-page-youtube .footer-inner{align-items:start;flex-direction:column}body.page-template-page-youtube .cta-card, body.page-template-page-youtube .panel{padding:24px}}
  


/* ===== contato.html scoped ===== */


    body.page-template-page-contato{
      --black:#050403;
      --night:#0d0f12;
      --card:#16120d;
      --paper:#f3ead8;
      --soft:#d9c8aa;
      --muted:#a99675;
      --gold:#d99a2b;
      --gold2:#f0c36a;
      --green:#1eb77a;
      --red:#9e2f24;
      --line:rgba(243,234,216,.14);
      --shadow:0 28px 90px rgba(0,0,0,.46);
      --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      --serif:Georgia,"Times New Roman",serif;
      --mono:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
    }

    body.page-template-page-contato *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body.page-template-page-contato{margin:0;background:var(--black);color:var(--paper);font-family:var(--font);line-height:1.5;overflow-x:hidden}
    body.page-template-page-contato a{color:inherit;text-decoration:none}
    body.page-template-page-contato button, body.page-template-page-contato input, body.page-template-page-contato textarea, body.page-template-page-contato select{font:inherit}

    body.page-template-page-contato .page{
      min-height:100vh;
      position:relative;
      background:
        radial-gradient(circle at 12% 8%,rgba(217,154,43,.18),transparent 28%),
        radial-gradient(circle at 84% 2%,rgba(15,111,78,.18),transparent 26%),
        radial-gradient(circle at 58% 82%,rgba(158,47,36,.12),transparent 30%),
        linear-gradient(180deg,#070503 0%,#0d0f12 44%,#050403 100%);
    }

    body.page-template-page-contato .page::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.22;
      background-image:
        linear-gradient(rgba(243,234,216,.055) 1px,transparent 1px),
        linear-gradient(90deg,rgba(243,234,216,.055) 1px,transparent 1px);
      background-size:58px 58px;
      mask-image:radial-gradient(circle at center,#000,transparent 72%);
    }

    body.page-template-page-contato .container{width:min(1180px,calc(100% - 40px));margin:0 auto;position:relative;z-index:2}

    body.page-template-page-contato .top-alert{border-bottom:1px solid rgba(217,154,43,.24);background:rgba(217,154,43,.08);color:var(--soft);font-size:12px;letter-spacing:.12em;text-transform:uppercase}
    body.page-template-page-contato .top-alert-inner{min-height:38px;display:flex;align-items:center;justify-content:space-between;gap:16px}
    body.page-template-page-contato .top-alert strong{color:var(--gold2)}

    body.page-template-page-contato .header{position:sticky;top:0;z-index:50;border-bottom:1px solid var(--line);background:rgba(5,4,3,.86);backdrop-filter:blur(18px)}
    body.page-template-page-contato .header-inner{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:24px}
    body.page-template-page-contato .brand{display:flex;align-items:center;gap:14px;min-width:292px}
    body.page-template-page-contato .brand-seal{width:50px;height:50px;border-radius:50%;border:1px solid rgba(217,154,43,.58);background:radial-gradient(circle,rgba(240,195,106,.2),transparent 54%),conic-gradient(from 180deg,rgba(217,154,43,.7),rgba(15,111,78,.58),rgba(158,47,36,.5),rgba(217,154,43,.7));display:grid;place-items:center;box-shadow:0 0 38px rgba(217,154,43,.16);flex:0 0 auto}
    body.page-template-page-contato .brand-seal::after{content:"A";width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:#070503;color:var(--gold2);font-family:var(--serif);font-size:22px;font-weight:900}
    body.page-template-page-contato .brand-kicker{margin:0;color:var(--muted);font-size:10px;letter-spacing:.24em;text-transform:uppercase;font-weight:900}
    body.page-template-page-contato .brand-title{margin:2px 0 0;color:var(--paper);font-family:var(--serif);font-size:20px;line-height:1;font-weight:800}

    body.page-template-page-contato .nav{display:flex;align-items:center;gap:22px;color:var(--soft);font-size:13px;font-weight:800}
    body.page-template-page-contato .nav a{position:relative;white-space:nowrap;transition:color .2s ease}
    body.page-template-page-contato .nav a::after{content:"";position:absolute;left:0;right:0;bottom:-8px;height:1px;background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform .2s ease}
    body.page-template-page-contato .nav a:hover, body.page-template-page-contato .nav a.active{color:var(--gold2)}
    body.page-template-page-contato .nav a:hover::after, body.page-template-page-contato .nav a.active::after{transform:scaleX(1)}

    body.page-template-page-contato .btn{border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:46px;padding:0 18px;border-radius:999px;font-size:13px;font-weight:900;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;transition:transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease}
    body.page-template-page-contato .btn:hover{transform:translateY(-1px)}
    body.page-template-page-contato .btn-primary{background:linear-gradient(135deg,var(--gold2),var(--gold));color:#130d05;box-shadow:0 16px 36px rgba(217,154,43,.2)}
    body.page-template-page-contato .btn-secondary{border:1px solid rgba(243,234,216,.16);background:rgba(243,234,216,.045);color:var(--paper)}
    body.page-template-page-contato .btn-secondary:hover{border-color:rgba(217,154,43,.45);color:var(--gold2);background:rgba(217,154,43,.08)}
    body.page-template-page-contato .btn-green{background:linear-gradient(135deg,#36e29b,var(--green));color:#04120c;box-shadow:0 16px 36px rgba(30,183,122,.16)}

    body.page-template-page-contato .hero{position:relative;overflow:hidden;border-bottom:1px solid var(--line);padding:76px 0 92px}
    body.page-template-page-contato .hero::before{content:"";position:absolute;inset:0;opacity:.2;background:linear-gradient(115deg,transparent 0%,rgba(217,154,43,.08) 42%,transparent 62%),repeating-linear-gradient(0deg,rgba(243,234,216,.05) 0 1px,transparent 1px 7px);pointer-events:none}
    body.page-template-page-contato .hero-grid{display:grid;grid-template-columns:1fr 360px;gap:34px;align-items:end}

    body.page-template-page-contato .eyebrow-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:22px}
    body.page-template-page-contato .badge{display:inline-flex;align-items:center;border-radius:999px;padding:7px 11px;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;border:1px solid rgba(217,154,43,.34);background:rgba(217,154,43,.09);color:#ffe1a1}
    body.page-template-page-contato .badge.green{border-color:rgba(30,183,122,.34);background:rgba(30,183,122,.1);color:#adffd7}
    body.page-template-page-contato .badge.red{border-color:rgba(158,47,36,.5);background:rgba(158,47,36,.16);color:#ffc4bc}
    body.page-template-page-contato .badge.paper{border-color:rgba(243,234,216,.22);background:rgba(243,234,216,.07);color:var(--paper)}

    body.page-template-page-contato h1, body.page-template-page-contato h2, body.page-template-page-contato h3{text-wrap:balance}
    body.page-template-page-contato .hero-title{margin:0;max-width:900px;font-family:var(--serif);font-size:clamp(44px,7vw,88px);line-height:.92;letter-spacing:-.055em;font-weight:900}
    body.page-template-page-contato .hero-title span{color:var(--gold2);text-shadow:0 0 34px rgba(217,154,43,.18)}
    body.page-template-page-contato .hero-copy{max-width:760px;margin:26px 0 0;font-size:18px;line-height:1.82;color:var(--soft)}

    body.page-template-page-contato .contact-index{border-radius:30px;border:1px solid rgba(217,154,43,.24);background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.16),transparent 38%),rgba(15,13,9,.72);box-shadow:var(--shadow);padding:22px}
    body.page-template-page-contato .contact-index-title{margin:0 0 16px;color:var(--gold2);font-size:11px;letter-spacing:.18em;text-transform:uppercase;font-weight:950}
    body.page-template-page-contato .index-list{display:grid;gap:12px}
    body.page-template-page-contato .index-item{display:flex;justify-content:space-between;gap:18px;padding:12px 0;border-bottom:1px solid rgba(243,234,216,.1)}
    body.page-template-page-contato .index-item:last-child{border-bottom:0}
    body.page-template-page-contato .index-item span{color:var(--muted);font-size:13px}
    body.page-template-page-contato .index-item strong{color:var(--paper);font-size:14px}

    body.page-template-page-contato section{padding:58px 0;position:relative}
    body.page-template-page-contato .section-head{display:flex;align-items:end;justify-content:space-between;gap:22px;margin-bottom:28px}
    body.page-template-page-contato .section-head h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,4vw,52px);line-height:1;letter-spacing:-.05em;font-weight:900}
    body.page-template-page-contato .section-head p{max-width:720px;margin:12px 0 0;color:var(--muted);line-height:1.7}

    body.page-template-page-contato .contact-layout{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:24px;align-items:start}
    body.page-template-page-contato .form-card, body.page-template-page-contato .side-card, body.page-template-page-contato .route-card, body.page-template-page-contato .cta-card{border-radius:30px;border:1px solid rgba(243,234,216,.11);background:rgba(243,234,216,.045);box-shadow:var(--shadow)}
    body.page-template-page-contato .form-card{padding:clamp(24px,4vw,38px)}
    body.page-template-page-contato .side-stack{position:sticky;top:112px;display:grid;gap:16px}
    body.page-template-page-contato .side-card{padding:24px;background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.13),transparent 38%),rgba(243,234,216,.04)}
    body.page-template-page-contato .side-card.green{border-color:rgba(30,183,122,.3);background:radial-gradient(circle at 24% 14%,rgba(30,183,122,.17),transparent 34%),rgba(30,183,122,.045)}
    body.page-template-page-contato .side-card.red{border-color:rgba(158,47,36,.42);background:radial-gradient(circle at 24% 14%,rgba(158,47,36,.2),transparent 32%),rgba(158,47,36,.065)}

    body.page-template-page-contato .component-title{display:flex;align-items:center;gap:10px;margin:0 0 18px;color:var(--gold2);font-size:12px;font-weight:950;letter-spacing:.18em;text-transform:uppercase}
    body.page-template-page-contato .form-card h2, body.page-template-page-contato .side-card h3, body.page-template-page-contato .route-card h3{margin:0;font-family:var(--serif);font-size:clamp(28px,3.4vw,44px);line-height:1.06;letter-spacing:-.04em;font-weight:900}
    body.page-template-page-contato .form-card p, body.page-template-page-contato .side-card p, body.page-template-page-contato .route-card p{color:var(--soft);line-height:1.75}

    body.page-template-page-contato .form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:24px}
    body.page-template-page-contato .field{display:grid;gap:8px}
    body.page-template-page-contato .field.full{grid-column:1 / -1}
    body.page-template-page-contato .field label{color:var(--gold2);font-size:11px;letter-spacing:.14em;text-transform:uppercase;font-weight:950}
    body.page-template-page-contato .field input, body.page-template-page-contato .field select, body.page-template-page-contato .field textarea{width:100%;border:1px solid rgba(243,234,216,.13);background:rgba(5,4,3,.58);color:var(--paper);border-radius:18px;padding:14px 16px;outline:0;transition:border-color .2s ease,background .2s ease}
    body.page-template-page-contato .field input:focus, body.page-template-page-contato .field select:focus, body.page-template-page-contato .field textarea:focus{border-color:rgba(217,154,43,.5);background:rgba(5,4,3,.75)}
    body.page-template-page-contato .field textarea{min-height:170px;resize:vertical;line-height:1.65}
    body.page-template-page-contato .field input::placeholder, body.page-template-page-contato .field textarea::placeholder{color:rgba(217,200,170,.55)}
    body.page-template-page-contato .field select option{background:#100d09;color:var(--paper)}
    body.page-template-page-contato .form-note{margin-top:18px;border-radius:20px;border:1px solid rgba(217,154,43,.16);background:rgba(217,154,43,.06);padding:16px;color:var(--muted);font-size:14px;line-height:1.7}
    body.page-template-page-contato .form-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:22px}

    body.page-template-page-contato .route-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
    body.page-template-page-contato .route-card{min-height:240px;padding:22px;display:flex;flex-direction:column;justify-content:space-between;background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.14),transparent 38%),rgba(243,234,216,.04);transition:transform .2s ease,border-color .2s ease}
    body.page-template-page-contato .route-card:hover{transform:translateY(-4px);border-color:rgba(217,154,43,.36)}
    body.page-template-page-contato .route-number{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;border:1px solid rgba(217,154,43,.3);background:rgba(217,154,43,.1);color:var(--gold2);font-family:var(--serif);font-weight:900;margin-bottom:18px}

    body.page-template-page-contato .quick-links{display:grid;gap:10px;margin-top:18px}
    body.page-template-page-contato .quick-links a{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:12px 0;border-bottom:1px solid rgba(243,234,216,.1);color:var(--soft);font-size:14px}
    body.page-template-page-contato .quick-links a:last-child{border-bottom:0}
    body.page-template-page-contato .quick-links a:hover{color:var(--gold2)}
    body.page-template-page-contato .quick-links span{color:var(--muted)}

    body.page-template-page-contato .cta-card{overflow:hidden;position:relative;border-radius:34px;border:1px solid rgba(30,183,122,.28);background:radial-gradient(circle at 82% 18%,rgba(30,183,122,.17),transparent 34%),radial-gradient(circle at 18% 88%,rgba(217,154,43,.14),transparent 30%),linear-gradient(135deg,rgba(22,18,13,.98),rgba(5,4,3,.98));box-shadow:var(--shadow);padding:46px}
    body.page-template-page-contato .cta-card::after{content:"";position:absolute;width:290px;height:290px;border:1px solid rgba(217,154,43,.18);border-radius:50%;right:-110px;top:-82px}
    body.page-template-page-contato .cta-content{position:relative;z-index:2;max-width:820px}
    body.page-template-page-contato .cta-card h2{margin:16px 0 0;font-family:var(--serif);font-size:clamp(36px,5vw,62px);line-height:.98;letter-spacing:-.052em}
    body.page-template-page-contato .cta-card p{max-width:700px;color:var(--soft);line-height:1.78}
    body.page-template-page-contato .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}

    body.page-template-page-contato .footer{border-top:1px solid var(--line);padding:38px 0;color:var(--muted)}
    body.page-template-page-contato .footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}
    body.page-template-page-contato .footer strong{color:var(--paper)}

    @media(max-width:1040px){body.page-template-page-contato .nav{display:none}body.page-template-page-contato .hero-grid, body.page-template-page-contato .contact-layout{grid-template-columns:1fr}body.page-template-page-contato .side-stack{position:static}body.page-template-page-contato .route-grid{grid-template-columns:repeat(2,1fr)}}
    @media(max-width:760px){body.page-template-page-contato .container{width:min(100% - 28px,1180px)}body.page-template-page-contato .top-alert-inner{align-items:start;flex-direction:column;justify-content:center;padding:10px 0}body.page-template-page-contato .brand{min-width:unset}body.page-template-page-contato .brand-title{font-size:17px}body.page-template-page-contato .header .btn-secondary{display:none}body.page-template-page-contato .hero{padding:58px 0 78px}body.page-template-page-contato .hero-copy{font-size:16px}body.page-template-page-contato .form-grid, body.page-template-page-contato .route-grid{grid-template-columns:1fr}body.page-template-page-contato .footer-inner{align-items:start;flex-direction:column}body.page-template-page-contato .cta-card, body.page-template-page-contato .form-card{padding:24px}}
  


/* ===== envie_relato.html scoped ===== */


    body.page-template-page-envie-relato{
      --black:#050403;
      --night:#0d0f12;
      --card:#16120d;
      --paper:#f3ead8;
      --soft:#d9c8aa;
      --muted:#a99675;
      --gold:#d99a2b;
      --gold2:#f0c36a;
      --green:#1eb77a;
      --red:#9e2f24;
      --line:rgba(243,234,216,.14);
      --shadow:0 28px 90px rgba(0,0,0,.46);
      --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      --serif:Georgia,"Times New Roman",serif;
      --mono:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
    }

    body.page-template-page-envie-relato *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body.page-template-page-envie-relato{margin:0;background:var(--black);color:var(--paper);font-family:var(--font);line-height:1.5;overflow-x:hidden}
    body.page-template-page-envie-relato a{color:inherit;text-decoration:none}
    body.page-template-page-envie-relato button, body.page-template-page-envie-relato input, body.page-template-page-envie-relato textarea, body.page-template-page-envie-relato select{font:inherit}

    body.page-template-page-envie-relato .page{
      min-height:100vh;
      position:relative;
      background:
        radial-gradient(circle at 12% 8%,rgba(217,154,43,.18),transparent 28%),
        radial-gradient(circle at 84% 2%,rgba(15,111,78,.18),transparent 26%),
        radial-gradient(circle at 58% 82%,rgba(158,47,36,.12),transparent 30%),
        linear-gradient(180deg,#070503 0%,#0d0f12 44%,#050403 100%);
    }

    body.page-template-page-envie-relato .page::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.22;
      background-image:
        linear-gradient(rgba(243,234,216,.055) 1px,transparent 1px),
        linear-gradient(90deg,rgba(243,234,216,.055) 1px,transparent 1px);
      background-size:58px 58px;
      mask-image:radial-gradient(circle at center,#000,transparent 72%);
    }

    body.page-template-page-envie-relato .container{width:min(1180px,calc(100% - 40px));margin:0 auto;position:relative;z-index:2}

    body.page-template-page-envie-relato .top-alert{border-bottom:1px solid rgba(217,154,43,.24);background:rgba(217,154,43,.08);color:var(--soft);font-size:12px;letter-spacing:.12em;text-transform:uppercase}
    body.page-template-page-envie-relato .top-alert-inner{min-height:38px;display:flex;align-items:center;justify-content:space-between;gap:16px}body.page-template-page-envie-relato .top-alert strong{color:var(--gold2)}

    body.page-template-page-envie-relato .header{position:sticky;top:0;z-index:50;border-bottom:1px solid var(--line);background:rgba(5,4,3,.86);backdrop-filter:blur(18px)}
    body.page-template-page-envie-relato .header-inner{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:24px}
    body.page-template-page-envie-relato .brand{display:flex;align-items:center;gap:14px;min-width:292px}body.page-template-page-envie-relato .brand-seal{width:50px;height:50px;border-radius:50%;border:1px solid rgba(217,154,43,.58);background:radial-gradient(circle,rgba(240,195,106,.2),transparent 54%),conic-gradient(from 180deg,rgba(217,154,43,.7),rgba(15,111,78,.58),rgba(158,47,36,.5),rgba(217,154,43,.7));display:grid;place-items:center;box-shadow:0 0 38px rgba(217,154,43,.16);flex:0 0 auto}body.page-template-page-envie-relato .brand-seal::after{content:"A";width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:#070503;color:var(--gold2);font-family:var(--serif);font-size:22px;font-weight:900}body.page-template-page-envie-relato .brand-kicker{margin:0;color:var(--muted);font-size:10px;letter-spacing:.24em;text-transform:uppercase;font-weight:900}body.page-template-page-envie-relato .brand-title{margin:2px 0 0;color:var(--paper);font-family:var(--serif);font-size:20px;line-height:1;font-weight:800}
    body.page-template-page-envie-relato .nav{display:flex;align-items:center;gap:22px;color:var(--soft);font-size:13px;font-weight:800}body.page-template-page-envie-relato .nav a{position:relative;white-space:nowrap;transition:color .2s ease}body.page-template-page-envie-relato .nav a::after{content:"";position:absolute;left:0;right:0;bottom:-8px;height:1px;background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform .2s ease}body.page-template-page-envie-relato .nav a:hover, body.page-template-page-envie-relato .nav a.active{color:var(--gold2)}body.page-template-page-envie-relato .nav a:hover::after, body.page-template-page-envie-relato .nav a.active::after{transform:scaleX(1)}
    body.page-template-page-envie-relato .btn{border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:46px;padding:0 18px;border-radius:999px;font-size:13px;font-weight:900;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;transition:transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease}body.page-template-page-envie-relato .btn:hover{transform:translateY(-1px)}body.page-template-page-envie-relato .btn-primary{background:linear-gradient(135deg,var(--gold2),var(--gold));color:#130d05;box-shadow:0 16px 36px rgba(217,154,43,.2)}body.page-template-page-envie-relato .btn-secondary{border:1px solid rgba(243,234,216,.16);background:rgba(243,234,216,.045);color:var(--paper)}body.page-template-page-envie-relato .btn-secondary:hover{border-color:rgba(217,154,43,.45);color:var(--gold2);background:rgba(217,154,43,.08)}body.page-template-page-envie-relato .btn-green{background:linear-gradient(135deg,#36e29b,var(--green));color:#04120c;box-shadow:0 16px 36px rgba(30,183,122,.16)}

    body.page-template-page-envie-relato .hero{position:relative;overflow:hidden;border-bottom:1px solid var(--line);padding:76px 0 92px}body.page-template-page-envie-relato .hero::before{content:"";position:absolute;inset:0;opacity:.2;background:linear-gradient(115deg,transparent 0%,rgba(217,154,43,.08) 42%,transparent 62%),repeating-linear-gradient(0deg,rgba(243,234,216,.05) 0 1px,transparent 1px 7px);pointer-events:none}body.page-template-page-envie-relato .hero-grid{display:grid;grid-template-columns:1fr 360px;gap:34px;align-items:end}
    body.page-template-page-envie-relato .eyebrow-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:22px}body.page-template-page-envie-relato .badge{display:inline-flex;align-items:center;border-radius:999px;padding:7px 11px;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;border:1px solid rgba(217,154,43,.34);background:rgba(217,154,43,.09);color:#ffe1a1}body.page-template-page-envie-relato .badge.green{border-color:rgba(30,183,122,.34);background:rgba(30,183,122,.1);color:#adffd7}body.page-template-page-envie-relato .badge.red{border-color:rgba(158,47,36,.5);background:rgba(158,47,36,.16);color:#ffc4bc}body.page-template-page-envie-relato .badge.paper{border-color:rgba(243,234,216,.22);background:rgba(243,234,216,.07);color:var(--paper)}
    body.page-template-page-envie-relato h1, body.page-template-page-envie-relato h2, body.page-template-page-envie-relato h3{text-wrap:balance}body.page-template-page-envie-relato .hero-title{margin:0;max-width:900px;font-family:var(--serif);font-size:clamp(44px,7vw,88px);line-height:.92;letter-spacing:-.055em;font-weight:900}body.page-template-page-envie-relato .hero-title span{color:var(--gold2);text-shadow:0 0 34px rgba(217,154,43,.18)}body.page-template-page-envie-relato .hero-copy{max-width:760px;margin:26px 0 0;font-size:18px;line-height:1.82;color:var(--soft)}

    body.page-template-page-envie-relato .file-index{border-radius:30px;border:1px solid rgba(217,154,43,.24);background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.16),transparent 38%),rgba(15,13,9,.72);box-shadow:var(--shadow);padding:22px}body.page-template-page-envie-relato .file-index-title{margin:0 0 16px;color:var(--gold2);font-size:11px;letter-spacing:.18em;text-transform:uppercase;font-weight:950}body.page-template-page-envie-relato .index-list{display:grid;gap:12px}body.page-template-page-envie-relato .index-item{display:flex;justify-content:space-between;gap:18px;padding:12px 0;border-bottom:1px solid rgba(243,234,216,.1)}body.page-template-page-envie-relato .index-item:last-child{border-bottom:0}body.page-template-page-envie-relato .index-item span{color:var(--muted);font-size:13px}body.page-template-page-envie-relato .index-item strong{color:var(--paper);font-size:14px}

    body.page-template-page-envie-relato section{padding:58px 0;position:relative}body.page-template-page-envie-relato .section-head{display:flex;align-items:end;justify-content:space-between;gap:22px;margin-bottom:28px}body.page-template-page-envie-relato .section-head h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,4vw,52px);line-height:1;letter-spacing:-.05em;font-weight:900}body.page-template-page-envie-relato .section-head p{max-width:720px;margin:12px 0 0;color:var(--muted);line-height:1.7}
    body.page-template-page-envie-relato .form-layout{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:24px;align-items:start}body.page-template-page-envie-relato .form-card, body.page-template-page-envie-relato .side-card, body.page-template-page-envie-relato .route-card, body.page-template-page-envie-relato .cta-card{border-radius:30px;border:1px solid rgba(243,234,216,.11);background:rgba(243,234,216,.045);box-shadow:var(--shadow)}body.page-template-page-envie-relato .form-card{padding:clamp(24px,4vw,38px)}body.page-template-page-envie-relato .side-stack{position:sticky;top:112px;display:grid;gap:16px}body.page-template-page-envie-relato .side-card{padding:24px;background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.13),transparent 38%),rgba(243,234,216,.04)}body.page-template-page-envie-relato .side-card.green{border-color:rgba(30,183,122,.3);background:radial-gradient(circle at 24% 14%,rgba(30,183,122,.17),transparent 34%),rgba(30,183,122,.045)}body.page-template-page-envie-relato .side-card.red{border-color:rgba(158,47,36,.42);background:radial-gradient(circle at 24% 14%,rgba(158,47,36,.2),transparent 32%),rgba(158,47,36,.065)}
    body.page-template-page-envie-relato .component-title{display:flex;align-items:center;gap:10px;margin:0 0 18px;color:var(--gold2);font-size:12px;font-weight:950;letter-spacing:.18em;text-transform:uppercase}body.page-template-page-envie-relato .form-card h2, body.page-template-page-envie-relato .side-card h3, body.page-template-page-envie-relato .route-card h3{margin:0;font-family:var(--serif);font-size:clamp(28px,3.4vw,44px);line-height:1.06;letter-spacing:-.04em;font-weight:900}body.page-template-page-envie-relato .form-card p, body.page-template-page-envie-relato .side-card p, body.page-template-page-envie-relato .route-card p{color:var(--soft);line-height:1.75}

    body.page-template-page-envie-relato .form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:24px}body.page-template-page-envie-relato .field{display:grid;gap:8px}body.page-template-page-envie-relato .field.full{grid-column:1 / -1}body.page-template-page-envie-relato .field label{color:var(--gold2);font-size:11px;letter-spacing:.14em;text-transform:uppercase;font-weight:950}body.page-template-page-envie-relato .field input, body.page-template-page-envie-relato .field select, body.page-template-page-envie-relato .field textarea{width:100%;border:1px solid rgba(243,234,216,.13);background:rgba(5,4,3,.58);color:var(--paper);border-radius:18px;padding:14px 16px;outline:0;transition:border-color .2s ease,background .2s ease}body.page-template-page-envie-relato .field input:focus, body.page-template-page-envie-relato .field select:focus, body.page-template-page-envie-relato .field textarea:focus{border-color:rgba(217,154,43,.5);background:rgba(5,4,3,.75)}body.page-template-page-envie-relato .field textarea{min-height:170px;resize:vertical;line-height:1.65}body.page-template-page-envie-relato .field input::placeholder, body.page-template-page-envie-relato .field textarea::placeholder{color:rgba(217,200,170,.55)}body.page-template-page-envie-relato .field select option{background:#100d09;color:var(--paper)}
    body.page-template-page-envie-relato .upload-box{border:1px dashed rgba(217,154,43,.36);border-radius:22px;background:rgba(217,154,43,.06);padding:20px;text-align:center;color:var(--soft)}body.page-template-page-envie-relato .upload-box strong{display:block;color:var(--paper);margin-bottom:6px}body.page-template-page-envie-relato .upload-box span{display:block;color:var(--muted);font-size:14px;line-height:1.6}body.page-template-page-envie-relato .checkbox-row{display:flex;align-items:flex-start;gap:10px;color:var(--soft);font-size:14px;line-height:1.6}body.page-template-page-envie-relato .checkbox-row input{margin-top:3px;accent-color:var(--gold)}body.page-template-page-envie-relato .form-note{margin-top:18px;border-radius:20px;border:1px solid rgba(158,47,36,.30);background:rgba(158,47,36,.09);padding:16px;color:var(--soft);font-size:14px;line-height:1.7}body.page-template-page-envie-relato .form-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:22px}

    body.page-template-page-envie-relato .route-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}body.page-template-page-envie-relato .route-card{min-height:235px;padding:22px;display:flex;flex-direction:column;justify-content:space-between;background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.14),transparent 38%),rgba(243,234,216,.04);transition:transform .2s ease,border-color .2s ease}body.page-template-page-envie-relato .route-card:hover{transform:translateY(-4px);border-color:rgba(217,154,43,.36)}body.page-template-page-envie-relato .route-number{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;border:1px solid rgba(217,154,43,.3);background:rgba(217,154,43,.1);color:var(--gold2);font-family:var(--serif);font-weight:900;margin-bottom:18px}body.page-template-page-envie-relato .article-link{display:inline-flex;align-items:center;gap:7px;margin-top:20px;color:var(--gold2);font-weight:900;font-size:13px;letter-spacing:.08em;text-transform:uppercase}

    body.page-template-page-envie-relato .quick-links{display:grid;gap:10px;margin-top:18px}body.page-template-page-envie-relato .quick-links a{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:12px 0;border-bottom:1px solid rgba(243,234,216,.1);color:var(--soft);font-size:14px}body.page-template-page-envie-relato .quick-links a:last-child{border-bottom:0}body.page-template-page-envie-relato .quick-links a:hover{color:var(--gold2)}body.page-template-page-envie-relato .quick-links span{color:var(--muted)}
    body.page-template-page-envie-relato .cta-card{overflow:hidden;position:relative;border-radius:34px;border:1px solid rgba(30,183,122,.28);background:radial-gradient(circle at 82% 18%,rgba(30,183,122,.17),transparent 34%),radial-gradient(circle at 18% 88%,rgba(217,154,43,.14),transparent 30%),linear-gradient(135deg,rgba(22,18,13,.98),rgba(5,4,3,.98));box-shadow:var(--shadow);padding:46px}body.page-template-page-envie-relato .cta-card::after{content:"";position:absolute;width:290px;height:290px;border:1px solid rgba(217,154,43,.18);border-radius:50%;right:-110px;top:-82px}body.page-template-page-envie-relato .cta-content{position:relative;z-index:2;max-width:820px}body.page-template-page-envie-relato .cta-card h2{margin:16px 0 0;font-family:var(--serif);font-size:clamp(36px,5vw,62px);line-height:.98;letter-spacing:-.052em}body.page-template-page-envie-relato .cta-card p{max-width:700px;color:var(--soft);line-height:1.78}body.page-template-page-envie-relato .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}
    body.page-template-page-envie-relato .footer{border-top:1px solid var(--line);padding:38px 0;color:var(--muted)}body.page-template-page-envie-relato .footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}body.page-template-page-envie-relato .footer strong{color:var(--paper)}

    @media(max-width:1040px){body.page-template-page-envie-relato .nav{display:none}body.page-template-page-envie-relato .hero-grid, body.page-template-page-envie-relato .form-layout{grid-template-columns:1fr}body.page-template-page-envie-relato .side-stack{position:static}body.page-template-page-envie-relato .route-grid{grid-template-columns:repeat(2,1fr)}}
    @media(max-width:760px){body.page-template-page-envie-relato .container{width:min(100% - 28px,1180px)}body.page-template-page-envie-relato .top-alert-inner{align-items:start;flex-direction:column;justify-content:center;padding:10px 0}body.page-template-page-envie-relato .brand{min-width:unset}body.page-template-page-envie-relato .brand-title{font-size:17px}body.page-template-page-envie-relato .header .btn-secondary{display:none}body.page-template-page-envie-relato .hero{padding:58px 0 78px}body.page-template-page-envie-relato .hero-copy{font-size:16px}body.page-template-page-envie-relato .form-grid, body.page-template-page-envie-relato .route-grid{grid-template-columns:1fr}body.page-template-page-envie-relato .footer-inner{align-items:start;flex-direction:column}body.page-template-page-envie-relato .cta-card, body.page-template-page-envie-relato .form-card{padding:24px}}
  


/* ===== downloads.html scoped ===== */


    body.page-template-page-downloads{
      --black:#050403;
      --night:#0d0f12;
      --card:#16120d;
      --paper:#f3ead8;
      --soft:#d9c8aa;
      --muted:#a99675;
      --gold:#d99a2b;
      --gold2:#f0c36a;
      --green:#1eb77a;
      --red:#9e2f24;
      --line:rgba(243,234,216,.14);
      --shadow:0 28px 90px rgba(0,0,0,.46);
      --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      --serif:Georgia,"Times New Roman",serif;
      --mono:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
    }

    body.page-template-page-downloads *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body.page-template-page-downloads{margin:0;background:var(--black);color:var(--paper);font-family:var(--font);line-height:1.5;overflow-x:hidden}
    body.page-template-page-downloads a{color:inherit;text-decoration:none}
    body.page-template-page-downloads button, body.page-template-page-downloads input, body.page-template-page-downloads select{font:inherit}

    body.page-template-page-downloads .page{min-height:100vh;position:relative;background:radial-gradient(circle at 12% 8%,rgba(217,154,43,.18),transparent 28%),radial-gradient(circle at 84% 2%,rgba(15,111,78,.18),transparent 26%),radial-gradient(circle at 58% 82%,rgba(158,47,36,.12),transparent 30%),linear-gradient(180deg,#070503 0%,#0d0f12 44%,#050403 100%)}
    body.page-template-page-downloads .page::before{content:"";position:fixed;inset:0;pointer-events:none;opacity:.22;background-image:linear-gradient(rgba(243,234,216,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(243,234,216,.055) 1px,transparent 1px);background-size:58px 58px;mask-image:radial-gradient(circle at center,#000,transparent 72%)}
    body.page-template-page-downloads .container{width:min(1180px,calc(100% - 40px));margin:0 auto;position:relative;z-index:2}

    body.page-template-page-downloads .top-alert{border-bottom:1px solid rgba(217,154,43,.24);background:rgba(217,154,43,.08);color:var(--soft);font-size:12px;letter-spacing:.12em;text-transform:uppercase}
    body.page-template-page-downloads .top-alert-inner{min-height:38px;display:flex;align-items:center;justify-content:space-between;gap:16px}body.page-template-page-downloads .top-alert strong{color:var(--gold2)}

    body.page-template-page-downloads .header{position:sticky;top:0;z-index:50;border-bottom:1px solid var(--line);background:rgba(5,4,3,.86);backdrop-filter:blur(18px)}
    body.page-template-page-downloads .header-inner{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:24px}
    body.page-template-page-downloads .brand{display:flex;align-items:center;gap:14px;min-width:292px}body.page-template-page-downloads .brand-seal{width:50px;height:50px;border-radius:50%;border:1px solid rgba(217,154,43,.58);background:radial-gradient(circle,rgba(240,195,106,.2),transparent 54%),conic-gradient(from 180deg,rgba(217,154,43,.7),rgba(15,111,78,.58),rgba(158,47,36,.5),rgba(217,154,43,.7));display:grid;place-items:center;box-shadow:0 0 38px rgba(217,154,43,.16);flex:0 0 auto}body.page-template-page-downloads .brand-seal::after{content:"A";width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:#070503;color:var(--gold2);font-family:var(--serif);font-size:22px;font-weight:900}body.page-template-page-downloads .brand-kicker{margin:0;color:var(--muted);font-size:10px;letter-spacing:.24em;text-transform:uppercase;font-weight:900}body.page-template-page-downloads .brand-title{margin:2px 0 0;color:var(--paper);font-family:var(--serif);font-size:20px;line-height:1;font-weight:800}
    body.page-template-page-downloads .nav{display:flex;align-items:center;gap:22px;color:var(--soft);font-size:13px;font-weight:800}body.page-template-page-downloads .nav a{position:relative;white-space:nowrap;transition:color .2s ease}body.page-template-page-downloads .nav a::after{content:"";position:absolute;left:0;right:0;bottom:-8px;height:1px;background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform .2s ease}body.page-template-page-downloads .nav a:hover, body.page-template-page-downloads .nav a.active{color:var(--gold2)}body.page-template-page-downloads .nav a:hover::after, body.page-template-page-downloads .nav a.active::after{transform:scaleX(1)}
    body.page-template-page-downloads .btn{border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:46px;padding:0 18px;border-radius:999px;font-size:13px;font-weight:900;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;transition:transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease}body.page-template-page-downloads .btn:hover{transform:translateY(-1px)}body.page-template-page-downloads .btn-primary{background:linear-gradient(135deg,var(--gold2),var(--gold));color:#130d05;box-shadow:0 16px 36px rgba(217,154,43,.2)}body.page-template-page-downloads .btn-secondary{border:1px solid rgba(243,234,216,.16);background:rgba(243,234,216,.045);color:var(--paper)}body.page-template-page-downloads .btn-green{background:linear-gradient(135deg,#36e29b,var(--green));color:#04120c;box-shadow:0 16px 36px rgba(30,183,122,.16)}

    body.page-template-page-downloads .hero{position:relative;overflow:hidden;border-bottom:1px solid var(--line);padding:76px 0 92px}body.page-template-page-downloads .hero::before{content:"";position:absolute;inset:0;opacity:.2;background:linear-gradient(115deg,transparent 0%,rgba(217,154,43,.08) 42%,transparent 62%),repeating-linear-gradient(0deg,rgba(243,234,216,.05) 0 1px,transparent 1px 7px);pointer-events:none}body.page-template-page-downloads .hero-grid{display:grid;grid-template-columns:1fr 360px;gap:34px;align-items:end}
    body.page-template-page-downloads .eyebrow-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:22px}body.page-template-page-downloads .badge{display:inline-flex;align-items:center;border-radius:999px;padding:7px 11px;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;border:1px solid rgba(217,154,43,.34);background:rgba(217,154,43,.09);color:#ffe1a1}body.page-template-page-downloads .badge.green{border-color:rgba(30,183,122,.34);background:rgba(30,183,122,.1);color:#adffd7}body.page-template-page-downloads .badge.red{border-color:rgba(158,47,36,.5);background:rgba(158,47,36,.16);color:#ffc4bc}body.page-template-page-downloads .badge.paper{border-color:rgba(243,234,216,.22);background:rgba(243,234,216,.07);color:var(--paper)}
    body.page-template-page-downloads h1, body.page-template-page-downloads h2, body.page-template-page-downloads h3{text-wrap:balance}body.page-template-page-downloads .hero-title{margin:0;max-width:900px;font-family:var(--serif);font-size:clamp(44px,7vw,88px);line-height:.92;letter-spacing:-.055em;font-weight:900}body.page-template-page-downloads .hero-title span{color:var(--gold2);text-shadow:0 0 34px rgba(217,154,43,.18)}body.page-template-page-downloads .hero-copy{max-width:760px;margin:26px 0 0;font-size:18px;line-height:1.82;color:var(--soft)}

    body.page-template-page-downloads .download-index{border-radius:30px;border:1px solid rgba(217,154,43,.24);background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.16),transparent 38%),rgba(15,13,9,.72);box-shadow:var(--shadow);padding:22px}body.page-template-page-downloads .download-index-title{margin:0 0 16px;color:var(--gold2);font-size:11px;letter-spacing:.18em;text-transform:uppercase;font-weight:950}body.page-template-page-downloads .index-list{display:grid;gap:12px}body.page-template-page-downloads .index-item{display:flex;justify-content:space-between;gap:18px;padding:12px 0;border-bottom:1px solid rgba(243,234,216,.1)}body.page-template-page-downloads .index-item:last-child{border-bottom:0}body.page-template-page-downloads .index-item span{color:var(--muted);font-size:13px}body.page-template-page-downloads .index-item strong{color:var(--paper);font-size:14px}

    body.page-template-page-downloads .filter-module{margin-top:-34px;padding:0 0 50px;position:relative;z-index:6}body.page-template-page-downloads .filter-card{border-radius:30px;border:1px solid rgba(217,154,43,.24);background:rgba(15,13,9,.9);box-shadow:var(--shadow);backdrop-filter:blur(18px);padding:18px}body.page-template-page-downloads .filter-row{display:grid;grid-template-columns:1fr 190px 150px;gap:12px}body.page-template-page-downloads .input-wrap, body.page-template-page-downloads .select-wrap{min-width:0;border-radius:999px;border:1px solid rgba(243,234,216,.13);background:rgba(5,4,3,.7);display:flex;align-items:center;gap:12px;padding:0 18px;color:var(--gold2)}body.page-template-page-downloads .input-wrap input, body.page-template-page-downloads .select-wrap select{width:100%;min-height:52px;border:0;outline:0;background:transparent;color:var(--paper)}body.page-template-page-downloads .select-wrap select option{background:#100d09;color:var(--paper)}body.page-template-page-downloads .input-wrap input::placeholder{color:rgba(217,200,170,.62)}body.page-template-page-downloads .chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}body.page-template-page-downloads .chip{border:1px solid rgba(243,234,216,.13);background:rgba(243,234,216,.04);color:var(--soft);border-radius:999px;padding:8px 11px;font-size:12px;cursor:pointer;transition:.2s ease}body.page-template-page-downloads .chip:hover, body.page-template-page-downloads .chip.active{border-color:rgba(217,154,43,.42);color:var(--gold2);background:rgba(217,154,43,.08)}

    body.page-template-page-downloads section{padding:58px 0;position:relative}body.page-template-page-downloads .section-head{display:flex;align-items:end;justify-content:space-between;gap:22px;margin-bottom:28px}body.page-template-page-downloads .section-head h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,4vw,52px);line-height:1;letter-spacing:-.05em;font-weight:900}body.page-template-page-downloads .section-head p{max-width:720px;margin:12px 0 0;color:var(--muted);line-height:1.7}
    body.page-template-page-downloads .featured{border-radius:34px;border:1px solid rgba(30,183,122,.28);background:radial-gradient(circle at 82% 18%,rgba(30,183,122,.17),transparent 34%),radial-gradient(circle at 18% 88%,rgba(217,154,43,.14),transparent 30%),linear-gradient(135deg,rgba(22,18,13,.98),rgba(5,4,3,.98));box-shadow:var(--shadow);padding:34px;overflow:hidden;position:relative}body.page-template-page-downloads .featured::after{content:"DOWNLOAD";position:absolute;right:-22px;top:24px;color:rgba(243,234,216,.045);font-family:var(--serif);font-size:78px;font-weight:900;writing-mode:vertical-rl;transform:rotate(180deg)}body.page-template-page-downloads .featured-inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr 260px;gap:28px;align-items:center}body.page-template-page-downloads .featured h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,5vw,62px);line-height:.98;letter-spacing:-.052em}body.page-template-page-downloads .featured p{max-width:680px;color:var(--soft);line-height:1.78}body.page-template-page-downloads .file-preview{min-height:320px;border-radius:24px;border:1px solid rgba(217,154,43,.22);background:linear-gradient(180deg,rgba(243,234,216,.08),rgba(5,4,3,.72)),radial-gradient(circle at 50% 20%,rgba(217,154,43,.20),transparent 30%),#130d09;box-shadow:0 28px 70px rgba(0,0,0,.35);display:grid;place-items:center;text-align:center;padding:22px}body.page-template-page-downloads .file-preview strong{font-family:var(--serif);font-size:32px;line-height:1;color:var(--paper)}body.page-template-page-downloads .file-preview span{display:block;margin-top:12px;color:var(--muted);font-family:var(--mono);font-size:12px;letter-spacing:.12em;text-transform:uppercase}

    body.page-template-page-downloads .downloads-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}body.page-template-page-downloads .download-card{border-radius:30px;border:1px solid rgba(243,234,216,.1);background:rgba(22,18,13,.86);box-shadow:var(--shadow);padding:24px;min-height:300px;display:flex;flex-direction:column;justify-content:space-between;transition:transform .2s ease,border-color .2s ease}body.page-template-page-downloads .download-card:hover{transform:translateY(-5px);border-color:rgba(217,154,43,.36)}body.page-template-page-downloads .download-icon{width:54px;height:54px;border-radius:50%;border:1px solid rgba(217,154,43,.34);background:rgba(217,154,43,.1);display:grid;place-items:center;color:var(--gold2);font-family:var(--serif);font-size:24px;font-weight:900;margin-bottom:18px}body.page-template-page-downloads .download-card h3{margin:0;font-family:var(--serif);font-size:30px;line-height:1.06;letter-spacing:-.04em}body.page-template-page-downloads .download-card p{color:var(--soft);line-height:1.72}body.page-template-page-downloads .download-meta{display:flex;gap:8px;flex-wrap:wrap;margin-top:14px}body.page-template-page-downloads .pill{border:1px solid rgba(243,234,216,.12);background:rgba(5,4,3,.36);border-radius:999px;padding:6px 9px;color:var(--muted);font-size:11px;letter-spacing:.08em;text-transform:uppercase;font-weight:800}body.page-template-page-downloads .article-link{display:inline-flex;align-items:center;gap:7px;margin-top:20px;color:var(--gold2);font-weight:900;font-size:13px;letter-spacing:.08em;text-transform:uppercase}
    body.page-template-page-downloads .notice{border-radius:30px;border:1px solid rgba(158,47,36,.34);background:radial-gradient(circle at 24% 14%,rgba(158,47,36,.16),transparent 32%),rgba(158,47,36,.065);box-shadow:var(--shadow);padding:28px}body.page-template-page-downloads .notice h3{margin:0;font-family:var(--serif);font-size:clamp(28px,3vw,42px);line-height:1.06;letter-spacing:-.04em}body.page-template-page-downloads .notice p{color:var(--soft);line-height:1.78}
    body.page-template-page-downloads .footer{border-top:1px solid var(--line);padding:38px 0;color:var(--muted)}body.page-template-page-downloads .footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}body.page-template-page-downloads .footer strong{color:var(--paper)}

    @media(max-width:1040px){body.page-template-page-downloads .nav{display:none}body.page-template-page-downloads .hero-grid, body.page-template-page-downloads .featured-inner{grid-template-columns:1fr}body.page-template-page-downloads .filter-row{grid-template-columns:1fr}body.page-template-page-downloads .downloads-grid{grid-template-columns:repeat(2,1fr)}}
    @media(max-width:760px){body.page-template-page-downloads .container{width:min(100% - 28px,1180px)}body.page-template-page-downloads .top-alert-inner{align-items:start;flex-direction:column;justify-content:center;padding:10px 0}body.page-template-page-downloads .brand{min-width:unset}body.page-template-page-downloads .brand-title{font-size:17px}body.page-template-page-downloads .header .btn-secondary{display:none}body.page-template-page-downloads .hero{padding:58px 0 82px}body.page-template-page-downloads .hero-copy{font-size:16px}body.page-template-page-downloads .downloads-grid{grid-template-columns:1fr}body.page-template-page-downloads .featured{padding:24px}body.page-template-page-downloads .footer-inner{align-items:start;flex-direction:column}}
  


/* ===== newsletter.html scoped ===== */


    body.page-template-page-newsletter{
      --black:#050403;
      --night:#0d0f12;
      --paper:#f3ead8;
      --soft:#d9c8aa;
      --muted:#a99675;
      --gold:#d99a2b;
      --gold2:#f0c36a;
      --green:#1eb77a;
      --red:#9e2f24;
      --line:rgba(243,234,216,.14);
      --shadow:0 28px 90px rgba(0,0,0,.46);
      --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      --serif:Georgia,"Times New Roman",serif;
      --mono:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
    }

    body.page-template-page-newsletter *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body.page-template-page-newsletter{margin:0;background:var(--black);color:var(--paper);font-family:var(--font);line-height:1.5;overflow-x:hidden}
    body.page-template-page-newsletter a{color:inherit;text-decoration:none}
    body.page-template-page-newsletter button, body.page-template-page-newsletter input{font:inherit}

    body.page-template-page-newsletter .page{min-height:100vh;position:relative;background:radial-gradient(circle at 12% 8%,rgba(217,154,43,.18),transparent 28%),radial-gradient(circle at 84% 2%,rgba(15,111,78,.18),transparent 26%),radial-gradient(circle at 58% 82%,rgba(158,47,36,.12),transparent 30%),linear-gradient(180deg,#070503 0%,#0d0f12 48%,#050403 100%);display:flex;flex-direction:column}
    body.page-template-page-newsletter .page::before{content:"";position:fixed;inset:0;pointer-events:none;opacity:.22;background-image:linear-gradient(rgba(243,234,216,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(243,234,216,.055) 1px,transparent 1px);background-size:58px 58px;mask-image:radial-gradient(circle at center,#000,transparent 72%)}
    body.page-template-page-newsletter .page::after{content:"TRANSMISSÃO";position:absolute;right:-28px;bottom:5vh;color:rgba(243,234,216,.04);font-family:var(--serif);font-size:clamp(78px,14vw,190px);font-weight:900;letter-spacing:-.07em;pointer-events:none}

    body.page-template-page-newsletter .container{width:min(1120px,calc(100% - 40px));margin:0 auto;position:relative;z-index:2}

    body.page-template-page-newsletter .header{border-bottom:1px solid var(--line);background:rgba(5,4,3,.82);backdrop-filter:blur(18px)}
    body.page-template-page-newsletter .header-inner{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:24px}
    body.page-template-page-newsletter .brand{display:flex;align-items:center;gap:14px;min-width:292px}body.page-template-page-newsletter .brand-seal{width:50px;height:50px;border-radius:50%;border:1px solid rgba(217,154,43,.58);background:radial-gradient(circle,rgba(240,195,106,.2),transparent 54%),conic-gradient(from 180deg,rgba(217,154,43,.7),rgba(15,111,78,.58),rgba(158,47,36,.5),rgba(217,154,43,.7));display:grid;place-items:center;box-shadow:0 0 38px rgba(217,154,43,.16);flex:0 0 auto}body.page-template-page-newsletter .brand-seal::after{content:"A";width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:#070503;color:var(--gold2);font-family:var(--serif);font-size:22px;font-weight:900}body.page-template-page-newsletter .brand-kicker{margin:0;color:var(--muted);font-size:10px;letter-spacing:.24em;text-transform:uppercase;font-weight:900}body.page-template-page-newsletter .brand-title{margin:2px 0 0;color:var(--paper);font-family:var(--serif);font-size:20px;line-height:1;font-weight:800}
    body.page-template-page-newsletter .header-links{display:flex;align-items:center;gap:18px;color:var(--soft);font-size:13px;font-weight:800}body.page-template-page-newsletter .header-links a:hover{color:var(--gold2)}

    body.page-template-page-newsletter .btn{border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:48px;padding:0 20px;border-radius:999px;font-size:13px;font-weight:900;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;transition:transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease}body.page-template-page-newsletter .btn:hover{transform:translateY(-1px)}body.page-template-page-newsletter .btn-primary{background:linear-gradient(135deg,var(--gold2),var(--gold));color:#130d05;box-shadow:0 16px 36px rgba(217,154,43,.2)}body.page-template-page-newsletter .btn-secondary{border:1px solid rgba(243,234,216,.16);background:rgba(243,234,216,.045);color:var(--paper)}body.page-template-page-newsletter .btn-green{background:linear-gradient(135deg,#36e29b,var(--green));color:#04120c;box-shadow:0 16px 36px rgba(30,183,122,.16)}

    body.page-template-page-newsletter main{flex:1;display:grid;align-items:center;padding:74px 0}
    body.page-template-page-newsletter .hero-grid{display:grid;grid-template-columns:minmax(0,1fr) 410px;gap:42px;align-items:center}
    body.page-template-page-newsletter .badge{display:inline-flex;align-items:center;border-radius:999px;padding:7px 11px;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;border:1px solid rgba(30,183,122,.34);background:rgba(30,183,122,.1);color:#adffd7}
    body.page-template-page-newsletter h1{margin:22px 0 0;font-family:var(--serif);font-size:clamp(48px,7.6vw,96px);line-height:.9;letter-spacing:-.06em;font-weight:900;text-wrap:balance}body.page-template-page-newsletter h1 span{color:var(--gold2);text-shadow:0 0 34px rgba(217,154,43,.18)}
    body.page-template-page-newsletter .copy{max-width:720px;margin:26px 0 0;color:var(--soft);font-size:18px;line-height:1.82}
    body.page-template-page-newsletter .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:30px}

    body.page-template-page-newsletter .signup-card{position:relative;overflow:hidden;border-radius:34px;border:1px solid rgba(30,183,122,.28);background:radial-gradient(circle at 82% 18%,rgba(30,183,122,.17),transparent 34%),radial-gradient(circle at 18% 88%,rgba(217,154,43,.14),transparent 30%),linear-gradient(135deg,rgba(22,18,13,.98),rgba(5,4,3,.98));box-shadow:var(--shadow);padding:30px}body.page-template-page-newsletter .signup-card::after{content:"LISTA";position:absolute;right:-22px;top:22px;color:rgba(243,234,216,.05);font-family:var(--serif);font-size:78px;font-weight:900;writing-mode:vertical-rl;transform:rotate(180deg)}body.page-template-page-newsletter .signup-inner{position:relative;z-index:2}body.page-template-page-newsletter .component-title{margin:0 0 18px;color:var(--gold2);font-size:12px;font-weight:950;letter-spacing:.18em;text-transform:uppercase}body.page-template-page-newsletter .signup-card h2{margin:0;font-family:var(--serif);font-size:clamp(30px,4vw,46px);line-height:1.04;letter-spacing:-.045em}body.page-template-page-newsletter .signup-card p{color:var(--soft);line-height:1.75}
    body.page-template-page-newsletter .form{display:grid;gap:12px;margin-top:22px}body.page-template-page-newsletter .field{display:grid;gap:8px}body.page-template-page-newsletter .field label{color:var(--gold2);font-size:11px;letter-spacing:.14em;text-transform:uppercase;font-weight:950}body.page-template-page-newsletter .field input{width:100%;border:1px solid rgba(243,234,216,.13);background:rgba(5,4,3,.58);color:var(--paper);border-radius:18px;padding:15px 16px;outline:0}body.page-template-page-newsletter .field input:focus{border-color:rgba(217,154,43,.5);background:rgba(5,4,3,.75)}body.page-template-page-newsletter .field input::placeholder{color:rgba(217,200,170,.55)}body.page-template-page-newsletter .checks{display:grid;gap:10px;margin-top:8px}body.page-template-page-newsletter .check{display:flex;align-items:flex-start;gap:10px;color:var(--soft);font-size:14px;line-height:1.55}body.page-template-page-newsletter .check input{margin-top:3px;accent-color:var(--gold)}body.page-template-page-newsletter .small-note{margin-top:14px;color:var(--muted);font-size:13px;line-height:1.6}

    body.page-template-page-newsletter .benefits{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:48px}body.page-template-page-newsletter .benefit{border-radius:24px;border:1px solid rgba(243,234,216,.1);background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.13),transparent 38%),rgba(243,234,216,.04);padding:20px}body.page-template-page-newsletter .benefit strong{display:block;color:var(--paper);font-family:var(--serif);font-size:24px;line-height:1.08}body.page-template-page-newsletter .benefit span{display:block;margin-top:10px;color:var(--muted);font-size:14px;line-height:1.6}
    body.page-template-page-newsletter .footer{border-top:1px solid var(--line);padding:28px 0;color:var(--muted);font-size:14px}body.page-template-page-newsletter .footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}body.page-template-page-newsletter .footer strong{color:var(--paper)}

    @media(max-width:980px){body.page-template-page-newsletter .hero-grid{grid-template-columns:1fr}body.page-template-page-newsletter .signup-card{max-width:720px}body.page-template-page-newsletter .benefits{grid-template-columns:1fr}body.page-template-page-newsletter .header-links{display:none}}
    @media(max-width:640px){body.page-template-page-newsletter .container{width:min(100% - 28px,1120px)}body.page-template-page-newsletter .brand{min-width:0}body.page-template-page-newsletter .brand-title{font-size:17px}body.page-template-page-newsletter main{padding:54px 0}body.page-template-page-newsletter .copy{font-size:16px}body.page-template-page-newsletter .signup-card{padding:24px}body.page-template-page-newsletter .footer-inner{align-items:flex-start;flex-direction:column}body.page-template-page-newsletter .page::after{display:none}body.page-template-page-newsletter .btn{width:100%}}
  


/* ===== pesquisa.html scoped ===== */


    body.page-template-page-pesquisa{
      --black:#050403;
      --night:#0d0f12;
      --card:#16120d;
      --paper:#f3ead8;
      --soft:#d9c8aa;
      --muted:#a99675;
      --gold:#d99a2b;
      --gold2:#f0c36a;
      --green:#1eb77a;
      --red:#9e2f24;
      --line:rgba(243,234,216,.14);
      --shadow:0 28px 90px rgba(0,0,0,.46);
      --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      --serif:Georgia,"Times New Roman",serif;
      --mono:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
    }

    body.page-template-page-pesquisa *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body.page-template-page-pesquisa{margin:0;background:var(--black);color:var(--paper);font-family:var(--font);line-height:1.5;overflow-x:hidden}
    body.page-template-page-pesquisa a{color:inherit;text-decoration:none}
    body.page-template-page-pesquisa button, body.page-template-page-pesquisa input, body.page-template-page-pesquisa select{font:inherit}

    body.page-template-page-pesquisa .page{min-height:100vh;position:relative;background:radial-gradient(circle at 12% 8%,rgba(217,154,43,.18),transparent 28%),radial-gradient(circle at 84% 2%,rgba(15,111,78,.18),transparent 26%),radial-gradient(circle at 58% 82%,rgba(158,47,36,.12),transparent 30%),linear-gradient(180deg,#070503 0%,#0d0f12 44%,#050403 100%)}
    body.page-template-page-pesquisa .page::before{content:"";position:fixed;inset:0;pointer-events:none;opacity:.22;background-image:linear-gradient(rgba(243,234,216,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(243,234,216,.055) 1px,transparent 1px);background-size:58px 58px;mask-image:radial-gradient(circle at center,#000,transparent 72%)}
    body.page-template-page-pesquisa .container{width:min(1180px,calc(100% - 40px));margin:0 auto;position:relative;z-index:2}

    body.page-template-page-pesquisa .top-alert{border-bottom:1px solid rgba(217,154,43,.24);background:rgba(217,154,43,.08);color:var(--soft);font-size:12px;letter-spacing:.12em;text-transform:uppercase}
    body.page-template-page-pesquisa .top-alert-inner{min-height:38px;display:flex;align-items:center;justify-content:space-between;gap:16px}body.page-template-page-pesquisa .top-alert strong{color:var(--gold2)}
    body.page-template-page-pesquisa .header{position:sticky;top:0;z-index:50;border-bottom:1px solid var(--line);background:rgba(5,4,3,.86);backdrop-filter:blur(18px)}
    body.page-template-page-pesquisa .header-inner{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:24px}
    body.page-template-page-pesquisa .brand{display:flex;align-items:center;gap:14px;min-width:292px}body.page-template-page-pesquisa .brand-seal{width:50px;height:50px;border-radius:50%;border:1px solid rgba(217,154,43,.58);background:radial-gradient(circle,rgba(240,195,106,.2),transparent 54%),conic-gradient(from 180deg,rgba(217,154,43,.7),rgba(15,111,78,.58),rgba(158,47,36,.5),rgba(217,154,43,.7));display:grid;place-items:center;box-shadow:0 0 38px rgba(217,154,43,.16);flex:0 0 auto}body.page-template-page-pesquisa .brand-seal::after{content:"A";width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:#070503;color:var(--gold2);font-family:var(--serif);font-size:22px;font-weight:900}body.page-template-page-pesquisa .brand-kicker{margin:0;color:var(--muted);font-size:10px;letter-spacing:.24em;text-transform:uppercase;font-weight:900}body.page-template-page-pesquisa .brand-title{margin:2px 0 0;color:var(--paper);font-family:var(--serif);font-size:20px;line-height:1;font-weight:800}
    body.page-template-page-pesquisa .nav{display:flex;align-items:center;gap:22px;color:var(--soft);font-size:13px;font-weight:800}body.page-template-page-pesquisa .nav a{position:relative;white-space:nowrap;transition:color .2s ease}body.page-template-page-pesquisa .nav a::after{content:"";position:absolute;left:0;right:0;bottom:-8px;height:1px;background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform .2s ease}body.page-template-page-pesquisa .nav a:hover, body.page-template-page-pesquisa .nav a.active{color:var(--gold2)}body.page-template-page-pesquisa .nav a:hover::after, body.page-template-page-pesquisa .nav a.active::after{transform:scaleX(1)}
    body.page-template-page-pesquisa .btn{border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:46px;padding:0 18px;border-radius:999px;font-size:13px;font-weight:900;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;transition:transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease}body.page-template-page-pesquisa .btn:hover{transform:translateY(-1px)}body.page-template-page-pesquisa .btn-primary{background:linear-gradient(135deg,var(--gold2),var(--gold));color:#130d05;box-shadow:0 16px 36px rgba(217,154,43,.2)}body.page-template-page-pesquisa .btn-secondary{border:1px solid rgba(243,234,216,.16);background:rgba(243,234,216,.045);color:var(--paper)}body.page-template-page-pesquisa .btn-green{background:linear-gradient(135deg,#36e29b,var(--green));color:#04120c;box-shadow:0 16px 36px rgba(30,183,122,.16)}

    body.page-template-page-pesquisa .hero{position:relative;overflow:hidden;border-bottom:1px solid var(--line);padding:76px 0 92px}body.page-template-page-pesquisa .hero::before{content:"";position:absolute;inset:0;opacity:.2;background:linear-gradient(115deg,transparent 0%,rgba(217,154,43,.08) 42%,transparent 62%),repeating-linear-gradient(0deg,rgba(243,234,216,.05) 0 1px,transparent 1px 7px);pointer-events:none}body.page-template-page-pesquisa .hero-grid{display:grid;grid-template-columns:1fr 360px;gap:34px;align-items:end}
    body.page-template-page-pesquisa .eyebrow-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:22px}body.page-template-page-pesquisa .badge{display:inline-flex;align-items:center;border-radius:999px;padding:7px 11px;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;border:1px solid rgba(217,154,43,.34);background:rgba(217,154,43,.09);color:#ffe1a1}body.page-template-page-pesquisa .badge.green{border-color:rgba(30,183,122,.34);background:rgba(30,183,122,.1);color:#adffd7}body.page-template-page-pesquisa .badge.red{border-color:rgba(158,47,36,.5);background:rgba(158,47,36,.16);color:#ffc4bc}body.page-template-page-pesquisa .badge.paper{border-color:rgba(243,234,216,.22);background:rgba(243,234,216,.07);color:var(--paper)}
    body.page-template-page-pesquisa h1, body.page-template-page-pesquisa h2, body.page-template-page-pesquisa h3{text-wrap:balance}body.page-template-page-pesquisa .hero-title{margin:0;max-width:900px;font-family:var(--serif);font-size:clamp(44px,7vw,88px);line-height:.92;letter-spacing:-.055em;font-weight:900}body.page-template-page-pesquisa .hero-title span{color:var(--gold2);text-shadow:0 0 34px rgba(217,154,43,.18)}body.page-template-page-pesquisa .hero-copy{max-width:760px;margin:26px 0 0;font-size:18px;line-height:1.82;color:var(--soft)}

    body.page-template-page-pesquisa .search-console{border-radius:30px;border:1px solid rgba(217,154,43,.24);background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.16),transparent 38%),rgba(15,13,9,.72);box-shadow:var(--shadow);padding:22px}body.page-template-page-pesquisa .console-title{margin:0 0 16px;color:var(--gold2);font-size:11px;letter-spacing:.18em;text-transform:uppercase;font-weight:950}body.page-template-page-pesquisa .console-lines{display:grid;gap:10px;font-family:var(--mono);font-size:13px;color:var(--soft)}body.page-template-page-pesquisa .console-lines span{color:var(--green)}

    body.page-template-page-pesquisa .search-module{margin-top:-34px;padding:0 0 50px;position:relative;z-index:6}body.page-template-page-pesquisa .search-card{border-radius:30px;border:1px solid rgba(217,154,43,.24);background:rgba(15,13,9,.9);box-shadow:var(--shadow);backdrop-filter:blur(18px);padding:18px}body.page-template-page-pesquisa .search-row{display:grid;grid-template-columns:1fr 190px 150px;gap:12px}body.page-template-page-pesquisa .input-wrap, body.page-template-page-pesquisa .select-wrap{min-width:0;border-radius:999px;border:1px solid rgba(243,234,216,.13);background:rgba(5,4,3,.7);display:flex;align-items:center;gap:12px;padding:0 18px;color:var(--gold2)}body.page-template-page-pesquisa .input-wrap input, body.page-template-page-pesquisa .select-wrap select{width:100%;min-height:52px;border:0;outline:0;background:transparent;color:var(--paper)}body.page-template-page-pesquisa .select-wrap select option{background:#100d09;color:var(--paper)}body.page-template-page-pesquisa .input-wrap input::placeholder{color:rgba(217,200,170,.62)}body.page-template-page-pesquisa .chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}body.page-template-page-pesquisa .chip{border:1px solid rgba(243,234,216,.13);background:rgba(243,234,216,.04);color:var(--soft);border-radius:999px;padding:8px 11px;font-size:12px;cursor:pointer;transition:.2s ease}body.page-template-page-pesquisa .chip:hover, body.page-template-page-pesquisa .chip.active{border-color:rgba(217,154,43,.42);color:var(--gold2);background:rgba(217,154,43,.08)}

    body.page-template-page-pesquisa section{padding:58px 0;position:relative}body.page-template-page-pesquisa .section-head{display:flex;align-items:end;justify-content:space-between;gap:22px;margin-bottom:28px}body.page-template-page-pesquisa .section-head h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,4vw,52px);line-height:1;letter-spacing:-.05em;font-weight:900}body.page-template-page-pesquisa .section-head p{max-width:720px;margin:12px 0 0;color:var(--muted);line-height:1.7}
    body.page-template-page-pesquisa .layout{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:24px;align-items:start}body.page-template-page-pesquisa .result-list{display:grid;gap:16px}body.page-template-page-pesquisa .result-card, body.page-template-page-pesquisa .side-card, body.page-template-page-pesquisa .index-card{border-radius:30px;border:1px solid rgba(243,234,216,.1);background:rgba(22,18,13,.86);box-shadow:var(--shadow);padding:24px;transition:transform .2s ease,border-color .2s ease}body.page-template-page-pesquisa .result-card:hover, body.page-template-page-pesquisa .index-card:hover{transform:translateY(-4px);border-color:rgba(217,154,43,.36)}body.page-template-page-pesquisa .result-card{display:grid;grid-template-columns:86px 1fr;gap:18px;align-items:start}body.page-template-page-pesquisa .result-icon{width:70px;height:70px;border-radius:50%;border:1px solid rgba(217,154,43,.34);background:rgba(217,154,43,.10);display:grid;place-items:center;color:var(--gold2);font-family:var(--serif);font-size:24px;font-weight:900}body.page-template-page-pesquisa .result-meta{margin:0;color:var(--muted);font-size:11px;letter-spacing:.16em;text-transform:uppercase;font-weight:900}body.page-template-page-pesquisa .result-card h3{margin:10px 0 0;font-family:var(--serif);font-size:clamp(26px,3vw,36px);line-height:1.08;letter-spacing:-.04em}body.page-template-page-pesquisa .result-card p{color:var(--soft);line-height:1.75}body.page-template-page-pesquisa .article-link{display:inline-flex;align-items:center;gap:7px;margin-top:10px;color:var(--gold2);font-weight:900;font-size:13px;letter-spacing:.08em;text-transform:uppercase}
    body.page-template-page-pesquisa .sidebar{position:sticky;top:112px;display:grid;gap:16px}body.page-template-page-pesquisa .side-card{background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.13),transparent 38%),rgba(243,234,216,.04)}body.page-template-page-pesquisa .side-card.green{border-color:rgba(30,183,122,.3);background:radial-gradient(circle at 24% 14%,rgba(30,183,122,.17),transparent 34%),rgba(30,183,122,.045)}body.page-template-page-pesquisa .component-title{margin:0 0 18px;color:var(--gold2);font-size:12px;font-weight:950;letter-spacing:.18em;text-transform:uppercase}body.page-template-page-pesquisa .side-card h3{margin:0;font-family:var(--serif);font-size:30px;line-height:1.06;letter-spacing:-.04em}body.page-template-page-pesquisa .side-card p{color:var(--soft);line-height:1.75}body.page-template-page-pesquisa .side-list{display:grid;gap:10px;margin-top:18px}body.page-template-page-pesquisa .side-link{display:flex;justify-content:space-between;gap:14px;padding:13px 0;border-bottom:1px solid rgba(243,234,216,.1);color:var(--soft);font-size:14px}body.page-template-page-pesquisa .side-link:last-child{border-bottom:0}body.page-template-page-pesquisa .side-link:hover{color:var(--gold2)}body.page-template-page-pesquisa .side-link span{color:var(--muted)}
    body.page-template-page-pesquisa .index-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}body.page-template-page-pesquisa .index-card{min-height:170px;display:flex;flex-direction:column;justify-content:space-between;background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.14),transparent 38%),rgba(243,234,216,.04)}body.page-template-page-pesquisa .index-card small{color:var(--muted);font-size:12px;letter-spacing:.14em;text-transform:uppercase;font-weight:900}body.page-template-page-pesquisa .index-card strong{display:block;margin-top:14px;font-family:var(--serif);font-size:26px;line-height:1.05}body.page-template-page-pesquisa .index-card span{display:block;margin-top:12px;color:var(--muted);font-size:13px;line-height:1.5}
    body.page-template-page-pesquisa .footer{border-top:1px solid var(--line);padding:38px 0;color:var(--muted)}body.page-template-page-pesquisa .footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}body.page-template-page-pesquisa .footer strong{color:var(--paper)}

    @media(max-width:1040px){body.page-template-page-pesquisa .nav{display:none}body.page-template-page-pesquisa .hero-grid, body.page-template-page-pesquisa .layout{grid-template-columns:1fr}body.page-template-page-pesquisa .sidebar{position:static}body.page-template-page-pesquisa .search-row{grid-template-columns:1fr}body.page-template-page-pesquisa .index-grid{grid-template-columns:repeat(2,1fr)}}
    @media(max-width:760px){body.page-template-page-pesquisa .container{width:min(100% - 28px,1180px)}body.page-template-page-pesquisa .top-alert-inner{align-items:start;flex-direction:column;justify-content:center;padding:10px 0}body.page-template-page-pesquisa .brand{min-width:unset}body.page-template-page-pesquisa .brand-title{font-size:17px}body.page-template-page-pesquisa .header .btn-secondary{display:none}body.page-template-page-pesquisa .hero{padding:58px 0 82px}body.page-template-page-pesquisa .hero-copy{font-size:16px}body.page-template-page-pesquisa .result-card{grid-template-columns:1fr}body.page-template-page-pesquisa .index-grid{grid-template-columns:1fr}body.page-template-page-pesquisa .footer-inner{align-items:start;flex-direction:column}}
  


/* ===== parcerias.html scoped ===== */


    body.page-template-page-parcerias{
      --black:#050403;
      --night:#0d0f12;
      --card:#16120d;
      --paper:#f3ead8;
      --soft:#d9c8aa;
      --muted:#a99675;
      --gold:#d99a2b;
      --gold2:#f0c36a;
      --green:#1eb77a;
      --red:#9e2f24;
      --line:rgba(243,234,216,.14);
      --shadow:0 28px 90px rgba(0,0,0,.46);
      --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      --serif:Georgia,"Times New Roman",serif;
      --mono:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
    }

    body.page-template-page-parcerias *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body.page-template-page-parcerias{margin:0;background:var(--black);color:var(--paper);font-family:var(--font);line-height:1.5;overflow-x:hidden}
    body.page-template-page-parcerias a{color:inherit;text-decoration:none}
    body.page-template-page-parcerias button, body.page-template-page-parcerias input, body.page-template-page-parcerias textarea, body.page-template-page-parcerias select{font:inherit}

    body.page-template-page-parcerias .page{min-height:100vh;position:relative;background:radial-gradient(circle at 12% 8%,rgba(217,154,43,.18),transparent 28%),radial-gradient(circle at 84% 2%,rgba(15,111,78,.18),transparent 26%),radial-gradient(circle at 58% 82%,rgba(158,47,36,.12),transparent 30%),linear-gradient(180deg,#070503 0%,#0d0f12 44%,#050403 100%)}
    body.page-template-page-parcerias .page::before{content:"";position:fixed;inset:0;pointer-events:none;opacity:.22;background-image:linear-gradient(rgba(243,234,216,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(243,234,216,.055) 1px,transparent 1px);background-size:58px 58px;mask-image:radial-gradient(circle at center,#000,transparent 72%)}
    body.page-template-page-parcerias .container{width:min(1180px,calc(100% - 40px));margin:0 auto;position:relative;z-index:2}

    body.page-template-page-parcerias .top-alert{border-bottom:1px solid rgba(217,154,43,.24);background:rgba(217,154,43,.08);color:var(--soft);font-size:12px;letter-spacing:.12em;text-transform:uppercase}
    body.page-template-page-parcerias .top-alert-inner{min-height:38px;display:flex;align-items:center;justify-content:space-between;gap:16px}body.page-template-page-parcerias .top-alert strong{color:var(--gold2)}
    body.page-template-page-parcerias .header{position:sticky;top:0;z-index:50;border-bottom:1px solid var(--line);background:rgba(5,4,3,.86);backdrop-filter:blur(18px)}
    body.page-template-page-parcerias .header-inner{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:24px}
    body.page-template-page-parcerias .brand{display:flex;align-items:center;gap:14px;min-width:292px}body.page-template-page-parcerias .brand-seal{width:50px;height:50px;border-radius:50%;border:1px solid rgba(217,154,43,.58);background:radial-gradient(circle,rgba(240,195,106,.2),transparent 54%),conic-gradient(from 180deg,rgba(217,154,43,.7),rgba(15,111,78,.58),rgba(158,47,36,.5),rgba(217,154,43,.7));display:grid;place-items:center;box-shadow:0 0 38px rgba(217,154,43,.16);flex:0 0 auto}body.page-template-page-parcerias .brand-seal::after{content:"A";width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:#070503;color:var(--gold2);font-family:var(--serif);font-size:22px;font-weight:900}body.page-template-page-parcerias .brand-kicker{margin:0;color:var(--muted);font-size:10px;letter-spacing:.24em;text-transform:uppercase;font-weight:900}body.page-template-page-parcerias .brand-title{margin:2px 0 0;color:var(--paper);font-family:var(--serif);font-size:20px;line-height:1;font-weight:800}
    body.page-template-page-parcerias .nav{display:flex;align-items:center;gap:22px;color:var(--soft);font-size:13px;font-weight:800}body.page-template-page-parcerias .nav a{position:relative;white-space:nowrap;transition:color .2s ease}body.page-template-page-parcerias .nav a::after{content:"";position:absolute;left:0;right:0;bottom:-8px;height:1px;background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform .2s ease}body.page-template-page-parcerias .nav a:hover, body.page-template-page-parcerias .nav a.active{color:var(--gold2)}body.page-template-page-parcerias .nav a:hover::after, body.page-template-page-parcerias .nav a.active::after{transform:scaleX(1)}
    body.page-template-page-parcerias .btn{border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:46px;padding:0 18px;border-radius:999px;font-size:13px;font-weight:900;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;transition:transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease}body.page-template-page-parcerias .btn:hover{transform:translateY(-1px)}body.page-template-page-parcerias .btn-primary{background:linear-gradient(135deg,var(--gold2),var(--gold));color:#130d05;box-shadow:0 16px 36px rgba(217,154,43,.2)}body.page-template-page-parcerias .btn-secondary{border:1px solid rgba(243,234,216,.16);background:rgba(243,234,216,.045);color:var(--paper)}body.page-template-page-parcerias .btn-green{background:linear-gradient(135deg,#36e29b,var(--green));color:#04120c;box-shadow:0 16px 36px rgba(30,183,122,.16)}

    body.page-template-page-parcerias .hero{position:relative;overflow:hidden;border-bottom:1px solid var(--line);padding:76px 0 92px}body.page-template-page-parcerias .hero::before{content:"";position:absolute;inset:0;opacity:.2;background:linear-gradient(115deg,transparent 0%,rgba(217,154,43,.08) 42%,transparent 62%),repeating-linear-gradient(0deg,rgba(243,234,216,.05) 0 1px,transparent 1px 7px);pointer-events:none}body.page-template-page-parcerias .hero-grid{display:grid;grid-template-columns:1fr 360px;gap:34px;align-items:end}
    body.page-template-page-parcerias .eyebrow-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:22px}body.page-template-page-parcerias .badge{display:inline-flex;align-items:center;border-radius:999px;padding:7px 11px;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;border:1px solid rgba(217,154,43,.34);background:rgba(217,154,43,.09);color:#ffe1a1}body.page-template-page-parcerias .badge.green{border-color:rgba(30,183,122,.34);background:rgba(30,183,122,.1);color:#adffd7}body.page-template-page-parcerias .badge.red{border-color:rgba(158,47,36,.5);background:rgba(158,47,36,.16);color:#ffc4bc}body.page-template-page-parcerias .badge.paper{border-color:rgba(243,234,216,.22);background:rgba(243,234,216,.07);color:var(--paper)}
    body.page-template-page-parcerias h1, body.page-template-page-parcerias h2, body.page-template-page-parcerias h3{text-wrap:balance}body.page-template-page-parcerias .hero-title{margin:0;max-width:900px;font-family:var(--serif);font-size:clamp(44px,7vw,88px);line-height:.92;letter-spacing:-.055em;font-weight:900}body.page-template-page-parcerias .hero-title span{color:var(--gold2);text-shadow:0 0 34px rgba(217,154,43,.18)}body.page-template-page-parcerias .hero-copy{max-width:760px;margin:26px 0 0;font-size:18px;line-height:1.82;color:var(--soft)}body.page-template-page-parcerias .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:30px}

    body.page-template-page-parcerias .press-index{border-radius:30px;border:1px solid rgba(217,154,43,.24);background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.16),transparent 38%),rgba(15,13,9,.72);box-shadow:var(--shadow);padding:22px}body.page-template-page-parcerias .press-index-title{margin:0 0 16px;color:var(--gold2);font-size:11px;letter-spacing:.18em;text-transform:uppercase;font-weight:950}body.page-template-page-parcerias .index-list{display:grid;gap:12px}body.page-template-page-parcerias .index-item{display:flex;justify-content:space-between;gap:18px;padding:12px 0;border-bottom:1px solid rgba(243,234,216,.1)}body.page-template-page-parcerias .index-item:last-child{border-bottom:0}body.page-template-page-parcerias .index-item span{color:var(--muted);font-size:13px}body.page-template-page-parcerias .index-item strong{color:var(--paper);font-size:14px}

    body.page-template-page-parcerias section{padding:58px 0;position:relative}body.page-template-page-parcerias .section-head{display:flex;align-items:end;justify-content:space-between;gap:22px;margin-bottom:28px}body.page-template-page-parcerias .section-head h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,4vw,52px);line-height:1;letter-spacing:-.05em;font-weight:900}body.page-template-page-parcerias .section-head p{max-width:720px;margin:12px 0 0;color:var(--muted);line-height:1.7}
    body.page-template-page-parcerias .split-grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:18px;align-items:stretch}body.page-template-page-parcerias .three-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}body.page-template-page-parcerias .four-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
    body.page-template-page-parcerias .panel, body.page-template-page-parcerias .partner-card, body.page-template-page-parcerias .kit-card, body.page-template-page-parcerias .form-card, body.page-template-page-parcerias .cta-card{border-radius:30px;border:1px solid rgba(243,234,216,.11);background:rgba(243,234,216,.045);box-shadow:var(--shadow)}body.page-template-page-parcerias .panel, body.page-template-page-parcerias .partner-card, body.page-template-page-parcerias .kit-card{padding:26px}body.page-template-page-parcerias .panel.green, body.page-template-page-parcerias .partner-card.green{border-color:rgba(30,183,122,.3);background:radial-gradient(circle at 24% 14%,rgba(30,183,122,.17),transparent 34%),rgba(30,183,122,.045)}body.page-template-page-parcerias .panel.red, body.page-template-page-parcerias .partner-card.red{border-color:rgba(158,47,36,.42);background:radial-gradient(circle at 24% 14%,rgba(158,47,36,.20),transparent 32%),rgba(158,47,36,.065)}body.page-template-page-parcerias .panel.dark{background:radial-gradient(circle at 20% 10%,rgba(217,154,43,.13),transparent 34%),rgba(5,4,3,.48)}
    body.page-template-page-parcerias .component-title{margin:0 0 18px;color:var(--gold2);font-size:12px;font-weight:950;letter-spacing:.18em;text-transform:uppercase}body.page-template-page-parcerias .panel h3, body.page-template-page-parcerias .partner-card h3, body.page-template-page-parcerias .kit-card h3, body.page-template-page-parcerias .form-card h2{margin:0;font-family:var(--serif);font-size:clamp(28px,3.2vw,42px);line-height:1.06;letter-spacing:-.04em;font-weight:900}body.page-template-page-parcerias .panel p, body.page-template-page-parcerias .partner-card p, body.page-template-page-parcerias .kit-card p, body.page-template-page-parcerias .form-card p{color:var(--soft);line-height:1.75}
    body.page-template-page-parcerias .partner-card, body.page-template-page-parcerias .kit-card{min-height:245px;display:flex;flex-direction:column;justify-content:space-between;transition:transform .2s ease,border-color .2s ease;background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.14),transparent 38%),rgba(243,234,216,.04)}body.page-template-page-parcerias .partner-card:hover, body.page-template-page-parcerias .kit-card:hover, body.page-template-page-parcerias .media-card:hover, body.page-template-page-parcerias .asset-card:hover{transform:translateY(-4px);border-color:rgba(217,154,43,.36)}body.page-template-page-parcerias .card-number{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;border:1px solid rgba(217,154,43,.3);background:rgba(217,154,43,.1);color:var(--gold2);font-family:var(--serif);font-weight:900;margin-bottom:18px}body.page-template-page-parcerias .article-link{display:inline-flex;align-items:center;gap:7px;margin-top:20px;color:var(--gold2);font-weight:900;font-size:13px;letter-spacing:.08em;text-transform:uppercase}
    body.page-template-page-parcerias .media-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}body.page-template-page-parcerias .media-card, body.page-template-page-parcerias .asset-card{border-radius:30px;border:1px solid rgba(243,234,216,.11);background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.14),transparent 38%),rgba(243,234,216,.04);box-shadow:var(--shadow);padding:26px;transition:transform .2s ease,border-color .2s ease}body.page-template-page-parcerias .media-card.green{border-color:rgba(30,183,122,.3);background:radial-gradient(circle at 24% 14%,rgba(30,183,122,.17),transparent 34%),rgba(30,183,122,.045)}body.page-template-page-parcerias .media-card.red{border-color:rgba(158,47,36,.42);background:radial-gradient(circle at 24% 14%,rgba(158,47,36,.20),transparent 32%),rgba(158,47,36,.065)}body.page-template-page-parcerias .media-card h3, body.page-template-page-parcerias .asset-card h3{margin:0;font-family:var(--serif);font-size:clamp(28px,3.2vw,42px);line-height:1.06;letter-spacing:-.04em;font-weight:900}body.page-template-page-parcerias .media-card p, body.page-template-page-parcerias .asset-card p{color:var(--soft);line-height:1.75}body.page-template-page-parcerias .stat-line{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:22px}body.page-template-page-parcerias .stat-box{border-radius:22px;border:1px solid rgba(243,234,216,.1);background:rgba(5,4,3,.38);padding:18px}body.page-template-page-parcerias .stat-box strong{display:block;color:var(--gold2);font-family:var(--serif);font-size:30px;line-height:1}body.page-template-page-parcerias .stat-box span{display:block;color:var(--muted);font-size:13px;margin-top:8px;line-height:1.45}body.page-template-page-parcerias .asset-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}body.page-template-page-parcerias .asset-card{min-height:210px;display:flex;flex-direction:column;justify-content:space-between}body.page-template-page-parcerias .asset-card small{display:block;color:var(--muted);font-size:11px;letter-spacing:.14em;text-transform:uppercase;font-weight:900;margin-bottom:12px}body.page-template-page-parcerias .asset-card strong{font-family:var(--serif);font-size:26px;line-height:1.05;color:var(--paper)}body.page-template-page-parcerias .asset-card span{display:block;margin-top:12px;color:var(--soft);font-size:14px;line-height:1.55}
    body.page-template-page-parcerias .media-kit{position:relative;overflow:hidden;border-radius:34px;border:1px solid rgba(217,154,43,.28);background:radial-gradient(circle at 82% 18%,rgba(217,154,43,.18),transparent 34%),radial-gradient(circle at 18% 88%,rgba(30,183,122,.12),transparent 30%),linear-gradient(135deg,rgba(22,18,13,.98),rgba(5,4,3,.98));box-shadow:var(--shadow);padding:34px}body.page-template-page-parcerias .media-kit::after{content:"KIT";position:absolute;right:-14px;top:0;color:rgba(243,234,216,.045);font-family:var(--serif);font-size:160px;font-weight:900;letter-spacing:-.08em}body.page-template-page-parcerias .media-kit-inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr 280px;gap:28px;align-items:center}body.page-template-page-parcerias .media-kit h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,5vw,62px);line-height:.98;letter-spacing:-.052em}body.page-template-page-parcerias .media-kit p{max-width:700px;color:var(--soft);line-height:1.78}body.page-template-page-parcerias .kit-preview{min-height:300px;border-radius:24px;border:1px solid rgba(217,154,43,.22);background:linear-gradient(180deg,rgba(243,234,216,.08),rgba(5,4,3,.72)),radial-gradient(circle at 50% 20%,rgba(217,154,43,.20),transparent 30%),#130d09;display:grid;place-items:center;text-align:center;padding:22px}body.page-template-page-parcerias .kit-preview strong{font-family:var(--serif);font-size:34px;line-height:1}body.page-template-page-parcerias .kit-preview span{display:block;margin-top:12px;color:var(--muted);font-family:var(--mono);font-size:12px;letter-spacing:.12em;text-transform:uppercase}
    body.page-template-page-parcerias .form-card{padding:clamp(24px,4vw,38px)}body.page-template-page-parcerias .form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:24px}body.page-template-page-parcerias .field{display:grid;gap:8px}body.page-template-page-parcerias .field.full{grid-column:1 / -1}body.page-template-page-parcerias .field label{color:var(--gold2);font-size:11px;letter-spacing:.14em;text-transform:uppercase;font-weight:950}body.page-template-page-parcerias .field input, body.page-template-page-parcerias .field select, body.page-template-page-parcerias .field textarea{width:100%;border:1px solid rgba(243,234,216,.13);background:rgba(5,4,3,.58);color:var(--paper);border-radius:18px;padding:14px 16px;outline:0;transition:border-color .2s ease,background .2s ease}body.page-template-page-parcerias .field input:focus, body.page-template-page-parcerias .field select:focus, body.page-template-page-parcerias .field textarea:focus{border-color:rgba(217,154,43,.5);background:rgba(5,4,3,.75)}body.page-template-page-parcerias .field textarea{min-height:160px;resize:vertical;line-height:1.65}body.page-template-page-parcerias .field input::placeholder, body.page-template-page-parcerias .field textarea::placeholder{color:rgba(217,200,170,.55)}body.page-template-page-parcerias .field select option{background:#100d09;color:var(--paper)}body.page-template-page-parcerias .form-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:22px}body.page-template-page-parcerias .form-note{margin-top:18px;border-radius:20px;border:1px solid rgba(217,154,43,.16);background:rgba(217,154,43,.06);padding:16px;color:var(--muted);font-size:14px;line-height:1.7}
    body.page-template-page-parcerias .quick-list{display:grid;gap:10px;margin-top:18px}body.page-template-page-parcerias .quick-item{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:13px 0;border-bottom:1px solid rgba(243,234,216,.1);color:var(--soft);font-size:14px}body.page-template-page-parcerias .quick-item:last-child{border-bottom:0}body.page-template-page-parcerias .quick-item span{color:var(--muted)}
    body.page-template-page-parcerias .cta-card{overflow:hidden;position:relative;border-radius:34px;border:1px solid rgba(30,183,122,.28);background:radial-gradient(circle at 82% 18%,rgba(30,183,122,.17),transparent 34%),radial-gradient(circle at 18% 88%,rgba(217,154,43,.14),transparent 30%),linear-gradient(135deg,rgba(22,18,13,.98),rgba(5,4,3,.98));box-shadow:var(--shadow);padding:46px}body.page-template-page-parcerias .cta-card::after{content:"";position:absolute;width:290px;height:290px;border:1px solid rgba(217,154,43,.18);border-radius:50%;right:-110px;top:-82px}body.page-template-page-parcerias .cta-content{position:relative;z-index:2;max-width:820px}body.page-template-page-parcerias .cta-card h2{margin:16px 0 0;font-family:var(--serif);font-size:clamp(36px,5vw,62px);line-height:.98;letter-spacing:-.052em}body.page-template-page-parcerias .cta-card p{max-width:700px;color:var(--soft);line-height:1.78}body.page-template-page-parcerias .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}
    body.page-template-page-parcerias .footer{border-top:1px solid var(--line);padding:38px 0;color:var(--muted)}body.page-template-page-parcerias .footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}body.page-template-page-parcerias .footer strong{color:var(--paper)}
    @media(max-width:1040px){body.page-template-page-parcerias .nav{display:none}body.page-template-page-parcerias .hero-grid, body.page-template-page-parcerias .split-grid, body.page-template-page-parcerias .media-kit-inner{grid-template-columns:1fr}body.page-template-page-parcerias .three-grid, body.page-template-page-parcerias .four-grid, body.page-template-page-parcerias .media-grid, body.page-template-page-parcerias .asset-grid, body.page-template-page-parcerias .stat-line{grid-template-columns:repeat(2,1fr)}}
    @media(max-width:760px){body.page-template-page-parcerias .container{width:min(100% - 28px,1180px)}body.page-template-page-parcerias .top-alert-inner{align-items:start;flex-direction:column;justify-content:center;padding:10px 0}body.page-template-page-parcerias .brand{min-width:unset}body.page-template-page-parcerias .brand-title{font-size:17px}body.page-template-page-parcerias .header .btn-secondary{display:none}body.page-template-page-parcerias .hero{padding:58px 0 82px}body.page-template-page-parcerias .hero-copy{font-size:16px}body.page-template-page-parcerias .three-grid, body.page-template-page-parcerias .four-grid, body.page-template-page-parcerias .form-grid, body.page-template-page-parcerias .media-grid, body.page-template-page-parcerias .asset-grid, body.page-template-page-parcerias .stat-line{grid-template-columns:1fr}body.page-template-page-parcerias .media-kit, body.page-template-page-parcerias .cta-card, body.page-template-page-parcerias .form-card{padding:24px}body.page-template-page-parcerias .footer-inner{align-items:start;flex-direction:column}}
  


/* ===== obrigado.html scoped ===== */


    body.page-template-page-obrigado{
      --black:#050403;
      --night:#0d0f12;
      --paper:#f3ead8;
      --soft:#d9c8aa;
      --muted:#a99675;
      --gold:#d99a2b;
      --gold2:#f0c36a;
      --green:#1eb77a;
      --red:#9e2f24;
      --line:rgba(243,234,216,.14);
      --shadow:0 28px 90px rgba(0,0,0,.46);
      --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      --serif:Georgia,"Times New Roman",serif;
      --mono:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
    }

    body.page-template-page-obrigado *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body.page-template-page-obrigado{margin:0;background:var(--black);color:var(--paper);font-family:var(--font);line-height:1.5;overflow-x:hidden}
    body.page-template-page-obrigado a{color:inherit;text-decoration:none}

    body.page-template-page-obrigado .page{
      min-height:100vh;
      position:relative;
      background:
        radial-gradient(circle at 12% 8%,rgba(217,154,43,.18),transparent 28%),
        radial-gradient(circle at 84% 2%,rgba(15,111,78,.18),transparent 26%),
        radial-gradient(circle at 58% 82%,rgba(158,47,36,.12),transparent 30%),
        linear-gradient(180deg,#070503 0%,#0d0f12 48%,#050403 100%);
      display:flex;
      flex-direction:column;
    }

    body.page-template-page-obrigado .page::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.22;
      background-image:
        linear-gradient(rgba(243,234,216,.055) 1px,transparent 1px),
        linear-gradient(90deg,rgba(243,234,216,.055) 1px,transparent 1px);
      background-size:58px 58px;
      mask-image:radial-gradient(circle at center,#000,transparent 72%);
    }

    body.page-template-page-obrigado .page::after{
      content:"RECEBIDO";
      position:absolute;
      right:-20px;
      bottom:5vh;
      color:rgba(243,234,216,.04);
      font-family:var(--serif);
      font-size:clamp(90px,16vw,220px);
      line-height:.8;
      font-weight:900;
      letter-spacing:-.08em;
      pointer-events:none;
      white-space:nowrap;
    }

    body.page-template-page-obrigado .container{width:min(1120px,calc(100% - 40px));margin:0 auto;position:relative;z-index:2}

    body.page-template-page-obrigado .header{border-bottom:1px solid var(--line);background:rgba(5,4,3,.82);backdrop-filter:blur(18px)}
    body.page-template-page-obrigado .header-inner{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:24px}
    body.page-template-page-obrigado .brand{display:flex;align-items:center;gap:14px;min-width:292px}
    body.page-template-page-obrigado .brand-seal{width:50px;height:50px;border-radius:50%;border:1px solid rgba(217,154,43,.58);background:radial-gradient(circle,rgba(240,195,106,.2),transparent 54%),conic-gradient(from 180deg,rgba(217,154,43,.7),rgba(15,111,78,.58),rgba(158,47,36,.5),rgba(217,154,43,.7));display:grid;place-items:center;box-shadow:0 0 38px rgba(217,154,43,.16);flex:0 0 auto}
    body.page-template-page-obrigado .brand-seal::after{content:"A";width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:#070503;color:var(--gold2);font-family:var(--serif);font-size:22px;font-weight:900}
    body.page-template-page-obrigado .brand-kicker{margin:0;color:var(--muted);font-size:10px;letter-spacing:.24em;text-transform:uppercase;font-weight:900}
    body.page-template-page-obrigado .brand-title{margin:2px 0 0;color:var(--paper);font-family:var(--serif);font-size:20px;line-height:1;font-weight:800}
    body.page-template-page-obrigado .header-links{display:flex;align-items:center;gap:18px;color:var(--soft);font-size:13px;font-weight:800}
    body.page-template-page-obrigado .header-links a:hover{color:var(--gold2)}

    body.page-template-page-obrigado .btn{border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:48px;padding:0 20px;border-radius:999px;font-size:13px;font-weight:900;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;transition:transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease}
    body.page-template-page-obrigado .btn:hover{transform:translateY(-1px)}
    body.page-template-page-obrigado .btn-primary{background:linear-gradient(135deg,var(--gold2),var(--gold));color:#130d05;box-shadow:0 16px 36px rgba(217,154,43,.2)}
    body.page-template-page-obrigado .btn-secondary{border:1px solid rgba(243,234,216,.16);background:rgba(243,234,216,.045);color:var(--paper)}
    body.page-template-page-obrigado .btn-green{background:linear-gradient(135deg,#36e29b,var(--green));color:#04120c;box-shadow:0 16px 36px rgba(30,183,122,.16)}

    body.page-template-page-obrigado main{flex:1;display:grid;align-items:center;padding:74px 0}

    body.page-template-page-obrigado .hero-grid{display:grid;grid-template-columns:minmax(0,1fr) 390px;gap:42px;align-items:center}

    body.page-template-page-obrigado .badge{display:inline-flex;align-items:center;border-radius:999px;padding:7px 11px;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;border:1px solid rgba(30,183,122,.34);background:rgba(30,183,122,.1);color:#adffd7}
    body.page-template-page-obrigado .badge.gold{border-color:rgba(217,154,43,.34);background:rgba(217,154,43,.09);color:#ffe1a1}
    body.page-template-page-obrigado .badge.red{border-color:rgba(158,47,36,.5);background:rgba(158,47,36,.16);color:#ffc4bc}

    body.page-template-page-obrigado .status-icon{
      width:82px;
      height:82px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:rgba(30,183,122,.15);
      border:1px solid rgba(30,183,122,.42);
      color:#adffd7;
      font-size:42px;
      font-weight:900;
      box-shadow:0 0 42px rgba(30,183,122,.18);
      margin-bottom:22px;
    }

    body.page-template-page-obrigado h1{margin:22px 0 0;font-family:var(--serif);font-size:clamp(48px,7.6vw,96px);line-height:.9;letter-spacing:-.06em;font-weight:900;text-wrap:balance}
    body.page-template-page-obrigado h1 span{color:var(--gold2);text-shadow:0 0 34px rgba(217,154,43,.18)}
    body.page-template-page-obrigado .copy{max-width:720px;margin:26px 0 0;color:var(--soft);font-size:18px;line-height:1.82}
    body.page-template-page-obrigado .actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:34px}

    body.page-template-page-obrigado .panel{position:relative;overflow:hidden;border-radius:34px;border:1px solid rgba(30,183,122,.28);background:radial-gradient(circle at 82% 18%,rgba(30,183,122,.17),transparent 34%),radial-gradient(circle at 18% 88%,rgba(217,154,43,.14),transparent 30%),linear-gradient(135deg,rgba(22,18,13,.98),rgba(5,4,3,.98));box-shadow:var(--shadow);padding:30px}
    body.page-template-page-obrigado .panel::after{content:"OK";position:absolute;right:-8px;top:8px;color:rgba(243,234,216,.05);font-family:var(--serif);font-size:120px;font-weight:900;letter-spacing:-.08em}
    body.page-template-page-obrigado .panel-inner{position:relative;z-index:2}
    body.page-template-page-obrigado .component-title{margin:0 0 18px;color:var(--gold2);font-size:12px;font-weight:950;letter-spacing:.18em;text-transform:uppercase}
    body.page-template-page-obrigado .panel h2{margin:0;font-family:var(--serif);font-size:clamp(30px,4vw,46px);line-height:1.04;letter-spacing:-.045em}
    body.page-template-page-obrigado .panel p{color:var(--soft);line-height:1.75}

    body.page-template-page-obrigado .signal-box{margin-top:24px;border-radius:20px;border:1px solid rgba(217,154,43,.16);background:rgba(217,154,43,.06);padding:17px;font-family:var(--mono);color:#e9d6ad;font-size:13px;display:grid;gap:10px}
    body.page-template-page-obrigado .signal-line{height:1px;overflow:hidden;background:rgba(217,154,43,.18);position:relative}body.page-template-page-obrigado .signal-line::after{content:"";position:absolute;inset:0 auto 0 0;width:34%;background:linear-gradient(90deg,transparent,var(--gold2),transparent);animation:signalMove 3.8s linear infinite}@keyframes signalMove{from{transform:translateX(-120%)}to{transform:translateX(330%)}}

    body.page-template-page-obrigado .next-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:44px}
    body.page-template-page-obrigado .next-card{border-radius:24px;border:1px solid rgba(243,234,216,.1);background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.13),transparent 38%),rgba(243,234,216,.04);padding:20px;transition:transform .2s ease,border-color .2s ease}
    body.page-template-page-obrigado .next-card:hover{transform:translateY(-4px);border-color:rgba(217,154,43,.36)}
    body.page-template-page-obrigado .next-card small{display:block;color:var(--muted);font-size:12px;letter-spacing:.14em;text-transform:uppercase;font-weight:900}
    body.page-template-page-obrigado .next-card strong{display:block;margin-top:12px;font-family:var(--serif);font-size:25px;line-height:1.05;color:var(--paper)}
    body.page-template-page-obrigado .next-card span{display:block;margin-top:10px;color:var(--muted);font-size:14px;line-height:1.55}

    body.page-template-page-obrigado .footer{border-top:1px solid var(--line);padding:28px 0;color:var(--muted);font-size:14px}
    body.page-template-page-obrigado .footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}
    body.page-template-page-obrigado .footer strong{color:var(--paper)}

    @media(max-width:980px){body.page-template-page-obrigado .hero-grid{grid-template-columns:1fr}body.page-template-page-obrigado .panel{max-width:720px}body.page-template-page-obrigado .next-grid{grid-template-columns:1fr}body.page-template-page-obrigado .header-links{display:none}}
    @media(max-width:640px){body.page-template-page-obrigado .container{width:min(100% - 28px,1120px)}body.page-template-page-obrigado .brand{min-width:0}body.page-template-page-obrigado .brand-title{font-size:17px}body.page-template-page-obrigado main{padding:54px 0}body.page-template-page-obrigado .copy{font-size:16px}body.page-template-page-obrigado .panel{padding:24px}body.page-template-page-obrigado .actions .btn{width:100%}body.page-template-page-obrigado .footer-inner{align-items:flex-start;flex-direction:column}body.page-template-page-obrigado .page::after{display:none}}
  


/* ===== central_recomendações_linktree.html scoped ===== */


    body.page-template-page-central-links{
      --black:#050403;
      --night:#0d0f12;
      --card:#16120d;
      --paper:#f3ead8;
      --soft:#d9c8aa;
      --muted:#a99675;
      --gold:#d99a2b;
      --gold2:#f0c36a;
      --green:#1eb77a;
      --red:#9e2f24;
      --line:rgba(243,234,216,.14);
      --shadow:0 28px 90px rgba(0,0,0,.46);
      --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      --serif:Georgia,"Times New Roman",serif;
      --mono:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
    }

    body.page-template-page-central-links *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body.page-template-page-central-links{margin:0;background:var(--black);color:var(--paper);font-family:var(--font);line-height:1.5;overflow-x:hidden}
    body.page-template-page-central-links a{color:inherit;text-decoration:none}
    body.page-template-page-central-links button, body.page-template-page-central-links input{font:inherit}

    body.page-template-page-central-links .page{
      min-height:100vh;
      position:relative;
      background:
        radial-gradient(circle at 14% 8%,rgba(217,154,43,.18),transparent 28%),
        radial-gradient(circle at 84% 2%,rgba(15,111,78,.18),transparent 26%),
        radial-gradient(circle at 58% 82%,rgba(158,47,36,.12),transparent 30%),
        linear-gradient(180deg,#070503 0%,#0d0f12 48%,#050403 100%);
    }

    body.page-template-page-central-links .page::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.22;
      background-image:
        linear-gradient(rgba(243,234,216,.055) 1px,transparent 1px),
        linear-gradient(90deg,rgba(243,234,216,.055) 1px,transparent 1px);
      background-size:58px 58px;
      mask-image:radial-gradient(circle at center,#000,transparent 72%);
    }

    body.page-template-page-central-links .page::after{
      content:"LINKS";
      position:absolute;
      right:-18px;
      bottom:6vh;
      color:rgba(243,234,216,.04);
      font-family:var(--serif);
      font-size:clamp(110px,20vw,280px);
      line-height:.8;
      font-weight:900;
      letter-spacing:-.08em;
      pointer-events:none;
      white-space:nowrap;
    }

    body.page-template-page-central-links .container{width:min(980px,calc(100% - 36px));margin:0 auto;position:relative;z-index:2}

    body.page-template-page-central-links .hero{
      min-height:100vh;
      display:grid;
      align-items:center;
      padding:54px 0;
    }

    body.page-template-page-central-links .shell{
      width:100%;
      display:grid;
      grid-template-columns:1fr;
      gap:26px;
    }

    body.page-template-page-central-links .profile{
      text-align:center;
      max-width:760px;
      margin:0 auto;
    }

    body.page-template-page-central-links .seal{
      width:82px;
      height:82px;
      margin:0 auto 18px;
      border-radius:50%;
      border:1px solid rgba(217,154,43,.58);
      background:
        radial-gradient(circle,rgba(240,195,106,.20),transparent 54%),
        conic-gradient(from 180deg,rgba(217,154,43,.72),rgba(15,111,78,.58),rgba(158,47,36,.50),rgba(217,154,43,.72));
      display:grid;
      place-items:center;
      box-shadow:0 0 42px rgba(217,154,43,.18);
    }

    body.page-template-page-central-links .seal::after{
      content:"A";
      width:64px;
      height:64px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:#070503;
      color:var(--gold2);
      font-family:var(--serif);
      font-size:38px;
      font-weight:900;
    }

    body.page-template-page-central-links .kicker{
      margin:0 0 12px;
      color:var(--muted);
      font-size:11px;
      letter-spacing:.24em;
      text-transform:uppercase;
      font-weight:950;
    }

    body.page-template-page-central-links h1{
      margin:0;
      font-family:var(--serif);
      font-size:clamp(42px,7vw,74px);
      line-height:.92;
      letter-spacing:-.055em;
      font-weight:900;
      text-wrap:balance;
    }

    body.page-template-page-central-links h1 span{color:var(--gold2);text-shadow:0 0 34px rgba(217,154,43,.18)}

    body.page-template-page-central-links .copy{
      max-width:680px;
      margin:20px auto 0;
      color:var(--soft);
      font-size:17px;
      line-height:1.78;
    }

    body.page-template-page-central-links .search-card{
      margin:8px auto 0;
      max-width:760px;
      border-radius:28px;
      border:1px solid rgba(217,154,43,.24);
      background:rgba(15,13,9,.88);
      box-shadow:var(--shadow);
      backdrop-filter:blur(18px);
      padding:14px;
    }

    body.page-template-page-central-links .search-row{display:flex;gap:10px}

    body.page-template-page-central-links .input-wrap{
      flex:1;
      min-width:0;
      border-radius:999px;
      border:1px solid rgba(243,234,216,.13);
      background:rgba(5,4,3,.70);
      display:flex;
      align-items:center;
      gap:10px;
      padding:0 16px;
      color:var(--gold2);
    }

    body.page-template-page-central-links .input-wrap input{
      width:100%;
      min-height:48px;
      border:0;
      outline:0;
      background:transparent;
      color:var(--paper);
    }

    body.page-template-page-central-links .input-wrap input::placeholder{color:rgba(217,200,170,.62)}

    body.page-template-page-central-links .btn{
      border:0;
      cursor:pointer;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:48px;
      padding:0 18px;
      border-radius:999px;
      font-size:12px;
      font-weight:950;
      letter-spacing:.04em;
      text-transform:uppercase;
      white-space:nowrap;
      transition:transform .2s ease,filter .2s ease,border-color .2s ease;
    }

    body.page-template-page-central-links .btn:hover{transform:translateY(-1px);filter:brightness(1.06)}
    body.page-template-page-central-links .btn-primary{background:linear-gradient(135deg,var(--gold2),var(--gold));color:#130d05;box-shadow:0 16px 36px rgba(217,154,43,.20)}
    body.page-template-page-central-links .btn-secondary{border:1px solid rgba(243,234,216,.16);background:rgba(243,234,216,.045);color:var(--paper)}

    body.page-template-page-central-links .featured-link{
      position:relative;
      overflow:hidden;
      border-radius:32px;
      border:1px solid rgba(30,183,122,.28);
      background:
        radial-gradient(circle at 82% 18%,rgba(30,183,122,.17),transparent 34%),
        radial-gradient(circle at 18% 88%,rgba(217,154,43,.14),transparent 30%),
        linear-gradient(135deg,rgba(22,18,13,.98),rgba(5,4,3,.98));
      box-shadow:var(--shadow);
      padding:28px;
      display:grid;
      grid-template-columns:1fr auto;
      gap:18px;
      align-items:center;
      transition:transform .2s ease,border-color .2s ease;
    }

    body.page-template-page-central-links .featured-link:hover{transform:translateY(-4px);border-color:rgba(217,154,43,.36)}
    body.page-template-page-central-links .featured-link::after{
      content:"DESTAQUE";
      position:absolute;
      right:-20px;
      top:22px;
      color:rgba(243,234,216,.045);
      font-family:var(--serif);
      font-size:68px;
      font-weight:900;
      writing-mode:vertical-rl;
      transform:rotate(180deg);
    }

    body.page-template-page-central-links .featured-link > *{position:relative;z-index:2}
    body.page-template-page-central-links .badge{display:inline-flex;align-items:center;width:max-content;border-radius:999px;padding:7px 11px;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;border:1px solid rgba(30,183,122,.34);background:rgba(30,183,122,.10);color:#adffd7}
    body.page-template-page-central-links .featured-link h2{margin:12px 0 0;font-family:var(--serif);font-size:clamp(28px,4vw,46px);line-height:1;letter-spacing:-.045em}
    body.page-template-page-central-links .featured-link p{margin:12px 0 0;color:var(--soft);line-height:1.7;max-width:580px}

    body.page-template-page-central-links .arrow{
      width:48px;
      height:48px;
      border-radius:50%;
      display:grid;
      place-items:center;
      border:1px solid rgba(243,234,216,.14);
      background:rgba(243,234,216,.05);
      color:var(--gold2);
      font-size:24px;
      flex:0 0 auto;
    }

    body.page-template-page-central-links .links-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
    }

    body.page-template-page-central-links .link-card{
      min-height:160px;
      border-radius:28px;
      border:1px solid rgba(243,234,216,.11);
      background:
        radial-gradient(circle at 20% 0%,rgba(217,154,43,.14),transparent 38%),
        rgba(243,234,216,.04);
      box-shadow:0 18px 60px rgba(0,0,0,.30);
      padding:22px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      transition:transform .2s ease,border-color .2s ease,background .2s ease;
    }

    body.page-template-page-central-links .link-card:hover{transform:translateY(-4px);border-color:rgba(217,154,43,.36);background:rgba(217,154,43,.065)}
    body.page-template-page-central-links .link-card.green{border-color:rgba(30,183,122,.22);background:radial-gradient(circle at 24% 14%,rgba(30,183,122,.15),transparent 34%),rgba(243,234,216,.04)}
    body.page-template-page-central-links .link-card.red{border-color:rgba(158,47,36,.28);background:radial-gradient(circle at 24% 14%,rgba(158,47,36,.18),transparent 34%),rgba(243,234,216,.04)}

    body.page-template-page-central-links .link-top{display:flex;align-items:flex-start;justify-content:space-between;gap:16px}
    body.page-template-page-central-links .icon{
      width:46px;
      height:46px;
      border-radius:50%;
      display:grid;
      place-items:center;
      border:1px solid rgba(217,154,43,.30);
      background:rgba(217,154,43,.10);
      color:var(--gold2);
      font-family:var(--serif);
      font-size:22px;
      font-weight:900;
      flex:0 0 auto;
    }

    body.page-template-page-central-links .link-card small{color:var(--muted);font-size:11px;letter-spacing:.14em;text-transform:uppercase;font-weight:900}
    body.page-template-page-central-links .link-card strong{display:block;margin-top:14px;font-family:var(--serif);font-size:29px;line-height:1.05;color:var(--paper)}
    body.page-template-page-central-links .link-card span{display:block;margin-top:10px;color:var(--soft);font-size:14px;line-height:1.55}

    body.page-template-page-central-links .notice{
      max-width:760px;
      margin:0 auto;
      border-radius:22px;
      border:1px solid rgba(243,234,216,.11);
      background:rgba(5,4,3,.44);
      padding:16px 18px;
      color:var(--muted);
      font-size:13px;
      line-height:1.65;
      text-align:center;
    }

    body.page-template-page-central-links .notice strong{color:var(--paper)}

    body.page-template-page-central-links .footer-links{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:18px;
      flex-wrap:wrap;
      color:var(--muted);
      font-size:13px;
      font-weight:800;
    }

    body.page-template-page-central-links .footer-links a:hover{color:var(--gold2)}

    @media(max-width:760px){
      body.page-template-page-central-links .container{width:min(100% - 28px,980px)}
      body.page-template-page-central-links .hero{padding:34px 0}
      body.page-template-page-central-links .links-grid{grid-template-columns:1fr}
      body.page-template-page-central-links .featured-link{grid-template-columns:1fr;padding:24px}
      body.page-template-page-central-links .arrow{display:none}
      body.page-template-page-central-links .search-row{flex-direction:column}
      body.page-template-page-central-links .btn{width:100%}
      body.page-template-page-central-links h1{font-size:clamp(40px,12vw,62px)}
      body.page-template-page-central-links .copy{font-size:16px}
    }
  


/* ===== recomendações_investigação.html scoped ===== */


    body.page-template-page-recomendacoes-investigacao{--black:#050403;--paper:#f3ead8;--soft:#d9c8aa;--muted:#a99675;--gold:#d99a2b;--gold2:#f0c36a;--green:#1eb77a;--red:#9e2f24;--line:rgba(243,234,216,.14);--shadow:0 28px 90px rgba(0,0,0,.46);--font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;--serif:Georgia,"Times New Roman",serif}
    body.page-template-page-recomendacoes-investigacao *{box-sizing:border-box}html{scroll-behavior:smooth}body.page-template-page-recomendacoes-investigacao{margin:0;background:var(--black);color:var(--paper);font-family:var(--font);line-height:1.5;overflow-x:hidden}body.page-template-page-recomendacoes-investigacao a{color:inherit;text-decoration:none}body.page-template-page-recomendacoes-investigacao button, body.page-template-page-recomendacoes-investigacao input{font:inherit}
    body.page-template-page-recomendacoes-investigacao .page{min-height:100vh;position:relative;background:radial-gradient(circle at 14% 8%,rgba(158,47,36,.20),transparent 28%),radial-gradient(circle at 84% 2%,rgba(217,154,43,.16),transparent 26%),radial-gradient(circle at 58% 82%,rgba(30,183,122,.10),transparent 30%),linear-gradient(180deg,#070503 0%,#0d0f12 48%,#050403 100%)}
    body.page-template-page-recomendacoes-investigacao .page::before{content:"";position:fixed;inset:0;pointer-events:none;opacity:.22;background-image:linear-gradient(rgba(243,234,216,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(243,234,216,.055) 1px,transparent 1px);background-size:58px 58px;mask-image:radial-gradient(circle at center,#000,transparent 72%)}
    body.page-template-page-recomendacoes-investigacao .page::after{content:"FIELD";position:absolute;right:-18px;bottom:5vh;color:rgba(243,234,216,.04);font-family:var(--serif);font-size:clamp(110px,20vw,280px);line-height:.8;font-weight:900;letter-spacing:-.08em;pointer-events:none;white-space:nowrap}
    body.page-template-page-recomendacoes-investigacao .container{width:min(1080px,calc(100% - 40px));margin:0 auto;position:relative;z-index:2}
    body.page-template-page-recomendacoes-investigacao .topbar{position:relative;z-index:20;border-bottom:1px solid var(--line);background:rgba(5,4,3,.82);backdrop-filter:blur(18px)}body.page-template-page-recomendacoes-investigacao .topbar-inner{min-height:78px;display:flex;align-items:center;justify-content:space-between;gap:20px}body.page-template-page-recomendacoes-investigacao .brand{display:flex;align-items:center;gap:12px;min-width:0}body.page-template-page-recomendacoes-investigacao .seal{width:48px;height:48px;border-radius:50%;border:1px solid rgba(158,47,36,.58);background:radial-gradient(circle,rgba(158,47,36,.22),transparent 54%),conic-gradient(from 180deg,rgba(158,47,36,.72),rgba(217,154,43,.58),rgba(30,183,122,.36),rgba(158,47,36,.72));display:grid;place-items:center;box-shadow:0 0 38px rgba(158,47,36,.16);flex:0 0 auto}body.page-template-page-recomendacoes-investigacao .seal::after{content:"A";width:36px;height:36px;border-radius:50%;display:grid;place-items:center;background:#070503;color:#ffc4bc;font-family:var(--serif);font-size:22px;font-weight:900}body.page-template-page-recomendacoes-investigacao .brand small{display:block;color:var(--muted);font-size:10px;letter-spacing:.22em;text-transform:uppercase;font-weight:900}body.page-template-page-recomendacoes-investigacao .brand strong{display:block;color:var(--paper);font-family:var(--serif);font-size:19px;line-height:1.05}body.page-template-page-recomendacoes-investigacao .nav{display:flex;align-items:center;gap:18px;color:var(--soft);font-size:13px;font-weight:800}body.page-template-page-recomendacoes-investigacao .nav a:hover{color:#ffc4bc}
    body.page-template-page-recomendacoes-investigacao .btn{border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:46px;padding:0 18px;border-radius:999px;font-size:12px;font-weight:950;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;transition:transform .2s ease,filter .2s ease}body.page-template-page-recomendacoes-investigacao .btn:hover{transform:translateY(-1px);filter:brightness(1.06)}body.page-template-page-recomendacoes-investigacao .btn-primary{background:linear-gradient(135deg,#d34b3e,var(--red));color:#fff1e8;box-shadow:0 16px 36px rgba(158,47,36,.20)}body.page-template-page-recomendacoes-investigacao .btn-secondary{border:1px solid rgba(243,234,216,.16);background:rgba(243,234,216,.045);color:var(--paper)}
    body.page-template-page-recomendacoes-investigacao .hero{position:relative;overflow:hidden;padding:74px 0 44px;border-bottom:1px solid var(--line)}body.page-template-page-recomendacoes-investigacao .hero::before{content:"";position:absolute;inset:0;opacity:.20;background:linear-gradient(115deg,transparent 0%,rgba(158,47,36,.10) 42%,transparent 62%),repeating-linear-gradient(0deg,rgba(243,234,216,.05) 0 1px,transparent 1px 7px);pointer-events:none}body.page-template-page-recomendacoes-investigacao .hero-inner{max-width:850px;margin:0 auto;text-align:center;position:relative;z-index:2}
    body.page-template-page-recomendacoes-investigacao .badge{display:inline-flex;align-items:center;width:max-content;border-radius:999px;padding:7px 11px;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;border:1px solid rgba(158,47,36,.5);background:rgba(158,47,36,.16);color:#ffc4bc}body.page-template-page-recomendacoes-investigacao .badge.green{border-color:rgba(30,183,122,.34);background:rgba(30,183,122,.10);color:#adffd7}body.page-template-page-recomendacoes-investigacao .badge.gold{border-color:rgba(217,154,43,.34);background:rgba(217,154,43,.09);color:#ffe1a1}body.page-template-page-recomendacoes-investigacao .eyebrow-row{display:flex;justify-content:center;flex-wrap:wrap;gap:8px;margin-bottom:22px}
    body.page-template-page-recomendacoes-investigacao h1, body.page-template-page-recomendacoes-investigacao h2, body.page-template-page-recomendacoes-investigacao h3{text-wrap:balance}body.page-template-page-recomendacoes-investigacao h1{margin:0;font-family:var(--serif);font-size:clamp(44px,7vw,86px);line-height:.92;letter-spacing:-.055em;font-weight:900}body.page-template-page-recomendacoes-investigacao h1 span{color:#ffc4bc;text-shadow:0 0 34px rgba(158,47,36,.22)}body.page-template-page-recomendacoes-investigacao .copy{max-width:760px;margin:24px auto 0;color:var(--soft);font-size:18px;line-height:1.78}
    body.page-template-page-recomendacoes-investigacao .search-module{margin-top:-24px;padding:0 0 42px;position:relative;z-index:6}body.page-template-page-recomendacoes-investigacao .search-card{border-radius:30px;border:1px solid rgba(158,47,36,.28);background:rgba(15,13,9,.90);box-shadow:var(--shadow);backdrop-filter:blur(18px);padding:16px}body.page-template-page-recomendacoes-investigacao .search-row{display:flex;gap:12px}body.page-template-page-recomendacoes-investigacao .input-wrap{flex:1;min-width:0;border-radius:999px;border:1px solid rgba(243,234,216,.13);background:rgba(5,4,3,.70);display:flex;align-items:center;gap:10px;padding:0 16px;color:#ffc4bc}body.page-template-page-recomendacoes-investigacao .input-wrap input{width:100%;min-height:50px;border:0;outline:0;background:transparent;color:var(--paper)}body.page-template-page-recomendacoes-investigacao .input-wrap input::placeholder{color:rgba(217,200,170,.62)}body.page-template-page-recomendacoes-investigacao .chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}body.page-template-page-recomendacoes-investigacao .chip{border:1px solid rgba(243,234,216,.13);background:rgba(243,234,216,.04);color:var(--soft);border-radius:999px;padding:8px 11px;font-size:12px;cursor:pointer;transition:.2s ease}body.page-template-page-recomendacoes-investigacao .chip:hover, body.page-template-page-recomendacoes-investigacao .chip.active{border-color:rgba(158,47,36,.45);color:#ffc4bc;background:rgba(158,47,36,.10)}
    body.page-template-page-recomendacoes-investigacao section{padding:56px 0;position:relative}body.page-template-page-recomendacoes-investigacao .section-head{display:flex;align-items:end;justify-content:space-between;gap:22px;margin-bottom:28px}body.page-template-page-recomendacoes-investigacao .section-head h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,4vw,52px);line-height:1;letter-spacing:-.05em;font-weight:900}body.page-template-page-recomendacoes-investigacao .section-head p{max-width:720px;margin:12px 0 0;color:var(--muted);line-height:1.7}
    body.page-template-page-recomendacoes-investigacao .featured-shelf{border-radius:34px;border:1px solid rgba(158,47,36,.32);background:radial-gradient(circle at 82% 18%,rgba(158,47,36,.20),transparent 34%),radial-gradient(circle at 18% 88%,rgba(217,154,43,.12),transparent 30%),linear-gradient(135deg,rgba(22,18,13,.98),rgba(5,4,3,.98));box-shadow:var(--shadow);padding:32px;overflow:hidden;position:relative}body.page-template-page-recomendacoes-investigacao .featured-shelf::after{content:"FIELD";position:absolute;right:-18px;top:20px;color:rgba(243,234,216,.045);font-family:var(--serif);font-size:78px;font-weight:900;writing-mode:vertical-rl;transform:rotate(180deg)}body.page-template-page-recomendacoes-investigacao .featured-inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr 260px;gap:28px;align-items:center}body.page-template-page-recomendacoes-investigacao .featured-shelf h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,5vw,62px);line-height:.98;letter-spacing:-.052em}body.page-template-page-recomendacoes-investigacao .featured-shelf p{max-width:680px;color:var(--soft);line-height:1.78}body.page-template-page-recomendacoes-investigacao .field-preview{min-height:300px;border-radius:22px;border:1px solid rgba(158,47,36,.24);background:linear-gradient(180deg,rgba(243,234,216,.08),rgba(5,4,3,.72)),radial-gradient(circle at 50% 20%,rgba(158,47,36,.22),transparent 30%),#130d09;box-shadow:0 28px 70px rgba(0,0,0,.35);display:grid;place-items:center;text-align:center;padding:22px}body.page-template-page-recomendacoes-investigacao .field-preview strong{font-family:var(--serif);font-size:32px;line-height:1;color:var(--paper)}body.page-template-page-recomendacoes-investigacao .field-preview span{display:block;margin-top:12px;color:var(--muted);font-size:12px;letter-spacing:.12em;text-transform:uppercase}
    body.page-template-page-recomendacoes-investigacao .category-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}body.page-template-page-recomendacoes-investigacao .category-card{min-height:250px;border-radius:30px;border:1px solid rgba(243,234,216,.11);background:radial-gradient(circle at 20% 0%,rgba(158,47,36,.15),transparent 38%),rgba(243,234,216,.04);box-shadow:0 20px 70px rgba(0,0,0,.34);padding:24px;display:flex;flex-direction:column;justify-content:space-between;transition:transform .2s ease,border-color .2s ease,background .2s ease}body.page-template-page-recomendacoes-investigacao .category-card:hover{transform:translateY(-5px);border-color:rgba(158,47,36,.40);background:rgba(158,47,36,.075)}body.page-template-page-recomendacoes-investigacao .category-card.green{border-color:rgba(30,183,122,.24);background:radial-gradient(circle at 24% 14%,rgba(30,183,122,.15),transparent 34%),rgba(243,234,216,.04)}body.page-template-page-recomendacoes-investigacao .category-card.gold{border-color:rgba(217,154,43,.24);background:radial-gradient(circle at 24% 14%,rgba(217,154,43,.15),transparent 34%),rgba(243,234,216,.04)}body.page-template-page-recomendacoes-investigacao .icon{width:48px;height:48px;border-radius:50%;display:grid;place-items:center;border:1px solid rgba(158,47,36,.34);background:rgba(158,47,36,.12);color:#ffc4bc;font-family:var(--serif);font-size:23px;font-weight:900;margin-bottom:18px}body.page-template-page-recomendacoes-investigacao .category-card small{color:var(--muted);font-size:11px;letter-spacing:.14em;text-transform:uppercase;font-weight:900}body.page-template-page-recomendacoes-investigacao .category-card strong{display:block;margin-top:12px;font-family:var(--serif);font-size:30px;line-height:1.02;color:var(--paper);letter-spacing:-.04em}body.page-template-page-recomendacoes-investigacao .category-card span{display:block;margin-top:12px;color:var(--soft);font-size:14px;line-height:1.6}body.page-template-page-recomendacoes-investigacao .article-link{display:inline-flex;align-items:center;gap:7px;margin-top:20px;color:#ffc4bc;font-weight:900;font-size:13px;letter-spacing:.08em;text-transform:uppercase}
    body.page-template-page-recomendacoes-investigacao .notice{border-radius:24px;border:1px solid rgba(243,234,216,.11);background:rgba(5,4,3,.44);padding:18px;color:var(--muted);font-size:14px;line-height:1.65;text-align:center}body.page-template-page-recomendacoes-investigacao .notice strong{color:var(--paper)}body.page-template-page-recomendacoes-investigacao .footer{border-top:1px solid var(--line);padding:38px 0;color:var(--muted)}body.page-template-page-recomendacoes-investigacao .footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}body.page-template-page-recomendacoes-investigacao .footer strong{color:var(--paper)}
    @media(max-width:1060px){body.page-template-page-recomendacoes-investigacao .nav{display:none}body.page-template-page-recomendacoes-investigacao .featured-inner{grid-template-columns:1fr}body.page-template-page-recomendacoes-investigacao .category-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:680px){body.page-template-page-recomendacoes-investigacao .container{width:min(100% - 28px,1080px)}body.page-template-page-recomendacoes-investigacao .topbar .btn{display:none}body.page-template-page-recomendacoes-investigacao .brand strong{font-size:17px}body.page-template-page-recomendacoes-investigacao .hero{padding:52px 0 42px}body.page-template-page-recomendacoes-investigacao .copy{font-size:16px}body.page-template-page-recomendacoes-investigacao .search-row{flex-direction:column}body.page-template-page-recomendacoes-investigacao .search-row .btn{width:100%}body.page-template-page-recomendacoes-investigacao .category-grid{grid-template-columns:1fr}body.page-template-page-recomendacoes-investigacao .featured-shelf{padding:24px}body.page-template-page-recomendacoes-investigacao .footer-inner{align-items:flex-start;flex-direction:column}body.page-template-page-recomendacoes-investigacao .page::after{display:none}}
  


/* ===== recomendações_produto_individual_afiliado.html scoped ===== */


    body.page-template-page-recomendacoes-producao{
      --black:#050403;
      --night:#0d0f12;
      --card:#16120d;
      --paper:#f3ead8;
      --soft:#d9c8aa;
      --muted:#a99675;
      --gold:#d99a2b;
      --gold2:#f0c36a;
      --green:#1eb77a;
      --red:#9e2f24;
      --line:rgba(243,234,216,.14);
      --shadow:0 28px 90px rgba(0,0,0,.46);
      --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      --serif:Georgia,"Times New Roman",serif;
      --mono:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
    }

    body.page-template-page-recomendacoes-producao *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body.page-template-page-recomendacoes-producao{margin:0;background:var(--black);color:var(--paper);font-family:var(--font);line-height:1.5;overflow-x:hidden}
    body.page-template-page-recomendacoes-producao a{color:inherit;text-decoration:none}
    body.page-template-page-recomendacoes-producao button, body.page-template-page-recomendacoes-producao input{font:inherit}

    body.page-template-page-recomendacoes-producao .page{
      min-height:100vh;
      position:relative;
      background:
        radial-gradient(circle at 14% 8%,rgba(217,154,43,.18),transparent 28%),
        radial-gradient(circle at 84% 2%,rgba(15,111,78,.18),transparent 26%),
        radial-gradient(circle at 58% 82%,rgba(158,47,36,.12),transparent 30%),
        linear-gradient(180deg,#070503 0%,#0d0f12 48%,#050403 100%);
    }

    body.page-template-page-recomendacoes-producao .page::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.22;
      background-image:
        linear-gradient(rgba(243,234,216,.055) 1px,transparent 1px),
        linear-gradient(90deg,rgba(243,234,216,.055) 1px,transparent 1px);
      background-size:58px 58px;
      mask-image:radial-gradient(circle at center,#000,transparent 72%);
    }

    body.page-template-page-recomendacoes-producao .page::after{
      content:"RECOMENDADO";
      position:absolute;
      right:-18px;
      bottom:5vh;
      color:rgba(243,234,216,.035);
      font-family:var(--serif);
      font-size:clamp(70px,14vw,210px);
      line-height:.8;
      font-weight:900;
      letter-spacing:-.08em;
      pointer-events:none;
      white-space:nowrap;
    }

    body.page-template-page-recomendacoes-producao .container{width:min(1180px,calc(100% - 40px));margin:0 auto;position:relative;z-index:2}

    body.page-template-page-recomendacoes-producao .topbar{position:relative;z-index:20;border-bottom:1px solid var(--line);background:rgba(5,4,3,.82);backdrop-filter:blur(18px)}
    body.page-template-page-recomendacoes-producao .topbar-inner{min-height:78px;display:flex;align-items:center;justify-content:space-between;gap:20px}
    body.page-template-page-recomendacoes-producao .brand{display:flex;align-items:center;gap:12px;min-width:0}
    body.page-template-page-recomendacoes-producao .seal{width:48px;height:48px;border-radius:50%;border:1px solid rgba(217,154,43,.58);background:radial-gradient(circle,rgba(240,195,106,.20),transparent 54%),conic-gradient(from 180deg,rgba(217,154,43,.72),rgba(15,111,78,.58),rgba(158,47,36,.50),rgba(217,154,43,.72));display:grid;place-items:center;box-shadow:0 0 38px rgba(217,154,43,.16);flex:0 0 auto}
    body.page-template-page-recomendacoes-producao .seal::after{content:"A";width:36px;height:36px;border-radius:50%;display:grid;place-items:center;background:#070503;color:var(--gold2);font-family:var(--serif);font-size:22px;font-weight:900}
    body.page-template-page-recomendacoes-producao .brand small{display:block;color:var(--muted);font-size:10px;letter-spacing:.22em;text-transform:uppercase;font-weight:900}
    body.page-template-page-recomendacoes-producao .brand strong{display:block;color:var(--paper);font-family:var(--serif);font-size:19px;line-height:1.05}
    body.page-template-page-recomendacoes-producao .nav{display:flex;align-items:center;gap:18px;color:var(--soft);font-size:13px;font-weight:800}
    body.page-template-page-recomendacoes-producao .nav a:hover{color:var(--gold2)}

    body.page-template-page-recomendacoes-producao .btn{border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:46px;padding:0 18px;border-radius:999px;font-size:12px;font-weight:950;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;transition:transform .2s ease,filter .2s ease,border-color .2s ease}
    body.page-template-page-recomendacoes-producao .btn:hover{transform:translateY(-1px);filter:brightness(1.06)}
    body.page-template-page-recomendacoes-producao .btn-primary{background:linear-gradient(135deg,var(--gold2),var(--gold));color:#130d05;box-shadow:0 16px 36px rgba(217,154,43,.20)}
    body.page-template-page-recomendacoes-producao .btn-secondary{border:1px solid rgba(243,234,216,.16);background:rgba(243,234,216,.045);color:var(--paper)}
    body.page-template-page-recomendacoes-producao .btn-green{background:linear-gradient(135deg,#36e29b,var(--green));color:#04120c;box-shadow:0 16px 36px rgba(30,183,122,.16)}
    body.page-template-page-recomendacoes-producao .btn-red{background:linear-gradient(135deg,#d34b3e,var(--red));color:#fff1e8;box-shadow:0 16px 36px rgba(158,47,36,.20)}

    body.page-template-page-recomendacoes-producao .hero{position:relative;overflow:hidden;padding:68px 0 54px;border-bottom:1px solid var(--line)}
    body.page-template-page-recomendacoes-producao .hero::before{content:"";position:absolute;inset:0;opacity:.20;background:linear-gradient(115deg,transparent 0%,rgba(217,154,43,.08) 42%,transparent 62%),repeating-linear-gradient(0deg,rgba(243,234,216,.05) 0 1px,transparent 1px 7px);pointer-events:none}
    body.page-template-page-recomendacoes-producao .hero-layout{display:grid;grid-template-columns:minmax(0,1fr) 390px;gap:46px;align-items:center;position:relative;z-index:2}

    body.page-template-page-recomendacoes-producao .badge{display:inline-flex;align-items:center;width:max-content;border-radius:999px;padding:7px 11px;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;border:1px solid rgba(217,154,43,.34);background:rgba(217,154,43,.09);color:#ffe1a1}
    body.page-template-page-recomendacoes-producao .badge.green{border-color:rgba(30,183,122,.34);background:rgba(30,183,122,.10);color:#adffd7}
    body.page-template-page-recomendacoes-producao .badge.red{border-color:rgba(158,47,36,.50);background:rgba(158,47,36,.16);color:#ffc4bc}
    body.page-template-page-recomendacoes-producao .badge.paper{border-color:rgba(243,234,216,.22);background:rgba(243,234,216,.07);color:var(--paper)}
    body.page-template-page-recomendacoes-producao .eyebrow-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:22px}

    body.page-template-page-recomendacoes-producao h1, body.page-template-page-recomendacoes-producao h2, body.page-template-page-recomendacoes-producao h3{text-wrap:balance}
    body.page-template-page-recomendacoes-producao h1{margin:0;font-family:var(--serif);font-size:clamp(42px,6.6vw,82px);line-height:.92;letter-spacing:-.055em;font-weight:900}
    body.page-template-page-recomendacoes-producao h1 span{color:var(--gold2);text-shadow:0 0 34px rgba(217,154,43,.18)}
    body.page-template-page-recomendacoes-producao .hero-copy{max-width:760px;margin:24px 0 0;color:var(--soft);font-size:18px;line-height:1.78}

    body.page-template-page-recomendacoes-producao .product-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:30px}
    body.page-template-page-recomendacoes-producao .price-row{display:flex;align-items:baseline;gap:12px;flex-wrap:wrap;margin-top:24px}
    body.page-template-page-recomendacoes-producao .price{font-family:var(--serif);font-size:38px;line-height:1;color:var(--gold2);font-weight:900}
    body.page-template-page-recomendacoes-producao .price-note{color:var(--muted);font-size:14px}

    body.page-template-page-recomendacoes-producao .product-visual{position:relative;perspective:1200px}
    body.page-template-page-recomendacoes-producao .product-visual::before{content:"";position:absolute;inset:8% -12% -8% 18%;background:radial-gradient(circle,rgba(217,154,43,.16),transparent 58%);filter:blur(14px)}
    body.page-template-page-recomendacoes-producao .product-image{position:relative;min-height:460px;border-radius:26px;border:1px solid rgba(217,154,43,.28);background:linear-gradient(180deg,rgba(243,234,216,.08),rgba(5,4,3,.72)),radial-gradient(circle at 50% 20%,rgba(217,154,43,.25),transparent 30%),radial-gradient(circle at 70% 82%,rgba(30,183,122,.18),transparent 28%),#130d09;box-shadow:0 32px 90px rgba(0,0,0,.56);display:grid;place-items:center;text-align:center;padding:28px;overflow:hidden;transform:rotateY(-6deg) rotateX(2deg)}
    body.page-template-page-recomendacoes-producao .product-image::before{content:"";position:absolute;inset:0;opacity:.22;background-image:linear-gradient(rgba(243,234,216,.13) 1px,transparent 1px),linear-gradient(90deg,rgba(243,234,216,.13) 1px,transparent 1px);background-size:34px 34px}
    body.page-template-page-recomendacoes-producao .product-image img{position:relative;z-index:2;max-width:100%;max-height:400px;object-fit:contain;border-radius:10px;box-shadow:0 24px 60px rgba(0,0,0,.42)}
    body.page-template-page-recomendacoes-producao .placeholder{position:relative;z-index:2;width:190px;height:290px;border-radius:10px;border:1px solid rgba(217,154,43,.28);background:linear-gradient(180deg,rgba(243,234,216,.08),rgba(5,4,3,.72)),radial-gradient(circle at 50% 20%,rgba(217,154,43,.22),transparent 30%),#1a120b;display:grid;place-items:center;padding:18px;box-shadow:0 24px 54px rgba(0,0,0,.42)}
    body.page-template-page-recomendacoes-producao .placeholder strong{font-family:var(--serif);font-size:28px;line-height:1;color:var(--paper)}

    body.page-template-page-recomendacoes-producao section{padding:58px 0;position:relative}
    body.page-template-page-recomendacoes-producao .section-head{display:flex;align-items:end;justify-content:space-between;gap:22px;margin-bottom:28px}
    body.page-template-page-recomendacoes-producao .section-head h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,4vw,52px);line-height:1;letter-spacing:-.05em;font-weight:900}
    body.page-template-page-recomendacoes-producao .section-head p{max-width:720px;margin:12px 0 0;color:var(--muted);line-height:1.7}

    body.page-template-page-recomendacoes-producao .content-layout{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:28px;align-items:start}
    body.page-template-page-recomendacoes-producao .main-content{display:grid;gap:22px}
    body.page-template-page-recomendacoes-producao .panel, body.page-template-page-recomendacoes-producao .side-card, body.page-template-page-recomendacoes-producao .related-card, body.page-template-page-recomendacoes-producao .generator{border-radius:30px;border:1px solid rgba(243,234,216,.11);background:rgba(243,234,216,.045);box-shadow:var(--shadow);padding:28px}
    body.page-template-page-recomendacoes-producao .panel.green, body.page-template-page-recomendacoes-producao .side-card.green{border-color:rgba(30,183,122,.3);background:radial-gradient(circle at 24% 14%,rgba(30,183,122,.17),transparent 34%),rgba(30,183,122,.045)}
    body.page-template-page-recomendacoes-producao .panel.red, body.page-template-page-recomendacoes-producao .side-card.red{border-color:rgba(158,47,36,.42);background:radial-gradient(circle at 24% 14%,rgba(158,47,36,.20),transparent 32%),rgba(158,47,36,.065)}
    body.page-template-page-recomendacoes-producao .panel.dark, body.page-template-page-recomendacoes-producao .side-card.dark{background:radial-gradient(circle at 20% 10%,rgba(217,154,43,.13),transparent 34%),rgba(5,4,3,.48)}

    body.page-template-page-recomendacoes-producao .component-title{margin:0 0 18px;color:var(--gold2);font-size:12px;font-weight:950;letter-spacing:.18em;text-transform:uppercase}
    body.page-template-page-recomendacoes-producao .panel h2, body.page-template-page-recomendacoes-producao .panel h3, body.page-template-page-recomendacoes-producao .side-card h3, body.page-template-page-recomendacoes-producao .related-card h3{margin:0;font-family:var(--serif);font-size:clamp(28px,3.2vw,42px);line-height:1.06;letter-spacing:-.04em;font-weight:900}
    body.page-template-page-recomendacoes-producao .panel p, body.page-template-page-recomendacoes-producao .side-card p, body.page-template-page-recomendacoes-producao .related-card p{color:var(--soft);line-height:1.75}

    body.page-template-page-recomendacoes-producao .reason-list, body.page-template-page-recomendacoes-producao .spec-list{display:grid;gap:10px;margin-top:18px}
    body.page-template-page-recomendacoes-producao .reason, body.page-template-page-recomendacoes-producao .spec{border-radius:20px;border:1px solid rgba(243,234,216,.1);background:rgba(5,4,3,.42);padding:16px}
    body.page-template-page-recomendacoes-producao .reason strong, body.page-template-page-recomendacoes-producao .spec strong{display:block;color:var(--paper);margin-bottom:4px}
    body.page-template-page-recomendacoes-producao .reason span, body.page-template-page-recomendacoes-producao .spec span{display:block;color:var(--muted);font-size:14px;line-height:1.6}

    body.page-template-page-recomendacoes-producao .side-stack{position:sticky;top:104px;display:grid;gap:16px}
    body.page-template-page-recomendacoes-producao .side-card{padding:22px}
    body.page-template-page-recomendacoes-producao .side-card .btn{width:100%;margin-top:14px}
    body.page-template-page-recomendacoes-producao .meta-list{display:grid;gap:10px;margin-top:18px}
    body.page-template-page-recomendacoes-producao .meta-row{display:flex;justify-content:space-between;gap:16px;padding:10px 0;border-bottom:1px solid rgba(243,234,216,.1);color:var(--muted);font-size:13px}
    body.page-template-page-recomendacoes-producao .meta-row:last-child{border-bottom:0}
    body.page-template-page-recomendacoes-producao .meta-row strong{color:var(--paper);text-align:right}

    body.page-template-page-recomendacoes-producao .related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
    body.page-template-page-recomendacoes-producao .related-card{min-height:220px;display:flex;flex-direction:column;justify-content:space-between;background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.14),transparent 38%),rgba(243,234,216,.04);transition:transform .2s ease,border-color .2s ease}
    body.page-template-page-recomendacoes-producao .related-card:hover{transform:translateY(-4px);border-color:rgba(217,154,43,.36)}
    body.page-template-page-recomendacoes-producao .related-card small{display:block;color:var(--muted);font-size:11px;letter-spacing:.14em;text-transform:uppercase;font-weight:900;margin-bottom:12px}
    body.page-template-page-recomendacoes-producao .article-link{display:inline-flex;align-items:center;gap:7px;margin-top:20px;color:var(--gold2);font-weight:900;font-size:13px;letter-spacing:.08em;text-transform:uppercase}

    body.page-template-page-recomendacoes-producao .generator{border-color:rgba(30,183,122,.28);background:radial-gradient(circle at 82% 18%,rgba(30,183,122,.17),transparent 34%),radial-gradient(circle at 18% 88%,rgba(217,154,43,.14),transparent 30%),linear-gradient(135deg,rgba(22,18,13,.98),rgba(5,4,3,.98));overflow:hidden;position:relative}
    body.page-template-page-recomendacoes-producao .generator::after{content:"TAG";position:absolute;right:-14px;top:0;color:rgba(243,234,216,.045);font-family:var(--serif);font-size:150px;font-weight:900;letter-spacing:-.08em}
    body.page-template-page-recomendacoes-producao .generator-inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr 430px;gap:28px;align-items:center}
    body.page-template-page-recomendacoes-producao .generator h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(32px,4.6vw,56px);line-height:.98;letter-spacing:-.052em}
    body.page-template-page-recomendacoes-producao .generator p{max-width:700px;color:var(--soft);line-height:1.78}
    body.page-template-page-recomendacoes-producao .generator-form{display:grid;gap:12px}
    body.page-template-page-recomendacoes-producao .generator-form input{width:100%;border:1px solid rgba(243,234,216,.13);background:rgba(5,4,3,.58);color:var(--paper);border-radius:18px;padding:15px 16px;outline:0}
    body.page-template-page-recomendacoes-producao .generator-form input:focus{border-color:rgba(217,154,43,.5);background:rgba(5,4,3,.75)}
    body.page-template-page-recomendacoes-producao .generator-form input::placeholder{color:rgba(217,200,170,.55)}
    body.page-template-page-recomendacoes-producao .generator-actions{display:flex;gap:10px;flex-wrap:wrap}
    body.page-template-page-recomendacoes-producao .result-box{display:none;border-radius:18px;border:1px solid rgba(243,234,216,.1);background:rgba(5,4,3,.44);padding:14px;margin-top:8px}
    body.page-template-page-recomendacoes-producao .result-box.active{display:block}
    body.page-template-page-recomendacoes-producao .result-box small{display:block;color:var(--muted);font-size:11px;letter-spacing:.12em;text-transform:uppercase;font-weight:900;margin-bottom:8px}
    body.page-template-page-recomendacoes-producao .result-box input{font-family:var(--mono);font-size:12px}
    body.page-template-page-recomendacoes-producao .error-message{display:none;color:#ffc4bc;font-size:13px;line-height:1.55;margin-top:8px}
    body.page-template-page-recomendacoes-producao .error-message.active{display:block}

    body.page-template-page-recomendacoes-producao .notice{border-radius:24px;border:1px solid rgba(243,234,216,.11);background:rgba(5,4,3,.44);padding:18px;color:var(--muted);font-size:14px;line-height:1.65;text-align:center}
    body.page-template-page-recomendacoes-producao .notice strong{color:var(--paper)}

    body.page-template-page-recomendacoes-producao .footer{border-top:1px solid var(--line);padding:38px 0;color:var(--muted)}
    body.page-template-page-recomendacoes-producao .footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}
    body.page-template-page-recomendacoes-producao .footer strong{color:var(--paper)}

    @media(max-width:1060px){body.page-template-page-recomendacoes-producao .nav{display:none}body.page-template-page-recomendacoes-producao .hero-layout, body.page-template-page-recomendacoes-producao .content-layout, body.page-template-page-recomendacoes-producao .generator-inner{grid-template-columns:1fr}body.page-template-page-recomendacoes-producao .product-visual{max-width:430px;margin:0 auto}body.page-template-page-recomendacoes-producao .product-image{transform:none}body.page-template-page-recomendacoes-producao .side-stack{position:static}body.page-template-page-recomendacoes-producao .related-grid{grid-template-columns:repeat(2,1fr)}}
    @media(max-width:720px){body.page-template-page-recomendacoes-producao .container{width:min(100% - 28px,1180px)}body.page-template-page-recomendacoes-producao .topbar .btn{display:none}body.page-template-page-recomendacoes-producao .brand strong{font-size:17px}body.page-template-page-recomendacoes-producao .hero{padding:52px 0 42px}body.page-template-page-recomendacoes-producao .hero-copy{font-size:16px}body.page-template-page-recomendacoes-producao .product-image{min-height:360px}body.page-template-page-recomendacoes-producao .related-grid{grid-template-columns:1fr}body.page-template-page-recomendacoes-producao .generator{padding:24px}body.page-template-page-recomendacoes-producao .generator-actions .btn{width:100%}body.page-template-page-recomendacoes-producao .footer-inner{align-items:flex-start;flex-direction:column}body.page-template-page-recomendacoes-producao .page::after{display:none}}
  


/* ===== recomendações_smarthome.html scoped ===== */


    body.page-template-page-recomendacoes-smarthome{
      --black:#050403;
      --night:#0d0f12;
      --card:#16120d;
      --paper:#f3ead8;
      --soft:#d9c8aa;
      --muted:#a99675;
      --gold:#d99a2b;
      --gold2:#f0c36a;
      --green:#1eb77a;
      --red:#9e2f24;
      --line:rgba(243,234,216,.14);
      --shadow:0 28px 90px rgba(0,0,0,.46);
      --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      --serif:Georgia,"Times New Roman",serif;
      --mono:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
    }

    body.page-template-page-recomendacoes-smarthome *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body.page-template-page-recomendacoes-smarthome{margin:0;background:var(--black);color:var(--paper);font-family:var(--font);line-height:1.5;overflow-x:hidden}
    body.page-template-page-recomendacoes-smarthome a{color:inherit;text-decoration:none}
    body.page-template-page-recomendacoes-smarthome button, body.page-template-page-recomendacoes-smarthome input{font:inherit}

    body.page-template-page-recomendacoes-smarthome .page{
      min-height:100vh;
      position:relative;
      background:
        radial-gradient(circle at 14% 8%,rgba(30,183,122,.18),transparent 28%),
        radial-gradient(circle at 84% 2%,rgba(217,154,43,.16),transparent 26%),
        radial-gradient(circle at 58% 82%,rgba(158,47,36,.10),transparent 30%),
        linear-gradient(180deg,#070503 0%,#0d0f12 48%,#050403 100%);
    }

    body.page-template-page-recomendacoes-smarthome .page::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.22;
      background-image:
        linear-gradient(rgba(243,234,216,.055) 1px,transparent 1px),
        linear-gradient(90deg,rgba(243,234,216,.055) 1px,transparent 1px);
      background-size:58px 58px;
      mask-image:radial-gradient(circle at center,#000,transparent 72%);
    }

    body.page-template-page-recomendacoes-smarthome .page::after{
      content:"SMART";
      position:absolute;
      right:-18px;
      bottom:5vh;
      color:rgba(243,234,216,.04);
      font-family:var(--serif);
      font-size:clamp(110px,20vw,280px);
      line-height:.8;
      font-weight:900;
      letter-spacing:-.08em;
      pointer-events:none;
      white-space:nowrap;
    }

    body.page-template-page-recomendacoes-smarthome .container{width:min(1080px,calc(100% - 40px));margin:0 auto;position:relative;z-index:2}

    body.page-template-page-recomendacoes-smarthome .topbar{
      position:relative;
      z-index:20;
      border-bottom:1px solid var(--line);
      background:rgba(5,4,3,.82);
      backdrop-filter:blur(18px);
    }

    body.page-template-page-recomendacoes-smarthome .topbar-inner{min-height:78px;display:flex;align-items:center;justify-content:space-between;gap:20px}
    body.page-template-page-recomendacoes-smarthome .brand{display:flex;align-items:center;gap:12px;min-width:0}
    body.page-template-page-recomendacoes-smarthome .seal{width:48px;height:48px;border-radius:50%;border:1px solid rgba(30,183,122,.54);background:radial-gradient(circle,rgba(30,183,122,.20),transparent 54%),conic-gradient(from 180deg,rgba(30,183,122,.72),rgba(217,154,43,.58),rgba(158,47,36,.38),rgba(30,183,122,.72));display:grid;place-items:center;box-shadow:0 0 38px rgba(30,183,122,.16);flex:0 0 auto}
    body.page-template-page-recomendacoes-smarthome .seal::after{content:"A";width:36px;height:36px;border-radius:50%;display:grid;place-items:center;background:#070503;color:#adffd7;font-family:var(--serif);font-size:22px;font-weight:900}
    body.page-template-page-recomendacoes-smarthome .brand small{display:block;color:var(--muted);font-size:10px;letter-spacing:.22em;text-transform:uppercase;font-weight:900}
    body.page-template-page-recomendacoes-smarthome .brand strong{display:block;color:var(--paper);font-family:var(--serif);font-size:19px;line-height:1.05}
    body.page-template-page-recomendacoes-smarthome .nav{display:flex;align-items:center;gap:18px;color:var(--soft);font-size:13px;font-weight:800}
    body.page-template-page-recomendacoes-smarthome .nav a:hover{color:#adffd7}

    body.page-template-page-recomendacoes-smarthome .btn{border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:46px;padding:0 18px;border-radius:999px;font-size:12px;font-weight:950;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;transition:transform .2s ease,filter .2s ease,border-color .2s ease}
    body.page-template-page-recomendacoes-smarthome .btn:hover{transform:translateY(-1px);filter:brightness(1.06)}
    body.page-template-page-recomendacoes-smarthome .btn-primary{background:linear-gradient(135deg,#36e29b,var(--green));color:#04120c;box-shadow:0 16px 36px rgba(30,183,122,.18)}
    body.page-template-page-recomendacoes-smarthome .btn-secondary{border:1px solid rgba(243,234,216,.16);background:rgba(243,234,216,.045);color:var(--paper)}

    body.page-template-page-recomendacoes-smarthome .hero{position:relative;overflow:hidden;padding:74px 0 44px;border-bottom:1px solid var(--line)}
    body.page-template-page-recomendacoes-smarthome .hero::before{content:"";position:absolute;inset:0;opacity:.20;background:linear-gradient(115deg,transparent 0%,rgba(30,183,122,.08) 42%,transparent 62%),repeating-linear-gradient(0deg,rgba(243,234,216,.05) 0 1px,transparent 1px 7px);pointer-events:none}
    body.page-template-page-recomendacoes-smarthome .hero-inner{max-width:850px;margin:0 auto;text-align:center;position:relative;z-index:2}

    body.page-template-page-recomendacoes-smarthome .badge{display:inline-flex;align-items:center;width:max-content;border-radius:999px;padding:7px 11px;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;border:1px solid rgba(30,183,122,.34);background:rgba(30,183,122,.10);color:#adffd7}
    body.page-template-page-recomendacoes-smarthome .badge.gold{border-color:rgba(217,154,43,.34);background:rgba(217,154,43,.09);color:#ffe1a1}
    body.page-template-page-recomendacoes-smarthome .badge.red{border-color:rgba(158,47,36,.50);background:rgba(158,47,36,.16);color:#ffc4bc}
    body.page-template-page-recomendacoes-smarthome .eyebrow-row{display:flex;justify-content:center;flex-wrap:wrap;gap:8px;margin-bottom:22px}

    body.page-template-page-recomendacoes-smarthome h1, body.page-template-page-recomendacoes-smarthome h2, body.page-template-page-recomendacoes-smarthome h3{text-wrap:balance}
    body.page-template-page-recomendacoes-smarthome h1{margin:0;font-family:var(--serif);font-size:clamp(44px,7vw,86px);line-height:.92;letter-spacing:-.055em;font-weight:900}
    body.page-template-page-recomendacoes-smarthome h1 span{color:#adffd7;text-shadow:0 0 34px rgba(30,183,122,.20)}
    body.page-template-page-recomendacoes-smarthome .copy{max-width:760px;margin:24px auto 0;color:var(--soft);font-size:18px;line-height:1.78}

    body.page-template-page-recomendacoes-smarthome .search-module{margin-top:-24px;padding:0 0 42px;position:relative;z-index:6}
    body.page-template-page-recomendacoes-smarthome .search-card{border-radius:30px;border:1px solid rgba(30,183,122,.24);background:rgba(15,13,9,.90);box-shadow:var(--shadow);backdrop-filter:blur(18px);padding:16px}
    body.page-template-page-recomendacoes-smarthome .search-row{display:flex;gap:12px}
    body.page-template-page-recomendacoes-smarthome .input-wrap{flex:1;min-width:0;border-radius:999px;border:1px solid rgba(243,234,216,.13);background:rgba(5,4,3,.70);display:flex;align-items:center;gap:10px;padding:0 16px;color:#adffd7}
    body.page-template-page-recomendacoes-smarthome .input-wrap input{width:100%;min-height:50px;border:0;outline:0;background:transparent;color:var(--paper)}
    body.page-template-page-recomendacoes-smarthome .input-wrap input::placeholder{color:rgba(217,200,170,.62)}
    body.page-template-page-recomendacoes-smarthome .chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}
    body.page-template-page-recomendacoes-smarthome .chip{border:1px solid rgba(243,234,216,.13);background:rgba(243,234,216,.04);color:var(--soft);border-radius:999px;padding:8px 11px;font-size:12px;cursor:pointer;transition:.2s ease}
    body.page-template-page-recomendacoes-smarthome .chip:hover, body.page-template-page-recomendacoes-smarthome .chip.active{border-color:rgba(30,183,122,.42);color:#adffd7;background:rgba(30,183,122,.08)}

    body.page-template-page-recomendacoes-smarthome section{padding:56px 0;position:relative}
    body.page-template-page-recomendacoes-smarthome .section-head{display:flex;align-items:end;justify-content:space-between;gap:22px;margin-bottom:28px}
    body.page-template-page-recomendacoes-smarthome .section-head h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,4vw,52px);line-height:1;letter-spacing:-.05em;font-weight:900}
    body.page-template-page-recomendacoes-smarthome .section-head p{max-width:720px;margin:12px 0 0;color:var(--muted);line-height:1.7}

    body.page-template-page-recomendacoes-smarthome .category-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
    body.page-template-page-recomendacoes-smarthome .category-card{min-height:250px;border-radius:30px;border:1px solid rgba(243,234,216,.11);background:radial-gradient(circle at 20% 0%,rgba(30,183,122,.14),transparent 38%),rgba(243,234,216,.04);box-shadow:0 20px 70px rgba(0,0,0,.34);padding:24px;display:flex;flex-direction:column;justify-content:space-between;transition:transform .2s ease,border-color .2s ease,background .2s ease}
    body.page-template-page-recomendacoes-smarthome .category-card:hover{transform:translateY(-5px);border-color:rgba(30,183,122,.38);background:rgba(30,183,122,.065)}
    body.page-template-page-recomendacoes-smarthome .category-card.gold{border-color:rgba(217,154,43,.24);background:radial-gradient(circle at 24% 14%,rgba(217,154,43,.15),transparent 34%),rgba(243,234,216,.04)}
    body.page-template-page-recomendacoes-smarthome .category-card.red{border-color:rgba(158,47,36,.30);background:radial-gradient(circle at 24% 14%,rgba(158,47,36,.18),transparent 34%),rgba(243,234,216,.04)}
    body.page-template-page-recomendacoes-smarthome .icon{width:48px;height:48px;border-radius:50%;display:grid;place-items:center;border:1px solid rgba(30,183,122,.30);background:rgba(30,183,122,.10);color:#adffd7;font-family:var(--serif);font-size:23px;font-weight:900;margin-bottom:18px}
    body.page-template-page-recomendacoes-smarthome .category-card small{color:var(--muted);font-size:11px;letter-spacing:.14em;text-transform:uppercase;font-weight:900}
    body.page-template-page-recomendacoes-smarthome .category-card strong{display:block;margin-top:12px;font-family:var(--serif);font-size:34px;line-height:1.02;color:var(--paper);letter-spacing:-.04em}
    body.page-template-page-recomendacoes-smarthome .category-card span{display:block;margin-top:12px;color:var(--soft);font-size:14px;line-height:1.6}
    body.page-template-page-recomendacoes-smarthome .article-link{display:inline-flex;align-items:center;gap:7px;margin-top:20px;color:#adffd7;font-weight:900;font-size:13px;letter-spacing:.08em;text-transform:uppercase}

    body.page-template-page-recomendacoes-smarthome .featured-shelf{border-radius:34px;border:1px solid rgba(30,183,122,.28);background:radial-gradient(circle at 82% 18%,rgba(30,183,122,.17),transparent 34%),radial-gradient(circle at 18% 88%,rgba(217,154,43,.14),transparent 30%),linear-gradient(135deg,rgba(22,18,13,.98),rgba(5,4,3,.98));box-shadow:var(--shadow);padding:32px;overflow:hidden;position:relative}
    body.page-template-page-recomendacoes-smarthome .featured-shelf::after{content:"SMART";position:absolute;right:-18px;top:20px;color:rgba(243,234,216,.045);font-family:var(--serif);font-size:78px;font-weight:900;writing-mode:vertical-rl;transform:rotate(180deg)}
    body.page-template-page-recomendacoes-smarthome .featured-inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr 260px;gap:28px;align-items:center}
    body.page-template-page-recomendacoes-smarthome .featured-shelf h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,5vw,62px);line-height:.98;letter-spacing:-.052em}
    body.page-template-page-recomendacoes-smarthome .featured-shelf p{max-width:680px;color:var(--soft);line-height:1.78}
    body.page-template-page-recomendacoes-smarthome .device-preview{min-height:300px;border-radius:22px;border:1px solid rgba(30,183,122,.22);background:linear-gradient(180deg,rgba(243,234,216,.08),rgba(5,4,3,.72)),radial-gradient(circle at 50% 20%,rgba(30,183,122,.22),transparent 30%),#07130d;box-shadow:0 28px 70px rgba(0,0,0,.35);display:grid;place-items:center;text-align:center;padding:22px}body.page-template-page-recomendacoes-smarthome .device-preview strong{font-family:var(--serif);font-size:32px;line-height:1;color:var(--paper)}body.page-template-page-recomendacoes-smarthome .device-preview span{display:block;margin-top:12px;color:var(--muted);font-family:var(--mono);font-size:12px;letter-spacing:.12em;text-transform:uppercase}

    body.page-template-page-recomendacoes-smarthome .notice{border-radius:24px;border:1px solid rgba(243,234,216,.11);background:rgba(5,4,3,.44);padding:18px;color:var(--muted);font-size:14px;line-height:1.65;text-align:center}body.page-template-page-recomendacoes-smarthome .notice strong{color:var(--paper)}
    body.page-template-page-recomendacoes-smarthome .footer{border-top:1px solid var(--line);padding:38px 0;color:var(--muted)}body.page-template-page-recomendacoes-smarthome .footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}body.page-template-page-recomendacoes-smarthome .footer strong{color:var(--paper)}

    @media(max-width:960px){body.page-template-page-recomendacoes-smarthome .nav{display:none}body.page-template-page-recomendacoes-smarthome .featured-inner{grid-template-columns:1fr}body.page-template-page-recomendacoes-smarthome .category-grid{grid-template-columns:repeat(2,1fr)}}
    @media(max-width:680px){body.page-template-page-recomendacoes-smarthome .container{width:min(100% - 28px,1080px)}body.page-template-page-recomendacoes-smarthome .topbar .btn{display:none}body.page-template-page-recomendacoes-smarthome .brand strong{font-size:17px}body.page-template-page-recomendacoes-smarthome .hero{padding:52px 0 42px}body.page-template-page-recomendacoes-smarthome .copy{font-size:16px}body.page-template-page-recomendacoes-smarthome .search-row{flex-direction:column}body.page-template-page-recomendacoes-smarthome .search-row .btn{width:100%}body.page-template-page-recomendacoes-smarthome .category-grid{grid-template-columns:1fr}body.page-template-page-recomendacoes-smarthome .featured-shelf{padding:24px}body.page-template-page-recomendacoes-smarthome .footer-inner{align-items:flex-start;flex-direction:column}body.page-template-page-recomendacoes-smarthome .page::after{display:none}}
  


/* ===== 404.html scoped ===== */


    body.error404{
      --black:#050403;
      --night:#0d0f12;
      --card:#16120d;
      --paper:#f3ead8;
      --soft:#d9c8aa;
      --muted:#a99675;
      --gold:#d99a2b;
      --gold2:#f0c36a;
      --green:#1eb77a;
      --red:#9e2f24;
      --line:rgba(243,234,216,.14);
      --shadow:0 28px 90px rgba(0,0,0,.46);
      --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      --serif:Georgia,"Times New Roman",serif;
      --mono:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
    }

    body.error404 *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body.error404{margin:0;background:var(--black);color:var(--paper);font-family:var(--font);line-height:1.5;overflow-x:hidden}
    body.error404 a{color:inherit;text-decoration:none}
    body.error404 button, body.error404 input{font:inherit}

    body.error404 .page{
      min-height:100vh;
      position:relative;
      background:
        radial-gradient(circle at 14% 8%,rgba(158,47,36,.26),transparent 28%),
        radial-gradient(circle at 84% 2%,rgba(158,47,36,.20),transparent 26%),
        radial-gradient(circle at 58% 82%,rgba(158,47,36,.18),transparent 30%),
        linear-gradient(180deg,#070503 0%,#0d0f12 48%,#050403 100%);
      display:flex;
      flex-direction:column;
    }

    body.error404 .page::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.22;
      background-image:
        linear-gradient(rgba(243,234,216,.055) 1px,transparent 1px),
        linear-gradient(90deg,rgba(243,234,216,.055) 1px,transparent 1px);
      background-size:58px 58px;
      mask-image:radial-gradient(circle at center,#000,transparent 72%);
    }

    body.error404 .page::after{
      content:"ACESSO NEGADO";
      position:absolute;
      left:50%;
      bottom:2vh;
      transform:translateX(-50%);
      color:rgba(158,47,36,.075);
      font-family:var(--serif);
      font-size:clamp(140px,26vw,380px);
      line-height:.8;
      font-weight:900;
      letter-spacing:-.08em;
      pointer-events:none;
      white-space:nowrap;
    }

    body.error404 .container{width:min(1120px,calc(100% - 40px));margin:0 auto;position:relative;z-index:2}

    body.error404 .header{
      position:relative;
      z-index:10;
      border-bottom:1px solid rgba(158,47,36,.34);
      background:rgba(8,3,3,.86);
      backdrop-filter:blur(18px);
    }

    body.error404 .header-inner{min-height:78px;display:flex;align-items:center;justify-content:space-between;gap:24px}
    body.error404 .brand{display:flex;align-items:center;gap:14px;min-width:292px}
    body.error404 .brand-seal{width:48px;height:48px;border-radius:50%;border:1px solid rgba(217,154,43,.58);background:radial-gradient(circle,rgba(240,195,106,.2),transparent 54%),conic-gradient(from 180deg,rgba(217,154,43,.7),rgba(15,111,78,.58),rgba(158,47,36,.5),rgba(217,154,43,.7));display:grid;place-items:center;box-shadow:0 0 38px rgba(217,154,43,.16);flex:0 0 auto}
    body.error404 .brand-seal::after{content:"A";width:36px;height:36px;border-radius:50%;display:grid;place-items:center;background:#070503;color:var(--gold2);font-family:var(--serif);font-size:21px;font-weight:900}
    body.error404 .brand-kicker{margin:0;color:var(--muted);font-size:10px;letter-spacing:.24em;text-transform:uppercase;font-weight:900}
    body.error404 .brand-title{margin:2px 0 0;color:var(--paper);font-family:var(--serif);font-size:19px;line-height:1;font-weight:800}

    body.error404 .header-links{display:flex;align-items:center;gap:18px;color:var(--soft);font-size:13px;font-weight:800}
    body.error404 .header-links a:hover{color:#ffc4bc}

    body.error404 .btn{border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:46px;padding:0 18px;border-radius:999px;font-size:13px;font-weight:900;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;transition:transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease}
    body.error404 .btn:hover{transform:translateY(-1px)}
    body.error404 .btn-primary{background:linear-gradient(135deg,var(--gold2),var(--gold));color:#130d05;box-shadow:0 16px 36px rgba(217,154,43,.2)}
    body.error404 .btn-denied{background:linear-gradient(135deg,#d84d43,var(--red));color:#fff1e8;box-shadow:0 16px 36px rgba(158,47,36,.24)}
    body.error404 .btn-secondary{border:1px solid rgba(243,234,216,.16);background:rgba(243,234,216,.045);color:var(--paper)}
    body.error404 .btn-secondary:hover{border-color:rgba(217,154,43,.45);color:var(--gold2);background:rgba(217,154,43,.08)}
    body.error404 .btn-green{background:linear-gradient(135deg,#36e29b,var(--green));color:#04120c;box-shadow:0 16px 36px rgba(30,183,122,.16)}

    body.error404 main{flex:1;display:grid;align-items:center;padding:64px 0 72px}

    body.error404 .error-wrap{max-width:920px;margin:0 auto;text-align:center}

    body.error404 .warning-icon{
      width:74px;
      height:74px;
      display:grid;
      place-items:center;
      margin:0 auto 24px;
      background:linear-gradient(135deg,#d84d43,var(--red));
      color:#fff1e8;
      clip-path:polygon(30% 0,70% 0,100% 30%,100% 70%,70% 100%,30% 100%,0 70%,0 30%);
      font-size:40px;
      font-weight:900;
      line-height:1;
      box-shadow:0 0 42px rgba(158,47,36,.34);
    }

    body.error404 .stamp{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:34px;
      padding:0 18px;
      margin-bottom:22px;
      border:1px solid rgba(216,77,67,.78);
      background:rgba(158,47,36,.24);
      color:#ffc4bc;
      font-family:var(--mono);
      font-size:12px;
      font-weight:850;
      letter-spacing:.18em;
      text-transform:uppercase;
    }

    body.error404 h1{
      margin:0;
      font-family:var(--serif);
      font-size:clamp(48px,8vw,96px);
      line-height:.9;
      letter-spacing:-.055em;
      font-weight:900;
    }

    body.error404 h1 span{color:#ffc4bc;text-shadow:0 0 34px rgba(158,47,36,.28)}

    body.error404 .copy{
      max-width:680px;
      margin:22px auto 0;
      color:var(--soft);
      font-size:clamp(16px,2vw,18px);
      line-height:1.78;
    }

    body.error404 .search-card{
      max-width:760px;
      margin:34px auto 0;
      border-radius:30px;
      border:1px solid rgba(158,47,36,.34);
      background:rgba(18,7,6,.88);
      box-shadow:var(--shadow);
      backdrop-filter:blur(18px);
      padding:16px;
    }

    body.error404 .search-row{display:flex;gap:12px}

    body.error404 .input-wrap{
      flex:1;
      min-width:0;
      border-radius:999px;
      border:1px solid rgba(243,234,216,.13);
      background:rgba(5,4,3,.7);
      display:flex;
      align-items:center;
      gap:12px;
      padding:0 18px;
      color:#ffc4bc;
    }

    body.error404 .input-wrap input{width:100%;min-height:52px;border:0;outline:0;background:transparent;color:var(--paper)}
    body.error404 .input-wrap input::placeholder{color:rgba(217,200,170,.62)}

    body.error404 .actions{display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap;margin-top:28px}

    body.error404 .suggestions{
      max-width:900px;
      margin:36px auto 0;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
    }

    body.error404 .suggestion{
      min-height:112px;
      border-radius:22px;
      border:1px solid rgba(158,47,36,.24);
      background:
        radial-gradient(circle at 20% 0%,rgba(158,47,36,.18),transparent 38%),
        rgba(243,234,216,.04);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      padding:16px;
      text-align:left;
      transition:transform .2s ease,border-color .2s ease,background .2s ease;
    }

    body.error404 .suggestion:hover{transform:translateY(-3px);border-color:rgba(216,77,67,.52);background:rgba(158,47,36,.12)}
    body.error404 .suggestion small{color:#c78b86;font-size:11px;letter-spacing:.14em;text-transform:uppercase;font-weight:900}
    body.error404 .suggestion strong{display:block;margin-top:10px;color:var(--paper);font-family:var(--serif);font-size:21px;line-height:1.05}

    body.error404 .metadata{
      margin-top:30px;
      display:flex;
      justify-content:center;
      gap:18px;
      flex-wrap:wrap;
      color:rgba(255,196,188,.46);
      font-family:var(--mono);
      font-size:11px;
      letter-spacing:.12em;
      text-transform:uppercase;
    }

    body.error404 .footer{position:relative;z-index:2;border-top:1px solid var(--line);padding:28px 0;color:var(--muted);font-size:14px}
    body.error404 .footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}
    body.error404 .footer strong{color:var(--paper)}

    @media(max-width:980px){body.error404 .suggestions{grid-template-columns:repeat(2,1fr)}body.error404 .header-links{display:none}body.error404 .brand{min-width:0}}
    @media(max-width:640px){body.error404 .container{width:min(100% - 28px,1120px)}body.error404 main{padding:48px 0 60px}body.error404 .brand-title{font-size:17px}body.error404 .warning-icon{width:66px;height:66px;font-size:36px}body.error404 .search-row{flex-direction:column}body.error404 .search-row .btn{width:100%}body.error404 .actions .btn{width:100%}body.error404 .suggestions{grid-template-columns:1fr}body.error404 .footer-inner{align-items:flex-start;flex-direction:column}body.error404 .page::after{display:none}}
  


/* ===== artigo.html scoped ===== */


    body.single-post{
      --aurora-black: #050403;
      --aurora-night: #0d0f12;
      --aurora-card: #16120d;
      --aurora-paper: #f3ead8;
      --aurora-paper-soft: #d9c8aa;
      --aurora-muted: #a99675;
      --aurora-gold: #d99a2b;
      --aurora-gold-2: #f0c36a;
      --aurora-green: #0f6f4e;
      --aurora-green-2: #1eb77a;
      --aurora-red: #9e2f24;
      --aurora-line: rgba(243, 234, 216, .14);
      --shadow: 0 28px 90px rgba(0, 0, 0, .46);
      --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --serif: Georgia, "Times New Roman", serif;
      --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    }

    body.single-post *{ box-sizing: border-box; }
    html{ scroll-behavior: smooth; }

    body.single-post{
      margin: 0;
      background: var(--aurora-black);
      color: var(--aurora-paper);
      font-family: var(--font);
      line-height: 1.5;
      overflow-x: hidden;
    }

    body.single-post a{ color: inherit; text-decoration: none; }
    body.single-post button, body.single-post input{ font: inherit; }

    body.single-post .page{
      min-height: 100vh;
      position: relative;
      background:
        radial-gradient(circle at 12% 8%, rgba(217,154,43,.18), transparent 28%),
        radial-gradient(circle at 84% 2%, rgba(15,111,78,.18), transparent 26%),
        radial-gradient(circle at 58% 82%, rgba(158,47,36,.12), transparent 30%),
        linear-gradient(180deg, #070503 0%, #0d0f12 44%, #050403 100%);
    }

    body.single-post .page::before{
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .22;
      background-image:
        linear-gradient(rgba(243,234,216,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(243,234,216,.055) 1px, transparent 1px);
      background-size: 58px 58px;
      mask-image: radial-gradient(circle at center, #000, transparent 72%);
    }

    body.single-post .container{
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    body.single-post .top-alert{
      border-bottom: 1px solid rgba(217,154,43,.24);
      background: rgba(217,154,43,.08);
      color: var(--aurora-paper-soft);
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    body.single-post .top-alert-inner{
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    body.single-post .top-alert strong{ color: var(--aurora-gold-2); }

    body.single-post .header{
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--aurora-line);
      background: rgba(5,4,3,.86);
      backdrop-filter: blur(18px);
    }

    body.single-post .header-inner{
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    body.single-post .brand{
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 292px;
    }

    body.single-post .brand-seal{
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 1px solid rgba(217,154,43,.58);
      background:
        radial-gradient(circle, rgba(240,195,106,.2), transparent 54%),
        conic-gradient(from 180deg, rgba(217,154,43,.7), rgba(15,111,78,.58), rgba(158,47,36,.5), rgba(217,154,43,.7));
      display: grid;
      place-items: center;
      box-shadow: 0 0 38px rgba(217,154,43,.16);
      flex: 0 0 auto;
    }

    body.single-post .brand-seal::after{
      content: "A";
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #070503;
      color: var(--aurora-gold-2);
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 900;
    }

    body.single-post .brand-kicker{
      margin: 0;
      color: var(--aurora-muted);
      font-size: 10px;
      letter-spacing: .24em;
      text-transform: uppercase;
      font-weight: 900;
    }

    body.single-post .brand-title{
      margin: 2px 0 0;
      color: var(--aurora-paper);
      font-family: var(--serif);
      font-size: 20px;
      line-height: 1;
      letter-spacing: .02em;
      font-weight: 800;
    }

    body.single-post .nav{
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      color: var(--aurora-paper-soft);
      font-size: 13px;
      font-weight: 800;
    }

    body.single-post .nav a{
      position: relative;
      transition: color .2s ease;
      white-space: nowrap;
    }

    body.single-post .nav a::after{
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -8px;
      height: 1px;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .2s ease;
      background: var(--aurora-gold);
    }

    body.single-post .nav a:hover, body.single-post .nav a.active{ color: var(--aurora-gold-2); }
    body.single-post .nav a:hover::after, body.single-post .nav a.active::after{ transform: scaleX(1); }

    body.single-post .btn{
      border: 0;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .04em;
      text-transform: uppercase;
      transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
      white-space: nowrap;
    }

    body.single-post .btn:hover{ transform: translateY(-1px); }

    body.single-post .btn-primary{
      background: linear-gradient(135deg, var(--aurora-gold-2), var(--aurora-gold));
      color: #130d05;
      box-shadow: 0 16px 36px rgba(217,154,43,.2);
    }

    body.single-post .btn-secondary{
      border: 1px solid rgba(243,234,216,.16);
      background: rgba(243,234,216,.045);
      color: var(--aurora-paper);
    }

    body.single-post .btn-secondary:hover{
      border-color: rgba(217,154,43,.45);
      color: var(--aurora-gold-2);
      background: rgba(217,154,43,.08);
    }

    body.single-post .article-hero{
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--aurora-line);
      padding: 74px 0 88px;
    }

    body.single-post .article-hero::before{
      content: "";
      position: absolute;
      inset: 0;
      opacity: .2;
      background:
        linear-gradient(115deg, transparent 0%, rgba(217,154,43,.08) 42%, transparent 62%),
        repeating-linear-gradient(0deg, rgba(243,234,216,.05) 0 1px, transparent 1px 7px);
      pointer-events: none;
    }

    body.single-post .article-hero-grid{
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 34px;
      align-items: end;
    }

    body.single-post .eyebrow-row{
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 22px;
    }

    body.single-post .badge{
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border-radius: 999px;
      padding: 7px 11px;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
      border: 1px solid rgba(217,154,43,.34);
      background: rgba(217,154,43,.09);
      color: #ffe1a1;
    }

    body.single-post .badge.green{
      border-color: rgba(30,183,122,.34);
      background: rgba(30,183,122,.1);
      color: #adffd7;
    }

    body.single-post .badge.red{
      border-color: rgba(158,47,36,.5);
      background: rgba(158,47,36,.16);
      color: #ffc4bc;
    }

    body.single-post .badge.paper{
      border-color: rgba(243,234,216,.22);
      background: rgba(243,234,216,.07);
      color: var(--aurora-paper);
    }

    body.single-post h1, body.single-post h2, body.single-post h3{ text-wrap: balance; }

    body.single-post .article-title{
      margin: 0;
      max-width: 900px;
      font-family: var(--serif);
      font-size: clamp(44px, 7vw, 88px);
      line-height: .92;
      letter-spacing: -.055em;
      font-weight: 900;
    }

    body.single-post .article-title span{
      color: var(--aurora-gold-2);
      text-shadow: 0 0 34px rgba(217,154,43,.18);
    }

    body.single-post .article-subtitle{
      max-width: 760px;
      margin: 26px 0 0;
      font-size: 19px;
      line-height: 1.82;
      color: var(--aurora-paper-soft);
    }

    body.single-post .article-meta-row{
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
      color: var(--aurora-muted);
      font-size: 13px;
    }

    body.single-post .article-meta-row strong{ color: var(--aurora-paper); }

    body.single-post .classified-card{
      border-radius: 30px;
      border: 1px solid rgba(158,47,36,.42);
      background:
        radial-gradient(circle at 24% 14%, rgba(158,47,36,.2), transparent 32%),
        rgba(158,47,36,.065);
      box-shadow: var(--shadow);
      padding: 22px;
    }

    body.single-post .classified-stamp{
      width: max-content;
      border: 1px solid rgba(158,47,36,.6);
      color: #ffc5be;
      border-radius: 8px;
      padding: 7px 10px;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      transform: rotate(-2deg);
      background: rgba(158,47,36,.12);
    }

    body.single-post .classified-card h2{
      margin: 24px 0 10px;
      font-family: var(--serif);
      font-size: 34px;
      line-height: 1.05;
      letter-spacing: -.035em;
    }

    body.single-post .classified-card p{
      color: var(--aurora-paper-soft);
      line-height: 1.75;
      margin-bottom: 0;
    }

    body.single-post main section{
      padding: 58px 0;
      position: relative;
    }

    body.single-post .article-layout{
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 28px;
      align-items: start;
    }

    body.single-post .article-body{
      border-radius: 30px;
      border: 1px solid rgba(243,234,216,.11);
      background: rgba(5,4,3,.38);
      padding: clamp(24px, 4vw, 52px);
      box-shadow: var(--shadow);
    }

    body.single-post .lead{
      margin: 0 0 32px;
      color: var(--aurora-paper);
      font-family: var(--serif);
      font-size: clamp(25px, 3vw, 36px);
      line-height: 1.42;
      letter-spacing: -.025em;
    }

    body.single-post .article-body p{
      color: var(--aurora-paper-soft);
      font-size: 18px;
      line-height: 1.92;
    }

    body.single-post .article-body h2{
      font-family: var(--serif);
      font-size: clamp(34px, 4vw, 54px);
      line-height: 1.02;
      letter-spacing: -.045em;
      margin: 54px 0 18px;
    }

    body.single-post .article-body h3{
      font-family: var(--serif);
      font-size: 31px;
      line-height: 1.1;
      letter-spacing: -.03em;
      margin: 42px 0 12px;
    }

    body.single-post .article-body blockquote{
      margin: 38px 0;
      border-left: 2px solid rgba(217,154,43,.62);
      padding: 4px 0 4px 22px;
      font-family: var(--serif);
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.5;
      color: var(--aurora-paper);
    }

    body.single-post .article-body blockquote cite{
      display: block;
      margin-top: 14px;
      color: var(--aurora-muted);
      font-family: var(--font);
      font-size: 13px;
      font-style: normal;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    body.single-post .note-box, body.single-post .source-box, body.single-post .quote-box{
      border-radius: 24px;
      border: 1px solid rgba(243,234,216,.11);
      background: rgba(243,234,216,.045);
      padding: 22px;
      margin: 32px 0;
    }

    body.single-post .note-box.red{
      border-color: rgba(158,47,36,.42);
      background:
        radial-gradient(circle at 24% 14%, rgba(158,47,36,.16), transparent 32%),
        rgba(158,47,36,.065);
    }

    body.single-post .note-box.green{
      border-color: rgba(30,183,122,.3);
      background:
        radial-gradient(circle at 24% 14%, rgba(30,183,122,.14), transparent 34%),
        rgba(30,183,122,.045);
    }

    body.single-post .component-title{
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 14px;
      color: var(--aurora-gold-2);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    body.single-post .note-box p, body.single-post .source-box p, body.single-post .quote-box p{
      margin-bottom: 0;
      font-size: 16px;
      line-height: 1.75;
    }

    body.single-post .image-placeholder{
      min-height: 420px;
      border-radius: 28px;
      border: 1px solid rgba(217,154,43,.22);
      background:
        linear-gradient(135deg, rgba(5,4,3,.16), rgba(5,4,3,.9)),
        radial-gradient(circle at 34% 32%, rgba(217,154,43,.35), transparent 25%),
        radial-gradient(circle at 78% 15%, rgba(15,111,78,.26), transparent 25%),
        #19130c;
      position: relative;
      overflow: hidden;
      margin: 36px 0 10px;
      display: flex;
      align-items: end;
      padding: 24px;
    }

    body.single-post .image-placeholder::before{
      content: "";
      position: absolute;
      inset: 0;
      opacity: .22;
      background-image:
        linear-gradient(rgba(243,234,216,.13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(243,234,216,.13) 1px, transparent 1px);
      background-size: 34px 34px;
    }

    body.single-post .image-placeholder::after{
      content: "ARQUIVO VISUAL";
      position: absolute;
      right: 22px;
      top: 20px;
      color: rgba(243,234,216,.16);
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .2em;
    }

    body.single-post .caption{
      position: relative;
      z-index: 2;
      color: var(--aurora-paper-soft);
      font-size: 14px;
      line-height: 1.6;
      max-width: 640px;
    }

    body.single-post .article-aside{
      position: sticky;
      top: 112px;
      display: grid;
      gap: 14px;
    }

    body.single-post .side-panel{
      border-radius: 26px;
      border: 1px solid rgba(243,234,216,.11);
      background:
        radial-gradient(circle at 20% 0%, rgba(217,154,43,.13), transparent 38%),
        rgba(243,234,216,.04);
      box-shadow: var(--shadow);
      padding: 22px;
    }

    body.single-post .side-panel.green{
      border-color: rgba(30,183,122,.3);
      background:
        radial-gradient(circle at 24% 14%, rgba(30,183,122,.17), transparent 34%),
        rgba(30,183,122,.045);
    }

    body.single-post .side-panel h3{
      margin: 0;
      font-family: var(--serif);
      font-size: 28px;
      line-height: 1.08;
      letter-spacing: -.035em;
    }

    body.single-post .side-panel p{
      color: var(--aurora-paper-soft);
      line-height: 1.7;
      font-size: 15px;
    }

    body.single-post .toc a{
      display: block;
      padding: 11px 0;
      border-bottom: 1px solid rgba(243,234,216,.1);
      color: var(--aurora-paper-soft);
      font-size: 14px;
    }

    body.single-post .toc a:hover{ color: var(--aurora-gold-2); }

    body.single-post .fact-list, body.single-post .source-list{
      display: grid;
      gap: 10px;
      margin-top: 18px;
    }

    body.single-post .fact-item, body.single-post .source-item{
      border-radius: 18px;
      border: 1px solid rgba(243,234,216,.1);
      background: rgba(5,4,3,.38);
      padding: 14px;
    }

    body.single-post .fact-item strong, body.single-post .source-item strong{
      display: block;
      color: var(--aurora-paper);
      margin-bottom: 4px;
      font-size: 14px;
    }

    body.single-post .fact-item span, body.single-post .source-item span{
      color: var(--aurora-muted);
      font-size: 13px;
      line-height: 1.55;
    }

    body.single-post .author-box{
      display: flex;
      gap: 18px;
      align-items: center;
      border-radius: 28px;
      border: 1px solid rgba(243,234,216,.11);
      background: rgba(243,234,216,.045);
      padding: 24px;
      margin-top: 38px;
    }

    body.single-post .avatar{
      width: 68px;
      height: 68px;
      border-radius: 50%;
      border: 1px solid rgba(217,154,43,.4);
      background: radial-gradient(circle, rgba(217,154,43,.22), transparent 56%), rgba(243,234,216,.06);
      display: grid;
      place-items: center;
      font-family: var(--serif);
      font-weight: 950;
      color: var(--aurora-gold-2);
      box-shadow: 0 0 30px rgba(217,154,43,.14);
      flex: 0 0 auto;
    }

    body.single-post .author-box h3{
      margin: 0 0 6px;
      font-size: 26px;
    }

    body.single-post .author-box p{
      margin: 0;
      font-size: 15px;
      line-height: 1.7;
    }

    body.single-post .related-grid{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    body.single-post .related-card{
      border-radius: 26px;
      border: 1px solid rgba(243,234,216,.1);
      background:
        radial-gradient(circle at 20% 0%, rgba(217,154,43,.16), transparent 38%),
        rgba(243,234,216,.04);
      padding: 22px;
      transition: transform .2s ease, border-color .2s ease;
    }

    body.single-post .related-card:hover{
      transform: translateY(-4px);
      border-color: rgba(217,154,43,.36);
    }

    body.single-post .related-card span{
      color: var(--aurora-muted);
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      font-weight: 900;
    }

    body.single-post .related-card h3{
      margin: 14px 0 0;
      font-family: var(--serif);
      font-size: 27px;
      line-height: 1.08;
      letter-spacing: -.035em;
    }

    body.single-post .article-link{
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-top: 20px;
      color: var(--aurora-gold-2);
      font-weight: 900;
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    body.single-post .cta-card{
      overflow: hidden;
      position: relative;
      border-radius: 34px;
      border: 1px solid rgba(30,183,122,.28);
      background:
        radial-gradient(circle at 82% 18%, rgba(30,183,122,.17), transparent 34%),
        radial-gradient(circle at 18% 88%, rgba(217,154,43,.14), transparent 30%),
        linear-gradient(135deg, rgba(22,18,13,.98), rgba(5,4,3,.98));
      box-shadow: var(--shadow);
      padding: 46px;
    }

    body.single-post .cta-card::after{
      content: "";
      position: absolute;
      width: 290px;
      height: 290px;
      border: 1px solid rgba(217,154,43,.18);
      border-radius: 50%;
      right: -110px;
      top: -82px;
    }

    body.single-post .cta-content{ position: relative; z-index: 2; max-width: 820px; }

    body.single-post .cta-card h2{
      margin: 16px 0 0;
      font-family: var(--serif);
      font-size: clamp(36px, 5vw, 62px);
      line-height: .98;
      letter-spacing: -.052em;
    }

    body.single-post .cta-card p{
      max-width: 700px;
      color: var(--aurora-paper-soft);
      line-height: 1.78;
    }

    body.single-post .footer{
      border-top: 1px solid var(--aurora-line);
      padding: 38px 0;
      color: var(--aurora-muted);
    }

    body.single-post .footer-inner{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    body.single-post .footer strong{ color: var(--aurora-paper); }

    @media (max-width: 1040px){
      body.single-post .nav{ display: none; }
      body.single-post .article-hero-grid, body.single-post .article-layout{
        grid-template-columns: 1fr;
      }
      body.single-post .article-aside{ position: static; }
      body.single-post .related-grid{ grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 700px){
      body.single-post .container{ width: min(100% - 28px, 1180px); }
      body.single-post .top-alert-inner{
        align-items: start;
        flex-direction: column;
        justify-content: center;
        padding: 10px 0;
      }
      body.single-post .brand{ min-width: unset; }
      body.single-post .brand-title{ font-size: 17px; }
      body.single-post .header .btn-secondary{ display: none; }
      body.single-post .article-hero{ padding: 58px 0 76px; }
      body.single-post .article-subtitle{ font-size: 16px; }
      body.single-post .related-grid{ grid-template-columns: 1fr; }
      body.single-post .author-box{ align-items: start; flex-direction: column; }
      body.single-post .footer-inner{ align-items: start; flex-direction: column; }
      body.single-post .cta-card{ padding: 28px; }
    }
  


/* ===== artigo_video.html scoped ===== */


    body.post-template-single-video{
      --black:#050403;
      --night:#0d0f12;
      --card:#16120d;
      --paper:#f3ead8;
      --soft:#d9c8aa;
      --muted:#a99675;
      --gold:#d99a2b;
      --gold2:#f0c36a;
      --green:#1eb77a;
      --red:#9e2f24;
      --red2:#d34b3e;
      --line:rgba(243,234,216,.14);
      --shadow:0 28px 90px rgba(0,0,0,.46);
      --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      --serif:Georgia,"Times New Roman",serif;
      --mono:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
    }

    body.post-template-single-video *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body.post-template-single-video{margin:0;background:var(--black);color:var(--paper);font-family:var(--font);line-height:1.5;overflow-x:hidden}
    body.post-template-single-video a{color:inherit;text-decoration:none}
    body.post-template-single-video button, body.post-template-single-video input{font:inherit}

    body.post-template-single-video .page{
      min-height:100vh;
      position:relative;
      background:
        radial-gradient(circle at 12% 8%,rgba(217,154,43,.18),transparent 28%),
        radial-gradient(circle at 84% 2%,rgba(158,47,36,.18),transparent 26%),
        radial-gradient(circle at 58% 82%,rgba(15,111,78,.12),transparent 30%),
        linear-gradient(180deg,#070503 0%,#0d0f12 44%,#050403 100%);
    }

    body.post-template-single-video .page::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.22;
      background-image:
        linear-gradient(rgba(243,234,216,.055) 1px,transparent 1px),
        linear-gradient(90deg,rgba(243,234,216,.055) 1px,transparent 1px);
      background-size:58px 58px;
      mask-image:radial-gradient(circle at center,#000,transparent 72%);
    }

    body.post-template-single-video .container{width:min(1180px,calc(100% - 40px));margin:0 auto;position:relative;z-index:2}

    body.post-template-single-video .top-alert{border-bottom:1px solid rgba(158,47,36,.28);background:rgba(158,47,36,.10);color:var(--soft);font-size:12px;letter-spacing:.12em;text-transform:uppercase}
    body.post-template-single-video .top-alert-inner{min-height:38px;display:flex;align-items:center;justify-content:space-between;gap:16px}
    body.post-template-single-video .top-alert strong{color:#ffc4bc}

    body.post-template-single-video .header{position:sticky;top:0;z-index:50;border-bottom:1px solid var(--line);background:rgba(5,4,3,.86);backdrop-filter:blur(18px)}
    body.post-template-single-video .header-inner{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:24px}
    body.post-template-single-video .brand{display:flex;align-items:center;gap:14px;min-width:292px}
    body.post-template-single-video .brand-seal{width:50px;height:50px;border-radius:50%;border:1px solid rgba(217,154,43,.58);background:radial-gradient(circle,rgba(240,195,106,.2),transparent 54%),conic-gradient(from 180deg,rgba(217,154,43,.7),rgba(15,111,78,.58),rgba(158,47,36,.5),rgba(217,154,43,.7));display:grid;place-items:center;box-shadow:0 0 38px rgba(217,154,43,.16);flex:0 0 auto}
    body.post-template-single-video .brand-seal::after{content:"A";width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:#070503;color:var(--gold2);font-family:var(--serif);font-size:22px;font-weight:900}
    body.post-template-single-video .brand-kicker{margin:0;color:var(--muted);font-size:10px;letter-spacing:.24em;text-transform:uppercase;font-weight:900}
    body.post-template-single-video .brand-title{margin:2px 0 0;color:var(--paper);font-family:var(--serif);font-size:20px;line-height:1;font-weight:800}

    body.post-template-single-video .nav{display:flex;align-items:center;gap:22px;color:var(--soft);font-size:13px;font-weight:800}
    body.post-template-single-video .nav a{position:relative;white-space:nowrap;transition:color .2s ease}
    body.post-template-single-video .nav a::after{content:"";position:absolute;left:0;right:0;bottom:-8px;height:1px;background:var(--red2);transform:scaleX(0);transform-origin:left;transition:transform .2s ease}
    body.post-template-single-video .nav a:hover, body.post-template-single-video .nav a.active{color:#ffc4bc}
    body.post-template-single-video .nav a:hover::after, body.post-template-single-video .nav a.active::after{transform:scaleX(1)}

    body.post-template-single-video .btn{border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:46px;padding:0 18px;border-radius:999px;font-size:13px;font-weight:900;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;transition:transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease,filter .2s ease}
    body.post-template-single-video .btn:hover{transform:translateY(-1px);filter:brightness(1.05)}
    body.post-template-single-video .btn-primary{background:linear-gradient(135deg,var(--gold2),var(--gold));color:#130d05;box-shadow:0 16px 36px rgba(217,154,43,.2)}
    body.post-template-single-video .btn-red{background:linear-gradient(135deg,var(--red2),var(--red));color:#fff1e8;box-shadow:0 16px 36px rgba(158,47,36,.24)}
    body.post-template-single-video .btn-secondary{border:1px solid rgba(243,234,216,.16);background:rgba(243,234,216,.045);color:var(--paper)}
    body.post-template-single-video .btn-green{background:linear-gradient(135deg,#36e29b,var(--green));color:#04120c;box-shadow:0 16px 36px rgba(30,183,122,.16)}

    body.post-template-single-video .hero{position:relative;overflow:hidden;border-bottom:1px solid var(--line);padding:64px 0 56px}
    body.post-template-single-video .hero::before{content:"";position:absolute;inset:0;opacity:.24;background:linear-gradient(115deg,transparent 0%,rgba(158,47,36,.10) 42%,transparent 62%),repeating-linear-gradient(0deg,rgba(243,234,216,.045) 0 1px,transparent 1px 7px);pointer-events:none}

    body.post-template-single-video .eyebrow-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:22px}
    body.post-template-single-video .badge{display:inline-flex;align-items:center;border-radius:999px;padding:7px 11px;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;border:1px solid rgba(217,154,43,.34);background:rgba(217,154,43,.09);color:#ffe1a1}
    body.post-template-single-video .badge.red{border-color:rgba(158,47,36,.5);background:rgba(158,47,36,.16);color:#ffc4bc}
    body.post-template-single-video .badge.green{border-color:rgba(30,183,122,.34);background:rgba(30,183,122,.1);color:#adffd7}
    body.post-template-single-video .badge.paper{border-color:rgba(243,234,216,.22);background:rgba(243,234,216,.07);color:var(--paper)}

    body.post-template-single-video h1, body.post-template-single-video h2, body.post-template-single-video h3{text-wrap:balance}
    body.post-template-single-video .hero-title{margin:0;max-width:980px;font-family:var(--serif);font-size:clamp(42px,6.8vw,86px);line-height:.92;letter-spacing:-.055em;font-weight:900}
    body.post-template-single-video .hero-title span{color:var(--gold2);text-shadow:0 0 34px rgba(217,154,43,.18)}
    body.post-template-single-video .hero-copy{max-width:760px;margin:24px 0 0;font-size:18px;line-height:1.82;color:var(--soft)}

    body.post-template-single-video .video-section{padding:40px 0 58px;background:rgba(5,4,3,.30);border-bottom:1px solid rgba(158,47,36,.20)}
    body.post-template-single-video .video-wrap{display:block}
    body.post-template-single-video .video-card{position:relative;overflow:hidden;border-radius:34px;border:1px solid rgba(158,47,36,.34);background:radial-gradient(circle at 76% 18%,rgba(158,47,36,.24),transparent 34%),radial-gradient(circle at 18% 88%,rgba(217,154,43,.14),transparent 30%),rgba(22,18,13,.92);box-shadow:var(--shadow);padding:16px}
    body.post-template-single-video .video-frame{position:relative;aspect-ratio:16/9;border-radius:24px;overflow:hidden;border:1px solid rgba(243,234,216,.12);background:linear-gradient(135deg,rgba(5,4,3,.12),rgba(5,4,3,.92)),radial-gradient(circle at 44% 34%,rgba(217,154,43,.26),transparent 28%),radial-gradient(circle at 70% 15%,rgba(158,47,36,.24),transparent 26%),#130d09;display:grid;place-items:center}
    body.post-template-single-video .video-frame::before{content:"";position:absolute;inset:0;opacity:.23;background-image:linear-gradient(rgba(243,234,216,.13) 1px,transparent 1px),linear-gradient(90deg,rgba(243,234,216,.13) 1px,transparent 1px);background-size:34px 34px}
    body.post-template-single-video .video-frame::after{content:"YOUTUBE";position:absolute;right:18px;top:18px;color:rgba(243,234,216,.18);font-family:var(--mono);font-size:12px;letter-spacing:.18em;font-weight:900}
    body.post-template-single-video .play-mark{position:relative;z-index:2;width:96px;height:96px;border-radius:50%;display:grid;place-items:center;background:rgba(158,47,36,.76);border:1px solid rgba(243,234,216,.20);box-shadow:0 0 44px rgba(158,47,36,.34)}
    body.post-template-single-video .play-mark::after{content:"";width:0;height:0;border-top:17px solid transparent;border-bottom:17px solid transparent;border-left:27px solid var(--paper);margin-left:7px}
    body.post-template-single-video .video-note{margin-top:16px;color:var(--muted);font-size:14px;line-height:1.6}

    body.post-template-single-video .component-title{margin:0 0 18px;color:var(--gold2);font-size:12px;font-weight:950;letter-spacing:.18em;text-transform:uppercase}
    body.post-template-single-video .video-info{display:grid;grid-template-columns:1.1fr repeat(4,minmax(120px,.6fr));gap:12px;margin-top:18px}
    body.post-template-single-video .info-card{border-radius:22px;border:1px solid rgba(243,234,216,.1);background:rgba(243,234,216,.045);padding:16px;min-height:92px}
    body.post-template-single-video .info-card.featured{border-color:rgba(158,47,36,.32);background:radial-gradient(circle at 24% 14%,rgba(158,47,36,.18),transparent 32%),rgba(158,47,36,.06)}
    body.post-template-single-video .info-card.subscribe{border-color:rgba(158,47,36,.42);background:radial-gradient(circle at 24% 14%,rgba(158,47,36,.22),transparent 32%),rgba(158,47,36,.08);display:flex;flex-direction:column;justify-content:space-between}
    body.post-template-single-video .info-card small{display:block;color:var(--muted);font-size:10px;letter-spacing:.16em;text-transform:uppercase;font-weight:900;margin-bottom:8px}
    body.post-template-single-video .info-card strong{display:block;color:var(--paper);font-family:var(--serif);font-size:22px;line-height:1.05;letter-spacing:-.025em}
    body.post-template-single-video .info-card span{display:block;color:var(--soft);font-size:13px;line-height:1.55;margin-top:6px}
    body.post-template-single-video .info-card .mini-btn{display:inline-flex;align-items:center;justify-content:center;margin-top:12px;min-height:34px;padding:0 12px;border-radius:999px;background:linear-gradient(135deg,var(--red2),var(--red));color:#fff1e8;font-size:11px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}

    body.post-template-single-video section{padding:58px 0;position:relative}
    body.post-template-single-video .section-head{display:flex;align-items:end;justify-content:space-between;gap:22px;margin-bottom:28px}body.post-template-single-video .section-head h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,4vw,52px);line-height:1;letter-spacing:-.05em;font-weight:900}body.post-template-single-video .section-head p{max-width:720px;margin:12px 0 0;color:var(--muted);line-height:1.7}

    body.post-template-single-video .article-layout{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:28px;align-items:start}
    body.post-template-single-video .article-body{border-radius:30px;border:1px solid rgba(243,234,216,.11);background:rgba(5,4,3,.36);padding:clamp(24px,4vw,48px);box-shadow:var(--shadow)}
    body.post-template-single-video .article-body .lead{margin:0 0 32px;color:var(--paper);font-family:var(--serif);font-size:clamp(24px,3vw,34px);line-height:1.42;letter-spacing:-.025em}
    body.post-template-single-video .article-body h2{font-family:var(--serif);font-size:clamp(32px,4vw,52px);line-height:1.02;letter-spacing:-.045em;margin:48px 0 18px}body.post-template-single-video .article-body h2:first-of-type{margin-top:0}
    body.post-template-single-video .article-body h3{font-family:var(--serif);font-size:30px;line-height:1.1;letter-spacing:-.03em;margin:42px 0 12px}
    body.post-template-single-video .article-body p{color:var(--soft);font-size:18px;line-height:1.9}
    body.post-template-single-video .article-body blockquote{margin:38px 0;border-left:2px solid rgba(217,154,43,.62);padding:4px 0 4px 22px;font-family:var(--serif);font-size:clamp(24px,3vw,34px);line-height:1.5;color:var(--paper)}

    body.post-template-single-video .summary-box, body.post-template-single-video .note-box{border-radius:24px;border:1px solid rgba(243,234,216,.11);background:rgba(243,234,216,.045);padding:22px;margin:32px 0}body.post-template-single-video .summary-box.red{border-color:rgba(158,47,36,.42);background:radial-gradient(circle at 24% 14%,rgba(158,47,36,.16),transparent 32%),rgba(158,47,36,.065)}body.post-template-single-video .summary-box.green{border-color:rgba(30,183,122,.3);background:radial-gradient(circle at 24% 14%,rgba(30,183,122,.14),transparent 34%),rgba(30,183,122,.045)}
    body.post-template-single-video .summary-box h3, body.post-template-single-video .note-box h3{margin:0;font-family:var(--serif);font-size:30px;line-height:1.1;letter-spacing:-.035em}body.post-template-single-video .summary-list{display:grid;gap:10px;margin-top:18px}body.post-template-single-video .summary-item{border-radius:18px;border:1px solid rgba(243,234,216,.1);background:rgba(5,4,3,.38);padding:14px}body.post-template-single-video .summary-item strong{display:block;color:var(--paper);margin-bottom:4px}body.post-template-single-video .summary-item span{color:var(--muted);font-size:14px;line-height:1.6}

    body.post-template-single-video .article-aside{position:sticky;top:112px;display:grid;gap:14px}body.post-template-single-video .side-card{border-radius:26px;border:1px solid rgba(243,234,216,.11);background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.13),transparent 38%),rgba(243,234,216,.04);box-shadow:var(--shadow);padding:22px}body.post-template-single-video .side-card.red{border-color:rgba(158,47,36,.42);background:radial-gradient(circle at 24% 14%,rgba(158,47,36,.20),transparent 32%),rgba(158,47,36,.065)}body.post-template-single-video .side-card h3{margin:0;font-family:var(--serif);font-size:28px;line-height:1.08;letter-spacing:-.035em}body.post-template-single-video .side-card p{color:var(--soft);line-height:1.7;font-size:15px}body.post-template-single-video .toc a{display:block;padding:11px 0;border-bottom:1px solid rgba(243,234,216,.1);color:var(--soft);font-size:14px}body.post-template-single-video .toc a:hover{color:var(--gold2)}

    body.post-template-single-video .related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}body.post-template-single-video .related-card{border-radius:26px;border:1px solid rgba(243,234,216,.1);background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.16),transparent 38%),rgba(243,234,216,.04);padding:22px;transition:transform .2s ease,border-color .2s ease}body.post-template-single-video .related-card:hover{transform:translateY(-4px);border-color:rgba(217,154,43,.36)}body.post-template-single-video .related-card small{color:var(--muted);font-size:12px;letter-spacing:.14em;text-transform:uppercase;font-weight:900}body.post-template-single-video .related-card h3{margin:14px 0 0;font-family:var(--serif);font-size:27px;line-height:1.08;letter-spacing:-.035em}body.post-template-single-video .article-link{display:inline-flex;align-items:center;gap:7px;margin-top:20px;color:var(--gold2);font-weight:900;font-size:13px;letter-spacing:.08em;text-transform:uppercase}

    body.post-template-single-video .cta-card{overflow:hidden;position:relative;border-radius:34px;border:1px solid rgba(158,47,36,.42);background:radial-gradient(circle at 82% 18%,rgba(158,47,36,.26),transparent 34%),radial-gradient(circle at 18% 88%,rgba(217,154,43,.16),transparent 30%),linear-gradient(135deg,rgba(22,18,13,.98),rgba(5,4,3,.98));box-shadow:var(--shadow);padding:46px}body.post-template-single-video .cta-card::after{content:"PLAY";position:absolute;right:-20px;top:8px;color:rgba(243,234,216,.045);font-family:var(--serif);font-size:150px;font-weight:900;letter-spacing:-.08em}body.post-template-single-video .cta-content{position:relative;z-index:2;max-width:820px}body.post-template-single-video .cta-card h2{margin:16px 0 0;font-family:var(--serif);font-size:clamp(36px,5vw,62px);line-height:.98;letter-spacing:-.052em}body.post-template-single-video .cta-card p{max-width:700px;color:var(--soft);line-height:1.78}body.post-template-single-video .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}

    body.post-template-single-video .footer{border-top:1px solid var(--line);padding:38px 0;color:var(--muted)}body.post-template-single-video .footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}body.post-template-single-video .footer strong{color:var(--paper)}

    @media(max-width:1040px){body.post-template-single-video .nav{display:none}body.post-template-single-video .article-layout{grid-template-columns:1fr}body.post-template-single-video .article-aside{position:static}body.post-template-single-video .related-grid{grid-template-columns:repeat(2,1fr)}body.post-template-single-video .video-info{grid-template-columns:repeat(2,1fr)}}
    @media(max-width:760px){body.post-template-single-video .container{width:min(100% - 28px,1180px)}body.post-template-single-video .top-alert-inner{align-items:start;flex-direction:column;justify-content:center;padding:10px 0}body.post-template-single-video .brand{min-width:unset}body.post-template-single-video .brand-title{font-size:17px}body.post-template-single-video .header .btn-secondary{display:none}body.post-template-single-video .hero{padding:52px 0 44px}body.post-template-single-video .hero-copy{font-size:16px}body.post-template-single-video .video-section{padding:28px 0 42px}body.post-template-single-video .play-mark{width:72px;height:72px}body.post-template-single-video .video-info, body.post-template-single-video .related-grid{grid-template-columns:1fr}body.post-template-single-video .footer-inner{align-items:start;flex-direction:column}body.post-template-single-video .cta-card, body.post-template-single-video .article-body{padding:24px}}
  


/* ===== categoria.html scoped ===== */


    body.category{
      --black: #050403;
      --night: #0d0f12;
      --card: #16120d;
      --paper: #f3ead8;
      --soft: #d9c8aa;
      --muted: #a99675;
      --gold: #d99a2b;
      --gold2: #f0c36a;
      --green: #1eb77a;
      --red: #9e2f24;
      --line: rgba(243,234,216,.14);
      --shadow: 0 28px 90px rgba(0,0,0,.46);
      --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --serif: Georgia, "Times New Roman", serif;
      --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    }

    body.category *{ box-sizing: border-box; }
    html{ scroll-behavior: smooth; }
    body.category{
      margin: 0;
      background: var(--black);
      color: var(--paper);
      font-family: var(--font);
      line-height: 1.5;
      overflow-x: hidden;
    }
    body.category a{ color: inherit; text-decoration: none; }
    body.category button, body.category input, body.category select{ font: inherit; }

    body.category .page{
      min-height: 100vh;
      position: relative;
      background:
        radial-gradient(circle at 12% 8%, rgba(217,154,43,.18), transparent 28%),
        radial-gradient(circle at 84% 2%, rgba(15,111,78,.18), transparent 26%),
        radial-gradient(circle at 58% 82%, rgba(158,47,36,.12), transparent 30%),
        linear-gradient(180deg, #070503 0%, #0d0f12 44%, #050403 100%);
    }

    body.category .page::before{
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .22;
      background-image:
        linear-gradient(rgba(243,234,216,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(243,234,216,.055) 1px, transparent 1px);
      background-size: 58px 58px;
      mask-image: radial-gradient(circle at center, #000, transparent 72%);
    }

    body.category .container{
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    body.category .top-alert{
      border-bottom: 1px solid rgba(217,154,43,.24);
      background: rgba(217,154,43,.08);
      color: var(--soft);
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    body.category .top-alert-inner{
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    body.category .top-alert strong{ color: var(--gold2); }

    body.category .header{
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--line);
      background: rgba(5,4,3,.86);
      backdrop-filter: blur(18px);
    }

    body.category .header-inner{
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    body.category .brand{
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 292px;
    }

    body.category .brand-seal{
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 1px solid rgba(217,154,43,.58);
      background:
        radial-gradient(circle, rgba(240,195,106,.2), transparent 54%),
        conic-gradient(from 180deg, rgba(217,154,43,.7), rgba(15,111,78,.58), rgba(158,47,36,.5), rgba(217,154,43,.7));
      display: grid;
      place-items: center;
      box-shadow: 0 0 38px rgba(217,154,43,.16);
      flex: 0 0 auto;
    }

    body.category .brand-seal::after{
      content: "A";
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #070503;
      color: var(--gold2);
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 900;
    }

    body.category .brand-kicker{
      margin: 0;
      color: var(--muted);
      font-size: 10px;
      letter-spacing: .24em;
      text-transform: uppercase;
      font-weight: 900;
    }

    body.category .brand-title{
      margin: 2px 0 0;
      color: var(--paper);
      font-family: var(--serif);
      font-size: 20px;
      line-height: 1;
      font-weight: 800;
    }

    body.category .nav{
      display: flex;
      align-items: center;
      gap: 22px;
      color: var(--soft);
      font-size: 13px;
      font-weight: 800;
    }

    body.category .nav a{
      position: relative;
      white-space: nowrap;
      transition: color .2s ease;
    }

    body.category .nav a::after{
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -8px;
      height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .2s ease;
    }

    body.category .nav a:hover, body.category .nav a.active{ color: var(--gold2); }
    body.category .nav a:hover::after, body.category .nav a.active::after{ transform: scaleX(1); }

    body.category .btn{
      border: 0;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .04em;
      text-transform: uppercase;
      white-space: nowrap;
      transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
    }

    body.category .btn:hover{ transform: translateY(-1px); }
    body.category .btn-primary{
      background: linear-gradient(135deg, var(--gold2), var(--gold));
      color: #130d05;
      box-shadow: 0 16px 36px rgba(217,154,43,.2);
    }
    body.category .btn-secondary{
      border: 1px solid rgba(243,234,216,.16);
      background: rgba(243,234,216,.045);
      color: var(--paper);
    }
    body.category .btn-secondary:hover{
      border-color: rgba(217,154,43,.45);
      color: var(--gold2);
      background: rgba(217,154,43,.08);
    }

    body.category .hero{
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
      padding: 76px 0 92px;
    }

    body.category .hero::before{
      content: "";
      position: absolute;
      inset: 0;
      opacity: .2;
      background:
        linear-gradient(115deg, transparent 0%, rgba(217,154,43,.08) 42%, transparent 62%),
        repeating-linear-gradient(0deg, rgba(243,234,216,.05) 0 1px, transparent 1px 7px);
      pointer-events: none;
    }

    body.category .hero-grid{
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 34px;
      align-items: end;
    }

    body.category .eyebrow-row{
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 22px;
    }

    body.category .badge{
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 7px 11px;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
      border: 1px solid rgba(217,154,43,.34);
      background: rgba(217,154,43,.09);
      color: #ffe1a1;
    }
    body.category .badge.green{ border-color: rgba(30,183,122,.34); background: rgba(30,183,122,.1); color: #adffd7; }
    body.category .badge.red{ border-color: rgba(158,47,36,.5); background: rgba(158,47,36,.16); color: #ffc4bc; }
    body.category .badge.paper{ border-color: rgba(243,234,216,.22); background: rgba(243,234,216,.07); color: var(--paper); }

    body.category h1, body.category h2, body.category h3{ text-wrap: balance; }

    body.category .hero-title{
      margin: 0;
      max-width: 900px;
      font-family: var(--serif);
      font-size: clamp(44px, 7vw, 88px);
      line-height: .92;
      letter-spacing: -.055em;
      font-weight: 900;
    }

    body.category .hero-title span{ color: var(--gold2); text-shadow: 0 0 34px rgba(217,154,43,.18); }

    body.category .hero-copy{
      max-width: 760px;
      margin: 26px 0 0;
      font-size: 18px;
      line-height: 1.82;
      color: var(--soft);
    }

    body.category .hero-actions{
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    body.category .category-index{
      border-radius: 30px;
      border: 1px solid rgba(217,154,43,.24);
      background:
        radial-gradient(circle at 20% 0%, rgba(217,154,43,.16), transparent 38%),
        rgba(15,13,9,.72);
      box-shadow: var(--shadow);
      padding: 22px;
    }

    body.category .category-index-title{
      margin: 0 0 16px;
      color: var(--gold2);
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      font-weight: 950;
    }

    body.category .index-list{
      display: grid;
      gap: 12px;
    }

    body.category .index-item{
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(243,234,216,.1);
    }
    body.category .index-item:last-child{ border-bottom: 0; }
    body.category .index-item span{ color: var(--muted); font-size: 13px; }
    body.category .index-item strong{ color: var(--paper); }

    body.category .filter-section{
      margin-top: -34px;
      padding: 0 0 50px;
      z-index: 6;
    }

    body.category .filter-card{
      border-radius: 30px;
      border: 1px solid rgba(217,154,43,.24);
      background: rgba(15,13,9,.9);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
      padding: 18px;
    }

    body.category .filter-row{
      display: grid;
      grid-template-columns: 1fr 190px 150px;
      gap: 12px;
    }

    body.category .input-wrap, body.category .select-wrap{
      min-width: 0;
      border-radius: 999px;
      border: 1px solid rgba(243,234,216,.13);
      background: rgba(5,4,3,.7);
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 18px;
      color: var(--gold2);
    }

    body.category .input-wrap input, body.category .select-wrap select{
      width: 100%;
      min-height: 52px;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--paper);
    }

    body.category .select-wrap select option{ background: #100d09; color: var(--paper); }
    body.category .input-wrap input::placeholder{ color: rgba(217,200,170,.62); }

    body.category .chips{
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    body.category .chip{
      border: 1px solid rgba(243,234,216,.13);
      background: rgba(243,234,216,.04);
      color: var(--soft);
      border-radius: 999px;
      padding: 8px 11px;
      font-size: 12px;
      cursor: pointer;
      transition: .2s ease;
    }

    body.category .chip:hover, body.category .chip.active{
      border-color: rgba(217,154,43,.42);
      color: var(--gold2);
      background: rgba(217,154,43,.08);
    }

    body.category section{ padding: 58px 0; position: relative; }

    body.category .section-head{
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 22px;
      margin-bottom: 28px;
    }

    body.category .section-head h2{
      margin: 14px 0 0;
      font-family: var(--serif);
      font-size: clamp(34px, 4vw, 52px);
      line-height: 1;
      letter-spacing: -.05em;
      font-weight: 900;
    }

    body.category .section-head p{
      max-width: 680px;
      margin: 12px 0 0;
      color: var(--muted);
      line-height: 1.7;
    }

    body.category .featured-layout{
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
    }

    body.category .article-stack{ display: grid; gap: 18px; }

    body.category .article-card, body.category .panel, body.category .trail-card, body.category .series-card, body.category .newsletter-card{
      border-radius: 30px;
      border: 1px solid rgba(243,234,216,.1);
      background: rgba(22,18,13,.86);
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: transform .22s ease, border-color .22s ease;
    }

    body.category .article-card:hover, body.category .trail-card:hover, body.category .series-card:hover{
      transform: translateY(-5px);
      border-color: rgba(217,154,43,.36);
    }

    body.category .article-visual{
      position: relative;
      min-height: 210px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(5,4,3,.16), rgba(5,4,3,.92)),
        radial-gradient(circle at 34% 32%, rgba(217,154,43,.35), transparent 25%),
        radial-gradient(circle at 78% 15%, rgba(15,111,78,.26), transparent 25%),
        #19130c;
    }

    body.category .article-card.featured .article-visual{ min-height: 390px; }

    body.category .article-visual::before{
      content: "";
      position: absolute;
      inset: 0;
      opacity: .23;
      background-image:
        linear-gradient(rgba(243,234,216,.13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(243,234,216,.13) 1px, transparent 1px);
      background-size: 34px 34px;
    }

    body.category .article-visual::after{
      content: "";
      position: absolute;
      width: 160px;
      height: 160px;
      right: -45px;
      bottom: -54px;
      border-radius: 50%;
      border: 1px solid rgba(217,154,43,.28);
      box-shadow: inset 0 0 0 16px rgba(217,154,43,.035);
    }

    body.category .article-icon{
      position: absolute;
      top: 18px;
      left: 18px;
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid rgba(217,154,43,.34);
      background: rgba(5,4,3,.62);
      backdrop-filter: blur(14px);
      color: var(--gold2);
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 900;
    }

    body.category .article-visual .badge{ position: absolute; left: 18px; bottom: 18px; }
    body.category .article-content{ padding: 24px; }

    body.category .article-meta{
      margin: 0;
      color: var(--muted);
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      font-weight: 900;
    }

    body.category .article-content h3{
      margin: 12px 0 0;
      font-family: var(--serif);
      font-size: 26px;
      line-height: 1.12;
      letter-spacing: -.025em;
    }

    body.category .article-card.featured h3{ font-size: clamp(32px, 4vw, 50px); }
    body.category .article-content p:not(.article-meta){ color: var(--soft); line-height: 1.72; }

    body.category .article-link{
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-top: 20px;
      color: var(--gold2);
      font-weight: 900;
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    body.category .main-layout{
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 24px;
      align-items: start;
    }

    body.category .post-grid{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    body.category .sidebar{
      position: sticky;
      top: 112px;
      display: grid;
      gap: 16px;
    }

    body.category .panel{
      padding: 24px;
      overflow: visible;
      background:
        radial-gradient(circle at 20% 0%, rgba(217,154,43,.13), transparent 38%),
        rgba(243,234,216,.04);
    }

    body.category .panel.green{
      border-color: rgba(30,183,122,.3);
      background:
        radial-gradient(circle at 24% 14%, rgba(30,183,122,.17), transparent 34%),
        rgba(30,183,122,.045);
    }

    body.category .component-title{
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      color: var(--gold2);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    body.category .panel h3, body.category .trail-card h3, body.category .series-card h3{
      margin: 0;
      font-family: var(--serif);
      font-size: 30px;
      line-height: 1.06;
      letter-spacing: -.04em;
      font-weight: 900;
    }

    body.category .panel p, body.category .trail-card p, body.category .series-card p{
      color: var(--soft);
      line-height: 1.75;
    }

    body.category .side-list{ display: grid; gap: 10px; margin-top: 18px; }

    body.category .side-link{
      display: flex;
      justify-content: space-between;
      gap: 14px;
      padding: 13px 0;
      border-bottom: 1px solid rgba(243,234,216,.1);
      color: var(--soft);
      font-size: 14px;
    }

    body.category .side-link:hover{ color: var(--gold2); }
    body.category .side-link span{ color: var(--muted); }

    body.category .trail-grid, body.category .series-grid{
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    body.category .trail-card, body.category .series-card{
      min-height: 210px;
      padding: 22px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background:
        radial-gradient(circle at 20% 0%, rgba(217,154,43,.16), transparent 38%),
        rgba(243,234,216,.04);
    }

    body.category .trail-number{
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(217,154,43,.3);
      background: rgba(217,154,43,.1);
      color: var(--gold2);
      font-family: var(--serif);
      font-weight: 900;
    }

    body.category .newsletter-card{
      padding: 34px;
      background:
        radial-gradient(circle at 82% 18%, rgba(30,183,122,.17), transparent 34%),
        radial-gradient(circle at 18% 88%, rgba(217,154,43,.14), transparent 30%),
        linear-gradient(135deg, rgba(22,18,13,.98), rgba(5,4,3,.98));
    }

    body.category .newsletter-card h2{
      margin: 14px 0 0;
      font-family: var(--serif);
      font-size: clamp(34px, 4vw, 56px);
      line-height: 1;
      letter-spacing: -.05em;
    }

    body.category .newsletter-card p{
      color: var(--soft);
      line-height: 1.75;
      max-width: 760px;
    }

    body.category .newsletter-row{
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      margin-top: 22px;
      max-width: 720px;
    }

    body.category .pagination{
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 32px;
    }

    body.category .page-btn{
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(243,234,216,.14);
      background: rgba(243,234,216,.045);
      color: var(--soft);
      cursor: pointer;
      font-weight: 900;
    }

    body.category .page-btn.active, body.category .page-btn:hover{
      background: rgba(217,154,43,.12);
      border-color: rgba(217,154,43,.42);
      color: var(--gold2);
    }

    body.category .footer{
      border-top: 1px solid var(--line);
      padding: 38px 0;
      color: var(--muted);
    }

    body.category .footer-inner{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    body.category .footer strong{ color: var(--paper); }

    @media (max-width: 1040px){
      body.category .nav{ display: none; }
      body.category .hero-grid, body.category .featured-layout, body.category .main-layout{ grid-template-columns: 1fr; }
      body.category .sidebar{ position: static; }
      body.category .filter-row{ grid-template-columns: 1fr; }
      body.category .trail-grid, body.category .series-grid{ grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 760px){
      body.category .container{ width: min(100% - 28px, 1180px); }
      body.category .top-alert-inner{ align-items: start; flex-direction: column; justify-content: center; padding: 10px 0; }
      body.category .brand{ min-width: unset; }
      body.category .brand-title{ font-size: 17px; }
      body.category .header .btn-secondary{ display: none; }
      body.category .hero{ padding: 58px 0 82px; }
      body.category .hero-copy{ font-size: 16px; }
      body.category .post-grid, body.category .trail-grid, body.category .series-grid, body.category .newsletter-row{ grid-template-columns: 1fr; }
      body.category .section-head{ align-items: start; flex-direction: column; }
      body.category .footer-inner{ align-items: start; flex-direction: column; }
    }
  


/* ===== WordPress integration ===== */
body.admin-bar .header{top:32px}.brand-seal{overflow:hidden}.brand-seal::after{content:none!important}.brand-seal img{width:100%;height:100%;object-fit:cover;display:block}.brand-title{font-family:var(--serif)!important}.nav li{list-style:none;margin:0;padding:0}.footer a:hover{color:var(--aurora-gold-2, var(--gold2))}
.nav{position:relative}.nav-more{position:relative;display:inline-flex;align-items:center}.nav-more-toggle{border:0;background:transparent;color:inherit;font:inherit;font-weight:800;cursor:pointer;padding:0;text-transform:inherit;letter-spacing:inherit}.nav-more-panel{position:absolute;top:calc(100% + 18px);right:0;z-index:50;min-width:250px;padding:12px;border:1px solid rgba(243,234,216,.14);border-radius:18px;background:rgba(7,5,3,.96);box-shadow:0 28px 90px rgba(0,0,0,.46);display:none}.nav-more:hover .nav-more-panel,.nav-more:focus-within .nav-more-panel{display:grid;gap:4px}.nav-more-panel a{display:block;padding:10px 12px;border-radius:12px;color:var(--aurora-paper-soft, var(--soft));font-size:13px}.nav-more-panel a:hover{background:rgba(217,154,43,.12);color:var(--aurora-gold-2, var(--gold2))}.nav-more-panel a::after,.nav-more-toggle::after{display:none!important}
.post-content img{max-width:100%;height:auto;border-radius:22px;border:1px solid rgba(243,234,216,.12)}.post-content iframe{max-width:100%;width:100%;aspect-ratio:16/9;height:auto;border:0}.article-card a{color:inherit}.screen-reader-text{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
@media(max-width:1040px){.nav{display:none}.nav-more-panel{position:static}}

/* ===== Aurora fine tune v3.2 ===== */
.brand-title{font-family:var(--serif)!important}
.header-inner{position:relative}
.menu-toggle{display:none;width:44px;height:44px;border:1px solid rgba(243,234,216,.14);border-radius:999px;background:rgba(243,234,216,.04);color:var(--paper);align-items:center;justify-content:center;gap:4px;flex-direction:column;cursor:pointer}
.menu-toggle span{display:block;width:18px;height:2px;border-radius:999px;background:currentColor}
.nav-more-panel{right:0;min-width:min(780px,calc(100vw - 32px));grid-template-columns:repeat(4,minmax(145px,1fr));gap:18px;padding:20px;border-radius:26px}
.nav-more:hover .nav-more-panel,.nav-more:focus-within .nav-more-panel{display:none}
.nav-more.is-open .nav-more-panel{display:grid}
.nav-more-group{display:grid;gap:6px}
.nav-more-group strong{color:var(--aurora-gold-2,var(--gold2));font-size:11px;letter-spacing:.16em;text-transform:uppercase}
.nav-more-group a{padding:8px 0;border-radius:0;border-bottom:1px solid rgba(243,234,216,.07)}
.nav-more-toggle span{font-size:11px;opacity:.85}

body.single-post .article-title span{color:var(--aurora-gold-2,var(--gold2));text-shadow:0 0 34px rgba(217,154,43,.18)}
body.single-post .opening-visual,body.single-post .post-content figure{position:relative;margin:0 0 34px;border-radius:28px;border:1px solid rgba(217,154,43,.24);overflow:hidden;background:linear-gradient(180deg,rgba(5,4,3,.06),rgba(5,4,3,.78)),rgba(22,18,13,.82);box-shadow:0 28px 80px rgba(0,0,0,.34)}
body.single-post .opening-visual img,body.single-post .post-content figure img{display:block;width:100%;height:auto;border:0;border-radius:0}
body.single-post .opening-visual::after,body.single-post .post-content figure::after{content:"";position:absolute;inset:auto 0 0;height:42%;background:linear-gradient(180deg,transparent,rgba(5,4,3,.86));pointer-events:none}
body.single-post .opening-visual figcaption,body.single-post .post-content figcaption{position:absolute;left:22px;right:22px;bottom:18px;z-index:2;color:var(--paper);font-size:14px;line-height:1.5;text-shadow:0 2px 12px rgba(0,0,0,.7)}
body.single-post .post-content > p{margin:0 0 22px}
body.single-post .post-content blockquote{font-family:var(--serif);font-size:clamp(26px,3vw,38px);line-height:1.35;color:var(--paper)}
body.single-post .source-list div{border-radius:16px;border:1px solid rgba(243,234,216,.1);background:rgba(5,4,3,.34);padding:14px}
body.single-post .source-list strong{display:block;color:var(--paper);margin-bottom:4px}
body.single-post .source-list span{display:block;color:var(--muted);font-size:13px;line-height:1.5}
body.single-post .transmission-cta-section{padding:40px 0 72px}
body.single-post .transmission-cta{border-radius:34px;border:1px solid rgba(30,183,122,.28);background:radial-gradient(circle at 94% 10%,rgba(217,154,43,.13),transparent 32%),radial-gradient(circle at 12% 90%,rgba(30,183,122,.18),transparent 34%),linear-gradient(135deg,rgba(15,35,24,.96),rgba(8,12,9,.96));box-shadow:var(--shadow);padding:clamp(28px,5vw,48px);overflow:hidden}
body.single-post .transmission-cta h2{max-width:760px;margin:14px 0 0;font-family:var(--serif);font-size:clamp(38px,5vw,62px);line-height:.98;letter-spacing:-.052em}
body.single-post .transmission-cta p{max-width:760px;color:var(--soft);line-height:1.75}

body.page-template-page-central-links .link-card{position:relative;overflow:hidden}
body.page-template-page-central-links .link-card.is-coming-soon{opacity:.58;pointer-events:none}
body.page-template-page-central-links .soon-ribbon{position:absolute;top:16px;right:-34px;z-index:3;transform:rotate(28deg);background:rgba(158,47,36,.82);color:#ffd5cf;padding:6px 38px;font-size:10px;font-weight:950;letter-spacing:.12em;text-transform:uppercase}
body.page-template-page-central-links .link-card .icon{font-size:0}
body.page-template-page-central-links .link-card .icon i{font-size:27px;color:var(--gold2)}
body.page-template-page-central-links .link-card.green .icon i{color:var(--green)}
body.page-template-page-central-links .link-card.red .icon i{color:#ffc4bc}

body.page-template-page-livro-prato .hero{background:radial-gradient(circle at 56% 22%,rgba(30,183,122,.18),transparent 28%),radial-gradient(circle at 20% 80%,rgba(217,154,43,.16),transparent 30%),linear-gradient(135deg,#020705,#07130e 52%,#010302)!important}
body.page-template-page-livro-prato .cover-wrap{perspective:1600px;filter:drop-shadow(0 42px 80px rgba(0,0,0,.72))}
body.page-template-page-livro-prato .cover-wrap::after{content:"";position:absolute;top:3%;bottom:3%;left:-7%;width:13%;border-radius:6px 0 0 6px;background:linear-gradient(90deg,#020302,rgba(15,41,28,.86),rgba(255,204,71,.18));transform:rotateY(-35deg);transform-origin:right;box-shadow:inset -8px 0 18px rgba(0,0,0,.6)}
body.page-template-page-livro-prato .cover-img{transform:rotateY(-15deg) rotateX(3deg) rotateZ(-1deg);box-shadow:34px 42px 90px rgba(0,0,0,.74),0 0 48px rgba(30,183,122,.12)}

body.page-template-page-sobre .principle-card{min-height:220px}
body.page-template-page-sobre .principle-card h3{font-size:clamp(26px,2.55vw,38px)}

@media(max-width:1040px){
  .menu-toggle{display:inline-flex}
  .header .nav{position:absolute;top:calc(100% + 12px);left:0;right:0;z-index:80;display:grid!important;gap:8px;padding:16px;border:1px solid rgba(243,234,216,.12);border-radius:22px;background:rgba(5,4,3,.98);box-shadow:0 24px 80px rgba(0,0,0,.5);opacity:0;pointer-events:none;transform:translateY(-8px);transition:.18s ease}
  body.nav-open .header .nav{opacity:1;pointer-events:auto;transform:translateY(0)}
  .header .nav > a,.header .nav-more-toggle{display:flex;width:100%;justify-content:space-between;padding:12px 10px;border-bottom:1px solid rgba(243,234,216,.08)}
  .nav-more{display:grid;width:100%}
  .nav-more.is-open .nav-more-panel{display:grid}
  .nav-more-panel{position:static;min-width:0;width:100%;grid-template-columns:1fr 1fr;padding:12px;margin-top:8px}
}
@media(max-width:782px){
  body.admin-bar .header{top:46px}
  .top-alert{position:relative;z-index:120}
  .header{z-index:130}
}
@media(max-width:760px){
  .nav-more-panel{grid-template-columns:1fr}
  .header .btn-secondary{display:none}
  body.single-post .article-body{padding:24px}
  body.single-post .opening-visual figcaption,body.single-post .post-content figcaption{position:static;background:rgba(5,4,3,.9);padding:12px 14px;text-shadow:none}
  body.single-post .opening-visual::after,body.single-post .post-content figure::after{display:none}
  body.page-template-page-livro-prato .cover-img{transform:none}
  body.page-template-page-livro-prato .cover-wrap::after{display:none}
}

/* ===== Aurora fine tune v3.3 ===== */
html,body{margin:0!important}
.page{margin-top:0!important}
.top-alert{margin:0;border-top:0}
.top-alert-inner{min-height:36px;display:flex;align-items:center;justify-content:space-between;gap:18px}
.top-socials,.footer-socials{display:inline-flex;align-items:center;gap:10px;flex:0 0 auto}
.top-socials a,.footer-socials a{width:24px;height:24px;border-radius:50%;display:inline-grid;place-items:center;border:1px solid rgba(243,234,216,.18);color:var(--soft);background:rgba(5,4,3,.16);line-height:1}
.top-socials a:hover{color:var(--gold2);border-color:rgba(217,154,43,.42)}
.footer-socials .yt{color:var(--gold2)}.footer-socials .tk{color:#ffc4bc}.footer-socials .ig{color:#adffd7}
.footer-socials a:hover{transform:translateY(-1px);filter:brightness(1.12)}
.header .btn-red.header-cta{background:linear-gradient(135deg,#b83a2d,#7f211a);border-color:rgba(255,196,188,.18);color:#fff3ee;box-shadow:0 16px 38px rgba(158,47,36,.28)}

.nav-more-panel{min-width:min(680px,calc(100vw - 40px));grid-template-columns:repeat(3,minmax(170px,1fr));gap:22px;padding:22px 24px}
.nav-more-group a{white-space:normal;line-height:1.35}

.featured-panel .featured-cta{margin-top:18px}
.article-visual{background-size:cover;background-position:center}
.mini-panel{display:flex;flex-direction:column;color:inherit;text-decoration:none}
.mini-panel .article-link{margin-top:auto}
.search-card .chips button{font:inherit}

body.page-template-page-youtube .video-frame{position:relative;overflow:hidden}
body.page-template-page-youtube .video-frame.has-embed{aspect-ratio:16/9;background:#050403}
body.page-template-page-youtube .video-frame.has-embed iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
body.page-template-page-youtube .video-card .thumb{display:block;background-size:cover;background-position:center;text-decoration:none;color:inherit}
body.page-template-page-youtube .short-card{color:inherit;text-decoration:none}

.search-layout{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:28px;align-items:start}
.search-results{min-width:0}
.search-aside{position:sticky;top:126px;display:grid;gap:16px}
.search-panel{border-radius:26px;border:1px solid rgba(243,234,216,.12);background:radial-gradient(circle at 18% 0%,rgba(217,154,43,.10),transparent 34%),rgba(10,8,6,.82);padding:22px;box-shadow:0 20px 70px rgba(0,0,0,.25)}
.search-panel h3{margin:12px 0 0;font-family:var(--serif);font-size:26px;line-height:1.05;letter-spacing:-.035em}
.search-panel p{color:var(--soft);line-height:1.65}
.search-panel.support{background:radial-gradient(circle at 88% 6%,rgba(30,183,122,.16),transparent 34%),rgba(10,8,6,.86)}
.side-list{display:grid;gap:10px;margin-top:16px}
.side-link{display:flex;justify-content:space-between;gap:12px;padding:12px 0;border-bottom:1px solid rgba(243,234,216,.08);color:var(--soft);text-decoration:none}
.side-link strong{color:var(--paper);font-size:14px;line-height:1.35}
.side-link span{color:var(--muted);font-size:12px;white-space:nowrap}
.side-link:hover strong{color:var(--gold2)}
.compact-search{align-self:end}

body.page-template-page-central-links .featured-link.terminal-link{margin-top:20px;border-color:rgba(30,183,122,.28);background:radial-gradient(circle at 90% 10%,rgba(30,183,122,.18),transparent 36%),linear-gradient(135deg,rgba(6,22,16,.96),rgba(5,4,3,.98))}

/* ===== Aurora fixes 2026-05-20 ===== */
.article-card{
  color:inherit;
  text-decoration:none;
  display:block;
  overflow:hidden;
}
.article-link-button{
  width:max-content;
  border-radius:999px;
  padding:12px 16px;
  background:linear-gradient(135deg,var(--aurora-gold-2,var(--gold2)),var(--aurora-gold,var(--gold)));
  color:#130d05!important;
  box-shadow:0 14px 34px rgba(217,154,43,.18);
}
.article-media,
.article-visual,
body.single-post .related-grid .article-media,
body.search .article-media,
body.archive .article-media,
body.category .article-media,
body.page-template-page-blog .article-media{
  aspect-ratio:16/9;
  display:block;
  min-height:0!important;
  height:auto;
  overflow:hidden;
}
.article-media img,
.article-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.article-card .article-content{
  position:relative;
  z-index:2;
  display:block!important;
  background:rgba(22,18,13,.92);
}
.article-card .article-content h3,
.article-card .article-content h3 a{
  color:var(--aurora-paper,var(--paper))!important;
  text-decoration:none;
}
.article-card .article-content p{
  display:block;
}
body.single-post .related-grid .article-card,
body.post-template-single-video .related-grid .article-card,
body.page-template-page-blog .post-grid .article-card,
body.search .search-grid .article-card{
  display:flex;
  flex-direction:column;
}
body.single-post .related-grid .article-media,
body.post-template-single-video .related-grid .article-media,
body.page-template-page-blog .post-grid .article-media,
body.search .search-grid .article-media{
  width:100%;
  flex:0 0 auto;
}
body.page-template-page-youtube .video-feature .video-frame,
body.page-template-page-youtube .video-feature .video-frame.has-embed{
  aspect-ratio:16/9;
  min-height:0!important;
}
body.post-template-single-video .video-card{
  max-width:1120px;
  margin:0 auto;
}
body.post-template-single-video .video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  z-index:2;
}
body.post-template-single-video .video-frame.has-embed::before,
body.post-template-single-video .video-frame.has-embed::after{
  pointer-events:none;
  z-index:1;
}
body.post-template-single-video .video-frame.has-embed::before{
  opacity:.08;
}
body.post-template-single-video .video-frame.has-embed::after{
  display:none;
}
body.post-template-single-video .post-content .wp-block-embed,
body.post-template-single-video .post-content iframe[src*="youtube"],
body.post-template-single-video .post-content iframe[src*="youtu.be"]{
  display:none!important;
}
body.single-post .author-avatar{
  overflow:hidden;
  background:rgba(243,234,216,.06);
}
body.single-post .author-avatar img,
body.single-post .avatar-img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
  display:block;
}
.nav-more-panel{
  align-items:start;
}
.nav-more-group a{
  min-height:38px;
  display:flex;
  align-items:center;
  overflow-wrap:anywhere;
}
body.page-template-page-central-links .featured-link.terminal-link{
  margin-top:0;
}

@media(max-width:1040px){
  .search-layout{grid-template-columns:1fr}
  .search-aside{position:static;grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:760px){
  .top-alert-inner{min-height:34px;flex-direction:row;align-items:center;padding:0;font-size:10px}
  .top-socials{gap:6px}
  .top-socials a{width:21px;height:21px}
  .search-aside{grid-template-columns:1fr}
}


/* ===== recomendacoes_producao.html scoped fix ===== */

    body.page-template-page-recomendacoes-producao{
      --black:#050403;
      --night:#0d0f12;
      --paper:#f3ead8;
      --soft:#d9c8aa;
      --muted:#a99675;
      --gold:#d99a2b;
      --gold2:#f0c36a;
      --green:#1eb77a;
      --red:#9e2f24;
      --line:rgba(243,234,216,.14);
      --shadow:0 28px 90px rgba(0,0,0,.46);
      --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      --serif:Georgia,"Times New Roman",serif;
    }
    body.page-template-page-recomendacoes-producao *{box-sizing:border-box} html{scroll-behavior:smooth} body.page-template-page-recomendacoes-producao{margin:0;background:var(--black);color:var(--paper);font-family:var(--font);line-height:1.5;overflow-x:hidden} body.page-template-page-recomendacoes-producao a{color:inherit;text-decoration:none} body.page-template-page-recomendacoes-producao button, body.page-template-page-recomendacoes-producao input{font:inherit}
    body.page-template-page-recomendacoes-producao .page{min-height:100vh;position:relative;background:radial-gradient(circle at 14% 8%,rgba(217,154,43,.18),transparent 28%),radial-gradient(circle at 84% 2%,rgba(158,47,36,.16),transparent 26%),radial-gradient(circle at 58% 82%,rgba(30,183,122,.12),transparent 30%),linear-gradient(180deg,#070503 0%,#0d0f12 48%,#050403 100%)}
    body.page-template-page-recomendacoes-producao .page::before{content:"";position:fixed;inset:0;pointer-events:none;opacity:.22;background-image:linear-gradient(rgba(243,234,216,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(243,234,216,.055) 1px,transparent 1px);background-size:58px 58px;mask-image:radial-gradient(circle at center,#000,transparent 72%)}
    body.page-template-page-recomendacoes-producao .page::after{content:"SETUP";position:absolute;right:-18px;bottom:5vh;color:rgba(243,234,216,.04);font-family:var(--serif);font-size:clamp(110px,20vw,280px);line-height:.8;font-weight:900;letter-spacing:-.08em;pointer-events:none;white-space:nowrap}
    body.page-template-page-recomendacoes-producao .container{width:min(1080px,calc(100% - 40px));margin:0 auto;position:relative;z-index:2}
    body.page-template-page-recomendacoes-producao .topbar{position:relative;z-index:20;border-bottom:1px solid var(--line);background:rgba(5,4,3,.82);backdrop-filter:blur(18px)} body.page-template-page-recomendacoes-producao .topbar-inner{min-height:78px;display:flex;align-items:center;justify-content:space-between;gap:20px}
    body.page-template-page-recomendacoes-producao .brand{display:flex;align-items:center;gap:12px;min-width:0}body.page-template-page-recomendacoes-producao .seal{width:48px;height:48px;border-radius:50%;border:1px solid rgba(217,154,43,.58);background:radial-gradient(circle,rgba(240,195,106,.20),transparent 54%),conic-gradient(from 180deg,rgba(217,154,43,.72),rgba(158,47,36,.58),rgba(30,183,122,.40),rgba(217,154,43,.72));display:grid;place-items:center;box-shadow:0 0 38px rgba(217,154,43,.16);flex:0 0 auto}body.page-template-page-recomendacoes-producao .seal::after{content:"A";width:36px;height:36px;border-radius:50%;display:grid;place-items:center;background:#070503;color:var(--gold2);font-family:var(--serif);font-size:22px;font-weight:900}body.page-template-page-recomendacoes-producao .brand small{display:block;color:var(--muted);font-size:10px;letter-spacing:.22em;text-transform:uppercase;font-weight:900}body.page-template-page-recomendacoes-producao .brand strong{display:block;color:var(--paper);font-family:var(--serif);font-size:19px;line-height:1.05}body.page-template-page-recomendacoes-producao .nav{display:flex;align-items:center;gap:18px;color:var(--soft);font-size:13px;font-weight:800}body.page-template-page-recomendacoes-producao .nav a:hover{color:var(--gold2)}
    body.page-template-page-recomendacoes-producao .btn{border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:46px;padding:0 18px;border-radius:999px;font-size:12px;font-weight:950;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;transition:transform .2s ease,filter .2s ease,border-color .2s ease}body.page-template-page-recomendacoes-producao .btn:hover{transform:translateY(-1px);filter:brightness(1.06)}body.page-template-page-recomendacoes-producao .btn-primary{background:linear-gradient(135deg,var(--gold2),var(--gold));color:#130d05;box-shadow:0 16px 36px rgba(217,154,43,.20)}body.page-template-page-recomendacoes-producao .btn-secondary{border:1px solid rgba(243,234,216,.16);background:rgba(243,234,216,.045);color:var(--paper)}
    body.page-template-page-recomendacoes-producao .hero{position:relative;overflow:hidden;padding:74px 0 44px;border-bottom:1px solid var(--line)}body.page-template-page-recomendacoes-producao .hero::before{content:"";position:absolute;inset:0;opacity:.20;background:linear-gradient(115deg,transparent 0%,rgba(217,154,43,.08) 42%,transparent 62%),repeating-linear-gradient(0deg,rgba(243,234,216,.05) 0 1px,transparent 1px 7px);pointer-events:none}body.page-template-page-recomendacoes-producao .hero-inner{max-width:850px;margin:0 auto;text-align:center;position:relative;z-index:2}
    body.page-template-page-recomendacoes-producao .badge{display:inline-flex;align-items:center;width:max-content;border-radius:999px;padding:7px 11px;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;border:1px solid rgba(217,154,43,.34);background:rgba(217,154,43,.09);color:#ffe1a1}body.page-template-page-recomendacoes-producao .badge.green{border-color:rgba(30,183,122,.34);background:rgba(30,183,122,.10);color:#adffd7}body.page-template-page-recomendacoes-producao .badge.red{border-color:rgba(158,47,36,.50);background:rgba(158,47,36,.16);color:#ffc4bc}body.page-template-page-recomendacoes-producao .eyebrow-row{display:flex;justify-content:center;flex-wrap:wrap;gap:8px;margin-bottom:22px}
    body.page-template-page-recomendacoes-producao h1, body.page-template-page-recomendacoes-producao h2, body.page-template-page-recomendacoes-producao h3{text-wrap:balance} body.page-template-page-recomendacoes-producao h1{margin:0;font-family:var(--serif);font-size:clamp(44px,7vw,86px);line-height:.92;letter-spacing:-.055em;font-weight:900}body.page-template-page-recomendacoes-producao h1 span{color:var(--gold2);text-shadow:0 0 34px rgba(217,154,43,.18)}body.page-template-page-recomendacoes-producao .copy{max-width:760px;margin:24px auto 0;color:var(--soft);font-size:18px;line-height:1.78}
    body.page-template-page-recomendacoes-producao .search-module{margin-top:-24px;padding:0 0 42px;position:relative;z-index:6}body.page-template-page-recomendacoes-producao .search-card{border-radius:30px;border:1px solid rgba(217,154,43,.24);background:rgba(15,13,9,.90);box-shadow:var(--shadow);backdrop-filter:blur(18px);padding:16px}body.page-template-page-recomendacoes-producao .search-row{display:flex;gap:12px}body.page-template-page-recomendacoes-producao .input-wrap{flex:1;min-width:0;border-radius:999px;border:1px solid rgba(243,234,216,.13);background:rgba(5,4,3,.70);display:flex;align-items:center;gap:10px;padding:0 16px;color:var(--gold2)}body.page-template-page-recomendacoes-producao .input-wrap input{width:100%;min-height:50px;border:0;outline:0;background:transparent;color:var(--paper)}body.page-template-page-recomendacoes-producao .input-wrap input::placeholder{color:rgba(217,200,170,.62)}body.page-template-page-recomendacoes-producao .chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}body.page-template-page-recomendacoes-producao .chip{border:1px solid rgba(243,234,216,.13);background:rgba(243,234,216,.04);color:var(--soft);border-radius:999px;padding:8px 11px;font-size:12px;cursor:pointer;transition:.2s ease}body.page-template-page-recomendacoes-producao .chip:hover, body.page-template-page-recomendacoes-producao .chip.active{border-color:rgba(217,154,43,.42);color:var(--gold2);background:rgba(217,154,43,.08)}
    body.page-template-page-recomendacoes-producao section{padding:56px 0;position:relative}body.page-template-page-recomendacoes-producao .section-head{display:flex;align-items:end;justify-content:space-between;gap:22px;margin-bottom:28px}body.page-template-page-recomendacoes-producao .section-head h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,4vw,52px);line-height:1;letter-spacing:-.05em;font-weight:900}body.page-template-page-recomendacoes-producao .section-head p{max-width:720px;margin:12px 0 0;color:var(--muted);line-height:1.7}
    body.page-template-page-recomendacoes-producao .featured-shelf{border-radius:34px;border:1px solid rgba(217,154,43,.28);background:radial-gradient(circle at 82% 18%,rgba(217,154,43,.17),transparent 34%),radial-gradient(circle at 18% 88%,rgba(158,47,36,.14),transparent 30%),linear-gradient(135deg,rgba(22,18,13,.98),rgba(5,4,3,.98));box-shadow:var(--shadow);padding:32px;overflow:hidden;position:relative}body.page-template-page-recomendacoes-producao .featured-shelf::after{content:"REC";position:absolute;right:-18px;top:20px;color:rgba(243,234,216,.045);font-family:var(--serif);font-size:100px;font-weight:900;writing-mode:vertical-rl;transform:rotate(180deg)}body.page-template-page-recomendacoes-producao .featured-inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr 260px;gap:28px;align-items:center}body.page-template-page-recomendacoes-producao .featured-shelf h2{margin:14px 0 0;font-family:var(--serif);font-size:clamp(34px,5vw,62px);line-height:.98;letter-spacing:-.052em}body.page-template-page-recomendacoes-producao .featured-shelf p{max-width:680px;color:var(--soft);line-height:1.78}body.page-template-page-recomendacoes-producao .setup-preview{min-height:300px;border-radius:22px;border:1px solid rgba(217,154,43,.22);background:linear-gradient(180deg,rgba(243,234,216,.08),rgba(5,4,3,.72)),radial-gradient(circle at 50% 20%,rgba(217,154,43,.20),transparent 30%),#130d09;box-shadow:0 28px 70px rgba(0,0,0,.35);display:grid;place-items:center;text-align:center;padding:22px}body.page-template-page-recomendacoes-producao .setup-preview strong{font-family:var(--serif);font-size:32px;line-height:1;color:var(--paper)}body.page-template-page-recomendacoes-producao .setup-preview span{display:block;margin-top:12px;color:var(--muted);font-family:var(--mono);font-size:12px;letter-spacing:.12em;text-transform:uppercase}
    body.page-template-page-recomendacoes-producao .category-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}body.page-template-page-recomendacoes-producao .category-card{min-height:250px;border-radius:30px;border:1px solid rgba(243,234,216,.11);background:radial-gradient(circle at 20% 0%,rgba(217,154,43,.14),transparent 38%),rgba(243,234,216,.04);box-shadow:0 20px 70px rgba(0,0,0,.34);padding:24px;display:flex;flex-direction:column;justify-content:space-between;transition:transform .2s ease,border-color .2s ease,background .2s ease}body.page-template-page-recomendacoes-producao .category-card:hover{transform:translateY(-5px);border-color:rgba(217,154,43,.38);background:rgba(217,154,43,.065)}body.page-template-page-recomendacoes-producao .category-card.green{border-color:rgba(30,183,122,.24);background:radial-gradient(circle at 24% 14%,rgba(30,183,122,.15),transparent 34%),rgba(243,234,216,.04)}body.page-template-page-recomendacoes-producao .category-card.red{border-color:rgba(158,47,36,.30);background:radial-gradient(circle at 24% 14%,rgba(158,47,36,.18),transparent 34%),rgba(243,234,216,.04)}body.page-template-page-recomendacoes-producao .icon{width:48px;height:48px;border-radius:50%;display:grid;place-items:center;border:1px solid rgba(217,154,43,.30);background:rgba(217,154,43,.10);color:var(--gold2);font-family:var(--serif);font-size:23px;font-weight:900;margin-bottom:18px}body.page-template-page-recomendacoes-producao .category-card small{color:var(--muted);font-size:11px;letter-spacing:.14em;text-transform:uppercase;font-weight:900}body.page-template-page-recomendacoes-producao .category-card strong{display:block;margin-top:12px;font-family:var(--serif);font-size:34px;line-height:1.02;color:var(--paper);letter-spacing:-.04em}body.page-template-page-recomendacoes-producao .category-card span{display:block;margin-top:12px;color:var(--soft);font-size:14px;line-height:1.6}body.page-template-page-recomendacoes-producao .article-link{display:inline-flex;align-items:center;gap:7px;margin-top:20px;color:var(--gold2);font-weight:900;font-size:13px;letter-spacing:.08em;text-transform:uppercase}
    body.page-template-page-recomendacoes-producao .notice{border-radius:24px;border:1px solid rgba(243,234,216,.11);background:rgba(5,4,3,.44);padding:18px;color:var(--muted);font-size:14px;line-height:1.65;text-align:center}body.page-template-page-recomendacoes-producao .notice strong{color:var(--paper)}body.page-template-page-recomendacoes-producao .footer{border-top:1px solid var(--line);padding:38px 0;color:var(--muted)}body.page-template-page-recomendacoes-producao .footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}body.page-template-page-recomendacoes-producao .footer strong{color:var(--paper)}
    @media(max-width:960px){body.page-template-page-recomendacoes-producao .nav{display:none}body.page-template-page-recomendacoes-producao .featured-inner{grid-template-columns:1fr}body.page-template-page-recomendacoes-producao .category-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:680px){body.page-template-page-recomendacoes-producao .container{width:min(100% - 28px,1080px)}body.page-template-page-recomendacoes-producao .topbar .btn{display:none}body.page-template-page-recomendacoes-producao .brand strong{font-size:17px}body.page-template-page-recomendacoes-producao .hero{padding:52px 0 42px}body.page-template-page-recomendacoes-producao .copy{font-size:16px}body.page-template-page-recomendacoes-producao .search-row{flex-direction:column}body.page-template-page-recomendacoes-producao .search-row .btn{width:100%}body.page-template-page-recomendacoes-producao .category-grid{grid-template-columns:1fr}body.page-template-page-recomendacoes-producao .featured-shelf{padding:24px}body.page-template-page-recomendacoes-producao .footer-inner{align-items:flex-start;flex-direction:column}body.page-template-page-recomendacoes-producao .page::after{display:none}}
  
