/* ==========================================
   Blober Design System & Technical Stylesheet
   Theme: StackRanger (silo grid + serif editorial)
   ========================================== */

/* 1. Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=IBM+Plex+Mono:wght@500&family=Inter:wght@400;500;600;700&display=swap');

/* 2. Custom Properties (Variables) */
:root {
  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Scale (Mobile-first, Major Second 1.125 for denseness) */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-md: 1.125rem;    /* 18px */
  --text-lg: 1.25rem;     /* 20px */
  --text-xl: 1.5rem;      /* 24px */
  --text-2xl: 1.75rem;    /* 28px */
  --text-3xl: 2.25rem;    /* 36px */

  /* Colors - StackRanger Palette */
  --amber-brand: #2F5FE0;  /* Acento (ex-âmbar) - azul StackRanger, links e destaques */
  --green-action: #008A5E; /* Verde semântico (prós/positivo) - mantido, não é cor de marca */
  --hotmart: #2F5FE0;      /* CTA principal - azul StackRanger (era laranja Hotmart) */
  --hotmart-hover: #1F46B0;/* CTA principal - hover */
  --ink: #161A22;          /* Tinta - títulos e textos principais */
  --graphite: #565B66;     /* Grafite - textos secundários */
  --mist: #F9F9F9;         /* Linhas alternadas, fundos neutros */
  --white: #FFFFFF;
  --border: #DCD6C9;       /* Hairline quente, estilo StackRanger */
  --border-focus: #2F5FE0; /* Azul para focus rings */
  --bg-canvas: #F5F2EC;    /* Fundo cream da página, estilo StackRanger */

  /* Painel escuro (header/footer) */
  --panel: #1B2030;
  --on-panel: #F5F2EC;
  --on-panel-muted: rgba(245, 242, 236, 0.65);

  /* Layout */
  --max-width: 1320px;
  --container-padding: 1.5rem;
  
  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* Medium & Desktop Screens (Scale adjustments) */
@media (min-width: 768px) {
  :root {
    --text-base: 1.0625rem; /* 17px */
    --text-md: 1.25rem;     /* 20px */
    --text-lg: 1.5rem;      /* 24px */
    --text-xl: 2rem;        /* 32px */
    --text-2xl: 2.5rem;     /* 40px */
    --text-3xl: 3.25rem;    /* 52px */
    --container-padding: 40px; /* 40px container padding as per Professional Polish theme */
  }
}

/* 3. Modern CSS Reset & Core Elements */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--ink);
  background-color: var(--bg-canvas);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Constrain line length for text articles */
.article-content {
  max-width: 75ch;
  margin-inline: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

/* Article inline text links: color ink, no underline normally, amber underline on hover */
.article-content a,
.article-footer-note a,
.breadcrumb a {
  color: var(--ink);
  text-decoration: none;
}

.article-content a:hover,
.article-footer-note a:hover,
.breadcrumb a:hover {
  text-decoration: underline;
  text-decoration-color: var(--amber-brand);
  text-underline-offset: 4px;
}

/* Keyboard Accessibility */
a:focus-visible, 
button:focus-visible, 
input:focus-visible, 
select:focus-visible {
  outline: 2px solid var(--border-focus);
  outline-offset: 4px;
}

/* Respect user preferences for animation */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Grid & Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

/* 4. Layout Components */

/* Header & Logo */
.site-header {
  height: 80px; /* Exact height from Professional Polish theme */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--panel);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px; /* Exact size from Professional Polish theme */
  color: var(--on-panel);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--amber-brand);
}

.site-nav {
  display: flex;
  gap: 32px; /* Exact gap from Professional Polish theme */
}

.site-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px; /* Exact size from Professional Polish theme */
  text-decoration: none;
  color: var(--on-panel-muted);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--on-panel);
}

.site-nav a.active {
  border-bottom: 2px solid var(--amber-brand);
}

/* Footer */
.site-footer {
  background-color: var(--panel);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 40px; /* Exact padding from Professional Polish theme */
  margin-top: 5rem;
  font-size: var(--text-sm);
  color: var(--on-panel-muted);
}

