:root {
      --rb-orange: #ff5a0a;
      --rb-orange-strong: #ed4d00;
      --rb-orange-soft: #fff1e9;
      --rb-ink: #151a20;
      --rb-ink-2: #242b33;
      --rb-muted: #65707c;
      --rb-line: #e6e9ed;
      --rb-surface: #f6f7f8;
      --rb-surface-2: #eef1f3;
      --rb-green: #27883f;
      --rb-green-soft: #eef9f0;
      --rb-yellow: #ffb000;
      --rb-white: #ffffff;
      --rb-shadow-sm: 0 8px 24px rgba(19, 25, 32, .07);
      --rb-shadow-md: 0 18px 50px rgba(19, 25, 32, .12);
      --rb-radius-sm: 13px;
      --rb-radius: 8px;
      --rb-radius-lg: 16px;
      --rb-transition: 180ms ease;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 136px;
    }

    body {
      min-width: 320px;
      color: var(--rb-ink);
      background: var(--rb-white);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img {
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    a:hover {
      color: var(--rb-orange-strong);
    }

    button,
    input,
    select {
      font: inherit;
    }

    ::selection {
      color: var(--rb-white);
      background: var(--rb-orange);
    }

    .skip-link {
      position: fixed;
      top: 12px;
      left: 12px;
      z-index: 9999;
      padding: 12px 16px;
      color: var(--rb-white);
      background: var(--rb-ink);
      border-radius: 10px;
      transform: translateY(-160%);
      transition: transform var(--rb-transition);
    }

    .skip-link:focus {
      color: var(--rb-white);
      transform: translateY(0);
    }

    .section-block {
      padding: 76px 0;
    }

    .section-block-sm {
      padding: 56px 0;
    }

    .section-soft {
      background: linear-gradient(180deg, #f7f8f9 0%, #fbfbfc 100%);
    }

    .section-title {
      margin: 0;
      font-weight: 700;
    }

    .section-description {
      max-width: 768px;
      margin-top: 10px;
      color: var(--rb-muted);
    }

    .section-link {
      display: inline-flex;
      flex: 0 0 auto;
      align-items: center;
      gap: 6px;
      color: var(--rb-orange-strong);
      font-size: 15px;
      font-weight: 500;
      transition: gap var(--rb-transition), color var(--rb-transition);
    }

    .section-link:hover {
      gap: 10px;
      color: #bf3d00;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-bottom: 10px;
      color: var(--rb-orange-strong);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .btn-brand {
      --bs-btn-color: #fff;
      --bs-btn-bg: var(--rb-orange);
      --bs-btn-border-color: var(--rb-orange);
      --bs-btn-hover-color: #fff;
      --bs-btn-hover-bg: var(--rb-orange-strong);
      --bs-btn-hover-border-color: var(--rb-orange-strong);
      --bs-btn-focus-shadow-rgb: 255, 90, 10;
      --bs-btn-active-color: #fff;
      --bs-btn-active-bg: #d64400;
      --bs-btn-active-border-color: #d64400;
      padding: 13px 19px;
      color: #fff;
      border-color: var(--rb-orange);
      border-radius: 12px;
      background-color: var(--rb-orange);
      font-weight: 700;
      /* box-shadow: 0 8px 18px rgba(255, 90, 10, .2); */
    }

    .btn-brand:hover,
    .btn-brand:focus {
      color: #fff;
      border-color: var(--rb-orange-strong);
      background-color: var(--rb-orange-strong);
      transform: translateY(-1px);
      /* box-shadow: 0 8px 18px rgba(255, 90, 10, .2); */
    }

    .btn-brand:active {
      color: #fff;
      border-color: #d64400;
      background-color: #d64400;
    }

    .btn-brand-outline {
      --bs-btn-color: var(--rb-orange-strong);
      --bs-btn-border-color: #ff8b55;
      --bs-btn-hover-color: #fff;
      --bs-btn-hover-bg: var(--rb-orange);
      --bs-btn-hover-border-color: var(--rb-orange);
      --bs-btn-focus-shadow-rgb: 255, 90, 10;
      --bs-btn-active-color: #fff;
      --bs-btn-active-bg: var(--rb-orange-strong);
      --bs-btn-active-border-color: var(--rb-orange-strong);
      padding: 12px 16px;
      color: var(--rb-orange-strong);
      border-color: #ff8b55;
      border-radius: 11px;
      background-color: #fff;
      font-weight: 500;
    }

    .btn-brand-outline:hover,
    .btn-brand-outline:focus {
      color: #fff;
      border-color: var(--rb-orange);
      background-color: var(--rb-orange);
    }

    .focus-ring:focus-visible,
    .btn:focus-visible,
    .nav-link:focus-visible,
    .category-card:focus-visible,
    .card-link:focus-visible,
    .review-scroll-button:focus-visible {
      outline: 2px solid rgba(255, 90, 10, .35);
      outline-offset: 2px;
      box-shadow: none;
    }

    /* Cabeçalho */
    .site-header {
      position: sticky;
      z-index: 1030;
      top: 0;
      background: rgba(255, 255, 255, .98);
      transition: box-shadow var(--rb-transition), backdrop-filter var(--rb-transition);
    }

    .site-header.is-scrolled {
      box-shadow: 0 8px 30px rgba(17, 24, 32, .1);
      backdrop-filter: blur(14px);
    }

    .utility-bar {
      color: rgba(255, 255, 255, .84);
      background: linear-gradient(90deg, #13191f 0%, #20272f 100%);
      font-size: 12px;
    }

    .utility-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 0;
      transition: color var(--rb-transition);
    }

    .utility-link i {
      color: var(--rb-orange);
    }

    .utility-link:hover {
      color: var(--rb-white);
    }

    .site-navbar {
      min-height: 83px;
      border-bottom: 1px solid var(--rb-line);
    }

    .navbar-brand {
      margin: 0px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
      margin-right: 26px;
    }

    .brand-logo {
      display: block;
      width: auto;
      height: 48px;
      object-fit: contain;
    }

    .header-search {
      position: relative;
      width: min(100%, 520px);
      height: 48px;
      border-radius: 12px;
      transition: box-shadow var(--rb-transition);
    }

    .header-search:focus-within {
      box-shadow: 0 0 0 4px rgba(255, 90, 10, .1);
    }

    .header-search .form-control {
      width: 100%;
      height: 48px !important;
      min-height: 48px !important;
      max-height: 48px !important;
      padding: 0 68px 0 16px;
      border-color: var(--rb-line);
      border-radius: 12px;
      background: #f8f9fa;
      font-size: 15px;
      line-height: 1.2;
    }

    .header-search .form-control:focus {
      border-color: rgba(255, 90, 10, .55);
      background: var(--rb-white);
      box-shadow: none;
    }

    .header-search button {
      position: absolute;
      top: 0;
      right: 0;
      display: grid;
      width: 52px;
      height: 48px !important;
      min-height: 48px !important;
      max-height: 48px !important;
      padding: 0;
      place-items: center;
      color: var(--rb-white);
      border: 1px solid var(--rb-orange);
      border-radius: 0 12px 12px 0;
      background: var(--rb-orange);
      font-size: 15px;
      line-height: 1;
    }

    .header-search button:hover,
    .header-search button:focus-visible {
      color: var(--rb-white);
      border-color: var(--rb-orange-strong);
      background: var(--rb-orange-strong);
    }

    .navbar-toggler {
      width: 45px;
      height: 45px;
      padding: 7px;
      border-color: var(--rb-line);
      border-radius: 11px;
    }

    .navbar-toggler:focus {
      box-shadow: 0 0 0 3px rgba(255, 90, 10, .15);
    }

    .mobile-navigation {
      padding-top: 16px;
      padding-bottom: 8px;
    }

    .mobile-navigation .nav-link {
      padding: 10px 12px;
      border-radius: 10px;
      font-weight: 650;
    }

    .mobile-navigation .nav-link:hover {
      color: var(--rb-orange-strong);
      background: var(--rb-orange-soft);
    }

    .category-navigation {
      border-bottom: 1px solid var(--rb-line);
      background: var(--rb-white);
    }

    .category-navigation .nav {
      min-height: 52px;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }

    .category-navigation .nav-link {
      position: relative;
      padding: 16px 0 14px;
      color: var(--rb-ink-2);
      font-size: 15px;
      font-weight: 500;
    }

    .category-navigation .nav-link::after {
      position: absolute;
      right: 50%;
      bottom: 9px;
      left: 50%;
      height: 2px;
      content: "";
      background: var(--rb-orange);
      transition: right var(--rb-transition), left var(--rb-transition);
    }

    .category-navigation .nav-link:hover::after,
    .category-navigation .nav-link:focus-visible::after {
      right: 0;
      left: 0;
    }

    /* Hero */
    .hero-section {
      position: relative;
      overflow: hidden;
      padding: 34px 0 38px;
      background: radial-gradient(circle at 12% 0%, color-mix(in oklab, var(--rb-orange) 12%, transparent), transparent 480px), var(--rb-white);
    }

    .hero-section .container {
      position: relative;
      z-index: 1;
    }

    .hero-copy {
      padding: 64px 0;
    }

    .hero-title {
      max-width: 760px;
      margin-bottom: 22px;
      font-size: 80px;
      font-weight: 700;
      line-height: .98;
      letter-spacing: -1px;
    }

    .hero-title .accent {
      color: var(--rb-orange);
    }

    .hero-lead {
      max-width: 592px;
      margin-bottom: 26px;
      color: #46505a;
      font-size: 16px;
    }

    .trust-points {
      display: flex;
      flex-wrap: wrap;
      gap: 16px 26px;
      margin-bottom: 27px;
    }

    .trust-point {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--rb-ink-2);
      font-size: 13px;
      font-weight: 700;
      line-height: 1.2;
    }

    .trust-point i {
      display: grid;
      flex: 0 0 auto;
      width: 32px;
      height: 32px;
      place-items: center;
      color: var(--rb-orange);
      border: 1px solid rgba(255, 90, 10, .25);
      border-radius: 50%;
      background: var(--rb-orange-soft);
      font-size: 16px;
    }

    .hero-search {
      max-width: 624px;
    }

    .hero-search .form-control {
      min-height: 54px;
      border-color: var(--rb-line);
      border-radius: 13px 0 0 13px;
      background: var(--rb-white);
      box-shadow: 0 10px 28px rgba(17, 24, 32, .055);
    }

    .hero-search .btn {
      min-width: 118px;
      border-radius: 0 13px 13px 0;
    }

    .popular-shortcuts {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-top: 13px;
      color: var(--rb-muted);
      font-size: 12px;
    }

    .shortcut-label {
      color: var(--rb-ink-2);
      font-weight: 700;
    }

    .shortcut-chip {
      padding: 5px 11px;
      border: 1px solid var(--rb-line);
      border-radius: 999px;
      background: #f8f8f8;
      font-weight: 650;
      transition: border-color var(--rb-transition), color var(--rb-transition), background var(--rb-transition);
    }

    .shortcut-chip:hover {
      color: var(--rb-orange-strong);
      border-color: rgba(255, 90, 10, .35);
      background: var(--rb-orange-soft);
    }

    .hero-visual {
      position: relative;
      display: flex;
      min-height: 536px;
      padding: 48px;
      align-items: center;
      overflow: hidden;
      border-radius: 32px;
      background:
        linear-gradient(100deg, rgba(20, 14, 10, .12) 0%, rgba(20, 14, 10, .5) 100%),
        url("../img/hero-workshop.jpg") center / cover no-repeat;
      box-shadow: var(--rb-shadow-md);
      isolation: isolate;
    }

    .hero-visual::before {
      position: absolute;
      z-index: -1;
      inset: 0;
      content: "";
      background:
        radial-gradient(circle at 82% 15%, rgba(255, 175, 71, .35), transparent 400px),
        linear-gradient(115deg, rgba(16, 18, 21, .12), rgba(16, 18, 21, .55));
    }

    .hero-visual::after {
      position: absolute;
      z-index: -1;
      top: -1px;
      bottom: -1px;
      left: -1px;
      width: 8.8%;
      content: "";
      background: var(--rb-white);
      clip-path: polygon(0 0, 100% 0, 0 100%);
    }

    .featured-review {
      width: min(100%, 704px);
      margin-left: auto;
      padding: 34px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .65);
      border-radius: 22px;
      background: rgba(255, 255, 255, .96);
      box-shadow: 0 22px 60px rgba(0, 0, 0, .23);
      backdrop-filter: blur(8px);
    }

    .featured-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 10px;
      color: var(--rb-white);
      border-radius: 7px;
      background: var(--rb-orange);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .featured-review-title {
      max-width: 480px;
      margin: 9px 0 10px;
      font-size: 33px;
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -1px;
    }

    .rating-line {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      color: #68727c;
      font-size: 13px;
    }

    .stars {
      display: inline-flex;
      gap: 1px;
      color: var(--rb-yellow);
      letter-spacing: -1px;
    }

    .featured-summary {
      margin: 16px 0 20px;
      color: var(--rb-muted);
      font-size: 15px;
    }

    .featured-product {
      position: relative;
      min-height: 256px;
    }

    .featured-product img {
      position: absolute;
      top: 50%;
      left: 50%;
      width: min(100%, 256px);
      height: 272px;
      object-fit: contain;
      filter: drop-shadow(0 22px 22px rgba(17, 24, 32, .18));
      transform: translate(-50%, -50%);
    }

    .score-pill {
      position: absolute;
      top: 4px;
      right: 4px;
      display: grid;
      width: 61px;
      height: 61px;
      place-items: center;
      color: var(--rb-green);
      border: 1px solid #d6edd9;
      border-radius: 50%;
      background: var(--rb-green-soft);
      font-weight: 700;
      box-shadow: 0 8px 22px rgba(39, 136, 63, .14);
    }

    .score-pill small {
      display: block;
      margin-top: -14px;
      font-size: 8px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .featured-actions .btn {
      width: 100%;
    }

    .featured-actions .text-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      width: 100%;
      margin-top: 14px;
      color: var(--rb-orange-strong);
      font-size: 14px;
      font-weight: 700;
    }

    /* Categorias */
    .category-grid > [class*="col"] {
      display: flex;
    }

    @media (min-width: 992px) {
      .category-grid > .col {
        width: 14.285714%;
        flex: 0 0 auto;
      }
    }

    .category-card {
      position: relative;
      display: flex;
      width: 100%;
      min-height: 219px;
      padding: 18px 14px 16px;
      align-items: center;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      border: 1px solid var(--rb-line);
      border-radius: var(--rb-radius);
      background: var(--rb-white);
      box-shadow: 0 7px 22px rgba(17, 24, 32, .045);
      transition: transform var(--rb-transition), border-color var(--rb-transition), box-shadow var(--rb-transition);
    }

    .category-card::after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      height: 2px;
      content: "";
      background: var(--rb-orange);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--rb-transition);
    }

    .category-card:hover {
      color: inherit;
      border-color: rgba(255, 90, 10, .28);
      box-shadow: var(--rb-shadow-sm);
      transform: translateY(-5px);
    }

    .category-card:hover::after {
      transform: scaleX(1);
    }

    .category-visual {
      display: grid;
      width: 100%;
      min-height: 112px;
      place-items: center;
    }

    .category-visual img {
      width: auto;
      height: 104px;
      object-fit: contain;
      filter: drop-shadow(0 10px 12px rgba(17, 24, 32, .12));
      transition: transform var(--rb-transition);
    }

    .category-card:hover .category-visual img {
      transform: scale(1.055) rotate(-1deg);
    }

    .category-name {
      margin: 4px 0 3px;
      text-align: center;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.15;
    }

    .category-more {
      color: var(--rb-orange-strong);
      font-size: 12px;
      font-weight: 700;
    }

    .brands-visual {
      display: flex;
      min-height: 112px;
      align-items: center;
      flex-direction: column;
      justify-content: center;
      gap: 7px;
    }

    .brand-chip {
      min-width: 86px;
      padding: 4px 9px;
      text-align: center;
      border: 1px solid var(--rb-line);
      border-radius: 6px;
      background: #f8f9fa;
      font-size: 12px;
      font-style: italic;
      font-weight: 700;
    }

    .brand-chip:nth-child(1) { color: #d41414; }
    .brand-chip:nth-child(2) { color: #087b74; }
    .brand-chip:nth-child(3) { color: #a67600; background: #ffd52b; }

    /* Cards editoriais */
    .editorial-card {
      position: relative;
      display: flex;
      height: 100%;
      overflow: hidden;
      border: 1px solid var(--rb-line);
      border-radius: var(--rb-radius);
      background: var(--rb-white);
      box-shadow: 0 8px 28px rgba(17, 24, 32, .055);
      flex-direction: column;
      transition: transform var(--rb-transition), box-shadow var(--rb-transition), border-color var(--rb-transition);
    }

    .editorial-card:hover {
      border-color: rgba(255, 90, 10, .2);
      box-shadow: var(--rb-shadow-md);
      transform: translateY(-6px);
    }

    .editorial-image {
      position: relative;
      min-height: 224px;
      overflow: hidden;
      background: linear-gradient(180deg, #f9fafb, #eef1f3);
    }

    .editorial-image img {
      width: 100%;
      height: 224px;
      object-fit: cover;
      transition: transform 360ms ease;
    }

    .editorial-card:hover .editorial-image img {
      transform: scale(1.035);
    }

    .card-label {
      position: absolute;
      z-index: 2;
      top: 16px;
      left: 16px;
      padding: 6px 10px;
      color: var(--rb-white);
      border-radius: 6px;
      background: var(--rb-orange);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .editorial-body {
      display: flex;
      height: 100%;
      padding: 21px;
      flex-direction: column;
    }

    .editorial-title {
      margin-bottom: 10px;
      font-size: 20px;
      font-weight: 700;
      line-height: 1.18;
    }

    .editorial-summary {
      margin-bottom: 16px;
      color: var(--rb-muted);
      font-size: 15px;
    }

    .editorial-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-top: auto;
      margin-bottom: 16px;
      color: #68727c;
      font-size: 12px;
    }

    /* Metodologia */
    .method-section {
      position: relative;
      overflow: hidden;
      background: var(--rb-white);
    }

    .method-item {
      height: 100%;
      padding: 21px 14px;
      text-align: center;
      border: 1px solid var(--rb-line);
      border-radius: var(--rb-radius-sm);
      background: #fafafa;
      transition: background var(--rb-transition), border-color var(--rb-transition), transform var(--rb-transition);
    }

    .method-item:hover {
      border-color: rgba(255, 90, 10, .24);
      background: var(--rb-white);
      transform: translateY(-3px);
    }

    .method-icon {
      display: grid;
      width: 48px;
      height: 48px;
      margin: 0 auto 14px;
      place-items: center;
      color: var(--rb-ink);
      border: 1px solid var(--rb-line);
      border-radius: 50%;
      background: var(--rb-white);
      font-size: 20px;
    }

    .method-title {
      min-height: 35px;
      margin-bottom: 8px;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.15;
    }

    .method-text {
      margin: 0;
      color: var(--rb-muted);
      font-size: 12px;
      line-height: 1.35;
    }

    .transparency-note {
      display: flex;
      margin-top: 19px;
      padding: 14px 16px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: #217936;
      border: 1px solid #d9eedc;
      border-radius: 11px;
      background: var(--rb-green-soft);
      font-size: 13px;
      font-weight: 500;
      text-align: center;
    }

    /* Guias */
    .guide-card .editorial-image,
    .guide-card .editorial-image img {
      min-height: 195px;
      height: 195px;
    }

    .reading-time {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--rb-muted);
      font-size: 12px;
    }

    /* Reviews */
    .reviews-shell {
      position: relative;
    }

    .reviews-track {
      display: flex;
      gap: 16px;
      padding: 6px 2px 18px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }

    .reviews-track::-webkit-scrollbar {
      display: none;
    }

    .review-card {
      display: flex;
      flex: 0 0 calc((100% - 48px) / 4);
      min-width: 277px;
      min-height: 496px;
      padding: 0px;
      overflow: hidden;
      scroll-snap-align: start;
      border: 1px solid var(--rb-line);
      border-radius: var(--rb-radius);
      background: var(--rb-white);
      /* box-shadow: 0 8px 26px rgba(17, 24, 32, .055); */
      flex-direction: column;
      transition: transform var(--rb-transition), border-color var(--rb-transition), box-shadow var(--rb-transition);
    }

    .review-card:hover {
      border-color: rgba(255, 90, 10, .24);
      /* box-shadow: var(--rb-shadow-sm); */
      transform: translateY(-4px);
    }

    .review-visual {
      position: relative;
      display: grid;
      min-height: 195px;
      margin: -3px -2px 6px;
      place-items: center;
    }

    .review-visual img {
      width: 88%;
      height: 184px;
      object-fit: contain;
      filter: drop-shadow(0 15px 14px rgba(17, 24, 32, .13));
    }

    .review-score {
      position: absolute;
      top: 2px;
      right: 2px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3px;
      width: 66px;
      height: 66px;
      place-items: center;
      color: var(--rb-green);
      border-radius: 50%;
      background: var(--rb-green-soft);
      font-size: 18px;
      font-weight: 700;
      line-height: .9;
      letter-spacing: -1px;
      text-align: center;
    }

    .review-score small {
      display: block;
      margin-top: 2px;
      font-size: 8px;
      font-weight: 600;
      letter-spacing: normal;
    }

    .review-title {
      padding: 10px 20px 0px;
      margin-bottom: 6px;
      font-size: 20px;
      font-weight: 700;
      line-height: 1.18;
    }

    .review-count {
      color: var(--rb-muted);
      font-size: 12px;
    }

    .pros-list {
      margin: 14px 0 16px;
      padding: 0px 20px;
      color: #4f5964;
      font-size: 13px;
      list-style: none;
    }

    .pros-list li {
      display: flex;
      margin-bottom: 6px;
      align-items: flex-start;
      gap: 8px;
    }

    .pros-list .positive i {
      color: var(--rb-green);
    }

    .pros-list .negative i {
      color: #e34242;
    }

    .review-card .btn {
      margin: auto 20px 20px;
    }

    .review-scroll-button {
      position: absolute;
      z-index: 5;
      top: 50%;
      display: grid;
      width: 44px;
      height: 44px;
      padding: 0;
      margin-top: -25px;
      place-items: center;
      color: var(--rb-ink);
      border: 1px solid var(--rb-line);
      border-radius: 50%;
      background: rgba(255, 255, 255, .95);
      box-shadow: var(--rb-shadow-sm);
      transform: translateY(-50%);
      transition: color var(--rb-transition), background var(--rb-transition), transform var(--rb-transition);
    }

    .review-scroll-button:hover {
      color: var(--rb-white);
      background: var(--rb-orange);
      transform: translateY(-50%) scale(1.05);
    }

    .review-scroll-button.prev {
      left: -18px;
    }

    .review-scroll-button.next {
      right: -18px;
    }

    /* Assistente de escolha */
    .finder-section {
      background:
        radial-gradient(circle at 50% 0%, rgba(255, 90, 10, .07), transparent 400px),
        linear-gradient(180deg, #f8f9fa, #f2f4f5);
    }

    .finder-form {
      margin-top: 32px;
    }

    .finder-step {
      position: relative;
      height: 100%;
      min-height: 214px;
      padding: 20px;
      border: 1px solid var(--rb-line);
      border-radius: var(--rb-radius);
      background: var(--rb-white);
      box-shadow: 0 10px 28px rgba(17, 24, 32, .055);
    }

    .finder-step-number {
      position: absolute;
      top: 14px;
      right: 15px;
      color: #a4abb2;
      font-size: 12px;
      font-weight: 700;
    }

    .finder-icon {
      display: grid;
      width: 56px;
      height: 56px;
      margin-bottom: 14px;
      place-items: center;
      color: var(--rb-ink);
      border: 1px solid var(--rb-line);
      border-radius: 16px;
      background: #fafafa;
      font-size: 23px;
    }

    .finder-label {
      margin-bottom: 10px;
      font-size: 14px;
      font-weight: 700;
    }

    .finder-step .form-select {
      min-height: 46px;
      color: #4f5964;
      border-color: var(--rb-line);
      border-radius: 10px;
      background-color: #fafafa;
      font-size: 13px;
    }

    .finder-step .form-select:focus {
      border-color: rgba(255, 90, 10, .45);
      box-shadow: 0 0 0 4px rgba(255, 90, 10, .09);
    }

    .finder-submit {
      display: flex;
      height: 100%;
      min-height: 214px;
      padding: 20px;
      align-items: center;
      flex-direction: column;
      justify-content: center;
      border: 1px solid rgba(255, 90, 10, .2);
      border-radius: var(--rb-radius);
      background: linear-gradient(145deg, #fff 0%, #fff4ed 100%);
      box-shadow: 0 10px 28px rgba(255, 90, 10, .08);
      text-align: center;
    }

    .finder-submit i {
      margin-bottom: 11px;
      color: var(--rb-orange);
      font-size: 37px;
    }

    .finder-result {
      display: none;
      margin-top: 20px;
      padding: 20px;
      border: 1px solid #d9eedc;
      border-radius: var(--rb-radius);
      background: var(--rb-green-soft);
    }

    .finder-result.is-visible {
      display: block;
      animation: result-in 260ms ease both;
    }

    @keyframes result-in {
      from { opacity: 0; transform: translateY(7px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Newsletter */
    .newsletter-section {
      position: relative;
      overflow: hidden;
      color: var(--rb-white);
      background:
        linear-gradient(90deg, rgba(16, 22, 28, .97) 0%, rgba(16, 22, 28, .9) 56%, rgba(16, 22, 28, .35) 100%),
        url("../img/newsletter-workshop.jpg") center / cover no-repeat;
    }

    .newsletter-section::after {
      position: absolute;
      top: -128px;
      left: 35%;
      width: 288px;
      height: 288px;
      content: "";
      border-radius: 50%;
      background: rgba(255, 90, 10, .1);
      filter: blur(8px);
      pointer-events: none;
    }

    .newsletter-section .container {
      position: relative;
      z-index: 1;
    }

    .newsletter-title {
      margin-bottom: 10px;
      font-size: 39px;
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -1px;
    }

    .newsletter-text {
      max-width: 528px;
      margin: 0;
      color: rgba(255, 255, 255, .75);
    }

    .newsletter-form .form-control {
      min-height: 54px;
      border: 0;
      border-radius: 13px 0 0 13px;
    }

    .newsletter-form .btn {
      min-width: 144px;
      border-radius: 0 13px 13px 0;
    }

    .privacy-note {
      display: flex;
      margin-top: 10px;
      align-items: center;
      gap: 7px;
      color: rgba(255, 255, 255, .72);
      font-size: 12px;
    }

    .privacy-note i {
      color: #69d47e;
    }

    /* FAQ */
    .faq-accordion .accordion-item {
      margin-bottom: 11px;
      overflow: hidden;
      border: 1px solid var(--rb-line);
      border-radius: 12px;
      background: #f8f9fa;
    }

    .faq-accordion .accordion-button {
      padding: 16px 18px;
      color: var(--rb-ink);
      background: #f8f9fa;
      font-size: 14px;
      font-weight: 700;
      box-shadow: none;
    }

    .faq-accordion .accordion-button:not(.collapsed) {
      color: var(--rb-orange-strong);
      background: var(--rb-orange-soft);
    }

    .faq-accordion .accordion-button:focus {
      border-color: transparent;
      box-shadow: inset 0 0 0 2px rgba(255, 90, 10, .16);
    }

    .faq-accordion .accordion-button::after {
      width: 17px;
      height: 17px;
      background-size: 17px;
    }

    .faq-accordion .accordion-body {
      color: var(--rb-muted);
      background: var(--rb-white);
      font-size: 14px;
    }

    /* Rodapé */
    .site-footer {
      color: rgba(255, 255, 255, .74);
      background:
        radial-gradient(circle at 85% 10%, rgba(255, 90, 10, .08), transparent 384px),
        linear-gradient(130deg, #151b21 0%, #222a32 100%);
    }

    .footer-brand .brand-logo {
      width: 220px;
    }

    .footer-copy {
      max-width: 304px;
      margin: 16px 0 19px;
      font-size: 14px;
    }

    .social-links {
      display: flex;
      gap: 10px;
    }

    .social-link {
      display: grid;
      width: 38px;
      height: 38px;
      place-items: center;
      color: var(--rb-white);
      border: 1px solid rgba(255, 255, 255, .13);
      border-radius: 50%;
      background: rgba(255, 255, 255, .04);
      transition: border-color var(--rb-transition), background var(--rb-transition), transform var(--rb-transition);
    }

    .social-link:hover {
      color: var(--rb-white);
      border-color: var(--rb-orange);
      background: var(--rb-orange);
      transform: translateY(-2px);
    }

    .footer-heading {
      margin-bottom: 16px;
      color: var(--rb-white);
      font-size: 14px;
      font-weight: 700;
    }

    .footer-links {
      margin: 0;
      padding: 0;
      font-size: 13px;
      list-style: none;
    }

    .footer-links li + li {
      margin-top: 7px;
    }

    .footer-links a {
      transition: color var(--rb-transition), padding-left var(--rb-transition);
    }

    .footer-links a:hover {
      color: var(--rb-white);
      padding-left: 3px;
    }

    .footer-category-links {
      display: grid;
      gap: 3px;
    }

    .footer-category-links li + li {
      margin-top: 0;
    }

    .footer-category-links .nav-link {
      position: relative;
      display: flex;
      min-height: 31px;
      padding: 5px 0 5px 15px;
      align-items: center;
      color: rgba(255, 255, 255, .7);
      font-size: 13px;
      line-height: 1.35;
      transition: color var(--rb-transition), transform var(--rb-transition);
    }

    .footer-category-links .nav-link::before {
      position: absolute;
      top: 50%;
      left: 0;
      width: 6px;
      height: 6px;
      content: "";
      border: 1px solid rgba(255, 90, 10, .8);
      border-radius: 50%;
      background: transparent;
      transform: translateY(-50%);
      transition: background var(--rb-transition), box-shadow var(--rb-transition), transform var(--rb-transition);
    }

    .footer-category-links .nav-link:hover,
    .footer-category-links .nav-link:focus-visible,
    .footer-category-links .current-menu-item > .nav-link,
    .footer-category-links .current-menu-ancestor > .nav-link {
      padding-left: 15px;
      color: var(--rb-white);
      transform: translateX(3px);
    }

    .footer-category-links .nav-link:hover::before,
    .footer-category-links .nav-link:focus-visible::before,
    .footer-category-links .current-menu-item > .nav-link::before,
    .footer-category-links .current-menu-ancestor > .nav-link::before {
      background: var(--rb-orange);
      box-shadow: 0 0 0 4px rgba(255, 90, 10, .12);
      transform: translateY(-50%) scale(1.08);
    }

    .footer-category-links .nav-link:focus-visible {
      border-radius: 4px;
      outline-color: rgba(255, 138, 84, .75);
      outline-offset: 2px;
    }

    .commitment-card {
      height: 100%;
      padding: 20px;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: var(--rb-radius);
      background: rgba(255, 255, 255, .035);
    }

    .commitment-card p {
      margin-bottom: 16px;
      font-size: 13px;
    }

    .security-line {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #80dc90;
      font-size: 12px;
      font-weight: 700;
    }

    .security-line i {
      font-size: 20px;
    }

    .footer-bottom {
      margin-top: 48px;
      padding: 19px 0;
      border-top: 1px solid rgba(255, 255, 255, .1);
      color: rgba(255, 255, 255, .55);
      font-size: 12px;
    }

    /* Toast */
    .toast {
      width: 350px;
      max-width: 100%;
      font-size: 14px;
      pointer-events: auto;
      background-color: rgba(255, 255, 255, .85);
      background-clip: padding-box;
      backdrop-filter: blur(5px);
      border: 1px solid rgba(0, 0, 0, .1);
      box-shadow: 0 8px 16px rgba(0, 0, 0, .15);
      border-radius: 6px;
    }

    .site-toast {
      overflow: hidden;
      border: 0;
      border-radius: 14px;
      box-shadow: var(--rb-shadow-md);
    }

    .site-toast .toast-header {
      color: var(--rb-white);
      background: var(--rb-light);
    }

    /* Responsividade */
    @media (max-width: 1199px) {
      .site-navbar {
        min-height: 77px;
      }

      .hero-visual::after {
        display: none;
      }

      .review-card {
        flex-basis: calc((100% - 32px) / 3);
      }
    }

    @media (max-width: 991px) {
      html {
        scroll-padding-top: 96px;
      }

      .site-header.is-scrolled {
        position: sticky;
      }

      .navbar-collapse {
        margin-top: 11px;
        padding: 16px;
        border: 1px solid var(--rb-line);
        border-radius: 16px;
        background: var(--rb-white);
        box-shadow: var(--rb-shadow-sm);
      }

      .hero-section {
        padding-top: 16px;
      }

      .hero-copy {
        padding-bottom: 32px;
      }

      .hero-title {
        max-width: 520px;
      }

      .hero-visual {
        min-height: 496px;
      }

      .featured-review {
        margin: 0 auto;
      }

      .review-card {
        flex-basis: calc((100% - 16px) / 2);
      }

      .review-scroll-button.prev {
        left: -11px;
      }

      .review-scroll-button.next {
        right: -11px;
      }

      .newsletter-section {
        background-position: 70% center;
      }
    }

    @media (max-width: 767px) {
      .section-block {
        padding: 59px 0;
      }

      .section-block-sm {
        padding: 48px 0;
      }

      .hero-title {
        font-size: 64px;
      }

      .hero-visual {
        min-height: auto;
        padding: 16px;
        border-radius: 22px;
      }

      .featured-review {
        padding: 20px;
      }

      .featured-product {
        min-height: 200px;
      }

      .featured-product img {
        height: 211px;
      }

      .review-card {
        max-width: 82%;
        flex-basis: 320px;
      }

      .review-scroll-button {
        display: none;
      }

      .newsletter-section {
        background-position: 84% center;
      }

      .newsletter-form .input-group {
        display: block;
      }

      .newsletter-form .form-control,
      .newsletter-form .btn {
        width: 100%;
        border-radius: 13px;
      }

      .newsletter-form .btn {
        margin-top: 11px;
      }
    }

    @media (max-width: 575px) {
      .container {
        --bs-gutter-x: 22px;
      }

      .brand-logo {
        width: 160px;
      }

      .navbar-brand {
        margin-right: 8px;
      }

      .trust-points {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 13px;
      }

      .trust-point:last-child {
        grid-column: 1 / -1;
      }

      .hero-search .input-group {
        display: block;
      }

      .hero-search .form-control,
      .hero-search .btn {
        width: 100%;
        border-radius: 13px;
      }

      .hero-search .btn {
        margin-top: 10px;
      }

      .featured-review-title {
        max-width: none;
      }

      .score-pill {
        width: 53px;
        height: 53px;
      }

      .editorial-image,
      .editorial-image img {
        min-height: 192px;
        height: 192px;
      }

      .review-card {
        max-width: 88%;
        flex-basis: 320px;
      }

      .transparency-note {
        align-items: flex-start;
        text-align: left;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
      }
    }

/* WordPress e páginas internas */
.admin-bar .site-header {
  top: 32px;
}

.toast-brand-logo {
  width: 106px;
  height: 24px;
  object-fit: contain;
}

.newsletter-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.content-page {
  min-height: 520px;
  background: var(--rb-white);
}

.content-container {
  /* max-width: 960px; */
}

.content-hero {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 90, 10, .11), transparent 368px),
    linear-gradient(180deg, #f7f8f9 0%, #fff 100%);
  border-bottom: 1px solid var(--rb-line);
}

.content-hero--single {
  padding-bottom: 30px;
}

.content-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -1px;
}

.content-hero-description,
.entry-summary {
  max-width: 768px;
  margin: 16px 0 0;
  color: #505b66;
  font-size: 14px;
}

.content-hero-description > :last-child {
  margin-bottom: 0;
}

.content-page-closing {
  padding: 32px 0 38px;
  border-top: 1px solid var(--rb-line);
  background: var(--rb-white);
}

.content-page-closing .eyebrow {
  margin-bottom: 8px;
}

.content-page-closing-description {
  max-width: 768px;
  color: #505b66;
  font-size: 14px;
  line-height: 1.65;
}

.content-page-closing-description > :last-child {
  margin-bottom: 0;
}

.site-breadcrumbs {
  margin-bottom: 10px;
  color: var(--rb-muted);
  font-size: 12px;
  font-weight: 500;
}

.site-breadcrumbs ol,
.site-breadcrumbs > span,
.site-breadcrumbs .site-breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-breadcrumbs li:not(:last-child)::after {
  margin-left: 7px;
  color: #a2aab2;
  content: "/";
}

.site-breadcrumbs a {
  color: var(--rb-ink-2);
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  margin-top: 16px;
  color: var(--rb-muted);
  font-size: 11px;
  font-weight: 500;
}

.entry-meta span,
.entry-meta a,
.entry-meta time {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.entry-meta i {
  color: var(--rb-orange-strong);
}

.archive-section {
  padding: 40px 0px;
  background: linear-gradient(180deg, #fff, #f8f9fa);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.archive-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
}

.archive-main-column {
  min-width: 0;
}

.archive-with-sidebar .archive-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.archive-sidebar {
  width: 300px;
  max-width: 100%;
}

.archive-sidebar-sticky {
  top: 98px;
}

.admin-bar .archive-sidebar-sticky {
  top: 130px;
}

.archive-sidebar > * {
  width: 300px;
  max-width: 100%;
}

.archive-sidebar > * + * {
  margin-top: 24px;
}

.archive-ad-slot {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border: 1px solid #dfe3e7;
  border-radius: var(--rb-radius);
  background: #f3f5f6;
}

.archive-ad-label {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 50%;
  padding: 3px 7px;
  color: #858e97;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .8px;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.archive-ad-placeholder {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  color: #939ba3;
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(243,245,246,.78)),
    repeating-linear-gradient(-45deg, transparent 0 12px, rgba(21,26,32,.025) 12px 13px);
  text-align: center;
}

.archive-ad-placeholder i {
  margin-bottom: 4px;
  color: #b1b8bf;
  font-size: 28px;
}

.archive-ad-placeholder strong {
  color: #717b84;
  font-size: 12px;
}

.archive-ad-placeholder small {
  font-size: 10px;
  letter-spacing: .5px;
}

.archive-ad-widget,
.archive-ad-widget > :last-child {
  margin-bottom: 0;
}

.archive-ad-widget img,
.archive-ad-widget iframe,
.archive-ad-widget ins {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.archive-sidebar-card {
  padding: 22px;
  border: 1px solid var(--rb-line);
  border-radius: var(--rb-radius);
  background: #fff;
  box-shadow: var(--rb-shadow-sm);
}

.archive-sidebar-card h2 {
  margin: 4px 0 7px;
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -.7px;
}

.archive-sidebar-intro,
.archive-sidebar-empty {
  margin: 0;
  color: var(--rb-muted);
  font-size: 12px;
  line-height: 1.55;
}

.archive-toplist-items {
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.archive-toplist-items li {
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
}

.archive-toplist-items li + li {
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid var(--rb-line);
}

.archive-toplist-position {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: var(--rb-orange-strong);
  border-radius: 9px;
  background: var(--rb-orange-soft);
  font-size: 11px;
  font-weight: 800;
}

.archive-toplist-items a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--rb-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.archive-toplist-items small {
  display: block;
  margin-top: 3px;
  color: var(--rb-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.archive-toplist-items li > strong {
  color: var(--rb-orange-strong);
  font-size: 12px;
}

.archive-products {
  overflow: hidden;
  padding: 0;
}

.archive-products > .sidebar-card-kicker,
.archive-products > h2 {
  margin-right: 22px;
  margin-left: 22px;
}

.archive-products > .sidebar-card-kicker {
  margin-top: 22px;
}

.archive-products > h2 {
  margin-bottom: 16px;
}

.archive-product-image {
  display: block;
  height: 168px;
  overflow: hidden;
  background: var(--rb-surface-2);
}

.archive-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-product-body {
  padding: 18px 22px 20px;
}

.archive-product-body > span {
  color: var(--rb-orange-strong);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.archive-product-body h3 {
  margin: 5px 0 13px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.archive-product-score {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 13px;
  padding: 9px 11px;
  border-radius: 10px;
  background: var(--rb-orange-soft);
}

.archive-product-score strong {
  color: var(--rb-orange-strong);
  font-size: 18px;
}

.archive-product-score small {
  color: #68727c;
  font-size: 10px;
}

.archive-product-link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--rb-orange-strong);
  font-size: 12px;
  font-weight: 500;
}

.archive-product-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 22px;
  border-top: 1px solid var(--rb-line);
  background: var(--rb-surface);
}

.archive-product-controls button {
  display: grid;
  width: 30px;
  height: 30px;
  padding: 0;
  place-items: center;
  color: var(--rb-ink-2);
  border: 1px solid var(--rb-line);
  border-radius: 50%;
  background: #fff;
}

.archive-product-controls button:hover,
.archive-product-controls button:focus-visible {
  color: #fff;
  border-color: var(--rb-orange);
  background: var(--rb-orange);
}

.archive-product-controls span {
  color: var(--rb-muted);
  font-size: 10px;
  font-weight: 700;
}

.archive-product-empty {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--rb-muted);
  background: var(--rb-surface);
  text-align: center;
}

.archive-product-empty i {
  color: var(--rb-orange-strong);
  font-size: 27px;
}

.archive-product-empty p {
  margin: 0;
  font-size: 12px;
}

@media (max-width: 991px) {
  .archive-with-sidebar {
    grid-template-columns: 1fr;
  }

  .archive-sidebar {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 300px));
    gap: 24px;
    justify-content: center;
    margin-top: 18px;
  }

  .archive-sidebar-sticky {
    position: static !important;
  }

  .archive-sidebar > * + * {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .archive-sidebar {
    grid-template-columns: minmax(0, 300px);
  }
}

.archive-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--rb-line);
  border-radius: var(--rb-radius);
  background: var(--rb-white);
  box-shadow: var(--rb-shadow-sm);
  transition: transform var(--rb-transition), box-shadow var(--rb-transition), border-color var(--rb-transition);
}

.archive-card:hover {
  border-color: rgba(255, 90, 10, .3);
  transform: translateY(-4px);
  box-shadow: var(--rb-shadow-md);
}

.archive-card-image {
  position: relative;
  display: block;
  height: 216px;
  overflow: hidden;
  background: var(--rb-surface-2);
}

.archive-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.archive-card:hover .archive-card-image img {
  transform: scale(1.035);
}

.archive-score {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  border: 3px solid rgba(255,255,255,.8);
  border-radius: 50%;
  background: var(--rb-orange);
  font-weight: 700;
  box-shadow: 0 5px 18px rgba(0,0,0,.18);
}

.archive-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.archive-card-meta {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 11px;
  color: var(--rb-muted);
  font-size: 12px;
  font-weight: 500;
}

.archive-card-meta span {
  color: var(--rb-orange-strong);
}

.archive-card h2 {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -1px;
}

.archive-card-excerpt {
  color: var(--rb-muted);
  font-size: 14px;
}

.archive-card-excerpt > :last-child {
  margin-bottom: 0;
}

.archive-card-link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  color: var(--rb-orange-strong);
  font-size: 14px;
  font-weight: 500;
}

.pagination-wrap {
  margin-top: 40px;
}

.pagination-wrap .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0;
  padding: 0 14px;
  list-style: none;
}

.pagination-wrap a,
.pagination-wrap .current {
  display: grid;
  min-width: 42px;
  min-height: 42px;
  padding: 9px 13px;
  place-items: center;
  border: 1px solid var(--rb-line);
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.pagination-wrap .current,
.pagination-wrap a:hover {
  color: #fff;
  border-color: var(--rb-orange);
  background: var(--rb-orange);
}

.empty-state {
  /* max-width: 672px; */
  margin: 0 auto;
  padding: 40px;
  text-align: center;
  /* border: 1px solid var(--rb-line); */
  /* border-radius: var(--rb-radius); */
  /* background: #fff; */
  /* box-shadow: var(--rb-shadow-sm); */
}

.empty-state-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  place-items: center;
  color: var(--rb-orange-strong);
  border-radius: 50%;
  background: var(--rb-orange-soft);
  font-size: 24px;
}

.empty-state h2 {
  font-size: 24px;
  font-weight: 700;
}

.empty-state p {
  font-size: 14px;
}

.content-search {
  max-width: 560px;
  margin: 24px auto 0;
}

.content-search .form-control {
  min-height: 51px;
  border-color: var(--rb-line);
}

.entry-single {
  position: relative;
}

.entry-single > .single-layout-container {
  margin-top: 30px;
  margin-bottom: 30px;
}

.single-related-section {
  padding: 64px 0 72px;
  border-top: 1px solid var(--rb-line);
  background: linear-gradient(180deg, #f8f9fa, #fff);
}

.single-related-container {
  max-width: 1200px;
}

.single-related-heading {
  margin-bottom: 28px;
}

.single-related-heading .eyebrow {
  margin-bottom: 8px;
}

.single-related-heading h2 {
  margin: 0;
  color: var(--rb-ink);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.single-related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.single-related-grid .archive-card {
  height: 100%;
}

.single-hero-container,
.single-layout-container {
  max-width: 1200px;
}

.content-hero--single h1 {
  max-width: 1030px;
  font-size: 42px;
}

.single-layout-row {
  position: relative;
  z-index: 2;
}

.single-main-column {
  min-width: 0;
}

.single-main-layout {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.single-main-content {
  min-width: 0;
}

.share-tools {
  position: sticky;
  z-index: 5;
  top: 98px;
  align-self: start;
}

.admin-bar .share-tools {
  top: 130px;
}

.share-tools-panel {
  display: flex;
  width: 46px;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border: 1px solid var(--rb-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--rb-shadow-sm);
  backdrop-filter: blur(10px);
}

.share-tools-heading {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--rb-orange-strong);
  border-radius: 50%;
  background: var(--rb-orange-soft);
  font-size: 13px;
}

.share-tools-heading-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.share-tools-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.share-button {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  color: #5f6973;
  border: 0;
  border-radius: 50%;
  background: transparent;
  font-size: 15px;
  line-height: 1;
  transition: color var(--rb-transition), background var(--rb-transition), transform var(--rb-transition);
}

.share-button:hover,
.share-button:focus-visible {
  color: #fff;
  outline: 0;
  transform: translateY(-1px);
}

.share-button:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 90, 10, .18);
}

.share-button--whatsapp:hover,
.share-button--whatsapp:focus-visible {
  background: #168c48;
}

.share-button--facebook:hover,
.share-button--facebook:focus-visible {
  background: #1877f2;
}

.share-button--x:hover,
.share-button--x:focus-visible {
  background: #151a20;
}

.share-button--linkedin:hover,
.share-button--linkedin:focus-visible {
  background: #0a66c2;
}

.share-button--copy:hover,
.share-button--copy:focus-visible,
.share-button--copy.is-copied {
  color: #fff;
  background: var(--rb-orange);
}

.entry-featured {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0 0 32px;
  border: 4px solid #fff;
  border-radius: var(--rb-radius-lg);
  background: var(--rb-surface-2);
  box-shadow: var(--rb-shadow-md);
}

.entry-featured img {
  display: block;
  width: 100%;
  max-height: 608px;
  object-fit: cover;
}

.entry-content {
  max-width: none;
  margin: 0;
  color: #303840;
  font-size: 17px;
  line-height: 1.78;
}

.entry-content > * {
  margin-top: 0;
  margin-bottom: 22px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 38px;
  color: var(--rb-ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
}

.entry-content h2 {
  font-size: 36px;
}

.entry-content h3 {
  font-size: 28px;
}

.entry-content a {
  color: var(--rb-orange-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.entry-content img {
  height: auto;
  border-radius: var(--rb-radius-sm);
}

.entry-content blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--rb-orange);
  border-radius: 0 var(--rb-radius-sm) var(--rb-radius-sm) 0;
  background: var(--rb-orange-soft);
  font-size: 18px;
  font-weight: 600;
}

.entry-content table {
  width: 100%;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: 16px;
}

.entry-content th,
.entry-content td {
  padding: 13px 16px;
  border: 1px solid var(--rb-line);
}

.entry-content th {
  background: var(--rb-surface);
}

.entry-content .alignwide {
  width: 1100px;
  max-width: 100%;
  max-width: none;
  margin-right: 50%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.review-summary-box {
  max-width: none;
  margin: 0 0 32px;
  padding: 36px;
  border: 1px solid rgba(255, 90, 10, .25);
  border-radius: var(--rb-radius-lg);
  background: linear-gradient(145deg, #fff 20%, var(--rb-orange-soft));
  box-shadow: var(--rb-shadow-sm);
}

.review-summary-heading {
  display: flex;
  gap: 20px;
  align-items: center;
}

.review-summary-heading h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -1px;
}

.review-summary-heading p {
  margin: 4px 0 0;
  color: var(--rb-muted);
  font-size: 14px;
}

.review-summary-score {
  display: grid;
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
  place-content: center;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  background: var(--rb-orange);
  box-shadow: 0 12px 30px rgba(255, 90, 10, .25);
}

.review-summary-score strong {
  display: block;
  font-size: 29px;
  line-height: 1;
}

.review-summary-score span {
  font-size: 11px;
  font-weight: 700;
}

.review-verdict {
  margin: 22px 0;
  color: #38414a;
  font-size: 17px;
  line-height: 1.7;
}

.review-points-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}

.review-points-grid > div {
  padding: 18px;
  border: 1px solid var(--rb-line);
  border-radius: var(--rb-radius-sm);
  background: rgba(255,255,255,.75);
}

.review-points-grid h3 {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
}

.review-points-grid h3 i {
  color: var(--rb-green);
}

.review-points-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--rb-muted);
  font-size: 14px;
}

.affiliate-notice {
  display: flex;
  max-width: 800px;
  gap: 13px;
  align-items: flex-start;
  margin: 0 0 32px;
  padding: 16px 18px;
  color: #535e68;
  border: 1px solid var(--rb-line);
  border-radius: 13px;
  background: var(--rb-surface);
  font-size: 13px;
}

.affiliate-notice i {
  color: var(--rb-orange-strong);
}

.entry-tags,
.author-box,
.post-navigation,
.comments-area {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.entry-tags {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--rb-line);
}

.entry-tags h2 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.entry-tags > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.entry-tags a {
  padding: 7px 12px;
  color: var(--rb-orange-strong);
  border-radius: 999px;
  background: var(--rb-orange-soft);
  font-size: 12px;
  font-weight: 700;
}

.author-box {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
  padding: 21px;
  border: 1px solid var(--rb-line);
  border-radius: var(--rb-radius);
  background: #fff;
  box-shadow: var(--rb-shadow-sm);
}

.author-box .author-avatar {
  width: 60px;
  height: 60px;
  display: contents;
}

.author-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.author-box span {
  color: var(--rb-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.author-box h2 {
  margin: 2px 0;
  font-size: 18px;
  font-weight: 700;
}

.author-box p {
  margin: 4px 0 0;
  color: var(--rb-muted);
  font-size: 14px;
}

.author-profile-link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-top: 8px;
  color: var(--rb-orange-strong);
  font-size: 13px;
  font-weight: 500;
}

.post-navigation {
  margin-top: 32px;
}

.post-navigation .nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.post-navigation a {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 16px;
  border: 1px solid var(--rb-line);
  border-radius: 13px;
}

.post-navigation .nav-next {
  text-align: right;
}

.post-navigation span {
  color: var(--rb-orange-strong);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.post-navigation strong {
  margin-top: 4px;
  font-size: 14px;
}

.comments-area {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rb-line);
}

.comments-title,
.comment-reply-title {
  font-size: 22px;
  font-weight: 700;
}

.comment-list {
  padding: 0;
  list-style: none;
}

.comment-list .comment-body {
  margin: 16px 0;
  padding: 16px;
  border: 1px solid var(--rb-line);
  border-radius: 13px;
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--rb-line);
  border-radius: 10px;
}

.comment-form .submit {
  padding: 12px 18px;
  color: #fff;
  border: 0;
  border-radius: 11px;
  background: var(--rb-orange);
  font-weight: 700;
}

/* Single: sidebar contextual e avaliações dos leitores. */
.single-sidebar-sticky {
  top: 98px;
}

.single-sidebar-sticky > * + * {
  margin-top: 18px;
}

.sidebar-card {
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--rb-line);
  border-radius: var(--rb-radius);
  background: #fff;
  box-shadow: var(--rb-shadow-sm);
}

.sidebar-card-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--rb-orange-strong);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sidebar-card h2 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.5px;
}

.sidebar-card > p {
  color: var(--rb-muted);
  font-size: 13px;
  line-height: 1.55;
}

.sidebar-score-card {
  border-color: rgba(255, 90, 10, .24);
  background: linear-gradient(145deg, #fff 30%, #fff7f2);
}

.sidebar-editorial-score {
  display: flex;
  gap: 13px;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 90, 10, .17);
}

.sidebar-editorial-score > strong {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--rb-orange);
  font-size: 21px;
}

