/* ============================================================
   MAQUININHAREVIEW - Design System Compartilhado (2026)
   Usado por todas as páginas internas. Homepage usa inline CSS.
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #00c853;
  --green-dark: #00a040;
  --green-light:#e8f5e9;
  --navy:       #f8fafc;
  --navy2:      #f1f5f9;
  --navy3:      #e8edf5;
  --text:       #0f172a;
  --text-muted: #64748b;
  --amber:      #f59e0b;
  --white:      #ffffff;
  --card-bg:    #ffffff;
  --border:     rgba(0,0,0,0.09);
  --radius:     14px;
  --shadow:     0 2px 16px rgba(0,0,0,0.07);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.1);
  --red:        #ef4444;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
  background: var(--navy);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
strong { font-weight: 700; }
em { font-style: italic; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--green);
  color: #000;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.topbar span { opacity: 0.7; font-weight: 400; margin: 0 12px; }

/* ===== HEADER / NAV ===== */
#main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
#main-header.header-scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.1); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--green), #00ff80);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.logo-text { color: var(--text); }
.logo-text em { color: var(--green); font-style: normal; }

/* Desktop Nav */
#main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
#main-nav > a {
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
  white-space: nowrap;
}
#main-nav > a:hover { color: var(--text); background: var(--navy2); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-drop-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-drop-btn:hover { color: var(--text); background: var(--navy2); }
.drop-arrow { font-size: 0.65rem; transition: transform 0.2s; }
.nav-dropdown.open .drop-arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 100;
}
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.15s;
}
.dropdown-menu a:hover { background: var(--navy2); color: var(--text); }
.dropdown-menu a .menu-badge {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 800;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 1px 6px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Search button */
.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.search-btn:hover { background: var(--navy2); color: var(--text); }

/* Nav CTA */
.nav-cta {
  background: var(--green) !important;
  color: #000 !important;
  font-weight: 700 !important;
  padding: 7px 14px !important;
  border-radius: 8px;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--green-dark) !important; color: #fff !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-muted); border-radius: 2px;
}

/* ===== MOBILE MENU PANEL ===== */
#mobile-menu-panel { z-index: 1000; }
#mobile-menu-overlay { background: rgba(0,0,0,0.5); transition: opacity 0.3s; }
#mobile-menu-content {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 300px;
  max-width: 90vw;
  background: var(--white);
  box-shadow: 4px 0 32px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: transform 0.3s;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-weight: 800;
  font-size: 1rem;
}
.mobile-menu-header em { color: var(--green); font-style: normal; }
.mobile-close-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav { flex: 1; padding: 12px; }
.mobile-nav-section { margin-bottom: 20px; }
.mobile-nav-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 4px 8px 8px;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.15s;
}
.mobile-nav a:hover { background: var(--navy2); }
.mobile-badge {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 700;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 1px 6px;
  border-radius: 20px;
}
.mobile-menu-cta {
  padding: 16px;
  border-top: 1px solid var(--border);
}
.mobile-menu-cta .btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #000;
  font-weight: 800;
  font-size: 0.9rem;
  width: 100%;
  text-decoration: none;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 20px 28px;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { opacity: 0.5; }

