﻿/* ============================================================
   CuÃ¡lDura.com.ar â€” Sistema de diseÃ±o global
   ============================================================ */

:root {
  --blue:         #3483fa;
  --blue-dark:    #2968c8;
  --blue-soft:    #ebf2ff;
  --yellow:       #ffe600;
  --yellow-dk:    #f5d200;
  --green:        #00a650;
  --green-soft:   #e8f8ee;
  --orange:       #ff6200;
  --orange-soft:  #fff0e8;
  --gray-100:     #f5f5f5;
  --gray-200:     #ebebeb;
  --gray-300:     #d9d9d9;
  --gray-400:     #999;
  --gray-600:     #666;
  --gray-700:     #4B5563;
  --gray-800:     #333;
  --text:         #1a1a1a;
  --white:        #fff;
  --radius:       12px;
  --radius-sm:    8px;
  --shadow:       0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.13);
  --transition:   all 0.18s ease;

  /* Aliases â€” para compatibilidad con buscar.html, 404.html y componentes futuros */
  --primary:       var(--blue);
  --primary-dark:  var(--blue-dark);
  --primary-light: var(--blue-soft);
  --gray-900:      var(--text);
  --gray-500:      var(--gray-600);
}

/* â”€â”€ RESET â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* Scroll margin for sticky header offset on all anchor targets */
[id] { scroll-margin-top: 80px; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--gray-100);
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; background-color: white; }
button { cursor: pointer; font-family: inherit; }

/* ============================================================
   TOPBAR / NAV
   ============================================================ */
.topbar {
  background: var(--ml-yellow);
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 24px;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: 0 1px 6px rgba(0,0,0,.12);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: #111;
  letter-spacing: -0.5px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon { display: flex; align-items: center; line-height: 1; }
.logo-icon svg { display: block; }
.logo-text-wrap { display: flex; flex-direction: column; gap: 0; }
.logo-name {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #111;
  line-height: 1.1;
}
.logo-tag {
  font-size: 10px;
  color: #555;
  font-weight: 600;
  line-height: 1;
}

.search-wrap {
  flex: 1;
  max-width: 340px;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid rgba(0,0,0,.2);
  height: 40px;
  transition: var(--transition);
}
.search-wrap:focus-within { border-color: rgba(0,0,0,.4); box-shadow: 0 0 0 2px rgba(0,0,0,0.08); }

.search-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 14px;
  font-size: 14px;
  font-family: 'Nunito Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  height: 36px;
}
.search-wrap input::placeholder { color: var(--gray-400); }

.search-wrap button {
  background: transparent;
  border: none;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.search-wrap button:hover { background: rgba(0,0,0,.06); }

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.nav-link {
  color: #222;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-link:hover { background: rgba(0,0,0,.08); color: #000; }
.nav-link-cta { background: #f5c800; color: #1a1a1a !important; border-radius: 20px; padding: 6px 14px; }
.nav-link-cta:hover { background: #e6b800 !important; color: #000 !important; }

/* Mobile search link (lupa) */
.mobile-search-link {
  display: none;
  align-items: center;
  justify-content: center;
  color: #222;
  padding: 4px;
  text-decoration: none;
  line-height: 1;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  background: transparent;
  border: none;
  color: #222;
  padding: 4px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   CATEGORY BAR
   ============================================================ */
.catbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 12px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 64px; /* altura del topbar actual */
  z-index: 200;
}
.catbar::-webkit-scrollbar { display: none; }

.cat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  text-decoration: none;
}
.cat-item:hover { color: var(--blue); border-bottom-color: rgba(52,131,250,0.4); }
.cat-item.active { color: var(--blue); border-bottom-color: var(--blue); }
.cat-icon { font-size: 15px; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 24px;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.see-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  transition: color 0.15s;
}
.see-all:hover { color: var(--blue-dark); text-decoration: underline; }

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #1a5fc8 55%, #0e3fa0 100%);
  border-radius: var(--radius);
  padding: 36px 40px;
  color: var(--white);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-banner::before {
  content: '';
  position: absolute;
  right: -40px; top: -60px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.hero-banner::after {
  content: '';
  position: absolute;
  right: 80px; bottom: -80px;
  width: 200px; height: 200px;
  background: rgba(255,230,0,0.07);
  border-radius: 50%;
  pointer-events: none;
}

.hero-text { flex: 1; position: relative; z-index: 1; }

.hero-eyebrow {
  background: var(--yellow);
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-text h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 14px;
  opacity: 0.88;
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 22px;
}

.hero-stats { display: flex; gap: 24px; flex-wrap: wrap; }

.hstat { display: flex; flex-direction: column; gap: 2px; }

.hstat-num {
  font-family: 'Nunito', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.hstat-label { font-size: 12px; opacity: 0.75; }

.hero-emoji {
  font-size: 96px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.25));
  animation: float 3s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ============================================================
   CATEGORY CARDS GRID
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}

.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 16px 20px 18px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.cat-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--blue);
}

.cat-card-icon { font-size: 34px; line-height: 1; }

.cat-card-name {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.cat-card-sub {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.4;
}

.cat-card-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 2px 8px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 4px;
  align-self: flex-start;
}

.cat-card .arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 20px;
  transition: var(--transition);
}
.cat-card:hover .arrow {
  color: var(--blue);
  transform: translateY(-50%) translateX(3px);
}

/* ============================================================
   FEATURED GUIDES GRID
   ============================================================ */
.guides-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}

.guide-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  text-decoration: none;
  color: inherit;
}
.guide-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: var(--blue);
}

.guide-card-header {
  padding: 20px 20px 14px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  flex: 1;
}

.guide-emoji { font-size: 40px; flex-shrink: 0; line-height: 1; }

.guide-meta { flex: 1; }

.guide-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 6px;
}
.badge-hot  { background: var(--orange-soft); color: var(--orange); }
.badge-new  { background: var(--green-soft);  color: var(--green); }
.badge-top  { background: var(--blue-soft);   color: var(--blue); }

.guide-title {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 6px;
}

.guide-desc {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.5;
}

.guide-footer {
  padding: 11px 20px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gray-100);
}

.guide-stats { display: flex; gap: 14px; }

.gstat {
  font-size: 12px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 4px;
}
.gstat strong { color: var(--text); font-weight: 700; }

.guide-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

/* ============================================================
   TOP PICKS
   ============================================================ */
.top-picks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}

.pick-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.pick-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--blue);
}

.pick-img {
  background: var(--gray-100);
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}
.pick-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }

.pick-rank {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--blue);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 13px;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.pick-rank.gold { background: #f5a623; }

.pick-sold {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  z-index: 2;
}

.pick-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }

.pick-name {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.pick-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
  font-size: 12px;
}
.stars-yellow { color: #f5a623; letter-spacing: -1px; }
.rating-val   { font-weight: 700; color: var(--text); }
.rating-c     { color: var(--gray-400); }

.pick-price-old {
  font-size: 12px;
  color: var(--gray-400);
  text-decoration: line-through;
  margin-bottom: 1px;
}
.pick-price {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 2px;
  line-height: 1;
}
.pick-cuotas {
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 12px;
}

.btn-guide {
  display: block;
  text-align: center;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  padding: 9px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
  border: none;
  font-family: 'Nunito Sans', sans-serif;
}
.btn-guide:hover { background: var(--blue-dark); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  margin-bottom: 36px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  position: relative;
}
.how-step:not(:last-child)::after {
  content: '\2192';
  position: absolute;
  right: -12px; top: 22px;
  font-size: 18px;
  color: var(--gray-300);
}

.how-icon { font-size: 26px; }

.how-num {
  width: 42px; height: 42px;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.how-step h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
}
.how-step p { font-size: 12px; color: var(--gray-600); line-height: 1.5; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  border: 1px solid var(--gray-200);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
}
.trust-icon { font-size: 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 32px 20px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--blue);
  margin-bottom: 14px;
}
.footer-logo span { color: var(--yellow-dk); }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-links a { font-size: 13px; color: var(--gray-600); transition: color 0.15s; }
.footer-links a:hover { color: var(--blue); }

.footer-disc {
  font-size: 11px;
  color: var(--gray-400);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 12px 0;
  font-size: 13px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--blue); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--blue-dark); text-decoration: underline; }
.breadcrumb .sep { color: var(--gray-400); font-size: 12px; }
.breadcrumb .current { color: var(--text); font-weight: 600; }

/* ============================================================
   ARTICLE HERO
   ============================================================ */
.article-hero {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.article-cat-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
  background: var(--blue-soft);
  color: var(--blue);
}

.article-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 14px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #6B7280;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 6px;
}
.article-meta .dot { color: #D1D5DB; font-size: 14px; line-height: 1; }
.article-meta strong { color: #374151; font-weight: 700; }

.updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  padding: 3px 10px;
  border-radius: 0;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

/* ============================================================
   SUMMARY CARD (guÃ­a)
   ============================================================ */
.summary-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-left: 4px solid var(--blue);
}

.summary-stat {}
.stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.stat-value {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-value.green { color: var(--green); }
.stat-value.blue  { color: var(--blue); }

.stat-sub { font-size: 12px; color: var(--gray-600); }

/* ============================================================
   FILTER BAR (guÃ­a)
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filter-pill {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Nunito Sans', sans-serif;
}
.filter-pill:hover,
.filter-pill.active {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}

/* ============================================================
   PRODUCT CARDS (guÃ­a)
   ============================================================ */
.products-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  align-items: start;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  margin-bottom: 14px;
}
.product-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-medium); }

.product-card.winner {
  border-color: var(--yellow);
  background: linear-gradient(135deg, rgba(255,230,0,0.04) 0%, var(--white) 50%);
}

/* Guías con imagen: pc-header y pc-body ocupan todo el ancho */
.product-card .pc-header,
.product-card .pc-body { grid-column: 1 / -1; }
.product-card .pc-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pc-img {
  width: 120px;
  height: 96px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--bg-soft, #f5f7fa);
  padding: 4px;
}
.pc-text { flex: 1; min-width: 0; }
.pc-header {
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 14px;
  margin-bottom: 4px;
}
.pc-rank-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.pc-title {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}
.pc-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.pc-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 14px;
}
.pc-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.pc-proscons-title {
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
}
.pc-pros ul, .pc-cons ul {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}
.pc-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.winner-ribbon {
  position: absolute;
  top: 0; left: 0;
  background: var(--yellow);
  color: var(--text);
  font-size: 10px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  padding: 3px 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom-right-radius: 8px;
}

.rank-num {
  position: absolute;
  top: 12px; right: 16px;
  font-family: 'Nunito', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  pointer-events: none;
}

.product-img-wrap {
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  font-size: 52px;
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 8px; border-radius: 6px; }
.product-img-wrap .product-emoji { font-size: 52px; display: flex; align-items: center; justify-content: center; height: 100%; }

.product-info { display: flex; flex-direction: column; gap: 10px; }

.product-name {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  color: #111827;
  padding-right: 44px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  flex-wrap: wrap;
}

.product-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 4px;
}
.tag.green { background: var(--green-soft); border-color: #c3ecda; color: var(--green); }
.tag.yellow { background: #fffde0; border-color: #f5e200; color: #887700; }
.tag.blue { background: var(--blue-soft); border-color: #c0d8fd; color: var(--blue); }
.tag.orange { background: var(--orange-soft); border-color: #ffd4b8; color: var(--orange); }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pro-con-list { display: flex; flex-direction: column; gap: 5px; }

.pro-item, .con-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.4;
}
.pro-item::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.con-item::before { content: '\2715'; color: #e53935; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.product-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
  min-width: 150px;
}

.price-block { text-align: right; }

.price-old {
  font-size: 12px;
  color: var(--gray-400);
  text-decoration: line-through;
  font-family: 'Nunito', sans-serif;
}

.price-main {
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.price-cuotas {
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
  margin-top: 3px;
}

.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--ml-yellow);
  color: #111;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  width: 100%;
  border: none;
  font-family: 'Nunito Sans', sans-serif;
  white-space: nowrap;
}
.btn-buy:hover { background: var(--ml-yellow-dark); transform: translateY(-1px); }
/* BotÃ³n sin link de afiliado aÃºn â€” apunta al link canÃ³nico, sin comisiÃ³n */
.btn-buy--pending { background: var(--gray-400); cursor: default; }
.btn-buy--pending:hover { background: var(--gray-400); transform: none; }

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--ml-yellow);
  color: #111;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  width: 100%;
  border: none;
  font-family: 'Nunito Sans', sans-serif;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--ml-yellow-dark); transform: translateY(-1px); }

.btn-secondary {
  color: var(--gray-600);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s;
}
.btn-secondary:hover { color: var(--blue); text-decoration: underline; }

/* ============================================================
   PRODUCTS SECTION LABELS
   ============================================================ */
.products-section-label {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  padding: 18px 0 6px;
  border-top: 2px solid var(--gray-200);
  margin-top: 8px;
}
.products-section-label:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