.sidebar-editorial-score span,
.sidebar-editorial-score b {
  display: block;
}

.sidebar-editorial-score span {
  color: var(--rb-muted);
  font-size: 12px;
}

.sidebar-editorial-score b {
  color: var(--rb-ink);
  font-size: 14px;
}

.sidebar-reader-score {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 15px 0 4px;
  color: var(--rb-muted);
  font-size: 12px;
}

.rating-stars {
  display: inline-flex;
  gap: 2px;
  color: #f4a000;
  line-height: 1;
}

.sidebar-secondary-link {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  color: var(--rb-orange-strong);
  font-size: 13px;
  font-weight: 700;
}

.sidebar-search-card .content-search {
  margin: 0;
}

.sidebar-search-card .form-control {
  min-width: 0;
  min-height: 46px;
  font-size: 13px;
}

.sidebar-categories > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar-categories a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 8px 11px;
  color: var(--rb-ink-2);
  border: 1px solid var(--rb-line);
  border-radius: 999px;
  background: var(--rb-surface);
  font-size: 12px;
  font-weight: 700;
}

.sidebar-categories a:hover {
  color: var(--rb-orange-strong);
  border-color: rgba(255, 90, 10, .28);
  background: var(--rb-orange-soft);
}

.sidebar-related-list article {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.sidebar-related-list article + article {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--rb-line);
}

