/* ═══════════════════════════════════════════════════════════════
   GUIA DA GUITARRA — Estilos do Site
   Edite cores, tamanhos, espaçamentos diretamente aqui.
   ═══════════════════════════════════════════════════════════════ */

/* ─── VARIÁVEIS GLOBAIS ──────────────────────────────────────── */
:root {
  --accent: #30df47;
  --accent-dark: #1ea533;
  --accent-soft: #ecfdf0;
  --accent-soft-border: #b8e9c2;
  --bg: #f5f3ef;
  --bg-soft: #f0ede8;
  --bg-dark: #111210;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --border: #e0ddd7;
  --white: #fff;
  --max-width: 1200px;

  /* Fontes — Poppins é a fonte oficial do site */
  --font-body: 'Poppins', system-ui, sans-serif;
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-logo: 'Barlow Condensed', sans-serif;
}

/* ─── RESET / BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: clip; }

[id] { scroll-margin-top: 80px; }
body {
  background: var(--bg);
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.5;
  overflow-x: clip;
  max-width: 100vw;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; object-fit: cover; }

/* ─── HEADER / NAV ──────────────────────────────────────────── */
.page-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.page-nav--dark {
  background: var(--bg-dark);
  border-bottom: none;
}

.page-nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 10px; line-height: 1; text-decoration: none; }
.logo__icon { flex-shrink: 0; }
.logo__text-wrap { display: flex; flex-direction: column; gap: 1px; }
.logo__name {
  font-family: var(--font-logo);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #ffffff;
  white-space: nowrap;
  line-height: 1.1;
}
.logo__tagline {
  font-family: var(--font-logo);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #30df47;
  white-space: nowrap;
  line-height: 1;
}
/* fallback for pages that still use .logo__text */
.logo__text {
  font-family: var(--font-logo);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  white-space: nowrap;
}
.page-nav--dark .logo__text { color: var(--white); }

@media (max-width: 480px) {
  .logo__icon { width: 32px; height: 26px; }
  .logo__name { font-size: 17px; }
  .logo__tagline { font-size: 7.5px; letter-spacing: 0.14em; }
}

/* Links de navegação */
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color 0.15s;
}
/* sublinhado que cresce da esquerda para a direita no hover */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--accent); }
.page-nav--dark .nav-links a { color: rgba(255,255,255,0.75); }
.page-nav--dark .nav-links a:hover { color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  .nav-links a::after { transition: none; }
}

/* Busca */
.nav-search {
  position: relative;
  min-width: 240px;
}
.nav-search__input {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 13px;
  color: var(--text);
  border: 1px solid transparent;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.nav-search__input:focus { border-color: var(--accent); background: var(--white); }
.nav-search__input::placeholder { color: #aaa; }
.page-nav--dark .nav-search__input {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.page-nav--dark .nav-search__input::placeholder { color: rgba(255,255,255,0.4); }
.page-nav--dark .nav-search__input:focus { background: rgba(255,255,255,0.14); border-color: var(--accent); }

.nav-search__icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
}
.page-nav--dark .nav-search__icon { color: rgba(255,255,255,0.4); }
.nav-search__input--with-icon { padding-left: 32px; }

/* Dropdown de resultados */
.nav-search__results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  max-height: 420px;
  overflow-y: auto;
  z-index: 200;
}
.nav-search__result {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.nav-search__result:last-child { border-bottom: none; }
.nav-search__result:hover { background: var(--bg); }
.nav-search__result-img {
  width: 50px; height: 38px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #1a1a1a;
}
.nav-search__result-img img { width: 100%; height: 100%; object-fit: cover; }
.nav-search__result-body { flex: 1; min-width: 0; }
.nav-search__result-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nav-search__result-meta {
  font-size: 11px;
  color: var(--text-muted);
}
.nav-search__empty {
  padding: 16px 14px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}
.nav-search__empty-icon {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-search { min-width: 0; flex: 1; max-width: 220px; }
  .page-nav__inner { gap: 12px; padding: 0 16px; }
}

/* ─── HAMBURGER BUTTON ──────────────────────────────────────── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px;
  color: rgba(255,255,255,0.85);
  border-radius: 5px;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.1); color: #fff; }
.page-nav:not(.page-nav--dark) .nav-hamburger { color: var(--text); }
.page-nav:not(.page-nav--dark) .nav-hamburger:hover { background: var(--bg-soft); }
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
}

/* Entre 769px e 1080px o menu inteiro (logo 185 + links 574 + busca 200 +
   padding) nao cabia na barra: os links encostavam no logo e a navbar
   estourava alguns px para fora da tela. Nessa faixa o menu vira hamburger,
   igual ao mobile, e a busca continua na pill de 200px.                  */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ─── MOBILE NAVIGATION DRAWER ─────────────────────────────── */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
}
.nav-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}
.nav-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: opacity 0.28s ease;
  cursor: pointer;
}
.nav-drawer.is-open .nav-drawer__overlay { opacity: 1; }

.nav-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(300px, 82vw);
  height: 100%;
  background: #111210;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 4px 0 32px rgba(0,0,0,0.4);
}
.nav-drawer.is-open .nav-drawer__panel { transform: translateX(0); }

.nav-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 0 18px;
  height: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.nav-drawer__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-logo);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
}
.nav-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  padding: 7px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.nav-drawer__close:hover { color: #fff; background: rgba(255,255,255,0.08); }

.nav-drawer__section-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  padding: 22px 18px 8px;
}
.nav-drawer__links { display: flex; flex-direction: column; }
.nav-drawer__links a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.nav-drawer__links a:last-child { border-bottom: none; }
.nav-drawer__links a:hover { background: rgba(255,255,255,0.06); color: var(--accent); }
.nav-drawer__icon { font-size: 19px; width: 26px; text-align: center; flex-shrink: 0; }

.nav-drawer__footer {
  margin-top: auto;
  padding: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-drawer__footer p { font-size: 11px; color: rgba(255,255,255,0.2); line-height: 1.6; }

/* ─── SIDEBAR STICKY FIX ─────────────────────────────────────── */
/* top = navbar(60px) + breadcrumb(~38px) + gap(6px) = 104px       */
/* A sidebar NAO rola por dentro. Quem garante isso e' o sidebar.js:
   ele reduz o conteudo ate caber na altura livre e so entao aplica
   o max-height inline. Por isso aqui nao ha overflow-y nem scrollbar. */
.rr-side {
  position: sticky;
  top: 104px;
  align-self: start; /* garante que o sticky funcione no grid */
}
/* tela baixa demais para caber mesmo apos o corte: o JS solta o sticky
   e a sidebar rola junto com o artigo, sem esconder nada */
.rr-side--solta {
  position: static;
  max-height: none;
}
@media (max-width: 960px) {
  .rr-side { display: none !important; }
}

/* ─── HERO ──────────────────────────────────────────────────── */
.section { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
@media (max-width: 480px) {
  .section { padding: 0 16px; }
}

.hero { padding-top: 32px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
}

/* Card de destaque do hero */
.hero__featured {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  transition: transform 0.2s;
}
.hero__featured:hover { transform: translateY(-2px); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 28px 28px;
}

.hero__badges { display: flex; gap: 8px; align-items: center; margin-bottom: 28px; }
.hero__title { margin-top: auto; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 10px;
  text-wrap: pretty;
}

.hero__excerpt {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 14px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}
.hero__meta .dot { color: rgba(255,255,255,0.25); }
.hero__meta-action {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
}

/* Pílula de destaque */
.pill-destaque {
  background: var(--accent);
  color: #111;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 3px;
}

/* ─── SIDEBAR (artigos recentes do hero) ─────────────────────── */
.hero-side { display: flex; flex-direction: column; gap: 2px; }
.hero-side__title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  padding: 0 0 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.hero-side__item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.hero-side__item:hover { background: #ede9e2; }
.hero-side__item-img {
  width: 80px;
  height: 60px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-side__item-img { position: relative; }
.hero-side__pill { position: absolute; bottom: 5px; left: 5px; font-size: 9px; padding: 2px 6px; pointer-events: none; }
.hero-side__item-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; justify-content: center; align-items: flex-start; }
.hero-side__item-title {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  margin: 5px 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Newsletter */
.newsletter {
  margin-top: 12px;
  padding: 18px 16px;
  background: var(--bg-dark);
  border-radius: 6px;
}
.newsletter__title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 4px;
}
.newsletter__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin-bottom: 12px;
}
.newsletter__form { display: flex; flex-direction: column; gap: 8px; }
.newsletter__input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--white);
  outline: none;
  font-family: var(--font-body);
}
.newsletter__btn {
  background: var(--accent);
  border: none;
  border-radius: 4px;
  padding: 9px;
  font-size: 12px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
}

/* ─── CATEGORY STRIP ─────────────────────────────────────────── */
.category-strip { margin-top: 32px; }
.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.category-grid > * { flex: 1 1 260px; max-width: 340px; }
@media (max-width: 600px) {
  .category-grid > * { flex: 1 1 140px; }
}
.category-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 7px;
  border: 1px solid var(--border);
  transition: border-color 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.category-card:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.category-card__icon { font-size: 22px; }
.category-card__label { font-size: 14px; font-weight: 600; color: var(--text); }
.category-card__desc { font-size: 11px; color: var(--text-muted); }