/* Criteria evaluation bar */
.criteria-bar {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
}
.criteria-title {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.criteria-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.criteria-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.criteria-label { font-size: 12px; font-weight: 800; color: var(--text); }
.criteria-desc { font-size: 11px; color: var(--gray-500); line-height: 1.4; }
@media (min-width: 640px) {
  .criteria-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   DISABLED CAT ITEMS
   ============================================================ */
.cat-item.disabled {
  opacity: .45;
  cursor: default;
  pointer-events: none;
}
.cat-item.disabled:hover {
  background: transparent;
  color: inherit;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-table-wrap {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
}
.ct-title {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-500);
  padding: 10px 16px 0;
}
.ct-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 620px;
}
.comparison-table thead th {
  background: var(--gray-100);
  color: var(--gray-500);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 8px 12px;
  text-align: left;
  white-space: nowrap;
}
.comparison-table tbody tr {
  border-top: 1px solid var(--gray-200);
  transition: background .1s;
}
.comparison-table tbody tr:hover { background: var(--gray-100); }
.comparison-table tbody tr:first-child { background: #fffbf0; }
.comparison-table td { padding: 10px 12px; vertical-align: middle; }
.ct-rank { font-size: 15px; width: 32px; }
.ct-name { font-weight: 600; color: var(--text); min-width: 160px; }
.ct-for { color: var(--gray-500); white-space: nowrap; }
.ct-price { font-weight: 800; color: var(--green); white-space: nowrap; }
.ct-cta { width: 60px; }
.ct-btn {
  display: inline-block;
  background: var(--blue);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}
.ct-btn:hover { background: var(--blue-dark); }

/* ============================================================
   RELATED GUIDES
   ============================================================ */
.related-guides {
  margin-bottom: 24px;
}
.related-guides-title {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.related-guides-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.related-guide-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 12px 16px;
  text-decoration: none;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.related-guide-card:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 8px rgba(37,99,235,.08);
}
.related-guide-hub {
  border-color: var(--blue-soft);
  background: var(--blue-soft);
}
.related-guide-emoji {
  font-size: 22px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.related-guide-info {
  flex: 1;
  min-width: 0;
}
.related-guide-title {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.related-guide-desc {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 1px;
}
.related-guide-arrow {
  font-size: 18px;
  color: var(--gray-400);
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .related-guides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ============================================================
   METHODOLOGY BANNER
   ============================================================ */
.method-banner {
  background: var(--blue-soft);
  border: 1.5px solid #c0d8fd;
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.method-icon { font-size: 28px; flex-shrink: 0; }

.method-text h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.method-text p { font-size: 13px; color: var(--gray-600); line-height: 1.55; }

/* ============================================================
   GUIDE CONTENT SECTION
   ============================================================ */
.guide-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.guide-content h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}

.guide-content h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-top: 26px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.guide-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.guide-content p:last-child { margin-bottom: 0; }

.tip-box {
  background: var(--blue-soft);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  margin: 14px 0;
  font-size: 13px;
  color: var(--gray-800);
  line-height: 1.6;
}
.tip-box strong { color: var(--blue); font-weight: 700; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  margin-bottom: 28px;
}

.faq-section h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  user-select: none;
  gap: 12px;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--blue); }

.faq-icon {
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 16px;
}

/* ============================================================
   HUB DE CATEGORÃA
   ============================================================ */
/* ============================================================
   PREMIUM HUB HERO â€” CualDura redesign
   ============================================================ */

.hub-hero {
  background: linear-gradient(135deg, #0E4FD8 0%, #063B9E 100%);
  border-radius: 18px;
  padding: 42px 48px;
  color: #fff;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 48, 135, 0.22);
}

.hub-hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  pointer-events: none;
}

.hub-hero::after {
  content: "";
  position: absolute;
  right: 120px;
  bottom: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.13);
  pointer-events: none;
}

.hub-hero-text {
  position: relative;
  z-index: 2;
}

.hub-hero-text .hub-badge,
.hub-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 16px;
}

.hub-hero-text h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
  margin: 0 0 16px;
  max-width: 720px;
}

.hub-hero-text p {
  font-size: 18px;
  line-height: 1.58;
  opacity: .95;
  max-width: 640px;
  margin: 0;
}

.hub-visual {
  position: relative;
  z-index: 2;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-visual img {
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.28));
}

.hub-emoji {
  position: relative;
  z-index: 2;
  font-size: 112px;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.25));
}
/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.45s ease forwards;
  animation-play-state: running;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.fade-in:nth-child(1) { animation-delay: 0.05s; }
.fade-in:nth-child(2) { animation-delay: 0.10s; }
.fade-in:nth-child(3) { animation-delay: 0.15s; }
.fade-in:nth-child(4) { animation-delay: 0.20s; }
.fade-in:nth-child(5) { animation-delay: 0.25s; }
.fade-in:nth-child(6) { animation-delay: 0.30s; }

/* ============================================================
   DISCOUNT BADGE
   ============================================================ */
.discount-badge {
  background: #f44336;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  font-family: 'Nunito', sans-serif;
}

/* ============================================================
   RESPONSIVE â€” MOBILE
   ============================================================ */
@media (max-width: 860px) {
  .product-card {
    grid-template-columns: 100px 1fr;
  }
  .product-cta {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .btn-buy { width: auto; flex: 1; min-width: 160px; }
  .price-block { text-align: left; }
  .rank-num { display: none; }
}

@media (max-width: 640px) {
  .topbar { gap: 10px; }
  .nav-right { display: none; }
  .nav-hamburger { display: block; }
  .mobile-search-link { display: flex; }
  .search-wrap { max-width: 100%; }

  .hero-banner { flex-direction: column; padding: 24px 20px; gap: 16px; }
  .hero-emoji { display: none; }
  .hero-stats { gap: 16px; }

  .guides-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-step::after { display: none; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .top-picks { grid-template-columns: 1fr 1fr; }

  .summary-card { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }

  .article-hero { padding: 20px; }
  .guide-content { padding: 20px; }
  .faq-section { padding: 20px; }
  .how-section { padding: 20px 20px; }

  .product-card { grid-template-columns: 90px 1fr; padding: 14px; gap: 14px; }
  .product-cta { grid-column: 1 / -1; align-items: stretch; }
  .btn-buy { width: 100%; }
  .price-block { text-align: left; }

  .trust-bar { gap: 14px; }
  .container { padding: 16px 14px; }
}

@media (max-width: 400px) {
  .top-picks { grid-template-columns: 1fr; }
  .cat-grid  { grid-template-columns: 1fr 1fr; }
  .summary-card { grid-template-columns: 1fr; }
}

/* â”€â”€ Nuestra recomendaciÃ³n rÃ¡pida â”€â”€ */
.recomendacion-rapida {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 0 0 32px 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.recomendacion-rapida h2 {
  font-size: 1.2rem;
  font-weight: 900;
  color: #111827;
  margin: 0 0 14px 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}
.rr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.rr-item {
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.92rem;
  line-height: 1.45;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
}
.rr-item strong { display: block; margin-bottom: 2px; font-size: 0.85rem; color: var(--gray-600,#6b7280); }
.rr-salto { font-size: 0.82rem; color: var(--gray-500,#9ca3af); margin-top: 14px; }
@media (max-width: 480px) {
  .rr-grid { grid-template-columns: 1fr; }
  .recomendacion-rapida { padding: 18px 16px; }
}

/* â”€â”€ Nuestra opiniÃ³n honesta â”€â”€ */
.opinion-honesta {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid var(--green);
  border-radius: 12px;
  padding: 28px 28px 20px;
  margin: 0 0 32px;
}
.opinion-honesta h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 20px;
}
.opinion-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #f3f4f6;
}
.opinion-item:last-child { border-bottom: none; padding-bottom: 0; }
.opinion-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }
.opinion-item strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.opinion-item p { font-size: 0.9rem; line-height: 1.55; color: #374151; margin: 0; }
@media (max-width: 600px) {
  .opinion-honesta { padding: 20px 16px; }
}

/* â”€â”€ Siguientes pasos â”€â”€ */
.siguientes-pasos {
  background: var(--blue-soft);
  border-radius: 14px;
  padding: 28px 28px 24px;
  margin: 0 0 32px;
}
.siguientes-pasos h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin: 0 0 8px;
}
.siguientes-pasos > p {
  font-size: 0.92rem;
  color: var(--gray-700);
  margin: 0 0 16px;
}
.sig-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sig-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
  transition: box-shadow .15s, transform .15s;
}
.sig-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.12); transform: translateY(-1px); }
.sig-emoji { font-size: 1.4rem; flex-shrink: 0; }
.sig-card div { flex: 1; }
.sig-card strong { display: block; font-size: 0.92rem; font-weight: 700; margin-bottom: 2px; }
.sig-card span { font-size: 0.82rem; color: var(--gray-600); }
.sig-arrow { font-size: 1.1rem; color: var(--blue); flex-shrink: 0; }
@media (max-width: 600px) {
  .siguientes-pasos { padding: 20px 16px; }
}

/* â”€â”€ RecomendaciÃ³n rÃ¡pida â€” cards clickeables â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rr-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1.5px solid #e5e7eb;
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.rr-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.10); }
.rr-label { font-size: 10px; font-weight: 900; color: var(--ml-green-dark); text-transform: uppercase; letter-spacing: .05em; }
.rr-name  { font-size: 0.97rem; font-weight: 700; color: var(--gray-900); line-height: 1.3; }
.rr-desc  { font-size: 0.87rem; color: var(--gray-600); margin: 0; line-height: 1.4; }
.rr-price { font-size: 1.1rem; font-weight: 900; color: #111; }
.rr-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-top: 4px; }
.rr-anchor { font-size: 0.85rem; color: var(--gray-500); text-decoration: none; }
.rr-anchor:hover { color: var(--blue); text-decoration: underline; }

/* ============================================================
   REDESIGN v2 â€” Sprint 4
   Paleta ML, header amarillo, layout 2 col, sidebar sticky
   ============================================================ */

/* â”€â”€ Variables nuevas â”€â”€ */
:root {
  --ml-yellow:      #FFE600;
  --ml-yellow-dark: #E6CF00;
  --ml-blue:        #3483FA;
  --ml-blue-dark:   #2968C8;
  --ml-green:       #00A650;
  --ml-green-dark:  #008744;
  --text-main:      #1F2937;
  --text-soft:      #4B5563;
  --text-muted:     #6B7280;
  --bg-page:        #F5F5F5;
  --bg-card:        #FFFFFF;
  --border-soft:    #E5E7EB;
  --border-medium:  #D1D5DB;
  --danger:         #E53935;
  --warning-bg:     #FFF8DB;
  --success-bg:     #EAF8EE;
  --blue-soft-2:    #EBF3FF;
  --radius-lg:      16px;
  --shadow-sm:      0 1px 4px rgba(0,0,0,.06);
  --shadow-md:      0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:      0 8px 28px rgba(0,0,0,.12);
}

/* â”€â”€ rr-btn â€” amarillo ML â”€â”€ */
.rr-btn {
  background: var(--ml-yellow);
  color: #111;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
}
.rr-btn:hover { background: var(--ml-yellow-dark); }

/* â”€â”€ Layout 2 columnas â€” guÃ­as comerciales â”€â”€ */
.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}
.guide-main { min-width: 0; }
.guide-sidebar {
  position: sticky;
  top: 118px; /* topbar 56px + catbar 44px + gap */
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* â”€â”€ Sidebar cards â”€â”€ */
.sidebar-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 0;
  box-shadow: var(--shadow-sm);
  padding: 18px 20px;
}
.sidebar-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: var(--text-main);
  margin: 0 0 12px;
}

/* ── Sidebar-block (used in new guide pages) ── */
.sidebar-block {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 16px 18px;
}
.sidebar-block-title {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.sidebar-toc {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-toc li { counter-increment: none; }
.sidebar-toc a {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  padding: 5px 8px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .12s, color .12s;
  line-height: 1.4;
}
.sidebar-toc a:hover { background: var(--blue-soft); color: var(--ml-blue); }
.sidebar-toc li { list-style: none; }
.sidebar-toc { counter-reset: toc-counter; }
.sidebar-toc li::before { display: none; }
ol.sidebar-toc { counter-reset: toc-ctr; }
ol.sidebar-toc li { display: flex; align-items: baseline; gap: 6px; }
ol.sidebar-toc li::before {
  counter-increment: toc-ctr;
  content: counter(toc-ctr) ".";
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  flex-shrink: 0;
  width: 16px;
}
ol.sidebar-toc li a { padding: 4px 4px; }
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-links li { list-style: none; }
.sidebar-links a {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ml-blue);
  padding: 5px 8px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .12s;
  line-height: 1.4;
}
.sidebar-links a:hover { background: var(--blue-soft); }
.sidebar-disclaimer {
  background: #F9FAFB;
  border-color: var(--border-soft);
}
.sidebar-disclaimer p {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* TOC */
.toc-card ul { list-style: none; padding: 0; margin: 0; }
.toc-card li {
  margin-bottom: 10px;
  padding-left: 16px;
  position: relative;
  font-size: 13px;
}
.toc-card li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--ml-green);
  border-radius: 50%;
  position: absolute;
  left: 0; top: .48em;
}
.toc-card a {
  color: var(--text-main);
  font-weight: 600;
  transition: color .12s;
}
.toc-card a:hover { color: var(--ml-blue); }
.toc-card a.active { color: var(--ml-blue); }