.sidebar-related-image,
.sidebar-related-image img {
  width: 68px;
  height: 68px;
  border-radius: 10px;
}

.sidebar-related-image {
  overflow: hidden;
  background: var(--rb-surface-2);
}

.sidebar-related-image img {
  object-fit: cover;
}

.sidebar-related-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--rb-orange-strong);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.sidebar-related-list h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.32;
}

.sidebar-transparency {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 17px;
  color: #55616c;
  border-radius: 13px;
  background: var(--rb-surface);
  font-size: 11px;
  line-height: 1.5;
}

.sidebar-transparency i {
  color: var(--rb-orange-strong);
  font-size: 18px;
}

.sidebar-transparency p,
.sidebar-transparency strong {
  display: block;
  margin: 0;
}

.comments-area {
  padding-top: 42px;
}

.comments-section-header h2 {
  margin: 6px 0 8px;
  font-size: 30px;
  font-weight: 750;
  letter-spacing: -1px;
}

.comments-section-header > p {
  max-width: 660px;
  color: var(--rb-muted);
  font-size: 14px;
}

.reader-rating-summary {
  display: grid;
  grid-template-columns: minmax(180px, .8fr) minmax(250px, 1.2fr);
  gap: 28px;
  margin: 24px 0 34px;
  padding: 25px;
  border: 1px solid var(--rb-line);
  border-radius: var(--rb-radius);
  background: var(--rb-surface);
}

