/* =====================
   RESET BÁSICO
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #f3f4f6;
  color: #111;
  line-height: 1.65;
  padding-top: 50px;
}

/* =====================
   CONTAINER
===================== */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5px;
}

/* =====================
   HEADER FIXO
===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}

/* Container interno */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
}

/* Logo */
.logo {
  font-weight: 700;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

/* Ícone */
.logo img {
  width: 40px;
  height: 40px;
  display: block;
}

/* Texto */
.logo-text {
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}

.logo-blue {
  color: #2563eb; /* azul confiança */
}

.logo-green {
  color: #15803d; /* verde aprovação */
}

.note {
  font-size: 14px;
  color: #444;
  max-width: 900px;
  margin-top: 8px;
}

.note-center {
  text-align: center;
}

.badges {
  font-size: 13px;
  color: #555;
}

/* ===== Menu ===== */
.menu-toggle {
  background: none;
  border: none;
  font-size: 18px;
  display: none; /* só mobile */
  cursor: pointer;
  font-weight: 600;
  background: none;
  padding: 8px 10px;
}

.menu-text {
  margin-left: 6px;
}

/* Desktop menu */
.main-nav {
  display: flex;
  gap: 18px;
}

.main-nav a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: #2563eb;
}

/* Botão fechar (escondido no desktop) */
.menu-close {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

div[id],
span[id],
section[id],
h2[id] {
  scroll-margin-top: 60px;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  
  div[id],
  span[id],
  section[id],
  h2[id] {
    scroll-margin-top: 56px;
  }
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0,0,0,.1);
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .main-nav.open {
    right: 0;
  }

  .menu-close {
    display: block;
    align-self: flex-end;
    margin-bottom: 10px;
  }

  .main-nav a {
    font-size: 18px;
	font-weight: 500;
  }
  
  .price-soft-link {
    font-size: 13.5px;
    margin: 12px 0 16px;
  }
}

/* =====================
   ARTIGO (CAIXA PRINCIPAL)
===================== */
.review {
  background: #fff;
  border-radius: 12px;
  padding: 26px;
  margin: 20px 0;
  box-shadow: 0 10px 28px rgba(0,0,0,.05);
}

/* =====================
   TÍTULOS
===================== */
.review h1 {
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 16px;
  border-left: 4px solid #22c55e;
  padding-left: 12px;
  background: linear-gradient(
    to right,
    rgba(34, 197, 94, 0.08),
    transparent
  );
}

.review h2 {
  font-size: 22px;
  margin-top: 38px;
  margin-bottom: 12px;
  border-left: 4px solid #2563eb;
  padding-left: 12px;
}

/* =====================
   TEXTO
===================== */
.review p {
  margin-bottom: 14px;
  font-size: 16px;
}

/* =====================
   ADS (CAIXA PRINCIPAL)
===================== */
.ads {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  margin: 20px 0;
  box-shadow: 0 10px 28px rgba(0,0,0,.05);
}

/* =====================
   TÍTULOS
===================== */
.ads h1 {
  font-size: 26px;
  line-height: 1.25;
  text-align: center;
  background: rgba(34, 197, 94, 0.08);
  padding: 4px 16px;
  border-radius: 6px;
}

.ads h2 {
  font-size: 22px;
  margin-top: 38px;
  margin-bottom: 12px;
  border-left: 4px solid #2563eb;
  padding-left: 12px;
}

/* =====================
   TEXTO
===================== */
.ads p {
  margin-bottom: 4px;
  font-size: 16px;
}

.intro {
  max-width: 820px;
}

.intro p {
  margin-bottom: 18px;
}

/* =====================
   SUMMARY BOX
===================== */
.summary-box {
  text-align: center;
  background: #f5f7f5;
  border-left: 4px solid #111;
  padding: 18px;
  margin: 24px 0;
  border-radius: 6px;
}

.summary-box h3 {
  margin-bottom: 10px;
}

.summary-box p {
  margin-bottom: 1px;
}

.sumary-box-space {
  margin-bottom: 12px
}

/* =====================
   IMAGENS E GRIDS
===================== */
.product-image {
  margin: 26px 0;
  text-align: center;
}

.product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.image-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 26px 0;
}

.image-grid figure {
  margin: 0;
  width: 100%;
}