.page-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.15;
  max-width: 800px;
}
.page-hero h1 .hl {
  background: linear-gradient(90deg, var(--green), #00e676);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.page-hero-meta span {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== PRODUCT HERO (two-column) ===== */
.product-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 40px 20px 32px;
}
.product-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.product-hero-img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product-hero-img img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
}
.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.product-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.12;
  margin-bottom: 14px;
}
.product-hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 560px;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.stars-inline { display: flex; gap: 1px; }
.star-full { color: var(--amber); font-size: 0.9rem; }
.star-half { color: var(--amber); opacity: 0.6; font-size: 0.9rem; }
.star-empty { color: #d1d5db; font-size: 0.9rem; }
.rating-val { font-size: 0.9rem; font-weight: 800; color: var(--amber); }
.rating-count { font-size: 0.78rem; color: var(--text-muted); }
.product-specs-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.spec-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--navy2);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text);
  font-weight: 600;
}
.spec-chip strong { color: var(--green-dark); }
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-price {
  text-align: left;
}
.hero-price-old {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.hero-price-new {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-price-inst {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ===== MAIN LAYOUT ===== */
.main-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.main-wrap.full { grid-template-columns: 1fr; max-width: 880px; }

/* Sidebar */
.sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 20px; }
.widget {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.widget-head {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.widget-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.widget-body { padding: 14px 16px; }

/* Sidebar CTA widget */
.widget-cta {
  background: linear-gradient(135deg, #001a08, #002d10);
  border-color: rgba(0,200,83,0.3);
}
.widget-cta .widget-body { text-align: center; padding: 20px 16px; }
.widget-cta img { width: 90px; margin: 0 auto 12px; filter: drop-shadow(0 4px 12px rgba(0,200,83,0.25)); }
.widget-cta h3 { font-size: 0.9rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.widget-cta p { font-size: 0.76rem; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.widget-cta .big-price { font-size: 1.5rem; font-weight: 900; color: var(--white); line-height: 1; }
.widget-cta .small-price { font-size: 0.7rem; color: rgba(255,255,255,0.5); }

/* Sidebar specs list */
.spec-list { display: flex; flex-direction: column; gap: 0; }
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-row dt { color: var(--text-muted); }
.spec-row dd { font-weight: 600; color: var(--text); text-align: right; }
.spec-row dd.green { color: var(--green-dark); }

/* Related products sidebar */
.related-mini { display: flex; flex-direction: column; gap: 10px; }
.related-mini-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 8px;
  font-size: 0.8rem;
  transition: background 0.15s;
  text-decoration: none;
}
.related-mini-item:hover { background: var(--navy2); }
.related-mini-item img { width: 36px; height: 36px; object-fit: contain; border-radius: 4px; background: #f8fafc; }
.related-mini-item .rmi-name { font-weight: 600; color: var(--text); }
.related-mini-item .rmi-rate { font-size: 0.7rem; color: var(--green-dark); font-weight: 700; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #000;
}
.btn-primary:hover { filter: brightness(1.08); transform: scale(1.02); }
.btn-secondary {
  background: var(--navy2);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--navy3); }
.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 7px 14px; font-size: 0.75rem; border-radius: 8px; }
.btn-full { width: 100%; }

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 9px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-green { background: rgba(0,200,83,0.12); color: var(--green-dark); border: 1px solid rgba(0,200,83,0.3); }
.badge-amber { background: rgba(245,158,11,0.12); color: #b45309; border: 1px solid rgba(245,158,11,0.3); }
.badge-blue  { background: rgba(59,130,246,0.12); color: #1d4ed8; border: 1px solid rgba(59,130,246,0.3); }
.badge-red   { background: rgba(239,68,68,0.12); color: #dc2626; border: 1px solid rgba(239,68,68,0.25); }
.badge-gray  { background: var(--navy2); color: var(--text-muted); border: 1px solid var(--border); }

/* ===== PROS / CONS CARDS ===== */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.pros-card, .cons-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.pros-card { border-left: 3px solid var(--green); }
.cons-card { border-left: 3px solid var(--red); }
.pros-card h4 { color: var(--green-dark); font-size: 0.85rem; font-weight: 800; margin-bottom: 12px; }
.cons-card h4 { color: var(--red); font-size: 0.85rem; font-weight: 800; margin-bottom: 12px; }
.pros-card ul, .cons-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pros-card ul li, .cons-card ul li { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 8px; line-height: 1.45; }
.pros-card ul li::before { content: '✓'; color: var(--green); font-weight: 900; flex-shrink: 0; }
.cons-card ul li::before { content: '✗'; color: var(--red); font-weight: 900; flex-shrink: 0; }

/* ===== RATE / SPEC TABLE ===== */
.rate-table-wrap { overflow-x: auto; margin: 20px 0; border-radius: var(--radius); border: 1px solid var(--border); }
.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.83rem;
}
.rate-table th {
  background: var(--navy2);
  padding: 10px 14px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}
.rate-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text);
}
.rate-table tr:last-child td { border-bottom: none; }
.rate-table td.green { color: var(--green-dark); font-weight: 700; }
.rate-table td.highlight { background: var(--green-light); }
.rate-table tr:hover td { background: var(--navy2); }

/* ===== FAQ ACCORDION ===== */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  gap: 10px;
  list-style: none;
  user-select: none;
}
.faq-q:hover { color: var(--green-dark); }
.faq-icon { font-size: 1.1rem; flex-shrink: 0; transition: transform 0.2s; font-style: normal; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 16px 14px;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; padding-top: 14px; }
.faq-a a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }

/* ===== SECTION HEADINGS ===== */
.section-heading {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.section-heading span, .section-heading .hl { color: var(--green); }
.section-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.section-title { font-size: 1rem; font-weight: 800; color: var(--text); }
.section-title span { color: var(--green); }
.section-meta { font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }

/* ===== VERDICT BOX ===== */
.verdict-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.verdict-box h3 { font-size: 0.85rem; font-weight: 800; color: var(--green-dark); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.verdict-box p { font-size: 0.9rem; color: var(--text); line-height: 1.65; }

/* ===== "VEJA TAMBÉM" - Related section ===== */
.related-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 48px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.related-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
}
.related-card:hover { border-color: rgba(0,200,83,0.4); transform: translateY(-2px); }
.related-card img { width: 72px; height: 72px; object-fit: contain; border-radius: 8px; background: #f8fafc; padding: 4px; }
.related-card .rc-name { font-size: 0.83rem; font-weight: 700; color: var(--text); }
.related-card .rc-rate { font-size: 0.72rem; color: var(--green-dark); font-weight: 700; }
.related-card .rc-desc { font-size: 0.72rem; color: var(--text-muted); line-height: 1.4; }

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(135deg, #001a08 0%, #00301a 100%);
  border-top: 1px solid rgba(0,200,83,0.2);
  border-bottom: 1px solid rgba(0,200,83,0.2);
  padding: 56px 20px;
  text-align: center;
}
.cta-final-inner { max-width: 640px; margin: 0 auto; }
.cta-final h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; color: var(--white); letter-spacing: -0.03em; margin-bottom: 12px; }
.cta-final p { font-size: 0.95rem; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.cta-final .price-row { margin-bottom: 24px; }
.cta-final .price-old { font-size: 0.82rem; color: rgba(255,255,255,0.4); text-decoration: line-through; }
.cta-final .price-new { font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; }
.cta-final .price-inst { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ===== ARTICLE PROSE ===== */
.article-body { line-height: 1.75; color: var(--text); }
.article-body h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin: 24px 0 10px;
}
.article-body p { margin-bottom: 16px; font-size: 0.95rem; }
.article-body ul, .article-body ol {
  padding-left: 0;
  list-style: none;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-body ul li, .article-body ol li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
}
.article-body ul li::before { content: '→'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.article-body ol { counter-reset: ol-counter; }
.article-body ol li::before { counter-increment: ol-counter; content: counter(ol-counter)"."; color: var(--green-dark); font-weight: 800; flex-shrink: 0; }
.article-body a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--green); }
.article-body strong { font-weight: 700; color: var(--text); }
.article-body em { color: var(--text-muted); }

/* Internal link callout */
.internal-link-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--green-light);
  border: 1px solid rgba(0,200,83,0.25);
  border-radius: 10px;
  margin: 20px 0;
  font-size: 0.85rem;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s;
}
.internal-link-box:hover { border-color: rgba(0,200,83,0.5); }
.internal-link-box .ilb-arrow { margin-left: auto; color: var(--green-dark); font-weight: 700; flex-shrink: 0; }

/* ===== METHODOLOGY GRID ===== */
.method-section { max-width: 1200px; margin: 0 auto; padding: 0 20px 48px; }
.method-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; margin-top: 20px; }
.method-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; }
.method-icon { font-size: 1.8rem; margin-bottom: 10px; }
.method-card h4 { font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.method-card p { font-size: 0.76rem; color: var(--text-muted); }

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.65);
  backdrop-filter: blur(8px);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
}
.search-overlay.hidden { display: none; }
.search-close {
  position: absolute;
  top: 16px; right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
}
.search-close:hover { background: rgba(255,255,255,0.2); }
.search-wrap {
  width: 100%;
  max-width: 640px;
  margin-top: 10vh;
}
.search-form-box {
  position: relative;
  display: flex;
  align-items: center;
}
.search-icon {
  position: absolute;
  left: 18px;
  font-size: 1rem;
  pointer-events: none;
}
.search-input {
  width: 100%;
  height: 60px;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 100px;
  padding: 0 20px 0 50px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--green); }