.reader-rating-overview {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reader-rating-overview > strong:first-child {
  color: var(--rb-ink);
  font-size: 46px;
  line-height: 1;
}

.reader-rating-overview .rating-stars {
  margin: 8px 0;
  font-size: 18px;
}

.reader-rating-overview > span {
  color: var(--rb-muted);
  font-size: 12px;
}

.reader-rating-overview > .bi-stars {
  margin-bottom: 8px;
  color: var(--rb-orange);
  font-size: 30px;
}

.reader-rating-overview .reader-rating-empty-title {
  margin-bottom: 4px;
  font-size: 18px;
}

.reader-rating-distribution {
  display: grid;
  gap: 7px;
}

.rating-distribution-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 28px;
  gap: 9px;
  align-items: center;
  color: var(--rb-muted);
  font-size: 11px;
}

.rating-distribution-row > span {
  color: #4f5963;
  font-weight: 700;
}

.rating-distribution-row i {
  color: #f4a000;
}

.rating-distribution-track {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: #e2e5e8;
}

.rating-distribution-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #f4a000;
}

.comments-title {
  margin: 0 0 18px;
  font-size: 17px;
}

.comment-list .children {
  padding-left: 30px;
  list-style: none;
}

.comment-list .comment-body {
  margin: 16px 0;
  padding: 20px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(17, 24, 32, .045);
}