/* Precios verificados */
.price-trust-card { background: #fff; border-color: var(--border-soft); }
.price-trust-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.price-trust-header h3 { margin: 0; color: #16A34A; }
.price-trust-icon { color: #16A34A; flex-shrink: 0; }
.price-trust-card p { font-size: 13px; color: #374151; line-height: 1.55; margin: 0; }

/* ArtÃ­culos relacionados */
.related-card h3 { margin-bottom: 14px; }
.related-card a.related-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  text-decoration: none;
}
.related-card a.related-item:last-of-type { border-bottom: none; padding-bottom: 0; }
.related-item-thumb {
  width: 110px;
  height: 72px;
  object-fit: cover;
  border-radius: 0;
  background: #F3F4F6;
  border: 1px solid var(--border-soft);
  flex-shrink: 0;
}
.related-item-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.related-item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
}
.related-item:hover .related-item-title { color: var(--ml-blue); }
.related-read-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--ml-blue);
}
.related-read-more {
  display: block;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border-soft);
  font-size: 13px;
  font-weight: 700;
  color: var(--ml-blue);
  text-decoration: none;
}
.related-read-more:hover { text-decoration: underline; }

/* Transparencia */
.transparency-card { background: #fff; }
.transparency-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.transparency-header h3 { margin: 0; }
.transparency-icon { color: #6B7280; flex-shrink: 0; }
.transparency-card p { font-size: 12px; color: #6B7280; line-height: 1.55; margin: 0 0 8px; }
.transparency-card a { color: var(--ml-blue); font-size: 12px; font-weight: 700; text-decoration: none; }
.transparency-card a:hover { text-decoration: underline; }

/* â”€â”€ Hero: letter-spacing refinement â”€â”€ */
.article-hero h1 {
  letter-spacing: -0.03em;
  color: #111827;
}

/* ============================================================
   GUIDE HERO â€” editorial hero (reemplaza article-hero en guÃ­as)
   ============================================================ */
.guide-hero {
  padding: 20px 0 4px;
  margin-bottom: 4px;
}
.guide-hero .breadcrumb {
  margin-bottom: 16px;
}
.guide-hero .guide-meta-row {
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.guide-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  color: #111827;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}
.guide-hero .trust-chips {
  margin-top: 14px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .guide-hero { padding: 14px 0 0; }
  .guide-hero h1 { font-size: clamp(22px, 6vw, 34px); }
}
.guide-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.badge-soft {
  background: #EEF2F7;
  color: #374151;
  border: 1px solid #D9DEE8;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
}
.guide-intro {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-main);
  max-width: 680px;
  margin: 0 0 18px;
}

/* Trust chips */
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #F9FAFB;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
}

/* â”€â”€ rr-card-img â”€â”€ */
.rr-card-img {
  width: 100%;
  height: 90px;
  object-fit: contain;
  background: #F5F5F5;
  border-radius: 8px;
  display: block;
  margin-bottom: 6px;
}

/* â”€â”€ Trust footer â”€â”€ */
.trust-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
}
.trust-footer-item {}
.trust-footer-item h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.trust-footer-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* â”€â”€ Comparison table â”€â”€ */
.comparison-section {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 22px 24px;
  margin-bottom: 24px;
}
.comparison-section h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #111827;
  margin: 0 0 16px;
}
.table-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid var(--border-soft); }
.comparison-table th {
  background: #FAFAFA;
  color: #374151;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-soft);
  text-align: left;
  white-space: nowrap;
}
.comparison-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: middle;
  color: var(--text-main);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .winner-row { background: #F4FFF6; }
.table-winner-badge {
  display: inline-block;
  background: var(--ml-green);
  color: #fff;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
}
.table-product-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  min-width: 160px;
}
.table-product-cell img {
  width: 44px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
  background: #F5F5F5;
}
.table-cta {
  display: inline-block;
  background: var(--ml-yellow);
  color: #111;
  padding: 6px 12px;
  border-radius: 7px;
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
  transition: background .12s;
}
.table-cta:hover { background: var(--ml-yellow-dark); }

/* â”€â”€ Buying tips â”€â”€ */
.buying-tips {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 22px 24px;
  margin-bottom: 24px;
}
.buying-tips h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #111827;
  margin: 0 0 16px;
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.tip-item {
  background: #F9FAFB;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 16px;
}
.tip-icon { font-size: 26px; margin-bottom: 8px; }
.tip-item h3 {
  font-size: 13px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 5px;
}
.tip-item p { font-size: 12px; color: var(--text-soft); margin: 0; line-height: 1.5; }
.buying-tips .guide-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--ml-blue);
  font-size: 13px;
  font-weight: 700;
}
.buying-tips .guide-link:hover { text-decoration: underline; }

/* â”€â”€ Products section mejorada â”€â”€ */
.products-section { margin-bottom: 24px; }
.products-section-title {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 16px;
}
/* data-position visible en debug â€” producciÃ³n oculto */
[data-event] {}

/* â”€â”€ FAQ: ya consolidada en definiciÃ³n canÃ³nica arriba â”€â”€ */
details.faq-details {
  border-bottom: 1px solid var(--border-soft);
  background: #fff;
}
details.faq-details:last-of-type { border-bottom: none; }
details.faq-details summary {
  cursor: pointer;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--text-main);
  padding: 15px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
details.faq-details summary::-webkit-details-marker { display: none; }
details.faq-details summary::after {
  content: '+';
  font-size: 18px;
  color: var(--ml-blue);
  flex-shrink: 0;
  transition: transform .2s;
  font-weight: 400;
}
details.faq-details[open] summary::after { transform: rotate(45deg); }
details.faq-details .faq-answer-body {
  padding: 0 0 14px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* â”€â”€ Responsive redesign â”€â”€ */
@media (max-width: 1024px) {
  .guide-layout {
    grid-template-columns: 1fr;
  }
  .guide-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}
@media (max-width: 720px) {
  .guide-sidebar { grid-template-columns: 1fr; }
  .trust-footer { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr 1fr; }
  .trust-chips { gap: 7px; }
  .trust-chip { font-size: 11px; padding: 4px 10px; }
}
@media (max-width: 480px) {
  .rr-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
}
/* â”€â”€ fin Sprint 4 â”€â”€ */

/* ============================================================
   SPRINT 5 â€” Homepage completa
   ============================================================ */

/* â”€â”€ Nav layout â”€â”€ */
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.nav-chevron { font-size: 10px; opacity: .7; }
.topbar .search-wrap input { font-size: 13px; }

/* â”€â”€ btn-hero â”€â”€ */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ml-yellow);
  color: #111;
  font-weight: 800;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 10px;
  transition: background .15s, transform .15s;
  margin-top: 6px;
  text-decoration: none;
}
.btn-hero:hover { background: var(--ml-yellow-dark); transform: translateY(-1px); }

/* ── HOMEPAGE HERO ── */
.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  grid-template-rows: auto auto;
  gap: 0 36px;
  padding: 46px 0 34px;
  margin-bottom: 8px;
  align-items: center;
}
.home-hero-text {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  padding-bottom: 20px;
}
.home-hero-visual {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-hero-bottom {
  grid-column: 1;
  grid-row: 2;
}
.home-hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 16px;
}
.home-hero-h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(32px, 4.6vw, 50px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111827;
  margin-bottom: 14px;
}
.hero-h1-mark {
  background: linear-gradient(180deg, transparent 62%, var(--yellow) 62%);
}
.home-hero-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 480px;
  margin-bottom: 22px;
}
.home-hero-form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--border-medium);
  border-radius: 14px;
  padding: 6px 6px 6px 16px;
  max-width: 540px;
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
}
.home-hero-form-icon { color: var(--text-muted); flex-shrink: 0; display: flex; }
.home-hero-form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  color: #111827;
  min-width: 0;
  padding: 10px 0;
}
.home-hero-form button {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 800;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.home-hero-form button:hover { background: var(--blue-dark); }
.home-hero-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}
.home-hero .chk-related-links { justify-content: flex-start; margin-top: 10px; }
.home-hero .chk-related-links a { color: var(--blue); }
.home-hero .chk-related-links a:hover { color: var(--blue-dark); }

/* Visual: tarjeta de producto con badges flotantes */
.home-hero-visual { position: relative; padding: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.hero-visual-card {
  position: relative;
  background: transparent;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 0;
}
.hero-visual-img {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.hero-visual-img--full {
  max-width: 540px;
  width: 100%;
  height: auto;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  display: block;
  object-fit: contain;
  transform: translateX(8px);
  filter: drop-shadow(0 20px 34px rgba(15,23,42,.12));
}
.hero-price-chip {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  padding: 8px 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hero-price-num { font-weight: 900; font-size: 14px; color: #111827; }
.hero-price-cta { font-size: 10px; font-weight: 700; color: var(--blue); background: var(--yellow); padding: 2px 10px; border-radius: 999px; }
.hero-float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  white-space: nowrap;
}
.hero-float-green  { background: #E7FAEF; color: #0A8A3F; top: 8px; left: 0; }
.hero-float-orange { background: #FFF3E0; color: #C2620A; top: 50%; right: -4px; }
.hero-float-blue   { background: var(--blue-soft); color: var(--blue-dark); bottom: 64px; left: -6px; }

/* â”€â”€ STATS BANNER (azul, debajo del hero) â”€â”€ */
.home-stats-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #1a5fc8 55%, #0e3fa0 100%);
  border-radius: 20px;
  padding: 28px 26px;
  margin-bottom: 28px;
  color: #fff;
}
.home-stats-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--yellow);
  margin-bottom: 10px;
}
.home-stats-h2 { font-family: 'Nunito', sans-serif; font-size: 24px; font-weight: 900; margin: 0 0 6px; }
.home-stats-sub { font-size: 14px; color: rgba(255,255,255,.85); margin: 0 0 20px; }
.home-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.home-stats-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 12px 14px;
}
.home-stats-item strong { display: block; font-size: 14px; font-weight: 900; }
.home-stats-item span { display: block; font-size: 11px; color: rgba(255,255,255,.8); line-height: 1.3; }
.home-stats-pill {
  background: #00A650;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 5px 9px;
  border-radius: 7px;
  flex-shrink: 0;
}

/* â”€â”€ FRANJA DE CATEGORÍAS (iconos circulares) â”€â”€ */
.home-cat-strip {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  margin-bottom: 28px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.home-cat-strip::-webkit-scrollbar { display: none; }
.home-cat-circle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  width: 68px;
  text-align: center;
}
.cat-circle-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #F3F4F6;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cat-circle-img img { width: 70%; height: 70%; object-fit: contain; }
.cat-circle-badge {
  position: absolute;
  top: -4px;
  right: 2px;
  background: var(--yellow);
  color: #111827;
  font-size: 8px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 999px;
  z-index: 1;
}

/* Desktop: cards horizontales en vez de círculos apilados */
@media (min-width: 901px) {
  .home-cat-strip { flex-wrap: wrap; gap: 12px; overflow: visible; }
  .home-cat-circle {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: auto;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 10px 16px 10px 10px;
    transition: border-color .15s, box-shadow .15s;
  }
  .home-cat-circle:hover { border-color: var(--blue); box-shadow: 0 2px 8px rgba(0,0,0,.06); }
  .cat-circle-img { width: 40px; height: 40px; border-radius: 8px; }
  .home-cat-circle span:last-child { font-size: 13px; }
  .cat-circle-badge { top: -6px; right: -6px; }
}

/* â”€â”€ TRUST BADGES â”€â”€ */
.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 36px;
}
.home-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  padding: 16px 18px;
}
.home-trust-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.home-trust-item h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 3px;
  color: #111827;
}
.home-trust-item p { font-size: 11px; color: var(--text-muted); margin: 0; line-height: 1.45; }

/* â”€â”€ HOME SECTIONS â”€â”€ */
.home-section { margin-bottom: 36px; }
.home-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.home-section-title {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #111827;
  margin: 0;
}
.home-see-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--ml-blue);
}
.home-see-all:hover { text-decoration: underline; }