.search-results {
  margin-top: 12px;
  max-height: 55vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.15s;
}
.search-result-item:hover { background: var(--green-light); }
.search-result-item img { width: 52px; height: 52px; object-fit: contain; border-radius: 8px; background: var(--navy2); flex-shrink: 0; }
.search-result-item .sri-title { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.search-result-item .sri-desc { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.search-result-item .sri-arrow { margin-left: auto; color: var(--text-muted); flex-shrink: 0; }
.search-no-results { background: rgba(255,255,255,0.08); border-radius: 12px; padding: 20px; text-align: center; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.search-hint { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-align: center; margin-top: 10px; }

/* ===== FOOTER ===== */
footer {
  background: #030914;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 20px 0;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.disclosure {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 32px;
  line-height: 1.55;
}
.disclosure strong { color: rgba(255,255,255,0.7); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand h3 { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.footer-brand h3 em { color: var(--green); font-style: normal; }
.footer-brand p { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.3);
}

/* ===== ABOUT / CONTACT PAGES ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 48px; }
.author-photo { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; border: 4px solid var(--green); display: block; }
.pillar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 24px; }
.pillar-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.pillar-icon { font-size: 2rem; margin-bottom: 12px; }
.pillar-card h3 { font-size: 0.92rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.pillar-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-form-wrap label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.contact-form-wrap input, .contact-form-wrap textarea, .contact-form-wrap select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.875rem;
  background: var(--white);
  color: var(--text);
  outline: none;
  margin-bottom: 14px;
  transition: border-color 0.2s;
  font-family: inherit;
}
.contact-form-wrap input:focus, .contact-form-wrap textarea:focus, .contact-form-wrap select:focus { border-color: var(--green); }
.contact-form-wrap textarea { resize: vertical; min-height: 120px; }
.contact-info-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-info-icon { width: 38px; height: 38px; border-radius: 8px; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-info-item h4 { font-size: 0.8rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.contact-info-item p, .contact-info-item a { font-size: 0.8rem; color: var(--text-muted); }

/* ===== COMPARISON TABLE (artigo) ===== */
.comp-article { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.comp-full-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.comp-full-table thead th { background: var(--navy2); padding: 12px 14px; text-align: left; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); border-bottom: 2px solid var(--border); }
.comp-full-table tbody td { padding: 11px 14px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: middle; }
.comp-full-table tbody tr:last-child td { border-bottom: none; }
.comp-full-table tbody tr:hover td { background: var(--navy2); }
.comp-full-table .winner { color: var(--green-dark); font-weight: 800; }
.comp-full-table .product-name { font-weight: 700; }

/* ===== 404 PAGE ===== */
.error-page { text-align: center; padding: 80px 20px; }
.error-code { font-size: 7rem; font-weight: 900; color: var(--green); line-height: 1; letter-spacing: -0.05em; }
.error-title { font-size: 1.8rem; font-weight: 900; color: var(--text); margin: 16px 0 12px; }
.error-desc { font-size: 1rem; color: var(--text-muted); margin-bottom: 32px; }
.error-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ===== TABLE ALIASES (sub-pages usam .table-wrapper/.compare-table) ===== */
.table-wrapper { overflow-x: auto; margin: 20px 0; border-radius: var(--radius); border: 1px solid var(--border); }
.compare-table, .rates-table { width: 100%; border-collapse: collapse; font-size: 0.83rem; }
.compare-table th, .rates-table th {
  background: var(--navy2);
  padding: 10px 14px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}
.compare-table td, .rates-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text);
}
.compare-table tr:last-child td, .rates-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td, .rates-table tr:hover td { background: var(--navy2); }
.compare-table .winner { color: var(--green-dark); font-weight: 700; }
.highlight-row td { background: var(--green-light) !important; }
.total-row td { background: var(--navy3); font-weight: 700; }
.table-note, .calc-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 10px; line-height: 1.55; font-style: italic; }

/* ===== REVIEW ARTICLE LAYOUT (sub-pages) ===== */
.review-article { max-width: 860px; margin: 40px auto; padding: 0 20px; }
.article-header { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.article-header h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  line-height: 1.18;
}
.article-meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0; }
.article-meta strong { color: var(--text); }
.article-intro { font-size: 0.97rem; color: var(--text-muted); line-height: 1.72; margin-top: 14px; }