.comment-card-header {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.comment-author-avatar img {
  border-radius: 50%;
}

.comment-author-name,
.comment-author-info > a {
  display: block;
}

.comment-author-name {
  color: var(--rb-ink);
  font-size: 14px;
}

.comment-date {
  margin-top: 2px;
  color: var(--rb-muted);
  font-size: 11px;
}

.comment-card-rating {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 7px 9px;
  border-radius: 999px;
  background: #fff7df;
  font-size: 12px;
}

.comment-card-rating strong {
  color: #7a5400;
}

.comment-content {
  margin-top: 15px;
  color: #3d4650;
  font-size: 14px;
  line-height: 1.7;
}

.comment-content > :last-child {
  margin-bottom: 0;
}

.comment-card-actions {
  display: flex;
  gap: 14px;
  margin-top: 13px;
  font-size: 12px;
  font-weight: 700;
}

.comment-card-actions a {
  color: var(--rb-orange-strong);
}

.comment-awaiting-moderation {
  display: flex;
  gap: 7px;
  align-items: center;
  margin: 14px 0 0;
  padding: 10px;
  color: #745300;
  border-radius: 9px;
  background: #fff7df;
  font-size: 12px;
}

.review-comment-form {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(255, 90, 10, .22);
  border-radius: var(--rb-radius-lg);
  background: linear-gradient(145deg, #fff 30%, #fff8f4);
}

.comment-reply-title {
  margin: 0 0 8px;
  font-size: 24px;
}

.comment-notes {
  color: var(--rb-muted);
  font-size: 13px;
}

.comment-rating-field {
  margin: 22px 0;
  padding: 18px;
  border: 1px solid var(--rb-line);
  border-radius: 12px;
  background: #fff;
}

.comment-rating-field legend {
  float: none;
  width: auto;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.comment-rating-field > p {
  margin: 4px 0 12px;
  color: var(--rb-muted);
  font-size: 12px;
}

.comment-rating-options {
  display: flex;
  align-items: center;
  gap: 3px;
}

.comment-rating-options label {
  position: relative;
  margin: 0;
  cursor: pointer;
}

.comment-rating-options input {
  position: absolute;
  opacity: 0;
}

.comment-rating-options .comment-rating-star {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  color: #a87908;
  border: 0;
  border-radius: 8px;
  background: transparent;
  font-size: 25px;
  line-height: 1;
  transition: color var(--rb-transition), background var(--rb-transition), transform var(--rb-transition);
}

.comment-rating-options input:focus-visible + .comment-rating-star {
  background: #fff1c7;
  outline: 2px solid rgba(244, 160, 0, .2);
  outline-offset: 2px;
}

.comment-rating-options label:hover > .comment-rating-star {
  color: #775000;
  transform: translateY(-1px);
}

.comment-form label {
  display: block;
  margin-bottom: 6px;
  color: var(--rb-ink);
  font-size: 13px;
  font-weight: 600;
}

.comment-form-author,
.comment-form-email {
  display: inline-block;
  width: calc(50% - 7px);
  vertical-align: top;
}

.comment-form-author {
  margin-right: 10px;
}

.comment-form input:not([type="submit"]):focus,
.comment-form textarea:focus {
  border-color: rgba(255, 90, 10, .55);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(255, 90, 10, .1);
}

.comment-form-cookies-consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.comment-form-cookies-consent input {
  width: auto !important;
  margin-top: 4px;
}

.comment-form-cookies-consent label {
  color: var(--rb-muted);
  font-size: 12px;
  font-weight: 500;
}

.comment-moderation-note {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--rb-muted);
  font-size: 11px;
}

.comment-moderation-note i {
  color: var(--rb-orange-strong);
}

/* Perfil público do autor. */
.author-profile-hero {
  padding-bottom: 50px;
}

.author-profile-card {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.author-profile-avatar,
.author-profile-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.author-profile-avatar {
  padding: 2px;
  background: #fff;
  box-shadow: var(--rb-shadow-md);
}

.author-profile-avatar img {
  display: block;
  width: 100%;
  height: 100%;
}

.author-profile-copy h1 {
  margin-top: 8px;
  font-size: 24px;
}

.author-profile-copy > p {
  max-width: 690px;
  margin: 14px 0 0;
  color: #505b66;
  font-size: 14px;
}

.author-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 18px;
  color: var(--rb-muted);
  font-size: 12px;
  font-weight: 500;
}

.author-profile-meta span,
.author-profile-meta a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.author-profile-meta i {
  color: var(--rb-orange-strong);
}

.author-section-heading {
  display: flex;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 30px;
}

.author-section-heading h2 {
  margin: 6px 0 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1px;
}

.author-section-heading > p {
  max-width: 420px;
  margin: 0;
  color: var(--rb-muted);
  font-size: 14px;
}

/* Página de contato. */
.contact-form-card {
  margin-top: 38px;
  padding: 32px;
  border: 1px solid rgba(255, 90, 10, .22);
  border-radius: var(--rb-radius-lg);
  background: linear-gradient(145deg, #fff 35%, #fff8f4);
  box-shadow: var(--rb-shadow-sm);
}

.contact-form-heading h2 {
  margin: 7px 0 8px;
  font-size: 30px;
}

.contact-form-heading > p {
  color: var(--rb-muted);
  font-size: 14px;
}

.contact-form-feedback {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 20px 0;
  padding: 13px 15px;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 650;
}

.contact-form-feedback--success {
  color: #146c43;
  border: 1px solid #badbcc;
  background: #d1e7dd;
}

.contact-form-feedback--error {
  color: #842029;
  border: 1px solid #f5c2c7;
  background: #f8d7da;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.contact-form-grid p {
  margin: 0;
}

.contact-form-wide {
  grid-column: 1 / -1;
}

.reviewsbr-contact-form label {
  display: block;
  margin-bottom: 6px;
  color: var(--rb-ink);
  font-size: 13px;
  font-weight: 700;
}

.reviewsbr-contact-form input:not([type="checkbox"]),
.reviewsbr-contact-form select,
.reviewsbr-contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--rb-ink);
  border: 1px solid var(--rb-line);
  border-radius: 10px;
  background: #fff;
}

.reviewsbr-contact-form input:focus,
.reviewsbr-contact-form select:focus,
.reviewsbr-contact-form textarea:focus {
  border-color: rgba(255, 90, 10, .55);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(255, 90, 10, .1);
}

.contact-form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}