.image-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

figcaption {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
  line-height: 1.4;
  text-align: center;
}

/* =====================
   PROS & CONS
===================== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.pros,
.cons {
  background: #f5f7f5;
  padding: 16px 30px;
  border-radius: 8px;
}

.pros li {
  color: #065f46;
}

.cons li {
  color: #7c2d12;
}

.pros li,
.cons li {
  margin-bottom: 6px;
}

/* =====================
   CTA
===================== */
.cta-box {
  background: #111;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  margin-top: 36px;
}

.cta-box h3 {
  margin-bottom: 14px;
}

.cta-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
}

.cta-button .cta-main {
  font-size: 17px;
}

.cta-button .cta-sub {
  font-size: 11px;
  font-weight: 500;
  margin-top: 6px;
}

.cta-button.large .cta-main {
  font-size: 17px;
}

.cta-button.large .cta-sub {
  font-size: 13px;
}

/* =====================
   REVIEWS RELACIONADOS
===================== */
.related {
  list-style: none;
  margin-top: 16px;
  padding-left: 0;
}

.related li {
  margin-bottom: 8px;
}

.related a {
  text-decoration: none;
  color: #2563eb;
  font-weight: 500;
}

/* =====================
   CONTENT HUB (CARDS)
===================== */
.content-hub {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}

.hub-card {
  background: #f7f9fc;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #111;
}

.hub-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.hub-card h3 a {
  text-decoration: none;
  color: #111;
}

.hub-card h3 a:hover {
  color: #2563eb;
}

.hub-card p {
  margin-bottom: 12px;
  font-size: 15px;
  color: #555;
}

.hub-card .rating {
  display: inline-block;
  background: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 12px;
}