/* â”€â”€ CATEGORY CARDS â”€â”€ */
.home-cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.home-cat-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .15s, transform .15s;
}
.home-cat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.home-cat-img {
  background: #F5F5F5;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.home-cat-img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.home-cat-body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.home-cat-name { font-weight: 800; font-size: 13px; color: #111827; }
.home-cat-count { font-size: 11px; color: var(--ml-blue); font-weight: 700; }
.cat-arrow { font-size: 13px; }

/* â”€â”€ GUIDE CARDS â”€â”€ */
.home-guides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.home-guide-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow .15s, transform .15s;
}
.home-guide-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.home-guide-img {
  position: relative;
  background: #F5F5F5;
  height: 120px;
  overflow: hidden;
}
.home-guide-img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.home-guide-badge {
  position: absolute;
  top: 8px; left: 8px;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
}
.badge-popular    { background: #16A34A; }
.badge-trending   { background: #2563EB; }
.badge-recommended { background: #DC2626; }
.home-guide-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.home-guide-body strong { font-size: 14px; font-weight: 800; color: #111827; }
.home-guide-body span { font-size: 12px; color: var(--text-soft); line-height: 1.4; }
.home-guide-link { color: var(--ml-blue); font-weight: 700; font-size: 13px; margin-top: auto; }

/* â”€â”€ GUÍAS EN TENDENCIA (con rating + veredicto) â”€â”€ */
.home-trend-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.home-trend-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow .15s, transform .15s;
}
.home-trend-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.home-trend-img { position: relative; background: #F5F5F5; height: 160px; overflow: hidden; }
.home-trend-img img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.home-trend-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
}
.badge-recomendada { background: #16A34A; }
.badge-caro { background: #EA580C; }
.home-trend-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 6px; }
.home-trend-body strong { font-size: 14px; font-weight: 800; color: #111827; line-height: 1.3; }
.home-trend-rating { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: #374151; }
.home-trend-verdict { font-size: 13px; font-weight: 800; }
.verdict-good { color: #16A34A; }
.verdict-bad { color: #EA580C; }

/* â”€â”€ BARRA "BUSCÁS ALGO ESPECÍFICO" â”€â”€ */
.home-specific-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FEF9E7;
  border: 1px solid #FDE9B0;
  border-radius: 14px;
  padding: 16px 20px;
  margin: 28px 0;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .15s;
}
.home-specific-bar:hover { box-shadow: var(--shadow-md); }
.home-specific-icon { font-size: 26px; flex-shrink: 0; }
.home-specific-text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.home-specific-text strong { font-size: 14px; font-weight: 800; color: #111827; }
.home-specific-text span { font-size: 12px; color: var(--text-soft); }
.home-specific-btn {
  background: var(--yellow);
  color: #111827;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* â”€â”€ PRODUCT PICKS â”€â”€ */
.home-picks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.home-pick-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .15s, transform .15s;
}
.home-pick-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.home-pick-badge {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ml-green-dark);
  background: #EAF8EE;
  border-radius: 5px;
  padding: 3px 8px;
  align-self: flex-start;
}
.pick-badge-blue   { color: var(--ml-blue-dark); background: #EBF3FF; }
.pick-badge-purple { color: #7C3AED; background: #F5F3FF; }
.pick-badge-teal   { color: #0F766E; background: #F0FDFA; }
.home-pick-img {
  background: #F5F5F5;
  border-radius: 8px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.home-pick-img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.home-pick-score {
  display: flex;
  align-items: center;
  gap: 7px;
}
.pick-score-num {
  background: var(--ml-green);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  border-radius: 6px;
  padding: 3px 7px;
}
.pick-score-label { font-size: 12px; color: var(--text-soft); font-weight: 600; }
.home-pick-name {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #111827;
  line-height: 1.3;
}
.home-pick-price {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #111827;
  line-height: 1;
}
.home-pick-pricesub { font-size: 11px; color: var(--text-muted); }
.btn-pick {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ml-yellow);
  color: #111;
  font-weight: 800;
  font-size: 12px;
  padding: 9px 12px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 4px;
  transition: background .12s;
  text-align: center;
}
.btn-pick:hover { background: var(--ml-yellow-dark); }

/* â”€â”€ CÃ“MO FUNCIONA â”€â”€ */
.home-how {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 24px 28px;
  margin-top: 28px;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
  align-items: center;
}
.home-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.home-how-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  min-width: 0;
}
.how-num-badge {
  grid-row: 1 / 3;
  align-self: start;
  margin-top: 1px;
  width: 28px; height: 28px;
  background: var(--ml-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}
.home-how-item h4 { font-size: 14px; font-weight: 800; color: #111827; margin: 0; line-height: 1.3; }
.home-how-item p { font-size: 13px; color: var(--text-soft); margin: 0; line-height: 1.5; }
.home-how-trust {
  background: #F0F5FF;
  border: 1px solid #D0E2FF;
  border-radius: 12px;
  padding: 20px;
}
.how-trust-icon {
  width: 48px; height: 48px;
  background: #D6E8FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.home-how-trust h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 8px;
}
.home-how-trust p { font-size: 13px; color: var(--text-soft); line-height: 1.55; margin: 0 0 12px; }
.how-trust-link { color: var(--ml-blue); font-weight: 700; font-size: 13px; }

/* ── CÓMO ELEGIMOS ── */
.home-editorial {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 28px 28px 24px;
  margin-bottom: 28px;
}
.home-editorial-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}
.home-editorial-header p {
  font-size: 13px;
  color: var(--text-soft);
  margin: 0;
}
.home-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.home-editorial-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 14px;
  row-gap: 3px;
  align-items: start;
  background: #F9FAFB;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 16px 18px;
}
.home-editorial-icon {
  grid-row: 1 / 3;
  width: 40px;
  height: 40px;
  background: var(--blue-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-editorial-icon svg { display: block; }
.home-editorial-item h4 {
  font-size: 13.5px;
  font-weight: 800;
  color: #111827;
  margin: 0;
  line-height: 1.3;
  align-self: end;
}
.home-editorial-item p {
  font-size: 12.5px;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.55;
}
.home-editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ml-blue);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 18px;
}
.home-editorial-link:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .home-editorial-grid { grid-template-columns: 1fr; }
  .home-editorial-header { flex-direction: column; }
}
/* ── HERO MOBILE (≤640px): layout apilado ── */
@media (max-width: 640px) {
  .home-hero {
    display: block;
    padding: 24px 0 20px;
  }
  .home-hero-text { padding-bottom: 0; }
  .home-hero-h1 { font-size: 34px; line-height: 1.02; letter-spacing: -0.03em; }
  .home-hero-sub { font-size: 14px; margin-bottom: 12px; margin-top: 8px; }
  .home-hero-visual {
    display: flex;
    justify-content: center;
    padding: 12px 0 4px;
  }
  .hero-visual-img--full { max-width: 180px; transform: none; filter: none; }
  .home-hero-bottom { margin-top: 12px; }
  .home-hero-form { flex-wrap: wrap; padding: 6px 6px 6px 14px; }
  .home-hero-form input { width: 100%; flex-basis: 100%; }
  .home-hero-form button { width: 100%; justify-content: center; height: 48px; font-size: 15px; }
  .home-hero-proof { font-size: 11px; }
  .home-hero .chk-related-links { display: none; }
  /* Stats banner más compacto */
  .home-stats-banner { padding: 18px 16px; }
  .home-stats-h2 { font-size: 22px; }
  .home-stats-grid { gap: 8px; }
  .home-stats-item { padding: 12px 14px; }
}

@media (max-width: 480px) {
  .home-hero-form { flex-wrap: wrap; padding: 10px 10px 10px 14px; gap: 8px; }
  .home-hero-form input { flex: 1; flex-basis: auto; width: auto; }
  .home-hero-form button { width: 100%; flex-basis: 100%; justify-content: center; }
}

/* â”€â”€ BOTTOM BAR â”€â”€ */
.home-bottom-bar {
  background: #F9FAFB;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.home-bottom-sep { color: var(--border-medium); }

/* â”€â”€ RESPONSIVE HOMEPAGE â”€â”€ */
@media (max-width: 1100px) {
  .home-cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  /* tablet 640–900px: grid de 2 col pero comprimido */
  .home-hero { grid-template-columns: 1fr 200px; grid-template-rows: auto auto auto; gap: 0 16px; padding: 24px 0 20px; align-items: start; }
  .home-hero-text { grid-column: 1; grid-row: 1; align-self: start; padding-bottom: 10px; }
  .home-hero-visual { grid-column: 2; grid-row: 1 / 3; align-self: start; padding: 0; }
  .hero-visual-card { border-radius: 0; padding: 0; }
  .hero-visual-img--full { transform: none; filter: none; max-width: 100%; }
  .home-hero-bottom { grid-column: 1; grid-row: 2; }
  .home-hero-h1 { font-size: 26px; }
  .home-hero-sub { font-size: 13px; margin-bottom: 10px; }
  .home-hero-eyebrow-pill { font-size: 10px; padding: 4px 10px; }
  .home-hero-proof { font-size: 11px; }
  .home-hero .chk-related-links { display: none; }
  .home-hero-form { max-width: 100%; }
  .home-stats-banner { padding: 22px 18px; }
  .home-stats-grid { grid-template-columns: 1fr; gap: 10px; }
  .home-trust-grid { grid-template-columns: 1fr 1fr; }
  .home-guides-grid { grid-template-columns: 1fr 1fr; }
  .home-trend-grid { gap: 8px; }
  .home-trend-img { height: 90px; }
  .home-trend-img img { padding: 8px; }
  .home-trend-body { padding: 8px 8px 10px; gap: 4px; }
  .home-trend-body strong { font-size: 11px; line-height: 1.25; }
  .home-trend-rating { font-size: 10px; }
  .home-trend-verdict { font-size: 11px; }
  .home-trend-badge { font-size: 8px; padding: 3px 6px; top: 6px; left: 6px; }
  .home-specific-bar { flex-wrap: wrap; }
  .home-picks-grid { grid-template-columns: 1fr 1fr; }
  .home-how { grid-template-columns: 1fr; }
  .home-how-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-how-trust { display: none; }
  .topbar {
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
    padding: 0 16px;
  }
  .main-nav { display: none !important; }
  .main-nav.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--ml-yellow);
    padding: 16px 20px;
    gap: 2px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
    border-top: 2px solid rgba(0,0,0,.08);
  }
  .main-nav.mobile-open .nav-link {
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    border-bottom: 1px solid rgba(0,0,0,.06);
    text-decoration: none;
    display: block;
  }
  .main-nav.mobile-open .nav-link:last-child { border-bottom: none; }
  .nav-hamburger { display: flex !important; }
  .mobile-search-link { display: flex !important; }
  .topbar .search-wrap { max-width: 200px !important; }
}
@media (max-width: 640px) {
  .home-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hcc-img { width: 64px; min-width: 64px; height: 60px; }
  .hcc-name { font-size: 12px; }
  .hcc-count { font-size: 10px; }
  .hcc-arrow { display: none; }
  .home-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .home-guides-grid { grid-template-columns: 1fr; }
  .home-picks-grid { grid-template-columns: 1fr; }
  .home-trust-grid { grid-template-columns: 1fr; }
  /* ── Hero mobile: 2 columnas (texto | imagen) + form abajo ── */
  .home-hero { display: grid; grid-template-columns: minmax(0, 1fr) 175px; grid-template-rows: auto auto; gap: 0 10px; padding: 18px 0 14px; align-items: start; }
  .home-hero-text { grid-column: 1; grid-row: 1; padding-bottom: 0; align-self: start; }
  .home-hero-visual { grid-column: 2; grid-row: 1; padding: 0; align-items: center; align-self: center; }
  .hero-visual-img--full { max-width: 100% !important; transform: none; filter: none; }
  .home-hero-bottom { grid-column: 1 / -1; grid-row: 2; margin-top: 10px; }
  .home-hero-h1 { font-size: 22px; line-height: 1.1; letter-spacing: -0.02em; }
  .home-hero-sub { font-size: 13px; margin-top: 6px; margin-bottom: 0; }
  .home-hero-eyebrow-pill { font-size: 9px; padding: 4px 8px; white-space: nowrap; letter-spacing: .04em; }
  .home-hero-form { flex-wrap: nowrap; padding: 6px 6px 6px 14px; gap: 8px; }
  .home-hero-form-icon { flex-shrink: 0; }
  .home-hero-form input { flex: 1; min-width: 0; }
  .home-hero-form button { flex: 0 0 auto; width: auto; height: 44px; font-size: 14px; padding: 0 16px; border-radius: 10px; }
  .home-hero-proof { font-size: 11px; }
  .home-hero .chk-related-links { display: none; }
  /* Stats banner compacto */
  .home-stats-banner { padding: 18px 16px; }
  .home-stats-h2 { font-size: 22px; }
  .home-stats-grid { gap: 8px; }
  /* Apilar los 3 pasos en teléfonos (va después del bloque 900px para ganar cascada) */
  .home-how { padding: 20px 18px; }
  .home-how-grid { grid-template-columns: 1fr; gap: 14px; }
  .topbar { height: 56px !important; }
  .topbar .search-wrap { display: none !important; }

  /* â”€â”€ Mobile search icon funcional â”€â”€ */
  .topbar .search-wrap { display: none !important; }
  .mobile-search-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: #111;
  }
}
/* â”€â”€ RR Cards v2 â€” con badges numerados y estrellas â”€â”€ */
.rr-card-v2 {
  position: relative;
  padding-top: 18px;
  border-radius: 14px;
  border: 2px solid var(--border-soft);
  transition: transform .15s, box-shadow .15s;
}
.rr-card-v2:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.rr-num-badge {
  position: absolute;
  top: 10px; left: 10px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--ml-blue);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rr-color-green  { border-color: rgba(0,166,80,.5); }
.rr-color-blue   { border-color: rgba(52,131,250,.5); }
.rr-color-orange { border-color: rgba(255,98,0,.4); }
.rr-color-purple { border-color: rgba(124,58,237,.4); }
.rr-color-green .rr-num-badge  { background: var(--ml-green); }
.rr-color-blue .rr-num-badge   { background: var(--ml-blue); }
.rr-color-orange .rr-num-badge { background: #ff6200; }
.rr-color-purple .rr-num-badge { background: #7C3AED; }

.rr-card-label {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ml-green-dark);
  min-height: 14px;
  line-height: 1.2;
  margin-bottom: 2px;
}
.rr-color-blue .rr-card-label   { color: var(--ml-blue-dark); }
.rr-color-orange .rr-card-label { color: #c04b00; }
.rr-color-purple .rr-card-label { color: #5B21B6; }

.rr-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}
.rr-star-icons { color: #F59E0B; font-size: 12px; letter-spacing: -1px; }
.rr-rating { font-size: 12px; font-weight: 700; color: #111; }
.rr-reviews { font-size: 11px; color: var(--text-muted); }
.rr-price-label { font-size: 11px; color: var(--text-muted); margin-top: -2px; }

/* â”€â”€ fin Sprint 5 â”€â”€ */

/* ============================================================
   SPRINT 6 â€” Product card v2, SVG icons, sidebar thumbnails
   ============================================================ */

/* â”€â”€ Trust chip icons SVG already handled canonically above â”€â”€ */

/* â”€â”€ Trust chip icons SVG â”€â”€ */
.trust-chip svg { flex-shrink: 0; }

/* â”€â”€ HOME: Trust icon SVG fix (reemplaza emoji) â”€â”€ */
.home-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: #EBF3FF;
  border-radius: 10px;
  margin-top: 0;
}
.home-trust-icon svg { display: block; }

/* â”€â”€ HOME: Hero image â”€â”€ */
.hero-single-img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  display: block;
  background-color: transparent;
}

/* â”€â”€ HOME: Category grid (horizontal cards, maqueta) â”€â”€ */
.home-cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.home-cat-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  transition: box-shadow .15s, transform .15s;
}
.home-cat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.hcc-img {
  width: 80px;
  min-width: 80px;
  height: 72px;
  background: #F5F7FA;
  border-radius: 13px 0 0 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hcc-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.hcc-body {
  flex: 1;
  min-width: 0;
  padding: 10px 4px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hcc-name  { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 13px; color: #111827; line-height: 1.3; }
.hcc-count { font-size: 11px; color: var(--ml-blue); font-weight: 700; }
.hcc-arrow { font-size: 15px; color: var(--ml-blue); padding-right: 10px; flex-shrink: 0; font-weight: 700; }

/* Responsive del strip de categorías — debe ir DESPUÉS de la definición base
   (repeat(6)) para no quedar pisado por el orden de cascada */
@media (max-width: 1100px) {
  .home-cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .home-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .home-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hcc-img { width: 60px; min-width: 60px; height: 58px; }
  .hcc-arrow { display: none; }
}

/* â”€â”€ HOME: Pick score color variants â”€â”€ */
.pick-score-blue   { background: var(--ml-blue); }
.pick-score-purple { background: #7C3AED; }
.pick-score-teal   { background: #0891B2; }

/* â”€â”€ HOME: Pick btn color variants â”€â”€ */
.btn-pick-blue   { background: var(--ml-blue);   color: #fff; }
.btn-pick-purple { background: #7C3AED;           color: #fff; }
.btn-pick-teal   { background: #0891B2;           color: #fff; }
.btn-pick-blue:hover   { background: #2068D9; }
.btn-pick-purple:hover { background: #6D28D9; }
.btn-pick-teal:hover   { background: #0E7490; }

/* â”€â”€ HOME: Bottom bar check icon â”€â”€ */
.home-bottom-check {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: #374151;
}
.home-bottom-check svg { flex-shrink: 0; }

/* â”€â”€ HOME: How trust icon SVG â”€â”€ */
.how-trust-icon {
  display: flex;
  align-items: center;
  width: 44px; height: 44px;
  background: #EBF3FF;
  border-radius: 10px;
  justify-content: center;
  margin-bottom: 12px;
}
.how-trust-icon svg { display: block; }

/* â”€â”€ Product card v2 â”€â”€ */
.pc2 {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow .15s;
}
.pc2:hover { box-shadow: var(--shadow-md); }
.pc2.pc2-winner { border-color: rgba(0,166,80,.45); }

/* Header row: num badge + category badge */
.pc2-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border-soft);
  background: #FAFAFA;
}
.pc2-num {
  width: 32px; height: 32px;
  background: var(--ml-yellow);
  color: #111;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.pc2-badge {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 6px;
  padding: 4px 11px;
}
.pc2-badge-green  { background: var(--ml-green);  color: #fff; }
.pc2-badge-blue   { background: var(--ml-blue);   color: #fff; }
.pc2-badge-purple { background: #7C3AED;           color: #fff; }
.pc2-badge-gray   { background: #6B7280;           color: #fff; }
.pc2-badge-teal   { background: #0891B2;           color: #fff; }
.pc2-badge-yellow { background: var(--ml-yellow);  color: #333; }

/* 3-column body: image | info | buy */
.pc2-body {
  display: grid;
  grid-template-columns: 200px 1fr 220px;
}

.pc2-img-col {
  padding: 20px 16px;
  background: #F8FAFC;
  border-right: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 190px;
}
.pc2-img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
}
.pc2-brand-overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pc2-info-col {
  padding: 18px 20px;
  border-right: 1px solid var(--border-soft);
}
.pc2-name {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #111827;
  margin: 0 0 6px;
  line-height: 1.25;
}
.pc2-best-for {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ml-blue);
  background: var(--blue-soft);
  border-radius: 6px;
  padding: 4px 10px;
  margin: 0 0 10px;
  line-height: 1.5;
}
.pc2-best-for strong { font-weight: 900; color: #1e4fd8; }
.bf-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--ml-blue);
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 3px;
  position: relative;
  top: -1px;
}

/* ── CUÁNDO NO COMPRAR ── */
.no-comprar-box {
  background: #FFF7ED;
  border: 1.5px solid #FED7AA;
  border-radius: var(--radius);
  padding: 18px 22px 16px;
  margin-bottom: 24px;
}
.no-comprar-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #92400E;
  margin: 0 0 12px;
}
.no-comprar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.no-comprar-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: #78350F;
  line-height: 1.55;
}
.no-comprar-list li svg { flex-shrink: 0; margin-top: 2px; }
.no-comprar-list li strong { font-weight: 800; color: #92400E; }

.pc2-score-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.pc2-score-num {
  background: var(--ml-green);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 15px;
  padding: 3px 10px;
  border-radius: 6px;
  min-width: 42px;
  text-align: center;
}
.pc2-score-label {
  font-weight: 700;
  font-size: 14px;
  color: #374151;
}
.pc2-score-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.pc2-score-hint {
  font-size: 11px;
  color: #9CA3AF;
  margin-top: -6px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}
.pc2-score-hint svg { flex-shrink: 0; }
.pc2-aff-note {
  font-size: 10.5px;
  color: #9CA3AF;
  margin-top: 8px;
  line-height: 1.4;
  text-align: center;
}

/* Pros list en el cuerpo (3 bullets) */
.pc2-pros-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pc2-pros-list li {
  font-size: 13px;
  color: var(--text-soft);
  padding: 3px 0 3px 20px;
  position: relative;
  line-height: 1.4;
}
.pc2-pros-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--ml-green);
  font-weight: 900;
  font-size: 13px;
}

/* Buy box */
.pc2-buy-col {
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}
.pc2-price-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.pc2-price {
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #111827;
  line-height: 1.1;
}
.pc2-price-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.pc2-cta {
  display: block;
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 900;
  border-radius: 8px;
  text-decoration: none;
}
.pc2-ml-link {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ml-blue);
  padding: 5px 0 2px;
  text-decoration: none;
}
.pc2-ml-link:hover { text-decoration: underline; }

/* Bottom section: PROS / CONTRAS / Nuestra opiniÃ³n (3 cols) */
.pc2-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 0;
}

/* PROS/CONTRAS/OPINIÃ“N â€” 3 columnas */
.pc2-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}
.pc2-pros-col,
.pc2-cons-col {
  padding: 14px 16px;
  background: #FAFAFA;
}
.pc2-pros-col { border-right: 1px solid var(--border-soft); }
.pc2-cons-col { border-right: 1px solid var(--border-soft); }

/* Columna "Nuestra opiniÃ³n" â€” 3a col */
.pc2-opinion-col {
  padding: 14px 16px;
  background: #EFF6FF;
}
.pc2-opinion-col .pc2-opinion-label {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ml-blue);
  margin-bottom: 6px;
}
.pc2-opinion-col p {
  font-size: 12px;
  color: #1E40AF;
  line-height: 1.55;
  margin: 0;
}

/* Legacy (pages sin migrar) */
.pc2-opinion {
  background: #EFF6FF;
  border-left: 3px solid var(--ml-blue);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 14px;
}
.pc2-opinion-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ml-blue);
  margin-bottom: 5px;
}
.pc2-opinion p {
  font-size: 13px;
  color: #1E3A8A;
  line-height: 1.6;
  margin: 0;
}
.pc2-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0 0 14px;
}

/* Stars rating */
.pc2-stars {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-left: 2px;
}
.pc2-stars svg { display: block; }
.pc2-pros-title {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ml-green-dark);
  margin-bottom: 8px;
}
.pc2-cons-title {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--danger);
  margin-bottom: 8px;
}
.pc2-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pc2-list li {
  font-size: 13px;
  color: var(--text-soft);
  padding: 3px 0 3px 20px;
  position: relative;
  line-height: 1.4;
}
.pc2-list-pros li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--ml-green);
  font-weight: 900;
  font-size: 13px;
}
.pc2-list-cons li::before {
  content: '\2715';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 900;
  font-size: 13px;
}

/* .related-item-thumb / .related-item-text â†’ definidos en secciÃ³n canÃ³nica arriba */

/* â”€â”€ Sidebar: newsletter widget â”€â”€ */
.newsletter-card { background: #FEFCE8; border-color: #FDE68A; }
.newsletter-card h3 { color: #92400E; }
.newsletter-card p { font-size: 12px; color: #78350F; margin: 0 0 10px; line-height: 1.45; }
.newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.newsletter-input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #FDE047;
  border-radius: 0;
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
  font-family: 'Nunito Sans', sans-serif;
}
.newsletter-input:focus { border-color: #F59E0B; box-shadow: 0 0 0 2px rgba(245,158,11,.15); }
.newsletter-btn {
  width: 100%;
  padding: 9px;
  background: var(--ml-yellow);
  color: #111;
  font-weight: 800;
  font-size: 14px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: background .12s;
}
.newsletter-btn:hover { background: var(--ml-yellow-dark); }

/* â”€â”€ Guide hero redesign â”€â”€ */
.guide-updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 12px;
}

/* â”€â”€ Responsive Sprint 6 â”€â”€ */
@media (max-width: 960px) {
  .pc2-body { grid-template-columns: 160px 1fr 200px; }
  .pc2-price { font-size: 20px; }
}
@media (max-width: 780px) {
  .pc2-body {
    grid-template-columns: 130px 1fr;
    grid-template-rows: auto auto;
  }
  /* CTA nunca desaparece â€” se mueve abajo abarcando ambas columnas */
  .pc2-buy-col {
    display: flex !important;
    grid-column: 1 / -1;
    border-top: 1px solid var(--border-soft);
    padding-top: 12px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .pc2-price { font-size: 20px; }
  .pc2-info-col { border-right: none; }
  .pc2-pros-cons { grid-template-columns: 1fr; }
  .pc2-pros-col { border-right: none; border-bottom: 1px solid var(--border-soft); }
}
@media (max-width: 480px) {
  .pc2-body { grid-template-columns: 1fr; }
  .pc2-img-col { border-right: none; border-bottom: 1px solid var(--border-soft); min-height: 140px; }
  .pc2-buy-col { display: flex; border-top: 1px solid var(--border-soft); }
}
@media (max-width: 860px) {
  .hub-hero {
    grid-template-columns: 1fr;
    padding: 30px 24px;
    gap: 18px;
  }

  .hub-hero-text h1 {
    font-size: 34px;
  }

  .hub-hero-text p {
    font-size: 16px;
  }

  .hub-visual {
    min-height: 90px;
    justify-content: flex-start;
  }

  .hub-emoji {
    font-size: 72px;
  }
}
/* ============================================================
   HEADER SEARCH FIX â€” CualDura redesign
   ============================================================ */

.topbar .logo {
  margin-right: auto;
}

.topbar .main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 0 0 auto;
}

.topbar .search-wrap {
  flex: 0 0 360px;
  max-width: 360px;
  height: 40px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: none;
}

.topbar .search-wrap input {
  height: 100%;
  width: 100%;
  border: 0;
  padding: 0 14px;
  font-size: 14px;
  background: #fff;
}

.topbar .search-wrap button {
  width: 46px;
  height: 100%;
  border: 0;
  background: #fff;
  color: #111827;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ============================================================
   GUIDE LIST CARDS â€” CualDura redesign
   ============================================================ */

.guides-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
  margin-bottom: 36px;
}

.guide-list-item {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 3px 12px rgba(0,0,0,.06);
  display: grid;
  grid-template-columns: 120px 1fr 36px;
  gap: 16px;
  align-items: center;
  min-height: 132px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.guide-list-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.10);
  border-color: #3483FA;
}

.guide-list-emoji {
  width: 120px;
  height: 86px;
  border-radius: 12px;
  background: linear-gradient(135deg, #EBF3FF 0%, #F8FAFC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  overflow: hidden;
}

.guide-list-emoji img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-list-title {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.18;
  color: #111827;
  margin-bottom: 7px;
}

.guide-list-desc {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.45;
  margin-bottom: 10px;
}

.guide-list-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.guide-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #EBF3FF;
  color: #2968C8;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 800;
}

.guide-pill.green {
  background: #EAF8EE;
  color: #008744;
}

.guide-pill.yellow {
  background: #FFF7C2;
  color: #8A6D00;
}

.guide-list-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #CFE0FF;
  background: #fff;
  color: #3483FA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  transition: background .16s ease, color .16s ease;
}

.guide-list-item:hover .guide-list-arrow {
  background: #3483FA;
  color: #fff;
}
@media (max-width: 1100px) {
  .guides-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .guides-list {
    grid-template-columns: 1fr;
  }

  .guide-list-item {
    grid-template-columns: 92px 1fr 32px;
    padding: 14px;
    min-height: 112px;
  }

  .guide-list-emoji {
    width: 92px;
    height: 70px;
    font-size: 34px;
  }

  .guide-list-title {
    font-size: 15px;
  }

  .guide-list-desc {
    font-size: 12px;
  }
}
/* ============================================================
   HUB TRUST STRIP â€” CualDura redesign
   ============================================================ */

.hub-trust-strip {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 18px 0 22px;
}

.hub-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-right: 1px solid #E5E7EB;
}

.hub-trust-item:last-child {
  border-right: 0;
}

.hub-trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #EAF8EE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.hub-trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: #111827;
  line-height: 1.2;
}

.hub-trust-item span {
  display: block;
  font-size: 12px;
  color: #6B7280;
  line-height: 1.3;
  margin-top: 2px;
}
@media (max-width: 1000px) {
  .hub-trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .hub-trust-item {
    border-right: 0;
    padding: 0;
  }
}

@media (max-width: 560px) {
  .hub-trust-strip {
    grid-template-columns: 1fr;
    padding: 16px;
  }
}
/* ============================================================
   GUIDE CARD IMAGES â€” CualDura redesign
   ============================================================ */

.guide-list-emoji img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  display: block;
}/* ============================================================
   HUB FILTER BAR â€” CualDura redesign
   ============================================================ */

.hub-filter-bar {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 28px;
}

.hub-filter-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hub-filter-top .hub-filter-search {
  flex: 1;
}

.hub-filter-groups {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 6px;
  border-top: 1px solid #E5E7EB;
}

.hub-filter-group {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.hub-filter-group-label {
  font-size: 10.5px;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: .05em;
  min-width: 44px;
  flex-shrink: 0;
}

.hub-fpill {
  display: inline-flex;
  align-items: center;
  padding: 3px 11px;
  border-radius: 20px;
  border: 1.5px solid #E5E7EB;
  background: #fff;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: border-color .13s, color .13s, background .13s;
  white-space: nowrap;
  line-height: 1.6;
}

.hub-fpill:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hub-fpill.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.hub-clear-btn {
  height: 44px;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  background: #fff;
  color: #6B7280;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 0 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .13s, color .13s;
  flex-shrink: 0;
}

.hub-clear-btn:hover {
  border-color: #EF4444;
  color: #EF4444;
}

.guide-list-item.hf-hidden {
  display: none !important;
}

.hub-no-results {
  padding: 36px 16px;
  text-align: center;
  color: #9CA3AF;
  font-size: 14px;
  display: none;
}

.hub-no-results.visible {
  display: block;
}

.hub-filter-search {
  height: 44px;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
}

.hub-filter-icon {
  font-size: 17px;
  opacity: .65;
}

.hub-filter-search input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  font-size: 14px;
  color: #111827;
  background: transparent;
}

.hub-filter-search input::placeholder {
  color: #9CA3AF;
}

.hub-filter-button {
  height: 44px;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  background: #fff;
  color: #111827;
  font-size: 14px;
  font-weight: 800;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  white-space: nowrap;
}

.hub-filter-button:hover {
  border-color: #3483FA;
  color: #2968C8;
}
@media (max-width: 640px) {
  .hub-filter-group-label {
    min-width: 38px;
    font-size: 10px;
  }

  .hub-fpill {
    font-size: 12px;
    padding: 2px 9px;
  }
}/* ============================================================
   HUB SECTION HEADER â€” CualDura redesign
   ============================================================ */

.hub-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 18px 0 18px;
}

.hub-section-header h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
  color: #111827;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}

.hub-section-header p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: #6B7280;
  max-width: 680px;
}