/* ─── SECTION HEADER (Artigos Recentes, Mais Lidos, etc) ────── */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  margin-top: 40px;
}
.section-header__title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--text);
}
.section-header__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ─── ARTICLES GRID ─────────────────────────────────────────── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .articles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .articles-grid { grid-template-columns: 1fr; } }

.article-card {
  display: block;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}

.article-card__img-wrap {
  height: 180px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, #1e3028 0%, #0d1610 100%);
}
.article-card__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  transition: transform 0.3s;
}
.article-card:hover .article-card__img-wrap img { transform: scale(1.04); }
.article-card__cat {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.article-card__body { padding: 16px 18px 18px; }
.article-card__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card__excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.article-card__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}
.article-card__meta .dot { color: var(--border); }
.article-card__action {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 3px;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.article-card:hover .article-card__action { opacity: 1; }

/* ─── CATEGORY PILL ──────────────────────────────────────────── */
.cat-pill {
  display: inline-block;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.cat-pill--guitarras     { background: #e06030; }
.cat-pill--violoes       { background: #5a8c3a; }
.cat-pill--pedais        { background: #0369a1; }
.cat-pill--reviews       { background: #8b5cf6; }
.cat-pill--guias         { background: #3b82f6; }
.cat-pill--baixos        { background: #166534; }
.cat-pill--amplificadores{ background: #0f766e; }
.cat-pill--default       { background: #555; }

/* ─── READ TIME ──────────────────────────────────────────────── */
.read-time { font-size: 12px; color: var(--text-muted); font-family: var(--font-body); }

/* ─── MAIS LIDOS ─────────────────────────────────────────────── */
.mais-lidos { margin-top: 48px; }
.mais-lidos__box {
  background: var(--bg-dark);
  border-radius: 10px;
  padding: 28px 28px 32px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 700px) {
  .mais-lidos__box { grid-template-columns: 1fr; }
}
.mais-lidos__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}
.mais-lidos__heading {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 12px;
}
.mais-lidos__bar {
  width: 32px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.mais-lidos__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
  line-height: 1.55;
}
.mais-lidos__list { display: flex; flex-direction: column; gap: 0; }
.mais-lidos__item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: flex-start;
  transition: opacity 0.15s;
}
.mais-lidos__item:last-child { border-bottom: none; }
.mais-lidos__item:hover { opacity: 0.75; }
.mais-lidos__num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
  opacity: 0.8;
}
.mais-lidos__item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-top: 5px;
  line-height: 1.3;
}

/* ─── CTA INICIANTES ─────────────────────────────────────────── */
.cta-iniciantes { margin-top: 40px; }
.cta-iniciantes__box {
  background: var(--bg-dark);
  border-radius: 16px;
  padding: 32px 28px;
}
.cta-iniciantes__head {
  text-align: center;
  margin-bottom: 22px;
}
.cta-iniciantes__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.cta-iniciantes__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.2;
  margin: 8px 0 6px;
}
.cta-iniciantes__desc {
  font-size: 13.5px;
  color: #a5a5a0;
  line-height: 1.6;
}
.cta-iniciantes__doors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 700px) {
  .cta-iniciantes__doors { grid-template-columns: 1fr; }
}
.cta-door {
  background: var(--white);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s;
}
.cta-door:hover { transform: translateY(-3px); }
.cta-door__icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
}
.cta-door__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.cta-door__desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 6px 0 14px;
}
.cta-door__link {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-dark);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.page-footer {
  background: var(--bg-dark);
  margin-top: 64px;
  padding: 40px 24px 28px;
}
.page-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-footer__grid {
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  gap: 48px;
  margin-bottom: 36px;
  align-items: start;
}
@media (max-width: 700px) {
  .page-footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.page-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.page-footer__logo-text {
  font-family: var(--font-logo);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}
.page-footer__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  max-width: 240px;
}
.page-footer__col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.page-footer__links { display: flex; flex-direction: column; gap: 7px; }
.page-footer__links a {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.page-footer__links a:hover { color: var(--accent); }
.page-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-footer__bottom span {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}

/* ─── PLACEHOLDER DE IMAGEM ─────────────────────────────────── */
.img-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.img-placeholder--hatch {
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder__label {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.img-placeholder__hatch {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
}

/* ═══════════════════════════════════════════════════════════════
   SEÇÕES EXTRAS DA HOMEPAGE
   ═══════════════════════════════════════════════════════════════ */

/* ─── ARTIGO DA SEMANA ──────────────────────────────────────── */
.weekly-pick { margin-top: 40px; }
.weekly-pick__box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--bg-dark);
  border-radius: 10px;
  overflow: hidden;
  min-height: 280px;
}
@media (max-width: 800px) {
  .weekly-pick__box { grid-template-columns: 1fr; }
}
.weekly-pick__img {
  background: #1a1a1a;
  overflow: hidden;
}
.weekly-pick__img img { width: 100%; height: 100%; object-fit: cover; }
.weekly-pick__body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.weekly-pick__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}
.weekly-pick__title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.weekly-pick__excerpt {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 18px;
}
.weekly-pick__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #111;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  width: fit-content;
  transition: opacity 0.15s;
}
.weekly-pick__btn:hover { opacity: 0.85; }

/* ─── GUIAS POR PREÇO ──────────────────────────────────────── */
.price-guides { margin-top: 48px; }
.price-guides__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 700px) {
  .price-guides__grid { grid-template-columns: 1fr; }
}
.price-guide {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
}
.price-guide:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}
.price-guide__head {
  background: var(--bg-dark);
  padding: 16px 18px;
}
.price-guide__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}
.price-guide__range {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-top: 2px;
}
.price-guide__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.price-guide__list {
  counter-reset: pg;
  margin-bottom: 14px;
}
.price-guide__list li {
  counter-increment: pg;
  font-size: 13px;
  color: var(--text);
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--bg-soft);
}
.price-guide__list li:last-child { border-bottom: none; }
.price-guide__list li::before {
  content: counter(pg, decimal-leading-zero);
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.price-guide__link {
  margin-top: auto;
  background: var(--accent);
  color: #0a2e10;
  font-size: 12.5px;
  font-weight: 700;
  padding: 11px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.18s;
}
.price-guide__link:hover { background: var(--accent-dark); color: var(--white); }
.price-guide__link svg path { stroke: currentColor; }

/* ─── CURSOS RECOMENDADOS ─────────────────────────────────── */
.courses { margin-top: 48px; }
.courses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 800px) { .courses__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .courses__grid { grid-template-columns: 1fr; } }
.courses__grid--single { grid-template-columns: minmax(0, 340px); }
.courses__grid--pair { grid-template-columns: repeat(2, minmax(0, 340px)); }
@media (max-width: 600px) { .courses__grid--pair { grid-template-columns: minmax(0, 340px); } }
.course-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
}
.course-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.course-card__img {
  height: 140px;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}