.contact-form-consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 18px 0;
}

.contact-form-consent input {
  margin-top: 4px;
}

.contact-form-consent label {
  margin: 0;
  color: var(--rb-muted);
  font-size: 12px;
  font-weight: 500;
}

@media (min-width: 1200px) {
  .share-tools {
    top: 168px;
  }

  .admin-bar .share-tools {
    top: 200px;
  }

  .single-sidebar-sticky,
  .archive-sidebar-sticky {
    top: 168px;
  }

  .admin-bar .single-sidebar-sticky,
  .admin-bar .archive-sidebar-sticky {
    top: 200px;
  }
}

@media (max-width: 1199px) {
  .single-main-layout {
    display: block;
  }

  .share-tools {
    position: static;
    margin-bottom: 24px;
  }

  .share-tools-panel {
    width: 100%;
    min-height: 58px;
    flex-direction: row;
    gap: 14px;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 14px;
  }

  .share-tools-heading {
    display: inline-flex;
    width: auto;
    height: auto;
    gap: 7px;
    color: var(--rb-ink-2);
    background: transparent;
    font-size: 13px;
    font-weight: 750;
  }

  .share-tools-heading-text {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .share-tools-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .share-button {
    width: 36px;
    height: 36px;
    background: var(--rb-surface);
  }
}

.not-found-page {
  background: #f7f8f9;
}

.not-found {
  position: relative;
  overflow: hidden;
  padding: 72px 0 82px;
  border-bottom: 1px solid var(--rb-line);
  background:
    radial-gradient(circle at 78% 30%, rgba(255, 90, 10, .14), transparent 330px),
    radial-gradient(circle at 14% 12%, rgba(255, 176, 0, .08), transparent 280px),
    linear-gradient(145deg, #fff 0%, #f7f8f9 58%, #fff6f1 100%);
}

.not-found .site-breadcrumbs {
  margin-bottom: 42px;
}

.not-found-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: 72px;
  align-items: center;
}

.not-found-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 750;
  line-height: 1.02;
  letter-spacing: -2.3px;
}

.not-found-copy > p {
  max-width: 680px;
  margin: 22px 0 0;
  color: #505b66;
  font-size: 18px;
  line-height: 1.65;
}

.not-found-search {
  max-width: 700px;
  margin-top: 30px;
}

.not-found-search > label {
  display: block;
  margin-bottom: 9px;
  color: var(--rb-ink-2);
  font-size: 13px;
  font-weight: 750;
}

.not-found-search .input-group {
  padding: 6px;
  border: 1px solid #d9dde2;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(19, 25, 32, .08);
}

.not-found-search .input-group-text {
  padding-right: 6px;
  color: var(--rb-orange-strong);
  border: 0;
  background: transparent;
  font-size: 19px;
}

.not-found-search .form-control {
  min-width: 0;
  height: 48px;
  border: 0;
  box-shadow: none;
}

.not-found-search .btn {
  min-width: 104px;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  margin-top: 22px;
}

.not-found-actions .btn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.not-found-text-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--rb-orange-strong);
  font-size: 14px;
  font-weight: 750;
}

.not-found-text-link:hover {
  gap: 10px;
}