.read-more {
  display: inline-block;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.read-more:hover {
  text-decoration: underline;
}

.quick-tips {
  list-style: disc;
  padding-left: 20px;
  margin-top: 16px;
}

.quick-tips li {
  background: rgba(34, 197, 94, 0.04);
  color: #166534;
  padding: 6px 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
}

.quick-tips li::marker {
  color: #22c55e;
  font-weight: bold;
}

/* =====================
   FOOTER
===================== */
.site-footer {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin: 30px 0 0;
  padding: 40px 16px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #2563eb;
}

.footer-disclaimer {
  max-width: 600px;
  margin: 0 auto 15px;
  font-size: 12px;
  line-height: 1.5;
}

.footer-copyright {
  font-weight: 600;
  color: #111;
}

/* =====================
   MOBILE AJUSTES
===================== */
@media (max-width: 768px) {

  .review {
    padding: 10px;
  }

  .review h1 {
    font-size: 22px;
	line-height: 1.3;
  }

  .review h2 {
    font-size: 19px;
  }
  
  .ads {
    padding: 10px;
  }

  .ads h1 {
    font-size: 22px;
	line-height: 1.2;
  }

  .ads h2 {
    font-size: 19px;
  }

  .image-grid img {
    aspect-ratio: 4 / 3;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .footer-links a {
    width: auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
    white-space: nowrap;
  }

}

/* =====================
   NOVOS ESTILOS DE CTA (ADICIONADOS)
===================== */
.cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-button.amazon {
  background-color: #232f3e;
  color: #fff;
  font-weight: 700;
}

.cta-button.amazon:hover {
  background-color: #2f3f52;
  filter: brightness(0.95);
}

.cta-button.mercadolivre {
  background-color: #ffe600;
  color: #111;
  font-weight: 700;
}

.cta-button.mercadolivre:hover {
  background-color: #f5d800;
  filter: brightness(0.95);
}

.cta-button.magalu {
  background-color: #0072d6;
  color: #fff;
  font-weight: 700;
}

.cta-button.magalu:hover {
  background-color: #0582f2;
  filter: brightness(0.95);
}

.cta-button.casasbahia {
  background-color: #d6001c;
  color: #fff;
  font-weight: 700;
}

.cta-button.casasbahia:hover {
  background-color: #c7021c;
  filter: brightness(0.95);
}

.cta-button.fastshop {
  background-color: #111;
  color: #fff;
  font-weight: 700;
}

.cta-button.fastshop:hover {
  background-color: #000;
  filter: brightness(0.95);
}

.cta-button.full-width {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  text-align: center;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.2;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cta-button.full-width:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.cta-button.full-width2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  text-align: center;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.2;
  border: 2px solid #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-info {
  margin-top: 15px;
  font-size: 14px;
  color: #ccc;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-info span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cta-text {
  text-align: center;
  margin-bottom: 14px;
}

.cta-text-main {
  display: block;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

.cta-text-sub {
  display: block;
  margin-top: 4px;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* Ajuste para o summary box no mobile */
@media (min-width: 600px) {
  .cta-group.horizontal {
    flex-direction: row;
  }
  .cta-button.amazon:hover,
  .cta-button.mercadolivre:hover,
  .cta-button.magalu:hover,
  .cta-button.casasbahia:hover,
  .cta-button.fastshop:hover  {
    transform: translateY(-2px);
  }
}

/* =====================
   TABELA DE ESPECIFICAÇÕES (MODERNO)
===================== */
.specs-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 28px 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.specs-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.specs-table tbody tr:hover {
  background-color: #fafbfc;
}

.specs-table tbody tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 16px 18px;
  vertical-align: middle;
}

.spec-label {
  font-weight: 700;
  color: #111;
  width: 35%;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.spec-value {
  color: #333;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.specs-conclusion {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  padding: 16px 18px;
  border-left: 4px solid #22c55e;
  border-radius: 8px;
  margin: 20px 0 28px;
  font-size: 15px;
  color: #166534;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
}

/* =====================
   TABELA COMPARATIVA (MODERNO)
===================== */
.benefits-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 28px 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.benefits-table thead {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: #fff;
}

.benefits-table th {
  padding: 16px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.benefits-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.benefits-table tbody tr:hover {
  background-color: #fafbfc;
}

.benefits-table tbody tr:last-child {
  border-bottom: none;
}

.benefits-table td {
  padding: 16px 18px;
  vertical-align: middle;
}

.store-label {
  font-weight: 700;
  font-size: 15px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.store-label.amazon-label {
  color: #b45309;
}

.store-label.amazon-label::before {
  background-color: #b45309;
}

.store-label.mercadolivre-label {
  color: #2b3373;
}

.store-label.mercadolivre-label::before {
  background-color: #2b3373;
}

.benefits-table tbody td:last-child {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

/* =====================
   MOBILE - TABELAS RESPONSIVAS
===================== */
@media (max-width: 768px) {
  
  .specs-table,
  .benefits-table {
    font-size: 13px;
    margin: 20px 0;
  }

  .specs-table td,
  .benefits-table td,
  .benefits-table th {
    padding: 14px 12px;
  }

  .spec-label {
    width: 45%;
    font-size: 12px;
  }

  .spec-value {
    font-size: 14px;
  }

  .store-label {
    width: 35%;
    font-size: 13px;
  }

  .benefits-table th {
    font-size: 12px;
    padding: 12px 10px;
  }

  .benefits-table tbody td:last-child {
    font-size: 13px;
  }

  .specs-conclusion {
    padding: 12px 14px;
    font-size: 13px;
    margin: 16px 0 20px;
  }

  .specs-table tbody tr:hover,
  .benefits-table tbody tr:hover {
    background-color: #fff;
  }
}

/* =====================
   DESKTOP - TABELAS COM MAIS ESPAÇO
===================== */
@media (min-width: 769px) {
  .specs-table td,
  .benefits-table td,
  .benefits-table th {
    padding: 18px 20px;
  }

  .spec-label {
    font-size: 13px;
  }

  .store-label {
    font-size: 15px;
  }
}

/* =====================
   COMPARATIVOS – ESTILOS EXCLUSIVOS
===================== */

.comparison {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  margin: 26px 0;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

/* Título principal */
.comparison h1 {
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 14px;
  border-left: 4px solid #22c55e;
  padding-left: 12px;
  background: linear-gradient(
    to right,
    rgba(34, 197, 94, 0.08),
    transparent
  );
}

/* Subtítulo SEO */
.comparison .subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 22px;
  max-width: 850px;
}

/* Destaque rápido (quem vence) */
.comparison-highlight {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-left: 5px solid #22c55e;
  padding: 18px;
  border-radius: 8px;
  margin: 22px 0;
  font-size: 16px;
  font-weight: 500;
  color: #166534;
}

/* Grid com os dois modelos */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 26px 0;
}

.compare-card {
  background: #f9fafb;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.compare-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Imagem do produto */
.compare-card img {
  width: 100%;
  max-width: 260px;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
}

/* Pontuação */
.score {
  font-size: 32px;
  font-weight: 800;
  margin: 10px 0;
}

.score.good { color: #16a34a; }
.score.medium { color: #ca8a04; }

/* Seções internas */
.comparison-section {
  margin-top: 40px;
}

.comparison-section h2 {
  font-size: 22px;
  margin-bottom: 14px;
  border-left: 4px solid #2563eb;
  padding-left: 12px;
}

/* Veredito final */
.comparison-verdict {
  background: #111;
  color: #fff;
  padding: 26px;
  border-radius: 12px;
  margin-top: 40px;
}

.comparison-verdict h3 {
  margin-bottom: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  .comparison {
    padding: 14px;
  }

  .comparison h1 {
    font-size: 20px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .compare-card img {
    max-width: 220px;
  }
}

/* =====================
   CTA FINAL – COMPARATIVOS
===================== */

/* Cards */
.comparison-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.review-cta-card {
  background: #f5f7f5;
  border-left: 4px solid #111;
  margin: 24px 0;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-cta-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.review-cta-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 18px;
}

.review-cta-button {
  display: inline-block;
  text-align: center;
  background: #2563eb;
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.review-cta-button:hover {
  background: #1e4fd8;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {

  .comparison-cta-grid {
	display: inline-block;
    grid-template-columns: 1fr;
  }
}

.related-intro {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
}

/* =====================
   PRICE BOX – LANDING ADS
===================== */

/* PRICE BOX */
.price-box {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border: 2px solid #111;
  border-radius: 14px;
  padding: 15px; /* compactado */
  margin: 10px 0 30px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

/* LABEL */
.price-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .2px;
  text-transform: none;
  color: #555;
  margin-bottom: 6px;
  text-transform: uppercase;
}

/* PREÇO */
.price-value {
  font-size: 38px;
  font-weight: 900;
  color: #111;
  margin-bottom: 4px; /* reduzido */
}

/* NOTA */
.price-note {
  display: block;
  font-size: 11.5px;
  color: #666;
}

/* IMAGEM */
.price-image {
  margin-top: 11px;               /* espaço do bloco em relação ao preço */
  display: flex;
  flex-direction: column;        /* imagem em cima, texto embaixo */
  align-items: center;
}

.price-image img {
  display: block;                /* evita espaços fantasmas */
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 0;                     /* remove qualquer margem */
}

/* Texto auxiliar abaixo da imagem */
.price-image .image-note {
  margin-top: 3px; 
  margin-bottom: 11px;
  font-size: 11px;
  color: #666;
  line-height: 1.3;
}


.price-image-comp img {
  width: 100%;
  max-width: 260px;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
}

/* SUBTEXTO DO CTA */
.cta-subtext {
  font-size: 13px;
  text-align: center;
  margin-bottom: 3px;
  line-height: 1.35;
}

.cta-subtext strong {
  color: #37475A;
  font-weight: 700;
  font-size: 14px;
}

.cta-subtext.secondary {
  font-size: 12px;
  margin-top: 3px;
  color: #666;
}

.cta-subtext.secondary2 {
  font-size: 12px;
  margin-top: 3px;
  color: #fff;
}

.cta-subtext.adsg {
	margin-top:14px;font-size:12px;line-height:1.6;color: #666;
}

/* Mobile */
@media (max-width: 768px) {	
  .price-label {
    font-size: 16px;
	margin-bottom: 0px;
  }
  .price-value {
    font-size: 34px;
  }
   .price-box {
    padding: 12px;
  }
  
  .price-image {
    margin-top: 10px;
  }
  
  .price-image .image-note {
    margin-top: 2px;
	margin-bottom: 10px;
    font-size: 11px;
	opacity: 0.85;
  }
  .price-image img {
    max-width: 220px;
  }
  .price-image-comp img {
    max-width: 220px;
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
}

/* COMPARAÇÃO CTA */
.cta-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}

.cta-item {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  text-align: center;
}

.cta-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.cta-item .price-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 10px 0;
}

.cta-item.highlight {
  border: 2px solid #22c55e;
}

.cta-item strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #37475A;
}

/* DESKTOP */
@media (min-width: 768px) {
  .cta-compare {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== COMPARISON TABLE ===== */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 14px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table thead th {
  background: #f3f4f6;
  font-weight: 700;
  font-size: 16px;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table th:first-child {
  text-align: left;
  font-weight: 700;
  font-size: 16px;
}

.comparison-table strong {
  color: #2563eb;
}

/* Mobile */
@media (max-width: 640px) {
  .comparison-table {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 10px;
  }
}

.offer-highlight {
  background: rgba(255, 98, 0, 0.08);
  border-left: 4px solid #ff6200;
  padding: 12px 12px;
  border-radius: 8px;
  margin: 12px 0 16px;
  line-height: 1.45;
}
.offer-highlight strong:first-of-type {
  font-size: 1.05rem;
  font-weight: 700;
  color: #37475A;
}
.offer-highlight strong.price {
  font-size: 1.2rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.2px;
}
.offer-highlight .payment-note {
  font-size: 0.95rem;
  font-weight: 500;
  color: #444;
}
.offer-highlight .installments {
  font-size: 0.9rem;
  font-weight: 400;
  color: #555;
}

.see-all {
  margin-top: 16px;
  text-align: center;
}

.see-all a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.see-all a:hover {
  text-decoration: underline;
  color: #1d4ed8;
}

.price-soft-link {
  margin: 14px 0 18px;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

.price-soft-link a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.price-soft-link a:hover {
  text-decoration: underline;
}

/* BOTÃO */
.btn-more-stores {
  width: 100%;
  max-width: 450px;
  padding: 14px;
  border-radius: 10px;
  border: 2px solid #111;
  background: #fff;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  line-height: 1.2;
  font-size: 14px;
}

.btn-simple {
	margin-top:10px;font-size:14px;background:none;border:none;text-decoration:underline;color:#555;cursor: pointer;
}

.btn-more-stores2 {
  width: 100%;
  max-width: 450px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #fff;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  line-height: 1.2;
  font-size: 14px;
}

.btn-more-stores:hover {
  background: #f9f9f9;
}

.btn-more-stores:active {
  transform: scale(0.98);
}

/* MODAL BACKDROP */
.stores-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  z-index: 9999;
  align-items: flex-end;
}

/* MODAL CONTENT (BOTTOM SHEET) */
.stores-modal-content {
  background: #fff;
  width: 100%;
  max-width: 450px;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  border-radius: 18px 18px 0 0;
  padding: 20px 16px;
  animation: slideUp 0.25s ease-out;
  box-sizing: border-box;
  position: relative;
}

/* ANIMAÇÃO */
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* FECHAR */
.stores-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 26px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}

/* TÍTULO */
.stores-modal-content h3 {
  margin: 0 0 16px;
  font-size: 18px;
  text-align: center;
}

/* LISTA */
.stores-list {
  display: grid;
  gap: 12px;
}

/* BOTÕES DAS LOJAS */
.store-btn {
  display: block;
  padding: 12px 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  color: #111;
  border: 1px solid #ddd;
}

.store-btn .cta-sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
}

.store-btn .cta-main {
  font-size: 17px;
}

/* CORES (opcional, pode remover se quiser tudo neutro) */
.store-btn.amazon { background: #232f3e; color: #fff; }
.store-btn.mercado { background: #ffe600; }
.store-btn.magalu { background: #0072d6; color: #fff; }
.store-btn.casas { background: #d6001c; color: #fff; }
.store-btn.fastshop { background: #111; color: #fff; }

.versions-box {
  margin: 28px 0;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fafafa;
}

.versions-intro {
  margin-bottom: 14px;
  font-size: 16px;
  opacity: .85;
}

.version-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
}

.version-item:last-child {
  border-bottom: 0;
}

.version-info {
  display: flex;
  flex-direction: column;
  color: #111;
}

.version-price {
  font-size: 13px;
  opacity: .8;
}

.version-price strong {
  font-size: 13.5px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.2px;
  display: inline-block;
}

.version-link {
  display: inline-block;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.version-link:hover {
  text-decoration: underline;
}

.version-note {
  font-size: 12px;
  margin-top: 6px;
  color: #666;
}