.site-footer .footer-about p,
.site-footer .footer-nav a,
.site-footer .footer-bottom p {
  color: var(--on-panel-muted);
}

.site-footer .footer-about h4,
.site-footer .footer-nav h4 {
  color: var(--on-panel);
}

.site-footer .footer-nav a:hover {
  color: var(--on-panel);
}

.site-footer .footer-nav h4,
.site-footer .footer-bottom,
.site-footer #footer-disclosure {
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-about p {
  margin-top: 0.5rem;
  max-width: 40ch;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav h4 {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--graphite);
}

.footer-nav a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-bottom p {
  font-size: 12px; /* Exact size from Professional Polish theme */
  color: var(--graphite);
  margin-bottom: 4px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Exact gap from Professional Polish theme */
}

.footer-legal a {
  font-size: 12px; /* Exact size from Professional Polish theme */
  color: var(--graphite);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--ink);
  text-decoration: underline;
}

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-block: 1rem;
  font-size: var(--text-xs);
  color: var(--graphite);
  font-family: var(--font-display);
  font-weight: 600;
  gap: 0.5rem;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--border);
}

.breadcrumb a {
  text-decoration: none;
  color: var(--graphite);
}

.breadcrumb a:hover {
  color: var(--ink);
}

/* Cards de Categoria - Styled exactly like Professional Polish */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px; /* Exact gap from theme */
  margin-block: 2rem;
}

@media (min-width: 640px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 columns from theme */
  }
}

.category-card {
  border: 1px solid var(--border);
  padding: 32px 24px; /* Exact padding from theme */
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease;
  background-color: var(--white);
  border-radius: var(--radius-sm);
}

.category-card:not(.inactive):hover {
  border-color: var(--amber-brand); /* Active hover brand color */
}

.category-card.inactive {
  background-color: var(--mist); /* Exact background from theme */
  opacity: 0.6;
  cursor: not-allowed;
}

.category-icon {
  width: 40px; /* Exact icon size from theme */
  height: 40px;
  background-color: #EEE;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.category-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px; /* Exact name size from theme */
  color: var(--ink);
}

.category-count {
  font-family: var(--font-mono);
  font-size: 12px; /* Exact count size from theme */
  color: var(--graphite);
  margin-top: 8px;
}

/* Title & section title styling with layout lines from the theme */
.grid-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px; /* Exact uppercase indicator from theme */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--graphite);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.grid-title::after {
  content: '';
  height: 1px;
  background: var(--border);
  flex-grow: 1;
}

/* Hero opening - Styled exactly like Professional Polish */
.hero-home {
  padding-block: 60px; /* Exact padding from theme */
  border-bottom: 1px solid var(--mist); /* Exact border separator from theme */
  text-align: left; /* Aligned left like in the theme */
  max-width: 100%;
}

.hero-home h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.05;
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-home h1 {
    font-size: 72px;
  }
}

.hero-home p {
  font-size: 20px; /* Exact description size from theme */
  color: var(--graphite);
  max-width: 700px;
  line-height: 1.6;
}

.section-title {
  font-size: var(--text-2xl);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-intro {
  color: var(--graphite);
  margin-bottom: 2rem;
  max-width: 60ch;
}

/* Meta section (como o Blober escolhe / transparência) - Styled exactly like theme */
.meta-section {
  background-color: var(--mist); /* Exact mist from theme */
  padding: 40px 0; /* Exact padding from theme */
  border-top: 1px solid var(--border);
}

.meta-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .meta-content {
    grid-template-columns: 2fr 1fr; /* Exact grid-columns from theme */
  }
}

.meta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px; /* Exact heading size from theme */
  margin-bottom: 12px;
  color: var(--ink);
}

.meta-text {
  font-size: 14px; /* Exact font size from theme */
  color: var(--graphite);
  line-height: 1.6;
}