.hub-section-link {
  color: #2968C8;
  font-weight: 900;
  font-size: 14px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hub-section-link:hover {
  color: #174EA6;
  text-decoration: underline;
}@media (max-width: 700px) {
  .hub-section-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hub-section-header h2 {
    font-size: 23px;
  }

  .hub-section-header p {
    font-size: 14px;
  }
}
/* ============================================================
   HUB SPACING REFINEMENT â€” CualDura redesign
   ============================================================ */

.hub-hero {
  margin-bottom: 18px;
}

.hub-filter-bar {
  margin: 0 0 22px;
}

/* ============================================================
   HUB PAGE WIDTH â€” CualDura redesign
   ============================================================ */

.hub-page .container,
body:has(.hub-hero) .container {
  max-width: 1320px;
}
/* ============================================================
   GUIDE LIST CARD MARKETPLACE STYLE â€” CualDura redesign
   ============================================================ */

.hub-page .guide-list-item {
  min-height: 166px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 16px rgba(0,0,0,.055);
  grid-template-columns: 140px minmax(0, 1fr) 38px;
}

.hub-page .guide-list-item:hover {
  border-color: #3483FA;
  box-shadow: 0 10px 28px rgba(52,131,250,.16);
  transform: translateY(-3px);
}

.hub-page .guide-list-emoji {
  width: 140px;
  height: 102px;
  border-radius: 14px;
  background: #F4F7FB;
  border: 1px solid #E5EAF2;
}

.hub-page .guide-list-title {
  font-size: 18px;
  line-height: 1.13;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.hub-page .guide-list-desc {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.45;
  margin-bottom: 12px;
}

.hub-page .guide-pill {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
}

.hub-page .guide-list-arrow {
  width: 38px;
  height: 38px;
  font-size: 21px;
  border: 1px solid #CFE0FF;
  background: #fff;
  box-shadow: 0 2px 8px rgba(52,131,250,.10);
}
@media (max-width: 700px) {
  .hub-page .guide-list-item {
    min-height: 128px;
    padding: 14px;
    grid-template-columns: 96px minmax(0, 1fr) 34px;
  }

  .hub-page .guide-list-emoji {
    width: 96px;
    height: 74px;
  }

  .hub-page .guide-list-title {
    font-size: 15px;
  }

  .hub-page .guide-list-arrow {
    width: 32px;
    height: 32px;
  }
}/* ============================================================
   HUB HERO IMAGE â€” CualDura redesign
   ============================================================ */

.hub-hero-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.28));
  transform: translateX(6px);
}