.not-found-visual {
  position: relative;
  min-height: 338px;
  padding: 44px 34px 32px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .06), transparent 48%),
    linear-gradient(145deg, #171c21, #2d343c);
  box-shadow: 0 28px 60px rgba(19, 25, 32, .2);
}

.not-found-visual::before,
.not-found-visual::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.not-found-visual::before {
  top: -100px;
  right: -70px;
  width: 250px;
  height: 250px;
  border: 48px solid rgba(255, 90, 10, .15);
}

.not-found-visual::after {
  bottom: -100px;
  left: -75px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, .09);
}

.not-found-code {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 3px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(96px, 10vw, 142px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -9px;
}

.not-found-code i {
  margin: 0 8px;
  color: var(--rb-orange);
  font-size: .62em;
  letter-spacing: 0;
  transform: rotate(-10deg);
}

.not-found-status {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.not-found-status > i {
  color: #68d484;
  font-size: 24px;
}

.not-found-status strong,
.not-found-status span {
  display: block;
}

.not-found-status strong {
  font-size: 14px;
}

.not-found-status span {
  margin-top: 1px;
  color: rgba(255, 255, 255, .67);
  font-size: 12px;
}

.not-found-discovery {
  background: #fff;
}

.not-found-content {
  border-top: 1px solid var(--rb-line);
  background: linear-gradient(180deg, #f7f8f9, #fff);
}

.not-found-section-heading {
  display: flex;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.not-found-section-heading h2 {
  margin: 0;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 750;
  letter-spacing: -.8px;
}

.not-found-section-heading p {
  max-width: 460px;
  margin: 0;
  color: var(--rb-muted);
  font-size: 14px;
}

.not-found-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.not-found-category {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 146px;
  padding: 18px 16px 15px;
  flex-direction: column;
  border: 1px solid var(--rb-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(17, 24, 32, .04);
  transition: transform var(--rb-transition), border-color var(--rb-transition), box-shadow var(--rb-transition);
}

.not-found-category:hover {
  color: var(--rb-ink);
  border-color: rgba(255, 90, 10, .35);
  box-shadow: var(--rb-shadow-sm);
  transform: translateY(-4px);
}

.not-found-category-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: auto;
  place-items: center;
  color: var(--rb-orange-strong);
  border-radius: 13px;
  background: var(--rb-orange-soft);
  font-size: 21px;
}

.not-found-category > span:nth-child(2) {
  max-width: calc(100% - 20px);
  margin-top: 17px;
  overflow-wrap: anywhere;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
}

.not-found-category > .bi-arrow-up-right {
  position: absolute;
  right: 14px;
  bottom: 13px;
  color: #a3abb4;
  font-size: 13px;
}

.not-found-category:focus-visible,
.not-found-text-link:focus-visible {
  outline: 2px solid rgba(255, 90, 10, .45);
  outline-offset: 3px;
}

@media (max-width: 991px) {
  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .not-found-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .not-found-visual {
    min-height: 290px;
  }

  .not-found-code {
    font-size: 120px;
  }

  .not-found-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .entry-single > .single-layout-container {
    margin-top: -72px;
  }

  .single-sidebar-sticky {
    position: static !important;
  }

  .author-profile-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .author-profile-avatar,
  .author-profile-avatar img {
    width: 112px;
    height: 112px;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 575px) {
  .archive-with-sidebar .archive-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 22px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wide {
    grid-column: auto;
  }

  .share-tools-panel {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .share-tools-list {
    width: 100%;
    justify-content: space-between;
  }

  .archive-grid,
  .review-points-grid,
  .post-navigation .nav-links {
    grid-template-columns: 1fr;
  }

  .archive-card-image {
    height: 192px;
  }

  .single-related-section {
    padding: 44px 0 52px;
  }

  .not-found {
    padding: 40px 0 54px;
  }

  .not-found .site-breadcrumbs {
    margin-bottom: 30px;
  }

  .not-found-copy h1 {
    font-size: 43px;
    letter-spacing: -1.4px;
  }

  .not-found-copy > p {
    font-size: 16px;
  }

  .not-found-search .input-group {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    padding: 6px;
  }

  .not-found-search .input-group-text {
    grid-row: 1;
    grid-column: 1;
  }

  .not-found-search .form-control {
    grid-row: 1;
    grid-column: 2;
    width: 100%;
  }

  .not-found-search .btn {
    grid-row: 2;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 5px;
  }

  .not-found-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .not-found-actions .btn,
  .not-found-text-link {
    justify-content: center;
  }

  .not-found-visual {
    min-height: 250px;
    padding: 28px 18px;
  }

  .not-found-code {
    font-size: 84px;
    letter-spacing: -6px;
  }

  .not-found-status {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .not-found-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .not-found-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .not-found-category {
    min-height: 138px;
  }

  .review-summary-heading,
  .author-box {
    align-items: flex-start;
  }

  .review-summary-score {
    width: 72px;
    height: 72px;
  }

  .entry-featured {
    border-width: 4px;
  }

  .post-navigation .nav-next {
    text-align: left;
  }

  .reader-rating-summary {
    grid-template-columns: 1fr;
  }

  .comment-card-header {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .comment-author-avatar img {
    width: 44px;
    height: 44px;
  }

  .comment-card-rating {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .comment-form-author,
  .comment-form-email {
    display: block;
    width: 100%;
  }

  .comment-form-author {
    margin-right: 0;
  }

  .review-comment-form,
  .reader-rating-summary {
    padding: 20px;
  }

  .comment-rating-options .comment-rating-star {
    width: 34px;
    height: 34px;
    font-size: 23px;
  }

  .author-profile-card {
    grid-template-columns: 1fr;
  }

  .author-profile-copy h1 {
    font-size: 42px;
  }

  .author-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Editorial portal cover. */
.hero-section {
  padding: 40px 0 32px;
}

.portal-intro {
  gap: 32px 0;
  margin-bottom: 24px;
}

.portal-intro .hero-copy {
  padding: 0;
}

.portal-intro .hero-title {
  max-width: 600px;
  margin-bottom: 16px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.portal-intro .hero-lead {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 16px;
}

.portal-discovery {
  padding-bottom: 6px;
}

.portal-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}

.portal-tile {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #e5e5e5;
  box-shadow: var(--rb-shadow-sm);
  isolation: isolate;
}

.portal-tile-image,
.portal-tile-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.portal-tile-image {
  object-fit: cover;
  transition: transform 300ms ease;
}

.portal-tile-shade {
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 12, 15, .05) 18%, rgba(10, 12, 15, .9) 100%);
}

.portal-tile:hover .portal-tile-image {
  transform: scale(1.025);
}

.portal-lead {
  grid-row: 1 / 3;
  min-height: 456px;
}

.portal-lead .portal-tile-shade {
  background: linear-gradient(90deg, rgba(9, 11, 14, .96) 0, rgba(9, 11, 14, .82) 46%, rgba(9, 11, 14, .08) 78%), linear-gradient(0deg, rgba(9, 11, 14, .55), transparent 54%);
}

.portal-lead-content {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: 32px;
  width: min(72%, 680px);
  color: #fff;
}

.portal-kicker {
  display: block;
  margin: 12px 0 8px;
  color: #ffb17d;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.portal-lead h2,
.portal-story h2 {
  color: #fff;
  font-weight: 700;
}

.portal-lead h2 {
  max-width: 570px;
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.portal-lead-content p {
  max-width: 510px;
  margin: 10px 0 14px;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
}

.portal-lead .rating-line {
  color: rgba(255, 255, 255, .78);
}

.portal-read-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.portal-read-link:hover {
  color: #ffb17d;
}

.portal-story-content {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
}

.portal-story .portal-kicker {
  margin: 0 0 6px;
}

.portal-story h2 {
  margin: 0;
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: -1px;
}

.portal-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px solid var(--rb-line);
  border-radius: 14px;
  background: #fff;
}

.portal-trust .trust-point,
.portal-all-link {
  font-size: 13px;
  font-weight: 500;
}

.portal-trust .trust-point {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--rb-ink);
}

.portal-trust .trust-point i {
  color: var(--rb-orange);
  font-size: 16px;
}

.portal-all-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-left: auto;
  color: var(--rb-orange-strong);
}

/* Global typography and form-control limits. */
.eyebrow {
  font-weight: 500 !important;
}

b,
strong,
.fw-bold,
.fw-bolder {
  font-weight: 700 !important;
}

button,
input,
select,
.btn,
.button,
.wp-block-button__link,
.wp-element-button {
  box-sizing: border-box;
  min-height: 0 !important;
  max-height: 48px !important;
  font-weight: 500 !important;
}

@media (max-width: 991px) {
  .portal-intro .hero-title {
    max-width: 680px;
    font-size: 52px;
  }

  .portal-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 400px 220px;
  }

  .portal-lead {
    grid-row: 1;
    grid-column: 1 / -1;
    min-height: 400px;
  }

  .portal-lead-content {
    width: 72%;
  }
}

@media (max-width: 575px) {
  .hero-section {
    padding: 32px 0 24px;
  }

  .portal-intro {
    margin-bottom: 20px;
  }

  .portal-intro .hero-title {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .portal-intro .hero-lead {
    font-size: 16px;
  }

  .portal-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .portal-lead,
  .portal-story {
    grid-column: auto;
    grid-row: auto;
  }

  .portal-lead {
    min-height: 420px;
  }

  .portal-lead .portal-tile-shade {
    background: linear-gradient(0deg, rgba(9, 11, 14, .98) 0, rgba(9, 11, 14, .72) 60%, rgba(9, 11, 14, .18) 100%);
  }

  .portal-lead-content {
    right: 20px;
    bottom: 20px;
    left: 20px;
    width: auto;
  }

  .portal-lead h2 {
    font-size: 28px;
  }

  .portal-lead-content p {
    display: none;
  }

  .portal-story {
    min-height: 210px;
  }

  .portal-story h2 {
    font-size: 21px;
  }

  .portal-trust {
    gap: 10px 18px;
  }

  .portal-all-link {
    width: 100%;
    margin-left: 0;
    padding-top: 4px;
  }
}

/* Consistent button type scale and grouped fields. */
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.btn,
.button,
.wp-block-button__link,
.wp-element-button {
  font-size: 15px !important;
}

.btn-lg,
.button-lg,
button.btn-lg,
input.btn-lg {
  font-size: 17px !important;
}

.btn-sm,
.button-sm,
button.btn-sm,
input.btn-sm {
  font-size: 13px !important;
}

.site-search .input-group > .form-control,
.site-search .input-group > .btn,
.newsletter-form .input-group > .form-control,
.newsletter-form .input-group > .btn {
  height: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
}

.site-search .input-group > .form-control,
.newsletter-form .input-group > .form-control {
  font-size: 15px;
}

/* Automatic editorial slider. */
.portal-lead-swiper {
  position: relative;
  grid-row: 1 / 3;
  min-width: 0;
  min-height: 456px;
  overflow: hidden;
  border-radius: 20px;
  background: #1b1d20;
}

.portal-lead-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.portal-lead-swiper .portal-slide {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(28px);
  transition: opacity 450ms ease, transform 450ms ease, visibility 450ms ease;
}

.portal-lead-swiper .portal-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.portal-lead-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  color: inherit;
}

.portal-lead-link:focus-visible {
  outline: 3px solid var(--rb-orange);
  outline-offset: -5px;
}

.portal-lead-link:hover .portal-read-link {
  color: #ffb17d;
}

.portal-slider-controls {
  position: absolute;
  z-index: 8;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(13, 15, 18, .66);
  backdrop-filter: blur(8px);
}

.portal-slider-arrow,
.portal-slider-dot {
  flex: 0 0 auto;
  padding: 0;
  color: #fff;
  border: 0;
  background: transparent;
}

.portal-slider-arrow {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
}

.portal-slider-arrow:hover,
.portal-slider-arrow:focus-visible {
  background: rgba(255, 255, 255, .16);
}

.portal-slider-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.portal-slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .42);
  transition: width 200ms ease, background 200ms ease;
}

.portal-slider-dot.is-active {
  width: 16px;
  border-radius: 999px;
  background: var(--rb-orange);
}

.portal-story-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.portal-story-link:focus-visible {
  outline: 3px solid var(--rb-orange);
  outline-offset: -5px;
}

.reviews-shell.is-paused .review-scroll-button,
.portal-lead-swiper.is-paused .portal-slider-controls {
  opacity: 1;
}

@media (max-width: 991px) {
  .portal-lead-swiper {
    grid-row: 1;
    grid-column: 1 / -1;
    min-height: 400px;
  }
}

@media (max-width: 575px) {
  .portal-lead-swiper {
    grid-row: auto;
    grid-column: auto;
    min-height: 420px;
  }

  .portal-slider-controls {
    top: 14px;
    left: 14px;
  }
}

@media (max-width: 767px) {
  .review-scroll-button {
    display: grid;
    width: 40px;
    height: 40px;
  }

  .review-scroll-button.prev {
    left: 4px;
  }

  .review-scroll-button.next {
    right: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portal-lead-swiper .portal-slide {
    transition: none;
  }
}

/* Transparência editorial e proteção das avaliações. */
.home-content-empty {
  display: flex;
  width: 100%;
  min-height: 150px;
  padding: 28px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--rb-muted);
  border: 1px dashed #ccd2d8;
  border-radius: var(--rb-radius);
  background: rgba(255, 255, 255, .7);
  text-align: left;
}

.home-content-empty > i {
  color: var(--rb-orange-strong);
  font-size: 30px;
}

.home-content-empty h3,
.home-content-empty p {
  margin: 0;
}

.home-content-empty h3 {
  margin-bottom: 4px;
  color: var(--rb-ink);
  font-size: 18px;
}

.portal-editorial-rating,
.editorial-rating-line {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
}

.portal-editorial-rating > span,
.editorial-rating-line > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.editorial-disclosure {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  padding: 18px;
  color: #46515c;
  border: 1px solid #dfe4e8;
  border-radius: 13px;
  background: #f7f9fa;
  font-size: 13px;
}

.editorial-disclosure > i {
  flex: 0 0 auto;
  color: var(--rb-orange-strong);
  font-size: 22px;
}

.editorial-disclosure strong {
  display: block;
  margin-bottom: 3px;
  color: var(--rb-ink);
  font-size: 14px;
}

.editorial-disclosure p {
  margin: 0;
}

.editorial-disclosure details {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #dfe4e8;
}

.editorial-disclosure summary {
  color: var(--rb-ink);
  cursor: pointer;
  font-weight: 700;
}

.editorial-disclosure details p {
  margin-top: 8px;
}

.editorial-disclosure details a {
  display: inline-flex;
  gap: 5px;
  margin-top: 8px;
  color: var(--rb-orange-strong);
  font-weight: 700;
}

.editorial-disclosure--sponsored_review {
  border-color: #f0d9aa;
  background: #fff9ed;
}

.editorial-disclosure--demonstration {
  border-color: #efc4c4;
  background: #fff5f5;
}

.review-flow-notice {
  display: flex;
  gap: 12px;
  margin: 18px 0;
  padding: 15px 17px;
  align-items: flex-start;
  color: #44505a;
  border: 1px solid #dce2e7;
  border-radius: 11px;
  background: #f7f9fa;
  font-size: 13px;
}

.review-flow-notice > i {
  font-size: 20px;
}

.review-flow-notice strong,
.review-flow-notice p {
  display: block;
  margin: 0;
}

.review-flow-notice.is-success {
  color: #246d36;
  border-color: #cce6d2;
  background: #f1faf3;
}

.review-flow-notice.is-warning {
  color: #765800;
  border-color: #eadcae;
  background: #fff9e9;
}

.reader-verified-purchases,
.comment-verification-badge {
  display: inline-flex;
  width: fit-content;
  gap: 5px;
  align-items: center;
  color: #26733a;
  font-size: 11px;
  font-weight: 700;
}

.reader-verified-purchases {
  margin-top: 7px;
}

.comment-verification-badges {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.comment-verification-badge {
  padding: 5px 8px;
  border: 1px solid #cce6d2;
  border-radius: 999px;
  background: #f1faf3;
}

.comment-verification-badge.is-purchase {
  color: #206b33;
  border-color: #badebf;
  background: #ebf8ee;
}

.comment-real-experience {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 9px;
  background: #f6f7f8;
}

.comment-real-experience input {
  width: auto !important;
  margin-top: 4px;
}

.comment-real-experience label {
  margin: 0;
  color: #46515c;
  font-size: 12px;
  font-weight: 600;
}

.reviewsbr-review-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 575px) {
  .home-content-empty,
  .editorial-disclosure {
    align-items: flex-start;
    padding: 18px;
  }
}

/* Mídia de cards: proporção única para listagens, home e sidebar. */
.editorial-card .editorial-image,
.review-card .review-visual,
.archive-card .archive-card-image,
.archive-products .archive-product-image {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--rb-surface-2);
}

.editorial-card .editorial-image img,
.review-card .review-visual img,
.archive-card .archive-card-image img,
.archive-products .archive-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.review-card .review-visual {
  display: block;
}

.review-card .review-visual img {
  filter: none;
}

/* Home: mídia 4:3 e ações alinhadas na base dos cards editoriais. */
#comparativos .home-editorial-card,
#guias .home-editorial-card {
  display: flex;
  height: 100%;
  flex-direction: column;
}

#comparativos .home-editorial-card .editorial-image,
#guias .home-editorial-card .editorial-image {
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

#comparativos .home-editorial-card .editorial-image img,
#guias .home-editorial-card .editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
}

#comparativos .home-editorial-card .editorial-body,
#guias .home-editorial-card .editorial-body {
  height: auto;
  flex: 1 1 auto;
}