.meta-link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Tabela Comparativa (A Ficha Técnica Assinatura) */
.table-wrapper {
  overflow-x: auto;
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-block: 2.5rem;
  background-color: var(--white);
  /* Scroll shadow indicators */
  background-image: linear-gradient(to right, white 30%, rgba(255, 255, 255, 0)),
                    linear-gradient(to right, rgba(255, 255, 255, 0), white 70%),
                    linear-gradient(to right, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0)),
                    linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.06));
  background-position: left center, right center, left center, right center;
  background-repeat: no-repeat;
  background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
  background-attachment: local, local, scroll, scroll;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: var(--text-sm);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.comparison-table th {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  background-color: var(--mist);
  letter-spacing: -0.01em;
}

/* Alternate striped rows in listras alternadas */
.comparison-table tr:nth-child(even) td {
  background-color: var(--mist);
}

/* IBM Plex Mono for comparative technical values */
.comparison-table td.tech-value {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--ink);
}

/* Sticky first column (mobile horizontal scroll) */
.comparison-table th:first-child,
.comparison-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background-color: var(--white);
  border-right: 2px solid var(--border);
  font-weight: 600;
}

.comparison-table th:first-child {
  background-color: var(--mist);
  z-index: 3;
}

.comparison-table tr:nth-child(even) td:first-child {
  background-color: var(--mist);
}

/* Highlight badge column */
.badge-highlight {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xs);
  color: var(--amber-brand);
  background-color: rgba(47, 95, 224, 0.08);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Botão de Afiliado (Verde age) */
.btn-affiliate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--green-action);
  color: var(--white) !important; /* Ensure it stays white */
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 0.75rem 1.5rem; /* exactly 2x horizontal vs vertical */
  border-radius: var(--radius-sm); /* no extreme pill radius if border is present, but clean custom rounded corner */
  white-space: nowrap;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease;
}

.btn-affiliate:hover {
  background-color: #006B48; /* darker green action */
  text-decoration: none;
}

/* For simple text action links */
.link-action {
  color: var(--green-action);
  font-weight: 600;
  text-decoration-color: rgba(0, 138, 94, 0.3);
}

.link-action:hover {
  color: #006B48;
  text-decoration-color: #006B48;
}

/* Caixa de Disclosure (Transparência de Monetização) */
.disclosure-box {
  background-color: var(--white);
  border: 1px dashed var(--border);
  padding: 1.25rem;
  margin-block: 2.5rem;
  font-size: var(--text-sm);
  color: var(--graphite);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  max-width: 75ch;
  margin-inline: auto;
}

.disclosure-box svg {
  flex-shrink: 0;
  color: var(--amber-brand);
  margin-top: 0.15rem;
}

.disclosure-box p {
  line-height: 1.5;
}

/* Bloco de FAQ */
.faq-section {
  margin-block: 4rem;
  max-width: 75ch;
  margin-inline: auto;
}

.faq-title {
  margin-bottom: 2rem;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.faq-question {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-md);
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.faq-answer {
  font-size: var(--text-base);
  color: var(--graphite);
  line-height: 1.6;
}

/* Editorial & Info Blocks */
.info-block {
  background-color: var(--white);
  border-left: 4px solid var(--amber-brand); /* No heavy border-radius here to avoid conflicting elements */
  padding: 1.5rem;
  margin-block: 2rem;
}

.info-block h3 {
  font-size: var(--text-md);
  margin-bottom: 0.5rem;
}

.info-block p {
  color: var(--graphite);
  font-size: var(--text-base);
}

/* ==========================================
   5. Showcase, Product Cards & Store Buttons
   ========================================== */

/* Showcase Header (Title + View all link) */
.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.showcase-title {
  font-size: var(--text-xl);
  color: var(--ink);
  margin: 0;
}

.showcase-link {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-sm);
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.showcase-link:hover {
  color: var(--amber-brand);
}

/* Product Cards Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 540px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Product Card */
.product-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.15s ease;
  position: relative;
}

.product-card:hover {
  border-color: var(--amber-brand);
  transform: translateY(-2px);
}

.product-card__image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--mist);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-card__img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

.product-card__badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background-color: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xs);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-card__badge--amber {
  background-color: var(--amber-brand);
  color: var(--ink);
}

.product-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-md);
  line-height: 1.25;
  margin-bottom: 0.5rem;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