.hub-visual {
  justify-content: center;
}

/* Panel blanco para imágenes de producto en hero (cualquier orientación
   queda prolija sobre el fondo azul, no como recuadro blanco flotando) */
.hub-visual.hub-visual-tile {
  background: #fff;
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 14px 32px rgba(0,0,48,.22);
}
.hub-visual-tile .hub-hero-img {
  max-width: 100%;
  max-height: 240px;
  transform: none;
  filter: none;
}

@media (max-width: 860px) {
  .hub-hero-img {
    max-width: 260px;
    transform: none;
  }
  .hub-visual.hub-visual-tile {
    padding: 16px;
  }
  .hub-visual-tile .hub-hero-img {
    max-height: 200px;
  }
}

/* ============================================================
   MOBILE POLISH â€” RecomendaciÃ³n rÃ¡pida + Tabla comparativa
   ============================================================ */

/* â”€â”€ RecomendaciÃ³n rÃ¡pida â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
  .recomendacion-rapida {
    padding: 18px 16px 20px;
    border-radius: 14px;
  }
  .recomendacion-rapida h2 {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  /* Carrusel horizontal con snap */
  .rr-grid {
    display: flex !important;
    overflow-x: auto;
    gap: 12px !important;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    scrollbar-width: none;
    /* Padding lateral para que el primer card no quede pegado al borde
       y se vea que hay mÃ¡s cards a la derecha */
    padding-right: 40px;
    margin: 0 -16px;       /* compensa el padding del contenedor */
    padding-left: 16px;
  }
  .rr-grid::-webkit-scrollbar { display: none; }

  /* Cards en carrusel */
  .rr-card {
    min-width: 260px !important;
    max-width: 260px !important;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .rr-card-img { height: 80px; }
  .rr-name { font-size: 0.88rem; }
  .rr-btn {
    font-size: 0.8rem;
    padding: 7px 12px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .rr-card {
    min-width: 230px !important;
    max-width: 230px !important;
  }
  .rr-card-img { height: 70px; }
}

/* â”€â”€ Tabla comparativa â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Hint de scroll â€” oculto por defecto, solo visible en mobile */
.table-scroll-hint {
  display: none;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px;
}

@media (max-width: 768px) {
  /* Indicador visual de scroll: gradiente fade derecho */
  .ct-scroll,
  .table-wrap {
    position: relative;
  }
  .ct-scroll::after,
  .table-wrap::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 48px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,.85));
    pointer-events: none;
    border-radius: 0 10px 10px 0;
  }

  /* Reducir padding de celdas */
  .comparison-table th {
    padding: 8px 10px;
    font-size: 10px;
    white-space: nowrap;
  }
  .comparison-table td {
    padding: 8px 10px;
    font-size: 12px;
  }
  .comparison-table { min-width: 520px; }

  /* Mostrar hint de scroll */
  .table-scroll-hint { display: block; }
}

/* â”€â”€ Summary card mobile â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 640px) {
  .summary-card {
    padding: 16px 18px;
    gap: 14px;
    grid-template-columns: 1fr 1fr;
  }
  .summary-card .summary-stat:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--border-soft);
    padding-top: 12px;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .summary-card { grid-template-columns: 1fr; }
  .summary-card .summary-stat:last-child {
    grid-column: auto;
    border-top: 1px solid var(--border-soft);
  }
}

/* â”€â”€ guide-hero mobile â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 640px) {
  .guide-meta-row {
    font-size: 12px;
    gap: 6px 10px;
  }
  .badge-soft { font-size: 10px; padding: 2px 8px; }
  .guide-intro { font-size: 14px; }
  .trust-chips { margin-top: 12px; gap: 7px; }
  .trust-chip  { font-size: 11px; padding: 4px 10px; }
}

/* ============================================================
   PRICE DISCLAIMER â€” nota de revisiÃ³n de precios
   ============================================================ */
.price-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.price-disclaimer svg { flex-shrink: 0; opacity: .7; }

/* ============================================================
   MOBILE JUMP LINKS â€” navegaciÃ³n interna en mobile
   ============================================================ */
.mobile-jump-links {
  display: none; /* oculto en desktop */
}