#comparativos .home-card-action,
#guias .home-card-action {
  margin-top: auto;
}

#comparativos .reading-time,
#guias .reading-time {
  margin-bottom: 16px;
}

/* Reviews recentes: cards sem o contorno que destoava do carrossel. */
#reviews .review-card,
#reviews .review-card:hover {
  border: 0;
}

/* No post individual, a imagem mantém a proporção original do arquivo. */
.single-post .entry-featured img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: initial;
}

/* Arquivo de Marcas: slider das categorias-filhas. */
.brand-categories-section {
  padding: 20px 0;
  border-bottom: 1px solid var(--rb-line);
  background: linear-gradient(180deg, var(--rb-white) 0%, #f7f8f9 100%);
}

.brand-categories-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.brand-categories-heading h2 {
  margin: 5px 0 7px;
  color: var(--rb-ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.2px;
  display: none;
}

.brand-categories-heading p {
  max-width: 680px;
  margin: 0;
  color: var(--rb-muted);
  font-size: 14px;
}

.brand-categories-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.brand-categories-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--rb-ink);
  border: 1px solid var(--rb-line);
  border-radius: 50%;
  background: var(--rb-white);
  transition: color var(--rb-transition), border-color var(--rb-transition), background var(--rb-transition), transform var(--rb-transition);
}

.brand-categories-controls button:hover,
.brand-categories-controls button:focus-visible {
  color: var(--rb-white);
  border-color: var(--rb-orange);
  background: var(--rb-orange);
  transform: translateY(-2px);
}

.brand-categories-controls button:disabled {
  cursor: default;
  opacity: .4;
  transform: none;
}

.brand-categories-swiper {
  min-width: 0;
  padding: 0;
}

.brand-categories-track {
  display: flex;
  gap: 8px;
  padding: 15px 2px 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.brand-categories-track::-webkit-scrollbar {
  display: none;
}

.brand-category-card {
  display: flex;
  flex: 0 0 calc((100% - 80px) / 16);
  min-width: 60px;
  overflow: hidden;
  scroll-snap-align: start;
  color: var(--rb-ink);
  border: 1px solid var(--rb-line);
  border-radius: var(--rb-radius);
  background: var(--rb-white);
  /* box-shadow: 0 8px 24px rgba(17, 24, 32, .045); */
  flex-direction: column;
  transition: color var(--rb-transition), border-color var(--rb-transition), box-shadow var(--rb-transition), transform var(--rb-transition);
}

.brand-category-card:hover,
.brand-category-card:focus-visible {
  color: var(--rb-orange-strong);
  border-color: rgba(255, 90, 10, .4);
  /* box-shadow: 0 13px 30px rgba(17, 24, 32, .09); */
  transform: translateY(-3px);
}

.brand-category-image {
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 3px;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid #edf0f2;
  background: #fff;
}

.brand-category-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-category-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #aeb5bc;
  border-radius: 4px;
  background: linear-gradient(135deg, #f4f5f6, #eceff1);
  font-size: 32px;
}

.brand-category-body {
  display: flex;
  min-height: 40px;
  padding: 14px 15px;
  justify-content: center;
  gap: 5px;
  text-align: center;
  flex-direction: column;
  word-wrap: break-word;
}

.brand-category-body strong {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.brand-category-body small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--rb-muted);
  font-size: 11px;
  font-weight: 500;
}

.brand-category-card:hover .brand-category-body small,
.brand-category-card:focus-visible .brand-category-body small {
  color: var(--rb-orange-strong);
}

.brand-category-tooltip .tooltip-inner {
  padding: 7px 10px;
  color: var(--rb-white);
  border-radius: 7px;
  background: var(--rb-ink);
  box-shadow: 0 7px 18px rgba(17, 24, 32, .2);
  font-size: 12px;
  font-weight: 700;
}

.brand-category-tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: var(--rb-ink);
}

@media (max-width: 1199px) {
  .brand-category-card {
    flex-basis: calc((100% - 64px) / 5);
  }
}

@media (max-width: 991px) {
  .brand-category-card {
    flex-basis: calc((100% - 48px) / 4);
  }
}

@media (max-width: 767px) {
  .brand-categories-section {
    padding: 30px 0 26px;
  }

  .brand-categories-heading {
    align-items: center;
  }

  .brand-category-card {
    flex-basis: calc((100% - 32px) / 3);
  }
}

@media (max-width: 575px) {
  .brand-categories-heading {
    align-items: flex-end;
    gap: 12px;
  }

  .brand-categories-heading p {
    display: none;
  }

  .brand-categories-controls button {
    width: 38px;
    height: 38px;
  }

  .brand-category-card {
    flex-basis: calc((100% - 16px) / 2);
    min-width: 142px;
  }

  .brand-category-image {
    padding: 14px;
  }
}