/* ===== INFO BOX / CALC BOX (sub-pages) ===== */
.info-box {
  display: flex;
  gap: 12px;
  padding: 14px 18px;
  background: var(--green-light);
  border: 1px solid rgba(0,200,83,0.25);
  border-radius: 10px;
  margin: 24px 0;
  font-size: 0.87rem;
  color: var(--text);
  line-height: 1.65;
}
.info-box::before { content: '💡'; flex-shrink: 0; font-size: 1.1rem; }
.info-box a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
.info-box strong { color: var(--text); }
.calc-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.calc-box h3 { font-size: 0.9rem; font-weight: 800; color: var(--text); margin-bottom: 14px; }

/* ===== CTA GROUP (sub-pages) ===== */
.cta-group { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.btn-cta.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #000;
}
.btn-cta.btn-primary:hover { filter: brightness(1.08); transform: scale(1.02); }
.btn-cta.btn-secondary {
  background: var(--navy2);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-cta.btn-secondary:hover { background: var(--navy3); }

/* ===== BREADCRUMB OL/LI (sub-pages + guias usam <ol><li>) ===== */
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 0; }
.breadcrumb ol li { display: flex; align-items: center; }
.breadcrumb ol li + li::before { content: '›'; opacity: 0.5; margin: 0 6px; }
.breadcrumb ol li a { color: var(--green); }
.breadcrumb ol li a:hover { text-decoration: underline; }
.breadcrumb ol li[aria-current="page"],
.breadcrumb ol li span:last-child { color: var(--text-muted); }