.course-card__img img { width: 100%; height: 100%; object-fit: cover; }
.course-card__platform {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 3px;
  text-transform: uppercase;
}
.course-card__body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.course-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 6px;
}
.course-card__instructor {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.course-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.course-card__price {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-dark);
}
.course-card__price-old {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 6px;
  font-weight: 400;
}
.course-card__rating {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ─── SOBRE O AUTOR ──────────────────────────────────────── */
.about-author { margin-top: 48px; }
.about-author__box {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 32px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 700px) {
  .about-author__box { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .about-author__photo { margin: 0 auto; }
}
.about-author__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  overflow: hidden;
}
.about-author__photo img { width: 100%; height: 100%; object-fit: cover; }
.about-author__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.about-author__name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 4px;
}
.about-author__role {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.about-author__bio {
  font-size: 14.5px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-author__socials { display: flex; gap: 8px; flex-wrap: wrap; }
.about-author__social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 5px;
  background: var(--bg);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
}
.about-author__social:hover { background: var(--accent); color: #111; }

/* ═══════════════════════════════════════════════════════════════
   ARTIGOS — Classes .rr-* para páginas de review/artigo
   IMPORTANTE: nenhum formulário de comentário é incluído
   ═══════════════════════════════════════════════════════════════ */

.rr-wrap { font-family: 'Poppins', system-ui, sans-serif; }

/* ── Breadcrumb ── */
.rr-breadcrumb {
  background: #181c18;
  border-bottom: 2px solid rgba(48,223,71,0.28);
  padding: 9px 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  position: sticky;
  top: 60px;
  z-index: 99;
}
.rr-breadcrumb__inner { max-width: 1140px; margin: 0 auto; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.rr-breadcrumb a { color: rgba(255,255,255,0.62); transition: color .15s; }
.rr-breadcrumb a:hover { color: var(--accent); }
.rr-breadcrumb-sep { color: rgba(255,255,255,0.2); }

/* ── Hero ── */
/* Hero dimensionado para a barra de compartilhar cair no fim da primeira dobra.
   --rr-fold-off = navbar + breadcrumb + barra de compartilhar, medido por JS
   (share.js) em cada tela. O valor abaixo é só o fallback sem JS.
   min-height (e não height): se o título for longo demais o hero cresce em vez
   de cortar texto — nesse caso a barra fica logo abaixo da dobra. */
.rr-hero {
  position: relative;
  background: var(--bg-dark);
  padding: 0 24px;
  box-sizing: border-box;
  min-height: calc(100dvh - var(--rr-fold-off, 150px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* A foto cobre o hero inteiro; o texto vem por cima. Assim a área de imagem é
   a mesma em toda página, não importa o tamanho do título. */
.rr-hero__bg { position: absolute; inset: 0; z-index: 0; }
.rr-hero__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Degradê da esquerda: garante contraste do texto sem apagar a foto à direita. */
.rr-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(10,11,9,.95) 0%,
    rgba(10,11,9,.90) 38%,
    rgba(10,11,9,.58) 70%,
    rgba(10,11,9,.34) 100%);
}

.rr-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  padding: 44px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Limita a coluna de texto para ela não invadir a parte clara da foto. */
.rr-hero__inner > * { max-width: min(660px, 66%); }
.rr-hero__cats { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.rr-hero__date { font-size: 12px; color: rgba(255,255,255,.3); }
.rr-h1 {
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
  text-wrap: pretty;
}
.rr-hero__lead { font-size: 17px; color: rgba(255,255,255,.62); line-height: 1.65; max-width: 680px; margin-bottom: 24px; }
.rr-byline { display: flex; align-items: center; gap: 14px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.1); }
.rr-byline__av {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; color: #111;
  flex-shrink: 0;
  overflow: hidden;
}
.rr-byline__av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rr-byline__info { font-size: 13px; color: rgba(255,255,255,.45); }
.rr-byline__info strong { color: rgba(255,255,255,.8); font-weight: 600; }
/* .rr-hero__img saiu do template: a foto do hero agora é .rr-hero__bg. */

/* ── Pills / badges (font-weight 600) ── */
.rr-pill {
  display: inline-block;
  padding: 3px 11px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.rr-pill--green   { background: var(--accent); color: #111; }
.rr-pill--outline { border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.7); }
.rr-pill--blue    { background: #3b82f6; color: #fff; }
.rr-pill--yellow  { background: #f59e0b; color: #111; }
.rr-pill--purple  { background: #8b5cf6; color: #fff; }
.rr-pill--red     { background: #ef4444; color: #fff; }
.rr-pill--orange  { background: #f97316; color: #fff; }
.rr-pill--gray    { background: #6b7280; color: #fff; }

/* ── Share bar ── */
.rr-share { background: var(--white); border-bottom: 1px solid var(--border); padding: 10px 24px; }
.rr-share__inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rr-share__lbl { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.rr-sbtn { display: inline-flex; align-items: center; gap: 5px; padding: 5px 13px; border-radius: 4px; font-size: 12px; font-weight: 600; border: none; cursor: pointer; transition: opacity .15s; }
.rr-sbtn:hover { opacity: .82; }
.rr-sbtn--wa { background: #25d366; color: #fff; }
.rr-sbtn--tg { background: #229ed9; color: #fff; }
.rr-sbtn--tw { background: #000;    color: #fff; }
.rr-sbtn--fb { background: #1877f2; color: #fff; }
.rr-sbtn--rd { background: #ff4500; color: #fff; }
.rr-sbtn--pt { background: #e60023; color: #fff; }
.rr-sbtn--em { background: #ea4335; color: #fff; }

/* ── Layout ── */
/* 1280 - 48 de padding - 304 da sidebar - 52 de gap = 876px de conteudo.
   Era 1140, que dava 736 e apertava a tabela comparativa de 7 colunas. */
.rr-layout { max-width: 1280px; margin: 0 auto; padding: 44px 24px 72px; display: grid; grid-template-columns: 1fr 304px; gap: 52px; align-items: start; }
@media(max-width:960px){ .rr-layout{ grid-template-columns: 1fr; } .rr-side { display: none; } }

/* ── Conteúdo do artigo ── */
/* Evita overflow horizontal por palavras longas ou imagens sem max-width */
/* So `overflow-wrap`: quebra a palavra apenas quando ela realmente nao cabe.
   O `word-break: break-word` que estava aqui autorizava partir no meio mesmo
   havendo espaco, e era o que produzia "Basswoo d" nas celulas da tabela. */
.rr-art { overflow-wrap: break-word; min-width: 0; }
.rr-art figure, .art-img { max-width: 100%; }
.rr-art h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 44px 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--accent);
  line-height: 1.2;
}
.rr-art h3 { font-size: 18px; font-weight: 600; color: var(--text); margin: 28px 0 10px; }
.rr-art h4 { font-size: 15px; font-weight: 600; color: var(--text); margin: 20px 0 8px; }
.rr-art p { font-size: 15.5px; color: #333; line-height: 1.8; margin-bottom: 14px; }
.rr-art ul, .rr-art ol { margin: 10px 0 16px 22px; display: flex; flex-direction: column; gap: 6px; }
.rr-art li { font-size: 15px; color: #444; line-height: 1.65; }
.rr-art strong { font-weight: 600; color: #111; }
.rr-art hr { border: none; border-top: 2px solid var(--border); margin: 44px 0; }

/* ── Intro box ── */
.rr-intro {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin-bottom: 32px;
  font-size: 16px;
  color: #444;
  line-height: 1.75;
}

/* ── Tip / warning box ── */
.rr-box { display: flex; gap: 13px; align-items: flex-start; border-radius: 8px; padding: 16px 20px; margin: 22px 0; }
.rr-box--tip { background: var(--accent-soft); border: 1px solid var(--accent-soft-border); }
.rr-box--warn { background: #fffbf0; border: 1px solid #f0dfa0; }
.rr-box__icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.rr-box__body { font-size: 14.5px; color: #333; line-height: 1.7; }
.rr-box__body strong { color: var(--accent-dark); }

/* ── Dark box (CTAs, top picks, blocos de conversão) ─────────── */
.rr-box--dark {
  background: #111827;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 22px 24px;
  margin: 2rem 0;
  display: block; /* sobrepõe o flex do .rr-box */
}
.rr-box--dark .rr-box__body { color: #e5e7eb; }
.rr-box--dark .rr-box__body p { color: #e5e7eb; }
.rr-box--dark .rr-box__body strong { color: #fff; }
.rr-box--dark .rr-box__title {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}

/* Top-picks: lista de faixas de preço com CTA embutido */
.rr-picks-list { display: flex; flex-direction: column; }
.rr-picks-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.rr-picks-row:first-child { border-top: none; }
.rr-picks-row__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #9ca3af;
  display: block;
  margin-bottom: 3px;
}
.rr-picks-row__name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

/* CTA escuro genérico (título + subtexto + botões) */
.rr-box--dark-cta { text-align: center; }
.rr-box--dark-cta .rr-box__title { font-size: 1.1rem; }
.rr-box--dark-cta .rr-box__body { font-size: 0.92rem; margin-bottom: 16px; }

/* Variante com borda verde (destaque máximo) */
.rr-box--dark-accent { border-color: var(--accent); }

/* ── Product card (guitarra ou pedal) ── */
.rr-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin: 36px 0;
  box-shadow: 0 2px 16px rgba(0,0,0,.055);
}
.rr-card__head { background: var(--bg-dark); padding: 16px 22px; display: flex; align-items: center; gap: 14px; }
.rr-card__num {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.rr-card__titles { flex: 1; }
.rr-card__name {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.rr-card__sub { font-size: 11px; color: rgba(255,255,255,.4); letter-spacing: .08em; margin-top: 3px; font-weight: 600; }
.rr-card__body { padding: 22px; }
.rr-card__img { width: 100%; aspect-ratio: 16/9; border-radius: 6px; margin-bottom: 18px; overflow: hidden; background: #fff; border: 1px solid var(--border); }
/* Mostra a imagem de produto INTEIRA, centralizada sobre fundo branco —
   nada é cortado, independentemente da orientação (vertical, horizontal ou quadrada). */
.rr-card__img img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ── Lembrete visual de imagem faltando (404) ──────────────────────────
   Texto branco sobre fundo preto com o caminho exato do arquivo a salvar. */
.img-missing { position: relative; background: #000 !important; }
.img-missing::before { display: none !important; content: none !important; }
.img-missing::after,
.rr-rcard__img.img-missing::after,
.rr-sa__img.img-missing::after {
  content: "\1F4C1  SALVAR: " attr(data-arquivo);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 10px; box-sizing: border-box;
  color: #fff; background: #000;
  font: 600 12px/1.4 ui-monospace, "Cascadia Code", Consolas, monospace;
  word-break: break-all; white-space: normal;
}

.rr-rating { display: flex; align-items: center; gap: 7px; margin-bottom: 14px; }
.rr-stars { color: #f59e0b; letter-spacing: 1px; font-size: 15px; }
.rr-rating__num { font-size: 14px; font-weight: 600; }
.rr-rating__cnt { font-size: 12px; color: var(--text-muted); }

.rr-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 14px 0 18px; }
.rr-spec { background: var(--bg); border-radius: 5px; padding: 9px 13px; }
.rr-spec__lbl { font-size: 10px; font-weight: 600; color: var(--text-muted); letter-spacing: .1em; text-transform: uppercase; }
.rr-spec__val { font-size: 14px; font-weight: 600; color: var(--text); margin-top: 2px; }

.rr-pros { margin: 14px 0 18px; display: flex; flex-direction: column; gap: 5px; }
.rr-pros li { font-size: 13.5px; color: #333; list-style: none; display: flex; gap: 7px; align-items: flex-start; line-height: 1.55; }
.rr-pros li::before { content: "✅"; font-size: 12px; flex-shrink: 0; margin-top: 1px; }

/* ─── PROS / CONTRAS FLEX (rr-proscons + rr-pros + rr-cons) ── */
.rr-proscons { display: flex; flex-direction: column; gap: 12px; margin: 1.5rem 0; }
.rr-pros { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 8px; padding: 16px; }
.rr-cons { background: #fff1f2; border: 1px solid #fecdd3; border-radius: 8px; padding: 16px; }
@media(min-width: 600px) {
  .rr-proscons { flex-direction: row; }
  .rr-pros, .rr-cons { flex: 1; min-width: 0; }
}

/* ─── PROS / CONTRAS GRID ──────────────────────────────────── */
.rr-pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0; }
@media(max-width: 640px){ .rr-pc-grid { grid-template-columns: 1fr; } }
.rr-pc-pros { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; padding: 16px 18px; }
.rr-pc-contras { background: #fff1f2; border: 1px solid #fecdd3; border-radius: 10px; padding: 16px 18px; }
.rr-pc-title { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid currentColor; }
.rr-pc-pros .rr-pc-title { color: #166534; border-color: #86efac; }
.rr-pc-contras .rr-pc-title { color: #9f1239; border-color: #fca5a5; }
.rr-pc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.rr-pc-list li { font-size: 13.5px; line-height: 1.5; display: flex; gap: 8px; align-items: flex-start; }
.rr-pc-list li > span { flex-shrink: 0; font-size: 13px; margin-top: 1px; }
.rr-pc-pros .rr-pc-list li { color: #166534; }
.rr-pc-pros .rr-pc-list li > span { color: #22c55e; }
.rr-pc-contras .rr-pc-list li { color: #9f1239; }
.rr-pc-contras .rr-pc-list li > span { color: #ef4444; }

.rr-ml-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #3483fa; color: #fff;
  padding: 12px 24px; border-radius: 6px;
  font-size: 14px; font-weight: 700;
  letter-spacing: .02em;
  border: none; cursor: pointer;
  transition: opacity .2s, transform .2s;
  text-decoration: none; line-height: 1.4;
}
.rr-ml-btn:hover { opacity: .85; transform: translateY(-2px); }

.rr-cta-group {
  display: flex; gap: 12px; margin-top: 18px;
}
.rr-cta-group > .rr-ml-btn {
  flex: 1 1 0%;
  min-width: 0;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .rr-cta-group { flex-direction: column; gap: 8px; }
  .rr-cta-group > .rr-ml-btn { width: 100%; }
}

/* Tela baixa (notebook 768px e afins): aperta o hero para a barra de
   compartilhar ainda caber na primeira dobra. */
@media (max-height: 860px) {
  .rr-hero__inner { padding: 28px 0; }
  .rr-hero__cats  { margin-bottom: 10px; }
  .rr-hero__lead  { margin-bottom: 14px; }
}

/* Mobile: o texto ocupa a largura toda, então o degradê vira vertical. */
@media (max-width: 900px) {
  .rr-hero__inner > * { max-width: 100%; }
  .rr-hero__bg::after {
    background: linear-gradient(180deg,
      rgba(10,11,9,.82) 0%,
      rgba(10,11,9,.90) 45%,
      rgba(10,11,9,.96) 100%);
  }
}

/* ── Tabela comparativa ── */
.rr-tbl-wrap { overflow-x: auto; margin: 24px 0; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.rr-tbl { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 560px; }
.rr-tbl thead th { background: var(--bg-dark); color: #fff; padding: 12px 14px; text-align: left; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.rr-tbl tbody td { padding: 11px 14px; border-bottom: 1px solid var(--border); background: #fff; vertical-align: middle; }
.rr-tbl tbody tr:last-child td { border-bottom: none; }
.rr-tbl tbody tr:hover td { background: #f8f6f2; }
.rr-badge { display: inline-block; padding: 2px 8px; border-radius: 3px; font-size: 10px; font-weight: 600; letter-spacing: .06em; white-space: nowrap; transition: opacity .2s, transform .2s; }
a:hover .rr-badge, a .rr-badge:hover { opacity: .82; transform: translateY(-1px); }
.rr-tbl a { text-decoration: none; }
.rr-tbl a:hover { text-decoration: none; }
.rr-badge--green { background: var(--accent); color: #111; }
.rr-badge--yellow { background: #f59e0b; color: #111; }
.rr-badge--blue { background: #3b82f6; color: #fff; }
.rr-badge--purple { background: #a855f7; color: #fff; }

/* ── FAQ ── */
.rr-faq { border: 1px solid var(--border); border-radius: 8px; background: #fff; margin-bottom: 10px; overflow: hidden; }
.rr-faq__q { padding: 16px 20px; font-size: 15px; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.rr-faq__q:hover { background: #f8f6f2; }
.rr-faq__chev { flex-shrink: 0; transition: transform .25s; }
.rr-faq__a { padding: 0 20px 16px; font-size: 14.5px; color: #444; line-height: 1.75; border-top: 1px solid var(--border); padding-top: 14px; display: none; }
.rr-faq.is-open .rr-faq__chev { transform: rotate(180deg); }
.rr-faq.is-open .rr-faq__a { display: block; }

/* ── Cards relacionados ── */
.rr-related { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:600px){ .rr-related{ grid-template-columns: 1fr; } }
.rr-rcard { display: block; background: #fff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: transform .18s, box-shadow .18s; }
.rr-rcard:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.rr-rcard__img {
  /* as thumbs sao 800x260 e tem texto embutido na imagem. Com altura fixa o
     object-fit: cover cortava as laterais (e o texto) conforme o card
     estreitava. Travando a proporcao, a thumb inteira sempre aparece. */
  aspect-ratio: 800 / 260;
  overflow: hidden;
  background: linear-gradient(160deg, #1e3028 0%, #0d1610 100%);
  position: relative;
}
.rr-rcard__img::before {
  content: '🎸';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  line-height: 1;
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}
.rr-rcard__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(48,223,71,0.11) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}
.rr-rcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  /* Sem zoom no hover: as thumbs tem texto embutido na imagem e o scale
     estourava esse texto para fora da borda do card. */
}
.rr-rcard__body { padding: 12px 14px 14px; }
.rr-rcard__cat { display: inline-block; background: var(--accent); color: #111; font-size: 10px; font-weight: 600; padding: 1px 7px; border-radius: 2px; margin-bottom: 6px; }
.rr-rcard__title { font-size: 13.5px; font-weight: 600; line-height: 1.35; color: var(--text); }

/* ── Sidebar ── */
.rr-side { display: flex; flex-direction: column; gap: 18px; } /* sticky/max-height definidos em SIDEBAR STICKY FIX acima */
.rr-sw { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 18px; flex-shrink: 0; }
/* .rr-sw--toc-long escondia o "Mais Lidos" a forca numa pagina so. Quem decide
   o que cabe na sidebar agora e' o sidebar.js, entao a regra saiu daqui. */
.rr-sw__title { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; color: var(--text); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); }
.rr-toc { display: flex; flex-direction: column; gap: 1px; }
.rr-toc a { font-size: 12.5px; color: var(--text-muted); padding: 5px 8px; border-radius: 4px; display: flex; gap: 8px; align-items: baseline; transition: all .15s; }
.rr-toc a:hover { background: var(--bg); color: var(--accent-dark); }
.rr-toc__n { font-size: 10px; font-weight: 700; color: var(--accent); flex-shrink: 0; }
.rr-sa { display: flex; gap: 10px; padding: 9px 8px; border-bottom: 1px solid var(--border); border-radius: 6px; margin: 0 -8px; transition: background .15s; }
.rr-sa:last-child { border-bottom: none; padding-bottom: 0; }
.rr-sa:hover { background: var(--bg); }
.rr-sa:hover .rr-sa__title { color: var(--accent-dark); }
.rr-sa__img {
  width: 58px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3028 0%, #0d1610 100%);
  position: relative;
}
.rr-sa__img::before {
  content: '🎵';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  line-height: 1;
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
}
.rr-sa__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}
.rr-sa__title { font-size: 12.5px; font-weight: 500; color: var(--text); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color .15s; }
.rr-sa__meta { font-size: 11px; color: var(--text-muted); margin-top: 3px; }
.rr-scta { background: var(--bg-dark); border-radius: 8px; padding: 18px; text-align: center; }
.rr-scta__title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.rr-scta__text { font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 14px; line-height: 1.5; }
.rr-scta__btn { display: block; background: var(--accent); color: #111; padding: 9px; border-radius: 5px; font-size: 12px; font-weight: 600; letter-spacing: .06em; transition: opacity .15s; }
.rr-scta__btn:hover { opacity: .85; }

/* ═══════════════════════════════════════════════════════════════
   CLASSES COMPLEMENTARES — adicionadas na varredura de 2026-05
   Todas as classes usadas nos HTMLs que faltavam no CSS.
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Tipografia de artigo (rr-h2 / rr-p / rr-hero-img) ─── */
.rr-h2 { font-size: 1.35rem; font-weight: 700; color: var(--text); border-left: 4px solid var(--accent); padding-left: 12px; margin: 2rem 0 1rem; line-height: 1.3; }
.rr-p  { font-size: 1rem; line-height: 1.75; color: #374151; margin: 0 0 16px; }
.rr-hero-img { background: #1a1a1a; width: 100%; aspect-ratio: 16/7; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; overflow: hidden; }
.rr-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── 2. Aliases hyphen → BEM (rr-card-*, rr-spec-*) ─────────── */
/* Algumas páginas usam hífen simples em vez de __; ambos funcionam */
.rr-card-header { background: #1a1a1a; padding: 16px; display: flex; align-items: center; gap: 12px; }
.rr-card-body   { padding: 22px; }
.rr-card-img    { width: 100%; height: 220px; border-radius: 6px; margin-bottom: 18px; overflow: hidden; background: #1a1a1a; }
.rr-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rr-spec-label  { font-size: 10px; font-weight: 600; color: var(--text-muted); letter-spacing: .1em; text-transform: uppercase; }
.rr-spec-val    { font-size: 14px; font-weight: 600; color: var(--text); margin-top: 2px; }

/* ── 3. Tabela responsiva (rr-table-* / rr-tcard-*) ─────────── */
/* rr-table-wrap e rr-table são aliases de rr-tbl-wrap / rr-tbl  */
.rr-table-wrap  { overflow-x: auto; margin: 24px 0; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.rr-table       { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 560px; }
.rr-table thead th { background: var(--bg-dark); color: #fff; padding: 12px 14px; text-align: left; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.rr-table tbody td { padding: 11px 14px; border-bottom: 1px solid var(--border); background: #fff; vertical-align: middle; }
.rr-table tbody tr:last-child td { border-bottom: none; }
.rr-table tbody tr:hover td { background: #f8f6f2; }
/* Cards mobile para tabelas responsivas */
.rr-table-cards { display: flex; flex-direction: column; gap: 12px; }
.rr-tcard { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.rr-tcard-head { background: #1a1a1a; color: #fff; padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.rr-tcard-body { padding: 12px 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; }
.rr-tcard-field { display: flex; flex-direction: column; gap: 2px; }
.rr-tcard-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; font-weight: 600; letter-spacing: .06em; }
.rr-tcard-val   { font-size: 0.92rem; font-weight: 600; color: var(--text); }
/* Em desktop (≥600px): mostra tabela, oculta cards */
@media (min-width: 600px) {
  .rr-table-cards { display: none; }
  .rr-table-wrap .rr-table { display: table; }
}

/* ── 4. FAQ accordion (details/summary — faq-item/q/a) ───────── */
.faq-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 8px; background: var(--white); overflow: hidden; }
.faq-q { padding: 15px 16px; font-weight: 600; color: var(--text); font-size: 0.97rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; gap: 8px; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: "∨"; color: var(--text-muted); flex-shrink: 0; transition: transform .2s; }
details[open] > .faq-q::after { transform: rotate(180deg); }
.faq-a { padding: 0 16px 16px; color: #555; font-size: 0.95rem; line-height: 1.7; background: #f9fafb; }

/* ── 5. Cards de comparação (comp-grid / comp-card) ──────────── */
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 1.5rem 0; }
@media (max-width: 600px) { .comp-grid { grid-template-columns: 1fr; } }
.comp-card { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: #fff; }
.comp-card__head { padding: 12px 16px; font-weight: 700; font-size: 0.95rem; color: #fff; }
.comp-card__head--verde { background: #166534; }
.comp-card__head--azul  { background: #1d4ed8; }
.comp-card__body { padding: 14px 16px; }
.comp-card__body ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.comp-card__body li { font-size: 0.9rem; color: #374151; display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.comp-card__body li span { color: var(--accent); flex-shrink: 0; font-weight: 700; }

/* ── 6. Paleta de cores de guitarra (cores-grid / cor-item) ─── */
.cores-grid { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 20px; }
.cor-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text); font-weight: 500; }
.cor-item__dot { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 1px 4px rgba(0,0,0,.25); }

/* ── 7. Cards de versão de guitarra (versoes-grid) ───────────── */
.versoes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 1.5rem 0; }
@media (max-width: 600px) { .versoes-grid { grid-template-columns: 1fr; } }
.versao-card { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: #fff; }
.versao-card__head { padding: 11px 16px; font-weight: 700; font-size: 0.9rem; color: #fff; letter-spacing: .02em; }
.versao-card__head--sss { background: #1d4ed8; }
.versao-card__head--hss { background: #7c3aed; }
.versao-card__body { padding: 13px 16px; font-size: 0.9rem; color: #374151; line-height: 1.65; }

/* ── 8. Grid de efeitos (guitarra com efeitos embutidos) ─────── */
.fx-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; margin: 1.5rem 0; }
.fx-item { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 14px 12px; text-align: center; }
.fx-item__icon { font-size: 1.6rem; display: block; margin-bottom: 6px; }
.fx-item__name { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.fx-item__desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

/* ── 9. Cards de tipo de pedal (tipos-grid) ──────────────────── */
.tipos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; margin: 1.5rem 0; }
.tipo-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.tipo-card__title { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.tipo-card__desc { font-size: 0.88rem; color: #374151; line-height: 1.6; margin-bottom: 8px; }
.tipo-card__exemplos { font-size: 0.78rem; color: var(--text-muted); font-style: italic; }

/* ── 10. Badges de impacto (alto / médio / baixo) ────────────── */
.badge-alto   { display: inline-block; background: #dc2626; color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 3px; letter-spacing: .06em; white-space: nowrap; }
.badge-medio  { display: inline-block; background: #d97706; color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 3px; letter-spacing: .06em; white-space: nowrap; }
.badge-baixo  { display: inline-block; background: #6b7280; color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 3px; letter-spacing: .06em; white-space: nowrap; }

/* ── 11. Tabela de impacto ───────────────────────────────────── */
/* impact-table: mesmo estilo do rr-tbl */
.impact-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 560px; }
.impact-table thead th { background: var(--bg-dark); color: #fff; padding: 12px 14px; text-align: left; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.impact-table tbody td { padding: 11px 14px; border-bottom: 1px solid var(--border); background: #fff; vertical-align: middle; }
.impact-table tbody tr:last-child td { border-bottom: none; }
.impact-table tbody tr:hover td { background: #f8f6f2; }

/* ── 12. Tabela comparativa mobile/desktop (cmp-*) ───────────── */
.cmp-tbl-wrap { display: none; overflow-x: auto; }
.cmp-mobile   { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 600px) {
  .cmp-tbl-wrap { display: block; }
  .cmp-mobile   { display: none; }
}

/* ── 13. Pills de variante de guitarra (rr-variants) ─────────── */
.rr-variants { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.rr-variant-pill { display: inline-flex; align-items: center; gap: 6px; background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 5px 12px; font-size: 12px; font-weight: 600; color: var(--text); }
.rr-variant-pill__dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ── 14. Imagem de artigo (art-img) ──────────────────────────── */
.art-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; display: block; margin: 1rem 0; }

/* Figura editorial no corpo do texto (imagem + legenda) */
.rr-fig { margin: 30px 0; }
.rr-fig img {
  width: 100%;
  height: auto;          /* anula o atributo height= do HTML, senão o aspect-ratio é ignorado */
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  background: var(--bg-dark);
}
.rr-fig figcaption {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-top: 9px;
  padding-left: 11px;
  border-left: 3px solid var(--accent);
}
/* Variante para FOTO DE PRODUTO no corpo: não corta, respeita a proporção original.
   Use quando a proporção da foto foge do 16/9 e o corte 'cover' comeria parte do
   produto — nos dois sentidos:
     · mais ALTA que 16/9  → amplificador, cubo, pedal em pé
     · mais LARGA que 16/9 → foto de fabricante em faixa (ex.: 1200x427), onde o
       corte lateral levaria o headstock junto
   Instrumento de corda em foto vertical NÃO entra aqui: gire para o padrão
   horizontal com _orientar-imagem.ps1 e use a .rr-fig normal. */
.rr-fig--produto img {
  aspect-ratio: auto;
  object-fit: contain;
  /* width:auto faz a caixa ABRAÇAR a foto. Sem isso a img ocupa a coluna
     inteira e a foto vertical fica pintada no meio, com a borda longe dela. */
  width: auto;
  max-width: 100%;
  max-height: 460px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--border);
}

@media (max-width: 640px) {
  .rr-fig { margin: 22px 0; }
  .rr-fig figcaption { font-size: 12.5px; }
  .rr-fig--produto img { max-height: 320px; }
}

/* ── 15. Política de Privacidade (pp-*) ──────────────────────── */
.pp-toc { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 18px 22px; margin-bottom: 32px; }
.pp-toc__title { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); }
.pp-toc ol { padding-left: 18px; margin: 0; display: flex; flex-direction: column; gap: 5px; }
.pp-toc ol li a { font-size: 13px; color: var(--accent-dark); font-weight: 500; }
.pp-toc ol li a:hover { text-decoration: underline; }
.pp-updated { display: inline-flex; align-items: center; gap: 6px; background: var(--accent-soft); border: 1px solid var(--accent-soft-border); border-radius: 5px; padding: 5px 13px; font-size: 12px; color: var(--accent-dark); font-weight: 600; margin-bottom: 20px; }
.pp-cookie-card { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-bottom: 10px; }
.pp-cookie-card__head { background: var(--bg-dark); padding: 11px 16px; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: #fff; }
.pp-cookie-card__body { padding: 13px 16px; font-size: 14px; color: #444; line-height: 1.7; }
.pp-contact { background: var(--bg-dark); border-radius: 8px; padding: 22px 24px; margin-top: 40px; }
.pp-contact__title { font-size: 16px; font-weight: 700; color: var(--accent); margin-bottom: 10px; }
.pp-contact p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 6px; }
.pp-contact a { color: var(--accent); font-weight: 600; }
.pp-contact__meta { font-size: 12px; color: rgba(255,255,255,.3); margin-top: 12px; }

/* ── Footer novo (ftr-*) ─────────────────────────────────────── */
.ftr-link { position: relative; display: block; width: fit-content; font-size: 12.5px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.15s; margin-bottom: 7px; }
.ftr-link:last-child { margin-bottom: 0; }
.ftr-link:hover { color: #30df47; }
/* mesmo sublinhado do menu: cresce da esquerda para a direita */
.ftr-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.ftr-link:hover::after,
.ftr-link:focus-visible::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .ftr-link::after { transition: none; }
}
.ftr-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 28px; }
@media (max-width: 860px) {
  .ftr-grid { grid-template-columns: 1fr 1fr; }
  .ftr-grid > div:first-child { grid-column: span 2; }
}
@media (max-width: 480px) {
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .ftr-grid > div:first-child { grid-column: span 2; }
}

/* ── Top Picks grid (rr-picks-grid + rr-pick-card) ────────────── */
.rr-picks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin: 1.2rem 0 2rem; }
.rr-pick-card { background: #1a1a1a; border-radius: 12px; padding: 18px; text-align: center; border: 2px solid #22c55e; display: flex; flex-direction: column; justify-content: space-between; }
.rr-pick-card--blue   { border-color: #3b82f6; }
.rr-pick-card--purple { border-color: #8b5cf6; }
.rr-pick-card--yellow { border-color: #f59e0b; }
.rr-pick-card__label  { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; color: #22c55e; margin-bottom: 6px; }
.rr-pick-card--blue   .rr-pick-card__label { color: #3b82f6; }
.rr-pick-card--purple .rr-pick-card__label { color: #8b5cf6; }
.rr-pick-card--yellow .rr-pick-card__label { color: #f59e0b; }
.rr-pick-card__name   { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.rr-pick-card__rating { color: #f59e0b; font-size: 0.88rem; margin-bottom: 10px; }
.rr-pick-card .rr-ml-btn  { font-size: 0.82rem; padding: 8px 14px; width: 100%; }

/* ── Barra de urgência ──────────────────────────────────────────── */
.rr-urgency-bar { background: #1a1a1a; border-top: 3px solid #30df47; color: #fff; text-align: center; padding: 10px 16px; font-size: 0.84rem; font-weight: 600; letter-spacing: 0.02em; }
.rr-urgency-bar__highlight { color: #30df47; }

/* ── Tabela — coluna de estrelas/nota ───────────────────────────── */
.rr-tbl__stars { color: #f59e0b; font-weight: 600; }

/* ── Link inline no corpo do texto ─────────────────────────────── */
.rr-inline-link { color: var(--accent-dark); font-weight: 600; text-decoration: none; }
.rr-inline-link:hover { text-decoration: underline; }

/* ── CTA dark intermediário ─────────────────────────────────────── */
.rr-dark-cta { background: #1a1a1a; border-radius: 14px; padding: 24px 22px; margin: 2rem 0; text-align: center; }
.rr-dark-cta__label { color: #30df47; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 8px; }
.rr-dark-cta__text { color: #ffffff !important; font-size: 0.95rem; margin: 0 0 18px; line-height: 1.5; }

/* ── rr-rcard__cat — variações de cor ──────────────────────────── */
.rr-rcard__cat--blue   { background: #3b82f6; color: #fff; }
.rr-rcard__cat--purple { background: #a855f7; color: #fff; }
.rr-rcard__cat--yellow { background: #9c7a20; color: #fff; }
.rr-rcard__cat--green  { background: #5a8c3a; color: #fff; }

/* ── Footer — estrutura e conteúdo ─────────────────────────────── */
footer { font-family: 'Poppins', system-ui, sans-serif; }
.ftr-inner { background: #111210; padding: 40px 24px 22px; }
.ftr-inner__wrap { max-width: 1200px; margin: 0 auto; }
.ftr-brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.ftr-brand__name { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: 0.06em; color: #fff; }
.ftr-desc { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.65; max-width: 260px; margin: 0; }
.ftr-col__title { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-bottom: 10px; text-transform: uppercase; }
.ftr-col__links { display: flex; flex-direction: column; gap: 7px; }
.ftr-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 18px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px; }
.ftr-bottom__copy { font-size: 11px; color: rgba(255,255,255,0.22); }
.ftr-bottom__afil { font-size: 11px; color: rgba(255,255,255,0.22); }
.ftr-bottom__afil a { color: #30df47; text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════
   MOBILE FIXES — correções de responsividade (2026-06)
   ═══════════════════════════════════════════════════════════════ */

/* ── Artigo hero — padding reduzido no mobile ─────────────────── */
@media (max-width: 600px) {
  .rr-hero { padding: 32px 16px 0; }
  .rr-hero__inner { max-width: 100%; }
  .rr-h1 { font-size: clamp(26px, 8vw, 40px); }
  .rr-hero__lead { font-size: 15px; }
}

/* ── Layout de artigo — coluna única no mobile ────────────────── */
@media (max-width: 960px) {
  .rr-layout { padding: 28px 16px 48px; gap: 32px; }
}
@media (max-width: 600px) {
  .rr-layout { padding: 20px 16px 40px; }
}

/* ── Placeholder da busca: oculto no mobile ──────────────────── */
@media (max-width: 768px) {
  .nav-search__input::placeholder { color: transparent; }
  .nav-search__input:focus::placeholder { color: rgba(255,255,255,0.35); }
}

/* ── Breadcrumb e share bar ───────────────────────────────────── */
@media (max-width: 600px) {
  .rr-breadcrumb { padding: 7px 16px; }
  .rr-share { padding: 8px 16px; }
  .rr-share__inner { gap: 6px; }
  .rr-sbtn { padding: 4px 10px; font-size: 11px; }
}

/* ── Corpo do artigo ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .rr-art h2 { font-size: 22px; padding-left: 10px; margin: 32px 0 12px; }
  .rr-art h3 { font-size: 17px; }
  .rr-art p  { font-size: 15px; }
  .rr-intro  { padding: 16px 18px; font-size: 15px; }
}

/* ── Product card ─────────────────────────────────────────────── */
@media (max-width: 600px) {
  .rr-card__head { padding: 12px 16px; }
  .rr-card__num  { font-size: 26px; width: 36px; }
  .rr-card__name { font-size: 17px; }
  .rr-card__body { padding: 16px; }
  .rr-card__img  { aspect-ratio: 16/9; height: auto; }
  .rr-specs { grid-template-columns: 1fr 1fr; gap: 6px; }
}

/* ── CTA group de botões ──────────────────────────────────────── */
@media (max-width: 560px) {
  .rr-cta-group { flex-direction: column; gap: 8px; }
  .rr-cta-group > .rr-ml-btn { width: 100%; }
}

/* ── Tabela comparativa — oculta wrapper inteiro no mobile ───────── */
@media (max-width: 600px) {
  /* Oculta o wrapper completo da tabela */
  .rr-tbl-wrap,
  .rr-table-wrap { display: none; }

  /* Oculta o título (h2) que vem imediatamente antes da tabela */
  .rr-art h2:has(+ .rr-tbl-wrap),
  .rr-art h2:has(+ .rr-table-wrap),
  h2:has(+ .rr-tbl-wrap),
  h2:has(+ .rr-table-wrap) { display: none; }
}

/* ── FAQ — sempre inicia recolhido ──────────────────────────────── */
/* details sem atributo open: fechado por padrão no HTML */
/* .rr-faq sem .is-open: .rr-faq__a já tem display:none no CSS base */
/* Garantia extra: nunca abrir automaticamente */
details.faq-item:not([open]) > .faq-a { display: none; }

/* ── Hero da homepage ─────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero { padding-top: 20px; }
  .hero__featured { aspect-ratio: 3/4; }
  .hero__content { padding: 16px; }
  .hero__badges { margin-bottom: 12px; }
  .hero__title { font-size: clamp(22px, 6vw, 32px); }
  .hero__excerpt { display: none; }
  #cat-grid { padding: 0 16px; }
}

/* ── Category strip ───────────────────────────────────────────── */
@media (max-width: 480px) {
  .category-card { padding: 10px 12px; gap: 8px; }
  .category-card__icon { font-size: 18px; }
  .category-card__label { font-size: 13px; }
}

/* ── Section header ───────────────────────────────────────────── */
@media (max-width: 600px) {
  .section-header { margin-top: 28px; margin-bottom: 14px; }
  .section-header__title { font-size: 22px; }
}

/* ── Mais lidos ───────────────────────────────────────────────── */
@media (max-width: 700px) {
  .mais-lidos__box { padding: 20px 16px 24px; }
  .mais-lidos__heading { font-size: 26px; }
}

/* ── CTA iniciantes ───────────────────────────────────────────── */
@media (max-width: 700px) {
  .cta-iniciantes__box { padding: 24px 18px; }
  .cta-iniciantes__title { font-size: 23px; }
}

/* ── Weekly pick ──────────────────────────────────────────────── */
@media (max-width: 800px) {
  .weekly-pick__body { padding: 24px 20px; }
  .weekly-pick__title { font-size: 22px; }
}

/* ── Footer mobile ────────────────────────────────────────────── */
@media (max-width: 480px) {
  .ftr-inner { padding: 28px 16px 18px; }
  .ftr-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ── Artigos relacionados ─────────────────────────────────────── */
@media (max-width: 600px) {
  .rr-related { grid-template-columns: 1fr; }
}

/* ── FAQ accordion ────────────────────────────────────────────── */
@media (max-width: 600px) {
  .rr-faq__q { font-size: 14px; padding: 14px 16px; }
  .faq-q { font-size: 0.9rem; padding: 12px 14px; }
}

/* ── Pick cards ───────────────────────────────────────────────── */
@media (max-width: 480px) {
  .rr-picks-grid { grid-template-columns: 1fr; }
}

/* ── Price guides ─────────────────────────────────────────────── */
@media (max-width: 700px) {
  .price-guides__grid { grid-template-columns: 1fr; }
}

/* ── Courses ──────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .courses__grid { grid-template-columns: 1fr; }
}

/* ── About author ─────────────────────────────────────────────── */
@media (max-width: 700px) {
  .about-author__box { padding: 24px 20px; }
}

/* ── Prevent any element from overflowing viewport ────────────── */
@media (max-width: 600px) {
  .rr-box--dark { padding: 16px; }
  .rr-picks-row { flex-direction: column; align-items: flex-start; }
  .rr-picks-row__name { font-size: 0.9rem; }
  .mais-lidos__num { font-size: 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   PÁGINAS DE CATEGORIA — v2
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero da categoria ──────────────────────────────────────── */
.cat-hero {
  background: var(--bg-dark);
  padding: 52px 24px 58px;
  text-align: center;
  border-bottom: 2px solid rgba(48,223,71,0.18);
  position: relative;
  overflow: hidden;
}
.cat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(48,223,71,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cat-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cat-hero__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--accent);
  background: rgba(48,223,71,0.09);
  border: 1px solid rgba(48,223,71,0.24);
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.cat-hero__icon {
  font-size: 44px;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
  filter: drop-shadow(0 0 14px rgba(48,223,71,0.22));
}
.cat-hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 7vw, 62px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 14px;
}
.cat-hero__title span { color: var(--accent); }
.cat-hero__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 24px;
}
.cat-hero__count {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(48,223,71,0.1);
  border: 1px solid rgba(48,223,71,0.28);
  border-radius: 20px;
  padding: 7px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .03em;
}

/* ── Grid de artigos da categoria ────────────────────────────── */
.cat-section { padding-top: 48px; padding-bottom: 84px; padding-left: 24px; padding-right: 24px; }
@media (max-width: 480px) {
  .cat-section { padding-left: 16px; padding-right: 16px; }
}
.cat-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--border);
}
.cat-grid-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.cat-grid-count {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
#cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 960px) { #cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { #cat-grid { grid-template-columns: 1fr; } }

/* ── Placeholder colorido dos cards ──────────────────────────── */
.cat-card-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  transition: transform 0.3s;
}
.article-card:hover .cat-card-placeholder { transform: scale(1.06); }

/* ── Empty state ─────────────────────────────────────────────── */
.cat-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.cat-empty__icon {
  display: block;
  font-size: 40px;
  margin-bottom: 14px;
  opacity: 0.55;
}
.cat-empty__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.cat-empty p { font-size: 15px; color: var(--text-muted); }

/* ─── BUSCA — pill que expande + dropdown com resultados ──────────
   Portado do projeto Melhores Amplificadores. O destaque usa texto
   escuro porque o --accent daqui é verde claro: branco sobre ele fica
   ilegível.                                                          */
.search-wrap { position: relative; width: 200px; height: 36px; flex-shrink: 0; }
.search-trigger {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  padding: 7px 14px; border-radius: 999px; font-size: 13px;
  color: rgba(255,255,255,0.65); width: 200px; cursor: text; z-index: 10;
  transition: width 300ms ease, border-color 200ms ease, background 150ms ease;
}
.search-trigger:focus-within {
  border-color: var(--accent); background: rgba(255,255,255,0.14); width: 280px;
}
.search-trigger svg { flex-shrink: 0; color: rgba(255,255,255,0.55); }
.search-input {
  flex: 1; background: transparent; border: none; outline: none;
  color: #fff; font-size: 13px; font-family: var(--font-body); min-width: 0;
}
.search-input::placeholder { color: rgba(255,255,255,0.5); }
.search-dropdown {
  display: none; position: absolute; top: calc(100% + 10px); right: 0;
  width: 380px; max-width: min(380px, calc(100vw - 32px));
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  overflow: hidden; z-index: 300;
}
.search-dropdown.is-open { display: block; }
.search-results { max-height: 380px; overflow-y: auto; }
.search-results::-webkit-scrollbar { width: 4px; }
.search-results::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.18); border-radius: 2px; }
.search-item {
  display: flex; align-items: center; gap: 12px; padding: 11px 16px;
  text-decoration: none; color: var(--text);
  border-bottom: 1px solid var(--border); transition: background 120ms ease;
}
.search-item:hover, .search-item:focus { background: var(--bg-soft); text-decoration: none; outline: none; }
.search-item:last-child { border-bottom: none; }
.search-item-tag {
  font-family: ui-monospace, 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.1em;
  color: var(--accent-dark); background: var(--accent-soft);
  padding: 3px 7px; border-radius: 3px; white-space: nowrap; flex-shrink: 0;
}
.search-item-title { font-size: 13px; font-weight: 600; line-height: 1.3; }
.search-empty {
  padding: 28px 16px; text-align: center; font-family: ui-monospace, monospace;
  font-size: 11px; color: var(--text-muted); letter-spacing: 0.08em;
}
.search-group-label {
  padding: 8px 16px 4px; font-family: ui-monospace, monospace; font-size: 9px;
  letter-spacing: 0.14em; color: var(--text-muted); background: rgba(0,0,0,0.03);
}
.search-hl { background: var(--accent); color: #0d0f0c; border-radius: 2px; }

/* ── Busca no celular ────────────────────────────────────────────
   A pill não cresce sobre o logo: ela vira só o botão da lupa, e o
   campo abre numa faixa própria de largura total abaixo da navbar.
   O <input> continua filho do .search-trigger no HTML (então clique
   fora e foco seguem funcionando) — só é reposicionado com fixed.  */
@media (max-width: 768px) {
  /* margin-left:auto come a folga do space-between da navbar e encosta a
     lupa no menu — sem isso ela fica sozinha no meio da barra. */
  .search-wrap { width: 40px; flex: 0 0 40px; margin-left: auto; }

  /* transform cria bloco de contenção e faria o position:fixed do campo
     se ancorar na pill (40px) em vez de na tela. Centraliza sem transform. */
  .search-trigger,
  .search-trigger:focus-within {
    width: 40px;
    padding: 7px;
    justify-content: center;
    top: 0;
    bottom: 0;
    height: auto;
    transform: none;
  }
  .search-wrap.is-open .search-trigger {
    border-color: var(--accent);
    background: rgba(255,255,255,0.16);
  }

  /* fechado: só a lupa aparece */
  .search-input { display: none; }

  /* aberto: o campo vira a faixa abaixo da navbar (sticky, 60px) */
  .search-wrap.is-open .search-input {
    display: block;
    position: fixed;
    top: 68px;
    left: 12px;
    right: 12px;
    width: auto;
    height: 44px;
    padding: 0 18px;
    background: #1b1d19;
    border: 1px solid var(--accent);
    border-radius: 999px;
    color: #fff;
    font-size: 15px;
    z-index: 401;
  }

  .search-dropdown {
    position: fixed;
    top: 64px;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
    z-index: 400;
  }
  /* com a faixa aberta, os resultados descem para caber abaixo dela */
  .search-wrap.is-open .search-dropdown { top: 124px; }
}
/* ─── CARROSSEL DE FOTOS NO CARD DE PRODUTO ──────────────────────
   O deslize é nativo (scroll-snap). Sem JS ainda dá para arrastar no
   celular; o carrossel.js só acrescenta setas, bolinhas e teclado.
   O container reaproveita .rr-card__img (proporção, borda, fundo).  */
.rr-carousel { position: relative; }

.rr-carousel__track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;              /* Firefox */
}
.rr-carousel__track::-webkit-scrollbar { display: none; }

.rr-carousel__track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  scroll-snap-align: center;
  display: block;
}

/* Setas e bolinhas só existem quando o JS confirmou 2+ fotos */
.rr-carousel__nav,
.rr-carousel__dots { display: none; }
.rr-carousel.is-carousel .rr-carousel__nav,
.rr-carousel.is-carousel .rr-carousel__dots { display: flex; }

.rr-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: var(--accent-dark);
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: background .15s, color .15s, opacity .15s;
  z-index: 2;
}
/* hover preenche de verde: reforça que o botão é clicável sem mudar o tamanho */
.rr-carousel__nav:hover:not(:disabled) { background: var(--accent); color: #0d2b13; }
.rr-carousel__nav:disabled { opacity: .3; cursor: default; }
.rr-carousel__nav--prev { left: 8px; }
.rr-carousel__nav--next { right: 8px; }

.rr-carousel__dots {
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.rr-carousel__dot {
  width: 7px; height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.25);
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.rr-carousel__dot.is-on { background: var(--accent-dark); transform: scale(1.25); }

/* No celular a seta atrapalha o swipe: fica só a bolinha */
@media (max-width: 640px) {
  .rr-carousel.is-carousel .rr-carousel__nav { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .rr-carousel__track { scroll-behavior: auto; }
}

/* ─── FORMULÁRIO DE CONTATO ──────────────────────────────────── */
.form-contato {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  margin: 24px 0 32px;
}
@media (max-width: 600px) { .form-contato { padding: 20px 16px; } }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-campo { margin-bottom: 16px; }
.form-campo label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-campo label .req { color: #d33; }
.form-campo input,
.form-campo select,
.form-campo textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 13px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-campo textarea { min-height: 150px; resize: vertical; }
.form-campo input:focus,
.form-campo select:focus,
.form-campo textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-campo input:user-invalid,
.form-campo textarea:user-invalid { border-color: #d33; }
.form-ajuda { font-size: 12px; color: var(--text-muted); margin-top: 5px; }

.form-consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}
.form-consent input { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--accent); }

.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-btn {
  background: var(--accent);
  color: #0a2e10;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 9px;
  padding: 13px 30px;
  cursor: pointer;
  transition: background 0.15s;
}
.form-btn:hover:not(:disabled) { background: var(--accent-dark); color: var(--white); }
.form-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.form-status {
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.55;
  padding: 12px 14px;
  border-radius: 8px;
  display: none;
}
.form-status.is-ok {
  display: block;
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft-border);
  color: #14532d;
}
.form-status.is-erro {
  display: block;
  background: #fdecec;
  border: 1px solid #f5c2c2;
  color: #8a1c1c;
}

/* ─── PÁGINA LEGAL (política de privacidade) ─────────────────── */
.pol-hero {
  background: var(--bg-dark);
  padding: 52px 24px 56px;
  text-align: center;
  border-bottom: 2px solid rgba(48,223,71,0.18);
  position: relative;
  overflow: hidden;
}
.pol-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(48,223,71,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.pol-hero__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.pol-hero__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--accent);
  background: rgba(48,223,71,0.09);
  border: 1px solid rgba(48,223,71,0.24);
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.pol-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.06;
  margin-bottom: 14px;
}
.pol-hero__title span { color: var(--accent); }
.pol-hero__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 22px;
}
.pol-hero__date {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(48,223,71,0.1);
  border: 1px solid rgba(48,223,71,0.28);
  border-radius: 20px;
  padding: 7px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .03em;
}

.pol-layout {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 40px 0 56px;
}

/* Sumário lateral */
.pol-toc {
  position: sticky;
  top: 92px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 16px;
}
.pol-toc__title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pol-toc__list { list-style: none; margin: 0; padding: 0; }
.pol-toc__list a {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
  padding: 7px 0 7px 12px;
  border-left: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.pol-toc__list a:hover { color: var(--text); }
.pol-toc__list a.is-active {
  color: var(--text);
  font-weight: 600;
  border-left-color: var(--accent);
}

/* Corpo do texto */
.pol-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 34px 40px 38px;
}
.pol-body__intro {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-muted);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
}
.pol-sec { padding-top: 28px; }
.pol-sec + .pol-sec { border-top: 1px solid var(--border); margin-top: 28px; }
.pol-sec__head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}
.pol-sec__num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft-border);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}
.pol-sec__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.25;
  margin: 0;
}
.pol-sec p {
  font-size: 15px;
  line-height: 1.8;
  color: #3d3d3d;
  margin: 0 0 12px;
}
.pol-sec p:last-child { margin-bottom: 0; }
.pol-sec a { color: var(--accent-dark); text-decoration: underline; }

@media (max-width: 900px) {
  .pol-layout { grid-template-columns: 1fr; gap: 18px; padding: 26px 0 40px; }
  .pol-toc { position: static; }
  .pol-toc__list { display: flex; flex-wrap: wrap; gap: 6px; }
  .pol-toc__list a {
    border-left: 0;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 13px;
    font-size: 12.5px;
  }
  .pol-toc__list a.is-active { border-color: var(--accent); background: var(--accent-soft); }
  .pol-body { padding: 24px 20px 28px; }
  .pol-hero { padding: 38px 20px 42px; }
}

/* Cartão lateral de apoio (usado na página de contato) */
.pol-aside {
  position: sticky;
  top: 92px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 16px;
}
.pol-aside__title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.pol-info { display: flex; flex-direction: column; gap: 14px; }
.pol-info__item { display: flex; gap: 10px; align-items: flex-start; }
.pol-info__icon { font-size: 16px; line-height: 1.3; flex: 0 0 auto; }
.pol-info__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.pol-info__text { font-size: 12.5px; line-height: 1.6; color: var(--text-muted); margin: 0; }
.pol-info__text a { color: var(--accent-dark); text-decoration: underline; word-break: break-word; }

@media (max-width: 900px) {
  .pol-aside { position: static; order: 2; }
  .pol-layout--contato { display: flex; flex-direction: column; }
  .pol-layout--contato .pol-body { order: 1; }
}

/* Variante sem coluna lateral (página sobre) */
.pol-single { max-width: 820px; margin: 0 auto; padding: 40px 0 56px; }
.pol-prose > h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.25;
  margin: 32px 0 12px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.pol-prose > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.pol-prose p { font-size: 15px; line-height: 1.8; color: #3d3d3d; margin: 0 0 14px; }
.pol-prose ul { margin: 0 0 16px; padding-left: 20px; }
.pol-prose li { font-size: 15px; line-height: 1.8; color: #3d3d3d; margin-bottom: 8px; }
.pol-prose a { color: var(--accent-dark); text-decoration: underline; }
.pol-prose .rr-box a,
.pol-prose .team-card a { text-decoration: none; }

@media (max-width: 900px) {
  .pol-single { padding: 26px 0 40px; }
  .pol-prose > h2 { font-size: 19px; margin-top: 26px; padding-top: 22px; }
}

/* Titulo de secao logo apos o cartao de texto (paginas de autor) */
.pol-body + h2 { margin-top: 44px; margin-bottom: 18px; }
@media (max-width: 900px) {
  .pol-body + h2 { margin-top: 32px; margin-bottom: 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   BANNER DE CONSENTIMENTO (cookies) — .cc
   Injetado por assets/js/consent.js. Usa os tokens do site para
   ficar igual ao resto: fundo escuro da navbar e verde de acento.
   ═══════════════════════════════════════════════════════════════ */
.cc {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
  padding: 18px 22px;
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,.28);
  font-family: var(--font-body);
  /* O banner nasce VISÍVEL: a animação é só enfeite, sem fill-mode.
     Nem requestAnimationFrame nem animação avançam em aba sem composição
     (segundo plano) — com 'both' o banner ficaria preso em opacity:0 e
     invisível para sempre. Sem fill-mode, o estado natural do elemento vale. */
  animation: cc-in .25s ease;
}
.cc--out { animation: cc-out .2s ease forwards; }

/* Anima só o deslocamento, nunca a opacidade: uma animação parada no frame 0
   (aba em segundo plano não compõe e congela a animação) deixaria o banner
   invisível. Deslocado por 14px é inofensivo; invisível não é. */
@keyframes cc-in  { from { transform: translateY(14px); }
                    to   { transform: translateY(0); } }
@keyframes cc-out { from { opacity: 1; transform: translateY(0); }
                    to   { opacity: 0; transform: translateY(14px); } }

.cc__body { flex: 1; min-width: 0; }
.cc__title { display: block; color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 5px; }
.cc__text  { color: #c9c9c9; font-size: 13.5px; line-height: 1.6; margin: 0 0 6px; }
.cc__link  { color: var(--accent); font-size: 13px; text-decoration: underline; }
.cc__link:hover { color: #fff; }

.cc__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cc__btn {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  padding: 11px 26px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .18s, color .18s, border-color .18s;
}
.cc__btn--ok { background: var(--accent); color: #0a0a0a; }
.cc__btn--ok:hover { background: var(--accent-dark); }
.cc__btn--no { background: transparent; color: #d5d5d5; border-color: rgba(255,255,255,.28); }
.cc__btn--no:hover { color: #fff; border-color: #fff; }

/* No celular o banner vira bloco: texto em cima, botões lado a lado embaixo
   e ocupando a largura toda — alvo de toque confortável. */
@media (max-width: 720px) {
  .cc {
    left: 10px; right: 10px; bottom: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px 18px;
  }
  .cc__actions { width: 100%; }
  .cc__btn { flex: 1; padding: 12px 16px; }
}

/* Respeita quem pediu menos animação no sistema. */
@media (prefers-reduced-motion: reduce) {
  .cc, .cc--out { animation: none; opacity: 1; transform: none; }
}