.product-card__name a {
  text-decoration: none;
  color: inherit;
}

.product-card__name a:hover {
  color: var(--amber-brand);
}

.product-card__price-wrap {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border);
  margin-bottom: 1rem;
}

.product-card__price-label {
  font-size: var(--text-xs);
  color: var(--graphite);
  display: block;
}

.product-card__price-value {
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--ink);
}

.product-card__price-note {
  font-size: 0.7rem;
  color: var(--graphite);
  display: block;
  margin-top: 0.15rem;
  line-height: 1.2;
}

.product-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Specific Store Buttons according to spec */
.btn-loja {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  width: 100%;
}

.btn-loja--primaria {
  background-color: var(--green-action);
  color: var(--white) !important;
  border: 1px solid var(--green-action);
}

.btn-loja--primaria:hover {
  background-color: #006B48;
  border-color: #006B48;
  text-decoration: none;
}

.btn-loja--secundaria {
  background-color: var(--white);
  color: var(--ink) !important;
  border: 1px solid var(--ink);
}

.btn-loja--secundaria:hover {
  background-color: var(--mist);
  text-decoration: none;
}

.btn-loja--analise {
  background-color: var(--mist);
  color: var(--ink) !important;
  border: 1px solid var(--border);
}

.btn-loja--analise:hover {
  background-color: var(--white);
  border-color: var(--amber-brand);
  color: var(--ink) !important;
  text-decoration: none;
}

/* Best Choices Block ("Melhores Escolhas") */
.best-choices-section {
  background-color: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem var(--container-padding);
  margin-block: 3.5rem;
}

.best-choices-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .best-choices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.choice-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.choice-card:hover {
  border-color: var(--amber-brand);
  transform: translateY(-2px);
  text-decoration: none;
}

.choice-card__badge {
  align-self: flex-start;
  background-color: rgba(47, 95, 224, 0.1);
  color: #2447B0;
  border: 1px solid rgba(47, 95, 224, 0.25);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: var(--text-xs);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.choice-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.choice-card__desc {
  font-size: var(--text-sm);
  color: var(--graphite);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.choice-card__link {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-sm);
  color: var(--green-action);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* About Block ("O que é o Blober") */
.about-summary-block {
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
  margin-block: 2.5rem;
  max-width: 75ch;
}

.about-summary-block h3 {
  font-size: var(--text-lg);
  margin-bottom: 0.75rem;
}

.about-summary-block p {
  color: var(--graphite);
  font-size: var(--text-base);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ==========================================
   Review Article Specific Styles (Blober 4C)
   ========================================== */

/* Main Review Page Layout (Desktop with Sidebar) */
.review-page-grid {
  display: block;
  padding-block: 1.5rem 4rem;
}

@media (min-width: 1024px) {
  .review-page-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}

/* Sticky Table of Contents (Desktop Sidebar) */
.review-toc-sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .review-toc-sidebar {
    display: block;
    position: sticky;
    top: 100px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
}

.review-toc-title {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--graphite);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.review-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-toc-link {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--graphite);
  text-decoration: none;
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-sm);
  line-height: 1.3;
  transition: all 0.15s ease;
}

.review-toc-link:hover {
  background-color: var(--mist);
  color: var(--ink);
  text-decoration: none;
}

/* Mobile Sticky TOC Header */
.review-toc-mobile {
  display: flex;
  position: sticky;
  top: 80px; /* Right below site-header */
  z-index: 90;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.75rem var(--container-padding);
  margin-inline: calc(var(--container-padding) * -1);
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.review-toc-mobile::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .review-toc-mobile {
    display: none;
  }
}

.review-toc-mobile-link {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--graphite);
  text-decoration: none;
  padding: 0.35rem 0.75rem;
  background-color: var(--mist);
  border: 1px solid var(--border);
  border-radius: 9999px;
  flex-shrink: 0;
}

.review-toc-mobile-link:hover {
  background-color: rgba(47, 95, 224, 0.12);
  color: var(--ink);
}

/* Hero Review Header & 2-Column Cover + Summary */
.review-hero-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-block: 1.5rem 2.5rem;
}