@media (max-width: 768px) {
  .mobile-jump-links {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 0 16px;
    margin-bottom: 4px;
    scrollbar-width: none;
  }
  .mobile-jump-links::-webkit-scrollbar { display: none; }
  .mobile-jump-links a {
    white-space: nowrap;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 800;
    color: #2968C8;
    text-decoration: none;
    flex-shrink: 0;
  }
  .mobile-jump-links a:hover { background: #EBF3FF; border-color: #3483FA; }
}
/* â”€â”€ COMPARADOR INTERACTIVO â”€â”€ */

/* BotÃ³n en cada card */
.comp-toggle {
  position: absolute;
  top: 10px; right: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  color: #6B7280;
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
  z-index: 2;
}
.comp-toggle:hover { border-color: var(--ml-blue); color: var(--ml-blue); }
.comp-toggle[aria-pressed="true"] {
  background: var(--ml-blue);
  border-color: var(--ml-blue);
  color: #fff;
}
@keyframes comp-shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
.comp-toggle-shake { animation: comp-shake .35s ease; }

/* Card seleccionada */
.pc2 { position: relative; }
.pc2.comp-selected {
  outline: 2.5px solid var(--ml-blue);
  box-shadow: 0 0 0 5px rgba(52,131,250,.12);
}

/* Barra flotante */
.comp-bar {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a2a4a;
  color: #fff;
  border-radius: 14px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 340px;
  max-width: 560px;
  width: calc(100% - 40px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  z-index: 900;
  transition: bottom .3s cubic-bezier(.34,1.56,.64,1);
}
.comp-bar.comp-bar-visible { bottom: 20px; }
.comp-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.comp-bar-right { display: flex; gap: 8px; flex-shrink: 0; }
.comp-bar-clear {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.7);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: border-color .15s;
}
.comp-bar-clear:hover { border-color: rgba(255,255,255,.6); color: #fff; }
.comp-bar-cta {
  background: var(--ml-yellow);
  border: none;
  color: #1a2a4a;
  border-radius: 8px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 900;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  transition: opacity .15s;
}
.comp-bar-cta:disabled { opacity: .45; cursor: not-allowed; }
.comp-bar-cta:not(:disabled):hover { opacity: .88; }

/* Modal overlay */
.comp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: comp-fade-in .2s ease;
}
@keyframes comp-fade-in { from { opacity:0 } to { opacity:1 } }

.comp-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  animation: comp-slide-up .25s ease;
}
@keyframes comp-slide-up { from { transform: translateY(20px); opacity:0 } to { transform: translateY(0); opacity:1 } }

.comp-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-soft);
  flex-shrink: 0;
}
.comp-modal-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #111827;
}
.comp-modal-close {
  width: 32px; height: 32px;
  background: #F3F4F6;
  border: none;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  color: #6B7280;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.comp-modal-close:hover { background: #E5E7EB; color: #111827; }

.comp-modal-body {
  overflow: auto;
  flex: 1;
  padding: 0;
}

/* Tabla comparativa */
.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.comp-table th, .comp-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
}
.comp-table thead th {
  background: #F9FAFB;
  border-bottom: 2px solid var(--border-soft);
  text-align: center;
}
.comp-row-label {
  text-align: left !important;
  font-weight: 700;
  color: #6B7280;
  font-size: 12px;
  white-space: nowrap;
  background: #FAFAFA;
  width: 120px;
}
.comp-row-alt td, .comp-row-alt th { background: #F9FAFB; }

/* Header de cada producto */
.comp-th-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.comp-th-img {
  width: 80px; height: 64px;
  object-fit: contain;
  background: #F5F7FA;
  border-radius: 10px;
  padding: 6px;
}
.comp-th-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--ml-blue);
  color: #fff;
  border-radius: 4px;
  padding: 2px 7px;
}
.comp-th-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #111827;
  line-height: 1.3;
  text-align: center;
}