/* Variante light - breadcrumb em hero de fundo escuro */
.breadcrumb-light { color: rgba(255,255,255,0.8); }
.breadcrumb-light a { color: rgba(255,255,255,0.95); }
.breadcrumb-light a:hover { color: #fff; text-decoration: underline; }
.breadcrumb-light ol li + li::before { opacity: 0.6; color: #fff; }
.breadcrumb-light ol li[aria-current="page"] span,
.breadcrumb-light ol li span { color: rgba(255,255,255,0.7); }

/* ===== FAQ ALIASES (main reviews usam .faq-question/.faq-answer) ===== */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  user-select: none;
  font-family: inherit;
}
.faq-question::after { content: '+'; font-size: 1.1rem; flex-shrink: 0; transition: transform 0.2s; color: var(--text-muted); }
.faq-question:hover { color: var(--green-dark); }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 16px 14px;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { display: block; padding-top: 14px; }
.faq-answer a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
.faq-item.open .faq-question { color: var(--green-dark); }

/* ===== INTERNAL LINKS SECTION (páginas com poucos links) ===== */
.internal-links-section {
  border-top: 2px solid var(--border);
  padding: 28px 0 8px;
  margin-top: 44px;
}
.internal-links-section h3 {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.internal-links-section h3::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.internal-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.internal-links-grid a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.2s, background 0.15s;
  text-decoration: none;
}
.internal-links-grid a:hover { border-color: rgba(0,200,83,0.4); background: var(--green-light); color: var(--green-dark); }
.internal-links-grid a .ilg-arrow { margin-left: auto; color: var(--green-dark); flex-shrink: 0; font-size: 0.8rem; }

/* ===== UTILITIES ===== */
.hidden { display: none !important; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-wrap { padding: 48px 0; }
.text-green { color: var(--green); }
.text-muted { color: var(--text-muted); }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); display: inline-block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .main-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .product-hero-inner { grid-template-columns: 1fr; }
  .product-hero-img { display: none; }
}
@media (max-width: 768px) {
  #main-nav { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .related-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .cta-final { padding: 40px 16px; }
}