@media (min-width: 768px) {
  .review-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
  }
}

.review-cover-image {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.review-summary-card {
  background-color: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-summary-card p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--ink);
  line-height: 1.75;
  margin: 0;
  max-width: 72ch;
}

/* Stat / Pull-Quote Highlight Box */
.stat-highlight-box {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--amber-brand);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-block: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 72ch;
}

@media (min-width: 640px) {
  .stat-highlight-box {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

.stat-highlight-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.stat-highlight-text {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--graphite);
  margin: 0;
}

/* CTA Container & Affiliate Tag */
.review-cta-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-block: 2rem;
}

.review-cta-unit--left {
  align-items: flex-start;
  margin-block: 1.5rem 0;
}

.review-cta-box {
  background-color: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-block: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .review-cta-box {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.btn-cta,
.btn-cta-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--green-action);
  color: var(--white) !important;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  transition: background-color 0.2s ease, transform 0.15s ease;
  min-height: 48px; /* Comfortable touch target */
  cursor: pointer;
}

.btn-cta:hover,
.btn-cta-action:hover {
  background-color: #006B48;
  transform: translateY(-1px);
  text-decoration: none !important;
}

/* Variante Hotmart */
.btn-cta--hotmart {
  background-color: var(--hotmart);
}

.btn-cta--hotmart:hover,
.btn-cta--hotmart:focus-visible {
  background-color: var(--hotmart-hover);
  transform: translateY(-1px);
  text-decoration: none !important;
}

.icon-seta {
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.btn-cta:hover .icon-seta,
.btn-cta-action:hover .icon-seta {
  transform: translateX(3px);
}

.tag-afiliado {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--graphite);
  display: block;
}

/* Bloco Imagem + CTA Centralizado (Meio do Artigo) */
.bloco-imagem-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block: 2.5rem;
  padding: 0;
  max-width: 680px;
  margin-inline: auto;
  width: 100%;
}

.bloco-imagem-cta img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  display: block;
}

.bloco-imagem-cta figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  width: 100%;
  text-align: center;
}

/* Article content line height and max-width (65-75ch) */
.article-content p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--graphite);
  max-width: 72ch;
}

/* Sections & Dividers */
.review-section {
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 1024px) {
  .review-section {
    padding-block: 3rem;
  }
}

.review-section:last-of-type {
  border-bottom: none;
}

.review-section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--ink);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

/* Highlight Inclusion Cards */
.inclusion-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.inclusion-card strong {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--ink);
  display: block;
  margin-bottom: 0.35rem;
}

.inclusion-card p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--graphite);
  margin: 0;
}

/* Indicado / Não Indicado Grid */
.profile-fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-block: 1.5rem;
}

@media (min-width: 640px) {
  .profile-fit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.profile-fit-box {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.profile-fit-box--recommended {
  border-left: 4px solid var(--amber-brand);
}

.profile-fit-box--caution {
  border-left: 4px solid var(--graphite);
}

.profile-fit-heading {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.profile-fit-box p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--graphite);
  margin-bottom: 0.75rem;
}

.profile-fit-box p:last-child {
  margin-bottom: 0;
}

/* Prós e Contas com Ícones SVG */
.pros-cons-grid-refined {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-block: 1.5rem;
}

@media (min-width: 640px) {
  .pros-cons-grid-refined {
    grid-template-columns: 1fr 1fr;
  }
}

.pros-cons-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.pros-cons-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.pros-cons-list-refined {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pros-cons-list-refined li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--graphite);
}

.pros-cons-list-refined svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Checklist Cards */
.decision-checklist-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.decision-checklist-card strong {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--ink);
  display: block;
  margin-bottom: 0.35rem;
}

.decision-checklist-card p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--graphite);
  margin: 0;
}

/* Veredito Box */
.verdict-box-refined {
  border: 2px solid var(--amber-brand);
  border-radius: var(--radius-md);
  background-color: var(--white);
  padding: 2rem;
  margin-block: 2.5rem;
}

.verdict-box-refined h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--ink);
  margin-bottom: 1rem;
}

.verdict-box-refined p {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