/* Score destacado */
.comp-score {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #374151;
}
.comp-best-cell { background: #F0FDF4; }
.comp-best-cell .comp-score { color: #16a34a; }

/* Listas pros/cons */
.comp-list {
  list-style: none;
  padding: 0; margin: 0;
  text-align: left;
  font-size: 12.5px;
  line-height: 1.5;
}
.comp-pros li::before { content: "\2713 "; color: #16a34a; font-weight: 700; }
.comp-cons li::before { content: "\2717 "; color: #dc2626; font-weight: 700; }
.comp-list li { margin-bottom: 4px; color: #374151; }
.comp-empty { color: #9CA3AF !important; }
.comp-empty::before { display: none !important; }

/* CTA dentro del modal */
.comp-cta-btn {
  display: inline-block;
  background: var(--ml-blue);
  color: #fff;
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  transition: opacity .15s;
}
.comp-cta-btn:hover { opacity: .85; }

.comp-modal-foot {
  padding: 10px 24px;
  border-top: 1px solid var(--border-soft);
  background: #F9FAFB;
  color: #9CA3AF;
  font-size: 11px;
  flex-shrink: 0;
}
.comp-row-cta td { padding: 16px; }

@media (max-width: 640px) {
  .comp-bar { min-width: unset; flex-wrap: wrap; gap: 8px; }
  .comp-table th, .comp-table td { padding: 8px; font-size: 12px; }
  .comp-th-img { width: 56px; height: 44px; }
  .comp-row-label { width: 80px; font-size: 11px; }
  .comp-toggle { top: 6px; right: 6px; padding: 4px 8px; font-size: 11px; }
}




/* ── HOME CHEQUEADOR CTA ── */
.home-chk-cta {
  background: linear-gradient(135deg, #1e40af 0%, #3483FA 100%);
  border-radius: var(--radius-lg);
  padding: 42px 40px;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}
.home-chk-eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 14px;
}
.home-chk-h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 900; color: #fff; margin: 0 0 10px;
  letter-spacing: -.02em; line-height: 1.25;
}
.home-chk-p { font-size: 15px; color: rgba(255,255,255,.85); margin: 0 0 24px; }
.home-chk-form {
  display: flex; gap: 10px; max-width: 620px; margin: 0 auto 12px;
}
.home-chk-input {
  flex: 1; border: none; border-radius: 12px;
  padding: 14px 18px; font-size: 15px;
  font-family: 'Nunito Sans', sans-serif;
  outline: none; min-width: 0; color: #111;
}
.home-chk-input::placeholder { color: #9CA3AF; }
.home-chk-submit {
  background: #FFE600; border: none; border-radius: 12px;
  padding: 14px 26px; font-family: 'Nunito', sans-serif;
  font-size: 15px; font-weight: 900; color: #111;
  cursor: pointer; white-space: nowrap;
  transition: transform .12s, box-shadow .12s;
}
.home-chk-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,.15); }
.home-chk-sub { font-size: 12px; color: rgba(255,255,255,.6); margin: 0; }
.chk-related-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 14px; }
.chk-related-links a { font-size: 12px; color: rgba(255,255,255,.75); text-decoration: underline; text-underline-offset: 2px; transition: color .15s; }
.chk-related-links a:hover { color: #fff; }
@media (max-width: 640px) {
  .home-chk-cta { padding: 28px 20px; }
  .home-chk-form { flex-direction: column; }
}

/* ── HOME HERO DUAL CTA ── */
.home-hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 6px; }
.btn-hero-secondary {
  display: inline-flex; align-items: center; font-weight: 700;
  font-size: 14px; color: #374151; text-decoration: none;
  padding: 12px 18px; border-radius: 10px;
  border: 1.5px solid var(--border-soft); background: var(--white);
  transition: border-color .15s, color .15s;
}
.btn-hero-secondary:hover { border-color: #3483FA; color: #3483FA; }

/* ── HOME PICKS FOOTER ── */
.home-picks-footer {
  margin-top: 14px; padding: 16px 20px;
  background: #F8FAFC; border: 1px solid var(--border-soft);
  border-radius: 12px; display: flex; flex-direction: column; gap: 8px;
}
.home-score-explain { font-size: 13px; color: #374151; line-height: 1.55; margin: 0; }
.home-score-explain strong { color: #111827; }
.home-score-explain a { color: #3483FA; font-weight: 700; margin-left: 6px; text-decoration: none; }
.home-score-explain a:hover { text-decoration: underline; }
.home-picks-disc { font-size: 12px; color: var(--text-muted); margin: 0; }

/* ── CHEQUEADOR: example section ── */
.chk-example { margin-bottom: 32px; }
.chk-example-label {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .07em; color: var(--text-muted);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
}
.chk-example .chk-card { opacity: .92; pointer-events: none; }
.chk-example-note { font-size: 12px; color: var(--text-muted); margin-top: 10px; font-style: italic; text-align: center; }

/* ── pc2: "No lo compraría si..." ── */
.pc2-no-buy-col {
  background: #FFF7ED;
  border-top: 1px solid #FDE68A;
  padding: 12px 18px;
}
.pc2-no-buy-label {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .06em; color: #C2410C; margin-bottom: 6px;
}
.pc2-no-buy-text { font-size: 13px; color: #7C2D12; line-height: 1.5; margin: 0; }

/* ============================================================
   WOW — Micro-interacciones + scroll reveal (capa global)
   Apéndice al final: máxima prioridad de cascada, no toca HTML.
   ============================================================ */

/* — Transición base de tarjetas — */
.pc2,
.home-cat-card,
.home-guide-card,
.guide-list-item,
.hub-page .guide-list-item,
.tg-card {
  transition: transform .28s cubic-bezier(.2,.7,.2,1),
              box-shadow .28s ease,
              border-color .28s ease;
}

/* — pc2: elevar + sombra más rica — */
.pc2:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -12px rgba(15,23,42,.22);
}
.pc2-winner:hover { box-shadow: 0 22px 46px -12px rgba(245,158,11,.30); }

/* — Tarjetas de categoría y de guía — */
.home-cat-card:hover,
.home-guide-card:hover,
.tg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px -14px rgba(15,23,42,.24);
}

/* — Zoom suave de imagen dentro de contenedores con overflow:hidden — */
.home-guide-img img,
.hcc-img img {
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.home-guide-card:hover .home-guide-img img,
.home-cat-card:hover .hcc-img img { transform: scale(1.07); }

.pc2-img-col { overflow: hidden; }
.pc2-img { transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.pc2:hover .pc2-img { transform: scale(1.05); }

/* — Flechas que se desplazan al hover — */
.hcc-arrow,
.guide-list-arrow,
.home-see-all {
  transition: transform .25s ease;
}
.home-cat-card:hover .hcc-arrow { transform: translateX(4px); }
.home-see-all:hover { transform: translateX(3px); }

/* — Botones CTA: elevación + glow + press — */
.btn-buy,
.btn-primary,
.pc2-cta {
  transition: transform .18s ease, box-shadow .25s ease, background-color .2s ease;
}
.btn-buy:hover,
.btn-primary:hover,
.pc2-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -6px rgba(245,158,11,.50);
}
.btn-buy:active,
.btn-primary:active,
.pc2-cta:active {
  transform: translateY(0) scale(.98);
  box-shadow: 0 4px 10px -4px rgba(245,158,11,.40);
}

/* — Scroll reveal: sólo cuando JS añade .js-reveal en <html>.
     Si JS falla, .fade-in conserva su animación de carga original. — */
.js-reveal .fade-in {
  opacity: 0;
  transform: translateY(26px);
  animation: none;
}
.js-reveal .fade-in.in-view {
  animation: wowReveal .65s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes wowReveal {
  to { opacity: 1; transform: none; }
}

/* — Respeto a prefers-reduced-motion — */
@media (prefers-reduced-motion: reduce) {
  .pc2, .home-cat-card, .home-guide-card, .guide-list-item, .tg-card,
  .home-guide-img img, .hcc-img img, .pc2-img,
  .btn-buy, .btn-primary, .pc2-cta, .hcc-arrow, .home-see-all {
    transition: none !important;
  }
  .pc2:hover, .home-cat-card:hover, .home-guide-card:hover, .tg-card:hover { transform: none; }
  .home-guide-card:hover .home-guide-img img,
  .home-cat-card:hover .hcc-img img,
  .pc2:hover .pc2-img { transform: none; }
  .js-reveal .fade-in { opacity: 1; transform: none; animation: none; }
}

/* ============================================================
   ALERTA DE PRECIO — "Avisame cuando convenga"
   Componente aditivo y autocontenido (prefijo cd-alert-).
   ============================================================ */
.cd-alert-overlay {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(17, 24, 39, .55);
  opacity: 0; visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.cd-alert-overlay.open { opacity: 1; visibility: visible; }
/* respetar el atributo [hidden] aunque el elemento tenga display propio (flex) */
.cd-alert-overlay [hidden] { display: none !important; }

.cd-alert-modal {
  background: var(--white);
  width: 100%; max-width: 430px;
  border-radius: 18px;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,.4);
  padding: 24px 24px 22px;
  transform: translateY(14px) scale(.98);
  transition: transform .22s cubic-bezier(.2,.7,.2,1);
  max-height: calc(100vh - 40px); overflow-y: auto;
}
.cd-alert-overlay.open .cd-alert-modal { transform: none; }

.cd-alert-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.cd-alert-bell {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%; background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
}
.cd-alert-title { font-family: 'Nunito', sans-serif; font-size: 19px; font-weight: 900; color: var(--text); line-height: 1.2; }
.cd-alert-sub { font-size: 13px; color: var(--gray-600); margin-top: 3px; line-height: 1.45; }
.cd-alert-close {
  margin-left: auto; background: none; border: none; cursor: pointer;
  width: 30px; height: 30px; border-radius: 50%; color: var(--gray-400);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .15s ease, color .15s ease;
}
.cd-alert-close:hover { background: var(--gray-100); color: var(--text); }

.cd-alert-product {
  display: flex; align-items: center; gap: 10px;
  background: var(--blue-soft); border-radius: 10px;
  padding: 10px 12px; margin-bottom: 16px;
}
.cd-alert-product-name { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.35; }
.cd-alert-product-price { font-size: 12px; color: var(--gray-600); margin-top: 2px; }

.cd-alert-field { margin-bottom: 14px; }
.cd-alert-label { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.cd-alert-hint { font-size: 12px; color: var(--gray-600); font-weight: 400; }
.cd-alert-input {
  width: 100%; font-size: 15px; font-family: inherit;
  padding: 12px 14px; border: 1.5px solid var(--gray-300);
  border-radius: 10px; color: var(--text); background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.cd-alert-input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.cd-alert-input::placeholder { color: var(--gray-400); }

.cd-alert-consent { display: flex; align-items: flex-start; gap: 9px; margin: 4px 0 16px; cursor: pointer; }
.cd-alert-consent input { margin-top: 2px; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--blue); cursor: pointer; }
.cd-alert-consent span { font-size: 12px; color: var(--gray-600); line-height: 1.45; }

.cd-alert-submit {
  width: 100%; font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 800;
  color: var(--text); background: var(--yellow); border: none; cursor: pointer;
  padding: 14px; border-radius: 12px;
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease;
}
.cd-alert-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -6px rgba(245,210,0,.6); }
.cd-alert-submit:active { transform: translateY(0) scale(.99); }
.cd-alert-submit:disabled { opacity: .6; cursor: progress; transform: none; box-shadow: none; }

.cd-alert-error { font-size: 13px; color: #C2410C; margin-top: 10px; text-align: center; min-height: 0; }
.cd-alert-legal { font-size: 11px; color: var(--gray-400); text-align: center; margin-top: 12px; line-height: 1.5; }

/* Estado de éxito */
.cd-alert-success { text-align: center; padding: 8px 4px 4px; }
.cd-alert-success-icon {
  width: 64px; height: 64px; margin: 0 auto 14px;
  border-radius: 50%; background: var(--green-soft);
  display: flex; align-items: center; justify-content: center;
}
.cd-alert-success h3 { font-family: 'Nunito', sans-serif; font-size: 20px; font-weight: 900; color: var(--text); margin-bottom: 8px; }
.cd-alert-success p { font-size: 14px; color: var(--gray-600); line-height: 1.5; margin-bottom: 18px; }

/* Trigger dentro de las tarjetas pc2 */
.pc2-alert-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 10px; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 12.5px; font-weight: 700; color: var(--blue);
  padding: 0; transition: color .15s ease;
}
.pc2-alert-link:hover { color: var(--blue-dark); text-decoration: underline; }
.pc2-alert-link svg { flex-shrink: 0; }

@media (max-width: 480px) {
  .cd-alert-overlay { align-items: flex-end; padding: 0; }
  .cd-alert-modal {
    max-width: 100%; border-radius: 18px 18px 0 0;
    transform: translateY(100%); max-height: 92vh; padding-bottom: 28px;
  }
  .cd-alert-overlay.open .cd-alert-modal { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .cd-alert-overlay, .cd-alert-modal, .cd-alert-submit { transition: opacity .15s ease; }
  .cd-alert-modal { transform: none !important; }
}

/* ── HOME: bloque "Avisame cuando convenga" (segundo producto) ── */
.home-alert-cta {
  display: flex; align-items: center; gap: 20px;
  background: var(--white);
  border: 1.5px solid var(--blue-soft);
  border-left: 4px solid var(--blue);
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.home-alert-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 14px; background: var(--blue-soft);
  display: flex; align-items: center; justify-content: center;
}
.home-alert-text { flex: 1; min-width: 0; }
.home-alert-h2 {
  font-family: 'Nunito', sans-serif; font-size: 19px; font-weight: 900;
  color: var(--text); line-height: 1.25; margin: 4px 0 5px;
}
.home-alert-p { font-size: 13.5px; color: var(--gray-600); line-height: 1.5; margin: 0; }
.home-alert-btn {
  flex-shrink: 0; font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 800;
  color: #fff; background: var(--blue); border: none; cursor: pointer;
  padding: 13px 22px; border-radius: 12px; white-space: nowrap;
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease;
}
.home-alert-btn:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 10px 22px -6px rgba(52,131,250,.5); }
.home-alert-btn:active { transform: translateY(0) scale(.99); }
@media (max-width: 720px) {
  .home-alert-cta { flex-direction: column; align-items: flex-start; text-align: left; gap: 14px; padding: 20px; }
  .home-alert-btn { width: 100%; text-align: center; }
}

/* ============================================================
   CUALDURA v30 — HOME DESIGN POLISH
   Ajustes visuales finales para hero, CTA, mobile y cards.
   ============================================================ */

/* Texto de precio más consistente dentro de bloques visuales */
.home-stats-sub,
.home-how p,
.home-alert-p {
  text-wrap: pretty;
}

/* HERO DESKTOP: más impacto visual, menos aire muerto */
@media (min-width: 901px) {
  .home-hero {
    grid-template-columns: minmax(0, 690px) minmax(420px, 1fr) !important;
    grid-template-rows: auto auto !important;
    gap: 0 44px !important;
    padding: 54px 0 40px !important;
    align-items: center !important;
  }

  .home-hero-text {
    align-self: end !important;
    padding-bottom: 22px !important;
    max-width: 720px !important;
  }

  .home-hero-h1 {
    font-size: clamp(46px, 4.25vw, 64px) !important;
    line-height: .99 !important;
    letter-spacing: -0.045em !important;
    max-width: 760px !important;
    margin-bottom: 18px !important;
  }

  .home-hero-sub {
    font-size: 18px !important;
    line-height: 1.55 !important;
    max-width: 620px !important;
    margin-bottom: 0 !important;
  }

  .home-hero-visual {
    grid-column: 2 !important;
    grid-row: 1 / 3 !important;
    min-height: 430px !important;
    align-self: center !important;
    justify-content: center !important;
    overflow: visible !important;
  }

  .hero-visual-card {
    width: 100% !important;
    min-height: 430px !important;
    overflow: visible !important;
  }

  .hero-visual-img,
  .hero-visual-img--full {
    max-width: 560px !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    filter: drop-shadow(0 26px 38px rgba(15, 23, 42, .16)) !important;
    transform: translateX(10px) scale(1.02) !important;
  }

  .home-hero-bottom {
    max-width: 720px !important;
  }

  .home-hero-form {
    max-width: 720px !important;
    min-height: 66px !important;
    border-radius: 18px !important;
    padding: 7px 7px 7px 18px !important;
    border-color: #D4DAE5 !important;
    box-shadow: 0 14px 32px rgba(15, 23, 42, .11) !important;
  }

  .home-hero-form input {
    font-size: 16px !important;
    height: 50px !important;
  }

  .home-hero-form button {
    min-width: 200px !important;
    height: 52px !important;
    border-radius: 13px !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    box-shadow: 0 10px 22px rgba(52, 131, 250, .26) !important;
  }

  .home-hero-proof {
    margin-top: 14px !important;
    font-size: 14px !important;
  }

  .home-stats-banner {
    margin-top: 10px !important;
    padding: 32px 32px !important;
    border-radius: 22px !important;
    box-shadow: 0 18px 38px rgba(19, 78, 210, .18) !important;
  }
}

/* Franja azul: más premium y consistente */
.home-stats-banner {
  position: relative;
  overflow: hidden;
}
.home-stats-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(255,255,255,.18), transparent 34%);
  pointer-events: none;
}
.home-stats-banner > * {
  position: relative;
  z-index: 1;
}
.home-stats-item {
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

/* Categorías: más táctiles y ordenadas */
.home-cat-strip {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 12px 14px !important;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .06);
}
.home-cat-circle {
  min-width: 92px;
  width: auto !important;
}
.cat-circle-img {
  background: #F6F7FA;
  border: 1px solid #ECEFF5;
}

/* Cards de tendencia: más legibles */
.home-trend-card {
  border-radius: 18px !important;
  overflow: hidden;
}
.home-trend-img {
  background: linear-gradient(180deg, #F8FAFC 0%, #F2F4F8 100%) !important;
}
.home-trend-body strong {
  letter-spacing: -0.01em;
}

/* MOBILE: mantener impacto sin que la imagen compita con el H1 */
@media (max-width: 640px) {
  .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .home-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 132px !important;
    grid-template-rows: auto auto !important;
    gap: 0 8px !important;
    padding: 24px 0 20px !important;
    align-items: start !important;
  }

  .home-hero-text {
    grid-column: 1 !important;
    grid-row: 1 !important;
    padding-bottom: 0 !important;
  }

  .home-hero-eyebrow-pill {
    font-size: 9px !important;
    padding: 5px 10px !important;
    margin-bottom: 12px !important;
    max-width: max-content !important;
    white-space: normal !important;
    line-height: 1.25 !important;
  }

  .home-hero-h1 {
    font-size: clamp(28px, 8vw, 34px) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.045em !important;
    margin-bottom: 10px !important;
  }

  .home-hero-sub {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }

  .home-hero-visual {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: center !important;
    justify-content: center !important;
    padding: 0 !important;
    min-height: 0 !important;
  }

  .hero-visual-card {
    min-height: 0 !important;
  }

  .hero-visual-img,
  .hero-visual-img--full {
    max-width: 132px !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    filter: drop-shadow(0 10px 18px rgba(15,23,42,.13)) !important;
    transform: translateY(4px) !important;
  }

  .home-hero-bottom {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    margin-top: 16px !important;
  }

  .home-hero-form {
    display: grid !important;
    grid-template-columns: 24px minmax(0, 1fr) !important;
    gap: 8px !important;
    padding: 12px !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 24px rgba(15,23,42,.10) !important;
  }

  .home-hero-form-icon {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: center !important;
  }

  .home-hero-form input {
    grid-column: 2 !important;
    grid-row: 1 !important;
    height: 42px !important;
    font-size: 14px !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
  }

  .home-hero-form button {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    height: 50px !important;
    border-radius: 13px !important;
    justify-content: center !important;
    font-size: 15px !important;
    font-weight: 900 !important;
  }

  .home-hero-proof {
    font-size: 12px !important;
    margin-top: 14px !important;
  }

  .home-stats-banner {
    padding: 22px 18px !important;
    border-radius: 18px !important;
    margin-bottom: 20px !important;
  }

  .home-stats-h2 {
    font-size: 24px !important;
    line-height: 1.12 !important;
  }

  .home-stats-sub {
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .home-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .home-cat-strip {
    border-radius: 16px !important;
    margin-left: -2px !important;
    margin-right: -2px !important;
    padding: 10px 10px !important;
    gap: 12px !important;
  }

  .home-cat-circle {
    min-width: 74px !important;
    font-size: 11px !important;
  }

  .cat-circle-img {
    width: 48px !important;
    height: 48px !important;
  }

  .home-trend-grid {
    display: flex !important;
    overflow-x: auto !important;
    gap: 12px !important;
    scroll-snap-type: x mandatory !important;
    padding-bottom: 10px !important;
  }

  .home-trend-card {
    min-width: 260px !important;
    scroll-snap-align: start !important;
  }

  .home-trend-img {
    height: 128px !important;
  }
}

@media (max-width: 380px) {
  .home-hero {
    grid-template-columns: minmax(0, 1fr) 112px !important;
  }
  .hero-visual-img,
  .hero-visual-img--full {
    max-width: 112px !important;
  }
  .home-hero-h1 {
    font-size: 27px !important;
  }
}

/* ============================================================
   CUALDURA v31 — FINAL DESIGN TUNING
   Ajustes solicitados: CTA, copy, hero desktop más protagonista
   y cierre de detalles responsive.
   ============================================================ */

@media (min-width: 901px) {
  .home-hero {
    grid-template-columns: minmax(0, 670px) minmax(500px, 1fr) !important;
    gap: 0 34px !important;
    padding: 48px 0 36px !important;
  }

  .home-hero-visual {
    min-height: 460px !important;
  }

  .hero-visual-card {
    min-height: 460px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-visual-img,
  .hero-visual-img--full {
    max-width: 610px !important;
    transform: translateX(4px) scale(1.04) !important;
    filter: drop-shadow(0 28px 42px rgba(15, 23, 42, .17)) !important;
  }

  .home-hero-form button {
    min-width: 205px !important;
  }

  .home-stats-h2 {
    letter-spacing: -0.035em !important;
  }
}

@media (max-width: 640px) {
  .home-stats-sub {
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .home-trend-grid {
    display: flex !important;
    overflow-x: auto !important;
    gap: 12px !important;
    scroll-snap-type: x mandatory !important;
    padding-bottom: 10px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .home-trend-card {
    min-width: 260px !important;
    scroll-snap-align: start !important;
  }

  .home-trend-img {
    height: 128px !important;
  }
}
